/* goedkopewebdesigner.nl
   Aesthetic: Fris en toegankelijk. Koel wit, elektrisch indigo/blauw + warm koraal accent.
   Space Grotesk (display) + Inter (body). Grote ronde prijskaarten, pill-vormen, zachte blauwe schaduwen.
   Bewust DUIDELIJK anders dan de zustersites: geen serif-koppen, geen lime/near-black, geen zand/teal.
   Geen em-dash tekens. */

:root {
  --bg: #F6F7FD;
  --bg-soft: #ECEEFA;
  --bg-deep: #1A1740;
  --bg-deeper: #120F30;
  --surface: #FFFFFF;
  --ink: #1B1A33;
  --ink-soft: #565676;
  --ink-faint: #8C8DAB;
  --line: #E4E5F4;
  --line-strong: #D2D3EC;
  --primary: #4F46E5;
  --primary-dark: #4338CA;
  --primary-deep: #3730A3;
  --primary-soft: #E8E7FB;
  --accent: #FF6B5C;
  --accent-dark: #ED4F3E;
  --accent-soft: #FFE4E0;
  --mint: #20C9A6;
  --amber: #F5A623;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 26px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(27,26,51,0.06);
  --shadow: 0 14px 34px -16px rgba(79,70,229,0.28), 0 4px 12px -8px rgba(27,26,51,0.10);
  --shadow-lg: 0 36px 70px -30px rgba(79,70,229,0.42), 0 12px 26px -14px rgba(27,26,51,0.14);
  --maxw: 1180px;
  --maxw-narrow: 760px;
  --font-display: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", 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.65;
  color: var(--ink); background: var(--bg); -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.07; letter-spacing: -0.02em; color: var(--ink); margin: 0; }
h1 { font-size: clamp(2.4rem, 6vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.75rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.02rem; font-family: var(--font-body); font-weight: 700; letter-spacing: 0; }
p { margin: 0 0 1rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { max-width: var(--maxw-narrow); }
.accent { color: var(--accent); }
.lead { font-size: 1.2rem; line-height: 1.6; color: var(--ink-soft); }

/* Topbar */
.topbar { background: var(--bg-deep); color: #B9B8DC; font-size: 0.82rem; }
.topbar-inner { max-width: var(--maxw); margin: 0 auto; padding: 0.55rem 1.5rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar-meta { display: flex; gap: 1.25rem; align-items: center; }
.topbar-meta a { color: #ECECFB; }
.topbar-meta a:hover { color: var(--accent); }
.topbar-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--mint); margin-right: 0.45rem; }

/* Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(246,247,253,0.86); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; padding: 0.85rem 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -0.02em; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 9px; background: var(--primary); color: #fff; font-weight: 700; font-size: 1.05rem; box-shadow: var(--shadow-sm); }
.brand small { color: var(--primary); font-weight: 600; font-size: 0.72em; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: 1.65rem; margin: 0; padding: 0; }
.nav-menu a { color: var(--ink-soft); font-weight: 500; font-size: 0.97rem; }
.nav-menu a:hover, .nav-menu a.active { color: var(--ink); }
.nav-cta { background: var(--primary); color: #fff !important; padding: 0.55rem 1.15rem; border-radius: var(--radius-pill); font-weight: 600; box-shadow: var(--shadow-sm); }
.nav-cta:hover { background: var(--primary-dark); }
.nav-toggle { display: none; background: none; border: 0; font-size: 1.5rem; color: var(--ink); cursor: pointer; line-height: 1; }

/* Crumbs */
.crumbs { background: var(--bg); border-bottom: 1px solid var(--line); font-size: 0.85rem; }
.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0; padding: 0.7rem 0; color: var(--ink-faint); }
.crumbs li { display: flex; align-items: center; gap: 0.5rem; }
.crumbs li:not(:last-child)::after { content: "/"; color: var(--line-strong); }
.crumbs a { color: var(--ink-soft); }
.crumbs [aria-current] { color: var(--ink); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; font-family: var(--font-body); font-weight: 600; font-size: 1rem; padding: 0.85rem 1.7rem; border-radius: var(--radius-pill); border: 2px solid transparent; cursor: pointer; transition: transform .12s ease, box-shadow .12s ease, background .15s ease; }
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }
.btn-secondary { background: var(--surface); color: var(--ink); border-color: var(--line-strong); }
.btn-secondary:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 14px 30px -14px rgba(255,107,92,0.55); }
.btn-accent:hover { background: var(--accent-dark); color: #fff; transform: translateY(-2px); }
.link-arrow { display: inline-flex; align-items: center; gap: 0.35rem; font-weight: 600; color: var(--primary); }
.link-arrow:hover { gap: 0.6rem; }

/* Tags / eyebrows */
.tag { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--primary-soft); color: var(--primary-deep); font-weight: 600; font-size: 0.82rem; padding: 0.4rem 0.95rem; border-radius: var(--radius-pill); letter-spacing: 0.01em; }
.eyebrow { display: inline-block; color: var(--accent-dark); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.6rem; }

