/* =========================================================
   MedicalWorkFlo — Landing Page
   Premium healthcare workflow SaaS
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --navy-900: #0B1B3B;
  --navy-800: #122451;
  --navy-700: #1B2E64;
  --navy-600: #2A3F7C;
  --teal-500: #14C4A5;
  --teal-600: #10B294;
  --teal-400: #3CD7BB;
  --teal-50:  #E6FBF6;
  --teal-100: #CDF6EC;

  /* Neutrals */
  --ink-900: #0F172A;
  --ink-700: #334155;
  --ink-500: #64748B;
  --ink-400: #94A3B8;
  --ink-200: #E2E8F0;
  --ink-100: #EEF2F7;
  --ink-50:  #F6F9FC;
  --white:   #FFFFFF;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, .06), 0 2px 6px rgba(15, 23, 42, .04);
  --shadow-lg: 0 18px 40px -12px rgba(11, 27, 59, .18), 0 8px 18px -8px rgba(11, 27, 59, .12);
  --shadow-xl: 0 30px 80px -20px rgba(11, 27, 59, .35), 0 12px 28px -10px rgba(11, 27, 59, .18);
  --shadow-teal: 0 18px 50px -16px rgba(20, 196, 165, .55);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 999px;

  --maxw: 1200px;
  --gutter: clamp(20px, 4vw, 40px);

  /* Gradients */
  --grad-hero: radial-gradient(1200px 600px at 80% -10%, rgba(20, 196, 165, .18), transparent 60%),
               radial-gradient(900px 500px at -10% 20%, rgba(43, 90, 220, .18), transparent 60%),
               linear-gradient(180deg, #0B1B3B 0%, #122451 100%);
  --grad-mint: linear-gradient(135deg, #14C4A5 0%, #0FAE92 100%);
  --grad-soft: linear-gradient(180deg, #F6F9FC 0%, #ECF3FA 100%);
  --grad-cta:  linear-gradient(135deg, #122451 0%, #0B1B3B 60%, #082046 100%);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  /* `clip` keeps stick/abs positioning behaviour intact (unlike hidden)
     while preventing horizontal page scroll from off-canvas decoration. */
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', Inter, system-ui, sans-serif;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.75rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.4rem); }
p  { margin: 0 0 1em; }
::selection { background: var(--teal-100); color: var(--navy-900); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
section { padding: clamp(64px, 8vw, 120px) 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--teal-50);
  color: var(--teal-600);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-full);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.eyebrow.on-dark {
  background: rgba(20, 196, 165, .14);
  color: var(--teal-400);
  border-color: rgba(20, 196, 165, .35);
}
.section-head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head p { color: var(--ink-500); font-size: 1.05rem; margin: 14px 0 0; }
.lead { font-size: 1.1rem; color: var(--ink-500); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .95rem;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary {
  background: var(--grad-mint);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 60px -16px rgba(20, 196, 165, .65); }
.btn-secondary {
  background: var(--white);
  color: var(--navy-900);
  border: 1px solid var(--ink-200);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--navy-900); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .25);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .6); }
.btn-link {
  color: var(--teal-600);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-link:hover { gap: 10px; }

/* ---------- Navigation ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 14px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 1px 0 rgba(15, 23, 42, .06);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* --- Brand lockup (transparent symbol + HTML wordmark) --- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-mark {
  height: 34px;
  width: auto;
  flex-shrink: 0;
  transition: filter .25s ease, opacity .25s ease;
}

/* Header has TWO marks stacked — show white when on hero, dark when scrolled.
   We use absolute stacking so the wordmark stays glued to one icon position. */
.nav .brand { position: relative; }
.nav .brand .brand-mark { transition: opacity .2s ease; }

/* Default = on-hero state: white logo visible, dark logo hidden */
.nav .brand-mark--dark  { display: none; }
.nav .brand-mark--light { display: block; }

/* Once the nav has scrolled off the hero (white nav background), swap */
.nav.scrolled:not(.on-hero) .brand-mark--light { display: none; }
.nav.scrolled:not(.on-hero) .brand-mark--dark  { display: block; }

/* When the mobile drawer is open over the white panel, also show the dark version */
.nav.open:not(.on-hero) .brand-mark--light { display: none; }
.nav.open:not(.on-hero) .brand-mark--dark  { display: block; }
.brand-wordmark {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--navy-900);
  white-space: nowrap;
}
.brand-wordmark span { color: inherit; }
.brand-wordmark em {
  font-style: normal;
  color: var(--teal-600);
}

/* Over the dark hero — wordmark goes white, "Flo" stays teal accent */
.nav.on-hero .brand-wordmark { color: #FFFFFF; }
.nav.on-hero .brand-wordmark em { color: var(--teal-400); }

/* Footer brand variant */
.brand--footer {
  margin-bottom: 18px;
}
.brand--footer .brand-mark { height: 40px; }
.brand--footer .brand-wordmark {
  font-size: 1.45rem;
  color: #FFFFFF;
}
.brand--footer .brand-wordmark em { color: var(--teal-400); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
}
.nav.on-hero .nav-links a,
.nav.on-hero .nav-toggle,
.nav.on-hero .brand .wordmark { color: rgba(255, 255, 255, .9); }
.nav-links a:hover { color: var(--teal-600); }
.nav-cta { display: inline-flex; gap: 10px; }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  align-items: center; justify-content: center;
  color: var(--navy-900);
  background: rgba(11, 27, 59, .04);
  border: 1px solid var(--ink-200);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
  flex-shrink: 0;
}
.nav-toggle:hover { background: var(--teal-50); border-color: var(--teal-500); color: var(--teal-600); }
.nav-toggle:focus-visible { outline: 2px solid var(--teal-500); outline-offset: 2px; }
.nav-toggle .nav-toggle-icon { width: 22px; height: 22px; display: block; }
.nav-toggle .nav-toggle-icon--close { display: none; }
.nav.open .nav-toggle .nav-toggle-icon--menu { display: none; }
.nav.open .nav-toggle .nav-toggle-icon--close { display: block; }

/* On dark hero, give the toggle a translucent dark-friendly look */
.nav.on-hero .nav-toggle {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .95);
}
.nav.on-hero .nav-toggle:hover {
  background: rgba(20, 196, 165, .18);
  border-color: var(--teal-400);
  color: var(--teal-400);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 140px 0 80px;
  background: var(--grad-hero);
  color: var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: .35;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  position: relative;
  z-index: 1;
}
.hero h1 { color: var(--white); }
.hero h1 .accent {
  background: linear-gradient(90deg, #3CD7BB 0%, #6EE7CE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead { color: rgba(255, 255, 255, .82); font-size: 1.15rem; max-width: 560px; }
.hero-actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 22px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-meta .meta {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}
.hero-meta .meta svg { width: 18px; height: 18px; color: var(--teal-400); }
.hero-art {
  position: relative;
  perspective: 1200px;
}
.hero-art .frame {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,.04));
  padding: 10px;
  box-shadow: var(--shadow-xl);
  transform: rotateY(-6deg) rotateX(4deg);
  border: 1px solid rgba(255,255,255,.16);
}
.hero-art .frame img {
  width: 100%;
  border-radius: 14px;
  display: block;
}
.hero-art .float-card {
  position: absolute;
  background: var(--white);
  color: var(--ink-700);
  padding: 14px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
  font-size: .88rem;
  animation: float 5s ease-in-out infinite;
}
.float-card .badge {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--teal-50);
  color: var(--teal-600);
  display: inline-flex; align-items: center; justify-content: center;
}
.float-card .badge svg { width: 20px; height: 20px; }
.float-card .label { color: var(--ink-500); font-size: .72rem; }
.float-card .value { color: var(--navy-900); font-weight: 700; font-size: .95rem; }
.float-card.fc-1 { top: -22px; left: -28px; }
.float-card.fc-2 { bottom: 20px; right: -32px; animation-delay: 1.6s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ---------- Trust band (Live Clinical Dashboard) ---------- */
.trust-band {
  position: relative;
  padding: clamp(56px, 7vw, 96px) 0 clamp(56px, 7vw, 96px);
  margin-top: clamp(-120px, -9vw, -72px);
  background:
    radial-gradient(700px 320px at 0% 0%, rgba(20, 196, 165, .055), transparent 60%),
    radial-gradient(900px 360px at 100% 30%, rgba(43, 90, 220, .045), transparent 60%),
    linear-gradient(180deg, #F6F9FC 0%, #FFFFFF 100%);
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -30px 60px -30px rgba(11, 27, 59, .25);
  overflow: hidden;
  z-index: 5;
}
.trust-bg {
  position: absolute;
  inset: auto 0 0 0;
  height: 200px;
  color: rgba(20, 196, 165, .18);
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
.trust-bg svg { width: 100%; height: 100%; opacity: .9; }
.trust-band .container { position: relative; z-index: 1; }

/* --- Section header --- */
.trust-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 3.5vw, 48px);
}
.trust-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--navy-900);
  border: 1px solid var(--ink-200);
  padding: 7px 14px 7px 12px;
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}
.trust-head h2 {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  max-width: 640px;
  line-height: 1.1;
}
.trust-head h2::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 16px;
  background: var(--grad-mint);
  border-radius: var(--radius-full);
}
.trust-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-500);
  font-size: .9rem;
  max-width: 340px;
  margin: 0;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-left: 3px solid var(--teal-500);
  border-radius: 10px;
  line-height: 1.5;
}
.trust-note svg { width: 18px; height: 18px; color: var(--teal-600); flex-shrink: 0; }

