/* =============================================
   PUURE DIGITAL — Homepage
   Palette: #000000 · #EDEDED · #FFFFFF · #175554
   Font: Dyson Sans Modern 400 / 500 / 600
   ============================================= */

@font-face {
  font-family: 'Urbanist';
  src: url('fonts/Urbanist-Light.ttf') format('truetype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('fonts/Urbanist-LightItalic.ttf') format('truetype');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('fonts/Urbanist-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('fonts/Urbanist-Italic.ttf') format('truetype');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('fonts/Urbanist-Medium.ttf') format('truetype');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('fonts/Urbanist-MediumItalic.ttf') format('truetype');
  font-weight: 500; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('fonts/Urbanist-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('fonts/Urbanist-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('fonts/Urbanist-ExtraBold.ttf') format('truetype');
  font-weight: 800; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Urbanist';
  src: url('fonts/Urbanist-Black.ttf') format('truetype');
  font-weight: 900; font-style: normal; font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* === BRAND PALETTE === */
  --black:       #000000;
  --grey:        #EDEDED;
  --white:       #FFFFFF;
  --teal:        #175554;
  --teal-mid:    #1a6362;
  --teal-light:  #1e7472;

  /* === DARK SURFACE TOKENS === */
  --d-bg:        #000000;
  --d-surface:   #0d0d0d;
  --d-surface2:  #141414;
  --d-surface3:  #1a1a1a;
  --d-border:    rgba(255,255,255,0.07);
  --d-border2:   rgba(255,255,255,0.12);
  --d-text:      rgba(255,255,255,0.92);
  --d-muted:     rgba(255,255,255,0.46);
  --d-muted2:    rgba(255,255,255,0.22);
  --d-teal-glow: rgba(23,85,84,0.18);
  --d-teal-b:    rgba(23,85,84,0.35);

  /* === LIGHT SURFACE TOKENS === */
  --l-bg:        #EDEDED;
  --l-surface:   #FFFFFF;
  --l-surface2:  #f5f5f5;
  --l-border:    rgba(0,0,0,0.08);
  --l-border2:   rgba(0,0,0,0.14);
  --l-text:      #0a0a0a;
  --l-muted:     #555555;
  --l-muted2:    #999999;
  --l-teal-glow: rgba(23,85,84,0.07);

  --font:    'Urbanist', sans-serif;
  --r:       14px;
  --r-sm:    8px;
  --r-pill:  100px;
}

html { scroll-behavior: auto; } /* Lenis handles smooth scroll */

/* ============================================================
   CASE — no forced transforms, handled in HTML
============================================================ */

body {
  font-family: var(--font);
  background: var(--d-bg);
  color: var(--d-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  letter-spacing: -0.01em;
  overflow-x: hidden;
}

/* ============================================================
   LIGHT SECTION SYSTEM
   .section--light cascades all dark tokens → light equivalents
============================================================ */

.section--light                               { background: var(--l-bg); }
.section--light .section-label               { color: var(--teal); }
.section--light .section-label::before       { background: var(--teal); }
.section--light .section-h2                  { color: var(--l-text); }
.section--light .section-sub                 { color: var(--l-muted); }
.section--light .eyebrow                     { color: var(--teal); }

/* problem list — no overrides needed; uses explicit colours */

/* service cards */
.section--light .service__card               { background: var(--l-surface); border-color: var(--l-border); }
.section--light .service__card:hover         { border-color: var(--teal); }
.section--light .service__card h3            { color: var(--l-text); }
.section--light .service__card p             { color: var(--l-muted); }
.section--light .service__icon               { color: var(--teal); background: var(--l-teal-glow); border-color: rgba(23,85,84,0.14); }
.section--light .service__outcome            { color: var(--teal); }

/* process */

/* FAQ */
.section--light .faq__item                  { border-color: var(--l-border); }
.section--light .faq__q                     { background: var(--l-surface); color: var(--l-text); }
.section--light .faq__q:hover               { background: #f5f5f5; }
.section--light .faq__icon                  { border-color: rgba(0,0,0,0.25); }
.section--light .faq__icon::before,
.section--light .faq__icon::after           { background: var(--l-text); }
.section--light .faq__a                     { background: var(--l-surface); border-color: var(--l-border); }
.section--light .faq__a p                   { color: var(--l-muted); }

/* ============================================================
   LAYOUT
============================================================ */

.container        { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container--mid   { max-width: 1000px; }
.container--narrow { max-width: 760px; }

/* ============================================================
   TYPOGRAPHY TOKENS
============================================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: none;
  color: var(--teal);
  margin-bottom: 24px;
}
.eyebrow--light { color: rgba(255,255,255,0.4); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: none;
  color: var(--teal);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.section-label.in-view::before {
  transform: scaleX(1);
}

.section-h2 {
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 18px;
  text-wrap: balance;
}
.section-h2--center { text-align: center; }

.section-sub {
  font-size: 16px;
  color: var(--d-muted);
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.02em;
  max-width: 540px;
  margin-bottom: 56px;
}
.section-sub--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

/* ============================================================
   BUTTONS
============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  font-size: 14px;
  padding: 14px 30px;
  color: rgba(255,255,255,0.92);
  border-radius: var(--r-pill);
  border: 1px solid rgba(30,181,168,0.45);
  letter-spacing: 0.04em;
  text-transform: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: rgba(30,181,168,0.10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow:
    0 0 0 0 rgba(30,181,168,0),
    inset 0 1px 0 rgba(255,255,255,0.08),
    0 4px 24px rgba(0,0,0,0.25);
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.2s cubic-bezier(0.16,1,0.3,1),
    color 0.2s ease;
}


.btn--primary:hover {
  background: rgba(30,181,168,0.22);
  border-color: rgba(30,181,168,0.75);
  color: #fff;
  transform: translateY(-1px);
  box-shadow:
    0 0 24px rgba(30,181,168,0.18),
    inset 0 1px 0 rgba(255,255,255,0.10),
    0 8px 32px rgba(0,0,0,0.3);
}

.btn--ghost {
  font-size: 15px;
  padding: 14px 24px;
  background: transparent;
  color: var(--d-muted);
  border: 1px solid var(--d-border2);
  border-radius: var(--r-pill);
  font-weight: 500;
  box-shadow: 0 0 14px rgba(255,255,255,0.06), 0 0 28px rgba(255,255,255,0.03);
}
.btn--ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.25); }

.btn--nav {
  font-size: 13px;
  font-weight: 600;
  padding: 9px 22px;
  background: rgba(255,255,255,0.92);
  color: #0a0f0e;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: var(--r-pill);
  letter-spacing: 0.01em;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: background 0.2s ease, transform 0.2s cubic-bezier(0.16,1,0.3,1);
}
.btn--nav:hover {
  background: #fff;
  transform: translateY(-1px);
  color: #0a0f0e;
}

.btn--xl {
  font-size: 17px;
  padding: 18px 44px;
}

/* ============================================================
   NAV
============================================================ */

.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1040px;
  z-index: 200;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.12);
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, border-radius 0.3s ease;
}
.nav.scrolled {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.14);
}

.nav__inner {
  padding: 0 10px 0 20px;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav__logo img { height: 20px; width: auto; display: block; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex: 1;
  justify-content: center;
}
.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  right: 50%;
  height: 1px;
  background: var(--teal);
  transition: left 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav__links a:hover { color: var(--white); }
.nav__links a:hover::after { left: 0; right: 0; }


/* ============================================================
   HERO  · dark
============================================================ */

.hero {
  background: var(--d-bg);
  padding-top: 90px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

/* ---- Animation layers ---- */

/* Abstract network canvas — full hero, GSAP controls opacity */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
}
@media (max-width: 767px) {
  #heroCanvas { display: none; }
}

/* Radial teal glow — top */
.hero__bg-glow {
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 1000px; height: 700px;
  background: radial-gradient(ellipse at 50% 28%, rgba(23,85,84,0.18) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

/* Radial teal glow — bottom bloom */
.hero__bg-glow-bottom {
  position: absolute;
  bottom: -120px; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 500px;
  background: radial-gradient(ellipse at 50% 80%, rgba(23,133,132,0.32) 0%, rgba(23,85,84,0.12) 38%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 600px) {
  .hero__bg-glow-bottom { width: 100vw; height: 300px; bottom: -60px; }
}

/* Light sweep — single pass on load */
.hero__sweep {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hero__sweep::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: -60%;
  width: 55%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.025) 50%,
    transparent 100%
  );
  animation: heroSweep 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.15s both;
}
@keyframes heroSweep {
  to { left: 110%; }
}

/* Subtle grid texture */
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.034) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: 0;
  animation: heroGridIn 1.2s ease 1.1s forwards;
}
@keyframes heroGridIn {
  to { opacity: 1; }
}

/* Atmospheric horizontal line */
.hero__atm-line {
  position: absolute;
  top: 52%;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,0.055) 40%,
    rgba(23,85,84,0.2) 60%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
  animation: heroAtmLine 1.8s ease 0.7s forwards;
}
@keyframes heroAtmLine {
  to { width: 100%; }
}

/* Particles container */
.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Individual particle */
.particle {
  position: absolute;
  border-radius: 50%;
  will-change: transform, opacity;
  animation: particleFloat var(--dur, 14s) var(--del, 0s) infinite ease-in-out;
}
@keyframes particleFloat {
  0%   { transform: translateY(0)       translateX(0);            opacity: 0; }
  8%   { opacity: var(--op, 0.25); }
  88%  { opacity: var(--op, 0.25); }
  100% { transform: translateY(-110vh)  translateX(var(--dx, 20px)); opacity: 0; }
}

/* Scroll indicator */
.hero__scroll-ind {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  animation: heroScrollIn 0.8s ease 2.8s forwards;
}
@keyframes heroScrollIn {
  to { opacity: 1; }
}
.hero__scroll-line {
  width: 1px;
  height: 0;
  background: linear-gradient(180deg, var(--teal), transparent);
  animation: heroScrollLine 0.9s ease 2.9s forwards;
}
@keyframes heroScrollLine {
  to { height: 56px; }
}

/* ---- Eyebrow ---- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: none;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(10px);
  position: relative;
  z-index: 2;
}
.eyebrow.anim-in {
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 1;
  transform: translateY(0);
}

.eyebrow__line {
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--teal);
  margin-right: 0;
  transition: width 0.6s ease, margin-right 0.6s ease;
  vertical-align: middle;
}
.eyebrow.anim-in .eyebrow__line {
  width: 20px;
  margin-right: 10px;
}

.eyebrow__text { display: inline-block; }

/* ---- Headline word animation ---- */
.hero__container {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  padding-bottom: 72px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.hero__h1 {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 22px;
  max-width: 640px;
}

/* Word-wrap: the clip container */
.word-wrap {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.22em;
  margin-bottom: -0.22em;
  vertical-align: baseline;
  line-height: 1.06;
}

/* The sliding word */
.word-wrap .word {
  display: inline-block;
  transform: translateY(105%);
  opacity: 0;
  will-change: transform, opacity;
  transition:
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    opacity   0.5s  ease;
}
.word-wrap .word.revealed {
  transform: translateY(0);
  opacity: 1;
}

/* Typewriter cycling word */
.hero__typewriter {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(90deg, #0d5c54 0%, #1a8c80 50%, #0d5c54 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  vertical-align: bottom;
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: translateY(0);
  margin-left: 0.15em;
  line-height: 1.0;
  position: relative;
  white-space: nowrap;
  font-size: 1.18em;
}
.hero__typewriter::after {
  content: '|';
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-style: normal;
  font-size: 0.8em;
  color: var(--white);
  font-weight: 300;
  margin-left: 3px;
  vertical-align: baseline;
  animation: twCursor 0.75s step-end infinite;
}
@keyframes twCursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* em inside hero headline — with light-pass gloss */
.hero__h1 em {
  font-style: normal;
  color: var(--teal);
  display: inline-block;
  position: relative;
  overflow: hidden;
}
.hero__h1 em::after {
  content: '';
  position: absolute;
  inset: -10%;
  width: 55%;
  background: linear-gradient(
    108deg,
    transparent 0%,
    rgba(255,255,255,0.08) 40%,
    rgba(255,255,255,0.20) 50%,
    rgba(255,255,255,0.08) 60%,
    transparent 100%
  );
  transform: translateX(-180%);
  animation: emGloss 1.4s cubic-bezier(0.4, 0, 0.2, 1) 3.4s both;
  pointer-events: none;
}
@keyframes emGloss {
  to { transform: translateX(380%); }
}

/* ---- Subheadline ---- */
.hero__sub {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--d-muted);
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.02em;
  max-width: 560px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.hero__sub.anim-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---- CTAs ---- */
.hero__ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero__ctas-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(10px);
}
.hero__trust.anim-in {
  transition: opacity 0.6s ease, transform 0.6s ease;
  opacity: 1;
  transform: translateY(0);
}

.hero__trust-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.hero__trust-text {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

.hero__trust svg:last-child {
  opacity: 0.7;
}

.hero__ctas.anim-in {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Hero layout: text + story side by side ---- */
.hero__container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.hero__content {
  flex: 1 1 0;
  min-width: 0;
}

/* ---- Instagram story card ---- */
.hero__story {
  flex: 0 0 auto;
  position: relative;
  z-index: 3;
  margin-right: 40px;
  margin-top: 32px;
  /* start hidden — GSAP animates in */
  opacity: 0;
  transform: translateY(40px) scale(0.88) rotate(2deg);
}

/* ---- Coverflow carousel ---- */
.story__carousel {
  position: relative;
  width: 300px;
  aspect-ratio: 9 / 16;
  perspective: 900px;
  perspective-origin: 50% 50%;
}

.story__slide {
  position: absolute;
  inset: 0;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  cursor: pointer;
}

/* Center slot — front, full size */
.story__slide[data-slot="center"] {
  transform: translateX(0) translateZ(0) rotateY(0deg) scale(1);
  opacity: 1;
  z-index: 3;
}
/* Left slot — behind, rotated away */
.story__slide[data-slot="left"] {
  transform: translateX(-108px) translateZ(-85px) rotateY(42deg) scale(0.82);
  opacity: 0.6;
  z-index: 1;
}
/* Right slot — behind, rotated away */
.story__slide[data-slot="right"] {
  transform: translateX(108px) translateZ(-85px) rotateY(-42deg) scale(0.82);
  opacity: 0.6;
  z-index: 1;
}

/* Progress bar hidden on non-center slides */
.story__slide:not([data-slot="center"]) .story__progress { opacity: 0; }
.story__slide:not([data-slot="center"]) .story__label    { opacity: 0; }

/* Nav arrows */
.story__navs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}
.story__nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.25s, background 0.25s, color 0.25s;
  backdrop-filter: blur(4px);
}
.story__nav:hover {
  border-color: var(--teal);
  background: rgba(23,85,84,0.35);
  color: var(--white);
}

.story__phone {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.10),
    0 32px 80px rgba(0,0,0,0.65),
    0 0 60px rgba(23,85,84,0.20);
}

.story__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* top gradient so progress bar is readable */
.story__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    transparent 30%,
    transparent 70%,
    rgba(0,0,0,0.50) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* progress bar */
.story__progress {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
}
.story__progress-track {
  height: 2.5px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  overflow: hidden;
}
.story__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--white);
  border-radius: 2px;
  transition: width 0.25s linear;
}

