/* ============================================================
   Ananas GDS — Modern Site Stylesheet
   Brand-faithful: gold / beige / navy · Open Sans + DM Sans
   ============================================================ */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --gold:        #c9a24a;
  --gold-dark:   #a8873a;
  --gold-soft:   #e3c98a;
  --gold-tint:   rgba(201, 162, 74, 0.10);

  --bg:          #f4f2ee;
  --bg-warm:     #efece5;
  --white:       #ffffff;
  --card:        #fbfaf7;

  --navy:        #1e2d3d;
  --navy-2:      #2c3a4b;
  --navy-3:      #34465a;

  --text:        #2c3345;
  --text-mid:    #5a6070;
  --text-soft:   #8b909c;
  --border:      #e5e0d8;
  --border-soft: #efebe3;

  /* Type */
  --font-head: 'Open Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Spacing / shape */
  --radius:     14px;
  --radius-sm:  10px;
  --radius-lg:  22px;
  --maxw:       1200px;
  --gutter:     clamp(20px, 5vw, 48px);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(30, 45, 61, 0.05);
  --shadow:     0 12px 32px rgba(30, 45, 61, 0.08);
  --shadow-lg:  0 30px 70px rgba(30, 45, 61, 0.16);
  --shadow-gold: 0 18px 50px rgba(201, 162, 74, 0.25);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* Subtle grain / atmosphere on the whole page */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image: radial-gradient(circle at 15% 12%, rgba(201,162,74,0.07), transparent 36%),
                    radial-gradient(circle at 88% 8%, rgba(44,58,75,0.05), transparent 40%);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--navy); line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.1rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 1.9vw, 1.55rem); }
p  { color: var(--text-mid); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--gold);
  display: inline-block;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-mid); }

/* gold underline accent for inline emphasis */
.hl { color: var(--navy); position: relative; white-space: nowrap; }
.hl::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0.06em;
  height: 0.34em;
  background: linear-gradient(90deg, var(--gold-soft), var(--gold));
  opacity: 0.45; z-index: -1; border-radius: 2px;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 1; }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; z-index: 1; }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section-head { max-width: 660px; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow.center { justify-content: center; }
.section-head h2 { margin: 16px 0 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  padding: 14px 26px; border-radius: 100px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; transition: transform .35s var(--ease); }
.btn-primary { background: var(--navy); color: var(--white); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--navy-2); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 24px 60px rgba(201,162,74,.36); }
.btn-gold:hover svg { transform: translateX(4px); }
.btn-ghost { background: transparent; color: var(--navy); border: 1.5px solid var(--border); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-3px); }
.btn-lg { padding: 17px 34px; font-size: 1rem; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease), border-color .4s;
  padding: 22px 0;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(244, 242, 238, 0.82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  box-shadow: var(--shadow-sm);
  padding: 13px 0;
  border-bottom-color: var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 11px; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--navy); letter-spacing: -0.02em; }
.logo span { color: var(--gold-dark); }
/* placeholder logo mark — swap with real <img src="assets/logo.png"> */
.logo-mark {
  width: 36px; height: 36px; border-radius: 9px; flex: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: 1rem;
  box-shadow: var(--shadow-gold);
}
.logo img { height: 38px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-head); font-weight: 600; font-size: 0.94rem; color: var(--text);
  padding: 9px 16px; border-radius: 100px; transition: color .25s, background .25s;
}
.nav-links a:hover { color: var(--gold-dark); background: var(--gold-tint); }
.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-burger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s var(--ease); }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding-top: 120px; padding-bottom: 70px;
  overflow: hidden;
}
/* video / media layer */
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
/* animated gradient fallback shown until/behind the video */
.hero-fallback {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, #1e2d3d, #2c3a4b 40%, #3a4f66 70%, #1e2d3d);
  background-size: 280% 280%;
  animation: heroGradient 18s ease infinite;
}
@keyframes heroGradient { 0%{background-position:0% 50%} 50%{background-position:100% 50%} 100%{background-position:0% 50%} }
/* readability overlays */
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,30,42,.92) 0%, rgba(20,30,42,.74) 42%, rgba(20,30,42,.40) 100%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .5; mix-blend-mode: overlay;
  background-image: radial-gradient(circle at 30% 20%, rgba(201,162,74,.18), transparent 45%);
}

