:root {
  --navy: #070d1a;
  --navy-mid: #111827;
  --navy-card: #151f33;
  --white: #ffffff;
  --cream: #f4f6fa;
  --text: #cbd5e1;
  --text-dark: #64748b;
  --ink: #0f172a;
  --line: rgb(255 255 255 / 0.08);
  --line-dark: #e2e8f0;
  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --emerald: #10b981;
  --emerald-dark: #059669;
  --gold: #fbbf24;
  --gradient: linear-gradient(135deg, #7c3aed 0%, #10b981 100%);
  --gradient-soft: linear-gradient(135deg, rgb(124 58 237 / 0.15), rgb(16 185 129 / 0.12));
  --radius: 16px;
  --radius-xl: 28px;
  --shadow: 0 20px 50px rgb(0 0 0 / 0.25);
  --shadow-soft: 0 12px 40px rgb(15 23 42 / 0.08);
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.site-live-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 110;
  background: linear-gradient(90deg, #059669, #7c3aed);
  color: #fff; text-align: center; font-size: 0.78rem; font-weight: 700;
  padding: 0.45rem 1rem; letter-spacing: 0.02em;
}
.mobile-drawer { top: calc(var(--nav-h) + 1.75rem); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container { width: min(1160px, calc(100% - 2.5rem)); margin-inline: auto; }
.icon { width: 1.1rem; height: 1.1rem; flex-shrink: 0; }
.icon-lg { width: 1.4rem; height: 1.4rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.6rem; border-radius: 999px; font-weight: 700; font-size: 0.9rem;
  text-decoration: none; border: none; cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.25s, filter 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-glow {
  background: var(--gradient); color: #fff;
  box-shadow: 0 12px 35px rgb(124 58 237 / 0.35);
}
.btn-glow:hover { box-shadow: 0 16px 45px rgb(124 58 237 / 0.45); }
.btn-white { background: #fff; color: var(--navy); box-shadow: var(--shadow-soft); }
.btn-outline-light {
  background: rgb(255 255 255 / 0.08); color: #fff;
  border: 1px solid rgb(255 255 255 / 0.25); backdrop-filter: blur(8px);
}
.btn-outline-light:hover { background: rgb(255 255 255 / 0.14); }
.btn-dark { background: var(--navy); color: #fff; }
.btn-outline-dark {
  background: #fff; color: var(--ink); border: 1.5px solid var(--line-dark);
}
.btn-outline-dark:hover { border-color: var(--purple); color: var(--purple); }

/* Nav */
.nav {
  position: fixed; top: 1.75rem; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  transition: background 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.nav-over-hero .nav-inner { color: #fff; }
.nav-over-hero .nav-links a { color: rgb(255 255 255 / 0.82); }
.nav-over-hero .nav-links a:hover { color: #fff; }
.nav-over-hero .nav-phone { color: #fff; }
.nav-over-hero .menu-btn {
  border-color: rgb(255 255 255 / 0.2); background: rgb(255 255 255 / 0.08); color: #fff;
}
.nav.scrolled {
  background: rgb(255 255 255 / 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-dark);
  box-shadow: 0 8px 32px rgb(15 23 42 / 0.06);
}
.nav.scrolled .nav-inner { color: var(--ink); }
.nav.scrolled .nav-links a { color: var(--text-dark); }
.nav.scrolled .nav-links a:hover { color: var(--purple); }
.nav.scrolled .nav-phone { color: var(--ink); }
.nav.scrolled .menu-btn {
  border-color: var(--line-dark); background: #fff; color: var(--ink);
}
.nav-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.brand-logo {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 10px; object-fit: cover;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-size: 1.12rem; font-weight: 800; letter-spacing: -0.03em; color: #002b5b;
}
.brand-way { color: var(--emerald); }
.brand-tag {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--text-dark);
}
.nav-over-hero .brand-name { color: #fff; }
.nav-over-hero .brand-way { color: #6ee7b7; }
.nav-over-hero .brand-tag { color: rgb(255 255 255 / 0.72); }
.nav.scrolled .brand-name { color: #002b5b; }
.nav.scrolled .brand-way { color: var(--emerald-dark); }
.nav.scrolled .brand-tag { color: var(--text-dark); }
.brand-footer .brand-name,
.brand-footer .brand-way { color: #fff; }
.brand-footer .brand-way { color: var(--emerald); }
.brand-footer .brand-tag { color: rgb(255 255 255 / 0.55); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none; font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.01em; transition: color 0.2s;
}
.nav-actions { display: flex; align-items: center; gap: 0.7rem; }
.nav-phone {
  display: none; align-items: center; gap: 0.45rem;
  text-decoration: none; font-weight: 700; font-size: 0.88rem;
}
.menu-btn {
  display: none; width: 44px; height: 44px; border-radius: 12px;
  border: 1px solid; cursor: pointer;
}
.mobile-drawer {
  display: none; position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: var(--navy); padding: 1.5rem; overflow-y: auto;
}
.mobile-drawer.open { display: grid; gap: 0.35rem; align-content: start; }
.mobile-drawer a {
  text-decoration: none; color: rgb(255 255 255 / 0.9); font-weight: 600;
  padding: 0.9rem 0; border-bottom: 1px solid var(--line);
}
.mobile-drawer .btn { margin-top: 0.85rem; width: 100%; }

/* Hero */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 0 0; overflow: hidden;
  background: var(--navy);
}
.hero-motion {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-gradient {
  position: absolute; inset: -50%;
  background: linear-gradient(125deg, #070d1a 0%, #0f172a 25%, #111827 50%, #0c1a2e 75%, #070d1a 100%);
  background-size: 200% 200%;
  animation: hero-gradient 18s ease-in-out infinite;
}
@keyframes hero-gradient {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-8%, -4%); }
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.45;
}
.hero-orb-a {
  width: 420px; height: 420px; top: -8%; right: 10%;
  background: rgb(124 58 237 / 0.35);
  animation: hero-drift-a 22s ease-in-out infinite;
}
.hero-orb-b {
  width: 360px; height: 360px; bottom: 5%; left: -5%;
  background: rgb(16 185 129 / 0.28);
  animation: hero-drift-b 26s ease-in-out infinite;
}
.hero-orb-c {
  width: 280px; height: 280px; top: 40%; left: 35%;
  background: rgb(59 130 246 / 0.18);
  animation: hero-drift-c 20s ease-in-out infinite;
}
@keyframes hero-drift-a {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-40px, 30px) scale(1.08); }
}
@keyframes hero-drift-b {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -35px) scale(1.05); }
}
@keyframes hero-drift-c {
  0%, 100% { transform: translate(0, 0); opacity: 0.35; }
  50% { transform: translate(-30px, 25px); opacity: 0.5; }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(105deg, rgb(7 13 26 / 0.82) 0%, rgb(7 13 26 / 0.55) 50%, rgb(7 13 26 / 0.45) 100%),
    linear-gradient(0deg, var(--navy) 0%, transparent 40%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 42rem;
  padding-bottom: 2rem;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.45rem 1rem; border-radius: 999px; font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--emerald); background: rgb(16 185 129 / 0.12);
  border: 1px solid rgb(16 185 129 / 0.25); margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem); line-height: 1.02;
  letter-spacing: -0.04em; color: #fff; margin-bottom: 1.25rem; font-weight: 800;
}
.hero h1 em {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-offer {
  font-size: 1.2rem; font-weight: 700; color: #fff; max-width: 32rem;
  margin-bottom: 0.85rem; line-height: 1.5;
}
.hero-lead {
  font-size: 1.05rem; color: rgb(255 255 255 / 0.72); max-width: 30rem;
  margin-bottom: 2rem; line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1.75rem; }
.hero-highlights {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; max-width: 36rem;
}
.hero-highlight {
  display: flex; align-items: flex-start; gap: 0.65rem;
  padding: 1rem 1.1rem; border-radius: var(--radius);
  background: rgb(255 255 255 / 0.07); border: 1px solid rgb(255 255 255 / 0.12);
  backdrop-filter: blur(12px);
}
.hero-highlight svg { color: var(--emerald); flex-shrink: 0; margin-top: 0.1rem; }
.hero-highlight:nth-child(2) svg { color: var(--purple-light); }
.hero-highlight strong { display: block; color: #fff; font-size: 0.9rem; margin-bottom: 0.15rem; }
.hero-highlight span { color: rgb(255 255 255 / 0.65); font-size: 0.8rem; line-height: 1.45; }
.simple-visual {
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--line-dark); background: #fff;
  box-shadow: var(--shadow-soft);
}
.simple-visual img { display: block; width: 100%; height: auto; }

.hero-stats-bar {
  position: relative; z-index: 2; margin-top: auto;
  border-top: 1px solid var(--line);
  background: rgb(255 255 255 / 0.04); backdrop-filter: blur(12px);
}
.hero-stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  padding: 1.35rem 0;
}
.stat strong {
  display: block; font-size: 1.65rem; font-weight: 800; color: #fff;
  letter-spacing: -0.03em;
}
.stat span { font-size: 0.8rem; color: rgb(255 255 255 / 0.55); font-weight: 500; }

/* Sections */
section { padding: 5.5rem 0; }
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }
.section-kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--purple); margin-bottom: 0.75rem;
}
.section-kicker::before {
  content: ""; width: 24px; height: 2px; background: var(--gradient); border-radius: 2px;
}
.section-head.center .section-kicker::before { display: none; }
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem); letter-spacing: -0.035em;
  font-weight: 800; color: var(--ink); margin-bottom: 0.75rem; line-height: 1.1;
}
.section-sub { color: var(--text-dark); font-size: 1.05rem; max-width: 36rem; line-height: 1.75; }

.section-dark {
  background: var(--navy); color: var(--text);
}
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: rgb(255 255 255 / 0.65); }
.section-dark .section-kicker { color: var(--emerald); }

/* Outcomes */
.outcomes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.outcome {
  background: #fff; border-radius: var(--radius); padding: 1.6rem;
  border: 1px solid var(--line-dark); position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.outcome::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gradient);
}
.outcome:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.outcome-icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  margin-bottom: 1rem; background: var(--gradient-soft);
  color: var(--purple);
}
.outcome h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 0.45rem; }
.outcome p { font-size: 0.9rem; color: var(--text-dark); }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.process-card {
  background: var(--navy-card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.6rem 1.35rem;
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.process-card:hover { border-color: rgb(124 58 237 / 0.4); transform: translateY(-4px); }
.process-num {
  font-size: 2rem; font-weight: 800; letter-spacing: -0.04em;
  background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 0.75rem; line-height: 1;
}
.process-card h3 { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 0.45rem; }
.process-card p { font-size: 0.86rem; color: rgb(255 255 255 / 0.6); line-height: 1.65; }
/* Solutions split */
.solutions-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.solutions-visual {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow-soft); border: 1px solid var(--line-dark);
}
.solutions-visual img { width: 100%; height: auto; }
.solution-items { display: grid; gap: 1rem; margin-top: 1.75rem; }
.solution-item {
  display: flex; gap: 1rem; padding: 1.15rem 1.25rem;
  background: #fff; border: 1px solid var(--line-dark); border-radius: var(--radius);
  transition: box-shadow 0.25s;
}
.solution-item:hover { box-shadow: var(--shadow-soft); }
.solution-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center; background: var(--gradient-soft); color: var(--purple);
}
.solution-item strong { display: block; font-size: 0.95rem; color: var(--ink); margin-bottom: 0.2rem; }
.solution-item span { font-size: 0.86rem; color: var(--text-dark); }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.feature-list { list-style: none; display: grid; gap: 1.15rem; margin-top: 1.75rem; }
.feature-list li {
  display: flex; gap: 1rem; padding: 1.15rem; background: #fff;
  border: 1px solid var(--line-dark); border-radius: var(--radius);
}
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--gradient); color: #fff; display: grid; place-items: center;
}
.feature-list strong { display: block; font-size: 0.95rem; margin-bottom: 0.2rem; }
.feature-list span { font-size: 0.86rem; color: var(--text-dark); }
.location-card {
  background: #fff; border: 1px solid var(--line-dark); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-soft);
}
.location-top { padding: 1.5rem; display: grid; gap: 0.85rem; }
.loc-row { display: flex; gap: 0.85rem; align-items: flex-start; }
.loc-row svg { color: var(--purple); margin-top: 0.15rem; }
.loc-row strong { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-dark); margin-bottom: 0.15rem; }
.loc-row a { color: var(--purple); font-weight: 700; text-decoration: none; }
.loc-row a:hover { text-decoration: underline; }
.location-visual {
  border-top: 1px solid var(--line-dark);
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  position: relative; overflow: hidden;
}
.location-visual-bg {
  position: relative; height: 180px;
  display: grid; place-items: center;
}
.map-grid {
  position: absolute; inset: 0; opacity: 0.35;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.map-grid::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 55%, rgb(124 58 237 / 0.25), transparent 55%);
}
.map-pin {
  position: relative; z-index: 1;
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--gradient);
  color: #fff; box-shadow: 0 12px 40px rgb(124 58 237 / 0.45);
  animation: pin-pulse 2.5s ease-in-out infinite;
}
.map-pin svg { width: 30px; height: 30px; }
@keyframes pin-pulse {
  0%, 100% { transform: translateY(0); box-shadow: 0 12px 40px rgb(124 58 237 / 0.45); }
  50% { transform: translateY(-4px); box-shadow: 0 18px 50px rgb(124 58 237 / 0.55); }
}
.location-visual-body { padding: 1.35rem 1.5rem 1.5rem; color: #fff; }
.location-label {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--emerald); margin-bottom: 0.5rem;
}
.location-address {
  font-size: 1.15rem; font-weight: 700; line-height: 1.45; margin-bottom: 0.5rem;
}
.location-note { font-size: 0.84rem; color: rgb(255 255 255 / 0.6); margin-bottom: 1.1rem; }
.location-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.location-actions .btn { font-size: 0.82rem; padding: 0.7rem 1.15rem; }
@media (prefers-reduced-motion: reduce) {
  .map-pin { animation: none; }
}

