@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;800&family=Inter:wght@400;500;600;700&display=swap');

/* =============================================
   CSS VARIABELEN & RESET
   ============================================= */
:root {
    --groen:       #1a6b3c;
    --groen-mid:   #2d9e5f;
    --groen-licht: #e8f5ee;
    --groen-dark:  #0f4023;
    --grijs-bg:    #f7f4ef;
    --grijs-rand:  #e8e3da;
    --ink:         #111827;
    --muted:       #6b7280;
    --oranje:      #b45309;
    --blauw:       #1d4ed8;
    --rood:        #991b1b;

    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono:  'Courier New', Courier, monospace;

    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  20px;
    --shadow:     0 1px 3px rgba(0,0,0,0.06), 0 4px 14px rgba(0,0,0,0.07);
    --shadow-lg:  0 4px 16px rgba(0,0,0,0.10), 0 16px 48px rgba(0,0,0,0.12);
    --shadow-groen: 0 4px 20px rgba(26,107,60,0.25);
    --max-width:  1100px;
    --trans:      0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: #fff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--groen); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* =============================================
   LAYOUT
   ============================================= */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-kop {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--ink);
    margin-bottom: 12px;
    line-height: 1.2;
}

.section-sub {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 48px;
}

/* =============================================
   KNOPPEN
   ============================================= */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background var(--trans), color var(--trans), border-color var(--trans), transform var(--trans);
    text-align: center;
    font-family: var(--font-sans);
}

.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-primary {
    background: var(--groen);
    color: #fff;
    border-color: var(--groen);
    box-shadow: 0 2px 8px rgba(26,107,60,0.30);
    letter-spacing: 0.01em;
}
.btn-primary:hover {
    background: var(--groen-dark);
    border-color: var(--groen-dark);
    color: #fff;
    box-shadow: 0 4px 18px rgba(26,107,60,0.40);
}

.btn-secondary {
    background: var(--groen-mid);
    color: #fff;
    border-color: var(--groen-mid);
}
.btn-secondary:hover { background: var(--groen); border-color: var(--groen); color: #fff; }

.btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }

.btn-outline-groen {
    background: transparent;
    color: var(--groen);
    border-color: var(--groen);
}
.btn-outline-groen:hover { background: var(--groen); color: #fff; }

.btn-wit {
    background: #fff;
    color: var(--groen-dark);
    border-color: #fff;
}
.btn-wit:hover { background: var(--groen-licht); color: var(--groen-dark); }

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-full { width: 100%; display: block; }

/* =============================================
   NOTIFICATIEBALK
   ============================================= */
.notif-bar {
    background: var(--groen);
    color: #fff;
    font-size: 0.85rem;
    padding: 0 16px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    transition: box-shadow var(--trans);
}

.site-header.scrolled {
    box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--groen-dark);
    white-space: nowrap;
    flex-shrink: 0;
}
.logo:hover { text-decoration: none; color: var(--groen); }

.main-nav {
    display: flex;
    gap: 18px;
    margin: 0 auto;
}

.nav-link {
    color: var(--ink);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 4px 0;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color var(--trans), border-color var(--trans);
}
.nav-link:hover, .nav-link.active {
    color: var(--groen);
    border-bottom-color: var(--groen);
    text-decoration: none;
}

.header-cta {
    flex-shrink: 0;
    font-size: 0.9rem;
    padding: 10px 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: transform var(--trans), opacity var(--trans);
    border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO SECTIE
   ============================================= */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/zo-zon.webp');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(10,40,20,0.78) 0%, rgba(10,40,20,0.65) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
    padding: 60px 24px;
    color: #fff;
}

.hero-badge {
    display: inline-block;
    background: rgba(45, 158, 95, 0.35);
    border: 1px solid rgba(45, 158, 95, 0.6);
    color: #a7f3c0;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.02em;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
}

.hero-title-accent {
    color: #6ee7a0;
    display: block;
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255,255,255,0.85);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero-trust {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-trust span::before {
    content: '✓ ';
    color: #6ee7a0;
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
}

.scroll-indicator svg {
    display: block;
    width: 28px;
    height: 28px;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   SOCIALE BEWIJSLAST BALK
   ============================================= */
.proof-bar {
    background: var(--grijs-bg);
    border-bottom: 1px solid var(--grijs-rand);
    padding: 18px 0;
}

.proof-items {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--ink);
    white-space: nowrap;
}

.proof-item .proof-icon { font-size: 1.1rem; }

/* =============================================
   VERGELIJKING SECTIE
   ============================================= */
.vergelijking-sectie {
    padding: 80px 0;
    background: #fff;
}

.vergelijking-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: start;
    margin-top: 48px;
}

.vergelijking-kaart {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--trans), box-shadow var(--trans);
}
.vergelijking-kaart:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.vergelijking-kaart .kaart-header {
    padding: 20px 28px 16px;
    font-size: 1.1rem;
    font-weight: 700;
}

.vergelijking-kaart.slecht {
    border-top: 3px solid var(--rood);
}
.vergelijking-kaart.slecht .kaart-header {
    background: #fef2f2;
    color: var(--rood);
}

.vergelijking-kaart.goed {
    background: var(--groen-licht);
    border-top: 4px solid var(--groen);
    box-shadow: 0 4px 20px rgba(26,107,60,0.15);
}
.vergelijking-kaart.goed .kaart-header {
    background: var(--groen);
    color: #fff;
    font-size: 1.05rem;
}

.vergelijking-kaart ul {
    padding: 16px 28px 24px;
    background: #fff;
}
.vergelijking-kaart.goed ul { background: var(--groen-licht); }

.vergelijking-kaart li {
    padding: 7px 0;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--grijs-rand);
    color: var(--ink);
}
.vergelijking-kaart.goed li { border-color: rgba(26,107,60,0.15); }
.vergelijking-kaart li:last-child { border-bottom: none; }

.vs-cirkel {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--groen-dark);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    align-self: center;
    box-shadow: var(--shadow);
}

/* =============================================
   HOE HET WERKT
   ============================================= */
.hoe-het-werkt {
    background: var(--grijs-bg);
    padding: 80px 0;
}

.stappen-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 16px;
    align-items: start;
    margin: 48px 0 48px;
}

.stap-item {
    text-align: center;
    padding: 36px 24px;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: transform var(--trans), box-shadow var(--trans);
    border-bottom: 3px solid transparent;
}
.stap-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--groen);
}

.stap-nummer {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--groen);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-mono);
}