/* --- Live indicator dot --- */
.live-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #EF4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, .18);
  animation: livePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}
.live-dot--teal {
  background: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(20, 196, 165, .25);
  animation-delay: .4s;
}
@keyframes livePulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 4px rgba(239, 68, 68, .18); }
  50%      { transform: scale(1.2); box-shadow: 0 0 0 7px rgba(239, 68, 68, .05); }
}

/* --- Bento grid --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: minmax(180px, auto) minmax(180px, auto);
  gap: 18px;
}
.t-tile {
  position: relative;
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2vw, 28px);
  background: var(--white);
  border: 1px solid var(--ink-200);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .35s cubic-bezier(.22,.9,.32,1), box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
  isolation: isolate;
}
.t-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(11, 27, 59, .2);
}
.t-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Chip (label) */
.t-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px 5px 9px;
  border-radius: var(--radius-full);
  font-size: .73rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(20, 196, 165, .14);
  color: var(--teal-400);
  border: 1px solid rgba(20, 196, 165, .3);
}
.t-chip--light {
  background: var(--ink-50);
  color: var(--navy-700);
  border-color: var(--ink-200);
}
.t-chip svg { width: 13px; height: 13px; }
.t-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .74rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  letter-spacing: .04em;
}
.t-tag {
  font-size: .7rem;
  font-weight: 600;
  color: var(--ink-500);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Numbers (default = light tile, dark text) */
.t-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: .95;
  color: var(--navy-900);
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.t-num--lg { font-size: clamp(2.6rem, 4.2vw, 3.6rem); }
.t-num--xxl {
  font-size: clamp(4.5rem, 8vw, 7.5rem);
  background: linear-gradient(180deg, #FFFFFF 0%, #B7CDE0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.t-suffix {
  font-size: .55em;
  font-weight: 700;
  background: var(--grad-mint);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 4px;
}
.t-suffix--dark {
  background: linear-gradient(180deg, #14C4A5 0%, #0FAE92 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.t-suffix--minus { color: var(--teal-600); background: none; -webkit-text-fill-color: var(--teal-600); margin-right: 2px; }
.t-trend {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--teal-50);
  color: var(--teal-600);
  align-self: center;
  vertical-align: middle;
}
.t-trend svg { width: 16px; height: 16px; }

.t-tile-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy-900);
  margin: 0;
  letter-spacing: -0.01em;
}

/* --- HERO TILE (navy gradient, 98%) --- */
.t-hero {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
  background:
    radial-gradient(700px 320px at 0% 100%, rgba(20, 196, 165, .22), transparent 60%),
    radial-gradient(600px 280px at 100% 0%, rgba(60, 215, 187, .12), transparent 60%),
    linear-gradient(135deg, #0F2050 0%, #0B1B3B 55%, #051634 100%);
  color: var(--white);
  border-color: rgba(255, 255, 255, .06);
  padding: clamp(24px, 2.6vw, 36px);
  gap: 18px;
}
.t-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(900px 500px at 30% 50%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(900px 500px at 30% 50%, #000 30%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.t-hero::after {
  content: '';
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 196, 165, .6), transparent);
}
.t-hero > * { position: relative; z-index: 1; }
.t-hero .t-status { color: var(--teal-400); }
.t-hero-body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 24px;
  flex: 1;
}
.t-hero-figure {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.t-hero-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--white);
  margin: 4px 0 0;
  letter-spacing: -0.01em;
  max-width: 340px;
  line-height: 1.3;
}
.t-hero-sub {
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: .9rem;
  max-width: 340px;
}
.t-hero-arc {
  position: relative;
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1;
  margin-left: auto;
}
.t-hero-arc svg { width: 100%; height: 100%; }
.t-arc-fill { transition: stroke-dashoffset 1.8s cubic-bezier(.22,.9,.32,1); }
.t-arc-dots circle {
  animation: arcDotPulse 2.4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes arcDotPulse {
  0%, 100% { opacity: 1; r: 3; }
  50%      { opacity: .4; r: 5; }
}

/* --- TILE 2: 4x speed --- */
.t-speed {
  grid-column: 8 / 13;
  grid-row: 1;
  justify-content: space-between;
}
.t-spark {
  width: 100%;
  height: 60px;
  margin-top: auto;
}
.t-spark-line {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.8s cubic-bezier(.22,.9,.32,1) .2s;
}
.t-spark.in .t-spark-line { stroke-dashoffset: 0; }
.t-spark-fill {
  opacity: 0;
  transition: opacity .8s ease 1.4s;
}
.t-spark.in .t-spark-fill { opacity: 1; }
.t-spark-dot {
  opacity: 0;
  transition: opacity .4s ease 1.8s;
}
.t-spark.in .t-spark-dot { opacity: 1; }

/* --- TILE 3: 60% less admin --- */
.t-admin {
  grid-column: 8 / 11;
  grid-row: 2;
  background: linear-gradient(180deg, #F0FBF7 0%, #E6FBF6 100%);
  border-color: rgba(20, 196, 165, .25);
  justify-content: space-between;
}
.t-bars {
  display: flex;
  gap: 14px;
  align-items: flex-end;
  height: 70px;
  margin-top: auto;
}
.t-bar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  height: 100%;
}
.t-bar-fill {
  display: block;
  width: 100%;
  border-radius: 6px 6px 2px 2px;
  height: 0;
  transition: height 1.2s cubic-bezier(.22,.9,.32,1) .3s;
}
.t-tile.in .t-bar-fill { height: var(--h, 100%); }
.t-bar-fill--ghost {
  background: repeating-linear-gradient(45deg, rgba(11, 27, 59, .08) 0 4px, transparent 4px 8px);
  border: 1px dashed rgba(11, 27, 59, .15);
}
.t-bar-fill--accent {
  background: linear-gradient(180deg, #3CD7BB 0%, #14C4A5 100%);
  box-shadow: 0 8px 20px -8px rgba(20, 196, 165, .55);
}
.t-bar-lbl {
  font-size: .68rem;
  font-weight: 600;
  color: var(--ink-500);
  text-align: center;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* --- TILE 4: 100% audit --- */
.t-audit {
  grid-column: 11 / 13;
  grid-row: 2;
  justify-content: space-between;
  align-items: center;
  text-align: center;
}
.t-audit .t-tile-top { width: 100%; justify-content: center; }
.t-audit-figure {
  position: relative;
  width: 130px;
  height: 130px;
  display: grid;
  place-items: center;
  margin: 8px auto 0;
}
.t-ring { position: absolute; inset: 0; width: 100%; height: 100%; }
.t-ring-fill { transition: stroke-dashoffset 1.8s cubic-bezier(.22,.9,.32,1) .2s; }
.t-num--ring {
  position: relative;
  z-index: 1;
  font-size: clamp(1.7rem, 2.5vw, 2.1rem);
}
.t-audit .t-tile-label { text-align: center; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .trust-band { margin-top: clamp(-80px, -7vw, -60px); border-radius: 28px 28px 0 0; }
  .trust-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: auto;
  }
  .t-hero    { grid-column: 1 / 7; grid-row: auto; }
  .t-speed   { grid-column: 1 / 7; grid-row: auto; }
  .t-admin   { grid-column: 1 / 4; grid-row: auto; }
  .t-audit   { grid-column: 4 / 7; grid-row: auto; }
  .t-hero-body { grid-template-columns: 1fr 220px; }
  .trust-head { align-items: flex-start; }
}
@media (max-width: 720px) {
  .trust-band { border-radius: 22px 22px 0 0; padding-top: 56px; }
  .trust-head { flex-direction: column; align-items: flex-start; }
  .trust-note { max-width: 100%; }
  .trust-grid { grid-template-columns: 1fr; gap: 14px; }
  .t-hero, .t-speed, .t-admin, .t-audit { grid-column: 1 / -1; }
  .t-hero-body { grid-template-columns: 1fr; gap: 8px; }
  .t-hero-arc { max-width: 200px; margin: 0 auto; }
  .t-num--xxl { font-size: clamp(4rem, 16vw, 5.5rem); }
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.about-art {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-art img { width: 100%; height: 100%; object-fit: cover; }
.about-art::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(11, 27, 59, .18) 0%, transparent 50%, rgba(20, 196, 165, .14) 100%);
}
.about-pills { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.pill {
  font-size: .82rem;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  background: var(--ink-50);
  color: var(--navy-900);
  border: 1px solid var(--ink-200);
  font-weight: 500;
}
.about-points { margin-top: 26px; display: grid; gap: 16px; }
.about-points li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  color: var(--ink-700);
}
.about-points .check {
  width: 28px; height: 28px;
  border-radius: var(--radius-full);
  background: var(--teal-50);
  color: var(--teal-600);
  display: inline-flex; align-items: center; justify-content: center;
}
.about-points .check svg { width: 16px; height: 16px; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-mint);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card .ico {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--teal-50);
  color: var(--teal-600);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-card .ico svg { width: 24px; height: 24px; }
.service-card h3 { margin-bottom: 8px; }
.service-card p { color: var(--ink-500); font-size: .95rem; }

/* ---------- Workflow ---------- */
#workflow { background: var(--grad-soft); }
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.workflow-steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 12%; right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ink-200) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.wf-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.wf-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.wf-num {
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  background: var(--grad-mint);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 0 auto 16px;
  box-shadow: var(--shadow-teal);
}
.wf-card h3 { margin-bottom: 6px; }
.wf-card .role {
  color: var(--teal-600);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.wf-list { margin-top: 14px; display: grid; gap: 8px; }
.wf-list li {
  display: flex; align-items: center; gap: 8px;
  justify-content: center;
  color: var(--ink-500);
  font-size: .9rem;
}
.wf-list li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--teal-500);
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  padding: 22px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.feature:hover { border-color: var(--teal-500); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature .ico {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--ink-50);
  color: var(--navy-900);
  display: inline-flex; align-items: center; justify-content: center;
}
.feature:hover .ico { background: var(--teal-50); color: var(--teal-600); }
.feature h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  margin: 2px 0 4px;
  color: var(--navy-900);
  font-size: 1rem;
}
.feature p { color: var(--ink-500); font-size: .88rem; margin: 0; }

