/* ==========================================================================
   Capstan & Co. — Marketing Consulting
   Palette: Umbra Black #252932 · Deep Emerald #355B4A · Ivory White #FBFAF8
            Graphite Gray #555C65 · Gold Accent #C9A24C
   ========================================================================== */

:root {
  --umbra: #252932;
  --umbra-90: #2c313c;
  --umbra-80: #343a47;
  --emerald: #355B4A;
  --emerald-dark: #29483a;
  --emerald-soft: #3f6b57;
  --ivory: #FBFAF8;
  --graphite: #555C65;
  --graphite-light: #7b828c;
  --gold: #C9A24C;
  --gold-soft: #d8b769;
  --line: rgba(251, 250, 248, 0.12);
  --line-dark: rgba(37, 41, 50, 0.12);
  --shadow-lg: 0 24px 60px -24px rgba(15, 18, 24, 0.55);
  --shadow-sm: 0 10px 30px -18px rgba(15, 18, 24, 0.5);
  --radius: 16px;
  --radius-sm: 10px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --serif: "Georgia", "Times New Roman", serif;
  --sans: "Inter", "Segoe UI", system-ui, -apple-system, Roboto, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--umbra);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 0.5em; }
h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--gold); display: inline-block; }

.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--dark { background: var(--umbra); color: var(--ivory); }
.section--emerald { background: var(--emerald); color: var(--ivory); }
.section--tint { background: linear-gradient(180deg, #f2efe9 0%, var(--ivory) 100%); }
.section-head { max-width: 680px; margin-bottom: 54px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--graphite); font-size: 1.08rem; }
.section--dark .section-head p, .section--emerald .section-head p { color: rgba(251,250,248,0.72); }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--gold); --fg: var(--umbra);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 0.98rem;
  padding: 15px 30px; border-radius: 999px; border: 1px solid transparent;
  background: var(--bg); color: var(--fg); cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  will-change: transform; text-align: center;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -14px rgba(201,162,76,.6); }
.btn:focus-visible { outline: 3px solid var(--gold-soft); outline-offset: 3px; }
.btn--ghost { --bg: transparent; --fg: var(--ivory); border-color: var(--line); }
.btn--ghost:hover { background: rgba(251,250,248,.08); box-shadow: none; }
.btn--dark { --bg: var(--umbra); --fg: var(--ivory); }
.btn--dark:hover { box-shadow: 0 16px 30px -14px rgba(37,41,50,.5); }
.btn--outline-dark { --bg: transparent; --fg: var(--umbra); border-color: var(--line-dark); }
.btn--outline-dark:hover { background: rgba(37,41,50,.05); box-shadow: none; }
.btn--block { width: 100%; }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--emerald); transition: gap .3s var(--ease); }
.section--dark .link-arrow, .section--emerald .link-arrow { color: var(--gold); }
.link-arrow:hover { gap: 14px; }
.link-arrow svg { width: 16px; height: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(37,41,50,0.82); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line); color: var(--ivory);
  transition: background .3s var(--ease);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; font-family: var(--serif); font-size: 1.25rem; font-weight: 700; color: var(--ivory); }
.brand img { width: 38px; height: 38px; }
.brand span b { color: var(--gold); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: 0.95rem; font-weight: 500; color: rgba(251,250,248,.82); position: relative; padding: 6px 0; transition: color .25s var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--gold); transition: width .3s var(--ease); }
.nav-links a:hover { color: var(--ivory); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ivory); margin: 5px 0; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; color: var(--ivory); background: var(--umbra); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .28; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(37,41,50,.96) 0%, rgba(37,41,50,.78) 45%, rgba(53,91,74,.55) 100%); }
.hero-inner { position: relative; z-index: 2; padding: clamp(80px, 12vw, 150px) 0 clamp(70px, 9vw, 120px); max-width: 760px; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-lead { font-size: 1.18rem; color: rgba(251,250,248,.82); max-width: 620px; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }
.hero-metrics { display: flex; flex-wrap: wrap; gap: 40px; }
.hero-metrics .metric strong { display: block; font-family: var(--serif); font-size: 2rem; color: var(--gold); }
.hero-metrics .metric span { font-size: 0.86rem; color: rgba(251,250,248,.66); letter-spacing: .03em; }

/* ---------- Marquee / logos strip ---------- */
.strip { background: var(--umbra-90); color: var(--ivory); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 26px 0; }
.strip-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 22px; }
.strip-inner span { font-family: var(--serif); font-size: 1.05rem; color: rgba(251,250,248,.55); letter-spacing: .04em; }