.stap-icoon {
    margin: 0 auto 16px;
    color: var(--groen);
}

.stap-item h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--ink);
}

.stap-item p {
    font-size: 0.93rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.stap-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--groen);
}

.stap-pijl {
    align-self: center;
    color: var(--groen-mid);
    font-size: 1.5rem;
    flex-shrink: 0;
}

/* =============================================
   RAPPORT INHOUD
   ============================================= */
.rapport-inhoud {
    padding: 80px 0;
    background: #fff;
}

.rapport-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.rapport-kaart {
    background: #fff;
    border: 1px solid var(--grijs-rand);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.rapport-kaart:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--groen-mid);
}

.rapport-icoon {
    width: 48px;
    height: 48px;
    background: var(--groen-licht);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--groen);
}

.rapport-kaart h3 { font-size: 1.1rem; font-weight: 700; }
.rapport-kaart p { font-size: 0.93rem; color: var(--muted); line-height: 1.6; }

/* =============================================
   WAAROM €29
   ============================================= */
.waarom-prijs {
    background: var(--groen-dark);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.prijs-groot {
    font-family: var(--font-mono);
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.prijs-label {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    margin-bottom: 40px;
}

.prijs-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    font-style: italic;
    color: rgba(255,255,255,0.92);
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.5;
}

.voordelen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.voordeel-kaart {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-md);
    padding: 24px 20px;
}

.voordeel-kaart .voordeel-icon { font-size: 1.8rem; margin-bottom: 12px; }
.voordeel-kaart p { font-size: 0.92rem; color: rgba(255,255,255,0.85); line-height: 1.6; }

/* =============================================
   REVIEWS COMPONENT & SECTIE
   ============================================= */
.reviews-sectie {
    background: var(--grijs-bg);
    padding: 80px 0;
}

.reviews-sectie .text-center { text-align: center; }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.review-card {
    background: #fff;
    border-radius: var(--radius-md);
    padding: 28px 28px 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    border-left: 4px solid var(--groen-licht);
    transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
}
.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--groen);
}

.review-quote-mark {
    font-size: 60px;
    line-height: 1;
    color: var(--groen-licht);
    font-family: Georgia, serif;
    position: absolute;
    top: 12px;
    left: 20px;
    pointer-events: none;
    select: none;
}

