:root {
  color-scheme: dark;
  --ink: #07090b;
  --ink-soft: #101419;
  --ink-panel: rgba(12, 16, 20, 0.62);
  --paper: #f1f4f4;
  --paper-alt: #e8eded;
  --paper-strong: #ffffff;
  --text: #f7fbff;
  --text-soft: rgba(241, 248, 255, 0.74);
  --text-muted: rgba(241, 248, 255, 0.56);
  --dark-text: #11171a;
  --dark-soft: #526066;
  --line: rgba(255, 255, 255, 0.17);
  --dark-line: rgba(17, 23, 26, 0.14);
  --accent: #5bcdda;
  --accent-soft: #9de6ec;
  --accent-dark: #0d5f69;
  --positive: #5bd6a2;
  --danger: #e98a79;
  --max-width: 1440px;
  --section-x: clamp(1.25rem, 4vw, 4.5rem);
  --header-height: 74px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1.5rem);
  background: var(--ink);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--text);
}

body,
button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg,
video,
canvas {
  display: block;
}

button,
input,
textarea {
  border: 0;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(91, 205, 218, 0.35);
  color: #fff;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  transform: translateY(-160%);
  border-radius: 999px;
  background: #fff;
  color: #071013;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

/* Fixed cinematic layer */
.scroll-visual {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: #07090b;
}

.scroll-poster,
.scroll-video,
.scroll-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transition: opacity 500ms ease;
}

.scroll-video {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  will-change: opacity;
}

.scroll-poster {
  opacity: 1;
}

.scroll-poster--hidden {
  opacity: 0;
}

.scroll-video--visible,
.scroll-canvas--visible {
  opacity: 1;
}

.scroll-visual--reduced .scroll-poster {
  opacity: 1;
}

.scroll-visual--reduced .scroll-video,
.scroll-visual--reduced .scroll-canvas {
  opacity: 0;
}

.visual-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 6, 8, 0.48) 0%, rgba(5, 8, 11, 0.06) 28%, rgba(6, 9, 12, 0.12) 62%, rgba(4, 6, 8, 0.7) 100%),
    radial-gradient(circle at 50% 45%, transparent 18%, rgba(3, 6, 8, 0.18) 72%, rgba(3, 5, 7, 0.52) 100%);
}

.visual-grain {
  position: absolute;
  inset: -40%;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  animation: grain-shift 8s steps(8) infinite;
}

@keyframes grain-shift {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(-3%, 2%, 0); }
  50% { transform: translate3d(2%, -3%, 0); }
  75% { transform: translate3d(3%, 3%, 0); }
  100% { transform: translate3d(0, 0, 0); }
}