/* ---------- Compatibility (split) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-art {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-200);
  background: var(--ink-50);
}
.split-art img { width: 100%; display: block; }
.split-list { display: grid; gap: 14px; margin-top: 20px; }
.split-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}
.split-list .ico {
  width: 28px; height: 28px;
  background: var(--teal-50);
  color: var(--teal-600);
  border-radius: var(--radius-full);
  display: inline-flex; align-items: center; justify-content: center;
}
.split-list .ico svg { width: 14px; height: 14px; }
.split-list strong { color: var(--navy-900); }

/* ---------- Case studies ---------- */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.case-thumb {
  aspect-ratio: 16 / 10;
  background: var(--ink-50);
  position: relative;
  overflow: hidden;
}
.case-thumb img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .6s ease;
}
.case-card:hover .case-thumb img { transform: scale(1.05); }
.case-thumb .tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,.95);
  color: var(--navy-900);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-full);
}
.case-body { padding: 20px 22px 24px; }
.case-body h3 { font-size: 1.1rem; margin-bottom: 6px; }
.case-body p { color: var(--ink-500); font-size: .92rem; margin: 0 0 14px; }
.case-stats {
  display: flex; gap: 18px;
  border-top: 1px dashed var(--ink-200);
  padding-top: 14px;
}
.case-stats .stat .v { color: var(--navy-900); font-weight: 700; font-size: 1.05rem; }
.case-stats .stat .l { color: var(--ink-500); font-size: .78rem; }

/* ---------- Why choose us (dark band) ---------- */
.why {
  background: var(--grad-cta);
  color: rgba(255,255,255,.85);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(800px 400px at 0% 100%, rgba(20, 196, 165, .18), transparent 60%),
              radial-gradient(700px 380px at 100% 0%, rgba(60, 215, 187, .14), transparent 60%);
}
.why h2 { color: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(40px, 5vw, 72px);
  position: relative;
  z-index: 1;
}
.why-points { display: grid; gap: 18px; margin-top: 22px; }
.why-points li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}
.why-points .ico {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(20, 196, 165, .15);
  color: var(--teal-400);
  display: inline-flex; align-items: center; justify-content: center;
}
.why-points strong { color: var(--white); display: block; font-family: 'Plus Jakarta Sans'; font-weight: 600; margin-bottom: 2px; }
.why-side {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(8px);
}
.why-side h3 { color: var(--white); }
.usecase-list { display: grid; gap: 12px; margin-top: 18px; }
.usecase-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  color: rgba(255,255,255,.88);
  font-size: .92rem;
}
.usecase-list .dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--teal-400);
  box-shadow: 0 0 0 4px rgba(20,196,165,.18);
}

/* ---------- Testimonials ---------- */
.tm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tm-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.tm-card::before {
  content: '\201C';
  position: absolute;
  top: 8px; right: 22px;
  font-family: 'Plus Jakarta Sans';
  font-size: 4.2rem;
  line-height: 1;
  color: var(--teal-100);
}
.tm-card .stars { color: #F5B041; display: flex; gap: 2px; }
.tm-card .stars svg { width: 16px; height: 16px; fill: currentColor; }
.tm-card blockquote {
  margin: 0;
  font-size: 1rem;
  color: var(--ink-700);
  line-height: 1.7;
}
.tm-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--ink-100);
  padding-top: 16px;
}
.tm-author .avatar {
  width: 44px; height: 44px;
  border-radius: var(--radius-full);
  background: var(--grad-mint);
  color: var(--white);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans';
}
.tm-author .name { color: var(--navy-900); font-weight: 600; font-size: .95rem; }
.tm-author .role { color: var(--ink-500); font-size: .82rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--grad-cta);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 32px;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 100% 0%, rgba(20, 196, 165, .25), transparent 60%);
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,.78); margin: 0; }
.cta-banner .actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; position: relative; z-index: 1; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 5vw, 72px);
}
.contact-info .info-card {
  display: flex; gap: 14px;
  padding: 18px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  background: var(--white);
}
.contact-info .info-card .ico {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--teal-50);
  color: var(--teal-600);
  display: inline-flex; align-items: center; justify-content: center;
}
.contact-info .lbl { color: var(--ink-500); font-size: .82rem; }
.contact-info .val { color: var(--navy-900); font-weight: 600; }
.form {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-md);
}
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.field label { font-size: .85rem; color: var(--ink-700); font-weight: 500; }
.field input, .field textarea, .field select {
  font-family: inherit;
  font-size: .95rem;
  padding: 12px 14px;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--navy-900);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(20, 196, 165, .15);
}
.form .submit-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 8px; flex-wrap: wrap;
}
.form .submit-row .note { color: var(--ink-500); font-size: .82rem; }
.form-success {
  display: none;
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  color: var(--teal-600);
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 500;
}
.form-success.show { display: block; }

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.7);
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1fr;
  gap: 40px;
}
.footer h4 {
  color: var(--white);
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: var(--teal-400); }
.footer ul li { padding: 6px 0; font-size: .9rem; }
.footer-brand p { font-size: .9rem; max-width: 320px; color: rgba(255, 255, 255, .65); }
.socials { display: flex; gap: 10px; margin-top: 20px; }
.socials a {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .95);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.socials a:hover {
  background: var(--teal-500);
  border-color: var(--teal-500);
  color: var(--white);
  transform: translateY(-2px);
}
.socials svg {
  width: 18px;
  height: 18px;
  display: block;
}
.footer-bottom {
  margin-top: 56px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.55);
  font-size: .85rem;
}

/* ---------- AOS-like reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .split, .why-grid, .contact-grid, .cta-banner { grid-template-columns: 1fr; }
  .cta-banner .actions { justify-content: flex-start; }
  .services-grid, .cases-grid, .tm-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-steps { grid-template-columns: repeat(2, 1fr); }
  .workflow-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-art .float-card.fc-1 { left: -10px; }
  .hero-art .float-card.fc-2 { right: -10px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-cta .desktop-only { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn-primary { padding: 10px 16px; font-size: .85rem; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    inset-inline: var(--gutter);
    background: var(--white);
    padding: 18px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    gap: 12px;
    margin-top: 8px;
  }
  .nav.open .nav-links a { color: var(--ink-700); }
  .services-grid, .cases-grid, .tm-grid, .features-grid, .workflow-steps, .footer-grid { grid-template-columns: 1fr; }
  .form .row { grid-template-columns: 1fr; }
  .hero { padding-top: 120px; }
  .hero-art .float-card { display: none; }
  .cta-banner .actions { justify-content: flex-start; }
}

/* =========================================================
   v2 — REDESIGNED SECTIONS (overrides + new components)
   ========================================================= */

/* ---------- Section-head variants ---------- */
.section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
  max-width: 100%;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.section-head--split h2 { margin-bottom: 0; }
.section-head--split h2::after {
  content: '';
  display: block;
  width: 64px;
  height: 4px;
  margin-top: 18px;
  background: var(--grad-mint);
  border-radius: var(--radius-full);
}
.section-head-aside {
  color: var(--ink-500);
  max-width: 360px;
  font-size: 1rem;
  margin: 0;
}
.section-head--dark { text-align: left; max-width: 100%; }
.section-head--dark h2 { color: white; }
.section-head--dark p { color: rgba(255,255,255,.7); max-width: 720px; }
.text-accent {
  background: linear-gradient(90deg, #3CD7BB 0%, #14C4A5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- HERO ENHANCEMENTS ---------- */
.hero-orbit {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-orbit .orbit {
  position: absolute;
  border: 1px solid rgba(20, 196, 165, .1);
  border-radius: 50%;
}
.hero-orbit .orbit-1 { width: 600px; height: 600px; top: -200px; right: -200px; }
.hero-orbit .orbit-2 { width: 900px; height: 900px; top: -350px; right: -350px; opacity: .6; }
.hero-orbit .orbit-3 { width: 1200px; height: 1200px; top: -500px; right: -500px; opacity: .3; }

.btn-aside {
  margin-left: 4px;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, .1);
  font-size: .72rem;
  font-weight: 500;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.hero-avatars {
  display: flex;
}
.hero-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c, var(--teal-500));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  border: 2px solid var(--navy-900);
  margin-left: -8px;
}
.hero-avatar:first-child { margin-left: 0; }
.hero-avatar--plus {
  background: rgba(255, 255, 255, .1);
  color: var(--teal-400);
  font-size: .65rem;
  border-color: var(--navy-900);
}
.hero-stars {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #F5B041;
  font-size: .82rem;
}
.hero-stars svg { width: 14px; height: 14px; fill: currentColor; }
.hero-stars span {
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
  margin-left: 6px;
}

.frame-chrome {
  position: absolute;
  top: 14px;
  left: 18px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.frame-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .2);
}
.frame-chrome span:nth-child(1) { background: #FF5F57; }
.frame-chrome span:nth-child(2) { background: #FEBC2E; }
.frame-chrome span:nth-child(3) { background: #28C840; }
.hero-art .frame { position: relative; padding-top: 36px; }
.hero-art .frame img { border-top-left-radius: 0; border-top-right-radius: 0; }

.float-card { width: 220px; }
.float-card .badge--alt {
  background: rgba(11, 27, 59, .08);
  color: var(--navy-700);
}
.float-spark {
  position: absolute;
  bottom: 8px;
  right: 12px;
  width: 50px;
  height: 18px;
}
.float-spark svg { width: 100%; height: 100%; }
.float-card.fc-3 {
  top: 40%;
  left: -40px;
  animation-delay: 3s;
  width: 200px;
}
.float-card .status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(20, 196, 165, .2);
  animation: livePulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ---------- ABOUT v2 ---------- */
.about-section {
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
.about-art {
  position: relative;
  overflow: visible;
  background: none;
  box-shadow: none;
}
.about-art::after { display: none; }
.about-art-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4 / 5;
}
.about-art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-stamp {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  color: var(--navy-900);
  padding: 7px 14px 7px 10px;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.about-stamp svg { width: 16px; height: 16px; color: var(--teal-600); }

.about-stat-card {
  position: absolute;
  top: 60%;
  right: -30px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--ink-200);
  min-width: 200px;
}
.asc-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-mint);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.02em;
  line-height: 1;
}
.asc-lbl {
  color: var(--ink-500);
  font-size: .82rem;
  margin-top: 6px;
  line-height: 1.35;
}
.asc-trend {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--teal-50);
  color: var(--teal-600);
  padding: 4px 8px;
  border-radius: var(--radius-full);
  font-size: .7rem;
  font-weight: 600;
}
.asc-trend svg { width: 12px; height: 12px; }