.review-stars { display: flex; gap: 2px; }
.ster { font-size: 1.1rem; color: var(--grijs-rand); }
.ster.vol { color: #f59e0b; }

.review-tekst {
    font-style: italic;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.65;
    flex: 1;
    padding-top: 20px;
}

.review-auteur {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 4px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.review-avatar-initialen {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.review-naam-info strong { display: block; font-size: 0.95rem; }
.review-naam-info .review-plaats { font-size: 0.85rem; color: var(--muted); }

.review-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    align-self: flex-start;
}
.review-tag.tag-groen { background: var(--groen-licht); color: var(--groen); }
.review-tag.tag-grijs { background: var(--grijs-bg); color: var(--muted); border: 1px solid var(--grijs-rand); }

/* =============================================
   FAQ
   ============================================= */
.faq-sectie {
    padding: 80px 0;
    background: #fff;
}

.faq-lijst {
    max-width: 780px;
    margin: 48px auto 0;
}

.faq-item {
    border: 1px solid var(--grijs-rand);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-vraag {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-family: var(--font-sans);
    transition: background var(--trans);
}
.faq-vraag:hover { background: var(--grijs-bg); }
.faq-vraag:focus-visible { outline: 2px solid var(--groen); outline-offset: -2px; }

.faq-pijl {
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--groen);
    transition: transform var(--trans);
    font-style: normal;
}

.faq-item.open .faq-pijl { transform: rotate(180deg); }

.faq-antwoord {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-antwoord { max-height: 400px; }

.faq-antwoord-inner {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.7;
}

/* =============================================
   AFSLUITENDE CTA
   ============================================= */
.cta-afsluiting {
    position: relative;
    background: var(--groen-dark);
    padding: 80px 0;
    text-align: center;
    overflow: hidden;
}

.cta-afsluiting .cta-bg {
    position: absolute;
    inset: 0;
    background-image: url('/img/zo-woning.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
}

.cta-afsluiting .cta-inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-afsluiting h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-afsluiting .cta-sub {
    color: rgba(255,255,255,0.78);
    margin-bottom: 36px;
    font-size: 1.05rem;
}

.cta-micro {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-top: 16px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--groen-dark);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}

.footer-inner { padding-bottom: 40px; }

.footer-cols {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    transition: color var(--trans);
}
.footer-col a:hover { color: #fff; text-decoration: none; }

.footer-kvk { font-size: 0.8rem; color: rgba(255,255,255,0.4); }

.footer-trust {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.12);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

.trust-mollie {
    font-weight: 700;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.03em;
}

.trust-garantie {
    background: rgba(255,255,255,0.1);
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.2);
    font-weight: 600;
    font-size: 0.82rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 32px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
}
.footer-bottom a:hover { color: rgba(255,255,255,0.85); }

/* =============================================
   VOORBEELD RAPPORT PAGINA
   ============================================= */
.preview-balk {
    position: sticky;
    top: 96px;
    z-index: 900;
    background: linear-gradient(135deg, #0f4023 0%, #1a6b3c 100%);
    border-bottom: none;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.92rem;
    color: rgba(255,255,255,0.92);
    font-weight: 500;
    box-shadow: 0 2px 12px rgba(15,64,35,0.25);
}

.preview-balk .btn {
    padding: 8px 20px;
    font-size: 0.88rem;
    background: #fff;
    color: var(--groen-dark);
    border: none;
}
.preview-balk .btn:hover { background: #e8f5ee; }

.rapport-document {
    max-width: 900px;
    margin: 40px auto;
    background: #fff;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    overflow: hidden;
    padding-bottom: 40px;
}

.rapport-doc-header {
    background: var(--groen-dark);
    color: #fff;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.rapport-doc-header h1 { font-size: 1.2rem; font-family: var(--font-serif); }
.rapport-doc-header p { font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.rapport-doc-meta { text-align: right; font-size: 0.85rem; }
.rapport-doc-meta strong { display: block; color: #fff; }
.rapport-doc-meta span { color: rgba(255,255,255,0.65); font-size: 0.8rem; }

.conclusie-banner {
    margin: 28px 32px;
    background: linear-gradient(135deg, #0f4023 0%, #1a6b3c 100%);
    color: #fff;
    padding: 24px 32px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(15,64,35,0.25);
    letter-spacing: -0.01em;
}
.conclusie-banner .conclusie-check {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.conclusie-banner .conclusie-tekst { flex: 1; }
.conclusie-banner .conclusie-label {
    font-size: 0.82rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.rapport-sectie {
    padding: 0 32px 28px;
}

.rapport-sectie h2 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--groen-licht);
    color: var(--groen-dark);
}

/* Score meter */
.score-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin: 24px 0;
}

.score-meter-wrap {
    text-align: center;
    position: relative;
}

.score-meter-wrap svg { overflow: visible; }
.score-meter-label {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 8px;
    display: block;
}

.metrics-rij {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.metric-blok {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--grijs-rand);
}

.metric-blok.groen { background: var(--groen-licht); border-color: rgba(26,107,60,0.2); }
.metric-blok.blauw { background: #eff6ff; border-color: rgba(29,78,216,0.2); }
.metric-blok.oranje { background: #fff7ed; border-color: rgba(180,83,9,0.2); }

.metric-blok .metric-val {
    font-family: var(--font-mono);
    font-size: 2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}
.metric-blok.groen .metric-val { color: var(--groen); }
.metric-blok.blauw .metric-val { color: var(--blauw); }
.metric-blok.oranje .metric-val { color: var(--oranje); }

.metric-blok .metric-label { font-size: 0.82rem; color: var(--muted); }

/* Klant tabel */
.data-tabel {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.93rem;
}

.data-tabel th, .data-tabel td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--grijs-rand);
}

.data-tabel th {
    background: var(--grijs-bg);
    font-weight: 600;
    color: var(--ink);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.data-tabel tr:last-child td { border-bottom: none; }
.data-tabel .num { text-align: right; font-family: var(--font-mono); }
.data-tabel .highlight { font-weight: 700; color: var(--groen); }

/* SVG Charts */
.chart-container {
    margin: 20px 0;
    overflow: hidden;
}

.chart-container svg { display: block; max-width: 100%; }

.chart-toelichting {
    background: var(--groen-licht);
    border-left: 3px solid var(--groen);
    padding: 14px 20px;
    font-size: 0.9rem;
    color: #1a3d25;
    margin: 16px 0;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* Tijdlijn */
.tijdlijn-container { margin: 24px 0; }

.tijdlijn-container svg { display: block; max-width: 100%; }

/* Product kaarten */
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 20px 0;
}

.product-kaart {
    border: 1px solid var(--grijs-rand);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-kaart img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.product-kaart-body { padding: 16px; }
.product-kaart-body h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
.product-kaart-body .product-sterren { color: #f59e0b; font-size: 0.9rem; margin-bottom: 4px; }
.product-kaart-body .product-aanbeveling { font-size: 0.78rem; color: var(--groen); font-weight: 600; margin-bottom: 8px; }
.product-kaart-body .product-prijs { font-family: var(--font-mono); font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.product-kaart-body .product-features { font-size: 0.82rem; color: var(--muted); }
.product-kaart-body .product-features li { padding: 2px 0; }
.product-kaart-body .product-features li::before { content: '✓ '; color: var(--groen); }

/* Aandachtspunten */
.aandachtspunten-box {
    background: #fff7ed;
    border: 1px solid rgba(180,83,9,0.2);
    border-left: 3px solid var(--oranje);
    padding: 20px 24px;
    border-radius: var(--radius-sm);
    margin: 20px 0;
}

.aandachtspunten-box ul { list-style: none; }
.aandachtspunten-box li {
    padding: 5px 0;
    font-size: 0.92rem;
    color: #78350f;
}
.aandachtspunten-box li::before { content: '→ '; color: var(--oranje); font-weight: 700; }

/* Rapport CTA box */
.rapport-cta-box {
    margin: 32px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    text-align: center;
    padding: 40px;
    color: #fff;
    background: var(--groen-dark);
}

.rapport-cta-box h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 12px;
}
.rapport-cta-box p { font-size: 0.95rem; opacity: 0.85; margin-bottom: 24px; }

/* Disclaimer */
.rapport-disclaimer {
    margin: 24px 32px 0;
    padding: 16px;
    background: var(--grijs-bg);
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.6;
}

/* =============================================
   UPLOAD PAGINA
   ============================================= */
.upload-pagina {
    background: var(--grijs-bg);
    min-height: 80vh;
    padding: 60px 0;
}

.upload-wrapper {
    max-width: 680px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: 40px;
}

.upload-stappen {
    display: flex;
    gap: 0;
    margin-bottom: 36px;
}

.upload-stap {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    position: relative;
}

.upload-stap::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: var(--grijs-rand);
}

.upload-stap:last-child::after { display: none; }
.upload-stap.actief { color: var(--groen); }
.upload-stap.klaar { color: var(--groen-mid); }

.upload-zone {
    border: 2px dashed var(--groen-mid);
    border-radius: var(--radius-md);
    padding: 48px 24px;
    text-align: center;
    cursor: pointer;
    transition: background var(--trans), border-color var(--trans);
    background: #fff;
}

.upload-zone:hover, .upload-zone.over {
    background: var(--groen-licht);
    border-color: var(--groen);
}

.upload-icoon { color: var(--groen); margin: 0 auto 16px; display: block; }
.upload-zone h3 { font-size: 1.05rem; margin-bottom: 8px; }
.upload-zone p { font-size: 0.88rem; color: var(--muted); margin-bottom: 16px; }

.upload-of {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    color: var(--muted);
    font-size: 0.85rem;
}
.upload-of::before, .upload-of::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--grijs-rand);
}

#bestand-invoer { display: none; }

.upload-bestand-naam {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: var(--groen-licht);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--groen);
    margin-top: 16px;
}

.upload-bestand-naam.zichtbaar { display: flex; }

/* Voortgangsbalk */
.voortgang-wrapper {
    display: none;
    margin-top: 24px;
}

.voortgang-wrapper.actief { display: block; }

.voortgang-balk {
    background: var(--grijs-rand);
    border-radius: 999px;
    height: 8px;
    overflow: hidden;
    margin-bottom: 8px;
}

.voortgang-vulling {
    height: 100%;
    background: var(--groen);
    border-radius: 999px;
    width: 0%;
    transition: width 0.4s ease;
}

.voortgang-tekst {
    font-size: 0.85rem;
    color: var(--muted);
    text-align: center;
}

/* =============================================
   BETALEN PAGINA
   ============================================= */
.betalen-pagina {
    background: var(--grijs-bg);
    padding: 60px 0;
    min-height: 80vh;
}

.betalen-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: start;
}

.betalen-formulier {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: 36px;
}

.betalen-formulier h1 {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    margin-bottom: 8px;
}

.betalen-formulier .formulier-sub {
    color: var(--muted);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

.form-groep {
    margin-bottom: 20px;
}

.form-groep label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 6px;
    color: var(--ink);
}

.form-groep input[type="text"],
.form-groep input[type="email"],
.form-groep input[type="number"],
.form-groep input[type="tel"],
.form-groep textarea,
.form-groep select {
    width: 100%;
    border: 1px solid var(--grijs-rand);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 0.95rem;
    font-family: var(--font-sans);
    color: var(--ink);
    background: #fff;
    transition: border-color var(--trans), box-shadow var(--trans);
}

.form-groep input:focus,
.form-groep textarea:focus,
.form-groep select:focus {
    outline: none;
    border-color: var(--groen-mid);
    box-shadow: 0 0 0 3px rgba(45,158,95,0.15);
}

.form-groep input.fout,
.form-groep textarea.fout {
    border-color: var(--rood);
}

.form-groep .form-fout {
    font-size: 0.82rem;
    color: var(--rood);
    margin-top: 4px;
    display: none;
}

.form-groep .form-fout.zichtbaar { display: block; }

.form-groep textarea { min-height: 100px; resize: vertical; }

.form-groep-rij {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkbox-groep {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 20px;
}

.checkbox-groep input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--groen);
    flex-shrink: 0;
}

.betalen-micro {
    font-size: 0.82rem;
    color: var(--muted);
    text-align: center;
    margin-top: 10px;
}

/* Betalen sidebar */
.betalen-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.betalen-inbegrepen {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: 28px;
}

.betalen-inbegrepen h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.betalen-inbegrepen ul li {
    padding: 7px 0;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--grijs-bg);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.betalen-inbegrepen ul li::before {
    content: '✓';
    color: var(--groen);
    font-weight: 700;
    flex-shrink: 0;
}

.betalen-inbegrepen ul li:last-child { border-bottom: none; }

.prijs-box {
    background: var(--groen);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
}

.prijs-box .prijs-groot {
    font-family: var(--font-mono);
    font-size: 2.8rem;
    line-height: 1;
    margin-bottom: 4px;
}

.prijs-box .prijs-omschrijving {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-bottom: 4px;
}

.prijs-box .prijs-garantie {
    font-size: 0.8rem;
    opacity: 0.7;
}

.betalen-vertrouwen {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.betalen-quote-mini {
    background: var(--grijs-bg);
    border-left: 3px solid var(--groen-mid);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--muted);
}

.betalen-quote-mini strong {
    display: block;
    margin-top: 6px;
    font-style: normal;
    font-size: 0.82rem;
    color: var(--ink);
}

/* =============================================
   HANDLEIDING PAGINA
   ============================================= */
.pagina-header {
    position: relative;
    padding: 72px 0;
    text-align: center;
    overflow: hidden;
}

.pagina-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.pagina-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,40,20,0.80);
    z-index: 1;
}

.pagina-header .pagina-header-inner {
    position: relative;
    z-index: 2;
    color: #fff;
}

.pagina-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 12px;
}

.pagina-header p {
    font-size: 1.05rem;
    opacity: 0.85;
}

/* Postcode tool */
.postcode-tool {
    background: var(--grijs-bg);
    padding: 28px;
    border-radius: var(--radius-md);
    margin: 40px 0;
    border: 1px solid var(--grijs-rand);
}

.postcode-tool label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
}

.postcode-invoer-rij {
    display: flex;
    gap: 10px;
}

.postcode-invoer-rij input {
    flex: 1;
    border: 1px solid var(--grijs-rand);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-size: 1rem;
    font-family: var(--font-sans);
}

.postcode-invoer-rij input:focus {
    outline: none;
    border-color: var(--groen-mid);
    box-shadow: 0 0 0 3px rgba(45,158,95,0.15);
}

.postcode-resultaat {
    margin-top: 16px;
    padding: 14px 18px;
    background: #fff;
    border-radius: var(--radius-sm);
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--groen-mid);
    color: var(--groen-dark);
}