/* bottom label */
.story__label {
  position: absolute;
  bottom: 14px;
  left: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  background: rgba(0,0,0,0.38);
  backdrop-filter: blur(14px) saturate(130%);
  -webkit-backdrop-filter: blur(14px) saturate(130%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 7px 12px;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: none;
  color: rgba(255,255,255,0.75);
}
.story__label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(23,85,84,0.9);
  animation: storyDotPulse 2s ease-in-out infinite;
}
@keyframes storyDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

/* ---- Stats strip ---- */
.hero__stats-wrap {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--d-border);
  margin-top: auto;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero__stats-wrap.anim-in { opacity: 1; }

.hero__stats {
  display: flex;
  align-items: stretch;
}

.hero__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 32px 20px;
  text-align: center;
}
.hero__stat + .hero__stat { border-left: 1px solid var(--d-border); }

.hero__stat-sep { display: none; }

.hero__stat-n {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}

.hero__stat-l {
  font-size: 11px;
  color: var(--d-muted);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.45;
}

/* ============================================================
   CLIENT LOGOS  · dark
============================================================ */

.clients {
  background: var(--d-bg);
  padding: 40px 0;
  overflow: hidden;
}

.clients__label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: none;
  color: var(--d-muted2);
  text-align: center;
  margin-bottom: 28px;
}

/* Fade edges to pure black */
.clients__mask {
  position: relative;
  overflow: hidden;
}
.clients__mask::before,
.clients__mask::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  z-index: 2;
  pointer-events: none;
}
.clients__mask::before {
  left: 0;
  width: 120px;
  background: linear-gradient(90deg, var(--d-bg) 40%, transparent);
}
.clients__mask::after {
  right: 0;
  width: 120px;
  background: linear-gradient(-90deg, var(--d-bg) 40%, transparent);
}

/* Scrolling track — right to left */
.clients__track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: logoScroll 70s linear infinite;
}
.clients__track:hover { animation-play-state: paused; }

@keyframes logoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Individual logo — fixed slot width so exactly 5 show at once.
   5 slots × 220px = 1100px ≈ container inner width. */
.client__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 260px;
  height: 64px;
  padding: 0 32px;
}

.client__logo img {
  width: 100%;
  height: 100%;
  max-height: 64px;
  object-fit: contain;
  opacity: 0.55;
  transition: opacity 0.25s ease;
}
.client__logo img:hover { opacity: 0.9; }

/* Mobile — 3 logos at a time: 3 × 120px = 360px ≈ mobile viewport */
@media (max-width: 600px) {
  .clients        { padding: 28px 0; }
  .clients__label { margin-bottom: 20px; }
  .client__logo   { width: 120px; height: 36px; padding: 0 6px; }
  .client__logo img { max-height: 36px; }
  .clients__mask::before { width: 60px; }
  .clients__mask::after  { width: 60px; }
}

/* ============================================================
   PROBLEM  · light
============================================================ */

/* ============================================================
   PROBLEM  · dark
============================================================ */

.pb {
  background: var(--d-bg);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 120px clamp(24px, 6vw, 100px);
}

.pb__inner {
  max-width: 680px;
  margin: 0 auto;
}

/* ── Header ── */
.pb__header {
  margin-bottom: 80px;
}

.pb__heading {
  font-family: 'Urbanist', sans-serif;
  font-style: normal;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 20px;
}

.pb__sub {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin: 0;
  max-width: 520px;
}

/* Aurora text */
.aurora-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.15em;
  background: linear-gradient(135deg, #1eb5a8 0%, #a8edea 30%, #1eb5a8 50%, #0d7a74 70%, #1eb5a8 100%);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: auroraShift 5s linear infinite;
}

@keyframes auroraShift {
  0%   { background-position: 0% center; }
  100% { background-position: 300% center; }
}

/* ── Card Stack ── */
.pb__stack {
  position: relative;
  margin-bottom: 80px;
}

.pb__card {
  position: sticky;
  background: #0c1c1a;
  border: 1px solid rgba(30,181,168,0.14);
  border-radius: 24px;
  padding: 44px;
  transform-origin: top center;
  will-change: transform;
}

/*
  Staggered sticky tops + z-index:
  Card N+1 slides in BELOW card N and covers it from underneath.
  The 16px gap between tops lets the buried card's curved top edge
  peek above the card in front — exactly like a physical card deck.
*/
.pb__card:nth-child(1) { top: 108px; z-index: 1; }
.pb__card:nth-child(2) { top: 136px; z-index: 2; }
.pb__card:nth-child(3) { top: 164px; z-index: 3; }

.pb__card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.pb__card-tag {
  font-family: 'Urbanist', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1eb5a8;
  background: rgba(30,181,168,0.1);
  border: 1px solid rgba(30,181,168,0.22);
  border-radius: 100px;
  padding: 5px 13px;
}

.pb__card-counter {
  font-family: 'Urbanist', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.22);
}

.pb__card-icon {
  width: 52px;
  height: 52px;
  background: rgba(30,181,168,0.08);
  border: 1px solid rgba(30,181,168,0.18);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: #1eb5a8;
}

.pb__card-icon svg {
  width: 22px;
  height: 22px;
}