.about-quote-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--navy-900);
  color: white;
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  max-width: 320px;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(20, 196, 165, .25);
}
.about-quote-card > svg:first-child,
.about-quote-card > i:first-child {
  color: var(--teal-400);
  width: 24px;
  height: 24px;
  margin-bottom: 8px;
}
.about-quote-card p {
  font-size: .92rem;
  line-height: 1.5;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .92);
}
.aqc-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}
.aqc-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad-mint);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  flex-shrink: 0;
}
.aqc-author strong {
  display: block;
  font-size: .85rem;
  color: white;
}
.aqc-author em {
  display: block;
  font-style: normal;
  font-size: .75rem;
  color: rgba(255, 255, 255, .6);
}

.about-points {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}
.about-points li {
  grid-template-columns: 32px 1fr;
  gap: 14px;
}
.about-points .check {
  width: 32px;
  height: 32px;
  background: var(--teal-50);
  color: var(--teal-600);
  border-radius: 10px;
}
.about-points li > div strong {
  display: block;
  color: var(--navy-900);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .98rem;
  margin-bottom: 2px;
}
.about-points li > div span {
  color: var(--ink-500);
  font-size: .9rem;
}
.about-pills {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.about-pills .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--ink-200);
  padding: 8px 14px 8px 12px;
  color: var(--navy-700);
  font-size: .85rem;
  font-weight: 500;
  border-radius: var(--radius-full);
}
.about-pills .pill svg { width: 14px; height: 14px; color: var(--teal-600); }
.about-pills .pill:hover { border-color: var(--teal-500); background: var(--teal-50); }

.about-body .lead em { font-style: normal; font-weight: 600; color: var(--navy-900); }

/* ---------- SERVICES BENTO ---------- */
.services-section { background: var(--ink-50); position: relative; }
.services-bento {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}
.svc-tile {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.svc-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.svc-featured {
  grid-column: 1;
  grid-row: 1 / 3;
  background: linear-gradient(135deg, #0F2050 0%, #0B1B3B 100%);
  color: white;
  border-color: transparent;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.svc-featured-art {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.svc-featured-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: .85;
}
.svc-featured-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, var(--navy-900) 100%),
              radial-gradient(400px 200px at 50% 0%, rgba(20, 196, 165, .25), transparent 60%);
}
.svc-featured-body { padding: 28px 32px 32px; }
.svc-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(20, 196, 165, .18);
  color: var(--teal-400);
  border: 1px solid rgba(20, 196, 165, .35);
  padding: 5px 11px 5px 9px;
  border-radius: var(--radius-full);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.svc-chip svg { width: 13px; height: 13px; }
.svc-featured h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.svc-featured p {
  color: rgba(255, 255, 255, .75);
  font-size: .95rem;
  margin-bottom: 18px;
}
.svc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 10px;
}
.svc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .88rem;
  color: rgba(255, 255, 255, .85);
}
.svc-list svg { width: 16px; height: 16px; color: var(--teal-400); flex-shrink: 0; }
.svc-featured .btn-link { color: var(--teal-400); }

.svc-card { display: flex; flex-direction: column; }
.svc-card .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.svc-card .ico svg { width: 22px; height: 22px; }
.svc-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.svc-card p {
  color: var(--ink-500);
  font-size: .9rem;
  flex: 1;
  margin: 0 0 14px;
}
.svc-tag {
  align-self: flex-start;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--teal-600);
  background: var(--teal-50);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.svc-card--accent {
  background: linear-gradient(135deg, #14C4A5 0%, #0FAE92 100%);
  border-color: transparent;
  color: white;
}
.svc-card--accent h3 { color: white; }
.svc-card--accent p { color: rgba(255, 255, 255, .88); }
.ico--white {
  background: rgba(255, 255, 255, .2) !important;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, .25);
}
.svc-tag--white {
  background: rgba(255, 255, 255, .18);
  color: white;
}

/* ---------- WORKFLOW JOURNEY ---------- */
.workflow-section {
  background: linear-gradient(180deg, #F6F9FC 0%, #FFFFFF 100%);
  position: relative;
  overflow: hidden;
}
.wf-bg {
  position: absolute;
  inset: 0;
  color: rgba(11, 27, 59, .04);
  pointer-events: none;
}
.wf-bg svg { width: 100%; height: 100%; }

.wf-stages {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 40px auto;
  padding: 10px 16px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  width: fit-content;
  flex-wrap: wrap;
  justify-content: center;
}
.wf-stage-label {
  color: var(--ink-500);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.wf-stage {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--navy-900);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--ink-50);
}
.wf-stage-line {
  width: 24px;
  height: 1px;
  background: var(--ink-200);
}

.wf-journey {
  position: relative;
  margin-top: 50px;
}
.wf-path {
  position: absolute;
  top: 80px;
  left: 0; right: 0;
  width: 100%;
  height: 80px;
  z-index: 0;
}
.wf-stations {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.wf-station {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  border: 1px solid var(--ink-200);
  transition: transform .35s cubic-bezier(.22,.9,.32,1), box-shadow .35s ease, border-color .35s ease;
  text-align: center;
}
.wf-station:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal-500);
}
.wf-icon-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
}
.wf-tag {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy-900);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  z-index: 2;
}
.wf-icon {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--teal-50) 0%, white 70%);
  border: 1px solid var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  position: relative;
  z-index: 1;
  transition: background .35s ease, border-color .35s ease;
}
.wf-station:hover .wf-icon {
  background: radial-gradient(circle at 30% 30%, var(--teal-100) 0%, var(--teal-50) 80%);
  border-color: var(--teal-500);
}
.wf-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(11%) sepia(43%) saturate(2156%) hue-rotate(213deg) brightness(95%) contrast(98%);
}
.wf-station:hover .wf-icon img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(76%) saturate(440%) hue-rotate(120deg) brightness(94%) contrast(91%);
}
.wf-check {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--grad-mint);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px -4px rgba(20, 196, 165, .55);
  z-index: 2;
}
.wf-check svg { width: 14px; height: 14px; stroke-width: 3; }

.wf-role {
  display: inline-block;
  color: var(--teal-600);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.wf-station h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}
.wf-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: grid;
  gap: 6px;
  text-align: left;
}
.wf-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .85rem;
  color: var(--ink-500);
  padding-left: 4px;
}
.wf-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-500);
  margin-top: 8px;
  flex-shrink: 0;
}
.wf-meta {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px dashed var(--ink-200);
  flex-wrap: wrap;
}
.wf-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--ink-500);
  font-size: .72rem;
  font-weight: 500;
}
.wf-meta svg { width: 12px; height: 12px; color: var(--teal-600); }

.wf-outcome {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding: 22px 28px;
  background: white;
  border: 1px solid var(--ink-200);
  border-left: 4px solid var(--teal-500);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  flex-wrap: wrap;
}
.wf-outcome-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wf-outcome-icon svg { width: 22px; height: 22px; }
.wf-outcome > div {
  flex: 1;
  color: var(--ink-700);
  font-size: .95rem;
  min-width: 240px;
}
.wf-outcome strong { color: var(--navy-900); }