/* Shared reveal */
.reveal,
[data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 700ms ease-out var(--reveal-delay, 0ms),
    transform 700ms ease-out var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal--visible,
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

html.motion-reduced {
  scroll-behavior: auto;
}

html.motion-reduced .reveal,
html.motion-reduced [data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

html.motion-reduced .visual-grain,
html.motion-reduced .hero-scroll-cue svg {
  animation: none;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 8, 10, 0.76);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.nav-shell {
  width: min(100%, var(--max-width));
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 0 var(--section-x);
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto minmax(130px, 1fr);
  align-items: center;
  gap: 2rem;
}

.brand-wrap {
  justify-self: start;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img,
.footer-brand img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.7rem);
}

.desktop-nav a {
  position: relative;
  padding: 0.65rem 0;
  color: rgba(246, 251, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 500;
  transition: color 280ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0.3rem;
  height: 1px;
  background: var(--accent);
  transition: right 280ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.motion-toggle,
.menu-trigger {
  width: 2.65rem;
  height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  backdrop-filter: blur(12px);
  transition: background 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.motion-toggle:hover,
.menu-trigger:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.16);
}

.motion-toggle svg,
.menu-trigger svg {
  width: 1rem;
  height: 1rem;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.65rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  padding: 0.65rem 1rem;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(14px);
  transition: background 280ms ease, border-color 280ms ease, transform 280ms ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.2);
}

.menu-trigger,
.mobile-menu {
  display: none;
}

/* Cinematic sections */
main {
  position: relative;
  z-index: 10;
}

.cinematic-stage {
  position: relative;
}

.cinematic-section {
  width: min(100%, var(--max-width));
  min-height: 100vh;
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(6.5rem, 10vh, 8.5rem) var(--section-x) clamp(2.25rem, 5vh, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-top,
.capability-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
}

.service-list {
  display: grid;
  gap: 0.55rem;
}

.service-list span,
.eyebrow,
.accent-badge,
.item-index,
.offer-tag,
.case-sector,
.faq-index,
.footer-links > div > span {
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.155em;
  text-transform: uppercase;
}

.service-list span {
  color: rgba(247, 251, 255, 0.9);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.hero-intro,
.capability-intro {
  max-width: 24rem;
  text-align: right;
}

.hero-intro p,
.capability-intro p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.05rem, 1.5vw, 1.33rem);
  line-height: 1.55;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.hero-bottom,
.capability-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(3rem, 8vw, 8rem);
}

.hero-copy,
.capability-copy {
  min-width: 0;
}

.accent-badge {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  border-left: 2px solid #fff;
  background: rgba(255, 255, 255, 0.13);
  padding: 0.42rem 0.75rem;
  color: #fff;
  backdrop-filter: blur(16px);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.hero-copy h1,
.capability-copy h2 {
  margin: 1.25rem 0 0;
  color: #fff;
  font-size: clamp(3.55rem, 7.4vw, 7.6rem);
  font-weight: 400;
  letter-spacing: -0.058em;
  line-height: 0.92;
  text-shadow: 0 5px 35px rgba(0, 0, 0, 0.42);
}

.hero-copy h1 span,
.capability-copy h2 span {
  display: block;
}

.hero-scroll-cue {
  margin-top: 1.5rem;
}

.hero-scroll-cue a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.77rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 240ms ease;
}

.hero-scroll-cue a:hover {
  color: #fff;
}

.hero-scroll-cue svg {
  width: 1rem;
  height: 1rem;
  animation: cue-bounce 1.8s ease-in-out infinite;
}

@keyframes cue-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}

.hero-contact-card {
  width: min(100%, 22.5rem);
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.13);
  padding: 0.75rem;
  backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 22px 64px rgba(0, 0, 0, 0.24);
}

.hero-contact-card > img {
  width: 5rem;
  height: 6rem;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.7rem;
  background: rgba(2, 8, 10, 0.46);
  padding: 0.7rem;
  object-fit: contain;
}

.hero-contact-card > div {
  min-width: 0;
  display: grid;
  gap: 0.32rem;
}

.hero-contact-card strong {
  font-size: 0.92rem;
  font-weight: 600;
}

.hero-contact-card span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-contact-card a {
  width: fit-content;
  margin-top: 0.3rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  background: #fff;
  padding: 0.63rem 0.88rem;
  color: #091013;
  font-size: 0.74rem;
  font-weight: 700;
  transition: background 260ms ease, transform 260ms ease;
}

.hero-contact-card a:hover {
  transform: translateY(-1px);
  background: #eafcfe;
}

.hero-contact-card svg {
  width: 0.9rem;
  height: 0.9rem;
}

.scroll-spacer {
  height: 80vh;
}

.capability-section {
  padding-top: clamp(6.5rem, 10vh, 8.5rem);
}

.capability-copy {
  max-width: 47rem;
}

.capability-copy h2 {
  font-size: clamp(3.3rem, 6.5vw, 6.8rem);
}

.capability-copy > .reveal > p,
.capability-copy > p {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(0.94rem, 1.2vw, 1.08rem);
  line-height: 1.65;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.button-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  min-height: 2.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease, color 260ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 1rem;
  height: 1rem;
}

.button--primary {
  background: #fff;
  color: #091013;
}

.button--primary:hover {
  background: #e7fbfd;
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(14px);
}

.button--secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

.button--dark {
  background: var(--dark-text);
  color: #fff;
}

.button--dark:hover {
  background: #263137;
}

.button--secondary-dark {
  border-color: rgba(17, 23, 26, 0.2);
  background: transparent;
  color: var(--dark-text);
}

.button--secondary-dark:hover {
  border-color: rgba(17, 23, 26, 0.45);
  background: rgba(17, 23, 26, 0.045);
}

.button--whatsapp {
  background: #d9fbec;
  color: #0e5f43;
}

.button--whatsapp:hover {
  background: #c5f5df;
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
}

