/* ════════════════════════════════════════════════════════════
   InQlok Marketing Site — design system "Orbit Marketing"
   Geïnspireerd op admin-orbit4.css: Inter, oranje #ff7a18,
   zachte gradients, glas-oppervlakken, licht & donker thema.
   ════════════════════════════════════════════════════════════ */

:root {
    /* Licht thema (standaard) */
    --bg: #f5f6f8;
    --bg-soft: #eef1f5;
    --surface: #ffffff;
    --surface-2: #f3f5f8;
    --border: #e4e8ef;
    --border-strong: #d7dde7;
    --text: #1d2533;
    --muted: #717a8a;
    --faint: #9aa4b6;

    --accent: #ff7a18;
    --accent-2: #ff9d3c;
    --accent-3: #ffb15c;
    --accent-dark: #e85d04;
    --accent-soft: rgba(255, 122, 24, 0.12);
    --accent-border: rgba(255, 122, 24, 0.35);
    --grad: linear-gradient(135deg, #ff7a18, #ff9d3c);
    --grad-card: linear-gradient(145deg, #ffffff, #f3f5f8);

    --ok: #1aa15d;
    --ok-soft: rgba(26, 161, 93, 0.14);
    --warn: #d97706;
    --warn-soft: rgba(217, 119, 6, 0.14);
    --bad: #e23b4e;
    --bad-soft: rgba(226, 59, 78, 0.14);
    --info: #2f7fe0;
    --info-soft: rgba(47, 127, 224, 0.12);

    --radius-sm: 10px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(31, 41, 61, 0.06);
    --shadow: 0 6px 20px rgba(31, 41, 61, 0.08);
    --shadow-md: 0 10px 28px rgba(31, 41, 61, 0.10);
    --shadow-lg: 0 14px 40px rgba(31, 41, 61, 0.16);
    --shadow-glow: 0 6px 18px rgba(255, 122, 24, 0.35);

    --glass-bg: rgba(255, 255, 255, 0.78);
    --glass-border: rgba(228, 232, 239, 0.7);

    --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --t-fast: 0.15s ease;
    --t: 0.25s ease;
}

[data-theme="dark"] {
    --bg: #0f1420;
    --bg-soft: #131a29;
    --surface: #161d2c;
    --surface-2: #1e2638;
    --border: #2a3346;
    --border-strong: #354059;
    --text: #e7ecf5;
    --muted: #9aa4b8;
    --faint: #6c768a;

    --accent-soft: rgba(255, 122, 24, 0.16);
    --grad-card: linear-gradient(145deg, #161d2c, #1e2638);

    --info: #3aa0ff;
    --info-soft: rgba(58, 160, 255, 0.14);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
    --shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 16px 44px rgba(0, 0, 0, 0.6);

    --glass-bg: rgba(22, 29, 44, 0.72);
    --glass-border: rgba(255, 255, 255, 0.08);
}

/* ── Reset & basis ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    transition: background var(--t), color var(--t);
}

::selection { background: rgba(255, 122, 24, 0.28); }

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; letter-spacing: -0.02em; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Thema-afhankelijke screenshots */
.shot-dark { display: none; }
[data-theme="dark"] .shot-light { display: none; }
[data-theme="dark"] .shot-dark { display: block; }

/* ── Header ────────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--glass-bg);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--glass-border);
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 28px;
    height: 68px;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 34px; width: auto; }
.brand .logo-dark, .footer-brand .logo-dark { display: none; }
[data-theme="dark"] .brand .logo-light,
[data-theme="dark"] .footer-brand .logo-light { display: none; }
[data-theme="dark"] .brand .logo-dark,
[data-theme="dark"] .footer-brand .logo-dark { display: block; }

.main-nav { display: flex; align-items: center; gap: 4px; flex: 1; }

.main-nav > a, .nav-drop > button {
    font: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background var(--t-fast), color var(--t-fast);
}

.main-nav > a:hover, .nav-drop > button:hover,
.main-nav > a.active { background: var(--accent-soft); color: var(--accent-dark); }
[data-theme="dark"] .main-nav > a:hover,
[data-theme="dark"] .nav-drop > button:hover,
[data-theme="dark"] .main-nav > a.active { color: var(--accent-2); }

.nav-drop { position: relative; }
.nav-drop > button .fa-chevron-down { font-size: 0.7em; transition: transform var(--t-fast); }
.nav-drop.open > button .fa-chevron-down { transform: rotate(180deg); }

.drop-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 300px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    display: none;
    z-index: 110;
}
.nav-drop.open .drop-menu { display: block; }

.drop-menu a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--text);
    transition: background var(--t-fast);
}
.drop-menu a:hover { background: var(--accent-soft); }

.drop-icon {
    width: 36px; height: 36px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    background: var(--accent-soft);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
}
.drop-menu strong { display: block; font-size: 0.92rem; font-weight: 700; }
.drop-menu span { display: block; font-size: 0.8rem; color: var(--muted); line-height: 1.4; }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.theme-btn {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted);
    cursor: pointer;
    font-size: 0.95rem;
    transition: border-color var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
}
.theme-btn:hover { border-color: var(--accent-border); color: var(--accent); box-shadow: var(--shadow-sm); }
.theme-btn .fa-sun { display: none; }
[data-theme="dark"] .theme-btn .fa-sun { display: inline; }
[data-theme="dark"] .theme-btn .fa-moon { display: none; }

.lang-btn {
    height: 40px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    transition: border-color var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
}
.lang-btn:hover { border-color: var(--accent-border); color: var(--accent); box-shadow: var(--shadow-sm); }

.menu-btn {
    display: none;
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    font-size: 1.05rem;
}

/* ── Knoppen ───────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font: inherit;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform var(--t-fast), box-shadow var(--t-fast), background var(--t-fast), border-color var(--t-fast);
    white-space: nowrap;
    min-height: 44px;
}
.btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(255, 122, 24, 0.45); color: #fff; }
.btn-ghost {
    background: var(--surface);
    border-color: var(--border);
    color: var(--text);
}
.btn-ghost:hover { border-color: var(--accent-border); color: var(--accent-dark); }
[data-theme="dark"] .btn-ghost:hover { color: var(--accent-2); }
.btn-sm { padding: 10px 18px; font-size: 0.9rem; }
.btn-md { padding: 12px 24px; font-size: 0.95rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ── Hero (homepage) ───────────────────────────────────────── */
.hero {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -300px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(255, 122, 24, 0.14), transparent 65%);
    pointer-events: none;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px;
    align-items: center;
}
.hero h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin: 18px 0; }
.grad {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-sub { font-size: 1.12rem; color: var(--muted); max-width: 540px; }
.hero-ctas { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero-reassure {
    margin-top: 18px;
    font-size: 0.88rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-reassure i { color: var(--ok); }

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: var(--radius-full);
    background: var(--accent-soft);
    border: 1px solid var(--accent-border);
    color: var(--accent-dark);
    font-size: 0.85rem;
    font-weight: 700;
}
[data-theme="dark"] .badge-pill { color: var(--accent-2); }

/* Browser-frame rond screenshots */
.shot-frame {
    background: var(--grad-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.shot-frame .frame-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
}
.frame-bar i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.frame-bar i:nth-child(1) { background: #e23b4e; }
.frame-bar i:nth-child(2) { background: #d97706; }
.frame-bar i:nth-child(3) { background: #1aa15d; }

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    flex-wrap: wrap;
}
.hero-stat strong { display: block; font-size: 1.45rem; font-weight: 800; }
.hero-stat span { font-size: 0.85rem; color: var(--muted); }

/* ── Secties ───────────────────────────────────────────────── */
.section { padding: 84px 0; }
.section.alt { background: var(--bg-soft); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 52px; }
.eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.3rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ── Kaartrasters ──────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.card {
    background: var(--grad-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
a.card { color: var(--text); display: block; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--accent-border); }

.card-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius-sm);
    background: var(--grad);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 18px;
    box-shadow: var(--shadow-glow);
}
.card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 0.93rem; }
.card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent);
}
.card:hover .card-link { color: var(--accent-dark); }
[data-theme="dark"] .card:hover .card-link { color: var(--accent-2); }

/* ── Doelgroep (voor wie) ──────────────────────────────────── */
.audience-card { text-align: left; }
.audience-card .card-icon { background: var(--accent-soft); color: var(--accent); box-shadow: none; }
.audience-card ul { list-style: none; margin-top: 12px; }
.audience-card li {
    font-size: 0.88rem;
    color: var(--muted);
    padding: 4px 0 4px 22px;
    position: relative;
}
.audience-card li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--ok);
    font-size: 0.75rem;
    top: 7px;
}

