/* =========================================================
   INVITTY COGNITIVE SOLUTIONS — Design System v2
   Light · Editorial-Tech · Teal accent (from logo)
   Fonts: Sora (display), IBM Plex Sans (body), IBM Plex Mono (mono)
   ========================================================= */

/* ---- Custom properties ---- */
:root {
  --teal-700: #0B7A6F;
  --teal-600: #0D9488;
  --teal-500: #14B8A6;
  --teal-400: #2DD4BF;
  --teal-50:  #ECFDF7;
  --teal-100: #CCFBF1;

  --ink:      #0A1628;
  --ink-soft: #1a2845;
  --slate-800:#1E293B;
  --slate-700:#334155;
  --slate-600:#475569;
  --slate-500:#64748B;
  --slate-400:#94A3B8;
  --slate-300:#CBD5E1;
  --line:     #E2E8F0;
  --line-soft:#EEF2F8;

  --bg:       #FFFFFF;
  --bg-soft:  #F8FAFC;
  --bg-tint:  #F0FDFA;

  --radius:   12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-xs: 0 1px 2px rgba(10,22,40,.05);
  --shadow-sm: 0 2px 8px rgba(10,22,40,.07), 0 1px 2px rgba(10,22,40,.04);
  --shadow-md: 0 8px 24px -4px rgba(10,22,40,.14), 0 2px 6px rgba(10,22,40,.06);
  --shadow-lg: 0 20px 48px -12px rgba(10,22,40,.2), 0 4px 10px rgba(10,22,40,.06);
  --shadow-teal: 0 12px 36px -8px rgba(13,148,136,.38);

  --maxw: 1160px;
  --ease: cubic-bezier(.22,.61,.36,1);

  --font-display: "Sora", system-ui, -apple-system, sans-serif;
  --font-body: "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "Cascadia Code", monospace;
}

/* ---- Reset & base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--slate-700);
  background: var(--bg);
  font-size: 16.5px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--teal-600); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--teal-700); }
h1,h2,h3,h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -.025em;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.65rem, 3.2vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.42rem); }
p { margin: 0 0 1rem; }
ul { padding-left: 1.2rem; }

/* ---- Layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(60px, 9vw, 120px) 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: linear-gradient(180deg, var(--bg-tint) 0%, #fff 100%); }
.center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.max-680 { max-width: 680px; }

/* ---- Eyebrow / label ---- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal-600);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-400));
  display: inline-block;
  border-radius: 2px;
}
.center .eyebrow { justify-content: center; }
.lead { font-size: 1.1rem; color: var(--slate-600); line-height: 1.7; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  padding: .82rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .22s var(--ease), background .18s, color .18s, border-color .18s;
  white-space: nowrap;
  letter-spacing: -.01em;
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn--primary {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}
.btn--primary:hover { background: var(--ink-soft); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--teal {
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700));
  color: #fff;
  border-color: var(--teal-600);
}
.btn--teal:hover { transform: translateY(-2px); box-shadow: var(--shadow-teal); color: #fff; background: linear-gradient(135deg, var(--teal-500), var(--teal-600)); }
.btn--ghost {
  background: #fff;
  color: var(--slate-700);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--teal-400); color: var(--teal-700); background: var(--teal-50); transform: translateY(-2px); }
.btn--lg { padding: 1rem 1.85rem; font-size: 1rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---- Site header / Nav ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid rgba(226,232,240,.7);
  box-shadow: 0 1px 0 rgba(10,22,40,.04);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--ink);
  letter-spacing: -.035em;
  font-style: italic;
  flex-shrink: 0;
}
.brand:hover { color: var(--ink); }
.brand .mark { width: 32px; height: 36px; flex: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links > li { position: relative; }
.nav-links a.navlink {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .8rem;
  border-radius: var(--radius-sm);
  color: var(--slate-600);
  font-weight: 500;
  font-size: .92rem;
  transition: color .18s, background .18s;
}
.nav-links a.navlink:hover { color: var(--ink); background: var(--bg-soft); }
.nav-actions { display: flex; align-items: center; gap: .6rem; flex-shrink: 0; }

/* Dropdown */
.has-dd > .navlink::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1.5px solid var(--slate-400);
  border-bottom: 1.5px solid var(--slate-400);
  transform: rotate(45deg);
  margin-left: .15rem;
  margin-top: -2px;
  transition: transform .18s;
  display: inline-block;
}
.has-dd:hover > .navlink::after { transform: rotate(225deg) translateY(-2px); }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 460px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .2s var(--ease);
}
.dropdown a {
  display: flex;
  flex-direction: column;
  padding: .65rem .75rem;
  border-radius: 9px;
  color: var(--ink);
  transition: background .15s;
}
.dropdown a span { font-weight: 600; font-size: .9rem; color: var(--ink); }
.dropdown a small { color: var(--slate-500); font-size: .76rem; margin-top: .1rem; }
.dropdown a:hover { background: var(--teal-50); }
.dropdown a:hover span { color: var(--teal-700); }
.has-dd:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: .28s;
  border-radius: 2px;
}

