/* Offside Cards marketingpagina's — zelfde palet en lettertype als de app (app.css). */
:root {
  --ink: #192f29; --muted: #697570; --line: #dfe5df; --line-strong: #c9d3c9; --green: #224d3c; --green-dark: #153a29;
  --lime: #cef478; --lime-dark: #80b52b; --paper: #f5f7f3; --white: #fff; --side: #162e27; --side-hover: #294237;
  --danger: #b3261e; --danger-bg: #fbe9e7; --ok: #2f6b3a; --ok-bg: #e5f2e3; --warn: #8a5a00; --warn-bg: #fff3d6;
  --gold: #e6d9ae; --silver: #bdc9d1; --greenb: #afc9a6; --blue: #a9c4d9;
  --radius: 10px; --shadow: 0 4px 10px #20311c17; --shadow-lg: 0 25px 100px #0004;
  --art: url("/img/card-art.jpg");
  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, Inter, Arial, Helvetica, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 16px/1.55 var(--font); -webkit-font-smoothing: antialiased; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, a:focus-visible, summary:focus-visible { outline: 3px solid var(--lime-dark); outline-offset: 3px; }
a { color: #3c5c37; }
img, svg { max-width: 100%; }
svg.icon { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
h1, h2, h3, h4 { margin: 0; line-height: 1.15; letter-spacing: -.4px; }
h1 { font-size: 34px; letter-spacing: -1.4px; line-height: 1.08; }
h2 { font-size: 26px; letter-spacing: -.8px; }
h3 { font-size: 18px; }
p { margin: 0; }
ul, ol { margin: 0; padding-left: 22px; }
.muted { color: var(--muted); }
.small { font-size: 14px; }
.tiny { font-size: 12px; }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.skip { position: absolute; left: 12px; top: -60px; background: var(--lime); color: #183125; padding: 8px 12px; border-radius: 6px; font-weight: 700; z-index: 100; }
.skip:focus { top: 12px; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.eyebrow { font-size: 11px; letter-spacing: 1.7px; font-weight: 700; color: var(--muted); text-transform: uppercase; }
.eyebrow.lime { color: var(--lime-dark); }
.sub { color: var(--muted); font-size: 17px; max-width: 58ch; }
.section { padding: 56px 0; }
.section.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section.dark { background: var(--side); color: #e8ede9; }
.section.dark h2 { color: #fff; }
.section.dark .eyebrow { color: #9bafa4; }
.section.dark .sub { color: #b6c6b1; }
.section-head { margin-bottom: 28px; max-width: 700px; }
.section-head h2 { margin: 6px 0 10px; }

/* ── Header ─────────────────────────────────────────────────────────── */
.site-header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 40; }
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 68px; flex-wrap: wrap; }
.brand { display: flex; gap: 10px; align-items: center; font-size: 24px; font-weight: 800; letter-spacing: -1px; color: var(--ink); text-decoration: none; }
.brand .mark { width: 35px; height: 39px; background: var(--lime); color: #193529; border-radius: 8px; display: grid; place-items: center; transform: rotate(-8deg); }
.brand .mark svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.brand .dot { color: var(--lime-dark); }
.site-header.dark-brand .brand, .site-footer .brand { color: #fff; }
.site-footer .brand .dot { color: var(--lime); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.header-login { padding: 9px 14px; font-size: 14px; white-space: nowrap; }
.nav-toggle { border: 1px solid var(--line); background: #fff; border-radius: 8px; width: 42px; height: 42px; display: grid; place-items: center; color: var(--ink); }
.nav-toggle svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.site-nav { display: none; width: 100%; flex-direction: column; gap: 6px; padding: 8px 0 16px; }
.site-nav.open { display: flex; }
.site-nav a { color: var(--ink); text-decoration: none; padding: 10px 12px; border-radius: 8px; font-weight: 500; }
.site-nav a:hover { background: #eef3e8; }
.site-nav a[aria-current="page"] { background: #eef3e8; font-weight: 700; }
.site-nav .actions { display: flex; gap: 8px; margin-top: 8px; flex-wrap: wrap; }
.site-nav .actions a { padding: 11px 18px; }

/* ── Buttons ────────────────────────────────────────────────────────── */
.btn { border: 0; border-radius: 7px; padding: 12px 20px; font-size: 15px; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; gap: 8px; white-space: nowrap; text-decoration: none; line-height: 1.2; transition: background .15s, transform .1s; cursor: pointer; }
.btn:active { transform: translateY(1px); }
.btn.primary { background: var(--green); color: #fff; }
.btn.primary:hover { background: var(--green-dark); }
.btn.secondary { background: #fff; border: 1px solid var(--line-strong); color: var(--ink); }
.btn.secondary:hover { background: #eef3e8; }
.btn.lime { background: var(--lime); color: #183125; }
.btn.lime:hover { background: #bfe86a; }
.btn.ghost { background: transparent; color: #3c5c37; }
.btn.ghost:hover { background: #eef3e8; }
.btn.lg { padding: 15px 26px; font-size: 16px; }
.btn.block { width: 100%; }
.btn:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Hero ───────────────────────────────────────────────────────────── */
.hero { padding: 48px 0 40px; background: linear-gradient(180deg, #fff 0%, var(--paper) 100%); overflow: hidden; }
.hero .wrap { display: grid; gap: 40px; align-items: center; }
.hero h1 { margin: 12px 0 16px; }
.hero h1 .dot { color: #87a969; }
.hero .sub { margin-bottom: 24px; }
.hero-note { margin-top: 16px; font-size: 13px; color: var(--muted); }
.hero-cards { position: relative; height: 320px; max-width: 420px; margin: 0 auto; width: 100%; }
.hero-cards .card-art { position: absolute; width: 44%; top: 50%; left: 50%; transform-origin: center; box-shadow: 0 20px 45px #15291d33; }
.hero-cards .c1 { transform: translate(-135%, -50%) rotate(-12deg); z-index: 1; }
.hero-cards .c2 { transform: translate(-50%, -56%) rotate(0deg); z-index: 3; }
.hero-cards .c3 { transform: translate(35%, -48%) rotate(12deg); z-index: 2; }
.hero-cards:hover .c1 { transform: translate(-145%, -54%) rotate(-15deg); }
.hero-cards:hover .c3 { transform: translate(45%, -52%) rotate(15deg); }
.hero-cards .card-art { transition: transform .35s; }

/* ── Kaartvisual (gekopieerd uit app.css) ───────────────────────────── */
.card-art { aspect-ratio: 2/3; background: #233930; border: 6px solid var(--gold); box-shadow: var(--shadow); position: relative; border-radius: 9px; overflow: hidden; transition: transform .2s, box-shadow .2s; container-type: inline-size; }
.card-art.silver { border-color: var(--silver); } .card-art.green { border-color: var(--greenb); } .card-art.blue { border-color: var(--blue); } .card-art.gold { border-color: var(--gold); }
.card-art.sm { border-width: 3px; border-radius: 5px; box-shadow: none; }
.card-art.missing { filter: grayscale(1) brightness(.75); opacity: .75; }
.card-art.missing:after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(135deg, transparent 0 8px, #ffffff10 8px 16px); }
.card-photo { position: absolute; inset: 0; background-image: var(--art); background-size: 300% 100%; background-position: 0 50%; background-repeat: no-repeat; }
.card-photo.pos1 { background-position: 50% 50%; } .card-photo.pos2 { background-position: 100% 50%; }
.card-photo:after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, #071f151a, transparent 38%, #081c18 100%); }
.card-edition { position: absolute; top: 5%; left: 6%; font-size: 6cqw; letter-spacing: .12em; font-weight: bold; color: #fff; }
.card-rating { position: absolute; top: 12%; left: 6%; color: #fff; font-size: 19cqw; line-height: 1; font-weight: 700; }
.card-role { position: absolute; top: 33%; left: 6.5%; color: #fff; font-size: 5.5cqw; letter-spacing: .05em; }
.card-bottom { position: absolute; bottom: 6%; left: 6%; right: 6%; color: #fff; }
.card-bottom .card-name { font-size: 12cqw; font-weight: 800; letter-spacing: -.02em; line-height: 1.05; text-transform: uppercase; display: block; }
.card-bottom small { font-size: 5.5cqw; letter-spacing: .1em; color: #dbdbc4; display: block; margin-top: 3%; }
.card-bottom .card-score { border-top: 1px solid #ffffff50; margin-top: 5%; padding-top: 4%; font-size: 5.5cqw; display: flex; justify-content: space-between; }
.card-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 460px; }

/* ── Stappen ────────────────────────────────────────────────────────── */
.steps { display: grid; gap: 16px; counter-reset: step; }
.step { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px; position: relative; }
.step .num { width: 36px; height: 36px; border-radius: 10px; background: var(--lime); color: #183125; font-weight: 800; display: grid; place-items: center; margin-bottom: 14px; transform: rotate(-6deg); }
.step h3 { margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 15px; }

/* ── Features ───────────────────────────────────────────────────────── */
.features { display: grid; gap: 16px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px; }
.feature .ico { width: 44px; height: 44px; border-radius: 11px; background: #eef3e8; color: var(--green); display: grid; place-items: center; margin-bottom: 14px; }
.feature h3 { margin-bottom: 6px; }
.feature p { color: var(--muted); font-size: 15px; }
.feature a { font-weight: 700; text-decoration: none; display: inline-block; margin-top: 10px; }
.feature a:hover { text-decoration: underline; }

/* ── Stats ──────────────────────────────────────────────────────────── */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); border: 1px solid #3c5549; border-radius: 12px; background: #1d3a30; overflow: hidden; }
.stat { padding: 20px 22px; border-top: 1px solid #3c5549; border-left: 1px solid #3c5549; margin: -1px 0 0 -1px; }
.stat-value { font-size: 32px; font-weight: 700; letter-spacing: -1px; color: var(--lime); line-height: 1.1; }
.stat-label { font-size: 13px; color: #b6c6b1; margin-top: 4px; }
.stats-note { font-size: 13px; color: #9bafa4; margin-top: 12px; }

/* ── Testimonials ───────────────────────────────────────────────────── */
.testimonials { display: grid; gap: 16px; }
.testimonial { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.testimonial blockquote { margin: 0; font-size: 16px; line-height: 1.5; }
.testimonial blockquote:before { content: '\201C'; color: var(--lime-dark); font-size: 34px; line-height: 0; vertical-align: -12px; margin-right: 4px; font-weight: 800; }
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar { border-radius: 50%; display: grid; place-items: center; width: 40px; height: 40px; background: #e0e9d8; color: #274634; font-weight: 700; flex-shrink: 0; }
.who strong { display: block; font-size: 14px; }
.who small { color: var(--muted); font-size: 13px; }

/* ── Premium-teaser / CTA-band ──────────────────────────────────────── */
.teaser { background: #203d2f; color: #fff; border-radius: 16px; padding: 32px 26px; display: grid; gap: 24px; position: relative; overflow: hidden; }
.teaser .eyebrow { color: #b6c6b1; }
.teaser h2 { color: #fff; margin: 8px 0 10px; }
.teaser p { color: #c6d1bf; }
.teaser ul { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; }
.teaser li { display: flex; gap: 10px; align-items: flex-start; }
.teaser li:before { content: '✓'; color: var(--lime); font-weight: 800; flex-shrink: 0; }
.teaser .price { font-size: 40px; font-weight: 800; letter-spacing: -1.5px; line-height: 1; }
.teaser .price small { font-size: 15px; font-weight: 500; color: #c6d1bf; letter-spacing: 0; }
.teaser-box { background: #ffffff12; border: 1px solid #ffffff22; border-radius: 12px; padding: 22px; }
.cta-band { background: var(--lime); color: #183125; }
.cta-band .wrap { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.cta-band h2 { color: #183125; }
.cta-band p { color: #2f4a3a; }
.badge { display: inline-block; font-size: 11px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 3px 9px; border-radius: 5px; background: var(--lime); color: #183125; vertical-align: middle; }
.badge.soft { background: #eef3e8; color: var(--green); }

/* ── Pagina-kop (subpagina's) ───────────────────────────────────────── */
.page-head { padding: 44px 0 28px; background: #fff; border-bottom: 1px solid var(--line); }
.page-head h1 { margin: 8px 0 12px; }
.prose { max-width: 760px; }
.prose h2 { font-size: 22px; margin: 36px 0 10px; }
.prose h3 { font-size: 17px; margin: 22px 0 6px; }
.prose p, .prose ul, .prose ol { margin-bottom: 12px; }
.prose li { margin-bottom: 4px; }
.prose .meta { color: var(--muted); font-size: 14px; }
.notice { background: var(--warn-bg); border: 1px solid #f1dfae; color: #5b4200; border-radius: 10px; padding: 14px 16px; font-size: 14px; margin: 0 0 24px; }
.notice strong { display: block; margin-bottom: 2px; }
.callout { background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--lime-dark); border-radius: 10px; padding: 14px 16px; margin: 16px 0; font-size: 15px; }

/* ── Functie-secties (hoe werkt het) ────────────────────────────────── */
.func { display: grid; gap: 24px; padding: 36px 0; border-top: 1px solid var(--line); }
.func:first-of-type { border-top: 0; }
.func h2 { margin: 6px 0 10px; }
.func p { color: var(--ink); margin-bottom: 10px; }
.func ul { margin-bottom: 12px; color: var(--ink); }
.func .links { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.screen { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px; box-shadow: var(--shadow); }
.screen .bar { display: flex; gap: 6px; margin-bottom: 14px; }
.screen .bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.screen .title { font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.screen .desc { font-size: 13px; color: var(--muted); }
.screen .fake-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-top: 1px solid #ecf0e8; font-size: 13px; }
.screen .fake-row:first-of-type { border-top: 0; }
.screen .fake-row .thumb { width: 30px; flex-shrink: 0; }
.screen .thumb .card-art { border-width: 2px; border-radius: 4px; box-shadow: none; }
.screen .thumb .card-edition, .screen .thumb .card-role, .screen .thumb .card-bottom { display: none; }
.screen .pill { margin-left: auto; font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 10px; background: #eef3e8; color: var(--green); white-space: nowrap; }
.screen .pill.ok { background: var(--ok-bg); color: var(--ok); }
.screen .pill.warn { background: var(--warn-bg); color: var(--warn); }
.progress { height: 6px; background: #e5ebe2; border-radius: 5px; margin: 10px 0 6px; overflow: hidden; }
.progress > span { display: block; height: 100%; background: var(--green); }

/* ── Prijzen ────────────────────────────────────────────────────────── */
.plans { display: grid; gap: 18px; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 26px; display: flex; flex-direction: column; gap: 14px; }
.plan.featured { border-color: var(--green); box-shadow: 0 12px 30px #15291d1c; position: relative; }
.plan.featured .tag { position: absolute; top: -12px; left: 22px; }
.plan .price { font-size: 38px; font-weight: 800; letter-spacing: -1.5px; line-height: 1; }
.plan .price small { font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.plan ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: 15px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; }
.plan li:before { content: '✓'; color: var(--lime-dark); font-weight: 800; flex-shrink: 0; }
.plan li.no:before { content: '–'; color: var(--muted); }
.plan li.no { color: var(--muted); }
.plan .btn { margin-top: auto; }
.table-wrap { overflow-x: auto; background: #fff; border: 1px solid var(--line); border-radius: 12px; }
table.compare { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 15px; }
table.compare th, table.compare td { padding: 12px 16px; text-align: left; border-top: 1px solid var(--line); vertical-align: top; }
table.compare thead th { border-top: 0; background: #f8faf6; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }
table.compare th[scope="row"] { font-weight: 600; }
table.compare td.yes { color: var(--ok); font-weight: 700; }
table.compare td.no { color: var(--muted); }
.fees { display: grid; gap: 14px; }
.fee { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px; }
.fee strong { font-size: 24px; letter-spacing: -.8px; display: block; }
.fee span { font-size: 14px; color: var(--muted); }

/* ── FAQ ────────────────────────────────────────────────────────────── */
.faq { max-width: 780px; display: grid; gap: 10px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 0 18px; }
.faq details[open] { border-color: var(--line-strong); }
.faq summary { cursor: pointer; padding: 15px 0; font-weight: 700; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary:after { content: '+'; font-size: 22px; font-weight: 400; color: var(--muted); line-height: 1; flex-shrink: 0; }
.faq details[open] summary:after { content: '–'; }
.faq details > div { padding: 0 0 16px; color: #3f4d47; font-size: 15px; }
.faq details > div p { margin-bottom: 8px; }
.faq details > div p:last-child { margin-bottom: 0; }
.faq-group { margin-top: 32px; }
.faq-group:first-child { margin-top: 0; }
.faq-group h2 { font-size: 18px; margin-bottom: 12px; }

/* ── Formulier ──────────────────────────────────────────────────────── */
.form { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 24px; display: grid; gap: 16px; }
.field { display: grid; gap: 6px; }
.field label { font-weight: 600; font-size: 14px; }
.field input, .field textarea, .field select { border: 1px solid var(--line-strong); border-radius: 8px; padding: 11px 13px; background: #fff; width: 100%; }
.field textarea { min-height: 140px; resize: vertical; }
.field .hint { font-size: 13px; color: var(--muted); }
.field.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.alert { border-radius: 8px; padding: 12px 14px; font-size: 15px; }
.alert.ok { background: var(--ok-bg); color: var(--ok); border: 1px solid #c9e2c5; }
.alert.error { background: var(--danger-bg); color: var(--danger); border: 1px solid #f0c8c4; }
.contact-grid { display: grid; gap: 28px; }
.contact-info { display: grid; gap: 14px; align-content: start; }
.contact-info .card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px; }
.contact-info .card h3 { margin-bottom: 4px; }
.contact-info .card p { font-size: 15px; color: var(--muted); }
.contact-info address { font-style: normal; }

/* ── 404 ────────────────────────────────────────────────────────────── */
.notfound { min-height: 60vh; display: grid; place-items: center; text-align: center; padding: 60px 20px; }
.notfound .big { font-size: 96px; font-weight: 900; letter-spacing: -5px; line-height: 1; color: #dbe4d6; }
.notfound h1 { margin: 8px 0 12px; }
.notfound .btn-row { justify-content: center; margin-top: 22px; }

/* ── Footer ─────────────────────────────────────────────────────────── */
.site-footer { background: var(--side); color: #adbbb3; padding: 40px 0 28px; margin-top: auto; }
.site-footer .wrap { display: grid; gap: 24px; }
.site-footer .brand { font-size: 22px; }
.site-footer p { font-size: 14px; max-width: 40ch; margin-top: 10px; }
.site-footer h4 { color: #fff; font-size: 13px; letter-spacing: 1.2px; text-transform: uppercase; margin-bottom: 10px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.site-footer a { color: #d5ded8; text-decoration: none; font-size: 15px; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer .copy { border-top: 1px solid #3c5549; padding-top: 18px; font-size: 13px; color: #8ea096; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }

/* ── Breekpunten ────────────────────────────────────────────────────── */
/* smalle telefoons: kop op één regel */
@media (max-width: 480px) {
  .site-header .wrap { gap: 8px; }
  .site-header .brand { font-size: 20px; gap: 8px; letter-spacing: -.8px; }
  .site-header .brand .mark { width: 30px; height: 33px; }
  .site-header .brand .mark svg { width: 18px; height: 18px; }
  .header-actions { margin-left: auto; gap: 6px; }
  .header-login { padding: 8px 12px; font-size: 13px; }
  .nav-toggle { width: 40px; height: 40px; }
}
@media (min-width: 700px) {
  h1 { font-size: 44px; }
  h2 { font-size: 30px; }
  .section { padding: 72px 0; }
  .steps, .features, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(5, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .fees { grid-template-columns: repeat(3, 1fr); }
  .teaser { grid-template-columns: 1.3fr 1fr; padding: 40px; align-items: center; }
  .cta-band .wrap { flex-direction: row; justify-content: space-between; align-items: center; }
  .contact-grid { grid-template-columns: 1.4fr 1fr; }
  .func { grid-template-columns: 1.2fr 1fr; align-items: center; }
  .func.flip > .screen { order: -1; }
  .hero-cards { height: 380px; }
  .site-footer .wrap { grid-template-columns: 1.5fr 1fr 1fr; }
  .site-footer .copy { grid-column: 1 / -1; }
}
@media (min-width: 1020px) {
  h1 { font-size: 54px; }
  .hero { padding: 72px 0 64px; }
  .hero .wrap { grid-template-columns: 1.1fr 1fr; }
  .hero-cards { height: 440px; max-width: none; }
  .steps, .features { grid-template-columns: repeat(4, 1fr); }
  .features { grid-template-columns: repeat(3, 1fr); }
  .testimonials { grid-template-columns: repeat(3, 1fr); }
  .nav-toggle, .header-actions { display: none; }
  .site-nav { display: flex; flex-direction: row; align-items: center; width: auto; padding: 0; gap: 4px; }
  .site-nav .actions { margin: 0 0 0 16px; }
  .site-nav .actions a { padding: 10px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-cards .card-art, .btn { transition: none; }
}