/* ---------- FEATURES GROUPED ---------- */
.features-section { position: relative; }
.features-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
.feat-col {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
}
.feat-col:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feat-col--highlight {
  background: linear-gradient(180deg, #0F2050 0%, #0B1B3B 100%);
  border-color: transparent;
  color: white;
  position: relative;
  overflow: hidden;
}
.feat-col--highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 50% 100%, rgba(20, 196, 165, .14), transparent 60%);
  pointer-events: none;
}
.feat-col--highlight > * { position: relative; z-index: 1; }
.feat-col-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--grad-mint);
  color: white;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: var(--shadow-teal);
}
.feat-col-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}
.feat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
  color: var(--ink-200);
  letter-spacing: -.04em;
}
.feat-col--highlight .feat-num { color: rgba(255, 255, 255, .15); }
.feat-col-head h3 {
  font-size: 1.15rem;
  margin: 0 0 4px;
}
.feat-col--highlight h3 { color: white; }
.feat-col-head p {
  color: var(--ink-500);
  font-size: .85rem;
  margin: 0;
}
.feat-col--highlight .feat-col-head p { color: rgba(255, 255, 255, .65); }
.feat-list { display: grid; gap: 16px; }
.feat {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  margin: -12px;
  border-radius: var(--radius-md);
  transition: background .25s ease;
}
.feat:hover { background: var(--ink-50); }
.feat .ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--ink-50);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat .ico svg { width: 18px; height: 18px; }
.feat h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  margin: 0 0 3px;
  color: var(--navy-900);
}
.feat p {
  font-size: .82rem;
  color: var(--ink-500);
  margin: 0;
  line-height: 1.5;
}
.feat--accent .ico {
  background: rgba(20, 196, 165, .15);
  color: var(--teal-400);
}
.feat--accent:hover { background: rgba(255, 255, 255, .05); }
.feat--accent h4 { color: white; }
.feat--accent p { color: rgba(255, 255, 255, .72); }

/* ---------- SPLIT SECTIONS (with connection diagram) ---------- */
.split-section { padding: clamp(56px, 7vw, 100px) 0; }
.split-section--alt { background: linear-gradient(180deg, #F6F9FC 0%, #FFFFFF 100%); }
.split-section h2 .text-accent { font-style: italic; }
.split-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 16px;
}
.split-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  align-items: flex-start;
}
.split-list .ico {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-list .ico svg { width: 16px; height: 16px; stroke-width: 2.5; }
.split-list li > div strong {
  display: block;
  color: var(--navy-900);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  margin-bottom: 2px;
}
.split-list li > div span {
  color: var(--ink-500);
  font-size: .9rem;
}

.split-visual { display: flex; flex-direction: column; gap: 24px; }

.conn-diagram {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.conn-node {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.conn-node strong {
  display: block;
  color: var(--navy-900);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.conn-node span {
  color: var(--ink-500);
  font-size: .75rem;
  white-space: nowrap;
}
.conn-node--right { flex-direction: row-reverse; text-align: right; }
.conn-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ink-50);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.conn-ico svg { width: 22px; height: 22px; }
.conn-ico--brand { background: var(--teal-50); padding: 4px; }
.conn-ico--brand img { width: 100%; height: 100%; object-fit: contain; }
.conn-wire {
  flex: 0 0 120px;
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.conn-wire svg { width: 100%; height: 100%; }
.conn-pill {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal-50);
  color: var(--teal-600);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  border: 1px solid var(--teal-100);
  white-space: nowrap;
}

.split-art--soft {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--ink-200);
}
.split-art-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  color: var(--navy-900);
  padding: 6px 12px 6px 8px;
  border-radius: var(--radius-full);
  font-size: .76rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}

/* ---------- CASE STUDIES ---------- */
.cases-section { background: var(--ink-50); }
.case-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.case-filter {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px 8px 12px;
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-full);
  font-size: .85rem;
  font-weight: 500;
  color: var(--ink-700);
  cursor: pointer;
  transition: all .25s ease;
}
.case-filter svg { width: 14px; height: 14px; }
.case-filter:hover {
  border-color: var(--teal-500);
  color: var(--teal-600);
}
.case-filter.is-active {
  background: var(--navy-900);
  color: white;
  border-color: var(--navy-900);
}
.case-card {
  transition: transform .35s ease, box-shadow .35s ease, opacity .3s ease;
}
.case-card.is-hidden {
  display: none;
}
.case-thumb {
  position: relative;
  overflow: hidden;
}
.case-thumb .tag {
  z-index: 2;
}
.case-headline {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: white;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .35);
  z-index: 2;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.case-headline small {
  font-size: .35em;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.case-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 27, 59, .55) 100%);
  z-index: 1;
}

/* ---------- WHY US v2 ---------- */
.why { position: relative; overflow: hidden; padding: clamp(80px, 10vw, 140px) 0; }
.why-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.why-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(800px 500px at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(800px 500px at 50% 50%, #000 30%, transparent 80%);
}
.why-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .35;
}
.why-glow--1 {
  background: rgba(20, 196, 165, .35);
  top: -200px;
  left: -200px;
}
.why-glow--2 {
  background: rgba(43, 90, 220, .25);
  bottom: -200px;
  right: -200px;
}
.why-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 48px;
  position: relative;
}
.why-point {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  position: relative;
  backdrop-filter: blur(8px);
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.why-point:hover {
  background: rgba(255, 255, 255, .06);
  border-color: rgba(20, 196, 165, .3);
  transform: translateY(-4px);
}
.why-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .25);
  letter-spacing: .04em;
}
.why-point .ico {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(20, 196, 165, .14);
  color: var(--teal-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(20, 196, 165, .25);
}
.why-point .ico svg { width: 22px; height: 22px; }
.why-point strong {
  display: block;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.why-point p {
  color: rgba(255, 255, 255, .65);
  font-size: .88rem;
  margin: 0;
  line-height: 1.5;
}

.usecase-callout {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 32px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
}
.usecase-callout h3 {
  color: white;
  font-size: 1.3rem;
  margin: 12px 0 0;
  max-width: 480px;
}
.usecase-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 520px;
  justify-content: flex-end;
}
.usecase-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .88);
  padding: 7px 14px;
  border-radius: var(--radius-full);
  font-size: .82rem;
}
.usecase-pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-400);
}

/* ---------- TESTIMONIALS ---------- */
.tm-section { background: white; }
.tm-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius-full);
}
.tm-rating .tm-stars { color: #F5B041; display: flex; gap: 2px; }
.tm-rating .tm-stars svg { width: 14px; height: 14px; fill: currentColor; }
.tm-rating strong { color: var(--navy-900); font-family: 'Plus Jakarta Sans', sans-serif; }
.tm-rating span { color: var(--ink-500); font-size: .85rem; }

.tm-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
.tm-featured {
  grid-column: 1;
  grid-row: 1 / 3;
  background: linear-gradient(135deg, #0F2050 0%, #0B1B3B 60%, #061838 100%);
  color: white;
  border: 1px solid rgba(20, 196, 165, .15);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.tm-featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 300px at 100% 0%, rgba(20, 196, 165, .15), transparent 60%);
  pointer-events: none;
}
.tm-featured > * { position: relative; z-index: 1; }
.tm-quote-mark {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(20, 196, 165, .14);
  color: var(--teal-400);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.tm-quote-mark svg { width: 28px; height: 28px; }
.tm-stars { display: flex; gap: 3px; color: #F5B041; margin-bottom: 18px; }
.tm-stars svg { width: 16px; height: 16px; fill: currentColor; }
.tm-stars--lg svg { width: 20px; height: 20px; }
.tm-featured blockquote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  line-height: 1.4;
  color: white;
  margin: 0 0 32px;
  letter-spacing: -.01em;
  font-weight: 500;
}
.tm-featured .tm-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  flex-wrap: wrap;
}
.tm-featured .name { color: white; }
.tm-featured .role { color: rgba(255, 255, 255, .7); }
.avatar--lg { width: 56px; height: 56px; font-size: 1rem; }
.tm-stat-inline {
  margin-left: auto;
  text-align: right;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, .12);
}
.tm-stat-inline .v {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  background: var(--grad-mint);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.02em;
  display: block;
}
.tm-stat-inline .l {
  color: rgba(255, 255, 255, .6);
  font-size: .75rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.tm-card {
  background: white;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.tm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.tm-card::before { display: none; }
.tm-card blockquote {
  font-size: .95rem;
  color: var(--ink-700);
  margin: 0 0 20px;
  line-height: 1.6;
}
.tm-card .tm-author {
  border-top: 1px solid var(--ink-100);
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.tm-card .name {
  color: var(--navy-900);
  font-weight: 600;
  font-size: .9rem;
}
.tm-card .role {
  color: var(--ink-500);
  font-size: .78rem;
}

.tm-logos {
  padding: 28px 0;
  border-top: 1px solid var(--ink-200);
}
.tm-logos-label {
  display: block;
  color: var(--ink-500);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 18px;
  font-weight: 600;
}
.tm-logos-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 32px;
}
.tm-logos-row span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  letter-spacing: .12em;
  font-size: .95rem;
  color: var(--ink-400);
  opacity: .9;
  transition: color .25s ease, opacity .25s ease;
}
.tm-logos-row span:hover { color: var(--navy-900); opacity: 1; }

/* ---------- CTA banner v2 ---------- */
.cta-section { padding-bottom: 0; }
.cta-banner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.cta-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
}
.cta-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(20, 196, 165, .25), transparent 70%);
  top: -100px;
  right: -100px;
  filter: blur(40px);
}
.cta-copy { position: relative; z-index: 1; }
.cta-copy h2 { margin-bottom: 14px; }
.cta-bullets {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin: 24px 0 28px;
}
.cta-bullets span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .8);
  font-size: .88rem;
}
.cta-bullets svg {
  width: 16px; height: 16px;
  padding: 2px;
  border-radius: 50%;
  background: var(--teal-500);
  color: white;
  stroke-width: 3;
}
.cta-peek {
  position: relative;
  z-index: 1;
}
.cta-peek-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .5);
  transform: rotate(-2deg);
  transition: transform .4s ease;
}
.cta-peek:hover .cta-peek-frame { transform: rotate(0deg) scale(1.02); }
.cta-peek-frame img {
  width: 100%;
  display: block;
}
.cta-peek-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--navy-900);
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  white-space: nowrap;
}