/* ---- Hero (homepage) ---- */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0 clamp(52px, 7vw, 88px);
  overflow: hidden;
  background: linear-gradient(160deg, #fff 0%, var(--bg-tint) 55%, #fff 100%);
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 65% 10%, rgba(0,0,0,.9) 0%, transparent 70%);
          mask-image: radial-gradient(ellipse 75% 70% at 65% 10%, rgba(0,0,0,.9) 0%, transparent 70%);
  opacity: .6;
}
.hero-orb { position: absolute; z-index: 0; border-radius: 50%; filter: blur(72px); opacity: .55; pointer-events: none; }
.hero-orb--1 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(45,212,191,.45), transparent 65%); top: -160px; right: -100px; }
.hero-orb--2 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(13,148,136,.18), transparent 65%); bottom: -160px; left: -120px; }
.hero .wrap { position: relative; z-index: 2; }
.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 52px;
  align-items: center;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.95);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .38rem .9rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--slate-600);
  box-shadow: var(--shadow-xs);
  margin-bottom: 1.3rem;
}
.pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 4px rgba(45,212,191,.22);
  flex-shrink: 0;
}
.hero h1 .accent { color: var(--teal-600); }
.hero-sub { font-size: 1.13rem; color: var(--slate-600); max-width: 530px; margin: 1.1rem 0 1.7rem; }
.hero-cta { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 28px; margin-top: 2.2rem; flex-wrap: wrap; }
.hero-stats .num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.04em;
}
.hero-stats .lbl {
  font-size: .76rem;
  color: var(--slate-500);
  font-family: var(--font-mono);
  letter-spacing: .04em;
}

/* Hero visual card */
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(155deg, rgba(45,212,191,.7) 0%, transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-card::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(45,212,191,.12), transparent 65%);
  pointer-events: none;
}
.hc-row {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  z-index: 1;
}
.hc-row:last-child { border-bottom: 0; }
.hc-ico {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal-50);
  display: grid;
  place-items: center;
  color: var(--teal-700);
  flex-shrink: 0;
  border: 1px solid var(--teal-100);
}
.hc-ico svg { width: 20px; height: 20px; }
.hc-row b { color: var(--ink); font-family: var(--font-body); font-weight: 600; display: block; font-size: .92rem; }
.hc-row small { color: var(--slate-500); font-size: .79rem; }
.hc-badge {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: .67rem;
  color: var(--teal-700);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  padding: .18rem .5rem;
  border-radius: 5px;
  font-weight: 600;
  letter-spacing: .04em;
  flex-shrink: 0;
}

/* ---- Trust bar ---- */
.trust {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: var(--bg-soft);
}
.trust .wrap { padding-top: 28px; padding-bottom: 28px; }
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 32px;
  flex-wrap: wrap;
}
.trust-label {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--slate-400);
  width: 100%;
  text-align: center;
  margin-bottom: 4px;
}
.trust-chip {
  font-weight: 600;
  color: var(--slate-500);
  font-size: .95rem;
  letter-spacing: -.01em;
}

/* ---- Section heading ---- */
.sec-head { max-width: 720px; margin-bottom: 44px; }
.sec-head.center { margin-left: auto; margin-right: auto; }

