/* MDJI Services - sitestijl */

:root {
    --ink: #16222e;
    --ink-soft: #4a5b6c;
    --navy: #1c3d57;
    --navy-deep: #15324a;
    --accent: #2f76ad;
    --accent-dark: #225d8c;
    --brand: #4682b4;
    --brand-light: #5e9bcb;
    --paper: #ffffff;
    --mist: #eef3f8;
    --line: #d7e0e9;
    --ok: #1d7a4f;
    --error-bg: #fbeaea;
    --error-ink: #8d2424;
    --radius: 10px;
    --shadow: 0 1px 3px rgba(13, 42, 69, 0.08), 0 8px 24px rgba(13, 42, 69, 0.07);
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

/* Zorg dat het hidden-attribuut altijd verbergt, ook op .btn (inline-block) e.d. */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { line-height: 1.25; color: var(--navy); margin: 0 0 0.5em; }
h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -0.02em; }
h2 { font-size: 1.35rem; }
h3 { font-size: 1.1rem; }
p { margin: 0 0 1em; }

a { color: var(--accent); }

.container { max-width: 1080px; margin: 0 auto; padding: 0 1.25rem; }

.skip-link {
    position: absolute; left: -999px; top: 0;
    background: var(--navy); color: #fff; padding: 0.5rem 1rem; z-index: 100;
}
.skip-link:focus { left: 0; }

/* Knoppen */
.btn {
    display: inline-block;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); }
.btn-primary:disabled { background: var(--line); color: var(--ink-soft); cursor: not-allowed; }
.btn-ghost { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--mist); }

.text-link { font-weight: 600; }

.muted { color: var(--ink-soft); }
.small { font-size: 0.85rem; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(6px);
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 4.25rem; gap: 1rem;
}
.brand { display: inline-flex; align-items: baseline; gap: 0.35rem; text-decoration: none; }
.brand-mark {
    font-weight: 800; font-size: 1.3rem; letter-spacing: 0.04em; color: var(--navy);
}
.brand-sub { font-weight: 500; color: var(--accent); font-size: 1rem; }

.site-nav ul { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.site-nav a { text-decoration: none; color: var(--ink); font-weight: 500; font-size: 0.95rem; }
.site-nav a:hover, .site-nav a.active { color: var(--accent); }
.site-nav .nav-cta a { color: #fff; }
.site-nav .nav-cta a:hover { color: #fff; }
.nav-lang a { color: var(--ink-soft); border: 1px solid var(--line); border-radius: 6px; padding: 0.25rem 0.6rem; }

.nav-toggle { display: none; background: none; border: 0; padding: 0.5rem; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); margin: 5px 0; transition: transform 0.2s ease, opacity 0.2s ease; }

/* Hero */
.hero {
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #346a99 100%);
    color: #d9e4ee;
    padding: 5rem 0 5.5rem;
}
.hero h1 { color: #fff; max-width: 21ch; }
.hero .lead { max-width: 60ch; font-size: 1.1rem; }
.kicker {
    text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem;
    font-weight: 700; color: #8fb8da; margin-bottom: 0.75rem;
}
.hero-actions { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 1.75rem; }

/* Secties */
.section { padding: 4rem 0; }
.section-alt { background: var(--mist); }
.section-title { font-size: 1.7rem; }
.section-intro { color: var(--ink-soft); max-width: 60ch; }
.section-more { margin-top: 2rem; }

.page-head {
    background: var(--mist); border-bottom: 1px solid var(--line);
    padding: 3.5rem 0 3rem;
}
.page-head .lead { max-width: 65ch; color: var(--ink-soft); font-size: 1.08rem; margin-bottom: 0; }

/* Grids en kaarten */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.75rem; box-shadow: var(--shadow);
}
.card h2 { font-size: 1.15rem; }

.project-card img { border-radius: 8px; margin-bottom: 1rem; border: 1px solid var(--line); }
.service-price { color: var(--ok); font-weight: 600; font-size: 0.92rem; margin-bottom: 0; }

/* Portfolio */
.portfolio-list { display: grid; gap: 2rem; }
.portfolio-item {
    display: grid; grid-template-columns: 2fr 3fr; gap: 2rem; align-items: center;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    padding: 2rem; box-shadow: var(--shadow);
}
.portfolio-item img { border-radius: 8px; border: 1px solid var(--line); }
.portfolio-meta { display: grid; grid-template-columns: auto 1fr; gap: 0.2rem 1rem; font-size: 0.92rem; margin: 0; }
.portfolio-meta dt { font-weight: 700; color: var(--navy); }
.portfolio-meta dd { margin: 0; color: var(--ink-soft); }

/* Werkwijze */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.5rem; max-width: 760px; }
.step {
    display: flex; gap: 1.25rem; background: #fff; border: 1px solid var(--line);
    border-radius: var(--radius); padding: 1.6rem; box-shadow: var(--shadow);
}
.step-number {
    flex: 0 0 auto; width: 2.4rem; height: 2.4rem; border-radius: 50%;
    background: var(--accent); color: #fff; font-weight: 700;
    display: inline-flex; align-items: center; justify-content: center;
}
.step h2 { font-size: 1.1rem; margin-bottom: 0.3rem; }
.step p { margin: 0; color: var(--ink-soft); }

/* Over */
.about-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 2.5rem; align-items: start; }
.about-aside {
    background: var(--mist); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.75rem;
}
.about-photo {
    aspect-ratio: 4 / 5; border-radius: 8px; background: var(--line);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 1.25rem;
}
.fact-list { margin: 0; padding-left: 1.1rem; }
.fact-list li { margin-bottom: 0.45rem; }

