/* ═══════════════════════════════════════════════════════════════
   ELEVATE BIZ AI — style.css  v2.0
   World-class SaaS redesign. No Bootstrap. Token-driven.
   Inter font. Dark-first hero. Premium motion-ready.
═══════════════════════════════════════════════════════════════ */

/* ── 1. TOKENS ────────────────────────────────────────────────── */
:root {
  /* Brand */
  --purple:        #6B35A8;
  --purple-dark:   #3B1E6B;
  --purple-mid:    #9B59E0;
  --purple-light:  #C084FC;
  --purple-tint:   #F3EAFF;
  --purple-subtle: #FAF5FF;
  --pink:          #E879B8;
  --pink-dark:     #BE185D;
  --gold:          #F59E0B;

  /* Surfaces — Dark System */
  --bg-void:       #050508;
  --bg-dark:       #0A0910;
  --bg-dark-2:     #110F1C;
  --bg-dark-card:  #18152A;
  --bg-dark-glass: rgba(255,255,255,0.04);
  --border-dark:   rgba(255,255,255,0.08);
  --border-dark-2: rgba(255,255,255,0.12);

  /* Surfaces — Light System */
  --bg:            #FFFFFF;
  --bg-alt:        #F8F7FB;
  --bg-soft:       #F2EFF9;

  /* Ink */
  --ink:           #0E0B1A;
  --ink-2:         #5B5672;
  --ink-3:         #9B97B0;
  --ink-light:     #F0EDF8;
  --ink-light-2:   #9E97BA;
  --ink-light-3:   #6B6485;

  /* Lines */
  --border:        #E8E2F4;
  --border-2:      #D5CCEA;


  /* Status */
  --success:       #22C55E;
  --warning:       #F59E0B;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(107,53,168,.06);
  --shadow-sm: 0 2px 12px rgba(107,53,168,.09), 0 1px 4px rgba(107,53,168,.05);
  --shadow-md: 0 6px 28px rgba(107,53,168,.14), 0 2px 8px rgba(107,53,168,.07);
  --shadow-lg: 0 12px 48px rgba(107,53,168,.18), 0 4px 16px rgba(107,53,168,.09);
  --shadow-xl: 0 24px 80px rgba(107,53,168,.24), 0 8px 24px rgba(107,53,168,.12);
  --shadow-glow: 0 0 60px rgba(107,53,168,.35), 0 0 120px rgba(107,53,168,.15);

  /* Radius */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --r-3xl: 48px;
  --r-full: 9999px;

  /* Spacing */
  --sp-1: 8px;  --sp-2: 16px; --sp-3: 24px; --sp-4: 32px;
  --sp-5: 40px; --sp-6: 48px; --sp-8: 64px; --sp-10: 80px;
  --sp-12: 96px; --sp-16: 128px; --sp-20: 160px;

  /* Motion */
  --ease-out:    cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --ease-in-out: cubic-bezier(.4, 0, .2, 1);
  --dur-fast: 150ms;
  --dur-base: 280ms;
  --dur-slow: 500ms;

  /* Layout */
  --container-max: 1280px;
  --nav-h: 76px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ── 2. BASE ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 20px);
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg-void);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
body.is-loading { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
svg { display: block; }

:focus-visible {
  outline: 2px solid var(--purple-light);
  outline-offset: 3px;
  border-radius: var(--r-xs);
}

/* ── 3. UTILITY ───────────────────────────────────────────────── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -60px; left: var(--sp-2); z-index: 9999;
  padding: 14px 24px; background: var(--purple); color: #fff;
  border-radius: var(--r-md); font-weight: 700; font-size: 14px;
  transition: top var(--dur-fast) var(--ease-out);
}
.skip-link:focus { top: var(--sp-1); }

/* ── 4. LOADER ────────────────────────────────────────────────── */
.loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg-dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.loader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader__inner { display: flex; flex-direction: column; align-items: center; gap: var(--sp-4); }
.loader__logo { opacity: 0; transform: translateY(12px); transition: opacity 0.5s, transform 0.5s var(--ease-out); }
.loader__logo img { filter: brightness(0) invert(1); width: 160px; }
.loader.is-ready .loader__logo { opacity: 1; transform: none; }
.loader__bar {
  width: 200px; height: 2px; background: rgba(255,255,255,.1);
  border-radius: var(--r-full); overflow: hidden;
}
.loader__fill {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--purple-mid), var(--pink));
  width: 0; transition: width 0.8s var(--ease-out);
}
.loader.is-ready .loader__fill { width: 100%; }

/* ── 5. SCROLL PROGRESS ───────────────────────────────────────── */
.scroll-progress {
  position: fixed; inset: 0 0 auto 0; height: 2px; z-index: 2000;
  pointer-events: none;
}
.scroll-progress__bar {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--purple-mid), var(--pink), var(--purple-light));
  transform-origin: 0 50%; transform: scaleX(0);
}

/* ── 6. LAYOUT ────────────────────────────────────────────────── */
.container {
  width: 100%; max-width: var(--container-max);
  margin-inline: auto; padding-inline: 20px;
}
@media (min-width: 768px)  { .container { padding-inline: 40px; } }
@media (min-width: 1200px) { .container { padding-inline: 64px; } }

.section { padding-block: var(--sp-8); background: var(--bg); position: relative; }
@media (min-width: 768px) { .section { padding-block: var(--sp-10); } }
.section--alt  { background: var(--bg-alt); }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-dark); color: var(--ink-light); }

@media (min-width: 992px)  { .section { padding-block: var(--sp-12); } }
@media (min-width: 1440px) { .section { padding-block: var(--sp-16); } }

.section-head {
  max-width: 780px; margin-inline: auto;
  text-align: center; margin-bottom: var(--sp-8);
}
.section__heading {
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 800; letter-spacing: -.035em; line-height: 1.1;
  color: var(--ink); margin: 0 0 var(--sp-3);
  text-wrap: balance;
}
.section__heading--light { color: var(--ink-light); }
.section__lead { font-size: clamp(16px, 1.3vw, 18px); color: var(--ink-2); margin: 0; max-width: 64ch; margin-inline: auto; }
.section__lead--light { color: var(--ink-light-2); }
.section__cta-row { display: flex; justify-content: center; align-items: center; width: 100%; text-align: center; margin-top: var(--sp-8); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--purple); margin: 0 0 var(--sp-2);
}
.eyebrow--light  { color: var(--purple-light); }
.eyebrow--accent { color: var(--pink); }