.postcode-resultaat.zichtbaar { display: flex; }

/* Tabs */
.tabs-wrapper {
    margin: 32px 0;
}

.tab-knoppen {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--grijs-rand);
    margin-bottom: 28px;
}

.tab-knop {
    background: none;
    border: none;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--muted);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color var(--trans), border-color var(--trans);
    font-family: var(--font-sans);
}

.tab-knop:hover { color: var(--groen); }
.tab-knop.actief { color: var(--groen); border-bottom-color: var(--groen); }

.tab-inhoud { display: none; }
.tab-inhoud.actief { display: block; }

/* Stappen in handleiding */
.stap-handleiding {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.stap-handleiding-nr {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--groen);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: var(--font-mono);
}

.stap-handleiding-inhoud { flex: 1; }
.stap-handleiding-inhoud h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.stap-handleiding-inhoud p { font-size: 0.92rem; color: var(--muted); margin-bottom: 10px; }

/* Hulpbox */
.hulp-box {
    background: var(--grijs-bg);
    border: 1px solid var(--grijs-rand);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 40px;
}

.hulp-box img { width: 80px; height: 80px; object-fit: cover; border-radius: 50%; flex-shrink: 0; }
.hulp-box h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.hulp-box p { font-size: 0.92rem; color: var(--muted); }

/* =============================================
   REVIEWS PAGINA
   ============================================= */
.reviews-stats {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.reviews-stat { text-align: center; }
.reviews-stat .stat-getal {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--groen);
    display: block;
    line-height: 1;
}
.reviews-stat .stat-label { font-size: 0.85rem; color: var(--muted); }

/* =============================================
   FOTO STRIP
   ============================================= */
.foto-strip { overflow: hidden; }
.foto-strip-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 320px;
}
.foto-strip-item { position: relative; overflow: hidden; }
.foto-strip-item img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: transform 0.5s ease;
}
.foto-strip-item:hover img { transform: scale(1.04); }
.foto-strip-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 40px 16px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);
    color: #fff; font-size: 0.85rem; font-weight: 600; line-height: 1.3;
}
@media (max-width: 640px) {
    .foto-strip-grid { grid-template-columns: 1fr; height: auto; }
    .foto-strip-item { height: 180px; }
}