.pb__card-title {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 18px;
  line-height: 1.15;
}

.pb__card-desc {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.8;
  color: rgba(255,255,255,0.48);
  margin: 0;
}

.pb__card-foot {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.pb__card-stat-n {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: #1eb5a8;
  line-height: 1;
  flex-shrink: 0;
}

.pb__card-stat-l {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.38);
}

/* Section fade-in */
.pb__header,
.pb__stack,
.pb__close {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.pb__stack { transition-delay: 0.15s; }
.pb__close { transition-delay: 0.3s; }

.pb--revealed .pb__header,
.pb--revealed .pb__stack,
.pb--revealed .pb__close {
  opacity: 1;
  transform: none;
}

/* ── Closing ── */
.pb__close {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.pb__close-line {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: rgba(255,255,255,0.88);
  margin: 0;
}

.pb__close-em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.15em;
  color: #1eb5a8;
}

.pb__close-cta {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1eb5a8;
  border: 1px solid rgba(30,181,168,0.3);
  border-radius: 100px;
  padding: 8px 18px;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}
.pb__close-cta:hover {
  border-color: #1eb5a8;
  color: #fff;
}

@media (max-width: 768px) {
  .pb__card  { padding: 32px 28px; border-radius: 20px; }
  .pb__card:nth-child(1) { top: 80px; }
  .pb__card:nth-child(2) { top: 92px; }
  .pb__card:nth-child(3) { top: 104px; }
}

@media (max-width: 480px) {
  .pb__card { padding: 28px 22px; }
  .pb__card-title { font-size: clamp(20px, 6vw, 26px); }
}


/* ============================================================
   SYSTEM  · dark
============================================================ */

.system {
  padding: 120px 0;
  background: var(--d-bg);
  position: relative;
  overflow: hidden;
}

/* Faint grid texture matching hero */
.system::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* ---- Roadmap layout ---- */
.roadmap {
  position: relative;
  margin-top: 72px;
  padding-bottom: 40px;
}

.roadmap__svg {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 800px;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

#roadmapPath {
  /* Hidden until JS calculates true length and animates in */
  stroke-dasharray: 9999;
  stroke-dashoffset: 9999;
  transition: none;
}

.roadmap__vline {
  display: none; /* desktop: SVG used instead */
}

.roadmap__item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  margin-bottom: 80px;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.roadmap__item--left {
  justify-content: flex-start;
  padding-right: 35%;
  transform: translateX(-30px);
}
.roadmap__item--right {
  justify-content: flex-end;
  padding-left: 35%;
  transform: translateX(30px);
}
.roadmap__item.anim-in {
  opacity: 1;
  transform: translateX(0);
}

/* Teal node dot on the path — hidden */
.roadmap__node {
  display: none;
  position: absolute;
  top: 40px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px 4px rgba(23,133,132,0.6);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.4s ease 0.3s;
}
.roadmap__item--left  .roadmap__node { right: calc(50% - 7px); }
.roadmap__item--right .roadmap__node { left:  calc(50% - 7px); }
.roadmap__item.anim-in .roadmap__node { opacity: 1; }

/* Roadmap cards need an opaque backdrop so the SVG path doesn't bleed through */
.roadmap .system__card {
  background: rgba(13,13,13,0.94);
}

/* Coverflow stack — kept for legacy, now replaced */
.system__stack {
  position: relative;
  height: 520px;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  margin-top: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.system__card {
  position: relative;
  width: 100%;
  background: rgba(13,13,13,0.55);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r);
  padding: 48px 36px;
  overflow: hidden;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* Progress dots */
.system__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.system__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--d-border2);
  transition: background 0.4s, transform 0.4s;
}
.system__dot--active {
  background: var(--teal);
  transform: scale(1.3);
}

/* Top teal accent bar — hidden by default, revealed on hover */
.system__card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.system__card:hover::after { transform: scaleX(1); }
.system__card:hover { border-color: rgba(23,85,84,0.4); }

/* Soft teal corner glow */
.system__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  background: radial-gradient(ellipse at 0% 0%, rgba(23,85,84,0.1) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}
.system__card:hover::before { opacity: 1; }

.system__card--active {
  background: rgba(23,85,84,0.82) !important;
  backdrop-filter: blur(24px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
  border-color: rgba(29,133,132,0.5) !important;
  box-shadow: 0 0 48px rgba(23,85,84,0.28), inset 0 1px 0 rgba(255,255,255,0.08) !important;
  opacity: 1 !important;
}
.system__card--active::before {
  background: radial-gradient(ellipse at 100% 0%, rgba(255,255,255,0.08) 0%, transparent 55%);
  opacity: 1;
}
.system__card--active::after { background: rgba(255,255,255,0.2); transform: scaleX(1); }

.system__card--active .system__num { color: rgba(255,255,255,0.5); }
.system__card--active .system__icon-wrap { color: rgba(255,255,255,0.95); }
.system__card--active h3 { color: var(--white); }
.system__card--active p  { color: rgba(255,255,255,0.78); }
.system__card--active ul li { color: rgba(255,255,255,0.72); border-bottom-color: rgba(255,255,255,0.12); }
.system__card--active ul li::before { background: rgba(255,255,255,0.6); }

.system__num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--teal);
  display: block;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.system__icon-wrap {
  width: 56px; height: 56px;
  color: var(--teal);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.system__icon-wrap svg { width: 100%; height: 100%; }
.system__card--active .system__icon-wrap { color: rgba(255,255,255,0.9); }

.system__card h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.system__card p {
  font-size: 14px;
  color: var(--d-muted);
  line-height: 1.75;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.system__card ul {
  list-style: none;
  position: relative;
  z-index: 1;
}
.system__card ul li {
  font-size: 13px;
  color: var(--d-muted);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--d-border);
}
.system__card ul li:last-child { border-bottom: none; }
.system__card ul li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.system__card--active ul li { border-bottom-color: rgba(255,255,255,0.08); }

/* ============================================================
   SERVICES  · horizontal expandable list
============================================================ */

.services {
  padding: 120px 0;
}

/* ---- New horizontal list layout ---- */
.svc__list {
  margin-top: 64px;
  position: relative;
}
.svc__list::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 1px;
  width: 100%;
  background: var(--d-border);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.svc__list.in-view::before {
  transform: scaleX(1);
}

.svc__item {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 36px 0 36px 20px;
  border-bottom: 1px solid var(--d-border);
  position: relative;
  cursor: default;
  overflow: hidden;
  transition: padding-left 0.4s cubic-bezier(0.16,1,0.3,1);
}

/* Teal left edge reveal on hover */
.svc__item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--teal), var(--teal-light));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
}
.svc__item:hover::before { transform: scaleY(1); }
.svc__item:hover { padding-left: 28px; }

.svc__num {
  font-size: 11px;
  font-weight: 600;
  color: var(--d-muted2);
  letter-spacing: 0.1em;
  padding-top: 6px;
  min-width: 28px;
  flex-shrink: 0;
  transition: color 0.25s;
}
.svc__item:hover .svc__num { color: var(--teal); }

.svc__body { flex: 1; min-width: 0; }

.svc__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.svc__name {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  transition: color 0.25s;
  margin: 0;
}
.svc__item:hover .svc__name { color: var(--white); }

.svc__tag {
  font-size: 13px;
  color: var(--d-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.25s;
  flex-shrink: 0;
}
.svc__item:hover .svc__tag { color: var(--teal); }

/* Description slides in on hover */
.svc__desc {
  font-size: 14px;
  color: var(--d-muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition:
    max-height 0.45s cubic-bezier(0.16,1,0.3,1),
    opacity    0.35s ease,
    margin-top 0.4s cubic-bezier(0.16,1,0.3,1);
}
.svc__item:hover .svc__desc {
  max-height: 80px;
  opacity: 1;
  margin-top: 14px;
}

/* Icon — slides in from right on hover */
.svc__icon {
  color: var(--teal);
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease 0.1s, transform 0.35s cubic-bezier(0.16,1,0.3,1) 0.1s;
  flex-shrink: 0;
  padding-top: 6px;
}
.svc__item:hover .svc__icon {
  opacity: 0.7;
  transform: translateX(0);
}

/* ============================================================
   AI ENHANCEMENT
============================================================ */

.ai-feat {
  padding: 100px clamp(24px, 6vw, 100px);
  background: var(--d-surface);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.ai-feat__inner {
  max-width: 840px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.ai-feat__pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(30,181,168,0.07);
  border: 1px solid rgba(30,181,168,0.18);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1eb5a8;
  margin-bottom: 28px;
}

.ai-feat__pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1eb5a8;
  box-shadow: 0 0 7px rgba(30,181,168,1);
  animation: ai-pulse 2.4s ease-in-out infinite;
}

@keyframes ai-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 7px rgba(30,181,168,1); }
  50% { opacity: 0.4; box-shadow: 0 0 3px rgba(30,181,168,0.4); }
}

.ai-feat__h2 {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0 0 20px;
}

.ai-feat__em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  color: #1eb5a8;
  text-shadow: 0 0 40px rgba(30,181,168,0.2);
}

.ai-feat__p {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  color: rgba(255,255,255,0.42);
  margin: 0 0 32px;
  max-width: 420px;
}

.ai-feat__list {
  list-style: none;
  margin: 0 0 40px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ai-feat__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
}

.ai-feat__list li::before {
  content: '';
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(30,181,168,0.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6l2.5 2.5 4.5-5' stroke='%231eb5a8' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/12px no-repeat;
  border: 1px solid rgba(30,181,168,0.25);
}

/* Media */
.ai-feat__media {
  position: relative;
  flex-shrink: 0;
}

.ai-feat__video-wrap {
  position: relative;
  z-index: 1;
  width: 290px;
  aspect-ratio: 9 / 16;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow:
    0 0 0 1px rgba(30,181,168,0.07),
    0 0 70px rgba(30,181,168,0.1),
    0 40px 80px rgba(0,0,0,0.55);
}

.ai-feat__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ai-feat__video-badge {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(30,181,168,0.22);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1eb5a8;
  white-space: nowrap;
}

.ai-feat__glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,181,168,0.15) 0%, transparent 68%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  filter: blur(24px);
}