/* ── Stappen ───────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 28px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.step-num {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--grad);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: var(--shadow-glow);
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; color: var(--muted); }

/* ── Feature-blokken (subpagina's) ─────────────────────────── */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
    padding: 56px 0;
}
.feature-block + .feature-block { border-top: 1px solid var(--border); }
.feature-block.flip .fb-media { order: 2; }
.feature-block.flip .fb-text { order: 1; }

/* ── Illustraties (eigen huisstijl, werkt in licht & donker) ── */
.illus-media { display: flex; justify-content: center; align-items: center; }
.illus-media .illus { width: 100%; max-width: 480px; height: auto; }
.demo-illus { max-width: 400px; margin-top: 28px; }
.demo-illus .illus { width: 100%; height: auto; }

.page-hero .illus-media { margin: 36px auto 0; }
.page-hero .illus-media .illus { max-width: 580px; }
.hero-grid .illus-media .illus { max-width: 560px; }

/* ── Schermafbeeldingen-pagina ─────────────────────────────── */
.screens-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px 36px; }
.screen-card h3 { font-size: 1.05rem; margin: 16px 2px 6px; }
.screen-card p { font-size: 0.92rem; color: var(--muted); margin: 0 2px; }
.screen-card .shot-frame { cursor: zoom-in; transition: transform var(--t), box-shadow var(--t); }
.screen-card .shot-frame:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.screen-card.phone .shot-frame { max-width: 270px; margin: 0 auto; }
.screen-card.phone h3, .screen-card.phone p { text-align: center; }
@media (max-width: 760px) { .screens-grid { grid-template-columns: 1fr; } }

