/* ============================================================
   GENIUS HOME ADVISORS — style.css
   Brand: Plus Jakarta Sans · Navy #1E2F4D · Teal #00C6A1
   ============================================================ */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:        #1E2F4D;
  --navy-deep:   #0A1628;
  --navy-mid:    #2A3F63;
  --teal:        #00C6A1;
  --teal-dark:   #007A63;
  --teal-tint:   #E8FAF7;
  --bg-warm:     #F4F6F9;
  --bg-section:  #EDF0F5;
  --bg-white:    #FFFFFF;
  --slate:       #5A6A7E;
  --slate-light: #8A9AB0;
  --border:      #D6DCE6;
  --amber:       #F97316;

  --font: 'Plus Jakarta Sans', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-2xl: 24px;

  --shadow-sm: 0 1px 3px rgba(10,22,40,.06), 0 1px 2px rgba(10,22,40,.04);
  --shadow-md: 0 4px 16px rgba(10,22,40,.08), 0 2px 4px rgba(10,22,40,.04);
  --shadow-lg: 0 12px 40px rgba(10,22,40,.12), 0 4px 12px rgba(10,22,40,.06);

  --nav-h: 68px;
  --max-w: 1140px;
  --section-py: 96px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg-warm);
  color: var(--navy);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

/* GHA_logo.svg constrained when used as <img> — file is 1080x1080 for print/hi-res */
img[src*="GHA_logo"] { width: 40px; height: 40px; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.01em;
  border-radius: var(--radius-md);
  padding: 11px 22px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, opacity .18s ease;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--teal);
  color: var(--navy-deep);
  box-shadow: 0 2px 12px rgba(0,198,161,.28);
}
.btn--primary:hover { box-shadow: 0 4px 20px rgba(0,198,161,.4); background: #00d9b0; }

.btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn--outline-light:hover { border-color: rgba(255,255,255,.8); background: rgba(255,255,255,.08); }

.btn--outline-teal {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn--outline-teal:hover { background: var(--teal-tint); }

.btn--lg { font-size: 15px; padding: 14px 28px; }

/* ── EYEBROW ── */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 12px;
}
.eyebrow--teal { color: var(--teal-dark); }

/* ── SECTION BASE ── */
.section { padding: var(--section-py) 0; }
.section--alt { background: var(--bg-section); }

.section__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}
.section__h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section__sub {
  font-size: 16px;
  font-weight: 400;
  color: var(--slate);
  line-height: 1.7;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.navbar.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.navbar__mark {
  width: 30px; height: 30px;
  color: var(--teal-dark);
  flex-shrink: 0;
}
.navbar__wordmark {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.navbar__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  padding: 8px 14px;
  border-radius: var(--radius-md);
  transition: color .15s, background .15s;
}
.navbar__link:hover { color: var(--navy); background: var(--bg-section); }

.navbar__cta { margin-left: 8px; }

.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.navbar__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.navbar__mobile {
  display: none;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 20px 24px 28px;
}
.navbar__mobile.open { display: block; }
.navbar__mobile-link {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.navbar__mobile-link:last-of-type { border-bottom: none; }

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--navy-deep);
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Subtle dot grid */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Animated pulse rings */
.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,198,161,.15);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 6s ease-out infinite;
}
.hero__ring--1 { width: 400px; height: 400px; animation-delay: 0s; }
.hero__ring--2 { width: 700px; height: 700px; animation-delay: 1.5s; }
.hero__ring--3 { width: 1050px; height: 1050px; animation-delay: 3s; }