@media (max-width: 900px) {
  .ai-feat__inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .ai-feat__media {
    display: flex;
    justify-content: center;
  }
  .ai-feat__video-wrap { width: min(260px, 68vw); }
  .ai-feat__p { max-width: 100%; }
}

/* ============================================================
   RESULTS  · dark
============================================================ */

.results {
  padding: 120px 0;
  background: var(--d-surface);
  position: relative;
  overflow: hidden;
}

.results__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 80px;
  padding: 64px 0;
  border-top: 1px solid var(--d-border);
  border-bottom: 1px solid var(--d-border);
}

.results__stat {
  padding: 0 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  border-right: 1px solid var(--d-border);
}
.results__stat:first-child { padding-left: 0; }
.results__stat:last-child  { border-right: none; }

.results__n {
  font-size: clamp(48px, 6.5vw, 80px);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 0 60px rgba(23,85,84,0.5);
}
.results__l {
  font-size: 13px;
  color: var(--d-muted);
  line-height: 1.5;
  letter-spacing: 0.01em;
  max-width: 160px;
}

/* Split-screen feature case studies */
.results .section-h2 {
  margin-bottom: 80px;
}
.results__cases {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}

.result__feature {
  display: grid;
  grid-template-columns: 22% 78%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 380px;
  transition: border-color 0.35s;
}
.result__feature:hover {
  border-color: rgba(23,85,84,0.45);
}

/* Reversed: video on right — keep video at same 28% width as normal variant */
.result__feature--reverse {
  grid-template-columns: 78% 22%;
}
.result__feature--reverse .result__feature-media {
  grid-column: 2;
  grid-row: 1;
}
.result__feature--reverse .result__feature-content {
  grid-column: 1;
  grid-row: 1;
}

/* Media half */
.result__feature-media {
  position: relative;
  overflow: hidden;
}
.result__feature-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.result__feature:hover .result__feature-video {
  transform: scale(1.03);
}

/* Gradient blending into content */
.result__feature-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 50%, rgba(0,0,0,0.72) 100%);
}
.result__feature--reverse .result__feature-overlay {
  background: linear-gradient(to left, transparent 50%, rgba(0,0,0,0.72) 100%);
}

/* Content half */
.result__feature-content {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: clamp(36px, 4vw, 60px) clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.result__feature-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: none;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 10px;
}
.result__feature-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--teal);
  flex-shrink: 0;
}

.result__feature-h {
  font-size: clamp(20px, 2.1vw, 32px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--white);
  text-wrap: balance;
}
.result__feature-h em {
  font-style: normal;
  color: var(--teal);
}

.result__feature-p {
  font-size: 14px;
  color: var(--d-muted);
  line-height: 1.78;
}

/* Shared metrics row */
.result__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.result__metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.result__metric:last-child { border-right: none; padding-right: 0; }
.result__metric + .result__metric { padding-left: 20px; }

.result__metric span {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1;
}
.result__metric small {
  font-size: 11px;
  color: var(--d-muted);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.results__cta { text-align: center; }

/* ============================================================
   HOW IT WORKS  · light
============================================================ */

.process {
  padding: 120px 0;
}

.process__h2 { max-width: 560px; }

.process__em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.15em;
}

.process__sub {
  font-size: 15px;
  color: var(--d-muted);
  line-height: 1.7;
  max-width: 480px;
  margin: 16px 0 0;
}

/* Grid — relative so the connector line can be absolutely positioned */
.process__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 64px;
  position: relative;
}

/* Animated connector line between icon tops */
.process__connector {
  position: absolute;
  top: 44px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.process__connector-fill {
  height: 100%;
  background: linear-gradient(to right, rgba(29,133,132,0.5), rgba(255,255,255,0.1), rgba(29,133,132,0.5));
  transform: scaleX(0);
  transform-origin: left;
}

/* Card */
.process__col {
  background: rgba(13,13,13,0.55);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 32px 28px;
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s cubic-bezier(0.16,1,0.3,1);
  align-items: start;
}
.process__col:hover {
  border-color: rgba(29,133,132,0.35);
  transform: translateY(-3px);
}

/* Ghost step number */
.process__ghost {
  position: absolute;
  top: 12px; right: 16px;
  font-size: 80px;
  font-weight: 600;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
  transition: color 0.4s ease, text-shadow 0.4s ease;
}
.process__col:hover .process__ghost {
  color: rgba(23,133,132,0.55);
  text-shadow: 0 0 40px rgba(23,133,132,0.4);
}

/* Icon container */
.process__icon-wrap {
  position: relative;
  width: 44px; height: 44px;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.process__icon-box {
  width: 44px; height: 44px;
  background: rgba(29,133,132,0.12);
  border: 1px solid rgba(29,133,132,0.22);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  z-index: 1;
}
.process__col:hover .process__icon-box { transform: scale(1.1); }

/* Pulse ring */
.process__pulse {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  border: 1px solid rgba(29,133,132,0.22);
  opacity: 0;
  pointer-events: none;
}
.process__cols.animated .process__col:nth-child(2) .process__pulse { animation: processPulse 1.1s 0.65s ease-out forwards; }
.process__cols.animated .process__col:nth-child(3) .process__pulse { animation: processPulse 1.1s 0.8s  ease-out forwards; }
.process__cols.animated .process__col:nth-child(4) .process__pulse { animation: processPulse 1.1s 0.95s ease-out forwards; }
@keyframes processPulse {
  0%   { opacity: 0;   transform: scale(1);   }
  30%  { opacity: 0.6; }
  100% { opacity: 0;   transform: scale(1.6); }
}

.process__timing {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: none;
  color: var(--d-muted2);
}

.process__col h3 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
}

.process__col > p {
  font-size: 14px;
  color: var(--d-muted);
  line-height: 1.75;
  flex: 1;
}

/* Deliverable badge */
.process__deliverable {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(29,133,132,0.1);
  border: 1px solid rgba(29,133,132,0.2);
  color: var(--teal);
  font-size: 11.5px;
  font-weight: 600;
  margin-top: 4px;
  align-self: flex-start;
}
.process__deliverable svg { flex-shrink: 0; }

.process__footnote {
  text-align: center;
  font-size: 13px;
  color: var(--d-muted2);
  margin-top: 48px;
}

/* ============================================================
   TESTIMONIALS  · dark
============================================================ */

.testimonials {
  padding: 120px 0 100px;
  background: var(--d-bg);
  position: relative;
  overflow: hidden;
}

/* Google colour orbs */
.testi__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0;
  animation: orbFloat 12s ease-in-out infinite;
}

.testi__orb--blue {
  width: 280px; height: 280px;
  background: #4285F4;
  top: 10%; left: 5%;
  opacity: 0.04;
  animation-duration: 14s;
  animation-delay: 0s;
}
.testi__orb--red {
  width: 220px; height: 220px;
  background: #EA4335;
  top: 50%; right: 8%;
  opacity: 0.04;
  animation-duration: 11s;
  animation-delay: -3s;
}
.testi__orb--yellow {
  width: 200px; height: 200px;
  background: #FBBC05;
  bottom: 10%; left: 20%;
  opacity: 0.035;
  animation-duration: 16s;
  animation-delay: -6s;
}
.testi__orb--green {
  width: 240px; height: 240px;
  background: #34A853;
  top: 20%; right: 25%;
  opacity: 0.035;
  animation-duration: 13s;
  animation-delay: -9s;
}

@keyframes orbFloat {
  0%,100% { transform: translate(0, 0) scale(1); }
  25%      { transform: translate(20px, -30px) scale(1.05); }
  50%      { transform: translate(-15px, 20px) scale(0.95); }
  75%      { transform: translate(25px, 10px) scale(1.02); }
}

.testi__trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.testi__g-icon { flex-shrink: 0; }
.testi__trust-stars { color: #FBBC05; font-size: 14px; letter-spacing: 1px; }
.testi__trust-score { font-size: 14px; font-weight: 600; color: var(--white); }
.testi__trust-sep   { color: rgba(255,255,255,0.25); }
.testi__trust-label { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ---- Slider ---- */
.testi__slider {
  max-width: 780px;
  margin: 72px auto 0;
  padding: 0 clamp(24px, 5vw, 60px);
  text-align: center;
}
.testi__slides { position: relative; min-height: 220px; }
.testi__slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}
.testi__slide.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}
.testi__slide-stars {
  color: #FBBC05;
  font-size: 16px;
  letter-spacing: 3px;
  margin-bottom: 28px;
  display: block;
}
.testi__slide-quote {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  margin: 0 0 36px;
  font-style: normal;
}
.testi__slide-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi__slide-author::before,
.testi__slide-author::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
  max-width: 60px;
}
.testi__slide-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
}
.testi__slide-biz {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.testi__slide-biz::before { content: '·'; margin-right: 8px; color: rgba(255,255,255,0.2); }

/* Controls */
.testi__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 48px;
}
.testi__arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  flex-shrink: 0;
}
.testi__arrow:hover {
  border-color: var(--teal);
  background: rgba(30,181,168,0.08);
  color: var(--teal);
}
.testi__dots { display: flex; gap: 8px; align-items: center; }
.testi__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.18);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}
.testi__dot.is-active {
  background: var(--teal);
  transform: scale(1.4);
}

/* Google CTA */
.testi__google-cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}
.testi__google-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.6);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.testi__google-btn:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
}

/* ============================================================
   FAQ  · light
============================================================ */

/* =============================================
   TEAM — glass morphism cards
   ============================================= */
.team {
  padding: 120px 0;
  background: var(--d-bg);
  overflow: hidden;
  position: relative;
}

/* Aurora bands */
.team::before,
.team::after {
  content: '';
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.team::before {
  width: 70%;
  height: 300px;
  top: 10%;
  left: -10%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(23,133,132,0.5) 30%,
    rgba(29,190,189,0.35) 50%,
    rgba(52,168,83,0.25) 70%,
    transparent 100%
  );
  animation: aurora-1 10s ease-in-out infinite alternate;
}
.team::after {
  width: 65%;
  height: 260px;
  bottom: 12%;
  right: -8%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(23,85,84,0.4) 25%,
    rgba(23,133,132,0.45) 55%,
    rgba(29,190,189,0.2) 80%,
    transparent 100%
  );
  animation: aurora-2 13s ease-in-out infinite alternate;
}