/* ── 7. BUTTONS ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 30px; min-height: 48px;
  border-radius: var(--r-full); font-size: 15px; font-weight: 700;
  line-height: 1; white-space: nowrap; text-decoration: none;
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
  position: relative; overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--dur-fast);
}
.btn:hover::after { background: rgba(255,255,255,0.08); }
.btn:active { transform: scale(0.98) !important; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn--lg { padding: 16px 36px; min-height: 56px; font-size: 16px; }
.btn--lg svg { width: 18px; height: 18px; }

.btn--primary {
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--purple-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(107,53,168,.40), 0 1px 4px rgba(107,53,168,.2);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(107,53,168,.50), 0 2px 8px rgba(107,53,168,.25);
  color: #fff;
}

.btn--ghost {
  background: rgba(255,255,255,.06);
  color: var(--ink-light);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-1px);
  color: var(--ink-light);
}

/* Nav CTA */
.btn--nav-cta {
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
  color: #fff; padding: 10px 22px; min-height: 42px;
  font-size: 14px; border-radius: var(--r-full);
  box-shadow: 0 2px 12px rgba(107,53,168,.35);
}
.btn--nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(107,53,168,.50); color: #fff; }

/* ── 8. NAVIGATION ────────────────────────────────────────────── */
.site-nav {
  position: fixed; inset: 0 0 auto 0; z-index: 1000;
  height: var(--nav-h);
  background: transparent;
  transition: background var(--dur-slow) var(--ease-out),
              border-color var(--dur-slow) var(--ease-out),
              backdrop-filter var(--dur-slow);
  border-bottom: 1px solid transparent;
}
.site-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom-color: rgba(0,0,0,.08);
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}

.nav-inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 20px;
  height: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4);
}
@media (min-width: 768px)  { .nav-inner { padding-inline: 40px; } }
@media (min-width: 1200px) { .nav-inner { padding-inline: 64px; } }

.site-nav__brand { display: inline-flex; align-items: center; flex-shrink: 0; }

/* Logo: white (inverted) on dark hero, colored on white nav */
.site-nav__logo { max-width: 140px; height: auto; transition: max-width 0.3s; }
@media (min-width: 640px) { .site-nav__logo { max-width: 180px; } }
.site-nav__logo--dark  { display: none; }
.site-nav__logo--light { display: block; filter: brightness(0) invert(1); }
.site-nav.is-scrolled .site-nav__logo--light { filter: none; }

/* Links: white on dark hero, dark ink on white nav */
.site-nav__links {
  display: none; align-items: center; gap: 4px;
  flex: 1; justify-content: center;
}
.site-nav__link {
  font-size: 14px; font-weight: 600; padding: 8px 14px;
  color: rgba(255,255,255,0.75); border-radius: var(--r-sm);
  text-decoration: none; position: relative;
  transition: color var(--dur-fast), background var(--dur-fast);
}
.site-nav__link:hover { color: #fff; background: rgba(255,255,255,.08); }
.site-nav__link.is-active { color: var(--purple-light); }

/* On scroll (white nav): dark links */
.site-nav.is-scrolled .site-nav__link { color: var(--ink-2); }
.site-nav.is-scrolled .site-nav__link:hover { color: var(--ink); background: rgba(107,53,168,.06); }
.site-nav.is-scrolled .site-nav__link.is-active { color: var(--purple); }

/* Burger: white on dark hero, dark on white nav */
.site-nav.is-scrolled .nav-burger__line { background: var(--ink-2); }

.site-nav__actions { display: flex; align-items: center; gap: var(--sp-2); flex-shrink: 0; }
@media (max-width: 639px) { .site-nav__actions .btn { display: none; } }

@media (min-width: 1024px) {
  .site-nav__links { display: flex; }
  .nav-burger { display: none !important; }
}

/* Burger */
.nav-burger {
  width: 44px; height: 44px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 5px;
}
.nav-burger__line {
  width: 22px; height: 2px; border-radius: 2px;
  background: rgba(255,255,255,.80);
  transition: transform var(--dur-base) var(--ease-out),
              opacity var(--dur-fast), width var(--dur-base),
              background var(--dur-base);
}
.site-nav.is-scrolled .nav-burger__line { background: var(--ink-2); }
.nav-burger[aria-expanded="true"] .nav-burger__line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] .nav-burger__line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger[aria-expanded="true"] .nav-burger__line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Drawer */
.mobile-drawer {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 999;
  background: var(--bg-dark);
  border-top: 1px solid var(--border-dark);
  transform: translateY(-12px); opacity: 0; visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out),
              visibility 0s var(--dur-base);
  overflow-y: auto;
}
.mobile-drawer.is-open {
  transform: translateY(0); opacity: 1; visibility: visible;
  transition: opacity var(--dur-base) var(--ease-out),
              transform var(--dur-base) var(--ease-out);
}
.mobile-drawer__nav {
  display: flex; flex-direction: column; gap: 4px;
  padding: var(--sp-3) var(--sp-3) var(--sp-6);
}
.mobile-drawer__link {
  font-size: 18px; font-weight: 700; color: var(--ink-light);
  padding: 14px 16px; border-radius: var(--r-md);
  transition: background var(--dur-fast), color var(--dur-fast);
}
.mobile-drawer__link:hover { background: rgba(255,255,255,.06); color: #fff; }
.mobile-drawer__cta { margin-top: var(--sp-3); text-align: center; }

/* ── 9. HERO ──────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  min-height: 100svh; background: var(--bg-dark);
  display: flex; flex-direction: column;
  padding-top: var(--nav-h);
}

/* Background layers */
.hero__bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero__orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.55;
}
.hero__orb--1 {
  width: 700px; height: 700px; top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(107,53,168,.6) 0%, transparent 70%);
  animation: orb-drift-1 18s ease-in-out infinite;
}
.hero__orb--2 {
  width: 600px; height: 600px; top: 100px; right: -100px;
  background: radial-gradient(circle, rgba(232,121,184,.4) 0%, transparent 70%);
  animation: orb-drift-2 22s ease-in-out infinite;
}
.hero__orb--3 {
  width: 500px; height: 500px; bottom: -100px; left: 30%;
  background: radial-gradient(circle, rgba(107,53,168,.3) 0%, transparent 70%);
  animation: orb-drift-3 15s ease-in-out infinite;
}
.hero__grid {
  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: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 40%, rgba(0,0,0,0.4) 0%, transparent 70%);
}

@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(60px, -40px) scale(1.05); }
  66%       { transform: translate(-30px, 50px) scale(.95); }
}
@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(-50px, 60px) scale(1.1); }
}
@keyframes orb-drift-3 {
  0%, 100% { transform: translate(0, 0); }
  50%       { transform: translate(40px, -30px) scale(1.08); }
}

.hero__container {
  flex: 1; display: flex; flex-direction: column;
  max-width: var(--container-max); margin-inline: auto;
  width: 100%; padding-inline: 20px;
  padding-block: var(--sp-8) var(--sp-6);
  gap: var(--sp-8);
  position: relative; z-index: 1;
}
@media (min-width: 768px) { .hero__container { padding-inline: 40px; } }
@media (min-width: 1024px) {
  .hero__container {
    flex-direction: row; align-items: center;
    padding-inline: 64px; padding-block: var(--sp-10);
  }
}
@media (min-width: 1200px) {
  .hero__container { padding-block: var(--sp-12); }
}