/* ---------- Services ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--ivory); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(201,162,76,.5); }
.card .icon { width: 52px; height: 52px; border-radius: 12px; display: grid; place-items: center; background: rgba(53,91,74,.1); color: var(--emerald); margin-bottom: 20px; }
.card .icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--graphite); font-size: 0.98rem; margin-bottom: 16px; }
.card ul { margin: 0; padding-left: 18px; color: var(--graphite); font-size: 0.92rem; }
.card ul li { margin-bottom: 6px; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-media { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.split-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3.2; transition: transform .7s var(--ease); }
.split-media:hover img { transform: scale(1.05); }
.split-badge { position: absolute; left: 22px; bottom: 22px; background: rgba(37,41,50,.85); color: var(--ivory); padding: 14px 20px; border-radius: 12px; backdrop-filter: blur(6px); border: 1px solid var(--line); }
.split-badge strong { display: block; font-family: var(--serif); color: var(--gold); font-size: 1.4rem; }
.split-badge span { font-size: .82rem; color: rgba(251,250,248,.7); }

/* ---------- Process ---------- */
.steps { counter-reset: step; display: grid; gap: 4px; }
.step { display: grid; grid-template-columns: 68px 1fr; gap: 24px; padding: 28px 0; border-top: 1px solid var(--line); align-items: start; }
.section--emerald .step { border-top-color: rgba(251,250,248,.16); }
.step:last-child { border-bottom: 1px solid var(--line); }
.section--emerald .step:last-child { border-bottom-color: rgba(251,250,248,.16); }
.step-num { counter-increment: step; font-family: var(--serif); font-size: 1.5rem; color: var(--gold); }
.step-num::before { content: "0" counter(step); }
.step h3 { margin-bottom: 6px; }
.step p { color: rgba(251,250,248,.72); margin: 0; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: var(--ivory); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 36px 32px; display: flex; flex-direction: column; position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured { background: var(--umbra); color: var(--ivory); border-color: var(--gold); box-shadow: var(--shadow-lg); }
.price-tag-top { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--umbra); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; }
.price-card h3 { font-family: var(--sans); font-size: 1.05rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--emerald); margin-bottom: 6px; }
.price-card.featured h3 { color: var(--gold); }
.price-card .desc { color: var(--graphite); font-size: .92rem; min-height: 46px; }
.price-card.featured .desc { color: rgba(251,250,248,.72); }
.price { font-family: var(--serif); font-size: 2.6rem; margin: 14px 0 2px; }
.price small { font-family: var(--sans); font-size: .95rem; color: var(--graphite); font-weight: 500; }
.price-card.featured .price small { color: rgba(251,250,248,.7); }
.price-note { font-size: .82rem; color: var(--graphite-light); margin-bottom: 22px; }
.price-card.featured .price-note { color: rgba(251,250,248,.6); }
.price-card .divider { height: 1px; background: var(--line-dark); margin: 4px 0 22px; }
.price-card.featured .divider { background: var(--line); }
.feature-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 12px; }
.feature-list li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: var(--graphite); }
.price-card.featured .feature-list li { color: rgba(251,250,248,.85); }
.feature-list svg { width: 18px; height: 18px; flex: 0 0 18px; color: var(--emerald); margin-top: 3px; }
.price-card.featured .feature-list svg { color: var(--gold); }
.price-card .btn { margin-top: auto; }
.pricing-foot { text-align: center; margin-top: 34px; color: var(--graphite); font-size: .94rem; }

/* comparison table */
.table-wrap { overflow-x: auto; margin-top: 46px; border: 1px solid var(--line-dark); border-radius: var(--radius); }
table.compare { width: 100%; border-collapse: collapse; min-width: 620px; font-size: .95rem; }
table.compare th, table.compare td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--line-dark); }
table.compare thead th { background: #f2efe9; font-family: var(--sans); font-weight: 700; color: var(--umbra); }
table.compare tbody tr:last-child td { border-bottom: 0; }
table.compare td:not(:first-child), table.compare th:not(:first-child) { text-align: center; }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
  background: rgba(251,250,248,.04); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; gap: 18px;
}
.quote .mark { font-family: var(--serif); font-size: 3rem; line-height: .6; color: var(--gold); height: 24px; }
.quote p { font-size: 1rem; color: rgba(251,250,248,.86); margin: 0; }
.quote .who { display: flex; align-items: center; gap: 14px; margin-top: auto; }
.quote .who img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.quote .who strong { display: block; font-size: .95rem; }
.quote .who span { font-size: .82rem; color: rgba(251,250,248,.6); }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 10px; }
.stat strong { display: block; font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.9rem); color: var(--gold); }
.stat span { color: var(--graphite); font-size: .92rem; }
.section--dark .stat span { color: rgba(251,250,248,.68); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line-dark); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; padding: 24px 44px 24px 0; font-family: var(--serif); font-size: 1.12rem; color: var(--umbra); position: relative; }
.faq-q::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--gold); transition: transform .3s var(--ease); font-family: var(--sans); }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { color: var(--graphite); padding: 0 44px 24px 0; margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 52px; align-items: start; }
.contact-info h3 { color: var(--ivory); }
.contact-info .lead { color: rgba(251,250,248,.72); margin-bottom: 30px; }
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 20px; }
.info-list li { display: flex; gap: 16px; align-items: flex-start; }
.info-list .ic { width: 44px; height: 44px; flex: 0 0 44px; border-radius: 12px; background: rgba(201,162,76,.14); color: var(--gold); display: grid; place-items: center; }
.info-list .ic svg { width: 20px; height: 20px; }
.info-list .lbl { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(251,250,248,.55); }
.info-list a, .info-list p { color: var(--ivory); margin: 0; font-size: 1rem; }
.info-list a:hover { color: var(--gold); }
.hours { margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); font-size: .92rem; color: rgba(251,250,248,.68); }