@keyframes aurora-1 {
  0%   { transform: translateX(0) translateY(0) scaleX(1); opacity: 0.45; }
  33%  { transform: translateX(6%) translateY(20px) scaleX(1.05); opacity: 0.6; }
  66%  { transform: translateX(-4%) translateY(-15px) scaleX(0.96); opacity: 0.5; }
  100% { transform: translateX(8%) translateY(10px) scaleX(1.08); opacity: 0.55; }
}
/* Third mid band */
.team__aurora {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(100px);
  width: 50%;
  height: 220px;
  top: 45%;
  left: 25%;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(23,133,132,0.2) 35%,
    rgba(52,168,83,0.18) 60%,
    transparent 100%
  );
  animation: aurora-3 16s ease-in-out infinite alternate;
}
@keyframes aurora-3 {
  0%   { transform: translateX(0) translateY(0); opacity: 0.35; }
  50%  { transform: translateX(-5%) translateY(25px); opacity: 0.55; }
  100% { transform: translateX(6%) translateY(-20px); opacity: 0.3; }
}

@keyframes aurora-2 {
  0%   { transform: translateX(0) translateY(0) scaleX(1); opacity: 0.4; }
  40%  { transform: translateX(-7%) translateY(-18px) scaleX(1.06); opacity: 0.55; }
  70%  { transform: translateX(5%) translateY(22px) scaleX(0.94); opacity: 0.45; }
  100% { transform: translateX(-9%) translateY(-10px) scaleX(1.1); opacity: 0.6; }
}
.team .section-h2 { margin-top: 16px; margin-bottom: 64px; }
.team__em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  color: #1eb5a8;
  text-shadow: 0 0 18px rgba(30,181,168,0.25), 0 0 40px rgba(30,181,168,0.1);
}
.team__grid {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 0 40px;
  flex-wrap: wrap;
}
.team__card {
  position: relative;
  width: 300px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s;
}
.team__card:hover {
  transform: translateY(-8px);
  border-color: rgba(23,133,132,0.35);
}
.team__card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(23,133,132,0.12) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.team__card:hover .team__card-glow { opacity: 1; }

.team__avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.team__avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.team__card:hover .team__avatar img { transform: scale(1.05); }

.team__card-body {
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.team__role {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0;
}
.team__name {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 4px;
}
.team__bio {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  margin: 0 0 16px;
}
.team__linkedin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  background: rgba(255,255,255,0.05);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
  width: fit-content;
  transition: background 0.25s, border-color 0.25s;
}
.team__linkedin:hover {
  background: rgba(23,133,132,0.22);
  border-color: rgba(23,133,132,0.5);
}

/* Mobile */
@media (max-width: 640px) {
  .team__grid { padding: 0 20px; gap: 20px; }
  .team__card { width: 100%; max-width: 340px; }
}

/* =============================================
   PRICING
   ============================================= */
.pricing {
  padding: 120px 0;
  background: var(--d-bg);
  position: relative;
  overflow: hidden;
}
.pricing__heading-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  margin-top: 16px;
  margin-bottom: 48px;
}
.pricing__heading-row .section-h2 { margin: 0; }
.pricing__heading-sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 380px;
}
.pricing__em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  color: #1eb5a8;
  text-shadow: 0 0 18px rgba(30,181,168,0.25), 0 0 40px rgba(30,181,168,0.1);
}

/* Animated BG blob */
.pricing__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.pricing__bg::before,
.pricing__bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}
.pricing__bg::before {
  width: 500px; height: 500px;
  top: -100px; left: -100px;
  background: radial-gradient(ellipse, rgba(23,133,132,0.12) 0%, transparent 65%);
  animation: pricing-blob-1 12s ease-in-out infinite alternate;
}
.pricing__bg::after {
  width: 400px; height: 400px;
  bottom: -80px; right: -80px;
  background: radial-gradient(ellipse, rgba(23,85,84,0.1) 0%, transparent 65%);
  animation: pricing-blob-2 15s ease-in-out infinite alternate;
}
@keyframes pricing-blob-1 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(80px, 60px) scale(1.15); }
}
@keyframes pricing-blob-2 {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-60px,-50px) scale(1.1); }
}

/* Toggle */
.pricing__toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}
.pricing__toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing__save-badge {
  font-size: 10.5px;
  font-weight: 600;
  color: var(--teal);
  background: rgba(23,133,132,0.15);
  border: 1px solid rgba(23,133,132,0.3);
  border-radius: 100px;
  padding: 2px 8px;
  letter-spacing: 0.04em;
}
.pricing__toggle {
  width: 48px; height: 26px;
  border-radius: 100px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  position: relative;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}
.pricing__toggle[aria-checked="true"] {
  background: var(--teal);
  border-color: var(--teal);
}
.pricing__toggle-thumb {
  position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--white);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
}
.pricing__toggle[aria-checked="true"] .pricing__toggle-thumb {
  transform: translateX(22px);
}

/* Cards grid */
.pricing__cards {
  perspective: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

/* Base card */
.pricing__card {
  position: relative;
  border-radius: 24px;
  padding: 40px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.3s, box-shadow 0.4s;
}
.pricing__card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.14);
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
}
.pricing__card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(23,133,132,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.pricing__card:hover .pricing__card-glow { opacity: 1; }

/* Featured card */
.pricing__card--featured {
  background: rgba(23,133,132,0.08);
  border-color: rgba(23,133,132,0.3);
  box-shadow: 0 0 0 1px rgba(23,133,132,0.15), 0 24px 48px rgba(0,0,0,0.3);
}
.pricing__card--featured:hover {
  border-color: rgba(23,133,132,0.5);
  box-shadow: 0 0 0 1px rgba(23,133,132,0.3), 0 40px 80px rgba(0,0,0,0.5), 0 0 60px rgba(23,133,132,0.1);
}
.pricing__card--featured .pricing__card-glow {
  background: radial-gradient(ellipse at 50% 0%, rgba(23,133,132,0.18) 0%, transparent 60%);
  opacity: 1;
}

/* Popular badge */
.pricing__popular-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--d-bg);
  background: var(--teal);
  padding: 4px 12px;
  border-radius: 100px;
}

/* Card top */
.pricing__card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.pricing__plan-icon {
  color: var(--teal);
  display: flex;
  align-items: center;
}
.pricing__plan-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

/* Price */
.pricing__price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing__from {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-right: 2px;
}
.pricing__amount {
  font-size: 44px;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
  transition: opacity 0.2s;
}
.pricing__amount::before { content: '£'; font-size: 24px; font-weight: 700; vertical-align: super; }
.pricing__per {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-left: 2px;
}
.pricing__commitment {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pricing__desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

/* CTAs */
.pricing__cta {
  display: block;
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.pricing__cta:active { transform: scale(0.98); }
.pricing__cta--outline {
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  background: transparent;
}
.pricing__cta--outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.25);
}
.pricing__cta--filled {
  background: var(--teal);
  border: 1px solid var(--teal);
  color: var(--white);
}
.pricing__cta--filled:hover {
  background: rgba(23,133,132,0.85);
}

/* Divider + features */
.pricing__divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 28px 0 20px;
}
.pricing__includes {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.pricing__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.pricing__features li svg {
  flex-shrink: 0;
  color: var(--teal);
  margin-top: 2px;
}

/* Footnote */
.pricing__footnote {
  text-align: center;
  margin-top: 32px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.pricing__footnote a {
  color: var(--teal);
  text-decoration: none;
}
.pricing__footnote a:hover { text-decoration: underline; }

/* Mobile */
@media (max-width: 640px) {
  .pricing__cards { grid-template-columns: 1fr; }
  .pricing__card { padding: 28px; }
  .pricing__amount { font-size: 36px; }
}

.faq { padding: 120px 0; }

.faq__list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--d-border);
}

.faq__item {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  position: relative;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(10px) saturate(130%);
  -webkit-backdrop-filter: blur(10px) saturate(130%);
  transition: background 0.3s;
}
.faq__item:hover {
  background: rgba(255,255,255,0.04);
}

/* Teal left edge reveal on active */
.faq__item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--teal);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq__item:has(.faq__q[aria-expanded="true"])::before { transform: scaleY(1); }

.faq__q {
  width: 100%;
  display: grid;
  grid-template-columns: 64px 1fr 32px;
  align-items: center;
  gap: 24px;
  padding: 30px 0 30px 20px;
  background: transparent;
  color: var(--d-text);
  font-family: var(--font);
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-align: left;
  cursor: pointer;
  border: none;
  transition: color 0.2s;
}
.faq__q:hover { color: var(--white); }
.faq__q[aria-expanded="true"] { color: var(--white); }

/* Ghost Cormorant number */
.faq__n {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 28px;
  color: var(--d-muted2);
  line-height: 1;
  transition: color 0.3s;
  display: block;
}
.faq__q:hover .faq__n,
.faq__q[aria-expanded="true"] .faq__n { color: var(--teal); }

.faq__qtext { flex: 1; }

.faq__icon {
  position: relative;
  width: 24px; height: 24px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 50%;
  transition: border-color 0.3s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq__icon::before, .faq__icon::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  background: var(--d-muted);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s, background 0.3s;
}
.faq__icon::before { width: 10px; height: 1.5px; transform: translate(-50%,-50%); }
.faq__icon::after  { width: 1.5px; height: 10px; transform: translate(-50%,-50%); }
.faq__q[aria-expanded="true"] .faq__icon {
  border-color: var(--teal);
  transform: rotate(45deg);
}
.faq__q[aria-expanded="true"] .faq__icon::before,
.faq__q[aria-expanded="true"] .faq__icon::after { background: var(--teal); }

.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  background: transparent;
}
.faq__a.open { max-height: 300px; }
.faq__a p {
  font-size: 15px;
  color: var(--d-muted);
  line-height: 1.78;
  padding: 4px 20px 32px calc(64px + 24px + 20px);
}

/* ============================================================
   INSTAGRAM  · dark
============================================================ */

.instagram {
  padding: 120px 0;
  background: var(--d-surface);
}

.instagram__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
}
.instagram__header .section-h2 { margin-bottom: 0; }

.insta__handle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--d-muted);
  text-decoration: none;
  border: 1px solid var(--d-border);
  padding: 9px 18px;
  border-radius: var(--r-pill);
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.insta__handle svg { width: 16px; height: 16px; }
.insta__handle:hover { color: var(--white); border-color: var(--d-border2); }