/* ── Lightbox ──────────────────────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(13, 17, 27, 0.88);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 64px 84px 88px;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
}
.lb-caption {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    max-width: min(720px, 86vw);
    text-align: center;
    color: #e7ecf5;
    font-size: 0.92rem;
    line-height: 1.5;
}
.lb-caption strong { display: block; font-size: 1.02rem; color: #ffffff; }
.lb-counter {
    position: absolute;
    top: 22px;
    left: 50%;
    transform: translateX(-50%);
    color: #9aa4b8;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}
.lb-btn {
    position: absolute;
    width: 52px; height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t-fast), border-color var(--t-fast);
}
.lb-btn:hover { background: rgba(255, 122, 24, 0.85); border-color: transparent; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-close { top: 16px; right: 16px; width: 44px; height: 44px; font-size: 0.95rem; }
@media (max-width: 640px) {
    .lightbox { padding: 56px 12px 96px; }
    .lb-prev { left: 8px; top: auto; bottom: 18px; transform: none; }
    .lb-next { right: 8px; top: auto; bottom: 18px; transform: none; }
    .lb-caption { bottom: 30px; max-width: 60vw; }
}

.fb-text .eyebrow { margin-bottom: 8px; }
.fb-text h3 { font-size: 1.55rem; margin-bottom: 14px; }
.fb-text > p { color: var(--muted); margin-bottom: 18px; }

.check-list { list-style: none; }
.check-list li {
    padding: 7px 0 7px 32px;
    position: relative;
    font-size: 0.95rem;
}
.check-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 9px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--ok-soft);
    color: var(--ok);
    font-size: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.check-list li strong { font-weight: 700; }

/* ── Pagina-hero (subpagina's) ─────────────────────────────── */
.page-hero {
    position: relative;
    padding: 64px 0 56px;
    text-align: center;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    top: -340px; left: 50%;
    transform: translateX(-50%);
    width: 900px; height: 600px;
    background: radial-gradient(ellipse, rgba(255, 122, 24, 0.13), transparent 65%);
    pointer-events: none;
}
.page-hero .badge-pill { margin-bottom: 18px; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); max-width: 780px; margin: 0 auto 16px; }
.page-hero p.lead { font-size: 1.1rem; color: var(--muted); max-width: 660px; margin: 0 auto; }
.page-hero .hero-ctas { justify-content: center; }
.page-hero .shot-frame { max-width: 980px; margin: 44px auto 0; }

.crumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 0.83rem;
    color: var(--faint);
    margin-bottom: 18px;
}
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--accent); }

/* Chips: voor wie is deze functie */
.fit-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 26px; }
.fit-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: var(--surface);
    border: 1px solid var(--border);
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--muted);
}
.fit-chip i { color: var(--accent); }

/* ── Mini-functieraster ────────────────────────────────────── */
.mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.mini-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
}
.mini-card i { color: var(--accent); font-size: 1.15rem; margin-bottom: 10px; display: block; }
.mini-card h4 { font-size: 0.98rem; margin-bottom: 6px; }
.mini-card p { font-size: 0.86rem; color: var(--muted); }

/* ── Pricing ───────────────────────────────────────────────── */
.pricing-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 28px;
    align-items: start;
    max-width: 980px;
    margin: 0 auto;
}
.price-card {
    background: var(--grad-card);
    border: 2px solid var(--accent-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-md);
    position: relative;
}
.price-flag {
    position: absolute;
    top: -14px; left: 28px;
    background: var(--grad);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-glow);
}
.price-old { color: var(--faint); text-decoration: line-through; font-weight: 600; }
.price-now { font-size: 2.6rem; font-weight: 800; letter-spacing: -0.03em; }
.price-now small { font-size: 0.95rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.price-note { font-size: 0.85rem; color: var(--muted); margin: 4px 0 20px; }
.price-card .check-list { margin: 18px 0 24px; }
.price-card .check-list li { font-size: 0.92rem; padding-top: 5px; padding-bottom: 5px; }

.calc-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}
.calc-card h3 { font-size: 1.15rem; margin-bottom: 18px; }
.calc-card label { font-size: 0.88rem; font-weight: 600; color: var(--muted); display: block; margin-bottom: 8px; }
.calc-card input[type="range"] { width: 100%; accent-color: var(--accent); }
.calc-emp { font-size: 1.3rem; font-weight: 800; color: var(--accent); }
.calc-rows { margin-top: 20px; border-top: 1px solid var(--border); }
.calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.93rem;
}
.calc-row span:first-child { color: var(--muted); }
.calc-row strong { font-weight: 800; }
.calc-row.promo strong { color: var(--accent); }
.calc-note { font-size: 0.8rem; color: var(--faint); margin-top: 12px; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 22px;
    font-weight: 700;
    font-size: 0.98rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.75rem;
    color: var(--accent);
    transition: transform var(--t-fast);
    flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .faq-body { padding: 0 22px 18px; color: var(--muted); font-size: 0.93rem; }

/* ── CTA-band ──────────────────────────────────────────────── */
.cta-band {
    background: linear-gradient(135deg, #e85d04, #ff7a18 55%, #ff9d3c);
    border-radius: var(--radius-lg);
    padding: 56px 48px;
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
}
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 12px; }
.cta-band p { opacity: 0.92; max-width: 560px; margin: 0 auto 26px; }
.cta-band .btn-primary {
    background: #fff;
    color: var(--accent-dark);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}
.cta-band .btn-primary:hover { color: var(--accent-dark); }
.cta-band .btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}
.cta-band .btn-ghost:hover { border-color: #fff; color: #fff; }
.cta-band .hero-ctas { justify-content: center; margin-top: 0; }
.cta-band .hero-reassure { justify-content: center; color: rgba(255, 255, 255, 0.85); }
.cta-band .hero-reassure i { color: #fff; }

/* ── Demoformulier ─────────────────────────────────────────── */
.demo-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 48px;
    align-items: start;
}
.demo-info h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-bottom: 14px; }
.demo-info > p { color: var(--muted); margin-bottom: 22px; }