.hero__copy {
  flex: 1; max-width: 600px;
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.hero__copy.is-visible { opacity: 1; transform: none; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--purple-light); margin: 0 0 var(--sp-3);
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 8px var(--purple-light);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }

.hero__heading {
  font-size: clamp(32px, 8vw, 70px);
  font-weight: 900; letter-spacing: -.04em; line-height: 1.0;
  color: #fff; margin: 0 0 var(--sp-4);
}
.hero__heading-line { display: block; }
.hero__heading-line--accent {
  background: linear-gradient(90deg, var(--purple-light), var(--pink));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(16px, 1.4vw, 19px); color: var(--ink-light-2);
  max-width: 50ch; margin: 0 0 var(--sp-5); line-height: 1.65;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-5); }
@media (max-width: 480px) { .hero__ctas .btn { width: 100%; justify-content: center; } }

.hero__proof {
  list-style: none; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px var(--sp-4);
  font-size: 13px; color: var(--ink-light-3);
}
.hero__proof li { display: flex; align-items: center; gap: 8px; }
.proof-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--success); flex-shrink: 0;
  box-shadow: 0 0 6px var(--success);
}

/* Hero visual / ecosystem */
.hero__visual {
  flex: 0 0 auto; width: 100%; max-width: 500px;
  margin-inline: auto; align-self: center;
  opacity: 0; transform: scale(0.92);
  transition: opacity 1s var(--ease-out) 0.3s, transform 1s var(--ease-out) 0.3s;
}
.hero__visual.is-visible { opacity: 1; transform: scale(1); }
@media (min-width: 1024px) { .hero__visual { width: 500px; margin-inline: 0 0 0 auto; align-self: center; } }
@media (min-width: 1200px) { .hero__visual { width: 520px; } }

/* Ecosystem diagram */
.ecosystem {
  position: relative;
  width: 100%; padding-top: 100%; /* square */
}
.ecosystem__ring {
  position: absolute; inset: 0; width: 100%; height: 100%;
  overflow: visible;
}
.ecosystem__orbit {
  fill: none;
  stroke-width: 1;
  stroke-dasharray: 6 4;
  animation: rotate-orbit 30s linear infinite;
  transform-origin: center;
}
.ecosystem__orbit--outer { stroke: rgba(107,53,168,.25); }
.ecosystem__orbit--mid   { stroke: rgba(107,53,168,.15); animation-duration: 45s; animation-direction: reverse; }
.ecosystem__orbit--inner { stroke: rgba(232,121,184,.2); animation-duration: 20s; }

@keyframes rotate-orbit { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.eco-line {
  stroke: rgba(107,53,168,.3); stroke-width: 1;
  stroke-dasharray: 120;
  stroke-dashoffset: 120;
  animation: draw-line 3s var(--ease-out) forwards;
}
.eco-line:nth-child(2) { animation-delay: .1s; }
.eco-line:nth-child(3) { animation-delay: .2s; }
.eco-line:nth-child(4) { animation-delay: .3s; }
.eco-line:nth-child(5) { animation-delay: .4s; }
.eco-line:nth-child(6) { animation-delay: .5s; }
.eco-line:nth-child(7) { animation-delay: .6s; }
.eco-line:nth-child(8) { animation-delay: .7s; }
.eco-line:nth-child(9) { animation-delay: .8s; }
@keyframes draw-line { to { stroke-dashoffset: 0; } }

/* Ecosystem core */
.ecosystem__core {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.ecosystem__core-pulse {
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1px solid rgba(107,53,168,.5);
  animation: pulse-ring 2.5s ease-out infinite;
}
.ecosystem__core-pulse--2 { animation-delay: 1.25s; }
@keyframes pulse-ring { 0%{transform:scale(.5);opacity:.8;} 100%{transform:scale(2);opacity:0;} }

.ecosystem__core-inner {
  position: relative; z-index: 2;
  width: 100px; height: 100px; border-radius: 50%;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(107,53,168,.6), 0 0 80px rgba(107,53,168,.3);
  text-align: center; color: #fff;
}
.ecosystem__core-inner svg { margin-bottom: 4px; }
.ecosystem__core-inner span { font-size: 10px; font-weight: 700; line-height: 1.2; letter-spacing: .05em; }

/* Outer orbit nodes */
.eco-node {
  position: absolute;
  width: 52px; height: 52px;
  top: calc(50% - 26px + (-1 * var(--orbit)) * cos(calc(var(--angle) - 90deg)));
  left: calc(50% - 26px + var(--orbit) * sin(calc(var(--angle) - 90deg)));
  background: var(--bg-dark-card);
  border: 1px solid rgba(107,53,168,.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light);
  box-shadow: 0 4px 20px rgba(0,0,0,.5), 0 0 0 4px rgba(107,53,168,.1);
  animation: node-float 4s ease-in-out infinite;
  cursor: default;
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base), border-color var(--dur-base);
}
.eco-node:hover {
  transform: scale(1.2) !important;
  box-shadow: 0 8px 32px rgba(107,53,168,.6), 0 0 0 6px rgba(107,53,168,.2);
  border-color: var(--purple-light);
}
.eco-node svg { width: 20px; height: 20px; }
.eco-node::after {
  content: attr(data-label);
  position: absolute; bottom: -24px; left: 50%;
  transform: translateX(-50%);
  font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink-light-3); white-space: nowrap;
  pointer-events: none;
}

/* Distribute nodes using inline --angle custom property with trig (modern CSS) */
/* Fallback: exact percentages without transform to avoid hover jump */
@supports not (top: calc(cos(0deg))) {
  .eco-node--0 { top: calc(8.33% - 26px); left: calc(50% - 26px); }
  .eco-node--1 { top: calc(20.53% - 26px); left: calc(79.46% - 26px); }
  .eco-node--2 { top: calc(50% - 26px); left: calc(91.66% - 26px); }
  .eco-node--3 { top: calc(79.46% - 26px); left: calc(79.46% - 26px); }
  .eco-node--4 { top: calc(91.66% - 26px); left: calc(50% - 26px); }
  .eco-node--5 { top: calc(79.46% - 26px); left: calc(20.53% - 26px); }
  .eco-node--6 { top: calc(50% - 26px); left: calc(8.33% - 26px); }
  .eco-node--7 { top: calc(20.53% - 26px); left: calc(20.53% - 26px); }
}