/* ---- Cards grid ---- */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), border-color .24s;
  overflow: hidden;
  display: block; /* make <a> cards behave as blocks */
  color: var(--slate-700);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--teal-200, #99F6E4); }
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
  border-radius: var(--radius) var(--radius) 0 0;
}
.card:hover::before { transform: scaleX(1); }
.card-ico {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  display: grid;
  place-items: center;
  color: var(--teal-700);
  margin-bottom: 16px;
}
.card-ico svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.12rem; margin-bottom: .35rem; color: var(--ink); }
.card p { font-size: .92rem; color: var(--slate-600); margin-bottom: .9rem; }
.card .brands { font-family: var(--font-mono); font-size: .72rem; color: var(--slate-400); letter-spacing: .02em; }
.card-link {
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: .32rem;
  color: var(--teal-600);
  margin-top: .5rem;
}
.card-link svg { width: 14px; height: 14px; transition: transform .18s; }
.card:hover .card-link svg { transform: translateX(3px); }
.card-tag {
  position: absolute;
  top: 16px; right: 16px;
  font-family: var(--font-mono);
  font-size: .64rem;
  color: var(--slate-300);
  letter-spacing: .06em;
}

/* Feature list */
.feat { display: flex; gap: 14px; align-items: flex-start; }
.feat-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  color: var(--teal-700);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.feat-ico svg { width: 19px; height: 19px; }
.feat h3 { font-size: 1.05rem; margin-bottom: .22rem; }
.feat p { font-size: .9rem; margin: 0; color: var(--slate-600); }

/* Checklist */
.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.checks li {
  display: flex;
  gap: .62rem;
  align-items: flex-start;
  font-size: .96rem;
  color: var(--slate-700);
}
.checks li::before {
  content: "";
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background-color: var(--teal-50);
  border: 1px solid var(--teal-100);
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230D9488' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ---- Process steps ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: step;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.step .n { font-family: var(--font-mono); font-size: .76rem; color: var(--teal-600); font-weight: 600; letter-spacing: .06em; }
.step h3 { font-size: 1.04rem; margin: .5rem 0 .35rem; }
.step p { font-size: .88rem; margin: 0; color: var(--slate-600); }

/* ---- Locations ---- */
.loc-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.loc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  text-align: center;
  transition: border-color .22s, transform .22s, box-shadow .22s;
}
.loc:hover { border-color: var(--teal-400); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.loc b { display: block; color: var(--ink); font-family: var(--font-display); font-size: 1rem; }
.loc small { color: var(--slate-500); font-size: .78rem; }

/* ---- Reviews ---- */
.review { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.stars { color: #F59E0B; letter-spacing: 2px; font-size: .95rem; margin-bottom: .7rem; }
.review p { font-size: .97rem; color: var(--slate-700); font-style: italic; }
.review .who { display: flex; align-items: center; gap: 11px; margin-top: 13px; }
.review .who .av {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-700));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: .95rem;
  flex-shrink: 0;
}
.review .who b { color: var(--ink); font-size: .9rem; display: block; }
.review .who small { color: var(--slate-500); font-size: .78rem; }

/* ---- CTA band ---- */
.cta-band {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(36px, 5vw, 64px) clamp(28px, 4vw, 56px);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 15%, rgba(45,212,191,.28), transparent 42%),
    radial-gradient(circle at 10% 85%, rgba(13,148,136,.18), transparent 40%);
}
.cta-band h2 { color: #fff; position: relative; z-index: 1; }
.cta-band p { color: rgba(255,255,255,.72); position: relative; z-index: 1; max-width: 560px; }
.cta-band .hero-cta { position: relative; z-index: 1; }

/* ---- Forms ---- */
.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 3vw, 36px);
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: .38rem; }
.field label .req { color: #e11d48; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .78rem .9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .93rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .18s, box-shadow .18s;
  appearance: auto;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(20,184,166,.14);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-note { font-size: .76rem; color: var(--slate-400); margin-top: 5px; }
.form-success {
  display: none;
  background: var(--teal-50);
  border: 1px solid var(--teal-400);
  color: var(--teal-700);
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  margin-bottom: 14px;
  font-weight: 500;
}
.form-success.show { display: block; }

/* ---- FAQ ---- */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 19px 44px 19px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  position: relative;
  transition: color .18s;
  line-height: 1.3;
}
.faq-q::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  color: var(--teal-500);
  font-weight: 400;
  transition: transform .22s, content .22s;
  font-family: var(--font-body);
}
.faq-item.open .faq-q { color: var(--teal-700); }
.faq-item.open .faq-q::after { content: "\2212"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s var(--ease); }
.faq-a p { padding: 0 0 18px; color: var(--slate-600); font-size: .95rem; margin: 0; }