/* ---------- CONTACT v2 ---------- */
.contact-section { background: var(--ink-50); }
.contact-grid {
  grid-template-columns: 1fr 1.2fr;
  align-items: flex-start;
}
.contact-side-card {
  background: linear-gradient(180deg, #0F2050 0%, #0B1B3B 100%);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: white;
  position: relative;
  overflow: hidden;
}
.contact-side-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 100% 0%, rgba(20, 196, 165, .18), transparent 60%);
  pointer-events: none;
}
.contact-side-card > * { position: relative; z-index: 1; }
.contact-side-card .eyebrow {
  background: rgba(20, 196, 165, .14);
  color: var(--teal-400);
  border-color: rgba(20, 196, 165, .35);
}
.contact-side-card h3 {
  color: white;
  font-size: 1.5rem;
  margin: 14px 0 24px;
  line-height: 1.25;
}
.contact-side .info-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  margin-bottom: 10px;
}
.contact-side .info-card .ico {
  background: rgba(20, 196, 165, .14);
  color: var(--teal-400);
}
.contact-side .info-card .lbl { color: rgba(255, 255, 255, .55); }
.contact-side .info-card .val { color: white; }
.contact-trust {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  display: grid;
  gap: 8px;
}
.contact-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .75);
  font-size: .85rem;
}
.contact-trust svg { width: 16px; height: 16px; color: var(--teal-400); }

.form .submit-row .note {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.form .submit-row .note svg { width: 14px; height: 14px; }

/* ---------- FOOTER v2 ---------- */
.footer { padding-top: 56px; }
.footer-cta {
  background: linear-gradient(135deg, #0F2050 0%, #122451 100%);
  border-radius: var(--radius-lg);
  padding: 32px clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin: 0 0 56px;
  border: 1px solid rgba(20, 196, 165, .2);
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 200px at 100% 0%, rgba(20, 196, 165, .18), transparent 60%);
  pointer-events: none;
}
.footer-cta > * { position: relative; z-index: 1; }
.footer-cta h3 {
  color: white;
  font-size: 1.4rem;
  margin: 12px 0 6px;
  letter-spacing: -.01em;
}
.footer-cta p {
  color: rgba(255, 255, 255, .65);
  font-size: .9rem;
  margin: 0;
}
.footer-form { display: flex; flex-direction: column; gap: 10px; }
.footer-input {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: var(--radius-full);
  padding: 5px 5px 5px 18px;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.footer-input > i,
.footer-input > svg {
  width: 18px;
  height: 18px;
  color: var(--ink-400);
  flex-shrink: 0;
}
.footer-input input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: .95rem;
  color: var(--navy-900);
  outline: none;
  padding: 8px 0;
  min-width: 0;
}
.footer-input input::placeholder { color: var(--ink-400); }
.footer-input .btn { padding: 11px 18px; font-size: .9rem; }
.f-ok {
  display: none;
  align-items: center;
  gap: 6px;
  color: var(--teal-400);
  font-size: .82rem;
}
.f-ok.show { display: inline-flex; }
.f-ok svg { width: 14px; height: 14px; }

.footer-meta a {
  text-decoration: none;
  margin: 0 4px;
}

/* ---------- Responsive overrides for new sections ---------- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-art { max-width: 520px; margin: 0 auto; }
  .about-stat-card { right: 0; top: 50%; }
  .about-quote-card { left: 0; bottom: -20px; max-width: 90%; }

  .services-bento { grid-template-columns: repeat(2, 1fr); }
  .svc-featured { grid-column: 1 / -1; grid-row: auto; }

  .wf-path { display: none; }
  .wf-stations { grid-template-columns: repeat(2, 1fr); }
  .wf-stages { font-size: .8rem; }

  .features-bento { grid-template-columns: 1fr; }
  .feat-col--highlight { order: -1; }

  .tm-bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .tm-featured { grid-column: 1; grid-row: auto; }
  .tm-featured blockquote { font-size: 1.2rem; }

  .cta-banner { grid-template-columns: 1fr; }
  .cta-peek { max-width: 480px; }

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

  .footer-cta { grid-template-columns: 1fr; }

  .why-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .usecase-callout { flex-direction: column; align-items: flex-start; }
  .usecase-pills { justify-content: flex-start; }

  .conn-diagram { flex-direction: column; gap: 16px; }
  .conn-wire { transform: rotate(90deg); flex: 0 0 60px; height: 30px; }
}
@media (max-width: 720px) {
  .section-head--split { flex-direction: column; align-items: flex-start; }
  .section-head--split h2::after { margin-top: 14px; }

  .hero-orbit .orbit { display: none; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }

  .about-stat-card { display: none; }
  .about-quote-card { position: relative; left: 0; bottom: 0; margin-top: 24px; max-width: 100%; }

  .services-bento { grid-template-columns: 1fr; }
  .svc-featured-art { height: 180px; }

  .wf-stations { grid-template-columns: 1fr; }
  .wf-stages { padding: 8px 14px; gap: 8px; }
  .wf-stage-line { width: 14px; }

  .case-filters { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
  .case-filter { flex-shrink: 0; }
  .case-headline { font-size: 1.8rem; }

  .why-grid-v2 { grid-template-columns: 1fr; }
  .why-glow { width: 300px; height: 300px; }

  .tm-featured { padding: 28px 24px; }
  .tm-featured blockquote { font-size: 1.05rem; }
  .tm-stat-inline { margin-left: 0; border-left: 0; padding-left: 0; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.12); width: 100%; text-align: left; }

  .cta-banner { padding: 32px 24px; }

  .footer-cta { padding: 28px 24px; }
  .footer-input { flex-wrap: wrap; }
  .footer-input input { width: 100%; }
  .footer-input .btn { width: 100%; justify-content: center; }
}

/* ---------- USP HIGHLIGHT BAND ---------- */
.usp-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #F6F9FC 100%);
  padding: clamp(56px, 7vw, 100px) 0;
}
.usp-band {
  position: relative;
  background:
    linear-gradient(135deg, #0F2050 0%, #0B1B3B 55%, #051634 100%);
  border-radius: var(--radius-xl);
  padding: clamp(36px, 4.5vw, 64px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: stretch;
  overflow: hidden;
  color: white;
  box-shadow: 0 40px 80px -28px rgba(11, 27, 59, .55);
  border: 1px solid rgba(20, 196, 165, .25);
}
.usp-copy { display: flex; flex-direction: column; justify-content: center; }
.usp-bg { position: absolute; inset: 0; pointer-events: none; }
.usp-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(900px 500px at 20% 50%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(900px 500px at 20% 50%, #000 30%, transparent 70%);
}
.usp-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  filter: blur(120px);
}
.usp-glow--1 { background: rgba(20, 196, 165, .32); top: -150px; left: -100px; }
.usp-glow--2 { background: rgba(60, 215, 187, .18); bottom: -200px; right: -150px; }
/* Lift the content above the bg layer — target the real columns, NOT .usp-bg
   (a universal selector here would override .usp-bg's absolute positioning
   and force it into a grid slot, breaking the layout). */
.usp-copy, .usp-compare { position: relative; z-index: 1; }

/* USP copy column */
.usp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(20, 196, 165, .14);
  color: var(--teal-400);
  border: 1px solid rgba(20, 196, 165, .35);
  padding: 7px 14px 7px 12px;
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.usp-badge svg { width: 14px; height: 14px; }
.usp-copy h2 {
  color: white;
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  margin: 0 0 18px;
  letter-spacing: -.035em;
  line-height: 1;
}
.usp-copy .lead {
  color: rgba(255, 255, 255, .78);
  font-size: 1.02rem;
  margin: 0 0 24px;
  line-height: 1.6;
}
.usp-copy .lead strong { color: var(--teal-400); font-weight: 600; }

/* 2x2 promise grid that fills the column */
.usp-promises {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.usp-promise {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-md);
  transition: background .25s ease, border-color .25s ease;
}
.usp-promise:hover {
  background: rgba(20, 196, 165, .06);
  border-color: rgba(20, 196, 165, .25);
}
.usp-promise .ico {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(20, 196, 165, .14);
  color: var(--teal-400);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(20, 196, 165, .25);
}
.usp-promise .ico svg { width: 18px; height: 18px; }
.usp-promise > div { line-height: 1.3; min-width: 0; }
.usp-promise strong {
  display: block;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .92rem;
  letter-spacing: -.01em;
}
.usp-promise em {
  display: block;
  font-style: normal;
  color: rgba(255, 255, 255, .58);
  font-size: .78rem;
}

/* Actions row — CTA + inline expert chip */
.usp-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.usp-expert {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-left: 4px;
}
.usp-expert-avatars { display: flex; }
.usp-expert-avatars .hero-avatar {
  width: 32px;
  height: 32px;
  font-size: .65rem;
  border-color: var(--navy-900);
}
.usp-expert > span:last-child { line-height: 1.35; }
.usp-expert strong {
  display: block;
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .86rem;
}
.usp-expert em {
  display: block;
  font-style: normal;
  color: rgba(255, 255, 255, .55);
  font-size: .76rem;
}

/* USP right column — stretches to fill grid column */
.usp-compare {
  display: flex;
  flex-direction: column;
  align-self: stretch;
}

/* Quote card — looks like a premium clinical-grade product quote */
.quote-card {
  flex: 1;
  background: linear-gradient(180deg, #FFFFFF 0%, #F6F9FC 100%);
  color: var(--navy-900);
  border-radius: var(--radius-lg);
  padding: 0;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .45), 0 0 0 1px rgba(20, 196, 165, .25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transform: rotate(-1.2deg);
  transition: transform .4s ease;
}
.quote-card:hover { transform: rotate(0deg) scale(1.01); }
.quote-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-mint);
}

.quote-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 24px 18px;
  border-bottom: 1px dashed var(--ink-200);
}
.quote-brand { display: flex; align-items: center; gap: 12px; }
.quote-brand img { width: 32px; height: 32px; }
.quote-brand strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  letter-spacing: -.01em;
  color: var(--navy-900);
}
.quote-brand span {
  color: var(--ink-500);
  font-size: .72rem;
  letter-spacing: .04em;
}
.quote-stamp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--teal-50);
  color: var(--teal-600);
  border: 1px solid var(--teal-100);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.quote-stamp svg { width: 13px; height: 13px; }