@keyframes node-float {
  0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,.5), 0 0 0 4px rgba(107,53,168,.1); }
  50% { box-shadow: 0 6px 28px rgba(107,53,168,.4), 0 0 0 6px rgba(107,53,168,.15); }
}
.eco-node--0 { animation-delay: 0s; }
.eco-node--1 { animation-delay: .5s; }
.eco-node--2 { animation-delay: 1s; }
.eco-node--3 { animation-delay: 1.5s; }
.eco-node--4 { animation-delay: 2s; }
.eco-node--5 { animation-delay: 2.5s; }
.eco-node--6 { animation-delay: 3s; }
.eco-node--7 { animation-delay: 3.5s; }

/* Data particles */
.data-particle {
  position: absolute;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--purple-light);
  box-shadow: 0 0 8px var(--purple-light);
  left: calc(var(--node-x) - 2.5px);
  top: calc(var(--node-y) - 2.5px);
  opacity: 0;
  animation: particle-travel 4s ease-in-out infinite var(--delay);
}
@keyframes particle-travel {
  0%   { transform: translate(0, 0); opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translate(calc(50% - var(--node-x)), calc(50% - var(--node-y))); opacity: 0.8; }
  60%  { opacity: 0; }
  100% { transform: translate(calc(50% - var(--node-x)), calc(50% - var(--node-y))); opacity: 0; }
}

/* Hero stats — full-width premium trust bar */
.hero__stats {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255,255,255,.04);
  border-top: 1px solid rgba(255,255,255,.07);
}
.hero-stat {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: var(--sp-5) var(--sp-4); text-align: center;
  position: relative;
}
.hero-stat:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,.08);
}
.hero-stat__num {
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 900;
  letter-spacing: -.04em; line-height: 1;
  background: linear-gradient(135deg, #fff, var(--purple-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat__label { font-size: clamp(12px, 1vw, 14px); color: var(--ink-light-3); letter-spacing: .02em; }
.hero-stat__divider { display: none; /* replaced by CSS ::after */ }

@media (max-width: 639px) {
  .hero__stats { grid-template-columns: repeat(2, 1fr); }
  .hero-stat:nth-child(2)::after { display: none; }
}

/* Scroll hint — visual only, no label */
.hero__scroll-hint {
  position: absolute; bottom: var(--sp-5); left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0;
  z-index: 1;
}
.scroll-line {
  width: 1px; height: 40px; background: rgba(255,255,255,.15);
  border-radius: var(--r-full); overflow: hidden;
}
.scroll-line__inner {
  display: block; width: 100%; height: 50%;
  background: linear-gradient(to bottom, var(--purple-light), transparent);
  animation: scroll-hint-move 2s ease-in-out infinite;
}
@keyframes scroll-hint-move { 0%{transform:translateY(-100%);} 100%{transform:translateY(200%);} }

/* ── 10. REVEAL ANIMATIONS ────────────────────────────────────── */
.reveal-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out) var(--delay, 0s),
              transform 0.7s var(--ease-out) var(--delay, 0s);
}
.reveal-up.is-visible { opacity: 1; transform: none; }
.reveal-fade {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out) var(--delay, 0s);
}
.reveal-fade.is-visible { opacity: 1; }
.no-js .reveal-up, .no-js .reveal-fade { opacity: 1; transform: none; }

/* ── 11. PROBLEM SECTION ──────────────────────────────────────── */
.problem__grid {
  display: grid; gap: var(--sp-3);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .problem__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .problem__grid { grid-template-columns: repeat(4, 1fr); } }

.problem-card {
  padding: var(--sp-4); border-radius: var(--r-xl);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base);
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--purple-tint);
}
.problem-card__icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--purple-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); margin-bottom: var(--sp-3);
  transition: transform var(--dur-base) var(--ease-spring),
              background var(--dur-base);
}
.problem-card:hover .problem-card__icon {
  transform: scale(1.08);
  background: var(--purple);
  color: #fff;
}
.problem-card__icon svg { width: 22px; height: 22px; }
.problem-card h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 0 0 8px; letter-spacing: -.015em; }
.problem-card p  { font-size: 14px; color: var(--ink-2); line-height: 1.6; margin: 0; }

/* ── 12. TRANSFORMATION ───────────────────────────────────────── */
.transformation__rows {
  display: flex; flex-direction: column; gap: var(--sp-3);
  max-width: 1000px; margin-inline: auto;
}
.transformation__row {
  display: grid; gap: var(--sp-3); align-items: center;
  padding: var(--sp-4); border-radius: var(--r-xl);
  background: var(--bg); border: 1px solid var(--border);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--dur-base);
}
.transformation__row:hover { box-shadow: var(--shadow-sm); }
.transformation__before p, .transformation__after p {
  margin: 8px 0 0; font-size: 15px; line-height: 1.55;
}
.transformation__before p { color: var(--ink-3); }
.transformation__after p  { color: var(--ink); font-weight: 500; }
.transformation__tag {
  display: inline-block;
  font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 12px; border-radius: var(--r-full);
}
.transformation__tag--before { background: var(--bg-soft); color: var(--ink-3); border: 1px solid var(--border); }
.transformation__tag--after  { background: var(--purple-tint); color: var(--purple); border: 1px solid rgba(107,53,168,.2); }
.transformation__arrow { display: none; color: var(--purple-mid); }
.transformation__arrow svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@media (min-width: 768px) {
  .transformation__row { grid-template-columns: 1fr auto 1fr; }
  .transformation__arrow { display: block; }
}

/* ── 13. PLATFORM SECTION ─────────────────────────────────────── */
.platform-viz {
  max-width: 1000px; margin-inline: auto;
  padding: var(--sp-4); border-radius: var(--r-2xl);
  background: var(--bg-soft);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
@media (min-width: 640px) { .platform-viz { padding: var(--sp-6); } }

.platform-hub {
  position: relative; margin: 0 auto var(--sp-6);
  width: fit-content;
  display: flex; align-items: center; justify-content: center;
}
.platform-hub__pulse {
  position: absolute;
  width: 120px; height: 120px; border-radius: 50%;
  border: 1px solid rgba(107,53,168,.3);
  animation: pulse-ring 2.8s ease-out infinite;
}
.platform-hub__pulse--2 { animation-delay: 1.4s; }
.platform-hub__core {
  position: relative; z-index: 1;
  padding: var(--sp-3) var(--sp-6);
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-dark));
  border-radius: var(--r-xl);
  text-align: center; color: #fff;
  box-shadow: var(--shadow-glow);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.platform-hub__label { font-weight: 800; font-size: 18px; letter-spacing: -.02em; }
.platform-hub__sub   { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }

.platform-nodes {
  display: grid; gap: var(--sp-2);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px)  { .platform-nodes { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .platform-nodes { grid-template-columns: repeat(4, 1fr); } }

.platform-node {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: var(--sp-2); border-radius: var(--r-lg);
  background: var(--bg); border: 1px solid var(--border);
  text-align: center; cursor: pointer;
  transition: transform var(--dur-base) var(--ease-spring),
              border-color var(--dur-base),
              box-shadow var(--dur-base),
              background var(--dur-base);
}
@media (min-width: 640px) { .platform-node { padding: var(--sp-3); gap: 10px; } }
.platform-node:hover, .platform-node.is-active {
  border-color: var(--purple);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}
.platform-node.is-active {
  background: var(--purple-subtle);
  border-color: rgba(107,53,168,.4);
}
.platform-node__icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--purple-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
  transition: background var(--dur-base), color var(--dur-base), transform var(--dur-base);
}
.platform-node:hover .platform-node__icon,
.platform-node.is-active .platform-node__icon {
  background: var(--purple); color: #fff; transform: scale(1.05);
}
.platform-node__icon svg { width: 22px; height: 22px; }
.platform-node__label { font-size: 13px; font-weight: 700; color: var(--ink); }
.platform-node.is-active .platform-node__label { color: var(--purple); }

.platform-detail {
  margin-top: var(--sp-4); padding: var(--sp-4);
  min-height: 100px;
  border-radius: var(--r-lg);
  background: var(--bg);
  border: 1px solid var(--border);
  text-align: center;
  transition: opacity var(--dur-base);
}
.platform-detail__default p { font-size: 14px; color: var(--ink-3); margin: 0; }
.platform-detail__text { font-size: 15px; color: var(--ink); margin: 0 0 var(--sp-2); font-weight: 500; }
.platform-detail__replaces { font-size: 13px; color: var(--ink-2); margin: 0; }
.platform-detail__replaces span:first-child { font-weight: 700; color: var(--purple); margin-right: 8px; }

/* ── 14. SOLUTIONS (DARK) ─────────────────────────────────────── */
.solutions { overflow: hidden; }
.solutions__glow {
  position: absolute; top: -30%; left: 50%; transform: translateX(-50%);
  width: 80%; height: 70%; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(107,53,168,.45) 0%, transparent 65%);
}

.solutions__grid {
  display: flex; flex-direction: column; gap: var(--sp-5); position: relative;
}
.solutions__group-label {
  font-size: 11px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--purple-light); margin: 0 0 var(--sp-3);
  display: flex; align-items: center; gap: 12px;
}
.solutions__group-label::after {
  content: ''; flex: 1; height: 1px; background: rgba(255,255,255,.08);
}
.solutions__cards { display: grid; gap: var(--sp-3); grid-template-columns: 1fr; }
@media (min-width: 768px) { .solutions__cards { grid-template-columns: repeat(2, 1fr); } }

.sol-card {
  position: relative; overflow: hidden;
  padding: var(--sp-5);
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-xl);
  transition: transform var(--dur-base) var(--ease-spring),
              border-color var(--dur-base),
              box-shadow var(--dur-base);
}
.sol-card:hover {
  transform: translateY(-4px);
  border-color: rgba(107,53,168,.4);
  box-shadow: 0 12px 40px rgba(0,0,0,.4), 0 0 0 1px rgba(107,53,168,.2);
}
.sol-card__icon {
  width: 64px; height: 64px; border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(107,53,168,.25), rgba(107,53,168,.1));
  border: 1px solid rgba(107,53,168,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light); margin-bottom: var(--sp-3);
  transition: transform var(--dur-base) var(--ease-spring),
              background var(--dur-base), border-color var(--dur-base);
}
.sol-card:hover .sol-card__icon {
  transform: scale(1.06);
  background: linear-gradient(135deg, rgba(107,53,168,.5), rgba(107,53,168,.25));
  border-color: rgba(107,53,168,.5);
}
.sol-card__icon svg { width: 28px; height: 28px; }
.sol-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin: 0 0 10px; letter-spacing: -.02em; }
.sol-card p  { font-size: 14px; color: var(--ink-light-2); line-height: 1.65; margin: 0; }

/* Glass shine effect */
.sol-card__shine {
  position: absolute; top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.04), transparent);
  transition: left 0.6s var(--ease-out);
  pointer-events: none;
}
.sol-card:hover .sol-card__shine { left: 150%; }

/* ── 15. AI WORKFORCE ─────────────────────────────────────────── */
.ai-workforce { background: var(--bg-alt); }

.ai-grid {
  display: grid; gap: var(--sp-4);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .ai-grid { grid-template-columns: repeat(3, 1fr); } }

.ai-card {
  position: relative; overflow: hidden;
  padding: var(--sp-5); border-radius: var(--r-xl);
  background: var(--bg); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base), border-color var(--dur-base);
}
.ai-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(107,53,168,.3);
}
.ai-card__top { display: flex; align-items: flex-start; gap: var(--sp-2); margin-bottom: var(--sp-3); }
.ai-card__avatar { flex-shrink: 0; }
.ai-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--bg-soft);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.ai-avatar__status {
  position: absolute; bottom: 2px; right: 2px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--success);
  border: 2px solid var(--bg);
  box-shadow: 0 0 6px var(--success);
  animation: status-pulse 2s ease-in-out infinite;
}
@keyframes status-pulse { 0%,100%{box-shadow:0 0 6px var(--success);} 50%{box-shadow:0 0 12px var(--success);} }

/* AI avatar — image variant (robot photos) */
.ai-avatar--img {
  background: transparent;
  border: 2px solid rgba(107,53,168,.25);
  border-radius: 16px !important;
  overflow: hidden;
  width: 80px !important;
  height: 80px !important;
}
.ai-avatar--img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
.ai-avatar--img .ai-avatar__status { bottom: 4px; right: 4px; }
.ai-card__role {
  font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: var(--purple); margin: 0 0 4px;
}
.ai-card__name { font-size: 20px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; margin: 0; }
.ai-card__body { font-size: 14px; color: var(--ink-2); line-height: 1.65; margin: 0 0 var(--sp-3); flex: 1; }
.ai-card__stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2); padding-top: var(--sp-3);
  border-top: 1px solid var(--border);
}
.ai-stat { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 2px; }
.ai-stat__num {
  font-size: 20px; font-weight: 900; color: var(--purple);
  letter-spacing: -.03em; line-height: 1;
}
.ai-stat__label { font-size: 10px; color: var(--ink-3); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.ai-card__shine {
  position: absolute; top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(107,53,168,.04), transparent);
  transition: left 0.7s var(--ease-out); pointer-events: none;
}
.ai-card:hover .ai-card__shine { left: 160%; }