.capability-panel {
  width: min(100%, 28rem);
  flex: 0 0 auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.09);
  padding: 0 1.2rem;
  backdrop-filter: blur(18px) saturate(125%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

.capability-row {
  display: grid;
  grid-template-columns: 2rem 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.capability-row:last-child {
  border-bottom: 0;
}

.item-index {
  color: rgba(255, 255, 255, 0.6);
}

.capability-row a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.capability-row strong {
  font-size: 1.02rem;
  font-weight: 600;
}

.capability-row a svg {
  width: 1rem;
  height: 1rem;
  color: rgba(255, 255, 255, 0.46);
  transition: transform 240ms ease, color 240ms ease;
}

.capability-row:hover a svg {
  transform: translateX(0.25rem);
  color: #fff;
}

.capability-row p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.84rem;
  line-height: 1.58;
}

/* Main content */
.content-field {
  position: relative;
  z-index: 11;
  overflow: hidden;
  background: var(--paper);
  color: var(--dark-text);
  border-radius: clamp(1.4rem, 3vw, 2.75rem) clamp(1.4rem, 3vw, 2.75rem) 0 0;
  box-shadow: 0 -30px 90px rgba(0, 0, 0, 0.28);
}

.content-section {
  position: relative;
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

.section-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 0 var(--section-x);
}

.section-heading {
  max-width: 57rem;
  margin-bottom: clamp(2.5rem, 6vw, 5.2rem);
}

.section-heading .eyebrow,
.contact-copy .eyebrow {
  margin: 0 0 1.1rem;
  color: var(--accent-dark);
}

.section-heading h2,
.contact-copy h2 {
  margin: 0;
  max-width: 17ch;
  color: var(--dark-text);
  font-size: clamp(2.6rem, 5.2vw, 5.5rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-intro {
  max-width: 43rem;
  margin: 1.5rem 0 0;
  color: var(--dark-soft);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.68;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  align-items: end;
  gap: clamp(2rem, 8vw, 8rem);
}

.split-heading .section-intro {
  margin: 0 0 0.35rem;
}

.starting-section {
  background:
    radial-gradient(circle at 80% 15%, rgba(91, 205, 218, 0.14), transparent 28%),
    var(--paper);
}

.starting-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--dark-line);
}

.starting-card {
  min-height: 22rem;
  padding: 2rem clamp(1.2rem, 2.5vw, 2.25rem) 1rem;
  border-right: 1px solid var(--dark-line);
}

.starting-card:first-child {
  padding-left: 0;
}

.starting-card:last-child {
  border-right: 0;
  padding-right: 0;
}

.starting-card .item-index {
  color: rgba(17, 23, 26, 0.52);
}

.starting-icon {
  width: 3.2rem;
  height: 3.2rem;
  margin: 4rem 0 1.8rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 23, 26, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  color: var(--accent-dark);
}

.starting-icon svg {
  width: 1.2rem;
  height: 1.2rem;
}

.starting-card h3,
.offer-card h3,
.process-step h3,
.case-card h3 {
  margin: 0;
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.starting-card p,
.process-step p {
  margin: 0.9rem 0 0;
  color: var(--dark-soft);
  font-size: 0.93rem;
  line-height: 1.68;
}

.offers-section {
  background: #fff;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.offer-card {
  min-height: 37rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--dark-line);
  border-radius: 1.25rem;
  background: rgba(244, 247, 247, 0.68);
  padding: clamp(1.45rem, 2.6vw, 2.2rem);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.offer-card:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(17, 23, 26, 0.25);
  box-shadow: 0 28px 70px rgba(17, 23, 26, 0.11);
}

.offer-card--featured {
  border-color: rgba(91, 205, 218, 0.8);
  background:
    linear-gradient(145deg, rgba(91, 205, 218, 0.18), rgba(255, 255, 255, 0.82) 42%),
    #f4fbfb;
  box-shadow: 0 24px 60px rgba(17, 73, 80, 0.11);
}

.offer-card-top {
  min-height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.offer-tag {
  color: var(--accent-dark);
}

.offer-signal {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border-radius: 999px;
  background: var(--dark-text);
  padding: 0.38rem 0.62rem;
  color: #fff;
  font-size: 0.64rem;
  font-weight: 700;
}

.offer-signal svg {
  width: 0.78rem;
  height: 0.78rem;
}

.offer-card h3 {
  margin-top: 2.2rem;
}

.offer-price {
  margin: 0.65rem 0 0;
  color: var(--dark-text);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.045em;
}

.offer-description {
  min-height: 6.4rem;
  margin: 1.25rem 0 0;
  color: var(--dark-soft);
  font-size: 0.92rem;
  line-height: 1.65;
}

.offer-card ul {
  margin: 1.6rem 0 2rem;
  padding: 1.4rem 0 0;
  display: grid;
  gap: 0.75rem;
  border-top: 1px solid var(--dark-line);
  list-style: none;
}

.offer-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #38464b;
  font-size: 0.84rem;
  line-height: 1.45;
}

.offer-card li svg {
  width: 0.95rem;
  height: 0.95rem;
  margin-top: 0.1rem;
  flex: 0 0 auto;
  color: var(--accent-dark);
}

.offer-card .button {
  width: 100%;
  margin-top: auto;
}

.offer-note {
  margin: 1.5rem 0 0;
  color: #66757a;
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: center;
}

.process-section {
  background: var(--ink-soft);
  color: #fff;
}

.process-section .section-heading .eyebrow {
  color: var(--accent-soft);
}

.process-section .section-heading h2 {
  color: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-step {
  padding-right: clamp(1.2rem, 3vw, 3rem);
}

.process-line {
  position: relative;
  height: 2.2rem;
  margin-bottom: 3.7rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-line::before {
  content: "";
  position: absolute;
  top: -0.3rem;
  left: 0;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(91, 205, 218, 0.09);
}

.process-line span {
  position: absolute;
  top: 0.85rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.process-step h3 {
  color: #fff;
}

.process-step p {
  color: rgba(255, 255, 255, 0.66);
}

.cases-section {
  background:
    linear-gradient(rgba(17, 23, 26, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 23, 26, 0.04) 1px, transparent 1px),
    var(--paper-alt);
  background-size: 54px 54px;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.case-card {
  min-height: 31rem;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--dark-line);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.74);
  padding: clamp(1.4rem, 2.5vw, 2.1rem);
  backdrop-filter: blur(10px);
}

.case-sector {
  color: var(--accent-dark);
}

.case-card h3 {
  max-width: 14ch;
  margin-top: 1.6rem;
}

.case-state {
  margin-top: 2rem;
  border-radius: 0.85rem;
  padding: 1.1rem;
}

.case-state span {
  display: block;
  margin-bottom: 0.55rem;
  color: #5d6c71;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-state p {
  margin: 0;
  color: #3e4c51;
  font-size: 0.86rem;
  line-height: 1.55;
}

.case-state--before {
  background: rgba(17, 23, 26, 0.055);
}

.case-state--after {
  margin-top: 0;
  background: rgba(91, 205, 218, 0.16);
}

.case-state--after span {
  color: var(--accent-dark);
}

.case-arrow {
  width: 2rem;
  height: 2rem;
  margin: 0.65rem auto;
  display: grid;
  place-items: center;
  color: rgba(17, 23, 26, 0.42);
}

.case-arrow svg {
  width: 1rem;
  height: 1rem;
}

.faq-section {
  background: #fff;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(17rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 10vw, 10rem);
}

.faq-shell .section-heading {
  margin: 0;
  position: sticky;
  top: calc(var(--header-height) + 2.5rem);
  align-self: start;
}

.faq-list {
  border-top: 1px solid var(--dark-line);
}

.faq-item {
  border-bottom: 1px solid var(--dark-line);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: transparent;
  padding: 1.45rem 0;
  color: var(--dark-text);
  text-align: left;
}

.faq-item button > span {
  display: flex;
  align-items: baseline;
  gap: 1.1rem;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.faq-index {
  color: #78868b;
  font-size: 0.58rem;
}

.faq-item button > svg {
  width: 1.05rem;
  height: 1.05rem;
  flex: 0 0 auto;
  transition: transform 260ms ease;
}

.faq-item--open button > svg {
  transform: rotate(180deg);
}

.faq-panel {
  padding: 0 3rem 1.6rem 2.5rem;
}

.faq-panel p {
  margin: 0;
  color: var(--dark-soft);
  font-size: 0.92rem;
  line-height: 1.68;
}

.contact-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 15%, rgba(91, 205, 218, 0.17), transparent 30%),
    #091015;
  color: #fff;
}

.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23ffffff' stroke-width='.5'%3E%3Cpath d='M0 0h60v60H0z'/%3E%3C/g%3E%3C/svg%3E");
}

.contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(32rem, 1.18fr);
  align-items: start;
  gap: clamp(3rem, 8vw, 7rem);
}