.demo-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; margin-bottom: 6px; }
.form-group label .req { color: var(--bad); }
.form-input, .form-textarea {
    width: 100%;
    font: inherit;
    font-size: 1rem;
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-strong);
    background: var(--bg);
    color: var(--text);
    transition: border-color var(--t-fast), box-shadow var(--t-fast);
    min-height: 44px;
}
.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 122, 24, 0.3);
}
.form-input[data-touched="true"]:invalid { border-color: var(--bad); }
.form-textarea { resize: vertical; min-height: 110px; }

.form-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}
.form-success i { font-size: 2.6rem; color: var(--ok); margin-bottom: 16px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 0.93rem; }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
    background: var(--bg-soft);
    border-top: 1px solid var(--border);
    padding: 60px 0 28px;
    margin-top: 40px;
}
[data-theme="dark"] .site-footer { background: #0b101a; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 36px;
    margin-bottom: 44px;
}
.footer-brand img { height: 32px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; color: var(--muted); max-width: 280px; }
.footer-col h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--faint);
    margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--muted); font-size: 0.9rem; }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 0.83rem;
    color: var(--faint);
}

/* ── Reveal-animaties ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ── Responsief ────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .grid-3, .steps, .mini-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .feature-block { gap: 36px; }
}

@media (max-width: 820px) {
    .menu-btn { display: block; }
    .main-nav {
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        align-items: stretch;
        padding: 8px;
        gap: 2px;
        display: none;
        max-height: calc(100vh - 68px);
        overflow-y: auto;
    }
    .main-nav.open { display: flex; }
    .main-nav > a, .nav-drop > button { width: 100%; justify-content: space-between; padding: 13px 16px; min-height: 48px; display: flex; align-items: center; }
    .drop-menu {
        position: static;
        box-shadow: none;
        border: none;
        background: var(--bg);
        min-width: 0;
        margin: 4px 0 8px;
        padding: 8px;
    }
    .drop-menu a { padding: 12px 14px; min-height: 48px; display: flex; align-items: center; }
    .header-actions .btn-ghost { display: none; }

    .feature-block { grid-template-columns: 1fr; padding: 40px 0; }
    .feature-block.flip .fb-media { order: 0; }
    .feature-block.flip .fb-text { order: 0; }
    .pricing-wrap, .demo-grid, .grid-2 { grid-template-columns: 1fr; }
    .section { padding: 60px 0; }
}

@media (max-width: 560px) {
    .grid-3, .steps, .mini-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero { padding: 52px 0 40px; }
    .hero-stats { gap: 22px; }
    .cta-band { padding: 40px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .header-actions .btn-primary { display: none; }
}

@media (max-width: 360px) {
    .header-inner { gap: 12px; height: 64px; }
    .brand img { height: 28px; }
    .container { padding: 0 16px; }
    .hero { padding: 40px 0 32px; }
    .hero h1 { font-size: 1.6rem; margin: 12px 0; }
    .hero-sub { font-size: 0.95rem; }
    .section { padding: 48px 0; }
    .demo-form, .calc-card, .card { padding: 20px; }
    .section-head h2 { font-size: 1.4rem; }
    .card h3 { font-size: 1rem; }
}