/* ── 16. HOW IT WORKS ─────────────────────────────────────────── */
.how-steps {
  list-style: none; padding: 0;
  max-width: 680px; margin-inline: auto;
  display: flex; flex-direction: column; gap: 0;
}
.how-step {
  display: flex; gap: var(--sp-4); align-items: flex-start;
  padding-bottom: var(--sp-6); position: relative;
}
.how-step:last-child { padding-bottom: 0; }
.how-step__num {
  font-size: 13px; font-weight: 900; color: var(--purple);
  width: 60px; height: 60px; flex-shrink: 0; border-radius: 50%;
  background: var(--purple-tint); border: 2px solid rgba(107,53,168,.2);
  display: flex; align-items: center; justify-content: center;
  letter-spacing: .02em; position: relative; z-index: 1;
  transition: background var(--dur-base), transform var(--dur-base) var(--ease-spring);
}
.how-step:hover .how-step__num { background: var(--purple); color: #fff; transform: scale(1.05); }
.how-step__connector {
  position: absolute; left: 29px; top: 60px;
  width: 2px; height: calc(100% - 60px);
  background: linear-gradient(to bottom, rgba(107,53,168,.3), transparent);
}
.how-step__body { padding-top: 12px; }
.how-step__title { font-size: 20px; font-weight: 700; color: var(--ink); margin: 0 0 8px; letter-spacing: -.02em; }
.how-step__body p { font-size: 15px; color: var(--ink-2); margin: 0; max-width: 48ch; }

/* ── 17. WHY CHOOSE US ────────────────────────────────────────── */
.why-grid {
  display: grid; gap: var(--sp-3);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  padding: var(--sp-5); border-radius: var(--r-xl);
  background: var(--bg-soft); border: 1px solid var(--border);
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base), border-color var(--dur-base);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(107,53,168,.25); }
.why-card__icon {
  width: 56px; height: 56px; border-radius: var(--r-md);
  background: var(--purple-tint); border: 1px solid rgba(107,53,168,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple); margin-bottom: var(--sp-3);
  transition: transform var(--dur-base) var(--ease-spring), background var(--dur-base);
}
.why-card:hover .why-card__icon { transform: scale(1.08) rotate(-3deg); background: var(--purple); color: #fff; }
.why-card__icon svg { width: 22px; height: 22px; }
.why-card h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin: 0 0 8px; letter-spacing: -.015em; }
.why-card p  { font-size: 14px; color: var(--ink-2); line-height: 1.65; margin: 0; }

/* ── 18. TESTIMONIALS ─────────────────────────────────────────── */
/* Stats bar */
.stats-bar {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0; margin-bottom: var(--sp-8);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--r-2xl); overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stats-bar__item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: var(--sp-3) var(--sp-5); text-align: center; flex: 1; min-width: 140px;
}
.stats-bar__num {
  font-size: clamp(24px, 3vw, 36px); font-weight: 900;
  color: var(--purple); letter-spacing: -.04em; line-height: 1;
}
.stats-bar__label { font-size: 12px; color: var(--ink-3); max-width: 12ch; }
.stats-bar__divider { width: 1px; height: 60px; background: var(--border); flex-shrink: 0; }

.testimonials__grid {
  display: grid; gap: var(--sp-4);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) { .testimonials__grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  margin: 0; padding: var(--sp-5); border-radius: var(--r-xl);
  background: var(--bg); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: var(--sp-3);
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base), border-color var(--dur-base);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(107,53,168,.2); }
.testimonial-card__stars { display: flex; gap: 3px; color: var(--gold); }
.testimonial-card__stars svg { width: 16px; height: 16px; }
.testimonial-card blockquote { margin: 0; }
.testimonial-card blockquote p { font-size: 14px; color: var(--ink); line-height: 1.7; margin: 0; font-style: italic; }
.testimonial-card blockquote p::before { content: '\201C'; }
.testimonial-card blockquote p::after  { content: '\201D'; }
.testimonial-card figcaption {
  display: flex; align-items: center; gap: 12px;
  padding-top: var(--sp-3); border-top: 1px solid var(--border);
  margin-top: auto;
}
.testimonial-card__photo {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--purple-tint); flex-shrink: 0;
}
.testimonial-card figcaption div { display: flex; flex-direction: column; gap: 2px; }
.testimonial-card__name { font-size: 14px; font-weight: 700; color: var(--ink); }
.testimonial-card__biz  { font-size: 12px; color: var(--ink-3); }

/* ── 19. INDUSTRIES (DARK) ────────────────────────────────────── */
.industries { overflow: hidden; }
.industries__glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 70%; height: 60%; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, rgba(107,53,168,.35) 0%, transparent 65%);
}

.industries__grid {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
  justify-content: center;
}

.industry-tag {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px; border-radius: var(--r-full);
  background: var(--bg-dark-glass);
  border: 1px solid var(--border-dark);
  font-size: 14px; font-weight: 600; color: var(--ink-light-2);
  transition: transform var(--dur-base) var(--ease-spring),
              background var(--dur-base), border-color var(--dur-base),
              color var(--dur-base);
  cursor: default;
}
.industry-tag:hover {
  transform: translateY(-2px) scale(1.02);
  background: rgba(107,53,168,.15);
  border-color: rgba(107,53,168,.5);
  color: #fff;
}
.industry-tag svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--purple-light); }