/* Sections */
.section { padding: 4.5rem 0; }
.section.tight { padding: 3rem 0; }
.section.soft { background: var(--bg-soft); }
.section.dark { background: var(--bg-deep); color: #D6D6F0; }
.section.dark h2, .section.dark h3 { color: #fff; }
.section.dark .eyebrow { color: var(--accent); }
.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--ink-soft); margin-top: 0.75rem; }
.section.dark .section-head p { color: #B9B8DC; }

/* Page head */
.page-head { padding: 3.5rem 0 1.5rem; }
.page-head .lead { max-width: 660px; }

/* Hero */
.hero { padding: 4rem 0 3.5rem; position: relative; overflow: hidden; }
.hero::before { content: ""; position: absolute; top: -180px; right: -160px; width: 540px; height: 540px; background: radial-gradient(circle at center, rgba(79,70,229,0.16), transparent 68%); z-index: 0; }
.hero::after { content: ""; position: absolute; bottom: -200px; left: -140px; width: 460px; height: 460px; background: radial-gradient(circle at center, rgba(255,107,92,0.14), transparent 70%); z-index: 0; }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }
.hero h1 { margin-top: 1.1rem; }
.hero .lead { margin-top: 1.3rem; }
.hero-cta-group { display: flex; gap: 0.85rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-points { list-style: none; margin: 2rem 0 0; padding: 0; display: grid; gap: 0.85rem; }
.hero-points li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.98rem; color: var(--ink-soft); }
.hero-points .mark { flex: 0 0 auto; width: 22px; height: 22px; border-radius: 50%; background: var(--mint); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 0.72rem; margin-top: 2px; }
.hero-points b { color: var(--ink); }