/* =============================================
   SPLIT SECTIE
   ============================================= */
.split-sectie {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.split-sectie-tekst {
    background: var(--groen-dark);
    color: #fff;
    padding: 64px 48px;
    display: flex; flex-direction: column; justify-content: center;
}
.split-sectie-tekst h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: #fff; margin-bottom: 16px;
}
.split-sectie-tekst > p { color: rgba(255,255,255,0.8); margin-bottom: 20px; line-height: 1.7; }
.split-punten { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.split-punten li {
    display: flex; gap: 10px; align-items: flex-start;
    font-size: 0.95rem; color: rgba(255,255,255,0.9); line-height: 1.5;
}
.split-punten li::before { content: '✓'; color: #6ee7a0; font-weight: 700; flex-shrink: 0; }
.split-sectie-foto { position: relative; overflow: hidden; min-height: 380px; }
.split-sectie-foto img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 768px) {
    .split-sectie { grid-template-columns: 1fr; }
    .split-sectie-tekst { padding: 48px 24px; }
    .split-sectie-foto { min-height: 260px; }
}

.ster-verdeling { width: 100%; max-width: 300px; }
.ster-rij {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
    font-size: 0.88rem;
}
.ster-rij .ster-nr { width: 20px; text-align: right; color: var(--muted); }
.ster-balk-container { flex: 1; height: 10px; background: var(--grijs-rand); border-radius: 999px; overflow: hidden; }
.ster-balk-vulling { height: 100%; background: #f59e0b; border-radius: 999px; }
.ster-pct { width: 36px; color: var(--muted); font-size: 0.82rem; }

/* Review formulier */
.review-formulier {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: 32px;
    max-width: 640px;
    margin: 48px auto 0;
}

.review-formulier h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.review-formulier .form-sub { color: var(--muted); font-size: 0.92rem; margin-bottom: 24px; }

.ster-klikbaar { display: flex; gap: 4px; margin-bottom: 4px; }
.ster-klikbaar button {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--grijs-rand);
    transition: color var(--trans), transform var(--trans);
    padding: 0;
    line-height: 1;
}
.ster-klikbaar button.actief,
.ster-klikbaar button.over { color: #f59e0b; transform: scale(1.1); }

/* =============================================
   OFFERTE PAGINA & BEDANKT
   ============================================= */
.bedankt-sectie {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 24px;
}

.bedankt-inner { max-width: 560px; }

.vinkje-animatie {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--groen);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.vinkje-animatie svg { color: #fff; }

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.bedankt-stappen {
    list-style: none;
    text-align: left;
    margin: 28px 0;
}

.bedankt-stappen li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px solid var(--grijs-rand);
    font-size: 0.95rem;
}
.bedankt-stappen li:last-child { border-bottom: none; }

.bedankt-stap-nr {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--groen-licht);
    color: var(--groen);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* =============================================
   BETALING OK / MISLUKT
   ============================================= */
.betaling-status {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
}

.betaling-status-inner {
    max-width: 560px;
    text-align: center;
}

.status-icoon {
    font-size: 4rem;
    margin-bottom: 24px;
}

/* =============================================
   HULP COMPONENTEN
   ============================================= */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    margin-bottom: 20px;
}

.alert-groen {
    background: var(--groen-licht);
    border: 1px solid rgba(26,107,60,0.25);
    color: var(--groen-dark);
}

.alert-rood {
    background: #fef2f2;
    border: 1px solid rgba(153,27,27,0.25);
    color: var(--rood);
}

.alert-oranje {
    background: #fff7ed;
    border: 1px solid rgba(180,83,9,0.25);
    color: #78350f;
}

/* =============================================
   ANIMATIES
   ============================================= */
.fade-in-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.zichtbaar {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.fade-in-up:nth-child(4) { transition-delay: 0.3s; }

/* =============================================
   RESPONSIVE — TABLET (768px)
   ============================================= */
@media (max-width: 960px) {
    .vergelijking-grid {
        grid-template-columns: 1fr;
    }
    .vs-cirkel { margin: 0 auto; }
    .stappen-grid {
        grid-template-columns: 1fr;
    }
    .stap-pijl { transform: rotate(90deg); margin: 0 auto; }
    .rapport-grid { grid-template-columns: 1fr; }
    .voordelen-grid { grid-template-columns: 1fr; }
    .footer-cols { grid-template-columns: 1fr 1fr; }
    .betalen-grid { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: 1fr; }
    .metrics-rij { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
}

/* =============================================
   RESPONSIVE — MOBIEL (600px)
   ============================================= */
@media (max-width: 600px) {
    .main-nav {
        display: none;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 8px 24px rgba(0,0,0,0.1);
        z-index: 999;
        padding: 16px 0;
    }
    .main-nav.open { display: flex; }
    .nav-link {
        padding: 12px 24px;
        border-bottom: 1px solid var(--grijs-bg);
        border-bottom-width: 1px;
    }
    .header-cta { display: none; }
    .hamburger { display: flex; }
    .site-header { position: relative; }
    .site-header.sticky-mobiel { position: sticky; }

    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-trust { flex-direction: column; gap: 8px; align-items: center; }

    .proof-items { flex-direction: column; align-items: center; gap: 14px; }
    .stap-handleiding { flex-direction: column; }
    .postcode-invoer-rij { flex-direction: column; }
    .footer-cols { grid-template-columns: 1fr; }
    .footer-trust { flex-direction: column; gap: 14px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-groep-rij { grid-template-columns: 1fr; }
    .rapport-doc-header { flex-direction: column; }
    .rapport-doc-meta { text-align: left; }
    .rapport-sectie { padding: 0 20px 20px; }
    .rapport-cta-box { margin: 20px; padding: 28px 20px; }
    .rapport-disclaimer { margin: 16px 20px 0; }
    .conclusie-banner { margin: 20px; }
    .upload-wrapper { padding: 24px; }
    .betalen-formulier { padding: 24px; }
    .reviews-stats { flex-direction: column; gap: 24px; }
    .hulp-box { flex-direction: column; text-align: center; }
    .notif-bar { font-size: 0.75rem; height: auto; padding: 8px 16px; }
    .preview-balk { flex-direction: column; gap: 10px; text-align: center; }
}

@media (max-width: 480px) {
    .rapport-document { margin: 20px 12px; }
}

/* =============================================
   BLOG — OVERZICHT
   ============================================= */
.blog-header {
    background: linear-gradient(135deg, var(--groen-dark) 0%, var(--groen) 100%);
    padding: 72px 0 56px;
    text-align: center;
    color: #fff;
}
.blog-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 12px;
}
.blog-header p { color: rgba(255,255,255,0.82); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

.blog-sectie { padding: 64px 0; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.blog-kaart {
    background: #fff;
    border: 1px solid var(--grijs-rand);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform var(--trans), box-shadow var(--trans);
    display: flex;
    flex-direction: column;
}
.blog-kaart:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.blog-kaart-afbeelding {
    height: 130px;
    overflow: hidden;
    position: relative;
}
.blog-kaart-afbeelding img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-kaart:hover .blog-kaart-afbeelding img { transform: scale(1.04); }

.blog-kaart-label {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--groen);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.blog-kaart-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-kaart-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 10px; display: flex; gap: 12px; }
.blog-kaart-body h2 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--ink);
}
.blog-kaart-body h2 a { color: inherit; }
.blog-kaart-body h2 a:hover { color: var(--groen); text-decoration: none; }
.blog-kaart-excerpt { font-size: 0.9rem; color: var(--muted); line-height: 1.6; flex: 1; }
.blog-kaart-lees-meer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--groen);
}
.blog-kaart-lees-meer:hover { text-decoration: none; gap: 10px; }