.instagram__widget {
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid var(--d-border);
}

/* ============================================================
   FINAL CTA  · dark
============================================================ */

.cta {
  padding: 140px clamp(24px, 6vw, 100px);
  background: var(--d-bg);
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}

.cta__h2 {
  font-family: 'Urbanist', sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 450;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--white);
  margin: 0 0 24px;
}

.cta__em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 600;
  color: #1eb5a8;
  text-shadow: 0 0 60px rgba(30,181,168,0.2);
}

.cta__sub {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.75;
  color: rgba(255,255,255,0.38);
  max-width: 480px;
  margin: 0 auto 40px;
}

.cta__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta__note {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   TRACING BEAM
============================================================ */
.trace-beam {
  position: fixed;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  pointer-events: none;
  z-index: 5;
}

.trace-beam__svg {
  width: 2px;
  height: 100%;
  overflow: visible;
}

.trace-beam__track {
  stroke: rgba(255,255,255,0.05);
  stroke-width: 1;
}

.trace-beam__fill {
  stroke: url(#traceGrad);
  stroke-width: 1.5;
  stroke-linecap: round;
  transition: none;
}

.trace-beam__dot {
  fill: #1eb5a8;
  filter: drop-shadow(0 0 6px rgba(30,181,168,0.9)) drop-shadow(0 0 14px rgba(30,181,168,0.4));
}

@media (max-width: 1100px) {
  .trace-beam { display: none; }
}

/* ============================================================
   FOOTER
============================================================ */

.footer {
  background: var(--d-surface);
  padding: 72px 0 40px;
  position: relative;
}

/* Animated top divider line */
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 1px;
  width: 0;
  background: linear-gradient(90deg, var(--teal), rgba(23,85,84,0.2) 60%, transparent);
}
.footer.in-view::before {
  animation: footerLine 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
@keyframes footerLine {
  to { width: 100%; }
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 56px;
}

.footer__logo { height: 26px; width: auto; margin-bottom: 18px; display: block; }

.footer__brand p {
  font-size: 13px;
  color: var(--d-muted);
  line-height: 1.6;
  max-width: 260px;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col strong {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: none;
  color: var(--d-muted2);
  margin-bottom: 4px;
}
.footer__col a, .footer__col span {
  font-size: 13px;
  color: var(--d-muted);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.5;
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid var(--d-border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__bottom p { font-size: 12px; color: var(--d-muted2); }

.footer__insta {
  color: var(--d-muted);
  transition: color 0.2s;
}
.footer__insta:hover { color: var(--white); }
.footer__insta svg { width: 18px; height: 18px; display: block; }

/* ============================================================
   HAMBURGER / MOBILE NAV
============================================================ */

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav__burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
  margin: 0 auto;
}
/* Burger → X */
.nav--open .nav__burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav--open .nav__burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav--open .nav__burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* When open, pill gets slightly less round corners to blend with the dropdown */
.nav--open { border-radius: 24px !important; }

.nav__mobile {
  display: none;
  flex-direction: column;
  position: fixed;
  top: calc(16px + 58px + 8px);
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1040px;
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 24px;
  padding: 8px 0 16px;
  z-index: 190;
  align-items: stretch;
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
  animation: mobileMenuIn 0.22s ease both;
}
@keyframes mobileMenuIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-8px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav--open .nav__mobile { display: flex; }

.nav__mobile-services-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  padding: 12px 24px 4px;
  display: block;
}

.nav__mobile a {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.01em;
}
.nav__mobile a:last-of-type { border-bottom: none; }
.nav__mobile a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.03);
}

.nav__mobile-cta {
  margin: 10px 16px 0;
  text-align: center;
  border-bottom: none !important;
  border-radius: 100px;
  padding: 14px 24px !important;
  background: rgba(30,181,168,0.12) !important;
  color: rgba(255,255,255,0.88) !important;
  border: 1px solid rgba(30,181,168,0.40) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-weight: 600 !important;
  font-size: 14px !important;
}
.nav__mobile-cta:hover {
  background: rgba(30,181,168,0.22) !important;
  border-color: rgba(30,181,168,0.70) !important;
  color: #fff !important;
}

/* ============================================================
   RESPONSIVE — 1024px  (large tablets)
============================================================ */
@media (max-width: 1024px) {
  .system__stack       { height: 460px; }
  .roadmap__item--left  { padding-right: 40%; }
  .roadmap__item--right { padding-left: 40%; }
  .testi__stage        { margin-top: 48px; }
  .testi__controls     { margin-top: 40px; }
  .results__stats      { grid-template-columns: 1fr 1fr; }
  .footer__top         { grid-template-columns: 1fr; gap: 40px; }
  .story__carousel     { width: 200px; }
}

@media (max-width: 860px) {
  .hero__container     { flex-direction: column !important; align-items: flex-start; gap: 32px; }
  .hero__story         { align-self: center; width: 100%; display: flex; flex-direction: column; align-items: center; }
  .story__carousel     { width: min(210px, 52vw); }
  .story__slide[data-slot="left"]  { transform: translateX(-80px) translateZ(-60px) rotateY(40deg) scale(0.80); }
  .story__slide[data-slot="right"] { transform: translateX(80px)  translateZ(-60px) rotateY(-40deg) scale(0.80); }
}

/* ============================================================
   RESPONSIVE — 768px  (tablets)
============================================================ */
@media (max-width: 768px) {
  .container           { padding: 0 20px; }

  /* Nav */
  .nav                 { width: calc(100% - 28px); top: 12px; }
  .nav__inner          { padding: 0 6px 0 14px; height: 48px; }
  .nav__links          { display: none; }
  .btn--nav            { display: none; }
  .nav__burger         { display: flex; margin-left: auto; }
  .nav__logo           { flex: 1; }
  .nav__logo img       { height: 16px; }
  .nav__mobile         { top: calc(12px + 48px + 8px); width: calc(100% - 28px); }

  /* Section padding */
  .services, .results,
  .testimonials, .faq,
  .instagram, .system,
  .process, .team      { padding: 72px 0; }
  .cta                 { padding: 96px 0; }

  /* CTA glass panel */
  .cta__inner          { border-radius: 20px; padding: 52px 36px; }

  /* Grids */
  .testi__quote        { font-size: clamp(20px, 4.5vw, 28px); }
  .results__stats      { grid-template-columns: 1fr 1fr; }
  .problem__body       { gap: 24px; }
  .problem__title      { min-width: 160px; }
  .system__stack       { height: 420px; }
  .roadmap__svg          { display: none; }
  .roadmap__vline {
    display: block;
    position: absolute;
    left: calc(50% - 1px);
    top: 0;
    width: 2px;
    height: 100%;
    clip-path: inset(0 0 100% 0);
    background: linear-gradient(to bottom, transparent 0%, rgba(23,133,132,0.8) 4%, rgba(23,133,132,0.8) 96%, transparent 100%);
    filter: drop-shadow(0 0 6px rgba(23,133,132,0.6));
    z-index: 0;
  }
  .roadmap__item--left, .roadmap__item--right {
    padding: 0;
    justify-content: center;
    transform: translateY(20px);
  }
  .roadmap__item.anim-in { transform: translateY(0); }
  .roadmap__item--left  .roadmap__node { right: auto; left: calc(50% - 7px); }
  .roadmap__item--right .roadmap__node { left: calc(50% - 7px); }

  /* Services list */
  .svc__item           { gap: 20px; }
  .svc__top            { flex-direction: column; gap: 6px; }
  .svc__tag            { white-space: normal; }

  /* FAQ numbered */
  .faq__q              { grid-template-columns: 48px 1fr 28px; gap: 16px; padding: 26px 0 26px 16px; font-size: 15px; }
  .faq__n              { font-size: 22px; }
  .faq__a p            { padding: 4px 16px 28px calc(48px + 16px + 16px); }

  /* Hero */
  .hero__scroll-ind    { display: none; }
  .hero__stats         { flex-direction: column; }
  .hero__stat + .hero__stat { border-left: none; border-top: 1px solid var(--d-border); }
  .hero__ctas          { flex-direction: column; align-items: flex-start; }

  /* Instagram */
  .instagram__header   { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* Footer */
  .footer__links       { grid-template-columns: 1fr 1fr; }

  /* Typography */
  .section-h2          { letter-spacing: -0.02em; }
  .br-d                { display: none; }

  /* Results */
  .result__feature              { grid-template-columns: 1fr; min-height: auto; }
  .result__feature-media        { min-height: 220px; }
  .result__feature--reverse .result__feature-media  { grid-column: 1; grid-row: 1; }
  .result__feature--reverse .result__feature-content { grid-column: 1; grid-row: 2; }
  .result__feature-overlay      { background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.6) 100%) !important; }
  .results__stat                { padding: 0 28px; }
  .results__stats               { padding: 48px 0; }
  .testi__divider      { margin: 24px auto; }
}