.quote-items {
  list-style: none;
  padding: 18px 24px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.quote-items li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  color: var(--navy-900);
  line-height: 1.4;
}
.quote-items li em {
  font-style: normal;
  color: var(--teal-600);
  font-weight: 600;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.q-ico {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--teal-500);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 10px -3px rgba(20, 196, 165, .5);
}
.q-ico svg { width: 12px; height: 12px; stroke-width: 3; }
.q-tag {
  margin-left: auto;
  background: var(--ink-50);
  color: var(--navy-700);
  border: 1px solid var(--ink-200);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 600;
}

.quote-foot {
  padding: 18px 24px 22px;
  border-top: 1px dashed var(--ink-200);
  background: var(--ink-50);
}
.quote-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: .88rem;
  color: var(--ink-500);
  padding: 4px 0;
}
.quote-row strong {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--navy-900);
  font-variant-numeric: tabular-nums;
  font-size: .98rem;
  letter-spacing: -.01em;
}
.quote-zero {
  color: var(--teal-600) !important;
  position: relative;
}
.quote-row--total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--ink-200);
}
.quote-row--total span {
  color: var(--navy-900);
  font-weight: 600;
  font-size: .92rem;
}
.quote-row--total strong {
  font-size: 1.05rem;
  background: var(--grad-mint);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.quote-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0 0;
  font-size: .78rem;
  color: var(--ink-500);
  padding-top: 12px;
  border-top: 1px dashed var(--ink-200);
}
.quote-note svg { width: 14px; height: 14px; color: var(--teal-600); flex-shrink: 0; }

@media (max-width: 1024px) {
  .usp-band { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .usp-band { padding: 32px 22px; }
  .cmp-grid { grid-template-columns: 1fr; }
  .usp-promises { grid-template-columns: 1fr; }
  .usp-actions { flex-direction: column; align-items: stretch; }
  .usp-actions .btn { justify-content: center; }
  .usp-expert { padding-left: 0; }
}

/* =========================================================
   v3 — RESPONSIVE SWEEP (mobile + tablet polish)
   Applied after all other responsive rules so it wins specificity.
   ========================================================= */

/* ---------- Mid-desktop (≤ 1180px) — keep nav from getting cramped ---------- */
@media (max-width: 1180px) {
  .nav-links { gap: 20px; }
  .nav-cta .desktop-only { display: none; }
  .brand-wordmark { font-size: 1.15rem; }
  .container { padding: 0 28px; }
}

/* ---------- Tablet portrait (≤ 960px) — switch to mobile nav earlier ---------- */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    inset-inline: 16px;
    background: var(--white);
    padding: 18px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    gap: 12px;
    margin-top: 8px;
  }
  .nav.open .nav-links a { color: var(--ink-700); }

  /* Hero — single col with tighter top spacing */
  .hero { padding-top: 110px; padding-bottom: 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-art { max-width: 560px; margin: 0 auto; }
  .hero-art .float-card { width: 200px; }
  .hero-art .float-card.fc-1 { top: -10px; left: -10px; }
  .hero-art .float-card.fc-2 { bottom: 14px; right: -10px; }
  .hero-art .float-card.fc-3 { display: none; }
  .hero-orbit .orbit { display: none; }

  /* Trust band — pull up less so it doesn't crash into hero */
  .trust-band { margin-top: -40px; }

  /* About — disable floating cards on tablet, append them below image as a stacked row */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-art { max-width: 560px; margin: 0 auto; width: 100%; position: relative; }
  .about-art-frame { aspect-ratio: 5/4; }
  .about-stat-card,
  .about-quote-card {
    position: static;
    margin: 16px 0 0;
    max-width: 100%;
    width: 100%;
  }

  /* Services bento */
  .services-bento { grid-template-columns: repeat(2, 1fr); }
  .svc-featured { grid-column: 1 / -1; grid-row: auto; }
  .svc-featured-art { height: 220px; }

  /* Workflow */
  .wf-path { display: none; }
  .wf-stations { grid-template-columns: repeat(2, 1fr); }

  /* Features — keep 2 columns at tablet (highlight on top) */
  .features-bento { grid-template-columns: repeat(2, 1fr); }
  .feat-col--highlight { grid-column: 1 / -1; order: -1; }
  .feat-col--highlight .feat-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  /* Compatibility — keep diagram horizontal but compact */
  .split { grid-template-columns: 1fr; gap: 48px; }
  .conn-diagram { flex-direction: row; padding: 18px 16px; gap: 8px; }
  .conn-wire { transform: none; flex: 0 0 80px; height: 50px; }
  .conn-node strong { font-size: .82rem; }
  .conn-node span { font-size: .7rem; }
  .conn-pill { font-size: .62rem; padding: 3px 6px; }

  /* USP band — copy + quote stack, kill tilt to avoid overflow */
  .usp-band { grid-template-columns: 1fr; padding: clamp(28px, 4vw, 44px); }
  .quote-card { transform: none; }
  .quote-card:hover { transform: none; }

  /* Case studies + Why us + testimonials + CTA — already 1fr or 2-col, ensure clean */
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .tm-bento { grid-template-columns: 1fr; grid-template-rows: auto; }
  .tm-featured { grid-column: 1; grid-row: auto; }
  .tm-featured blockquote { font-size: 1.15rem; }
  .cta-banner { grid-template-columns: 1fr; gap: 32px; }
  .cta-peek { max-width: 460px; margin: 0 auto; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }

  /* Footer */
  .footer-cta { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

/* ---------- Mobile (≤ 640px) — single-column, tighter density ---------- */
@media (max-width: 640px) {
  :root { --gutter: 18px; }
  section { padding: clamp(56px, 12vw, 80px) 0; }

  /* Type sizes scale down on smaller phones */
  h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.6rem, 6.5vw, 2.1rem); }

  /* Nav drawer */
  .nav { padding: 10px 0; }
  .brand-mark { height: 30px; }
  .brand-wordmark { font-size: 1.05rem; }
  .nav-cta .btn-primary { padding: 9px 14px; font-size: .82rem; }
  .nav-cta .btn-primary span { display: none; }
  .nav-cta .btn-primary i { width: 18px; height: 18px; }

  /* Hero */
  .hero { padding-top: 100px; padding-bottom: 48px; }
  .hero-grid { gap: 36px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn { justify-content: center; }
  .hero-meta { gap: 12px; }
  .hero-meta .meta { font-size: .82rem; }
  .hero-art .float-card { display: none; }
  .hero-art .frame { padding-top: 28px; }
  .frame-chrome { top: 10px; left: 14px; }
  .frame-chrome span { width: 8px; height: 8px; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-trust .hero-avatars { transform: scale(.9); transform-origin: left; }

  /* Trust band */
  .trust-band { margin-top: -32px; border-radius: 22px 22px 0 0; padding-top: 56px; }
  .trust-card { padding: 26px 20px; grid-template-columns: 1fr; gap: 28px; }
  .trust-head h3 { font-size: 1.25rem; }
  .trust-stats { grid-template-columns: 1fr 1fr; gap: 24px; }
  .t-divider { display: none; }
  .t-num { font-size: clamp(1.6rem, 8vw, 2.2rem); }
  .t-lbl br { display: none; }

  /* Section heads */
  .section-head { margin-bottom: 36px; }
  .section-head--split { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-head--split h2::after { margin-top: 12px; width: 48px; height: 3px; }

  /* About — image + 2 cards stacked */
  .about-art-frame { aspect-ratio: 4/5; max-width: 100%; }
  .about-stamp { font-size: .72rem; padding: 6px 12px 6px 9px; }
  .asc-num { font-size: 1.7rem; }
  .about-quote-card { padding: 18px 20px; }
  .about-points { gap: 14px; }
  .about-points li { grid-template-columns: 28px 1fr; gap: 12px; }
  .about-points .check { width: 28px; height: 28px; }
  .about-pills { gap: 8px; }
  .about-pills .pill { font-size: .8rem; padding: 7px 12px 7px 10px; }

  /* Services bento → 1 col */
  .services-bento { grid-template-columns: 1fr; }
  .svc-featured-art { height: 180px; }
  .svc-featured h3 { font-size: 1.25rem; }
  .svc-featured-body { padding: 24px 22px 26px; }
  .svc-card { padding: 22px 20px; }

  /* Workflow */
  .wf-stages {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
    padding: 8px 14px;
    gap: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .wf-stages > * { flex-shrink: 0; }
  .wf-stage-line { width: 14px; }
  .wf-stations { grid-template-columns: 1fr; gap: 18px; }
  .wf-station { padding: 24px 20px; }
  .wf-icon-wrap { width: 96px; height: 96px; margin-bottom: 16px; }
  .wf-outcome { padding: 18px 20px; flex-direction: column; align-items: flex-start; gap: 14px; }

  /* Features — 1 col on small mobile */
  .features-bento { grid-template-columns: 1fr; }
  .feat-col--highlight .feat-list { display: grid; grid-template-columns: 1fr; }
  .feat-col { padding: 24px 22px; }
  .feat-col-head { gap: 12px; }
  .feat-num { font-size: 1.7rem; }

  /* Compatibility — diagram stacks vertically again on small phones */
  .conn-diagram { flex-direction: column; gap: 14px; }
  .conn-wire { flex: 0 0 50px; width: 40px; height: 50px; transform: rotate(90deg); }

  /* USP band */
  .usp-section { padding: 56px 0; }
  .usp-band { padding: 28px 22px; gap: 28px; }
  .usp-copy h2 { font-size: clamp(2rem, 9vw, 2.6rem); }
  .usp-copy h2 br { display: inline; }
  .usp-copy .lead { font-size: .96rem; }
  .usp-promises { grid-template-columns: 1fr; gap: 10px; }
  .usp-actions { flex-direction: column; align-items: stretch; gap: 14px; }
  .usp-actions .btn { justify-content: center; }
  .usp-expert { padding-left: 0; }
  .quote-card { transform: none; }
  .quote-head { padding: 18px 20px 14px; flex-wrap: wrap; gap: 10px; }
  .quote-items { padding: 14px 20px; gap: 10px; }
  .quote-items li { font-size: .88rem; }
  .quote-foot { padding: 16px 20px 18px; }

  /* Case studies */
  .case-filters { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; gap: 6px; -webkit-overflow-scrolling: touch; }
  .case-filter { flex-shrink: 0; padding: 7px 12px 7px 10px; font-size: .8rem; }
  .cases-grid { grid-template-columns: 1fr; gap: 18px; }
  .case-headline { font-size: 1.7rem; bottom: 12px; right: 12px; }
  .case-body { padding: 18px 20px 22px; }
  .case-body h3 { font-size: 1.05rem; }

  /* Why us */
  .why { padding: 72px 0; }
  .why-grid-v2 { grid-template-columns: 1fr; gap: 14px; }
  .why-point { padding: 24px 22px; }
  .why-glow { width: 260px; height: 260px; }
  .usecase-callout { padding: 24px; flex-direction: column; align-items: flex-start; }
  .usecase-pills { justify-content: flex-start; max-width: 100%; }

  /* Testimonials */
  .tm-section { padding: 56px 0; }
  .tm-featured { padding: 28px 22px; }
  .tm-featured blockquote { font-size: 1rem; margin-bottom: 22px; }
  .tm-featured .tm-author { gap: 12px; }
  .avatar--lg { width: 48px; height: 48px; }
  .tm-stat-inline { margin-left: 0; border-left: 0; padding-left: 0; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.12); width: 100%; text-align: left; }
  .tm-card { padding: 22px 20px; }
  .tm-rating { padding: 8px 14px; flex-wrap: wrap; }
  .tm-logos { padding: 22px 0; }
  .tm-logos-row { gap: 18px; }
  .tm-logos-row span { font-size: .8rem; }

  /* CTA banner — kill tilt to prevent overflow */
  .cta-banner { padding: 28px 22px; gap: 24px; }
  .cta-copy h2 { font-size: 1.6rem; }
  .cta-peek-frame { transform: none; }
  .cta-peek:hover .cta-peek-frame { transform: scale(1.01); }
  .cta-bullets { flex-direction: column; gap: 10px; }

  /* Contact */
  .contact-section { padding: 56px 0; }
  .contact-side-card { padding: 26px 22px; }
  .contact-side-card h3 { font-size: 1.2rem; margin: 12px 0 18px; }
  .form { padding: 22px 20px; }
  .form .row { grid-template-columns: 1fr; gap: 12px; }
  .submit-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .submit-row .btn { justify-content: center; }

  /* Footer */
  .footer { padding-top: 40px; padding-bottom: 20px; }
  .footer-cta { padding: 24px 22px; gap: 18px; margin-bottom: 36px; }
  .footer-cta h3 { font-size: 1.15rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-input { flex-direction: column; align-items: stretch; padding: 8px; border-radius: var(--radius-lg); }
  .footer-input > svg, .footer-input > i { display: none; }
  .footer-input input { padding: 10px 14px; }
  .footer-input .btn { width: 100%; justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; text-align: left; }
  .socials a { width: 42px; height: 42px; }
}

/* ---------- Very small phones (≤ 380px) — final polish ---------- */
@media (max-width: 380px) {
  :root { --gutter: 14px; }
  .container { padding: 0 var(--gutter); }
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
  .hero { padding-top: 92px; }
  .btn { padding: 12px 18px; font-size: .9rem; }
  .nav-cta .btn-primary { padding: 8px 12px; }
  .brand-wordmark { font-size: 1rem; }
  .brand-mark { height: 28px; }
  .trust-card { padding: 22px 16px; }
  .trust-stats { grid-template-columns: 1fr; }
  .usp-copy h2 { font-size: 1.85rem; }
  .case-headline { font-size: 1.4rem; }
}

/* =========================================================
   WhatsApp floating button + form validation polish
   ========================================================= */

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 90;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow:
    0 10px 28px -6px rgba(37, 211, 102, .55),
    0 4px 12px -2px rgba(0, 0, 0, .18);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.whatsapp-fab:hover {
  transform: translateY(-3px) scale(1.05);
  background: #1FB855;
  box-shadow:
    0 16px 36px -8px rgba(37, 211, 102, .7),
    0 6px 16px -4px rgba(0, 0, 0, .22);
}
.whatsapp-fab:focus-visible {
  outline: 3px solid #25D366;
  outline-offset: 3px;
}
.whatsapp-glyph {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 2;
}
/* Pulsing ring underneath the icon for live attention */
.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  opacity: .6;
  animation: waPulse 2.4s ease-out infinite;
  z-index: 1;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .55; }
  70%  { transform: scale(1.5); opacity: 0;   }
  100% { transform: scale(1.5); opacity: 0;   }
}

/* Tooltip on hover (desktop) */
.whatsapp-tip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: var(--navy-900);
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: .82rem;
  white-space: nowrap;
  padding: 8px 12px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  box-shadow: 0 6px 18px -4px rgba(0, 0, 0, .35);
}
.whatsapp-tip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--navy-900);
}
.whatsapp-fab:hover .whatsapp-tip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Mobile: smaller and no tooltip */
@media (max-width: 640px) {
  .whatsapp-fab { width: 54px; height: 54px; right: 14px; bottom: 14px; }
  .whatsapp-glyph { width: 26px; height: 26px; }
  .whatsapp-tip { display: none; }
}