/* =============================================
   BLOG — ARTIKEL
   ============================================= */
.artikel-header {
    background: #fff;
    border-bottom: 1px solid var(--grijs-rand);
    padding: 56px 0 48px;
    color: var(--ink);
}
.artikel-header .container { max-width: 1060px; }
.artikel-breadcrumb {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 20px;
    display: flex;
    gap: 6px;
    align-items: center;
}
.artikel-breadcrumb a { color: var(--muted); }
.artikel-breadcrumb a:hover { color: var(--groen); text-decoration: none; }
.artikel-category-badge {
    display: inline-block;
    background: var(--groen-licht);
    color: var(--groen);
    border: 1px solid rgba(26,107,60,0.20);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.artikel-header h1 {
    font-family: var(--font-serif);
    font-size: clamp(1.7rem, 3.8vw, 2.6rem);
    line-height: 1.22;
    margin-bottom: 20px;
    color: var(--ink);
    max-width: 760px;
}
.artikel-meta {
    display: flex;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--muted);
    flex-wrap: wrap;
    align-items: center;
}
.artikel-meta span:not(:last-child)::after {
    content: '·';
    margin-left: 8px;
    color: var(--grijs-rand);
}

.artikel-wrapper {
    max-width: 1060px;
    margin: 0 auto;
    padding: 48px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 56px;
    align-items: start;
}
@media (max-width: 900px) { .artikel-wrapper { grid-template-columns: 1fr; } }