.industries__note {
  margin-top: var(--sp-8); text-align: center;
  padding: var(--sp-6); border-radius: var(--r-2xl);
  background: rgba(255,255,255,.03); border: 1px solid var(--border-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.industries__note p { font-size: 16px; color: var(--ink-light-2); margin: 0 0 var(--sp-4); max-width: 56ch; margin-inline: auto; text-align: center; }

/* ── 20. FAQ ──────────────────────────────────────────────────── */
.faq__list {
  max-width: 780px; margin-inline: auto;
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.faq__item {
  border: 1px solid var(--border); border-radius: var(--r-xl);
  background: var(--bg); overflow: hidden;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.faq__item:focus-within, .faq__item:hover { border-color: rgba(107,53,168,.3); box-shadow: var(--shadow-xs); }
.faq__q { margin: 0; }
.faq__trigger {
  width: 100%; min-height: 60px;
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: transparent; cursor: pointer;
  font-size: 16px; font-weight: 700; color: var(--ink); text-align: left; line-height: 1.4;
  transition: color var(--dur-fast);
}
.faq__trigger:hover { color: var(--purple); }
.faq__chevron { flex-shrink: 0; color: var(--ink-3); transition: transform var(--dur-base) var(--ease-out); display: inline-flex; }
.faq__chevron svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.faq__trigger[aria-expanded="true"] { color: var(--purple); }
.faq__trigger[aria-expanded="true"] .faq__chevron { transform: rotate(180deg); color: var(--purple); }
.faq__a { padding: 0 var(--sp-4) var(--sp-4); }
.faq__a p { font-size: 15px; color: var(--ink-2); margin: 0; line-height: 1.75; max-width: 64ch; }

/* ── 21. BOOKING (DARK CLIMAX) ────────────────────────────────── */
.booking {
  background: var(--bg-dark); position: relative; overflow: hidden;
  padding-block: var(--sp-12) var(--sp-16);
}
.booking__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.booking__orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px);
}
.booking__orb--1 {
  width: 600px; height: 600px; top: -200px; left: -100px; opacity: .4;
  background: radial-gradient(circle, rgba(107,53,168,.7) 0%, transparent 70%);
}
.booking__orb--2 {
  width: 500px; height: 500px; bottom: -150px; right: -50px; opacity: .35;
  background: radial-gradient(circle, rgba(232,121,184,.5) 0%, transparent 70%);
  animation: orb-drift-2 18s ease-in-out infinite;
}
.booking__orb--3 {
  width: 400px; height: 400px; top: 50%; left: 50%; transform: translate(-50%,-50%); opacity: .25;
  background: radial-gradient(circle, rgba(107,53,168,.5) 0%, transparent 70%);
  animation: orb-drift-1 25s ease-in-out infinite;
}

.booking__inner {
  position: relative; z-index: 1;
  display: grid; gap: var(--sp-8);
}
@media (min-width: 1024px) {
  .booking__inner { grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); align-items: start; }
}

.booking__copy { }
.booking__points {
  list-style: none; padding: 0; margin: var(--sp-4) 0 var(--sp-5);
  display: flex; flex-direction: column; gap: 14px;
}
.booking__points li { display: flex; align-items: flex-start; gap: 14px; font-size: 15px; color: var(--ink-light-2); }
.booking__check-icon {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background: rgba(34,197,94,.15); border: 1px solid rgba(34,197,94,.4);
  display: flex; align-items: center; justify-content: center;
}
.booking__check-icon svg { width: 13px; height: 13px; color: var(--success); }
.booking__trust {
  display: flex; gap: var(--sp-3); flex-wrap: wrap;
}
.booking__trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-light-3); font-weight: 600;
}
.booking__trust-item svg { width: 16px; height: 16px; }

.booking__calendar-wrap { max-width: 100%; overflow: hidden; }
.booking__calendar-frame {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark-2);
  border-radius: var(--r-2xl);
  padding: var(--sp-2);
  box-shadow: var(--shadow-xl);
  display: block;
}
.booking__calendar-frame iframe { width: 100%; border: none; border-radius: var(--r-xl); display: block; }