/* ============================================================
   RESPONSIVE — 600px  (large phones)
============================================================ */
@media (max-width: 600px) {
  .container           { padding: 0 16px; }

  /* Section padding */
  .services, .results,
  .testimonials, .faq,
  .instagram, .system,
  .process, .team      { padding: 56px 0; }
  .cta                 { padding: 80px 0; }
  .footer              { padding: 48px 0 28px; }
  .trust               { padding: 24px 0; }

  /* Hero — stacked layout on mobile */
  .hero                { padding-top: 80px; min-height: 100svh; }
  .hero__container     {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 48px;
    gap: 44px;
  }
  .hero__content       { flex: unset; width: 100%; }
  .hero__h1            { font-size: clamp(46px, 11vw, 64px); line-height: 1.02; letter-spacing: -0.025em; }
  .hero__sub           { font-size: 14.5px; line-height: 1.7; max-width: 520px; }
  .hero__ctas          { flex-direction: row; flex-wrap: wrap; gap: 12px; }
  .hero__typewriter    { font-size: 1.1em; margin-left: 0.1em; }
  .hero__stats-wrap    { margin-top: 0; }
  .hero__stat          { padding: 18px 14px; }
  /* Carousel — centred below content, single-card coverflow */
  .hero__story         { align-self: center; margin-right: 0; margin-top: 0; }
  .story__carousel     { width: min(200px, 54vw); }
  .story__slide[data-slot="left"]  { transform: translateX(-64px) translateZ(-50px) rotateY(38deg) scale(0.78); }
  .story__slide[data-slot="right"] { transform: translateX(64px)  translateZ(-50px) rotateY(-38deg) scale(0.78); }

  /* Problem journey */
  .pj                  { height: 320vh; }
  .pj__stage           { padding: 0 24px; gap: 36px; }
  .pj__cards           { grid-template-columns: 1fr; gap: 12px; }
  .pj__resolve         { padding: 0 24px; }
  .pj__resolve-c       { font-size: 12px; margin-top: 16px; }
  .pj__resolve-arrow   { margin-top: 24px; }

  /* Grids */
  .results__stats      { grid-template-columns: 1fr; }
  .system__stack       { height: 400px; }
  .testi__quote        { font-size: 20px; }
  .testi__controls     { margin-top: 32px; gap: 14px; }
  .system__card        { padding: 28px 22px; width: min(340px, 84vw); }
  .results__stat       { padding: 0 20px; }
  .result__card        { padding: 28px 24px; gap: 20px; }
  .process__cols       { grid-template-columns: 1fr; gap: 12px; }
  .process__connector  { display: none; }
  .process__ghost      { font-size: 60px; }

  /* Services list — compact on mobile */
  .svc__item           { gap: 12px; padding: 24px 0 24px 16px; }
  .svc__name           { font-size: 20px; }
  .svc__icon           { display: none; }

  /* FAQ numbered — compact on mobile */
  .faq__q              { grid-template-columns: 40px 1fr 24px; gap: 12px; padding: 22px 0 22px 12px; font-size: 14px; }
  .faq__n              { font-size: 18px; }
  .faq__a p            { padding: 4px 12px 24px calc(40px + 12px + 12px); font-size: 14px; }

  /* Results */
  .results__stats      { grid-template-columns: 1fr; padding: 36px 0; gap: 32px; border-bottom: none; }
  .results__stat       { padding: 0; border-right: none; border-bottom: 1px solid var(--d-border); padding-bottom: 24px; }
  .results__stat:last-child { border-bottom: none; padding-bottom: 0; }
  .results__stat:first-child { padding-left: 0; }
  .result__feature-media        { min-height: 260px; }
  .result__feature-content      { padding: 28px 24px; }

  /* Result metrics */
  .result__metrics     { gap: 0; }
  .result__metric      { padding-right: 12px; }
  .result__metric + .result__metric { padding-left: 12px; }
  .result__metric span { font-size: clamp(15px, 4.5vw, 18px); }
  .result__metric small { font-size: 10px; }

  /* Footer */
  .footer__links       { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom      { flex-direction: column-reverse; gap: 12px; align-items: flex-start; }
}

/* ============================================================
   RESPONSIVE — 480px  (standard phones)
============================================================ */
@media (max-width: 480px) {
  .container           { padding: 0 14px; }

  /* Section padding */
  .services, .results,
  .testimonials, .faq,
  .instagram, .system,
  .process, .team      { padding: 48px 0; }
  .pj                  { height: 300vh; }
  .cta                 { padding: 72px 0; }

  /* Hero — compact on small phones */
  .hero                { padding-top: 76px; }
  .hero__container     { padding-top: 28px; padding-bottom: 36px; gap: 36px; }
  .hero__h1            { font-size: clamp(44px, 11vw, 56px); line-height: 1.02; margin-bottom: 16px; }
  .hero__sub           { font-size: 13.5px; line-height: 1.68; }
  .hero__typewriter    { font-size: 1.08em; margin-left: 0.08em; }
  .hero__ctas          { width: 100%; flex-direction: column; gap: 10px; }
  .hero__ctas .btn     { width: 100%; justify-content: center; text-align: center; }
  .hero__stat-n        { font-size: 24px; }

  /* Carousel — single card only on small phones */
  .story__carousel     { width: min(180px, 52vw); }
  .story__slide[data-slot="left"],
  .story__slide[data-slot="right"] { opacity: 0; pointer-events: none; }

  /* Buttons — full touch targets */
  .btn--primary,
  .btn--ghost          { min-height: 48px; padding: 13px 22px; }
  .btn--xl             { font-size: 15px; padding: 15px 28px; }

  /* System cards */
  .system__card        { max-width: 100%; }
  .system__stack       { height: 360px; }

  /* CTA glass panel */
  .cta__inner          { border-radius: 16px; padding: 40px 24px; }

  /* Process */
  .process__cols       { gap: 10px; }

  /* Trust pills */
  .trust__pills span   { font-size: 11px; padding: 5px 11px; }

  /* FAQ icon */
  .faq__icon           { width: 18px; height: 18px; flex-shrink: 0; }

  /* Testimonials */
  .testi__quote        { font-size: 18px; }
  .testi__quote-mark   { font-size: 64px; }

  /* Section label */
  .section-label       { font-size: 10px; }

  /* Footer */
  .footer__brand p     { max-width: 100%; }
  .footer__col strong  { margin-bottom: 2px; }
}

/* ============================================================
   RESPONSIVE — 380px  (small phones)
============================================================ */
@media (max-width: 380px) {
  .hero__h1            { letter-spacing: -0.025em; }
  .section-h2          { letter-spacing: -0.015em; }
  .hero__ctas .btn     { font-size: 12px; }
  .problem__item       { padding: 22px 0; }
  .system__card        { padding: 28px 24px; }
  .service__card       { padding: 20px 16px; }

  /* Pricing toggle — stack vertically on very small phones */
  .pricing__toggle-wrap {
    flex-direction: column;
    gap: 12px;
  }
}

/* ============================================================
   TOUCH / SCROLL-ACTIVATED STATES
   On devices with no hover (touch), .in-view replaces :hover.
   Applied/removed by IntersectionObserver in script.js.
============================================================ */
@media (hover: none) {

  /* System / roadmap cards */
  .system__card.in-view { border-color: rgba(23,85,84,0.4); }
  .system__card.in-view::after  { transform: scaleX(1); }
  .system__card.in-view::before { opacity: 1; }

  /* Service list items */
  .svc__item.in-view { padding-left: 28px; }
  .svc__item.in-view::before { transform: scaleY(1); }
  .svc__item.in-view .svc__num  { color: var(--teal); }
  .svc__item.in-view .svc__name { color: var(--white); }
  .svc__item.in-view .svc__tag  { color: var(--teal); }
  .svc__item.in-view .svc__desc { max-height: 80px; opacity: 1; margin-top: 14px; }

  /* Process columns */
  .process__col.in-view {
    border-color: rgba(29,133,132,0.35);
    background: rgba(23,85,84,0.06);
  }
  .process__col.in-view .process__ghost {
    color: rgba(23,133,132,0.55);
    text-shadow: 0 0 40px rgba(23,133,132,0.4);
  }
  .process__col.in-view .process__icon-box { transform: scale(1.1); }

  /* Result feature cards */
  .result__feature.in-view { border-color: rgba(23,85,84,0.45); }
  .result__feature.in-view .result__feature-video { transform: scale(1.03); }

  /* FAQ items */
  .faq__item.in-view { background: rgba(255,255,255,0.04); }
}

/* ============================================================
   BACK TO TOP
============================================================ */

.btt {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(13,13,13,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  color: rgba(255,255,255,0.55);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1), border-color 0.25s, color 0.25s;
  z-index: 200;
}
.btt::after {
  content: 'Back to top';
}
.btt:hover {
  border-color: rgba(30,181,168,0.35);
  color: #1eb5a8;
}
.btt--visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   ANIMATIONS
============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Clip reveal — mobile section headings ── */
@media (max-width: 767px) {
  /* Ensure words start hidden until JS runs the reveal */
  .section-h2 .word,
  .section-label .word,
  .pb__heading .word {
    transform: translateY(105%);
    opacity: 0;
  }
  .section-h2 .word.revealed,
  .section-label .word.revealed,
  .pb__heading .word.revealed {
    transform: translateY(0);
    opacity: 1;
  }
}


/* ============================================================
   FLOATING ACTION BUTTON
============================================================ */
.fab {
  position: fixed;
  bottom: 36px;
  right: 36px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

/* Main trigger */
.fab__trigger {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--teal);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow:
    0 4px 20px rgba(23,85,84,0.45),
    0 0 0 0 rgba(23,85,84,0);
  transition:
    transform 0.3s cubic-bezier(0.34,1.56,0.64,1),
    box-shadow 0.3s ease,
    background 0.25s ease;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.fab__trigger:hover {
  transform: scale(1.08);
  background: #1a9998;
  box-shadow:
    0 6px 28px rgba(23,85,84,0.55),
    0 0 0 8px rgba(23,85,84,0.1);
}

/* Icon swap — plus shows by default, close shows when open */
.fab__icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.fab__icon--plus  { opacity: 1; transform: rotate(0deg); }
.fab__icon--close { opacity: 0; transform: rotate(-90deg); }

.fab--open .fab__icon--plus  { opacity: 0; transform: rotate(90deg); }
.fab--open .fab__icon--close { opacity: 1; transform: rotate(0deg); }

/* Pulse ring on trigger */
.fab__trigger::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 50%;
  border: 1.5px solid rgba(23,133,132,0.35);
  animation: fabPulse 2.8s ease-in-out infinite;
}
@keyframes fabPulse {
  0%   { transform: scale(1);   opacity: 0.7; }
  60%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
.fab--open .fab__trigger::before { animation: none; opacity: 0; }

/* Child buttons */
.fab__child {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  position: relative;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition:
    transform 0.4s cubic-bezier(0.34,1.56,0.64,1),
    opacity 0.3s ease,
    box-shadow 0.25s ease;

  /* Hidden by default */
  opacity: 0;
  transform: translateY(12px) scale(0.7);
  pointer-events: none;
}
.fab__child--phone     { background: #175554; }
.fab__child--instagram { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.fab__child--facebook  { background: #1877f2; }

.fab__child:hover {
  transform: translateY(0) scale(1.12) !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.4);
}

/* Open state — staggered reveal bottom-to-top */
.fab--open .fab__child {
  opacity: 1;
  pointer-events: auto;
}
.fab--open .fab__child[data-index="2"] {
  transform: translateY(0) scale(1);
  transition-delay: 0.04s;
}
.fab--open .fab__child[data-index="1"] {
  transform: translateY(0) scale(1);
  transition-delay: 0.10s;
}
.fab--open .fab__child[data-index="0"] {
  transform: translateY(0) scale(1);
  transition-delay: 0.16s;
}

/* Tooltip labels */
.fab__tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(15,15,15,0.88);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: none;
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: 1px solid rgba(255,255,255,0.08);
}
.fab__child:hover .fab__tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 767px) {
  .fab { display: none; }
}

/* ============================================================
   CUSTOM CURSOR
============================================================ */
@media (pointer: fine) and (hover: hover) {
  * { cursor: none !important; }

  /* Main teal circle */
  .cursor__dot {
    position: fixed;
    top: 0; left: 0;
    width: 12px; height: 12px;
    background: #1eb5a8;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
    will-change: transform;
    box-shadow: 0 0 10px rgba(30,181,168,0.2);
  }

  .cursor__ring { display: none; }

  /* Hover — shrinks slightly, glow intensifies */
  .cursor--hover .cursor__dot {
    width: 8px; height: 8px;
    box-shadow: 0 0 14px rgba(30,181,168,0.7);
  }

  /* Click flash */
  .cursor--click .cursor__dot {
    width: 16px; height: 16px;
    opacity: 0.7;
  }
}

/* ============================================================
   MOBILE UX FIXES
   Applied on top of existing breakpoints to address issues:
   - Problem section missing mobile padding
   - Hero sub text below 16px minimum
   - Testimonial dots too small to tap
   - AI feat section missing mobile padding
   - Service item descriptions always visible on touch
   - Testi slider margin too heavy on mobile
   - Accessibility tap-target improvements
============================================================ */

/* ── Problem section — restore mobile padding (was missing from section list) ── */
@media (max-width: 768px) {
  .pb { padding: 72px clamp(20px, 5vw, 48px); }
  .pb__header { margin-bottom: 48px; }
  .pb__rows   { margin-bottom: 48px; }
}

@media (max-width: 600px) {
  .pb          { padding: 56px 16px; }
  .pb__header  { margin-bottom: 32px; }
  .pb__rows    { margin-bottom: 32px; }
  .pb__heading { font-size: clamp(22px, 6.5vw, 28px); }
  .pb__sub     { font-size: 14px; }
  .pb__close-line { font-size: 15px; }
  .pb__row-desc   { font-size: 14px; }
  .pb__close   { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 480px) {
  .pb { padding: 48px 14px; }
}

/* ── Hero sub text — raise minimum from 13.5px ── */
@media (max-width: 600px) {
  .hero__sub { font-size: 15px; line-height: 1.72; }
}

@media (max-width: 480px) {
  .hero__sub { font-size: 15px; }
}

/* ── AI Enhancement — add to mobile padding list ── */
@media (max-width: 768px) {
  .ai-feat { padding: 72px clamp(20px, 5vw, 48px); }
}

@media (max-width: 600px) {
  .ai-feat { padding: 56px 16px; }
  .ai-feat__p { font-size: 15px; }
}

@media (max-width: 480px) {
  .ai-feat { padding: 48px 14px; }
}

/* ── Testimonial dots — increase tap target via pseudo-element ── */
.testi__dot {
  position: relative;
}
.testi__dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
}

/* ── Testimonial arrows — increase to 44px minimum ── */
.testi__arrow {
  width: 44px;
  height: 44px;
}

/* ── Testimonial slider — reduce top margin on mobile ── */
@media (max-width: 768px) {
  .testi__slider { margin-top: 48px; }
}

@media (max-width: 600px) {
  .testi__slider { margin-top: 36px; padding: 0 16px; }
}

/* ── Testimonial slides — switch to relative on mobile to prevent clipping ── */
@media (max-width: 600px) {
  .testi__slides  { min-height: 0; }
  .testi__slide   { position: relative; inset: unset; display: none; }
  .testi__slide.is-active { display: flex; }
}

/* ── Service list — always show description text on touch devices ── */
@media (hover: none) {
  .svc__desc {
    max-height: 120px;
    opacity: 1;
    margin-top: 12px;
  }
  .svc__item { padding-left: 28px; }
  .svc__item::before { transform: scaleY(1); }
  .svc__icon { display: none; }
}

/* ── Back-to-top — minimum 44px touch height ── */
.btt { min-height: 44px; }

/* ── Back-to-top — mobile override ──
   On mobile the pill sits behind the sticky CTA bar.
   Replace with a compact icon button anchored bottom-right,
   positioned above the CTA bar when it's visible.            */
@media (max-width: 767px) {
  .btt {
    /* Reset pill styles → compact icon button bottom-right */
    left: auto;
    right: 16px;
    bottom: 16px;
    transform: translateY(80px);          /* hidden state — slides down off screen */
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
    background: rgba(13,13,13,0.9);
    transition:
      transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
      bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.3s ease,
      border-color 0.25s,
      color 0.25s;
  }
  .btt::after {
    display: none;                         /* hide "Back to top" text label */
  }
  .btt--visible {
    transform: translateY(0);
  }
  /* Bottom position is managed dynamically by JS (initBackToTop)
     to clear the sticky CTA bar when it's visible.              */
}

/* ── FAB tooltips — suppress on touch (they never fire) ── */
@media (hover: none) {
  .fab__tooltip { display: none; }
}

/* ── Process deliverable badge — wrap on narrow screens ── */
@media (max-width: 480px) {
  .process__deliverable {
    white-space: normal;
    word-break: break-word;
  }
}

/* ── Footer links — minimum comfortable reading size ── */
@media (max-width: 480px) {
  .footer__col a,
  .footer__col span { font-size: 14px; }
}

/* ── Hero trust bar — slightly larger text on mobile ── */
@media (max-width: 480px) {
  .hero__trust-text { font-size: 13px; }
}

/* ============================================================
   MOBILE UX — STICKY CTA BAR
   Slides up from bottom after hero exits viewport.
   Only shown on mobile (< 768px). Uses safe-area-inset for
   notched phones (iPhone X+).
============================================================ */
.mob-cta {
  display: none; /* hidden on desktop — shown via media query below */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 990;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(8, 16, 14, 0.94);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-top: 1px solid rgba(255,255,255,0.08);
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.mob-cta--visible {
  transform: translateY(0);
}
.mob-cta__btn {
  display: block;
  width: 100%;
  text-align: center;
  background: rgba(30,181,168,0.12);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(30,181,168,0.42);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.1s ease;
}
.mob-cta__btn:active {
  transform: scale(0.97);
  background: rgba(30,181,168,0.22);
  transition-duration: 0.08s;
}

@media (max-width: 767px) {
  .mob-cta { display: block; }
}

/* ============================================================
   MOBILE UX — NAV AUTO-HIDE ON SCROLL DOWN
   Nav hides when scrolling down, reappears on scroll up.
   Only active on mobile — desktop stays persistent.
   The nav already has transition on background/shadow;
   we add transform here for the slide-out.
============================================================ */
.nav {
  transition:
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
@media (max-width: 767px) {
  .nav--hidden {
    transform: translateY(calc(-100% - 24px)) !important;
  }
  /* Never hide when menu is open */
  .nav--open.nav--hidden {
    transform: none !important;
  }
}

/* ============================================================
   MOBILE UX — BUTTON / TAP ACTIVE FEEDBACK
   Fast scale-down on press for satisfying tap feel.
   Only on touch devices — desktop keeps existing hover states.
============================================================ */
@media (hover: none) {
  .btn--primary:active,
  .btn--ghost:active,
  .btn--nav:active {
    transform: scale(0.96);
    opacity: 0.88;
    transition: transform 0.08s ease, opacity 0.08s ease !important;
  }
  .faq__q:active {
    background: rgba(255,255,255,0.04);
  }
  .svc__item:active {
    background: rgba(30,181,168,0.04);
  }
  .nav__burger:active span {
    opacity: 0.7;
  }
}

/* ============================================================
   MOBILE UX — CARD STACK 480px REFINEMENTS
   Reduce padding and tighten sticky tops so cards don't
   sit too deep below the nav on very small screens.
============================================================ */
@media (max-width: 480px) {
  .pb__card            { padding: 24px 18px; border-radius: 16px; }
  .pb__card:nth-child(1) { top: 74px; }
  .pb__card:nth-child(2) { top: 84px; }
  .pb__card:nth-child(3) { top: 94px; }
  .pb__card-header     { margin-bottom: 20px; }
  .pb__card-icon       { width: 44px; height: 44px; margin-bottom: 20px; }
  .pb__card-title      { font-size: clamp(20px, 6vw, 26px); margin-bottom: 12px; }
  .pb__card-desc       { font-size: 14px; line-height: 1.7; }
  .pb__card-foot       { margin-top: 24px; padding-top: 20px; gap: 12px; }
  .pb__card-stat-n     { font-size: clamp(24px, 7vw, 30px); }
  .pb__card-stat-l     { font-size: 12px; }
}

/* ============================================================
   MOBILE UX — SERVICE PAGE HERO SPACING
   Reduce the large top padding on service hero for phones
   so the headline is visible without scrolling.
============================================================ */
@media (max-width: 480px) {
  .sv-hero { padding: 100px 20px 56px; }
  .sv-hero__h1 { font-size: clamp(30px, 9vw, 44px); }
}

/* Reduce motion: respect user preference */
@media (prefers-reduced-motion: reduce) {
  .word-wrap .word         { transition: none; }
  .hero__sweep::after      { animation: none; }
  .hero__grid              { animation: none; opacity: 0.6; }
  .hero__atm-line          { animation: none; width: 100%; }
  .hero__scroll-ind        { animation: none; opacity: 1; }
  .hero__scroll-line       { animation: none; height: 56px; }
  .particle                { animation: none; opacity: 0; }
  .fade-up                 { transition: none; }
  .btn--primary { transition: none; }
  .pj__intro,
  .pj__card,
  .pj__resolve             { opacity: 1 !important; transform: none !important; }
  .process__spine          { transform: scaleY(1) !important; }
  .cta__line               { width: 400px !important; animation: none !important; }
  .footer::before          { width: 100% !important; animation: none !important; }
  .mob-cta                 { transition: none; }
  .nav                     { transition: background 0.3s ease, box-shadow 0.3s ease; }
}