.artikel-inhoud { min-width: 0; }
.artikel-inhoud h2 {
    font-family: var(--font-serif);
    font-size: 1.55rem;
    color: var(--ink);
    margin: 44px 0 16px;
    line-height: 1.28;
    padding-top: 8px;
    border-top: 2px solid var(--grijs-rand);
}
.artikel-inhoud h2:first-of-type { margin-top: 32px; }
.artikel-inhoud h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin: 28px 0 12px;
}
.artikel-inhoud p { margin-bottom: 22px; line-height: 1.85; color: #374151; font-size: 1.03rem; }
.artikel-inhoud ul, .artikel-inhoud ol {
    margin: 0 0 18px 20px;
    line-height: 1.8;
    color: #374151;
}
.artikel-inhoud li { margin-bottom: 6px; }
.artikel-inhoud strong { color: var(--ink); }
.artikel-inhoud a { color: var(--groen); font-weight: 500; }

.artikel-tip {
    background: var(--groen-licht);
    border-left: 4px solid var(--groen);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 16px 20px;
    margin: 24px 0;
    font-size: 0.93rem;
    color: #1a3d28;
}
.artikel-tip strong { display: block; margin-bottom: 4px; color: var(--groen); }

.artikel-waarschuwing {
    background: #fff7ed;
    border-left: 4px solid var(--oranje);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 16px 20px;
    margin: 24px 0;
    font-size: 0.93rem;
    color: #7c2d12;
}

.artikel-tabel { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 0.9rem; }
.artikel-tabel th {
    background: var(--groen);
    color: #fff;
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
}
.artikel-tabel td { padding: 9px 14px; border-bottom: 1px solid var(--grijs-rand); }
.artikel-tabel tr:last-child td { border-bottom: none; }
.artikel-tabel tr:nth-child(even) td { background: var(--grijs-bg); }

.artikel-cta {
    background: linear-gradient(135deg, var(--groen-dark), var(--groen));
    border-radius: var(--radius-md);
    padding: 32px;
    margin: 40px 0;
    color: #fff;
    text-align: center;
}
.artikel-cta h3 { font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 10px; }
.artikel-cta p { color: rgba(255,255,255,0.85); margin-bottom: 20px; font-size: 0.95rem; }
.artikel-cta .btn { background: #fff; color: var(--groen); font-weight: 700; }
.artikel-cta .btn:hover { background: var(--groen-licht); }

.artikel-sidebar { position: sticky; top: 90px; }
.sidebar-blok {
    background: var(--grijs-bg);
    border: 1px solid var(--grijs-rand);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
}
.sidebar-blok h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 14px; color: var(--ink); }
.sidebar-inhoudsopgave { list-style: none; padding: 0; }
.sidebar-inhoudsopgave li { margin-bottom: 8px; }
.sidebar-inhoudsopgave a { font-size: 0.85rem; color: var(--muted); display: block; padding: 4px 0; border-bottom: 1px solid var(--grijs-rand); }
.sidebar-inhoudsopgave a:hover { color: var(--groen); text-decoration: none; }

.artikel-gerelateerd { padding: 72px 0; background: var(--grijs-bg); border-top: 1px solid var(--grijs-rand); }
.artikel-gerelateerd .container { max-width: var(--max-width); }
.artikel-gerelateerd .blog-section-titel { margin-bottom: 40px; }

@media (max-width: 600px) {
    .blog-grid { grid-template-columns: 1fr; }
    .artikel-wrapper { padding: 36px 16px 60px; }
}

/* =============================================
   BLOG — REACTIES
   ============================================= */
.reacties-sectie {
    margin-top: 56px;
    padding-top: 40px;
    border-top: 2px solid var(--grijs-rand);
}
.reacties-sectie h2 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    margin-bottom: 28px;
    color: var(--ink);
}
.reactie {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--grijs-rand);
}
.reactie:last-of-type { border-bottom: none; }
.reactie-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--groen-dark), var(--groen));
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.reactie-avatar.blauw  { background: linear-gradient(135deg, #1e40af, #2563eb); }
.reactie-avatar.oranje { background: linear-gradient(135deg, #92400e, #b45309); }
.reactie-avatar.paars  { background: linear-gradient(135deg, #5b21b6, #7c3aed); }
.reactie-avatar.site   { background: linear-gradient(135deg, var(--groen-dark), var(--groen)); }
.reactie-inhoud { flex: 1; min-width: 0; }
.reactie-header {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}
.reactie-naam { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.reactie-naam.site-naam { color: var(--groen); }
.reactie-datum { font-size: 0.78rem; color: var(--muted); }
.reactie-inhoud p { font-size: 0.9rem; line-height: 1.7; color: #374151; margin: 0; }
.reactie-antwoord { margin-left: 60px; }

/* =============================================
   BLOG — ARTIKEL FEATURED AFBEELDING
   ============================================= */
.artikel-header-bg { display: none; }
.artikel-header::before { display: none; }

.artikel-hero-wrap {
    background: #fff;
    padding: 0 0 56px;
}
.artikel-hero-img {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
}
@media (max-width: 600px) {
    .artikel-hero-img { max-height: 260px; border-radius: var(--radius-sm); }
    .artikel-hero-wrap { padding: 0 0 36px; }
}

/* Lead-alinea */
.artikel-lead {
    font-size: 1.12rem;
    line-height: 1.8;
    color: #1f2937;
    border-left: 4px solid var(--groen);
    padding-left: 18px;
    margin-bottom: 28px;
}

/* =============================================
   BLOG — MERKKAARTEN (vergelijking)
   ============================================= */
.merk-kaarten {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 32px 0;
}
@media (max-width: 860px) { .merk-kaarten { grid-template-columns: 1fr; } }

.merk-kaart {
    border: 1px solid var(--grijs-rand);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.merk-kaart-header {
    padding: 24px 20px 18px;
    color: #fff;
    position: relative;
}
.merk-kaart-header.groen  { background: linear-gradient(135deg, #0f4023 0%, #1a6b3c 100%); }
.merk-kaart-header.blauw  { background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 100%); }
.merk-kaart-header.oranje { background: linear-gradient(135deg, #7c2d12 0%, #b45309 100%); }

.merk-kaart-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.18);
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
}
.merk-kaart-header h3 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    margin-bottom: 4px;
}
.merk-kaart-header p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.78);
    margin: 0;
}
.merk-kaart-body { padding: 20px; background: #fff; }

.merk-spec-lijst { list-style: none; padding: 0; margin: 0 0 16px; }
.merk-spec-lijst li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--grijs-rand);
    font-size: 0.85rem;
    gap: 12px;
}
.merk-spec-lijst li:last-child { border-bottom: none; }
.merk-spec-label { color: var(--muted); flex-shrink: 0; }
.merk-spec-waarde { font-weight: 600; color: var(--ink); text-align: right; }

.merk-prijs-badge {
    display: block;
    text-align: center;
    background: var(--grijs-bg);
    border-radius: var(--radius-sm);
    padding: 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 14px;
}

.merk-pros-cons { font-size: 0.82rem; }
.merk-pros-cons p { margin: 0 0 4px; color: var(--muted); }
.merk-pro  { color: #166534; }
.merk-con  { color: #991b1b; }

/* Score-balken vergelijkingstabel */
.score-vergelijk { margin: 32px 0; }
.score-vergelijk-rij {
    display: grid;
    grid-template-columns: 140px 1fr 1fr 1fr;
    gap: 10px 16px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--grijs-rand);
}
.score-vergelijk-rij.header { font-weight: 700; font-size: 0.85rem; color: var(--muted); padding-bottom: 8px; }
.score-vergelijk-label { font-size: 0.875rem; font-weight: 600; }
.score-balk-wrap { display: flex; align-items: center; gap: 8px; }
.score-balk { flex: 1; height: 8px; background: var(--grijs-rand); border-radius: 999px; overflow: hidden; }
.score-balk-vulling { height: 100%; border-radius: 999px; background: var(--groen); }
.score-balk-vulling.blauw  { background: #1d4ed8; }

/* =============================================
   HOME ASSISTANT MOCKUPS — handleiding
   ============================================= */
.ha-mockup {
    border: 1px solid #d1d5db;
    border-radius: 10px;
    overflow: hidden;
    margin: 16px 0 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.10);
    font-family: var(--font-sans);
    font-size: 0.82rem;
}
.ha-chrome {
    background: #e8eaed;
    padding: 8px 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid #cdd0d5;
}
.ha-chrome-dot {
    width: 11px; height: 11px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}
.ha-chrome-url {
    flex: 1;
    background: #fff;
    border-radius: 5px;
    padding: 3px 10px;
    font-size: 0.77rem;
    color: #555;
    font-family: var(--font-mono);
}
.ha-body { display: flex; min-height: 160px; }
.ha-sidebar {
    background: #1c2130;
    width: 210px;
    flex-shrink: 0;
    padding: 6px 0;
}
.ha-nav-item {
    padding: 9px 16px;
    color: #8a95a0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.81rem;
    position: relative;
    white-space: nowrap;
}
.ha-nav-item.actief {
    background: rgba(3,169,244,0.13);
    color: #03a9f4;
    font-weight: 600;
    border-left: 3px solid #03a9f4;
}
.ha-klik-badge {
    position: absolute;
    right: 10px;
    background: #e53e3e;
    color: #fff;
    padding: 2px 7px;
    border-radius: 20px;
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.ha-content { flex: 1; background: #f3f4f6; padding: 16px 20px; }
.ha-page-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}
.ha-tabs-bar {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #e5e7eb;
    overflow-x: auto;
    flex-wrap: nowrap;
}
.ha-tab {
    padding: 10px 15px;
    font-size: 0.76rem;
    font-weight: 700;
    color: #9ca3af;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    letter-spacing: 0.04em;
}
.ha-tab.actief {
    color: #03a9f4;
    border-bottom-color: #03a9f4;
}
.ha-tab.fout {
    color: #dc2626;
    text-decoration: line-through;
    opacity: 0.75;
}
.ha-zoek-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 8px 12px;
    margin: 12px 0 8px;
}
.ha-zoek-row input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 0.82rem;
    color: #333;
    background: transparent;
    font-family: var(--font-sans);
}
.ha-sensor-lijst { display: flex; flex-direction: column; gap: 4px; }
.ha-sensor-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-size: 0.79rem;
    color: #374151;
    font-family: var(--font-mono);
}
.ha-sensor-item.geselecteerd {
    border-color: #03a9f4;
    background: #e8f7fd;
    color: #0369a1;
}
.ha-checkbox {
    width: 16px; height: 16px;
    border: 2px solid #9ca3af;
    border-radius: 3px;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.ha-checkbox.aan {
    background: #03a9f4;
    border-color: #03a9f4;
    color: #fff;
    font-size: 0.65rem;
    font-family: var(--font-sans);
}
.ha-sensor-badge {
    margin-left: auto;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    padding: 2px 7px;
    border-radius: 10px;
    font-weight: 600;
}
.ha-sensor-badge.verbruik { background: #dbeafe; color: #1d4ed8; }
.ha-sensor-badge.terug    { background: #d1fae5; color: #065f46; }
.ha-dl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #03a9f4;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-top: 14px;
    cursor: pointer;
    font-family: var(--font-sans);
}
.ha-dl-badge {
    display: inline-block;
    background: #e53e3e;
    color: #fff;
    border-radius: 20px;
    padding: 2px 8px;
    font-size: 0.71rem;
    font-weight: 700;
    margin-left: 6px;
}
.ha-bestand-voorbeeld {
    background: #1e293b;
    color: #94d8a6;
    border-radius: 6px;
    padding: 10px 14px;
    font-family: var(--font-mono);
    font-size: 0.74rem;
    margin-top: 10px;
    overflow-x: auto;
}
@media (max-width: 700px) {
    .ha-sidebar { width: 140px; }
    .ha-nav-item { font-size: 0.74rem; padding: 8px 10px; gap: 6px; }
    .ha-klik-badge { display: none; }
}
.score-balk-vulling.oranje { background: #b45309; }
.score-num { font-size: 0.78rem; font-weight: 700; color: var(--muted); width: 28px; text-align: right; }
@media (max-width: 600px) {
    .score-vergelijk-rij { grid-template-columns: 100px 1fr; }
    .score-vergelijk-rij .score-balk-wrap:not(:first-of-type) { display: none; }
}

/* =============================================
   BLOG — AURORA-STIJL KAARTLAYOUT
   ============================================= */

/* Pagina header */
.blog-pg-header {
    padding: 64px 0 48px;
    text-align: center;
    border-bottom: 1px solid var(--grijs-rand);
}
.blog-pg-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--groen);
    margin-bottom: 14px;
}
.blog-pg-titel {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 16px;
}
.blog-pg-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Categorie badges */
.blog-cat {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 14px;
}
.cat-blauw   { background: #dbeafe; color: #1d4ed8; }
.cat-oranje  { background: #fde68a; color: #92400e; }
.cat-paars   { background: #ede9fe; color: #6d28d9; }
.cat-groen   { background: var(--groen-licht); color: var(--groen-dark); }
.cat-rood    { background: #fde8e8; color: #991b1b; }

/* Hero: uitgelicht artikel */
.blog-hero-section {
    padding: 64px 0;
    border-bottom: 1px solid var(--grijs-rand);
}
.blog-hero-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}
.blog-hero-img-wrap {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-md);
    aspect-ratio: 16 / 10;
}
.blog-hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}
.blog-hero-img-wrap:hover img { transform: scale(1.04); }
.blog-hero-uitgelicht {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--ink);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 4px;
}
.blog-hero-titel {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink);
    margin-bottom: 16px;
}
.blog-hero-titel a { color: inherit; transition: color var(--trans); }
.blog-hero-titel a:hover { color: var(--groen); text-decoration: none; }
.blog-hero-excerpt {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 20px;
}
.blog-hero-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 28px;
}
.blog-meta-dot { color: var(--grijs-rand); }

/* "Lees meer" link */
.blog-lees-meer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ink);
    border-bottom: 2px solid var(--ink);
    padding-bottom: 2px;
    transition: color var(--trans), border-color var(--trans), gap var(--trans);
}
.blog-lees-meer:hover {
    color: var(--groen);
    border-color: var(--groen);
    gap: 12px;
    text-decoration: none;
}

/* Sectie: kaartgrid */
.blog-section { padding: 72px 0; }
.blog-section-titel {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 40px;
}
.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
}
.blog-card-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--grijs-rand);
    overflow: hidden;
    transition: box-shadow var(--trans), transform var(--trans);
}
.blog-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}
.blog-card-img-wrap {
    display: block;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}