/* ---------- Form validation polish ---------- */
.field { position: relative; }
.req {
  color: #EF4444;
  font-weight: 700;
  margin-left: 2px;
}
.req-key {
  color: var(--ink-500);
  font-size: .78rem;
  margin-left: 8px;
}
.req-key .req { margin-right: 2px; }

.field-error {
  display: none;
  margin-top: 4px;
  color: #DC2626;
  font-size: .82rem;
  font-weight: 500;
}
.field.has-error .field-error { display: block; }
.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: #EF4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, .12);
}

/* Success banner — replaces the inline text-only version */
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(20, 196, 165, .12) 0%, rgba(20, 196, 165, .04) 100%);
  border: 1px solid rgba(20, 196, 165, .35);
  color: var(--teal-600);
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 500;
  align-items: center;
  gap: 12px;
  animation: successIn .35s cubic-bezier(.22,.9,.32,1);
}
.form-success.show { display: flex; }
.form-success-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-mint);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -4px rgba(20, 196, 165, .5);
}
.form-success-icon svg { width: 18px; height: 18px; }
.form-success > div { line-height: 1.4; }
.form-success strong {
  display: block;
  color: var(--navy-900);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
}
.form-success span {
  display: block;
  color: var(--ink-500);
  font-size: .85rem;
}
@keyframes successIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* Error banner — mirrors the success banner in a coral palette */
.form-error {
  display: none;
  margin-top: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(239, 68, 68, .12) 0%, rgba(239, 68, 68, .04) 100%);
  border: 1px solid rgba(239, 68, 68, .35);
  color: #DC2626;
  border-radius: var(--radius-md);
  font-size: .9rem;
  font-weight: 500;
  align-items: center;
  gap: 12px;
  animation: successIn .35s cubic-bezier(.22,.9,.32,1);
}
.form-error.show { display: flex; }
.form-error-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F87171 0%, #EF4444 100%);
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 14px -4px rgba(239, 68, 68, .5);
}
.form-error-icon svg { width: 18px; height: 18px; }
.form-error > div { line-height: 1.4; }
.form-error strong {
  display: block;
  color: var(--navy-900);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
}
.form-error span { display: block; color: var(--ink-500); font-size: .85rem; }
.form-error a {
  color: var(--teal-600);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(20, 196, 165, .35);
  text-underline-offset: 2px;
}

/* Submit button "sending" state */
.btn.is-sending {
  opacity: .85;
  cursor: progress;
  position: relative;
}
.btn.is-sending::after {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-right-color: transparent;
  margin-left: 8px;
  animation: btnSpin .7s linear infinite;
  display: inline-block;
  vertical-align: middle;
}
@keyframes btnSpin { to { transform: rotate(360deg); } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