/* CTA-band */
.cta-band { background: var(--navy); color: #d9e4ee; padding: 3.25rem 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band h2 { color: #fff; margin-bottom: 0.35rem; }
.cta-band p { margin: 0; max-width: 55ch; }

/* Boekingsformulier */
.booking-grid { display: grid; gap: 1.75rem; }
.booking-step {
    border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.6rem; background: #fff; box-shadow: var(--shadow); margin: 0;
}
.booking-step legend { font-weight: 700; color: var(--navy); padding: 0 0.4rem; }

.type-options { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.type-option input { position: absolute; opacity: 0; }
.type-box {
    display: block; border: 2px solid var(--line); border-radius: var(--radius);
    padding: 1rem 1.2rem; cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease;
}
.type-box small { display: block; color: var(--ink-soft); margin-top: 0.2rem; }
.type-option input:checked + .type-box { border-color: var(--accent); background: #eef5fb; }
.type-option input:focus-visible + .type-box { outline: 3px solid var(--accent); outline-offset: 2px; }

/* Kalender */
.calendar { max-width: 420px; }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.cal-title { font-weight: 700; color: var(--navy); }
.cal-nav {
    background: none; border: 1px solid var(--line); border-radius: 6px;
    width: 2.2rem; height: 2.2rem; cursor: pointer; font-size: 1rem; color: var(--navy);
}
.cal-nav:disabled { opacity: 0.35; cursor: not-allowed; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow { text-align: center; font-size: 0.75rem; font-weight: 700; color: var(--ink-soft); padding: 0.3rem 0; }
.cal-day {
    aspect-ratio: 1; border: 1px solid transparent; border-radius: 8px; background: none;
    font-size: 0.92rem; color: var(--ink); cursor: pointer; font-family: inherit;
}
.cal-day:hover:not(:disabled) { border-color: var(--accent); }
.cal-day:disabled { color: #b8c4cf; cursor: not-allowed; }
.cal-day.available { background: #eef5fb; color: var(--accent-dark); font-weight: 600; }
.cal-day.selected { background: var(--accent); color: #fff; font-weight: 700; }

/* Tijdslots */
.slots { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.slot-btn {
    border: 2px solid var(--line); background: #fff; border-radius: 8px;
    padding: 0.55rem 1.1rem; font-weight: 600; font-size: 0.95rem;
    cursor: pointer; font-family: inherit; color: var(--ink);
}
.slot-btn:hover { border-color: var(--accent); }
.slot-btn.selected { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Formulier */
.form-field { margin-bottom: 1.1rem; }
.form-field label { display: block; font-weight: 600; font-size: 0.92rem; margin-bottom: 0.3rem; color: var(--navy); }
.form-field input, .form-field textarea {
    width: 100%; padding: 0.65rem 0.85rem; border: 1px solid var(--line);
    border-radius: 8px; font: inherit; color: var(--ink); background: #fff;
}
.form-field input:focus, .form-field textarea:focus { outline: 2px solid var(--accent); border-color: var(--accent); }

.summary { background: var(--mist); border-radius: 8px; padding: 0.8rem 1rem; }

.hp-field { position: absolute; left: -9999px; top: -9999px; }

.alert { border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 1.5rem; }
.alert-error { background: var(--error-bg); color: var(--error-ink); }
.alert ul { margin: 0; padding-left: 1.1rem; }

.confirm-card { max-width: 620px; }

/* Prose (privacy) */
.prose { max-width: 720px; }
.prose h2 { margin-top: 2rem; font-size: 1.2rem; }

/* Footer */
.site-footer { background: var(--navy-deep); color: #aebfcf; margin-top: 0; }
.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem;
    padding: 3.25rem 1.25rem 2rem;
}
.footer-brand .brand-mark { color: #fff; }
.footer-tagline { max-width: 38ch; font-size: 0.95rem; }
.footer-title { color: #fff; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.8rem; }
.footer-nav { list-style: none; margin: 0; padding: 0; }
.footer-nav li { margin-bottom: 0.45rem; font-size: 0.95rem; }
.footer-nav a { color: #aebfcf; text-decoration: none; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.12); padding: 1.25rem; font-size: 0.85rem; }
.footer-bottom p { margin: 0; }

/* Responsive */
@media (max-width: 860px) {
    .grid-3, .grid-2, .type-options { grid-template-columns: 1fr; }
    .portfolio-item { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.75rem; }
    .hero { padding: 3.5rem 0 4rem; }

    .nav-toggle { display: block; }
    .site-nav {
        display: none;
        position: absolute; left: 0; right: 0; top: 100%;
        background: #fff; border-bottom: 1px solid var(--line);
        padding: 1rem 1.25rem 1.5rem; box-shadow: var(--shadow);
    }
    .site-nav.open { display: block; }
    .site-nav ul { flex-direction: column; align-items: stretch; gap: 0.9rem; }
    .site-nav .nav-cta a { display: block; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { transition: none !important; }
}

/* Demo-aanbod */
.demo-band {
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
    background: #fff; border: 2px solid var(--accent); border-radius: var(--radius);
    padding: 2.25rem; box-shadow: var(--shadow);
}
.demo-band h2 { margin-bottom: 0.4rem; }
.demo-band p { margin: 0; max-width: 62ch; color: var(--ink-soft); }
.kicker-dark { color: var(--accent); margin-bottom: 0.4rem; }
.section-alt .demo-band { border-color: var(--accent); }

/* FAQ */
.faq-list { max-width: 760px; display: grid; gap: 0.9rem; }
.faq-item {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 0;
}
.faq-item summary {
    cursor: pointer; padding: 1.2rem 1.5rem; list-style: none;
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--accent); font-weight: 600; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item summary h2 { font-size: 1.05rem; margin: 0; }
.faq-item p { padding: 0 1.5rem 1.3rem; margin: 0; color: var(--ink-soft); }

/* Referenties */
.quote-card { margin: 0; }
.quote-card p { font-style: italic; color: var(--ink); }
.quote-card footer { font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); }

/* Dienstkeuze in boekingsformulier */
.service-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
.service-option {
    display: flex; align-items: center; gap: 0.6rem;
    border: 2px solid var(--line); border-radius: 8px;
    padding: 0.65rem 0.9rem; cursor: pointer; font-size: 0.95rem;
    transition: border-color 0.15s ease, background 0.15s ease;
}
.service-option:hover { border-color: var(--accent); }
.service-option input { accent-color: var(--accent); width: 1.05rem; height: 1.05rem; flex: 0 0 auto; }
.service-option:has(input:checked) { border-color: var(--accent); background: #eef5fb; }
@media (max-width: 600px) {
    .service-options { grid-template-columns: 1fr; }
}

/* Boekingswizard */
.booking-container { max-width: 760px; }
.wizard-head { margin-bottom: 1.5rem; }
.wizard-progress {
    display: flex; gap: 0.5rem; list-style: none; margin: 0 0 0.5rem; padding: 0;
}
.wizard-progress li {
    width: 2.1rem; height: 2.1rem; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    border: 2px solid var(--line); color: var(--ink-soft);
    font-weight: 700; font-size: 0.9rem; background: #fff;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.wizard-progress li.active { border-color: var(--accent); background: var(--accent); color: #fff; }
.wizard-progress li.done { border-color: var(--accent); color: var(--accent); background: #eef5fb; }
.wizard-count { margin: 0; }
.wizard-nav { display: flex; gap: 0.9rem; margin-top: 1.5rem; }
.wizard-nav .btn { min-width: 8rem; }
.wizard-error { color: var(--error-ink); margin: 1rem 0 0; }
.booking-step[hidden] { display: none; }

/* ===== Geanimeerde hero ===== */
.hero-animated { position: relative; overflow: hidden; }
.hero-animated .hero-content { position: relative; z-index: 2; }
.hero-bg { position: absolute; inset: 0; z-index: 1; overflow: hidden; }

.hero-grid {
    position: absolute; inset: -50%;
    background-image:
        linear-gradient(rgba(143, 184, 218, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(143, 184, 218, 0.08) 1px, transparent 1px);
    background-size: 46px 46px;
    transform: perspective(600px) rotateX(48deg);
    transform-origin: center top;
    animation: grid-drift 22s linear infinite;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 30%, transparent 75%);
}

.hero-glow {
    position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5;
}
.hero-glow-1 {
    width: 460px; height: 460px; top: -160px; right: -80px;
    background: radial-gradient(circle, rgba(70, 130, 180, 0.55), transparent 70%);
    animation: glow-float-1 16s ease-in-out infinite;
}
.hero-glow-2 {
    width: 380px; height: 380px; bottom: -150px; left: -60px;
    background: radial-gradient(circle, rgba(94, 155, 203, 0.42), transparent 70%);
    animation: glow-float-2 19s ease-in-out infinite;
}

@keyframes grid-drift {
    from { background-position: 0 0; }
    to { background-position: 0 46px; }
}
@keyframes glow-float-1 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, 50px); }
}
@keyframes glow-float-2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(50px, -40px); }
}

.btn-ghost-light { border-color: rgba(255, 255, 255, 0.55); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; }

@media (prefers-reduced-motion: reduce) {
    .hero-grid, .hero-glow-1, .hero-glow-2 { animation: none; }
}

/* ===== Techniek-balk ===== */
.tech-bar {
    display: flex; flex-wrap: wrap; gap: 0.75rem;
    list-style: none; margin: 1.75rem 0 0; padding: 0;
}
.tech-chip {
    display: inline-flex; align-items: center; gap: 0.55rem;
    background: #fff; border: 1px solid var(--line); border-radius: 999px;
    padding: 0.55rem 1.15rem; font-weight: 600; font-size: 0.92rem; color: var(--navy);
    box-shadow: var(--shadow);
    transition: transform 0.15s ease, border-color 0.15s ease;
}
.tech-chip:hover { transform: translateY(-2px); border-color: var(--accent); }
.tech-dot { width: 0.7rem; height: 0.7rem; border-radius: 50%; flex: 0 0 auto; }

/* ===== Iconen in kaarten ===== */
.card-icon {
    display: inline-flex; align-items: center; justify-content: center;
    width: 3rem; height: 3rem; border-radius: 12px;
    background: #eef5fb; color: var(--accent); margin-bottom: 1.1rem;
}
.card-icon .icon { width: 1.6rem; height: 1.6rem; }
.icon-card h2 { margin-top: 0; }

/* ===== Subtiele scroll-animaties ===== */
.reveal {
    opacity: 0; transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Trapsgewijze vertraging binnen een grid */
.grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.grid .reveal:nth-child(4) { transition-delay: 0.08s; }
.grid .reveal:nth-child(5) { transition-delay: 0.16s; }
.grid .reveal:nth-child(6) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* ===== Contactpagina ===== */
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 2rem; align-items: start; }
.contact-side { display: grid; gap: 1.5rem; }
.contact-methods { list-style: none; margin: 0 0 0.75rem; padding: 0; }
.contact-methods li { margin-bottom: 0.55rem; }
.alert-success { background: #e7f4ee; color: #1d6e47; }
@media (max-width: 860px) {
    .contact-grid { grid-template-columns: 1fr; }
}

/* ===== Sticky mobiele CTA ===== */
.sticky-cta { display: none; }
.wa-float { display: none; }
@media (max-width: 860px) {
    .sticky-cta {
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
        display: flex; gap: 0.6rem; align-items: center;
        padding: 0.7rem 1rem; background: rgba(255, 255, 255, 0.97);
        border-top: 1px solid var(--line); backdrop-filter: blur(6px);
    }
    .sticky-cta .btn-primary { flex: 1; text-align: center; }
    .sticky-wa {
        flex: 0 0 auto; width: 2.9rem; height: 2.9rem; border-radius: 10px;
        background: #25d366; color: #fff;
        display: inline-flex; align-items: center; justify-content: center;
    }
    body { padding-bottom: 4.5rem; }
    .wa-float {
        position: fixed; right: 1rem; bottom: 1rem; z-index: 60;
        width: 3.4rem; height: 3.4rem; border-radius: 50%;
        background: #25d366; color: #fff;
        display: inline-flex; align-items: center; justify-content: center;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    }
}

/* ===== Cookiemelding ===== */
.cookie-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    background: var(--navy-deep); color: #d9e4ee;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -2px 18px rgba(13, 42, 69, 0.18);
    padding: 0.95rem 1.25rem;
}
.cookie-inner {
    max-width: 1080px; margin: 0 auto;
    display: flex; align-items: center; gap: 0.85rem 1.5rem; flex-wrap: wrap;
}
.cookie-bar p { margin: 0; font-size: 0.9rem; flex: 1; min-width: 220px; }
.cookie-bar .btn { flex: 0 0 auto; }
@media (max-width: 860px) {
    /* boven de sticky mobiele CTA plaatsen */
    .cookie-bar { bottom: 4.5rem; }
}

/* ===== Prijsindicatie ===== */
.estimate {
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    box-shadow: var(--shadow); padding: 1.75rem; max-width: 760px; margin-top: 1.75rem;
}
.estimate-q { margin-bottom: 1.4rem; }
.estimate-label { font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.estimate-options { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.estimate-opt {
    border: 2px solid var(--line); background: #fff; border-radius: 8px;
    padding: 0.55rem 1.1rem; font: inherit; font-weight: 600; font-size: 0.92rem;
    color: var(--ink); cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease;
}
.estimate-opt:hover { border-color: var(--accent); }
.estimate-opt.selected { background: var(--accent); border-color: var(--accent); color: #fff; }
.estimate-result {
    background: var(--mist); border-radius: 8px; padding: 1.25rem 1.5rem;
    margin: 0.5rem 0 1rem; min-height: 3.5rem;
}
.estimate-amount-label { margin: 0; font-size: 0.85rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.06em; }
.estimate-amount { margin: 0.1rem 0 0.2rem; font-size: 1.9rem; font-weight: 800; color: var(--navy); }
.estimate-request { margin: 0; color: var(--navy); font-weight: 600; }
.estimate-disclaimer { margin-top: 0; }
.estimate-cta { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; margin-top: 1rem; }

/* Hidden-attribuut moet de display-regels overrulen */
.cookie-bar[hidden] { display: none; }
.sticky-cta[hidden] { display: none; }

/* ===== Kruimelpad ===== */
.breadcrumb { background: var(--mist); border-bottom: 1px solid var(--line); }
.breadcrumb ol {
    display: flex; flex-wrap: wrap; gap: 0.4rem; align-items: center;
    list-style: none; margin: 0; padding: 0.7rem 0; font-size: 0.85rem;
}
.breadcrumb a { color: var(--ink-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb [aria-current="page"] { color: var(--navy); font-weight: 600; }
.breadcrumb-sep { color: var(--ink-soft); margin-left: 0.4rem; }

/* ===== Blog ===== */
.blog-card h2 { font-size: 1.1rem; }
.blog-card h2 a { color: var(--navy); text-decoration: none; }
.blog-card h2 a:hover { color: var(--accent); }
.blog-tag {
    display: inline-block; background: #eef5fb; color: var(--accent-dark);
    font-size: 0.75rem; font-weight: 700; padding: 0.25rem 0.7rem;
    border-radius: 999px; margin-bottom: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em;
}
.blog-article { max-width: 720px; }
.blog-meta { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 0.3rem; }
.related-links { color: var(--ink-soft); margin-top: 0.5rem; }

/* ===== Hero-starter (keuzeblok) ===== */
.hero-starter {
    margin-top: 2rem; max-width: 560px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px; padding: 1.4rem 1.5rem;
}
.hero-starter-label { margin: 0 0 0.85rem; font-weight: 600; color: #fff; font-size: 0.98rem; }
.hero-starter-options { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.25rem; }
.hero-starter-options a {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.5rem 1rem; border-radius: 999px;
    background: rgba(255, 255, 255, 0.94); color: var(--navy);
    text-decoration: none; font-weight: 600; font-size: 0.9rem;
    border: 1px solid transparent;
    transition: transform 0.15s ease, background 0.15s ease;
}
.hero-starter-options a::after { content: "\2192"; opacity: 0.45; }
.hero-starter-options a:hover { transform: translateY(-2px); background: #fff; }
.hero-starter-foot { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.hero-starter-secondary { color: #cfe0ee; text-decoration: underline; font-size: 0.92rem; }
.hero-starter-secondary:hover { color: #fff; }

/* ===== WhatsApp-knop op bevestigingspagina ===== */
.confirm-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin: 0; }
.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: #25d366; color: #fff; border-color: #25d366;
}
.btn-whatsapp:hover { background: #1ebe5b; border-color: #1ebe5b; color: #fff; }
.btn-whatsapp svg { flex: 0 0 auto; }

/* ===== Sectie-CTA (primair + zachte link) ===== */
.section-cta { margin-top: 2.5rem; text-align: center; }
.section-cta-text { margin: 0 0 1rem; color: var(--ink-soft); }
.section-cta-actions {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 1.25rem; flex-wrap: wrap;
}
.section-cta-link { white-space: nowrap; }