.booking__calendar-placeholder {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: var(--sp-3); text-align: center;
  padding: var(--sp-6);
}
.booking__calendar-icon-wrap {
  width: 72px; height: 72px; border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(107,53,168,.3), rgba(107,53,168,.1));
  border: 1px solid rgba(107,53,168,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple-light);
}
.booking__calendar-title { font-size: 20px; font-weight: 800; color: #fff; margin: 0; }
.booking__calendar-sub   { font-size: 14px; color: var(--ink-light-3); margin: 0; }
.booking__calendar-note  { font-size: 12px; color: var(--ink-light-3); margin: 0; }

/* ── 22. FOOTER ───────────────────────────────────────────────── */
.site-footer { background: var(--bg-void); }

.footer-cta-strip {
  background: linear-gradient(135deg, var(--purple-dark), rgba(107,53,168,.8));
  border-top: 1px solid rgba(107,53,168,.3);
  border-bottom: 1px solid rgba(107,53,168,.3);
  padding: var(--sp-6) 0;
}
.footer-cta-strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--sp-4); flex-wrap: wrap;
}
.footer-cta-strip__heading { font-size: 22px; font-weight: 800; color: #fff; margin: 0 0 4px; }
.footer-cta-strip__sub { font-size: 15px; color: rgba(255,255,255,.7); margin: 0; }

.footer-main {
  display: grid; gap: var(--sp-8);
  padding-block: var(--sp-10);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
@media (min-width: 768px) { .footer-main { grid-template-columns: 1fr auto; } }

.footer-brand__tagline { font-size: 15px; color: rgba(255,255,255,.5); margin: var(--sp-2) 0 8px; }
.footer-brand__sub { font-size: 13px; color: rgba(255,255,255,.3); margin: 0; max-width: 28ch; }

.footer-nav {
  display: grid; gap: var(--sp-5);
  grid-template-columns: repeat(2, auto);
}
@media (min-width: 768px) { .footer-nav { grid-template-columns: repeat(4, auto); gap: var(--sp-8); } }

.footer-nav__col { display: flex; flex-direction: column; gap: 10px; }
.footer-nav__title {
  font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin: 0 0 6px;
}
.footer-nav__col a { font-size: 14px; color: rgba(255,255,255,.5); transition: color var(--dur-fast); }
.footer-nav__col a:hover { color: #fff; }

.footer-bottom {
  padding-block: var(--sp-4);
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.25); margin: 0; }

/* ── 23. PRICING SECTION ──────────────────────────────────────── */

/* Colors for pricing categories */
:root {
  --green:       #10B981;
  --green-dark:  #065F46;
  --green-mid:   #059669;
  --green-tint:  #ECFDF5;
  --blue:        #3B82F6;
  --blue-dark:   #1E3A8A;
  --blue-mid:    #2563EB;
  --blue-tint:   #EFF6FF;
}

.pricing-section { background: var(--bg-alt); }

/* Category block */
.pricing-category {
  background: var(--bg);
  border-radius: var(--r-2xl);
  border: 1px solid var(--border);
  padding: var(--sp-6);
  margin-bottom: var(--sp-6);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-base) var(--ease-out);
}
.pricing-category:hover { box-shadow: var(--shadow-md); }
.pricing-category--green { border-color: rgba(16,185,129,.2); background: linear-gradient(135deg, #fff 80%, rgba(16,185,129,.03) 100%); }
.pricing-category--blue  { border-color: rgba(59,130,246,.2); background: linear-gradient(135deg, #fff 80%, rgba(59,130,246,.03) 100%); }

/* Category header */
.pricing-category__header {
  display: flex; align-items: flex-start; gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}
.pricing-category__icon {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: var(--r-lg);
  background: var(--purple-tint);
  display: flex; align-items: center; justify-content: center;
  color: var(--purple);
}
.pricing-category__icon svg { width: 24px; height: 24px; }
.pricing-category__icon--green { background: var(--green-tint); color: var(--green); }
.pricing-category__icon--blue  { background: var(--blue-tint);  color: var(--blue); }

.pricing-category__title {
  font-size: clamp(20px, 2vw, 26px); font-weight: 800;
  color: var(--ink); margin: 0 0 6px; letter-spacing: -.02em;
}
.pricing-category__sub {
  font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.6;
}

/* Cards grid */
.pricing-cards {
  display: grid; gap: var(--sp-3);
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .pricing-cards { grid-template-columns: repeat(3, 1fr); } }

/* Individual card */
.pricing-card {
  border-radius: var(--r-xl);
  border: 1.5px solid var(--border);
  background: var(--bg);
  padding: var(--sp-4);
  display: flex; flex-direction: column;
  gap: var(--sp-3);
  position: relative;
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease-out),
              border-color var(--dur-base) var(--ease-out);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--purple-light);
}

/* Popular card highlight */
.pricing-card--popular {
  border-color: var(--purple);
  background: linear-gradient(145deg, var(--purple-subtle), #fff 60%);
  box-shadow: var(--shadow-md);
}
.pricing-card--popular:hover { border-color: var(--purple-mid); box-shadow: var(--shadow-xl); }

.pricing-card--popular-green {
  border-color: var(--green);
  background: linear-gradient(145deg, var(--green-tint), #fff 60%);
}
.pricing-card--popular-green:hover { border-color: var(--green-mid); }

.pricing-card--popular-blue {
  border-color: var(--blue);
  background: linear-gradient(145deg, var(--blue-tint), #fff 60%);
}
.pricing-card--popular-blue:hover { border-color: var(--blue-mid); }

/* Badge */
.pricing-card__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--purple);
  color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 14px; border-radius: var(--r-full);
  white-space: nowrap; box-shadow: 0 2px 12px rgba(107,53,168,.35);
}
.pricing-card__badge--green { background: var(--green); box-shadow: 0 2px 12px rgba(16,185,129,.35); }
.pricing-card__badge--blue  { background: var(--blue);  box-shadow: 0 2px 12px rgba(59,130,246,.35); }

/* Card top */
.pricing-card__top { flex: 0; }
.pricing-card__tier {
  font-size: 18px; font-weight: 800; color: var(--purple);
  margin: 0 0 2px; letter-spacing: -.01em;
}
.pricing-card--popular-green .pricing-card__tier { color: var(--green); }
.pricing-card--popular-blue  .pricing-card__tier { color: var(--blue); }

.pricing-card__tagline {
  font-size: 11px; font-weight: 600; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: .08em; margin: 0 0 var(--sp-2);
}

.pricing-card__price {
  display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px;
}
.pricing-card__currency { font-size: 20px; font-weight: 700; color: var(--ink); }
.pricing-card__amount { font-size: clamp(28px, 3vw, 38px); font-weight: 900; color: var(--ink); letter-spacing: -.04em; line-height: 1; }
.pricing-card__period { font-size: 13px; font-weight: 500; color: var(--ink-3); margin-left: 2px; }

.pricing-card__setup {
  font-size: 12px; color: var(--ink-3); margin: 0;
}

/* Features list */
.pricing-card__features {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
  border-top: 1px solid var(--border);
  padding-top: var(--sp-3);
}
.pricing-card__features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: var(--ink-2); line-height: 1.4;
}
.pricing-card__features li svg {
  width: 16px; height: 16px; flex-shrink: 0;
  stroke: var(--success); stroke-width: 2.5;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}

/* CTA Buttons for pricing cards */
.btn--pricing-primary {
  display: flex; align-items: center; justify-content: center;
  padding: 13px 24px; min-height: 46px;
  border-radius: var(--r-full); font-size: 14px; font-weight: 700;
  line-height: 1; white-space: nowrap; text-decoration: none;
  background: linear-gradient(135deg, var(--purple-mid) 0%, var(--purple-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(107,53,168,.35);
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease-out);
  margin-top: auto;
}
.btn--pricing-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(107,53,168,.50);
  color: #fff;
}
.btn--pricing-primary--green {
  background: linear-gradient(135deg, var(--green-mid), var(--green-dark));
  box-shadow: 0 4px 16px rgba(16,185,129,.30);
}
.btn--pricing-primary--green:hover { box-shadow: 0 8px 28px rgba(16,185,129,.45); }
.btn--pricing-primary--blue {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  box-shadow: 0 4px 16px rgba(59,130,246,.30);
}
.btn--pricing-primary--blue:hover { box-shadow: 0 8px 28px rgba(59,130,246,.45); }

.btn--pricing-outline {
  display: flex; align-items: center; justify-content: center;
  padding: 12px 24px; min-height: 46px;
  border-radius: var(--r-full); font-size: 14px; font-weight: 700;
  line-height: 1; white-space: nowrap; text-decoration: none;
  background: transparent;
  color: var(--purple);
  border: 1.5px solid var(--purple);
  transition: transform var(--dur-base) var(--ease-spring),
              box-shadow var(--dur-base) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
  margin-top: auto;
}
.btn--pricing-outline:hover {
  background: var(--purple-tint);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(107,53,168,.2);
  color: var(--purple);
}
.btn--pricing-outline--green { color: var(--green); border-color: var(--green); }
.btn--pricing-outline--green:hover { background: var(--green-tint); color: var(--green); box-shadow: 0 4px 16px rgba(16,185,129,.2); }
.btn--pricing-outline--blue  { color: var(--blue);  border-color: var(--blue); }
.btn--pricing-outline--blue:hover  { background: var(--blue-tint);  color: var(--blue); box-shadow: 0 4px 16px rgba(59,130,246,.2); }

/* Pricing footer */
.pricing-footer {
  display: flex; align-items: center; gap: var(--sp-3);
  flex-wrap: wrap;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-4) var(--sp-5);
  margin-top: var(--sp-6);
  box-shadow: var(--shadow-xs);
}
.pricing-footer__icon {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--r-md);
  background: var(--purple-tint); color: var(--purple);
  display: flex; align-items: center; justify-content: center;
}
.pricing-footer__icon svg { width: 20px; height: 20px; }
.pricing-footer p { flex: 1; font-size: 15px; color: var(--ink-2); margin: 0; min-width: 200px; }
.pricing-footer strong { color: var(--ink); }

@media (max-width: 639px) {
  .pricing-category { padding: var(--sp-4); }
  .pricing-category__header { flex-direction: column; }
  .pricing-footer { flex-direction: column; text-align: center; }
  .pricing-footer__icon { align-self: center; }
}

/* ── 24. REDUCED MOTION ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal-up, .reveal-fade { opacity: 1; transform: none; }
  .hero__copy { opacity: 1; transform: none; }
  .hero__visual { opacity: 1; transform: none; }
}

/* ── 25. MOBILE POLISH ────────────────────────────────────────── */
@media (max-width: 767px) {
  .hero__stats { padding: var(--sp-3) 12px; }
  .hero-stat { padding: var(--sp-2) var(--sp-3); }
  .hero-stat__divider { display: none; }
  .footer-cta-strip__inner { flex-direction: column; text-align: center; }
  .ecosystem { max-width: 380px; margin: 0 auto; }
  .platform-viz { padding: var(--sp-3); }
  .booking { padding-block: var(--sp-8); }
}

@media (min-width: 1440px) {
  .section { padding-block: var(--sp-20); }
}