/* Reviews */
.reviews-wrap {
  background: var(--gradient-soft);
  border-block: 1px solid var(--line-dark);
}
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.review {
  background: #fff; border-radius: var(--radius-xl); padding: 1.75rem;
  border: 1px solid var(--line-dark); display: flex; flex-direction: column; gap: 1rem;
  box-shadow: var(--shadow-soft); position: relative;
}
.review::before {
  content: "\201C"; position: absolute; top: 0.5rem; right: 1.25rem;
  font-size: 4rem; line-height: 1; font-family: var(--serif);
  color: rgb(124 58 237 / 0.12);
}
.review-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 0.15em; }
.review q {
  quotes: none; font-size: 0.92rem; color: var(--text-dark); line-height: 1.7; flex: 1;
}
.review-footer { display: flex; align-items: center; gap: 0.75rem; }
.avatar {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-weight: 800; font-size: 0.85rem; color: #fff; background: var(--gradient);
}
.review-author { font-weight: 700; font-size: 0.88rem; }
.review-author span { display: block; font-weight: 500; color: var(--text-dark); font-size: 0.78rem; }

/* FAQ */
.faq { max-width: 700px; margin-inline: auto; display: grid; gap: 0.65rem; }
.faq-item {
  background: #fff; border: 1px solid var(--line-dark); border-radius: 14px; overflow: hidden;
}
.faq-btn {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.1rem 1.2rem; font-weight: 700; font-size: 0.92rem; color: var(--ink);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-btn svg { transition: transform 0.25s var(--ease); color: var(--text-dark); }
.faq-item.open .faq-btn svg { transform: rotate(180deg); color: var(--purple); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-body-inner { padding: 0 1.2rem 1.1rem; font-size: 0.9rem; color: var(--text-dark); line-height: 1.7; }

/* Contact */
.contact-section {
  background: var(--navy); position: relative; overflow: hidden;
}
.contact-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 20%, rgb(124 58 237 / 0.2), transparent);
}
.contact-section .section-title { color: #fff; }
.contact-section .section-sub { color: rgb(255 255 255 / 0.65); }
.contact-section .section-kicker { color: var(--emerald); }
.contact-grid {
  position: relative; display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2rem;
}
.contact-aside { display: grid; gap: 0.85rem; align-content: start; }
.contact-chip {
  display: flex; gap: 0.9rem; padding: 1.15rem 1.2rem;
  background: rgb(255 255 255 / 0.06); border: 1px solid var(--line); border-radius: var(--radius);
}
.contact-chip svg { color: var(--emerald); flex-shrink: 0; margin-top: 0.1rem; }
.contact-chip strong {
  display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: rgb(255 255 255 / 0.45); margin-bottom: 0.2rem;
}
.contact-chip a, .contact-chip p { color: #fff; font-weight: 600; font-size: 0.95rem; text-decoration: none; }
.contact-chip a:hover { color: var(--emerald); }
.form-card {
  background: #fff; border-radius: var(--radius-xl); padding: 2rem;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.field { margin-bottom: 0.85rem; }
.field label { display: block; font-size: 0.8rem; font-weight: 700; margin-bottom: 0.35rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.78rem 1rem; border: 1.5px solid var(--line-dark);
  border-radius: 12px; background: var(--cream); transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgb(124 58 237 / 0.1);
}
.form-note { font-size: 0.76rem; color: var(--text-dark); text-align: center; margin-top: 0.75rem; }

/* CTA */
.cta-band {
  text-align: center; padding: 4.5rem 0;
  background: var(--gradient); color: #fff; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: rgb(255 255 255 / 0.08); opacity: 1;
}
.cta-band .container { position: relative; }
.cta-band h2 {
  font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 0.75rem;
}
.cta-band p { opacity: 0.9; margin-bottom: 1.5rem; font-size: 1.05rem; }

/* Footer */
footer {
  background: #04080f; color: rgb(255 255 255 / 0.55); padding: 3.5rem 0 1.75rem; font-size: 0.86rem;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p { max-width: 22rem; line-height: 1.75; }
footer h4 { color: #fff; font-size: 0.85rem; font-weight: 700; margin-bottom: 0.9rem; }
footer ul { list-style: none; display: grid; gap: 0.5rem; }
footer a { color: rgb(255 255 255 / 0.55); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--emerald); }
.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 0.08); padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem; font-size: 0.78rem;
}

/* Mobile CTA */
.mobile-cta {
  display: none; position: fixed; inset: auto 0 0 0; z-index: 90;
  padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgb(7 13 26 / 0.94); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.mobile-cta .container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 0.6rem; width: 100%; }
.mobile-cta .btn { padding: 0.75rem 0.5rem; font-size: 0.82rem; }

.toast {
  position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 200;
  background: var(--navy); color: #fff; padding: 0.95rem 1.15rem; border-radius: 14px;
  font-size: 0.88rem; font-weight: 600; box-shadow: var(--shadow);
  border: 1px solid var(--line); transform: translateY(140%);
  transition: transform 0.35s var(--ease);
}
.toast.show { transform: translateY(0); }

/* Legal pages */
.legal-page .nav { top: 0; }
.legal-main { padding: calc(var(--nav-h) + 3rem) 0 4rem; }
.legal-wrap { max-width: 760px; }
.legal-kicker {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--emerald-dark); margin-bottom: 0.5rem;
}
.legal-wrap h1 {
  font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 800;
  letter-spacing: -0.03em; margin-bottom: 0.75rem;
}
.legal-updated { color: var(--text-dark); font-size: 0.9rem; margin-bottom: 2rem; }
.legal-prose { font-size: 0.95rem; line-height: 1.8; color: #334155; }
.legal-prose h2 {
  font-size: 1.15rem; font-weight: 800; color: var(--ink);
  margin: 2rem 0 0.75rem; letter-spacing: -0.02em;
}
.legal-prose p { margin-bottom: 1rem; }
.legal-prose ul { margin: 0 0 1rem 1.25rem; display: grid; gap: 0.45rem; }
.legal-prose a { color: var(--emerald-dark); font-weight: 600; }
.legal-prose a:hover { color: var(--purple); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .outcome, .process-card { transition: none; }
  .hero-gradient, .hero-orb { animation: none; }
}

@media (max-width: 960px) {
  .solutions-split, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .outcomes, .process-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-highlights { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-links, .nav-phone { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .outcomes, .process-grid, .reviews-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  section { padding: 4rem 0; }
  .mobile-cta { display: block; }
  body { padding-bottom: 4.75rem; }
  .hero { min-height: auto; padding-bottom: 0; }
}