@keyframes pulseRing {
  0%   { opacity: 0; transform: translate(-50%,-50%) scale(.85); }
  20%  { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(1.05); }
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero__content { max-width: 540px; }

.hero__h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero__h1 em {
  font-style: normal;
  color: var(--teal);
}

.hero__sub {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero card stack */
.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__card-stack {
  position: relative;
  width: 280px;
  height: 280px;
}

.hero__card {
  position: absolute;
  border-radius: var(--radius-xl);
  padding: 20px;
  backdrop-filter: blur(12px);
}

.hero__card--back {
  width: 220px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  top: 10px; right: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: floatCard 6s ease-in-out infinite;
}
.hero__card--front {
  width: 240px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(0,198,161,.3);
  bottom: 10px; left: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
  animation: floatCard 6s ease-in-out infinite reverse;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero__card-icon {
  width: 36px; height: 36px;
  background: rgba(0,198,161,.15);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.hero__card-icon svg { width: 20px; height: 20px; }
.hero__card-label { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.5); }
.hero__card-value { font-size: 16px; font-weight: 700; color: #fff; }

.hero__card-dots { display: flex; gap: 5px; margin-bottom: 12px; }
.hero__dot { width: 8px; height: 8px; border-radius: 50%; }
.hero__dot--teal  { background: var(--teal); }
.hero__dot--blue  { background: #3B82F6; }
.hero__dot--amber { background: var(--amber); }

.hero__card-title { font-size: 13px; font-weight: 600; color: #fff; margin-bottom: 12px; }

.hero__card-items { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.hero__item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 400; color: rgba(255,255,255,.75);
}
.hero__item-badge {
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: var(--radius-sm);
  background: rgba(0,198,161,.15);
  color: var(--teal);
  letter-spacing: .03em;
  flex-shrink: 0;
}
.hero__item-badge--blue  { background: rgba(59,130,246,.15); color: #60A5FA; }
.hero__item-badge--amber { background: rgba(249,115,22,.15);  color: #FB923C; }
.hero__item-badge--matter { background: rgba(139,92,246,.15); color: #A78BFA; }

.hero__card-footer {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; color: var(--teal);
}
.hero__card-footer svg { width: 14px; height: 14px; stroke: var(--teal); }

.hero__scroll-hint {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
}
.hero__scroll-hint span {
  display: block;
  width: 1.5px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { transform: scaleY(1); opacity: .8; }
  50%      { transform: scaleY(.6); opacity: .3; }
}

/* ── TRUST BAR ── */
.trust {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.trust__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trust__label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--slate-light);
  white-space: nowrap;
  flex-shrink: 0;
}
.trust__logos {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  flex: 1;
}
.trust__logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  white-space: nowrap;
}
.trust__logo {
  width: 22px; height: 22px;
  color: var(--slate-light);
  flex-shrink: 0;
}
.trust__divider {
  width: 1px; height: 24px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── HOW IT WORKS ── */
.hiw__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.hiw__step {
  flex: 1;
  text-align: center;
  padding: 40px 32px;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.hiw__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.hiw__step-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 16px;
}
.hiw__step-icon {
  width: 56px; height: 56px;
  background: var(--teal-tint);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--teal-dark);
}
.hiw__step-icon svg { width: 28px; height: 28px; }
.hiw__step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.hiw__step-desc {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
}

.hiw__connector {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}
.hiw__connector span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: linear-gradient(to right, var(--teal), rgba(0,198,161,.3));
}

/* ── WHAT WE DO ── */
.wwd__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.wwd__card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: 32px 28px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.wwd__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.wwd__card-icon {
  width: 48px; height: 48px;
  background: var(--teal-tint);
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--teal-dark);
  transition: background .25s;
}
.wwd__card:hover .wwd__card-icon { background: var(--teal); color: var(--navy-deep); }
.wwd__card-icon svg { width: 24px; height: 24px; }
.wwd__card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.wwd__card-desc { font-size: 14px; color: var(--slate); line-height: 1.7; }

/* ── PLATFORMS ── */
.platforms__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.platforms__card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.platforms__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.platforms__card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.platforms__card-header--apple  { background: var(--navy-deep); }
.platforms__card-header--google { background: #1a1a2e; }
.platforms__card-header--amazon { background: #1a1a0a; }

.platforms__icon { width: 28px; height: 28px; flex-shrink: 0; }

.platforms__list {
  padding: 20px 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.platforms__list li {
  font-size: 14px;
  color: var(--slate);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.platforms__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
}
.platforms__fit {
  font-size: 13px;
  color: var(--slate);
  padding: 14px 24px 20px;
  border-top: 1px solid var(--border);
  line-height: 1.6;
}
.platforms__fit strong { color: var(--navy); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,198,161,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-band__h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.cta-band__sub {
  font-size: 16px;
  color: rgba(255,255,255,.55);
  font-weight: 300;
}
.cta-band__btn { flex-shrink: 0; }

/* ── FAQ ── */
.faq__list { max-width: 720px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__item:first-child { border-top: 1px solid var(--border); }

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  transition: color .15s;
}
.faq__question:hover { color: var(--teal-dark); }
.faq__question[aria-expanded="true"] { color: var(--teal-dark); }
.faq__question[aria-expanded="true"] .faq__icon { transform: rotate(180deg); }

.faq__icon {
  width: 20px; height: 20px;
  color: var(--slate-light);
  flex-shrink: 0;
  transition: transform .25s ease;
}

.faq__answer {
  display: none;
  padding: 0 0 22px;
}
.faq__answer.open { display: block; }
.faq__answer p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
}

/* ── CONTACT ── */
.contact { background: var(--bg-warm); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact__email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal-dark);
  margin-top: 28px;
  padding: 14px 20px;
  background: var(--teal-tint);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,198,161,.2);
  transition: background .18s, transform .18s;
}
.contact__email:hover { background: #d0f5ee; transform: translateX(2px); }
.contact__email svg { width: 18px; height: 18px; color: var(--teal-dark); }

.contact__card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  overflow: hidden;
}

.contact__chat-placeholder {
  padding: 48px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.contact__chat-icon {
  width: 64px; height: 64px;
  background: var(--teal-tint);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--teal-dark);
  margin-bottom: 4px;
}
.contact__chat-icon svg { width: 36px; height: 36px; }
.contact__chat-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.contact__chat-sub {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 320px;
}

/* ── FOOTER ── */
.footer {
  background: var(--navy-deep);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand { max-width: 320px; }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer__mark {
  width: 32px; height: 32px;
  color: var(--teal);
  flex-shrink: 0;
}
.footer__wordmark {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
}
.footer__tagline {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-top: 2px;
}
.footer__desc {
  font-size: 14px;
  color: rgba(255,255,255,.4);
  line-height: 1.7;
  font-weight: 300;
}

.footer__nav-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(255,255,255,.3);
  margin-bottom: 16px;
}
.footer__nav-link {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,.55);
  padding: 6px 0;
  transition: color .15s;
}
.footer__nav-link:hover { color: #fff; }
.footer__email {
  display: block;
  font-size: 14px;
  color: var(--teal);
  margin-bottom: 20px;
  transition: opacity .15s;
  word-break: break-all;
}
.footer__email:hover { opacity: .8; }
.footer__cta { font-size: 13px; padding: 10px 20px; }

.footer__bottom {
  padding: 20px 0;
  background: rgba(0,0,0,.2);
}
.footer__bottom-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.25);
}

/* ── ANIMATIONS ── */
[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-animate="fade-left"] { transform: translateX(24px); }
[data-animate].in-view {
  opacity: 1;
  transform: translate(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .wwd__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { display: none; }
  .hiw__steps { flex-direction: column; }
  .hiw__connector { width: 100%; height: 48px; padding: 0; padding-left: 80px; }
  .hiw__connector span { width: 1.5px; height: 100%; background: linear-gradient(to bottom, var(--teal), rgba(0,198,161,.3)); }
}

@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .navbar__links, .navbar__cta { display: none; }
  .navbar__hamburger { display: flex; }
  .hero__h1 { font-size: 2.5rem; }
  .wwd__grid { grid-template-columns: 1fr; }
  .platforms__grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; text-align: center; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
  .trust__inner { justify-content: center; }
  .trust__label { display: none; }
  .section__header { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .hiw__step { padding: 28px 20px; }
}

/* ── DARK MODE ── */
@media (prefers-color-scheme: dark) {
  :root {
    --bg-warm:    #0A1628;
    --bg-section: #0D1E35;
    --bg-white:   #132033;
    --navy:       #E8EFF8;
    --slate:      #8A9AB0;
    --border:     rgba(255,255,255,.1);
  }
  .navbar { background: rgba(10,22,40,.92); }
  .navbar__wordmark { color: #fff; }
  .navbar__link { color: rgba(255,255,255,.55); }
  .navbar__link:hover { color: #fff; background: rgba(255,255,255,.06); }
  .navbar__hamburger span { background: #fff; }
  .navbar__mobile { background: #132033; }
  .navbar__mobile-link { color: #fff; }
  .trust { background: #0D1E35; }
  .trust__logo-item { color: rgba(255,255,255,.45); }
  .section__h2 { color: #fff; }
  .hiw__step { background: #132033; }
  .hiw__step-title { color: #fff; }
  .wwd__card { background: #132033; }
  .wwd__card-title { color: #fff; }
  .platforms__card { background: #132033; }
  .contact__card { background: #132033; }
  .contact__chat-title { color: #fff; }
  .faq__question { color: #fff; }
  .faq__answer p { color: var(--slate); }
}