.form-card { background: var(--ivory); border-radius: var(--radius); padding: 38px 34px; box-shadow: var(--shadow-lg); color: var(--umbra); }
.form-card h3 { margin-bottom: 6px; }
.form-card .sub { color: var(--graphite); font-size: .95rem; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .86rem; font-weight: 600; margin-bottom: 7px; }
.field label .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid #d8d3c8; border-radius: var(--radius-sm);
  font-family: inherit; font-size: .97rem; color: var(--umbra); background: #fff;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(53,91,74,.14); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #b4462f; box-shadow: 0 0 0 3px rgba(180,70,47,.12); }
.field .err { display: none; color: #b4462f; font-size: .8rem; margin-top: 6px; }
.field.invalid .err { display: block; }
.row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.check { display: flex; gap: 11px; align-items: flex-start; font-size: .86rem; color: var(--graphite); margin-bottom: 20px; }
.check input { width: 18px; height: 18px; margin-top: 3px; flex: 0 0 18px; accent-color: var(--emerald); }
.check a { color: var(--emerald); text-decoration: underline; }
.form-status { display: none; padding: 14px 16px; border-radius: var(--radius-sm); font-size: .92rem; margin-bottom: 18px; }
.form-status.ok { display: block; background: rgba(53,91,74,.12); color: var(--emerald-dark); border: 1px solid rgba(53,91,74,.3); }

/* ---------- Footer ---------- */
.site-footer { background: var(--umbra); color: rgba(251,250,248,.72); padding: 70px 0 32px; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid var(--line); }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: .94rem; max-width: 300px; }
.footer-col h4 { font-family: var(--sans); font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { font-size: .94rem; color: rgba(251,250,248,.72); transition: color .25s var(--ease); }
.footer-col a:hover { color: var(--ivory); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-top: 26px; font-size: .84rem; color: rgba(251,250,248,.5); }
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Cookie banner ---------- */
.cookie {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 90;
  max-width: 560px; margin: 0 auto; background: var(--umbra-90); color: var(--ivory);
  border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 26px;
  box-shadow: var(--shadow-lg); transform: translateY(140%); transition: transform .5s var(--ease);
}
.cookie.show { transform: translateY(0); }
.cookie h4 { font-family: var(--serif); margin: 0 0 8px; color: var(--ivory); }
.cookie p { font-size: .9rem; color: rgba(251,250,248,.74); margin: 0 0 18px; }
.cookie p a { color: var(--gold); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.cookie-actions .btn { padding: 11px 22px; font-size: .9rem; }

/* ---------- Legal / sub pages ---------- */
.page-hero { background: var(--umbra); color: var(--ivory); padding: clamp(70px, 10vw, 120px) 0 clamp(40px, 6vw, 70px); }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero p { color: rgba(251,250,248,.7); max-width: 640px; }
.legal { padding: clamp(50px, 7vw, 84px) 0; }
.legal-wrap { max-width: 820px; margin: 0 auto; }
.legal-wrap h2 { font-size: 1.5rem; margin-top: 40px; }
.legal-wrap h2:first-child { margin-top: 0; }
.legal-wrap h3 { font-size: 1.15rem; margin-top: 26px; }
.legal-wrap p, .legal-wrap li { color: var(--graphite); }
.legal-wrap ul { padding-left: 20px; }
.legal-wrap li { margin-bottom: 8px; }
.legal-wrap .updated { color: var(--graphite-light); font-size: .9rem; margin-bottom: 30px; }
.legal-wrap table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: .92rem; }
.legal-wrap table th, .legal-wrap table td { border: 1px solid var(--line-dark); padding: 11px 14px; text-align: left; }
.legal-wrap table th { background: #f2efe9; }
.back-home { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; font-weight: 600; color: var(--emerald); }
.back-home:hover { gap: 13px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .pricing-grid, .quote-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-band { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 720px) {
  .nav-links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: flex-start;
    background: var(--umbra); padding: 20px 24px; gap: 6px; border-bottom: 1px solid var(--line);
    transform: translateY(-140%); transition: transform .4s var(--ease); z-index: 55;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; width: 100%; }
  .nav-toggle { display: block; }
  .nav-actions .btn:not(.nav-toggle) { display: none; }
  .grid-3, .grid-2, .pricing-grid, .quote-grid { grid-template-columns: 1fr; }
  .row-2 { grid-template-columns: 1fr; }
  .hero-metrics { gap: 26px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  body { font-size: 16px; }
}
@media (max-width: 420px) {
  .container { padding: 0 18px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
