/* goedkopemarketing.com
   Aesthetic: Warm-paper editorial. Off-white papier, terracotta primair, teal secundair, diepe ink-navy.
   Fraunces (display) + Inter (body). Prijsladder-paneel + ticker-band. Geen em-dash. */

:root {
  --paper: #FBF7F0;
  --paper-warm: #F4ECDF;
  --ink: #19202E;
  --ink-deep: #11161F;
  --ink-soft: #565E6E;
  --ink-faint: #8B92A0;
  --surface: #FFFFFF;
  --line: #E7DECF;
  --line-strong: #D6C9B3;
  --primary: #DB4F33;
  --primary-dark: #B83C24;
  --primary-soft: #FBE4DC;
  --teal: #157F70;
  --teal-dark: #0F6557;
  --teal-soft: #D6ECE7;
  --gold: #C9962B;
  --radius-xs: 6px; --radius-sm: 10px; --radius: 16px; --radius-lg: 26px;
  --shadow-sm: 0 1px 2px rgba(25,32,46,0.05);
  --shadow: 0 10px 28px -12px rgba(25,32,46,0.22);
  --shadow-lg: 0 34px 60px -28px rgba(219,79,51,0.30), 0 10px 22px -14px rgba(25,32,46,0.18);
  --maxw: 1160px; --maxw-narrow: 740px;
  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font-body); font-size: 17px; line-height: 1.7; color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--primary-dark); text-decoration: none; }
a:hover { color: var(--primary); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.08; color: var(--ink); margin: 0; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.6vw, 4.1rem); font-weight: 600; }
h2 { font-size: clamp(1.85rem, 4vw, 2.85rem); }
h3 { font-size: 1.4rem; }
h4 { font-family: var(--font-body); font-weight: 700; font-size: 0.95rem; letter-spacing: 0.02em; }
p { margin: 0 0 1rem; }
strong { font-weight: 700; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: var(--maxw-narrow); }
.accent { color: var(--primary); font-style: italic; }
.lead { font-size: 1.22rem; line-height: 1.6; color: var(--ink-soft); }

