/* =========================================================
   KIRSCH TECHNOLOGIES — DESIGN SYSTEM
   Change the PRIMARY COLOUR and accent palettes below (:root).
   Everything else references these tokens.
   ========================================================= */

:root {
  /* Brand */
  --brand-700: #3a1fb8;
  --brand-600: #4f2fe0;   /* PRIMARY */
  --brand-500: #6d4dff;
  --brand-400: #8a72ff;
  --brand-300: #b3a4ff;
  --teal-500:  #00b3b0;
  --teal-400:  #16d6c8;
  --coral-500: #ff5a7a;
  --amber-500: #ffab2e;
  --pink-500:  #d64bff;
  --blue-500:  #2f7bff;

  /* Ink / surfaces */
  --ink-900: #0d0b26;
  --ink-800: #1a1740;
  --ink-700: #2c2a4d;
  --ink-500: #514f74;
  --ink-400: #6f6d90;
  --muted:   #6b6a86;
  --line:    #e9e7f5;
  --surface: #ffffff;
  --surface-2: #f6f4ff;
  --surface-3: #eef0ff;
  --cream:   #fbfaff;

  /* Gradients */
  --grad-brand: linear-gradient(120deg, #6d4dff 0%, #4f2fe0 48%, #00b3b0 100%);
  --grad-hero:  linear-gradient(150deg, #1a0f4d 0%, #3a1fb8 45%, #5b2fd6 72%, #0e2f6b 100%);
  --grad-cta:   linear-gradient(120deg, #4f2fe0 0%, #7b3ff0 55%, #00b3b0 120%);

  /* Type */
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Radii / shadow */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;
  --sh-1: 0 2px 8px rgba(26,15,77,.06);
  --sh-2: 0 14px 40px rgba(45,27,120,.10);
  --sh-3: 0 24px 70px rgba(45,27,120,.16);
  --sh-brand: 0 16px 40px rgba(79,47,224,.32);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(18px, 5vw, 40px);
  --sec-y: clamp(56px, 9vw, 116px);
}

/* Accent palettes: a=violet b=teal c=blue d=pink e=coral f=amber */
.accent-a { --acc: #6d4dff; --acc-2: #b3a4ff; --acc-grad: linear-gradient(135deg,#7b5cff,#4f2fe0); --acc-tint: #efe9ff; }
.accent-b { --acc: #00b3b0; --acc-2: #6ff0e2; --acc-grad: linear-gradient(135deg,#16d6c8,#00908f); --acc-tint: #e0fbf6; }
.accent-c { --acc: #2f7bff; --acc-2: #9cc2ff; --acc-grad: linear-gradient(135deg,#4f93ff,#1f5be0); --acc-tint: #e6efff; }
.accent-d { --acc: #d64bff; --acc-2: #f0aaff; --acc-grad: linear-gradient(135deg,#e263ff,#b028e6); --acc-tint: #fbe8ff; }
.accent-e { --acc: #ff5a7a; --acc-2: #ffb3c2; --acc-grad: linear-gradient(135deg,#ff6f8c,#e63a5f); --acc-tint: #ffe6ec; }
.accent-f { --acc: #ff9d1e; --acc-2: #ffd08a; --acc-grad: linear-gradient(135deg,#ffb347,#f5850c); --acc-tint: #fff0da; }

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink-800);
  background: var(--cream);
  line-height: 1.62;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; color: var(--ink-900); }
button { font-family: inherit; cursor: pointer; }
:focus-visible { outline: 3px solid var(--brand-500); outline-offset: 3px; border-radius: 6px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--sec-y); }
.section--tint { background: var(--surface-2); }
.section--dark { background: var(--ink-900); color: #cfcbe8; }
.section--flush-top { padding-top: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: .78rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brand-600);
  background: var(--surface-3); padding: 7px 14px; border-radius: var(--r-pill);
}
.eyebrow--light { color: #d8ccff; background: rgba(255,255,255,.12); }

.skip-link {
  position: absolute; left: 12px; top: -60px; background: var(--brand-600); color: #fff;
  padding: 10px 16px; border-radius: 10px; z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  --btn-py: 13px; --btn-px: 24px;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-head); font-weight: 600; font-size: .98rem;
  padding: var(--btn-py) var(--btn-px); border-radius: var(--r-pill);
  border: 1.5px solid transparent; transition: transform .18s ease, box-shadow .25s ease, background .25s;
  will-change: transform; text-align: center; line-height: 1.1;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn__arrow { display: inline-flex; transition: transform .2s; }
.btn:hover .btn__arrow { transform: translateX(4px); }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: var(--sh-brand); }
.btn--primary:hover { box-shadow: 0 20px 46px rgba(79,47,224,.42); }
.btn--secondary { background: var(--ink-900); color: #fff; }
.btn--secondary:hover { background: var(--ink-800); }
.btn--ghost { background: transparent; color: var(--ink-900); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--brand-400); color: var(--brand-600); }
.btn--light { background: #fff; color: var(--brand-700); }
.btn--light:hover { box-shadow: var(--sh-2); }
.btn--outline-light { background: rgba(255,255,255,.16); color:#fff; border-color: rgba(255,255,255,.6); }
.btn--outline-light:hover { background: rgba(255,255,255,.26); }
.btn--sm { --btn-py: 10px; --btn-px: 18px; font-size: .9rem; }
.btn--lg { --btn-py: 16px; --btn-px: 30px; font-size: 1.05rem; }
.btn--block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(233,231,245,.7); transition: box-shadow .25s;
}
.site-header.is-scrolled { box-shadow: var(--sh-1); }
.site-header__inner { display: flex; align-items: center; gap: 18px; min-height: 72px; }
.logo { display: inline-flex; align-items: center; gap: 11px; }
.logo__mark { border-radius: 11px; box-shadow: var(--sh-brand); flex: none; }
.logo__text { display: flex; flex-direction: column; line-height: 1; }
.logo__name { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: var(--ink-900); letter-spacing: -.02em; }
.logo__sub { font-size: .66rem; letter-spacing: .22em; text-transform: uppercase; color: var(--brand-500); font-weight: 600; margin-top: 2px; }

.site-header__inner { flex-wrap: nowrap; }
.nav-desktop { display: none; margin: 0 auto; }
.nav-desktop ul { display: flex; flex-wrap: nowrap; gap: 2px; }
.nav-desktop a {
  display: inline-block; padding: 8px 11px; border-radius: 10px; font-weight: 500;
  font-size: .9rem; color: var(--ink-700); position: relative; white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-desktop a:hover { color: var(--brand-600); background: var(--surface-3); }
.nav-desktop a[aria-current="page"] { color: var(--brand-600); }
.site-header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex: none; }
.footer__phone, .mobile-nav__call { white-space: nowrap; }
.call-chip { white-space: nowrap; }
.site-header__actions .btn--sm { display: none; white-space: nowrap; }
.logo { flex: none; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; color: var(--ink-900);
}
.nav-toggle:hover { border-color: var(--brand-400); color: var(--brand-600); }
.nav-toggle__close { display: none; }
#nav-toggle[aria-expanded="true"] .nav-toggle__open { display: none; }
#nav-toggle[aria-expanded="true"] .nav-toggle__close { display: block; }

.mobile-nav {
  border-top: 1px solid var(--line); background: #fff;
  padding: 14px var(--gutter) 22px; animation: dropIn .25s ease;
}
@keyframes dropIn { from { opacity:0; transform: translateY(-8px);} to {opacity:1; transform:none;} }
.mobile-nav ul { display: flex; flex-direction: column; }
.mobile-nav a { display: block; padding: 14px 6px; font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; border-bottom: 1px solid var(--line); }
.mobile-nav a:hover { color: var(--brand-600); }
.mobile-nav__foot { margin-top: 18px; display: flex; flex-direction: column; gap: 14px; }
.mobile-nav__call { display: inline-flex; align-items: center; gap: 9px; justify-content: center; font-weight: 600; color: var(--brand-700); }

/* ---------- Section head ---------- */
.section-head { max-width: 720px; margin-bottom: clamp(30px, 5vw, 52px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head__title { font-size: clamp(1.85rem, 5.2vw, 3rem); margin-top: 16px; }
.section-head__intro { margin-top: 16px; font-size: 1.08rem; color: var(--muted); }
.section-head--light .section-head__title { color: #fff; }
.section-head--light .section-head__intro { color: #b9b4e0; }

/* ---------- HERO ---------- */
.hero { position: relative; background: var(--grad-hero); color: #fff; overflow: hidden; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(560px 460px at 82% 8%, rgba(0,179,176,.42), transparent 60%),
    radial-gradient(520px 420px at 8% 92%, rgba(214,75,255,.34), transparent 62%);
}
.hero__grid-lines { position: absolute; inset: 0; z-index: -1; opacity: .5; }
.hero__inner { display: grid; gap: 40px; padding-block: clamp(52px, 10vw, 96px); align-items: center; }
.hero__eyebrow { background: rgba(255,255,255,.12); color: #d8ccff; }
.hero h1 { color: #fff; font-size: clamp(2.3rem, 8.4vw, 4.1rem); font-weight: 800; letter-spacing: -.03em; }
.hero h1 .grad-word { background: linear-gradient(100deg,#8affe6,#7b9bff 60%,#d6a8ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__lead { margin-top: 20px; font-size: clamp(1.05rem, 2.6vw, 1.24rem); color: #cfc9ee; max-width: 560px; }
.hero__cta { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 14px; }
.hero__trust { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: .9rem; color: #b7b1dd; }
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust svg { color: var(--teal-400); }
.hero__visual { position: relative; }
.hero__visual img, .hero__visual svg { width: 100%; height: auto; filter: drop-shadow(0 30px 60px rgba(0,0,0,.35)); }
/* Inline SVG scenes always fill their container */
.hero-scene, .eco-flow { width: 100%; height: auto; display: block; }
.eco-flow { max-width: 1000px; margin-inline: auto; }

/* ---------- Ecosystem diagram section ---------- */
.eco { position: relative; overflow: hidden; }
.eco__diagram { width: 100%; height: auto; }
.eco__legend { display: grid; gap: 14px; margin-top: 34px; }
.eco-node {
  display: flex; gap: 14px; align-items: flex-start; padding: 18px 20px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-1);
}
.eco-node__dot { width: 12px; height: 12px; border-radius: 50%; margin-top: 7px; flex: none; background: var(--acc, var(--brand-500)); }
.eco-node h3 { font-size: 1.05rem; }
.eco-node p { font-size: .95rem; color: var(--muted); margin-top: 3px; }

/* ---------- Growth paths (split cards) ---------- */
.paths { display: grid; gap: 22px; }
.path-card {
  position: relative; overflow: hidden; border-radius: var(--r-lg); padding: 32px 28px;
  color: #fff; min-height: 300px; display: flex; flex-direction: column; box-shadow: var(--sh-2);
  transition: transform .28s ease, box-shadow .28s ease;
}
.path-card:hover { transform: translateY(-6px); box-shadow: var(--sh-3); }
.path-card::after { content:""; position:absolute; inset:0; background: var(--acc-grad); z-index:-2; }
.path-card::before {
  content:""; position:absolute; right:-40px; top:-40px; width: 220px; height: 220px; z-index:-1;
  background: radial-gradient(circle, rgba(255,255,255,.28), transparent 70%);
}
.path-card__icon { width: 54px; height: 54px; border-radius: 15px; background: rgba(255,255,255,.18); display: grid; place-items: center; margin-bottom: 18px; }
.path-card h3 { color: #fff; font-size: 1.5rem; }
.path-card__aud { font-size: .8rem; text-transform: uppercase; letter-spacing: .14em; opacity: .82; margin-bottom: 6px; }
.path-card p { color: rgba(255,255,255,.92); margin-top: 10px; font-size: 1rem; }
.path-card ul { margin-top: 16px; display: grid; gap: 9px; }
.path-card li { display: flex; gap: 9px; align-items: flex-start; font-size: .95rem; }
.path-card li svg { flex: none; margin-top: 3px; }
.path-card__link { margin-top: auto; padding-top: 20px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-head); font-weight: 600; }
.path-card__link svg { transition: transform .2s; }
.path-card:hover .path-card__link svg { transform: translateX(4px); }

/* ---------- Solution cards grid ---------- */
.sol-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.sol-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 26px 24px 24px; box-shadow: var(--sh-1); overflow: hidden;
  transition: transform .26s ease, box-shadow .26s ease, border-color .26s;
}
.sol-card::before { content:""; position:absolute; inset:0 0 auto 0; height: 4px; background: var(--acc-grad); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.sol-card:hover, .sol-card:focus { transform: translateY(-6px); box-shadow: var(--sh-3); border-color: transparent; }
.sol-card:hover::before, .sol-card:focus::before { transform: scaleX(1); }
.sol-card__icon { width: 52px; height: 52px; border-radius: 15px; background: var(--acc-tint); color: var(--acc); display: grid; place-items: center; margin-bottom: 18px; transition: transform .26s; }
.sol-card:hover .sol-card__icon { transform: scale(1.08) rotate(-4deg); }
.sol-card__title { font-size: 1.22rem; }
.sol-card__blurb { margin-top: 9px; color: var(--muted); font-size: .97rem; }
.sol-card__problem { margin-top: 14px; font-size: .86rem; color: var(--ink-500); padding-top: 13px; border-top: 1px dashed var(--line); }
.sol-card__problem span { color: var(--acc); font-weight: 600; }
.sol-card__link { margin-top: 16px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 600; font-size: .9rem; color: var(--acc); }
.sol-card__link svg { transition: transform .2s; }
.sol-card:hover .sol-card__link svg { transform: translateX(4px); }

/* ---------- Value tiles ---------- */
.value-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
.value-tile { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px 24px; box-shadow: var(--sh-1); transition: transform .24s, box-shadow .24s; }
.value-tile:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.value-tile__icon { width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; color:#fff; background: var(--acc-grad); margin-bottom: 16px; }
.value-tile__title { font-size: 1.15rem; }
.value-tile__text { margin-top: 8px; color: var(--muted); font-size: .96rem; }

/* ---------- Industry cards ---------- */
.ind-grid { display: grid; gap: 16px; grid-template-columns: 1fr; }
.ind-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px 22px; box-shadow: var(--sh-1); overflow: hidden; transition: transform .24s, box-shadow .24s; }
.ind-card:hover { transform: translateY(-5px); box-shadow: var(--sh-2); }
.ind-card__icon { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--acc-tint); color: var(--acc); margin-bottom: 14px; }
.ind-card__title { font-size: 1.12rem; }
.ind-card__text { margin-top: 8px; color: var(--muted); font-size: .93rem; }

/* ---------- Flow (how it works) ---------- */
.flow-wrap { display: grid; gap: 20px; }
.flow { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 24px; box-shadow: var(--sh-1); }
.flow__title { display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--acc); margin-bottom: 18px; }
.flow__list { display: grid; gap: 12px; }
.flow__step { display: flex; align-items: center; gap: 14px; position: relative; }
.flow__num { width: 38px; height: 38px; flex: none; border-radius: 12px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #fff; background: var(--acc-grad); }
.flow__label { font-weight: 600; color: var(--ink-800); }

/* ---------- Stats ---------- */
.stat-row { display: grid; gap: 18px; grid-template-columns: repeat(2, 1fr); }
.stat { text-align: center; padding: 22px 14px; background: #fff; border-radius: var(--r-md); border: 1px solid var(--line); box-shadow: var(--sh-1); }
.stat__value { display: block; font-family: var(--font-head); font-weight: 800; font-size: clamp(1.7rem, 6vw, 2.4rem); background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat__label { display: block; margin-top: 6px; font-size: .88rem; color: var(--muted); }

/* ---------- Split feature ---------- */
.split { display: grid; gap: 34px; align-items: center; }
.split__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-2); }
.split__media img, .split__media svg { width: 100%; height: 100%; object-fit: cover; }
.split__body h2 { font-size: clamp(1.7rem, 5vw, 2.6rem); }
.split__body p { margin-top: 16px; color: var(--muted); font-size: 1.04rem; }
.check-list { margin-top: 22px; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list__ico { flex: none; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; color: #fff; background: var(--grad-brand); margin-top: 1px; }
.check-list strong { display: block; font-family: var(--font-head); font-size: 1rem; }
.check-list span.ct { color: var(--muted); font-size: .94rem; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band--gradient { background: var(--grad-cta); color: #fff; }
.cta-band--gradient::before { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 85% 20%, rgba(255,255,255,.18), transparent 60%); }
.cta-band--dark { background: var(--ink-900); color: #fff; }
.cta-band__inner { position: relative; padding-block: clamp(44px, 7vw, 80px); display: grid; gap: 26px; align-items: center; }
.cta-band__text h2 { color: #fff; font-size: clamp(1.7rem, 5vw, 2.7rem); }
.cta-band__text p { margin-top: 12px; color: rgba(255,255,255,.9); font-size: 1.06rem; max-width: 620px; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Three-pathway CTA */
.path-cta { display: grid; gap: 16px; margin-top: 8px; }
.path-cta a {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.22);
  padding: 20px 22px; border-radius: var(--r-md); color: #fff; font-family: var(--font-head);
  font-weight: 600; font-size: 1.08rem; transition: background .2s, transform .2s;
}
.path-cta a:hover { background: rgba(255,255,255,.2); transform: translateX(4px); }
.path-cta a svg { flex: none; }

/* ---------- Forms ---------- */
.lead-form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(24px, 4vw, 38px); box-shadow: var(--sh-2); }
.lead-form__title { font-size: 1.5rem; }
.lead-form__intro { margin-top: 8px; color: var(--muted); }
.lead-form__grid { margin-top: 22px; display: grid; gap: 16px; grid-template-columns: 1fr; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .88rem; font-weight: 600; color: var(--ink-700); font-family: var(--font-head); }
.field__opt { color: var(--ink-400); font-weight: 400; }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink-900);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; background: var(--cream);
  transition: border-color .2s, box-shadow .2s, background .2s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand-500); background: #fff; box-shadow: 0 0 0 4px rgba(109,77,255,.14);
}
.field textarea { resize: vertical; min-height: 110px; }
.field--invalid input, .field--invalid select, .field--invalid textarea { border-color: var(--coral-500); box-shadow: 0 0 0 4px rgba(255,90,122,.12); }
.field__error { font-size: .88rem; font-weight: 500; color: var(--coral-500); min-height: 0; }
.field__req { color: var(--coral-500); margin-left: 2px; }
.lead-form__legend { font-size: .82rem; color: var(--ink-400); margin-top: 6px; }
.field--invalid .field__error { min-height: 1em; }
.field--hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.lead-form .btn { margin-top: 22px; }
.lead-form__note { margin-top: 14px; font-size: .82rem; color: var(--ink-400); text-align: center; }
.lead-form__status { margin-top: 18px; padding: 16px 18px; border-radius: 14px; font-weight: 500; }
.lead-form__status.is-success { background: #e6fbf3; color: #06795a; border: 1px solid #b7f0d8; }
.lead-form__status.is-error { background: #fff0f2; color: #c22a45; border: 1px solid #ffd0d8; }

/* ---------- Page header (interior pages) ---------- */
.page-hero { position: relative; background: var(--grad-hero); color: #fff; overflow: hidden; isolation: isolate; }
.page-hero::before { content:""; position:absolute; inset:0; z-index:-1; background: radial-gradient(520px 380px at 88% 0%, rgba(0,179,176,.4), transparent 60%), radial-gradient(460px 340px at 0% 100%, rgba(214,75,255,.3), transparent 62%); }
.page-hero__inner { padding-block: clamp(52px, 8vw, 92px); display: grid; gap: 34px; align-items: center; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 6.5vw, 3.4rem); font-weight: 800; }
.page-hero__lead { margin-top: 18px; color: #cfc9ee; font-size: clamp(1.05rem, 2.4vw, 1.2rem); max-width: 560px; }
.page-hero__cta { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 14px; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: .84rem; color: #b7b1dd; margin-bottom: 18px; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Journey line (audience pages) ---------- */
.journey { display: grid; gap: 14px; }
.journey__step { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px 22px 22px 66px; box-shadow: var(--sh-1); }
.journey__step::before { content: attr(data-step); position: absolute; left: 18px; top: 20px; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; color: #fff; background: var(--grad-brand); }
.journey__step h3 { font-size: 1.1rem; }
.journey__step p { margin-top: 6px; color: var(--muted); font-size: .95rem; }

/* ---------- Map / contact ---------- */
.contact-grid { display: grid; gap: 30px; }
.contact-info { display: grid; gap: 16px; }
.contact-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 22px; box-shadow: var(--sh-1); display: flex; gap: 15px; }
.contact-card__ico { width: 46px; height: 46px; flex: none; border-radius: 13px; display: grid; place-items: center; color: #fff; background: var(--grad-brand); }
.contact-card h3 { font-size: 1.05rem; }
.contact-card p, .contact-card address { margin-top: 5px; color: var(--muted); font-size: .95rem; font-style: normal; line-height: 1.55; }
.contact-card a { color: var(--brand-600); font-weight: 600; }
.map-embed { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-2); border: 1px solid var(--line); }
.map-embed iframe { display: block; width: 100%; height: 340px; border: 0; }

.call-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--surface-3); color: var(--brand-700); font-weight: 600; padding: 10px 16px; border-radius: var(--r-pill); }
.call-chip--light { background: rgba(255,255,255,.14); color: #fff; }

/* ---------- Marquee-style trust / logos placeholder ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { background: #fff; border: 1px solid var(--line); border-radius: var(--r-pill); padding: 8px 16px; font-size: .88rem; font-weight: 500; color: var(--ink-700); box-shadow: var(--sh-1); }

/* ---------- FAQ accordion ---------- */
.faq-wrap { max-width: 820px; margin-inline: auto; }
.faq { display: grid; gap: 14px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-1); overflow: hidden; transition: box-shadow .2s, border-color .2s; }
.faq__item[open] { box-shadow: var(--sh-2); border-color: var(--brand-300); }
.faq__q { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 22px; font-family: var(--font-head); font-weight: 600; font-size: 1.06rem; color: var(--ink-900); }
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--brand-600); }
.faq__mark { flex: none; width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; background: var(--surface-3); color: var(--brand-600); transform: rotate(90deg); transition: transform .25s; }
.faq__item[open] .faq__mark { transform: rotate(-90deg); }
.faq__a { padding: 0 22px 20px; color: var(--muted); font-size: 1rem; }
.faq__a p { max-width: 68ch; }

/* ---------- Prose (legal pages) ---------- */
.prose { max-width: 760px; }
.prose h2 { font-size: 1.5rem; margin-top: 40px; }
.prose h3 { font-size: 1.15rem; margin-top: 26px; }
.prose p, .prose li { color: var(--ink-700); margin-top: 12px; }
.prose ul { margin-top: 12px; display: grid; gap: 8px; padding-left: 20px; list-style: disc; }
.prose a { color: var(--brand-600); text-decoration: underline; }

/* ---------- 404 ---------- */
.notfound { min-height: 62vh; display: grid; place-items: center; text-align: center; }
.notfound__code { font-family: var(--font-head); font-weight: 800; font-size: clamp(5rem, 22vw, 11rem); line-height: 1; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Background decorations ---------- */
.bg-blob { position: absolute; z-index: -1; filter: blur(10px); opacity: .5; pointer-events: none; }
.section-rel { position: relative; overflow: hidden; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: #b9b5d6; }
.site-footer__grid { display: grid; gap: 36px 40px; padding-block: clamp(48px, 7vw, 76px); grid-template-columns: 1fr; }
.footer__brand { max-width: 380px; }
.site-footer .logo__name { color: #fff; }
.site-footer .logo__sub { color: var(--brand-300); }
.site-footer .logo__mark { box-shadow: none; }
.footer__tagline { margin-top: 16px; font-family: var(--font-head); font-weight: 600; color: #fff; font-size: 1.02rem; }
.footer__desc { margin-top: 10px; font-size: .92rem; color: #948fbb; line-height: 1.65; }
.footer__social { margin-top: 20px; display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #d5d1ef; transition: background .2s, color .2s; }
.footer__social a:hover { background: var(--brand-600); color: #fff; }
.footer__col h4 { color: #fff; font-family: var(--font-head); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 16px; }
.footer__col ul { display: grid; gap: 11px; }
.footer__col a { color: #b3aed4; font-size: .94rem; transition: color .2s, padding-left .2s; }
.footer__col a:hover { color: #fff; padding-left: 3px; }
.footer__contact address { font-style: normal; font-size: .92rem; line-height: 1.7; color: #b3aed4; }
.footer__contact address strong { color: #fff; }
.footer__phone { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; color: #fff; font-weight: 600; }
.footer__phone svg { color: var(--brand-300); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); }
.footer__bar-inner { display: flex; flex-direction: column; gap: 12px; padding-block: 22px; font-size: .85rem; color: #837fa6; text-align: center; }
.footer__legal { display: flex; gap: 20px; justify-content: center; }
.footer__legal a { color: #b3aed4; }
.footer__legal a:hover { color: #fff; }

/* ---------- Reveal animations ----------
   Only hide when JS is active (html.js), so content is always visible
   if JavaScript is disabled or fails to load. */
.js .reveal { opacity: .55; transform: translateY(16px); transition: opacity .35s ease, transform .35s ease; }
.js .reveal.is-in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

/* ---------- Responsive ---------- */
@media (min-width: 560px) {
  .lead-form__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__brand { grid-column: 1 / -1; }
  .footer__bar-inner { flex-direction: row; justify-content: space-between; }
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .ind-grid { grid-template-columns: repeat(2, 1fr); }
  .paths { grid-template-columns: repeat(2, 1fr); }
  .stat-row { grid-template-columns: repeat(4, 1fr); }
}
@media (min-width: 900px) {
  .site-header__actions .btn--sm { display: inline-flex; }
  .site-footer__grid { grid-template-columns: 2.2fr 1fr 1fr 1fr 1.5fr; }
  .footer__brand { grid-column: auto; }
  .hero__inner { grid-template-columns: 1.08fr .92fr; gap: 54px; }
  .page-hero__inner { grid-template-columns: 1.2fr .8fr; }
  .sol-grid { grid-template-columns: repeat(3, 1fr); }
  .value-grid { grid-template-columns: repeat(4, 1fr); }
  /* 6-item value grids read cleaner as 2 rows of 3 (no orphaned row) */
  .value-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .ind-grid { grid-template-columns: repeat(3, 1fr); }
  .paths { grid-template-columns: repeat(3, 1fr); }
  .flow-wrap { grid-template-columns: repeat(3, 1fr); }
  .split { grid-template-columns: 1fr 1fr; gap: 56px; }
  .split--reverse .split__media { order: 2; }
  .cta-band__inner { grid-template-columns: 1.4fr .6fr; }
  .cta-band__actions { justify-content: flex-end; }
  .contact-grid { grid-template-columns: .85fr 1.15fr; align-items: start; }
  .eco__legend { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 12px; }
  .journey__step { padding: 58px 18px 20px; }
  .journey__step::before { top: 16px; }
}
/* Full horizontal nav only when there's room for it on one line;
   below this, the hamburger menu is used instead. */
@media (min-width: 1024px) {
  .nav-desktop { display: block; }
  .nav-toggle { display: none; }
}
@media (min-width: 1100px) {
  .ind-grid { grid-template-columns: repeat(4, 1fr); }
  .value-grid.value-grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