/* ---- Breadcrumb ---- */
.crumbs { font-family: var(--font-mono); font-size: .76rem; color: var(--slate-400); padding: 16px 0; }
.crumbs a { color: var(--slate-500); }
.crumbs span { margin: 0 .38rem; }

/* ---- Page hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(175deg, var(--bg-tint) 0%, #fff 100%);
  border-bottom: 1px solid var(--line-soft);
  padding: 8px 0 52px;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-grid-bg {
  -webkit-mask-image: radial-gradient(ellipse 65% 90% at 85% 0%, rgba(0,0,0,.85), transparent 65%);
          mask-image: radial-gradient(ellipse 65% 90% at 85% 0%, rgba(0,0,0,.85), transparent 65%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { max-width: 780px; margin-top: .4rem; }
.page-hero .lead { max-width: 640px; margin-top: .4rem; }

/* ---- Split layout (inner page content + form) ---- */
.split {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 44px;
  align-items: start;
}
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; }
.prose ul { padding-left: 1.1rem; }
.prose li { margin-bottom: .38rem; }
.sticky-side { position: sticky; top: 90px; }

/* ---- Brand chips ---- */
.brand-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.brand-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: .55rem .85rem;
  font-weight: 600;
  font-size: .87rem;
  color: var(--slate-700);
  box-shadow: var(--shadow-xs);
}
.brand-chip .bc {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: .68rem;
  font-weight: 700;
  font-family: var(--font-mono);
  flex-shrink: 0;
}

/* ---- Footer ---- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 60px 0 26px; }
.site-footer a { color: rgba(255,255,255,.6); transition: color .18s; }
.site-footer a:hover { color: var(--teal-400); }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .brand { color: #fff; margin-bottom: 13px; }
.footer-brand p { font-size: .9rem; max-width: 300px; line-height: 1.62; }
.foot-col h4 {
  color: #fff;
  font-size: .76rem;
  font-family: var(--font-mono);
  letter-spacing: .11em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.foot-col a { font-size: .9rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 22px;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: 11px;
}
.social { display: flex; gap: 9px; }
.social a {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 9px;
  display: grid;
  place-items: center;
  transition: border-color .18s, background .18s;
}
.social a:hover { border-color: var(--teal-400); background: rgba(45,212,191,.1); }
.social svg { width: 16px; height: 16px; }

/* ---- Scroll reveal ---- */
/* CRITICAL: elements are visible by default; animation enhances, not gates */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  body.js-ready .reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .65s var(--ease), transform .65s var(--ease);
  }
  body.js-ready .reveal.in { opacity: 1; transform: none; }
  body.js-ready .reveal.d1 { transition-delay: .08s; }
  body.js-ready .reveal.d2 { transition-delay: .16s; }
  body.js-ready .reveal.d3 { transition-delay: .24s; }
  body.js-ready .reveal.d4 { transition-delay: .32s; }
}

/* ---- Responsive ---- */
@media (max-width: 1060px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-card { max-width: 500px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .loc-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .sticky-side { position: static; }
}
@media (max-width: 768px) {
  .wrap { padding: 0 18px; }
  .nav-links, .nav-actions .btn--ghost { display: none; }
  .menu-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 18px 16px;
    gap: 3px;
    box-shadow: var(--shadow-md);
    z-index: 100;
  }
  .nav-links.open .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    min-width: 0;
    padding: 4px 0 4px 10px;
    grid-template-columns: 1fr;
    background: transparent;
  }
  .grid-2, .grid-3, .grid-4, .field-row { grid-template-columns: 1fr; }
  .steps, .loc-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .cta-band { border-radius: var(--radius-lg); }
}
@media (max-width: 480px) {
  .steps, .loc-grid { grid-template-columns: 1fr; }
  .hero-stats .num { font-size: 1.6rem; }
}