.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero .eyebrow { color: var(--gold-soft); }
.hero .eyebrow::before { background: var(--gold-soft); }
.hero h1 { color: #fff; margin: 20px 0 24px; }
.hero h1 .hl { color: #fff; }
.hero h1 .hl::after { opacity: .85; height: .26em; }
.hero p { color: rgba(255,255,255,.82); font-size: clamp(1.05rem, 1.5vw, 1.28rem); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 44px; }
.hero-trust span { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.72); font-size: .85rem; font-weight: 500; }
.hero-trust svg { width: 16px; height: 16px; color: var(--gold-soft); }

/* scroll cue */
.scroll-cue { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: 8px; color: rgba(255,255,255,.6); }
.scroll-cue .mouse { width: 24px; height: 38px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; position: relative; }
.scroll-cue .mouse::after { content:""; position:absolute; left:50%; top:7px; width:4px; height:7px; background:var(--gold-soft); border-radius:3px; transform:translateX(-50%); animation: scrollDot 1.7s var(--ease) infinite; }
@keyframes scrollDot { 0%{opacity:0; transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0; transform:translate(-50%,12px)} 100%{opacity:0} }

/* ---------- Logo / partner marquee ---------- */
.marquee-strip { background: var(--white); border-block: 1px solid var(--border); padding: 22px 0; overflow: hidden; }
.marquee-label { text-align: center; font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--text-soft); font-weight: 700; font-family: var(--font-head); margin-bottom: 16px; }
.marquee { display: flex; gap: 56px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee span { font-family: var(--font-head); font-weight: 700; font-size: 1.15rem; color: var(--text-soft); white-space: nowrap; opacity: .7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   GENERIC SECTIONS / CARDS
   ============================================================ */
.bg-white { background: var(--white); }
.bg-warm  { background: var(--bg-warm); }
.bg-navy  { background: var(--navy); color: #fff; }
.bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy p { color: rgba(255,255,255,.78); }
.bg-navy .eyebrow { color: var(--gold-soft); }
.bg-navy .eyebrow::before { background: var(--gold-soft); }

.grid { display: grid; gap: 24px; }
.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: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  position: relative; overflow: hidden;
}
.card::before {
  content:""; position:absolute; inset:0; border-radius: inherit; padding:1px;
  background: linear-gradient(135deg, var(--gold), transparent 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity:0; transition: opacity .4s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { opacity: 1; }
.card-icon {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px;
  background: var(--gold-tint); color: var(--gold-dark);
  transition: transform .4s var(--ease), background .4s;
}
.card:hover .card-icon { transform: scale(1.08) rotate(-4deg); background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff; }
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .97rem; }
.card-num { font-family: var(--font-head); font-weight: 800; font-size: .85rem; color: var(--gold); letter-spacing: .1em; }

/* split feature row */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.split.reverse .split-media { order: -1; }
.split-media {
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border);
  box-shadow: var(--shadow); background: var(--white); aspect-ratio: 4/3;
}

/* placeholder graphic block — replace with real image */
.ph {
  width: 100%; height: 100%; min-height: 240px; display: grid; place-items: center; text-align: center; gap: 6px;
  background:
    linear-gradient(135deg, rgba(201,162,74,.10), rgba(44,58,75,.06)),
    repeating-linear-gradient(45deg, transparent, transparent 18px, rgba(44,58,75,.035) 18px, rgba(44,58,75,.035) 19px);
  color: var(--text-soft); font-family: var(--font-head); font-weight: 700; font-size: .82rem; letter-spacing: .06em;
}
.ph small { display:block; font-weight:500; letter-spacing:0; text-transform:none; color: var(--text-soft); font-family: var(--font-body); font-size: .8rem; opacity: .8; }
.ph svg { width: 40px; height: 40px; opacity: .5; margin-bottom: 4px; }

/* stat row */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3rem); color: var(--gold-dark); line-height: 1; }
.bg-navy .stat .num { color: var(--gold-soft); }
.stat .lbl { font-size: .9rem; color: var(--text-mid); margin-top: 8px; }
.bg-navy .stat .lbl { color: rgba(255,255,255,.7); }

/* check list */
.checks { display: grid; gap: 14px; margin-top: 8px; }
.checks li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-mid); }
.checks li svg { width: 22px; height: 22px; color: var(--gold-dark); flex: none; margin-top: 1px; }
.bg-navy .checks li { color: rgba(255,255,255,.82); }
.bg-navy .checks li svg { color: var(--gold-soft); }