.contact-copy {
  padding-top: 1rem;
}

.contact-copy .eyebrow {
  color: var(--accent-soft);
}

.contact-copy h2 {
  max-width: 12ch;
  color: #fff;
}

.contact-copy > .reveal > p,
.contact-copy > p {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.97rem;
  line-height: 1.68;
}

.contact-direct {
  margin-top: 2.6rem;
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-direct > a {
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  transition: color 240ms ease;
}

.contact-direct > a:hover {
  color: var(--accent-soft);
}

.contact-direct svg {
  width: 1rem;
  height: 1rem;
}

.contact-direct span {
  display: grid;
  gap: 0.25rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-direct strong {
  overflow-wrap: anywhere;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.form-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.075);
  padding: clamp(1.35rem, 3vw, 2.5rem);
  backdrop-filter: blur(18px);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
}

.lead-form {
  display: grid;
  gap: 1.15rem;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  align-content: start;
  gap: 0.45rem;
}

.field > span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.75rem;
  background: rgba(4, 9, 12, 0.5);
  padding: 0.82rem 0.9rem;
  color: #fff;
  font-size: 0.86rem;
  line-height: 1.45;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.field input {
  min-height: 3.1rem;
}

.field textarea {
  min-height: 7rem;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.field input:hover,
.field textarea:hover {
  border-color: rgba(255, 255, 255, 0.28);
}

.field input:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--accent);
  background: rgba(4, 9, 12, 0.72);
  box-shadow: 0 0 0 3px rgba(91, 205, 218, 0.12);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.field-help,
.field-error {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.65rem;
  line-height: 1.45;
}

.field-error {
  color: #ffc1b7;
}

.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.7rem;
  cursor: pointer;
}