/* Ticker band */
.ticker { background: var(--ink-deep); color: #E9DECD; overflow: hidden; border-bottom: 1px solid #2a3242; }
.ticker-inner { max-width: var(--maxw); margin: 0 auto; padding: 0.5rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.8rem; }
.ticker-left { display: flex; align-items: center; gap: 0.5rem; letter-spacing: 0.01em; }
.ticker-pip { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 0 4px rgba(219,79,51,0.18); }
.ticker-right { display: flex; gap: 1.5rem; align-items: center; }
.ticker-right a { color: #F4ECDF; }
.ticker-right a:hover { color: #fff; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 60; background: rgba(251,247,240,0.86); backdrop-filter: saturate(170%) blur(14px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0.9rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: baseline; gap: 0.45rem; font-family: var(--font-display); font-weight: 600; font-size: 1.42rem; color: var(--ink); letter-spacing: -0.02em; }
.brand:hover { color: var(--ink); }
.brand-tick { font-family: var(--font-body); font-weight: 800; color: var(--primary); font-size: 1.5rem; line-height: 0; }
.brand small { font-family: var(--font-body); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-dark); align-self: center; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: 1.9rem; margin: 0; padding: 0; }
.nav-menu a { color: var(--ink-soft); font-weight: 500; font-size: 0.95rem; }
.nav-menu a:hover, .nav-menu a.active { color: var(--ink); }
.nav-cta { background: var(--ink); color: #fff !important; padding: 0.6rem 1.2rem; border-radius: var(--radius-xs); font-weight: 600 !important; }
.nav-cta:hover { background: var(--primary); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; cursor: pointer; color: var(--ink); line-height: 1; }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; padding: 0.9rem 1.7rem; border-radius: var(--radius-xs); font-weight: 600; font-size: 0.98rem; font-family: var(--font-body); cursor: pointer; border: 1.5px solid transparent; transition: transform 0.12s ease, background 0.18s ease, border-color 0.18s ease; }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-secondary:hover { border-color: var(--ink); color: var(--ink); }
.btn-teal { background: var(--teal); color: #fff; box-shadow: var(--shadow); }
.btn-teal:hover { background: var(--teal-dark); color: #fff; }
.btn-ghost { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 600; font-size: 0.93rem; color: var(--primary-dark); }
.btn-ghost:hover { gap: 0.7rem; color: var(--primary); }

/* Tag / eyebrow */
.tag { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-body); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--primary-dark); }
.tag::before { content: ""; width: 22px; height: 2px; background: var(--primary); display: inline-block; }
.eyebrow { display: inline-block; font-family: var(--font-body); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 0.9rem; }

/* Hero */
.hero { position: relative; padding: clamp(3rem,7vw,5.5rem) 0 clamp(3rem,6vw,4.75rem); background: radial-gradient(1000px 420px at 90% -5%, var(--primary-soft), transparent 65%), var(--paper); border-bottom: 1px solid var(--line); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3.25rem; align-items: center; }
.hero h1 { margin-top: 1.4rem; }
.hero-cta-group { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-top: 2.1rem; }
.hero-points { list-style: none; margin: 2.6rem 0 0; padding: 1.75rem 0 0; border-top: 1px dashed var(--line-strong); display: grid; gap: 0.85rem; }
.hero-points li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.96rem; color: var(--ink-soft); }
.hero-points li b { color: var(--ink); font-weight: 700; }
.hero-points .mark { color: var(--teal); font-weight: 800; flex: 0 0 auto; }

/* Price ladder panel (hero aside) */
.ladder { background: var(--ink-deep); color: #fff; border-radius: var(--radius-lg); padding: 1.9rem 1.75rem; box-shadow: var(--shadow-lg); position: relative; }
.ladder-flag { position: absolute; top: -14px; left: 22px; background: var(--primary); color: #fff; font-family: var(--font-body); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; padding: 0.4rem 0.85rem; border-radius: var(--radius-xs); }
.ladder h3 { color: #fff; font-size: 1.2rem; }
.ladder-sub { font-size: 0.85rem; color: #9AA3B4; margin: 0.25rem 0 1.4rem; }
.ladder-rung { display: flex; justify-content: space-between; align-items: baseline; padding: 0.85rem 0; border-top: 1px solid #2a3242; }
.ladder-rung:first-of-type { border-top: 0; }
.ladder-rung .lab { font-size: 0.92rem; color: #D8DEE9; }
.ladder-rung .lab small { display: block; color: #8B92A0; font-size: 0.76rem; }
.ladder-rung .amt { font-family: var(--font-display); font-size: 1.5rem; color: #fff; white-space: nowrap; }
.ladder-rung .amt span { font-family: var(--font-body); font-size: 0.74rem; color: #9AA3B4; font-weight: 500; }
.ladder-foot { margin-top: 1.3rem; font-size: 0.8rem; color: #9AA3B4; line-height: 1.55; }

/* Stat band */
.statband { background: var(--paper-warm); border-bottom: 1px solid var(--line); }
.statband-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; padding: 2.5rem 0; }
.stat { text-align: left; padding-left: 1.1rem; border-left: 3px solid var(--primary); }
.stat:nth-child(2) { border-color: var(--teal); }
.stat:nth-child(3) { border-color: var(--gold); }
.stat:nth-child(4) { border-color: var(--ink); }
.stat-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--ink); line-height: 1; }
.stat-label { font-size: 0.84rem; color: var(--ink-soft); margin-top: 0.4rem; }

/* Sections */
.section { padding: clamp(3.5rem,7vw,5.75rem) 0; }
.section.dark { background: var(--ink-deep); color: #fff; }
.section.warm { background: var(--paper-warm); }
.section-head { max-width: 700px; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin-top: 0.4rem; }
.section-head p { margin-top: 1rem; color: var(--ink-soft); }
.section.dark .section-head p { color: #9AA3B4; }
.section.dark .eyebrow { color: #F0C9A0; }
.section.dark h2, .section.dark h3 { color: #fff; }

/* Service list (numbered editorial rows) */
.svc-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.svc-row { display: grid; grid-template-columns: auto 1fr auto; gap: 1.75rem; align-items: center; padding: 1.9rem 0.5rem; border-bottom: 1px solid var(--line); transition: background 0.18s ease, padding 0.18s ease; }
.svc-row:hover { background: var(--surface); padding-left: 1.1rem; padding-right: 1.1rem; }
.svc-no { font-family: var(--font-display); font-size: 1.5rem; color: var(--primary); font-weight: 600; min-width: 2.5rem; }
.svc-body h3 { margin-bottom: 0.35rem; }
.svc-body h3 a { color: var(--ink); }
.svc-body h3 a:hover { color: var(--primary-dark); }
.svc-body p { color: var(--ink-soft); margin: 0; font-size: 0.97rem; max-width: 56ch; }
.svc-arrow { font-size: 1.4rem; color: var(--ink-faint); transition: transform 0.18s ease, color 0.18s ease; }
.svc-row:hover .svc-arrow { color: var(--primary); transform: translateX(4px); }

/* Why cards */
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.why-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.85rem; position: relative; }
.why-card .why-no { font-family: var(--font-body); font-weight: 800; font-size: 0.8rem; color: var(--teal); letter-spacing: 0.1em; }
.why-card h3 { margin: 0.75rem 0 0.5rem; font-size: 1.25rem; }
.why-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* Editorial split */
.split { display: grid; grid-template-columns: 1fr 0.85fr; gap: 3.25rem; align-items: center; }
.pullquote { border-left: 4px solid var(--primary); padding: 0.5rem 0 0.5rem 1.75rem; }
.pullquote p { font-family: var(--font-display); font-size: 1.65rem; font-weight: 500; line-height: 1.3; color: var(--ink); }
.pullquote cite { display: block; margin-top: 1.1rem; font-style: normal; font-size: 0.9rem; color: var(--ink-soft); }
.pullquote cite b { color: var(--ink); }
.section.dark .pullquote p { color: #fff; }
.section.dark .pullquote cite { color: #9AA3B4; }
.section.dark .pullquote cite b { color: #fff; }

/* Process */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding-top: 2.75rem; }
.step::before { counter-increment: step; content: "0" counter(step); position: absolute; top: 0; left: 0; font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--primary); }
.step::after { content: ""; position: absolute; top: 0.7rem; left: 2.6rem; right: 0; height: 1px; background: rgba(255,255,255,0.14); }
.step:last-child::after { display: none; }
.step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.step p { color: #9AA3B4; font-size: 0.93rem; margin: 0; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: stretch; }
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.8rem; display: flex; flex-direction: column; }
.price-card.feat { background: var(--ink-deep); color: #fff; border-color: var(--ink-deep); box-shadow: var(--shadow-lg); position: relative; }
.price-card.feat::after { content: "Populair"; position: absolute; top: 1.4rem; right: 1.4rem; background: var(--primary); color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; padding: 0.3rem 0.7rem; border-radius: var(--radius-xs); }
.price-tier { font-family: var(--font-body); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal-dark); }
.price-card.feat .price-tier { color: #F0C9A0; }
.price-card h3 { margin: 0.65rem 0; }
.price-card.feat h3 { color: #fff; }
.price-desc { font-size: 0.92rem; color: var(--ink-soft); min-height: 2.8rem; }
.price-card.feat .price-desc { color: #B6BEC9; }
.price-amt { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; margin: 0.5rem 0 1.3rem; }
.price-amt .unit { font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); }
.price-card.feat .price-amt .unit { color: #B6BEC9; }
.price-feats { list-style: none; margin: 0 0 1.6rem; padding: 0; display: grid; gap: 0.65rem; flex: 1; }
.price-feats li { font-size: 0.92rem; padding-left: 1.7rem; position: relative; color: var(--ink-soft); }
.price-card.feat .price-feats li { color: #C6CDD7; }
.price-feats li::before { content: "+"; position: absolute; left: 0; top: 0; font-weight: 800; color: var(--primary); }
.price-card.feat .price-feats li::before { color: #F0C9A0; }

/* FAQ */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 0.7rem; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.section.dark .faq-item { background: #1b2331; border-color: #2c3545; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 1.2rem 1.4rem; font-family: var(--font-body); font-weight: 600; font-size: 1.02rem; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.section.dark .faq-q { color: #fff; }
.faq-q::after { content: ""; width: 11px; height: 11px; border-right: 2px solid var(--primary); border-bottom: 2px solid var(--primary); transform: rotate(45deg); transition: transform 0.22s ease; flex: 0 0 auto; margin-top: -4px; }
.faq-item.open .faq-q::after { transform: rotate(-135deg); margin-top: 2px; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.faq-item.open .faq-a { max-height: 640px; }
.faq-a p { padding: 0 1.4rem 1.25rem; margin: 0; color: var(--ink-soft); }
.section.dark .faq-a p { color: #B6BEC9; }

/* Blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform 0.18s ease, box-shadow 0.18s ease; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-cover { height: 9px; background: var(--primary); }
.blog-cover.teal { background: var(--teal); }
.blog-cover.gold { background: var(--gold); }
.blog-cover.ink { background: var(--ink); }
.blog-content { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-kicker { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 0.65rem; }
.blog-card h3 { font-size: 1.22rem; margin-bottom: 0.9rem; line-height: 1.2; }
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--primary-dark); }
.blog-meta { font-size: 0.81rem; color: var(--ink-faint); margin-top: auto; }

/* CTA */
.cta { position: relative; background: var(--primary); color: #fff; text-align: center; padding: clamp(3.5rem,8vw,5.5rem) 0; overflow: hidden; }
.cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% 120%, rgba(255,255,255,0.16), transparent 60%); pointer-events: none; }
.cta h2 { color: #fff; max-width: 680px; margin: 0 auto 1rem; }
.cta p { color: rgba(255,255,255,0.9); max-width: 560px; margin: 0 auto 2rem; }
.cta .btn-secondary { border-color: rgba(255,255,255,0.55); color: #fff; }
.cta .btn-secondary:hover { background: #fff; color: var(--primary-dark); border-color: #fff; }
.cta-mark { position: absolute; left: -2rem; bottom: -5rem; font-family: var(--font-display); font-size: 17rem; font-weight: 600; line-height: 1; color: rgba(255,255,255,0.10); pointer-events: none; }

/* Footer */
.footer { background: var(--ink-deep); color: #9AA3B4; padding: 3.75rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand .brand { color: #fff; margin-bottom: 1rem; }
.footer-brand .brand small { color: #F0C9A0; }
.footer-brand p { font-size: 0.9rem; max-width: 330px; }
.footer-contact { font-size: 0.9rem; margin-top: 1rem; line-height: 1.75; }
.footer-contact a { color: #E9DECD; }
.footer h4 { color: #fff; margin-bottom: 1rem; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-col a { color: #9AA3B4; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-col li { font-size: 0.92rem; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid #232b3a; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; font-size: 0.82rem; }
.footer-bottom a { color: #9AA3B4; }

/* Breadcrumbs */
.crumbs { border-bottom: 1px solid var(--line); background: var(--paper); }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; padding: 0.85rem 0; font-size: 0.84rem; }
.crumbs li { color: var(--ink-soft); }
.crumbs li + li::before { content: "/"; margin-right: 0.5rem; color: var(--ink-faint); }
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--primary-dark); }

/* Page header */
.page-head { padding: clamp(2.75rem,6vw,4.25rem) 0 clamp(2rem,4vw,3rem); background: radial-gradient(820px 360px at 88% -25%, var(--primary-soft), transparent 65%), var(--paper); border-bottom: 1px solid var(--line); }
.page-head h1 { max-width: 900px; }

/* Prose */
.prose { font-size: 1.07rem; }
.prose h2 { margin: 3rem 0 1rem; }
.prose h3 { margin: 2rem 0 0.6rem; }
.prose > *:first-child { margin-top: 0; }
.prose ul { padding-left: 1.3rem; margin: 0 0 1.25rem; }
.prose li { margin-bottom: 0.5rem; }
.prose a { text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--line-strong); }
.prose a:hover { text-decoration-color: var(--primary); }
.prose blockquote { margin: 2rem 0; padding: 1.4rem 1.6rem; border-left: 4px solid var(--teal); background: var(--teal-soft); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; line-height: 1.35; }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2.75rem 0 1.75rem; }
.prose .related { font-size: 0.88rem; color: var(--ink-soft); }

/* Article */
.article-head { padding: clamp(2.5rem,6vw,4rem) 0 1.5rem; background: var(--paper); }
.article-kicker { display: inline-block; font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal-dark); margin-bottom: 0.9rem; }
.article-head h1 { max-width: 760px; }
.article-meta { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.3rem; font-size: 0.88rem; color: var(--ink-soft); flex-wrap: wrap; }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }
.article-body { max-width: var(--maxw-narrow); margin: 0 auto; padding: 2rem 1.5rem 1rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 3rem; align-items: start; }
.contact-info { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.85rem; box-shadow: var(--shadow-sm); }
.contact-line { padding: 0.95rem 0; border-bottom: 1px solid var(--line); }
.contact-line:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-line:first-child { padding-top: 0; }
.contact-line .lab { font-size: 0.73rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 0.3rem; }
.contact-line .val { font-size: 1.08rem; font-weight: 600; }
.contact-line .val a { color: var(--primary-dark); }

/* Form */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }
.form input, .form select, .form textarea { width: 100%; padding: 0.78rem 0.95rem; border: 1.5px solid var(--line-strong); border-radius: var(--radius-xs); font-family: var(--font-body); font-size: 0.97rem; background: var(--surface); color: var(--ink); }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.form textarea { resize: vertical; }
.form .fineprint { font-size: 0.8rem; color: var(--ink-soft); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Map */
.map-wrap { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }

@media (max-width: 900px) {
  .hero-grid, .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .price-grid, .blog-grid, .why-grid { grid-template-columns: 1fr; }
  .statband-grid { grid-template-columns: repeat(2,1fr); gap: 1.75rem; }
  .steps { grid-template-columns: repeat(2,1fr); gap: 2rem; }
  .step::after { display: none; }
}
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-menu { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0; background: var(--surface); border-bottom: 1px solid var(--line); padding: 0.5rem 1.5rem 1rem; box-shadow: var(--shadow); display: none; }
  .nav-menu.open { display: flex; }
  .nav-menu li { padding: 0.45rem 0; }
  .nav-cta { text-align: center; margin-top: 0.5rem; }
  .svc-row { grid-template-columns: auto 1fr; }
  .svc-arrow { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .ticker-left { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 480px) {
  .statband-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