/* audience cards */
.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.aud {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px 30px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.aud:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.aud .tag { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700; color: var(--gold-dark); font-family: var(--font-head); }
.aud h3 { margin: 12px 0 12px; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 860px; margin-inline: auto; }
.plan {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px 34px;
  position: relative; transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan.featured { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.plan.featured::after {
  content: "Most popular"; position: absolute; top: 18px; right: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.plan .plan-name { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--navy); }
.plan .plan-price { font-family: var(--font-head); font-weight: 800; font-size: 2.8rem; color: var(--navy); margin: 14px 0 4px; }
.plan .plan-price small { font-size: 1rem; font-weight: 600; color: var(--text-soft); }
.plan .plan-desc { font-size: .93rem; margin-bottom: 22px; }
.plan .btn { width: 100%; justify-content: center; margin-bottom: 26px; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; overflow: hidden; }
.cta-band .wrap { text-align: center; }
.cta-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: var(--radius-lg); padding: clamp(48px, 7vw, 80px) clamp(28px, 5vw, 64px);
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-card::before { content:""; position:absolute; top:-40%; right:-10%; width:480px; height:480px; border-radius:50%;
  background: radial-gradient(circle, rgba(201,162,74,.28), transparent 65%); }
.cta-card h2 { color: #fff; margin-bottom: 16px; }
.cta-card p { color: rgba(255,255,255,.78); max-width: 520px; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FORMS (contact)
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-head); font-weight: 600; font-size: .85rem; color: var(--navy); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: .97rem; color: var(--text);
  background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  padding: 13px 15px; transition: border-color .25s, box-shadow .25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px var(--gold-tint); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: clamp(56px,7vw,84px) 0 30px; position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.10); }
.footer .logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: .92rem; max-width: 300px; }
.footer-col h4 { color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a { display: block; color: rgba(255,255,255,.65); font-size: .92rem; padding: 6px 0; transition: color .25s, transform .25s; }
.footer-col a:hover { color: var(--gold-soft); transform: translateX(4px); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding-top: 24px; font-size: .85rem; color: rgba(255,255,255,.5); flex-wrap: wrap; }
.footer-badges { display: flex; gap: 16px; }
.footer-badges span { display: flex; align-items: center; gap: 6px; }
.footer-badges svg { width: 14px; height: 14px; color: var(--gold-soft); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; scroll-behavior: auto; }
}

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-hero { padding: 150px 0 60px; background: linear-gradient(180deg, var(--navy), var(--navy-2)); position: relative; overflow: hidden; }
.page-hero::after { content:""; position:absolute; bottom:-1px; left:0; right:0; height:40px; background: var(--bg); border-radius: 50% 50% 0 0 / 100% 100% 0 0; }
.page-hero .wrap { position: relative; z-index: 2; max-width: 760px; }
.page-hero .eyebrow { color: var(--gold-soft); }
.page-hero .eyebrow::before { background: var(--gold-soft); }
.page-hero h1 { color: #fff; margin: 18px 0 16px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: clamp(1.02rem,1.5vw,1.2rem); max-width: 560px; }
.page-hero .deco { position:absolute; top:-30%; right:-6%; width:420px; height:420px; border-radius:50%; background: radial-gradient(circle, rgba(201,162,74,.22), transparent 65%); z-index:1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-burger { display: flex; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 86vw); z-index: 99;
    background: var(--white); box-shadow: var(--shadow-lg); padding: 96px 28px 28px;
    display: flex; flex-direction: column; gap: 6px;
    transform: translateX(100%); transition: transform .4s var(--ease); visibility: hidden;
  }
  .nav-menu.open { transform: none; visibility: visible; }
  .nav-menu a { font-family: var(--font-head); font-weight: 600; padding: 13px 14px; border-radius: 10px; color: var(--text); }
  .nav-menu a:hover { background: var(--gold-tint); color: var(--gold-dark); }
  .nav-menu .btn { margin-top: 12px; justify-content: center; }
  .nav-overlay { position: fixed; inset: 0; background: rgba(20,30,42,.4); z-index: 98; opacity: 0; visibility: hidden; transition: .35s; }
  .nav-overlay.open { opacity: 1; visibility: visible; }

  .grid-3, .grid-4, .audience, .stats { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4, .audience, .price-grid, .form-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .hero { min-height: auto; }
}

/* desktop: hide mobile-only menu container */
@media (min-width: 941px) {
  .nav-menu { display: contents; }
  .nav-overlay, .nav-burger { display: none; }
}