.consent-field input {
  width: 1rem;
  height: 1rem;
  margin: 0.15rem 0 0;
  accent-color: var(--accent);
}

.consent-field span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  line-height: 1.55;
}

.consent-field a {
  color: var(--accent-soft);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.field-error--consent {
  margin-top: -0.75rem;
  padding-left: 1.7rem;
}

.form-submit {
  width: 100%;
  margin-top: 0.3rem;
  border-radius: 0.75rem;
}

.lead-ready {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(91, 205, 218, 0.32);
  border-radius: 0.95rem;
  background: rgba(91, 205, 218, 0.08);
  padding: 1rem;
}

.lead-ready-heading {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.status-icon {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(91, 214, 162, 0.16);
  color: var(--positive);
}

.status-icon svg {
  width: 1rem;
  height: 1rem;
}

.lead-ready strong {
  font-size: 0.9rem;
}

.lead-ready-heading p {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  line-height: 1.45;
}

.lead-ready pre {
  max-height: 15rem;
  overflow: auto;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  background: rgba(3, 7, 9, 0.48);
  padding: 0.9rem;
  white-space: pre-wrap;
  color: rgba(255, 255, 255, 0.78);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.7rem;
  line-height: 1.5;
}

.lead-ready-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.lead-ready-actions .button {
  min-height: 2.55rem;
  padding: 0.65rem 0.85rem;
  font-size: 0.72rem;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 11;
  background: #05080a;
  color: #fff;
  padding: 4.5rem var(--section-x) 1.2rem;
}

.footer-shell,
.footer-bottom {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 10vw, 9rem);
  padding-bottom: 4rem;
}

.footer-brand p {
  max-width: 21rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  line-height: 1.6;
}

.footer-links {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.8fr;
  gap: 2rem;
}

.footer-links > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-links > div > span {
  margin-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.42);
}

.footer-links a,
.footer-links p {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  line-height: 1.45;
  transition: color 220ms ease;
}

.footer-links a:hover {
  color: var(--accent-soft);
}

.footer-links svg {
  width: 0.88rem;
  height: 0.88rem;
  flex: 0 0 auto;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.2rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.66rem;
}

.floating-whatsapp {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: #d9fbec;
  padding: 0.72rem 0.95rem;
  color: #0e5f43;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.22);
  transition: transform 240ms ease, background 240ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
  background: #c4f5de;
}