.blog-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.05); }
.blog-card-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-titel {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--ink);
    margin-bottom: 10px;
}
.blog-card-titel a { color: inherit; transition: color var(--trans); }
.blog-card-titel a:hover { color: var(--groen); text-decoration: none; }
.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 18px;
}

/* Categorieën browse */
.blog-cats-section {
    padding: 72px 0;
    background: var(--grijs-bg);
    border-top: 1px solid var(--grijs-rand);
}
.blog-cats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}
.blog-cat-tile {
    background: #fff;
    border: 1px solid var(--grijs-rand);
    border-radius: var(--radius-md);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: box-shadow var(--trans), transform var(--trans);
    cursor: default;
}
.blog-cat-tile:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
.blog-cat-tile-omschrijving {
    font-size: 0.83rem;
    color: var(--muted);
    line-height: 1.5;
    flex: 1;
}
.blog-cat-tile-arrow {
    color: var(--muted);
    display: block;
    margin-top: 4px;
    transition: color var(--trans), transform var(--trans);
}
.blog-cat-tile:hover .blog-cat-tile-arrow {
    color: var(--groen);
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1000px) {
    .blog-cats-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1100px) {
    .blog-card-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
    .blog-hero-card { grid-template-columns: 1fr; gap: 32px; }
    .blog-hero-img-wrap { aspect-ratio: 16 / 8; }
    .blog-card-grid { grid-template-columns: 1fr; }
    .blog-card-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .blog-pg-header { padding: 48px 0 36px; }
    .blog-hero-section { padding: 40px 0; }
    .blog-section { padding: 48px 0; }
    .blog-cats-section { padding: 48px 0; }
    .blog-cats-grid { grid-template-columns: repeat(2, 1fr); }
}