/* Price spotlight card in hero */
.spotlight { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.9rem; box-shadow: var(--shadow-lg); position: relative; }
.spotlight-flag { position: absolute; top: -14px; left: 1.9rem; background: var(--accent); color: #fff; font-size: 0.74rem; font-weight: 700; padding: 0.35rem 0.85rem; border-radius: var(--radius-pill); letter-spacing: 0.03em; }
.spotlight h3 { margin-top: 0.4rem; }
.spotlight-sub { color: var(--ink-soft); font-size: 0.9rem; margin: 0.4rem 0 1.3rem; }
.spotlight-rung { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.85rem 0; border-top: 1px solid var(--line); }
.spotlight-rung:first-of-type { border-top: 0; }
.spotlight-rung .lab { font-weight: 600; font-size: 0.96rem; }
.spotlight-rung .lab small { display: block; font-weight: 400; color: var(--ink-faint); font-size: 0.8rem; }
.spotlight-rung .amt { font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; color: var(--primary); white-space: nowrap; }
.spotlight-rung .amt span { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.72rem; color: var(--ink-faint); text-align: right; }
.spotlight-foot { font-size: 0.82rem; color: var(--ink-faint); margin: 1.2rem 0 0; }

/* Statband */
.statband { background: var(--bg-deep); color: #fff; }
.statband-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: 2.5rem 0; }
.stat { text-align: center; }
.stat-num { font-family: var(--font-display); font-weight: 700; font-size: 2.2rem; color: #fff; }
.stat-num .accent { color: var(--accent); }
.stat-label { color: #B9B8DC; font-size: 0.88rem; margin-top: 0.35rem; }

/* Service list (homepage) */
.svc-list { display: grid; gap: 1rem; }
.svc-row { display: flex; align-items: center; gap: 1.25rem; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem 1.6rem; transition: transform .12s ease, box-shadow .12s ease, border-color .15s ease; }
.svc-row:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--primary-soft); }
.svc-no { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: #fff; background: var(--primary); width: 44px; height: 44px; flex: 0 0 auto; border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; }
.svc-body { flex: 1; }
.svc-body h3 { font-size: 1.18rem; }
.svc-body h3 a { color: var(--ink); }
.svc-body h3 a:hover { color: var(--primary); }
.svc-body p { margin: 0.3rem 0 0; color: var(--ink-soft); font-size: 0.95rem; }
.svc-arrow { color: var(--primary); font-size: 1.4rem; flex: 0 0 auto; }

/* Service grid (diensten overview) */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; transition: transform .12s ease, box-shadow .12s ease; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-card .num { font-family: var(--font-display); font-weight: 700; color: var(--primary-soft); font-size: 1.6rem; }
.service-card h3 { margin: 0.6rem 0 0.55rem; font-size: 1.22rem; }
.service-card h3 a { color: var(--ink); }
.service-card h3 a:hover { color: var(--primary); }
.service-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0 0 1rem; }

/* Why grid */
.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.8rem; }
.why-no { display: inline-block; color: var(--accent-dark); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.8rem; }
.why-card h3 { font-size: 1.18rem; margin-bottom: 0.5rem; }
.why-card p { color: var(--ink-soft); font-size: 0.95rem; margin: 0; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.step { position: relative; padding-top: 2.6rem; }
.step::before { counter-increment: step; content: counter(step); position: absolute; top: 0; left: 0; width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,0.1); color: #fff; font-family: var(--font-display); font-weight: 700; display: inline-flex; align-items: center; justify-content: center; }
.step h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.step p { color: #B9B8DC; font-size: 0.92rem; margin: 0; }

/* Split */
.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: center; }
.pullquote { background: var(--surface); border: 1px solid var(--line); border-left: 5px solid var(--accent); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.pullquote p { font-family: var(--font-display); font-size: 1.28rem; line-height: 1.4; color: var(--ink); margin: 0 0 1rem; }
.pullquote cite { font-style: normal; color: var(--ink-soft); font-size: 0.92rem; }
.portrait { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 4 / 5; }
.portrait img { width: 100%; height: 100%; object-fit: cover; }

/* Price grid */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.price-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2rem; display: flex; flex-direction: column; transition: transform .12s ease, box-shadow .12s ease; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card.feat { border: 2px solid var(--primary); box-shadow: var(--shadow-lg); position: relative; }
.price-card.feat::before { content: "Populair"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: 0.74rem; font-weight: 700; padding: 0.3rem 0.85rem; border-radius: var(--radius-pill); }
.price-tier { color: var(--accent-dark); font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; }
.price-card h3 { margin: 0.5rem 0 0.4rem; font-size: 1.35rem; }
.price-desc { color: var(--ink-soft); font-size: 0.93rem; min-height: 2.6em; }
.price-amt { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: var(--primary); margin: 0.8rem 0 1rem; }
.price-amt .unit { font-family: var(--font-body); font-weight: 500; font-size: 0.85rem; color: var(--ink-faint); }
.price-feats { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: 0.6rem; }
.price-feats li { position: relative; padding-left: 1.6rem; font-size: 0.93rem; color: var(--ink-soft); }
.price-feats li::before { content: "\2713"; position: absolute; left: 0; color: var(--mint); font-weight: 700; }
.price-card .btn { margin-top: auto; }

/* CTA band */
.cta { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%); color: #fff; padding: 4rem 0; text-align: center; position: relative; overflow: hidden; }
.cta::after { content: ""; position: absolute; top: -120px; right: -80px; width: 360px; height: 360px; background: radial-gradient(circle, rgba(255,107,92,0.35), transparent 65%); }
.cta .container { position: relative; z-index: 1; }
.cta h2 { color: #fff; }
.cta p { color: #DAD9F6; max-width: 540px; margin: 0.8rem auto 1.8rem; }

/* Prose */
.prose { color: var(--ink-soft); }
.prose h2 { color: var(--ink); margin: 2.2rem 0 0.9rem; font-size: 1.7rem; }
.prose h3 { color: var(--ink); margin: 1.6rem 0 0.6rem; font-size: 1.22rem; }
.prose p { margin: 0 0 1.1rem; }
.prose ul, .prose ol { margin: 0 0 1.2rem; padding-left: 1.3rem; }
.prose li { margin-bottom: 0.5rem; }
.prose strong { color: var(--ink); }
.prose a { font-weight: 500; text-decoration: underline; text-decoration-color: var(--primary-soft); text-underline-offset: 3px; }
.prose blockquote { margin: 1.6rem 0; padding: 1.2rem 1.5rem; background: var(--accent-soft); border-left: 4px solid var(--accent); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-family: var(--font-display); font-size: 1.15rem; color: var(--ink); }
.prose hr { border: 0; border-top: 1px solid var(--line); margin: 2rem 0; }
.related { font-size: 0.95rem; }

/* TOC */
.toc { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem 1.6rem; margin: 1.5rem 0 2rem; }
.toc-title { font-family: var(--font-display); font-weight: 700; color: var(--ink); margin: 0 0 0.6rem; }
.toc ol { margin: 0; padding-left: 1.2rem; columns: 2; }
.toc li { margin-bottom: 0.4rem; break-inside: avoid; }

/* Article head */
.article-head { padding: 3rem 0 1rem; }
.article-kicker { display: inline-block; color: var(--accent-dark); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }
.article-head h1 { margin: 0.7rem 0 1rem; }
.article-meta { display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center; color: var(--ink-faint); font-size: 0.9rem; }
.article-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }
.article-body { padding: 1rem 0 2.5rem; }
.article-body.prose { font-size: 1.06rem; }

/* Blog / post cards */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.post-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: transform .12s ease, box-shadow .12s ease; }
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.post-card-link { display: block; padding: 1.6rem; color: inherit; }
.post-card-link:hover { color: inherit; }
.post-tag { display: inline-block; background: var(--primary-soft); color: var(--primary-deep); font-weight: 600; font-size: 0.76rem; padding: 0.3rem 0.7rem; border-radius: var(--radius-pill); }
.post-card h3 { margin: 0.8rem 0 0.5rem; font-size: 1.18rem; color: var(--ink); }
.post-card:hover h3 { color: var(--primary); }
.post-card p { color: var(--ink-soft); font-size: 0.93rem; margin: 0 0 1rem; }
.post-meta { color: var(--ink-faint); font-size: 0.82rem; }

/* Guide cards (kennisbank) */
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.guide-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.7rem; display: flex; flex-direction: column; transition: transform .12s ease, box-shadow .12s ease; }
.guide-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.guide-tag { display: inline-block; background: var(--accent-soft); color: var(--accent-dark); font-weight: 600; font-size: 0.76rem; padding: 0.3rem 0.7rem; border-radius: var(--radius-pill); align-self: flex-start; }
.guide-card h3 { margin: 0.8rem 0 0.55rem; font-size: 1.2rem; }
.guide-card p { color: var(--ink-soft); font-size: 0.93rem; margin: 0 0 1.1rem; flex: 1; }

/* FAQ */
.faq { display: grid; gap: 0.8rem; max-width: 800px; }
.faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 1.1rem 1.4rem; font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-q::after { content: "+"; color: var(--primary); font-size: 1.4rem; transition: transform .15s ease; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 1.4rem 1.2rem; margin: 0; color: var(--ink-soft); font-size: 0.96rem; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 2.5rem; align-items: start; }
.contact-info { background: var(--bg-deep); color: #D6D6F0; border-radius: var(--radius-lg); padding: 1.9rem; }
.contact-line { padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.contact-line:last-child { border-bottom: 0; }
.contact-line .lab { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); font-weight: 700; }
.contact-line .val { margin-top: 0.25rem; font-size: 1.05rem; color: #fff; }
.contact-line .val a { color: #fff; }
.contact-line .val a:hover { color: var(--accent); }

/* Form */
.form { display: grid; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.35rem; color: var(--ink); }
.form input, .form select, .form textarea { width: 100%; padding: 0.75rem 0.9rem; border: 1px solid var(--line-strong); border-radius: var(--radius-sm); font-family: inherit; font-size: 0.97rem; color: var(--ink); background: var(--surface); }
.form input:focus, .form select:focus, .form textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-soft); }
.fineprint { font-size: 0.82rem; color: var(--ink-faint); margin: 0; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }

/* Footer */
.footer { background: var(--bg-deeper); color: #A9A9CF; padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer .brand { color: #fff; }
.footer .brand small { color: var(--accent); }
.footer-brand p { font-size: 0.92rem; color: #9090BC; margin: 1rem 0; max-width: 30ch; }
.footer-contact { font-size: 0.9rem; line-height: 1.7; }
.footer-contact a { color: #D6D6F0; }
.footer-contact a:hover { color: var(--accent); }
.footer-col h4 { color: #fff; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.9rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.5rem; }
.footer-col a { color: #A9A9CF; font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-col li { font-size: 0.92rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.85rem; color: #8585B0; }
.footer-bottom a { color: #A9A9CF; }
.footer-bottom a:hover { color: #fff; }

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

/* Responsive */
@media (max-width: 900px) {
  .hero-grid, .split, .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .statband-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid, .why-grid, .price-grid, .post-grid, .guide-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-menu { position: fixed; inset: 60px 0 auto 0; background: var(--surface); flex-direction: column; align-items: stretch; gap: 0; padding: 0.5rem 1.5rem 1.5rem; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .25s ease; }
  .nav-menu.open { transform: none; }
  .nav-menu li { padding: 0.6rem 0; border-bottom: 1px solid var(--line); }
  .nav-cta { text-align: center; margin-top: 0.5rem; }
  .nav-toggle { display: block; }
  .statband-grid, .service-grid, .why-grid, .price-grid, .post-grid, .guide-grid, .steps, .form-row { grid-template-columns: 1fr; }
  .toc ol { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
}