.floating-whatsapp svg {
  width: 1rem;
  height: 1rem;
}

/* Privacy page */
.privacy-page {
  min-height: 100vh;
  background: var(--paper);
  color: var(--dark-text);
}

.privacy-header {
  border-bottom: 1px solid var(--dark-line);
  background: #091015;
  padding: 1rem var(--section-x);
}

.privacy-header-inner {
  width: min(100%, 70rem);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.privacy-header img {
  width: 145px;
  height: auto;
}

.privacy-header a:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
}

.privacy-main {
  width: min(calc(100% - 2.5rem), 70rem);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.privacy-main .eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-dark);
}

.privacy-main h1 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.privacy-meta {
  margin: 1rem 0 3rem;
  color: var(--dark-soft);
  font-size: 0.78rem;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 15rem 1fr;
  gap: clamp(2rem, 7vw, 6rem);
}

.privacy-toc {
  position: sticky;
  top: 2rem;
  align-self: start;
  display: grid;
  gap: 0.65rem;
}

.privacy-toc a {
  color: var(--dark-soft);
  font-size: 0.78rem;
}

.privacy-copy {
  display: grid;
  gap: 2.5rem;
}

.privacy-copy section {
  scroll-margin-top: 2rem;
}

.privacy-copy h2 {
  margin: 0 0 0.85rem;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.privacy-copy p,
.privacy-copy li {
  color: var(--dark-soft);
  font-size: 0.93rem;
  line-height: 1.72;
}

.privacy-copy ul {
  padding-left: 1.25rem;
}

.privacy-copy a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

/* Responsive */
@media (max-width: 1040px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .nav-actions {
    grid-column: 2;
  }

  .menu-trigger {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    border-top: 1px solid transparent;
    background: rgba(5, 8, 10, 0.94);
    backdrop-filter: blur(22px);
    transition: max-height 380ms ease, visibility 0s linear 380ms, border-color 380ms ease;
  }

  .mobile-menu--open {
    max-height: calc(100vh - var(--header-height));
    visibility: visible;
    border-top-color: var(--line);
    transition: max-height 380ms ease, visibility 0s linear 0s, border-color 380ms ease;
  }

  .mobile-menu-inner {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding: 1.8rem var(--section-x) 2.2rem;
    display: grid;
  }

  .mobile-menu-inner .eyebrow {
    margin: 0 0 1rem;
    color: rgba(255, 255, 255, 0.46);
  }

  .mobile-menu-inner > a:not(.button) {
    display: grid;
    grid-template-columns: 2.2rem 1fr;
    align-items: center;
    padding: 0.95rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 1.15rem;
  }

  .mobile-menu-inner > a:not(.button) span {
    color: rgba(255, 255, 255, 0.42);
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }

  .mobile-menu-cta {
    margin-top: 1.4rem;
  }

  .capability-bottom {
    gap: 3rem;
  }

  .capability-copy h2 {
    font-size: clamp(3.2rem, 7vw, 5.5rem);
  }

  .starting-grid,
  .offer-grid,
  .cases-grid {
    grid-template-columns: 1fr 1fr;
  }

  .starting-card:nth-child(2) {
    border-right: 0;
    padding-right: 0;
  }

  .starting-card:nth-child(3) {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 2rem 0 0;
    border-top: 1px solid var(--dark-line);
    border-right: 0;
  }

  .starting-card:nth-child(3) .starting-icon {
    margin-top: 2rem;
  }

  .offer-card:last-child,
  .case-card:last-child {
    grid-column: 1 / -1;
  }

  .offer-card:last-child {
    min-height: 32rem;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 1.5rem;
  }

  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 0 3rem;
  }

  .contact-copy .reveal:nth-child(-n+3) {
    grid-column: 1;
  }

  .contact-direct {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin-top: 0;
    align-self: end;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 66px;
    --section-x: 1.2rem;
  }

  .nav-shell {
    min-height: var(--header-height);
    gap: 0.7rem;
  }

  .brand img,
  .footer-brand img {
    width: 132px;
  }

  .motion-toggle,
  .menu-trigger {
    width: 2.45rem;
    height: 2.45rem;
  }

  .nav-cta-wrap {
    display: none;
  }

  .cinematic-section {
    padding-top: 5.4rem;
    padding-bottom: 1.7rem;
  }

  .hero-top,
  .capability-top,
  .hero-bottom,
  .capability-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-top,
  .capability-top {
    gap: 1.6rem;
  }

  .hero-intro,
  .capability-intro {
    max-width: 29rem;
    text-align: left;
  }

  .hero-intro p,
  .capability-intro p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-bottom {
    gap: 1.5rem;
  }

  .hero-copy h1,
  .capability-copy h2 {
    font-size: clamp(3.1rem, 14.5vw, 5rem);
    letter-spacing: -0.055em;
    line-height: 0.94;
  }

  .hero-scroll-cue {
    display: none;
  }

  .hero-contact-card {
    width: 100%;
  }

  .hero-contact-card > img {
    width: 4.4rem;
    height: 5rem;
  }

  .scroll-spacer {
    height: 80vh;
    height: 80dvh;
  }

  .scroll-canvas {
    display: none;
  }

  .scroll-video {
    object-position: 50% 50%;
  }

  .capability-section {
    justify-content: space-between;
  }

  .capability-bottom {
    gap: 1.7rem;
  }

  .capability-copy > .reveal > p,
  .capability-copy > p {
    margin-top: 1.1rem;
    font-size: 0.84rem;
    line-height: 1.58;
  }

  .button-row {
    margin-top: 1.3rem;
  }

  .capability-panel {
    width: 100%;
    padding: 0 1rem;
  }

  .capability-row {
    padding: 1rem 0;
  }

  .capability-row p {
    font-size: 0.78rem;
  }

  .content-field {
    border-radius: 1.4rem 1.4rem 0 0;
  }

  .content-section {
    padding: 4.5rem 0;
  }

  .section-heading {
    margin-bottom: 2.7rem;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  .split-heading,
  .starting-grid,
  .offer-grid,
  .process-grid,
  .cases-grid,
  .faq-shell,
  .contact-copy,
  .footer-shell,
  .footer-links,
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 1.3rem;
  }

  .split-heading .section-intro {
    margin: 0;
  }

  .starting-grid {
    border-top: 0;
  }

  .starting-card,
  .starting-card:first-child,
  .starting-card:nth-child(2),
  .starting-card:nth-child(3),
  .starting-card:last-child {
    min-height: auto;
    grid-column: auto;
    border: 0;
    border-top: 1px solid var(--dark-line);
    padding: 1.7rem 0 2.3rem;
  }

  .starting-icon,
  .starting-card:nth-child(3) .starting-icon {
    margin: 2.2rem 0 1.5rem;
  }

  .offer-grid,
  .cases-grid {
    gap: 0.8rem;
  }

  .offer-card,
  .offer-card:last-child {
    min-height: auto;
    grid-column: auto;
  }

  .offer-description {
    min-height: auto;
  }

  .offer-card .button {
    margin-top: 1.2rem;
  }

  .process-grid {
    gap: 2.7rem;
  }

  .process-line {
    margin-bottom: 2.3rem;
  }

  .case-card,
  .case-card:last-child {
    min-height: auto;
    grid-column: auto;
  }

  .faq-shell {
    gap: 2.8rem;
  }

  .faq-shell .section-heading {
    position: static;
  }

  .faq-item button > span {
    gap: 0.75rem;
  }

  .faq-panel {
    padding: 0 0 1.5rem 1.9rem;
  }

  .contact-copy {
    display: block;
  }

  .contact-direct {
    margin-top: 2.2rem;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .lead-ready-actions {
    display: grid;
  }

  .footer-shell {
    gap: 3rem;
    padding-bottom: 3rem;
  }

  .footer-links {
    gap: 2.2rem;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .floating-whatsapp {
    display: none;
  }

  .privacy-header-inner {
    align-items: flex-start;
  }

  .privacy-main {
    width: min(calc(100% - 2.4rem), 70rem);
  }

  .privacy-toc {
    position: static;
    padding-bottom: 1.8rem;
    border-bottom: 1px solid var(--dark-line);
  }
}

@media (max-height: 740px) and (min-width: 761px) {
  .cinematic-section {
    padding-top: 5.8rem;
    padding-bottom: 1.6rem;
  }

  .hero-copy h1,
  .capability-copy h2 {
    font-size: clamp(3.4rem, 6.5vw, 6rem);
  }

  .hero-contact-card > img {
    height: 5.3rem;
  }

  .capability-row {
    padding: 1rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
