/* =============== 
   Design tokens 
================== */
:root {
    --color-primary: #DC2626;
    --color-primary-dark: #991B1B;
    --color-bg: #F3F4F6;
    --color-surface: #FFFFFF;
    --color-text: #111827;
    --color-muted: #6B7280;
    --radius-lg: 18px;
    --radius-pill: 999px;
    --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.10);
    --shadow-hard: 0 24px 60px rgba(15, 23, 42, 0.18);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background:
        radial-gradient(circle at top left, rgba(220,38,38,0.07), transparent 55%),
        radial-gradient(circle at bottom right, rgba(148,163,184,0.3), transparent 55%),
        var(--color-bg);
}

/* =============== 
   Header & Navigation 
================== */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: linear-gradient(to bottom, rgba(255,255,255,0.85), rgba(255,255,255,0.75));
    border-bottom: 1px solid rgba(148,163,184,0.25);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.85rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    height: 46px;
    width: auto;
    object-fit: contain;
    display: block;        /* helpt tegen rare lijntjes/space */
}


.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    color: var(--color-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.75rem;
    align-items: center;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    padding-bottom: 0.25rem;
    transition: color var(--transition-fast);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    border-radius: 999px;
    transform: translateX(-50%);
    transition: width var(--transition-normal);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-links a:hover::after {
    width: 70%;
}

/* actieve pagina (door JS class) */
.nav-links a.nav-link-active {
    color: var(--color-primary);
    font-weight: 600;
}

.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-menu span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    margin: 5px 0;
    border-radius: 999px;
    transition: transform 0.3s, opacity 0.3s;
}

/* =============== 
   Hero Section – nieuwe versie
================== */

.hero {
    background: radial-gradient(circle at top left, #f97373, #dc2626 45%, #7f1d1d 100%);
    color: #ffffff;
    padding: 6rem 1.5rem 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

/* Linker kant (content) */

.hero-left h1 {
    font-size: clamp(2.6rem, 4vw, 3.4rem);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
    font-weight: 800;
    text-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

.hero-highlight {
    color: #fffbeb;
}

.hero-subtitle {
    font-size: 1.05rem;
    max-width: 32rem;
    margin-bottom: 1rem;
    opacity: 0.96;
}

.hero-heritage {
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

/* Badge boven de titel */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    background: rgba(15,23,42,0.25);
    border: 1px solid rgba(248,250,252,0.35);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 6px rgba(34,197,94,0.3);
}

/* Buttons hergebruiken je huidige .cta-button, alleen layout aanpassen */

.hero-buttons {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin: 1.5rem 0 1rem;
}

.hero-year-deal {
    font-size: 0.9rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
}

.hero-year-deal a {
    color: #fef3c7;
    font-weight: 600;
}

/* Trust row onder knoppen */

.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.9rem;
}

.hero-avatar-stack {
    display: flex;
}

.avatar-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f97373;
    border: 2px solid rgba(248,250,252,0.9);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    margin-left: -10px;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.hero-trust-text strong {
    display: block;
    font-size: 0.92rem;
}

.hero-trust-text span {
    opacity: 0.9;
    font-size: 0.85rem;
}

/* Rechter kant – 3D dashboard cards */

.hero-right {
    position: relative;
    perspective: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    background: radial-gradient(circle at top left, #fefefe, #f3f4f6);
    border-radius: 18px;
    box-shadow: 0 24px 60px rgba(15,23,42,0.55);
    border: 1px solid rgba(148,163,184,0.6);
}

/* hoofdkaart */

.hero-card-main {
    width: 100%;
    max-width: 360px;
    transform: rotateY(-10deg) rotateX(8deg);
    transform-origin: center;
    padding: 1.2rem 1.3rem 1.4rem;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #0f172a;
}

.hero-card-pill {
    padding: 0.1rem 0.6rem;
    border-radius: 999px;
    background: rgba(22,163,74,0.1);
    color: #15803d;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-card-body {
    font-size: 0.9rem;
}

.hero-metric {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.45rem;
}

.metric-label {
    color: #6b7280;
}

.metric-value {
    font-weight: 600;
    color: #111827;
}

.metric-positive {
    color: #16a34a;
}

/* mini “grafiek” */

.hero-mini-chart {
    display: flex;
    gap: 0.4rem;
    margin-top: 1rem;
    align-items: flex-end;
}

.chart-bar {
    flex: 1;
    border-radius: 999px;
    background: linear-gradient(to top, #dc2626, #fecaca);
    box-shadow: 0 8px 18px rgba(220,38,38,0.5);
}

.bar-1 { height: 18px; }
.bar-2 { height: 30px; }
.bar-3 { height: 22px; }
.bar-4 { height: 36px; }

/* Zwevende kaartjes */

.hero-card-float {
    position: absolute;
    width: 210px;
    background: rgba(15,23,42,0.96);
    color: #e5e7eb;
    padding: 0.7rem 0.9rem;
    border-radius: 14px;
    font-size: 0.8rem;
    box-shadow: 0 18px 40px rgba(15,23,42,0.8);
    border: 1px solid rgba(148,163,184,0.7);
}

.hero-card-bottom-left {
    left: -10px;
    bottom: -25px;
}

.hero-card-top-right {
    right: -20px;
    top: -20px;
}

.float-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    margin-bottom: 0.2rem;
}

.float-text {
    font-size: 0.82rem;
}

/* =============== 
   Hero responsive
================== */

@media (max-width: 900px) {
    .hero {
        padding: 5rem 1.5rem 3.5rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-right {
        justify-content: flex-start;
    }

    .hero-card-main {
        transform: none;
        max-width: 100%;
    }

    .hero-card-float {
        display: none; /* op mobiel iets rustiger */
    }

    .hero-left h1 {
        font-size: 2.1rem;
    }
}

/* Buttons */
/* CTA groep netjes centreren */
.cta-section .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 2rem;
}

/* Hoofd CTA */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    background: #ffffff;
    color: #d62828;
    border: 2px solid rgba(214, 40, 40, 0.25);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    transition: all .25s ease;
}

/* Hover effect */
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
    border-color: #d62828;
}

/* Secundaire knop (grijs) */
.cta-button.secondary {
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(10px);
    color: #555;
    border: 2px solid rgba(255,255,255,0.6);
}

/* Hover op secundair */
.cta-button.secondary:hover {
    background: rgba(255,255,255,0.85);
    color: #222;
    transform: translateY(-3px);
}

/* =============== 
   Sections / Layout 
================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 2.1rem;
    margin-bottom: 0.75rem;
    color: #111827;
    letter-spacing: 0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--color-muted);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.red-accent {
    color: var(--color-primary);
}

/* =============== 
   Services Grid / Cards 
================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
    margin-top: 2rem;
}

.service-card {
    position: relative;
    background: rgba(255,255,255,0.96);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.7rem;
    border: 1px solid rgba(209,213,219,0.8);
    box-shadow: 0 18px 40px rgba(15,23,42,0.06);
    overflow: hidden;
    cursor: pointer;
    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal),
        border-color var(--transition-fast),
        background var(--transition-fast);
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220,38,38,0.06), transparent 55%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(15,23,42,0.16);
    border-color: rgba(220,38,38,0.35);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    background: radial-gradient(circle at top left, rgba(220,38,38,0.22), rgba(248,250,252,1));
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: #111827;
}

.service-card p {
    color: var(--color-muted);
    line-height: 1.7;
    font-size: 0.98rem;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 0.9rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.learn-more:hover {
    transform: translateX(3px);
    color: var(--color-primary-dark);
}

/* kleine meta onder kaarten */
.card-meta {
    font-size: 0.85rem;
    color: var(--color-muted);
    margin: 0.4rem 0 0.2rem;
}

/* badges (blog, reviews etc.) */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(220,38,38,0.08);
    color: var(--color-primary-dark);
    margin-bottom: 0.6rem;
}
/* =========================================
   EXTRA'S BLOK OP ABONNEMENTENPAGINA
   ========================================= */

/* Iets meer lucht rondom de extra's */
#extras .services-grid {
    max-width: 1100px;
    margin: 2.5rem auto 0;
}

/* Kaart zelf */
.extra-card {
    text-align: left;
    background: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(209,213,219,0.9);
    box-shadow: 0 18px 40px rgba(15,23,42,0.06);
    padding: 1.8rem 1.7rem 1.9rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
}

/* Badge bovenaan (EXTRA / TEAM / ADVIES) */
.extra-card .badge {
    margin-bottom: 0.9rem;
    background: rgba(220,38,38,0.06);
    color: var(--color-primary-dark);
}

/* Titel & tekst iets compacter */
.extra-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
}

.extra-card p {
    margin-bottom: 0.45rem;
}

/* Meta-regel (prijs + korting) duidelijker, maar niet zo schreeuwerig */
.extra-card .card-meta {
    margin-top: 0.6rem;
    font-size: 0.95rem;
    color: #4B5563;
    font-weight: 600;
}

/* Form onderaan kaart duwen zodat alle knoppen gelijk staan */
.extra-card form {
    margin-top: 1.4rem;
}

/* Knoppen in extra's: rustig, rond en full-width */
.extra-card .cta-button {
    width: 100%;
    justify-content: center;
    border-radius: 999px;
    background: #ffffff;
    color: var(--color-primary);
    border: 1px solid rgba(220,38,38,0.45);
    box-shadow: 0 16px 32px rgba(15,23,42,0.05);
    font-weight: 600;
    padding: 0.8rem 1rem;
}

.extra-card .cta-button:hover {
    box-shadow: 0 20px 40px rgba(15,23,42,0.10);
}

/* Donkere variant als je ergens .secondary hebt gebruikt */
.extra-card .cta-button.secondary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    border-color: transparent;
}

/* =============== 
   Why choose section 
================== */
.why-choose-section {
    background: linear-gradient(to bottom, #f9fafb, #edeff3);
    padding: 3.5rem 0 3rem;
    margin-top: 2rem;
}

/* =============== 
   CTA Section 
================== */
.cta-section {
    text-align: center;
    padding: 4rem 1.5rem 4.5rem;
}

/* =============== 
   Page Hero (other pages) 
================== */
.page-hero {
    background: radial-gradient(circle at top left, #f97373, #dc2626 45%, #7f1d1d 100%);
    color: #ffffff;
    padding: 4.5rem 1.5rem 3.2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    letter-spacing: 0.02em;
}

.page-hero p {
    font-size: 1.05rem;
    opacity: 0.96;
}

/* =============== 
   Content Section 
================== */
.content-section {
    max-width: 900px;
    margin: 3rem auto;
    padding: 0 1.5rem 1.5rem;
    background: rgba(255,255,255,0.96);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(209,213,219,0.9);
    box-shadow: 0 18px 40px rgba(15,23,42,0.05);
}

.content-section h2 {
    color: #111827;
    font-size: 1.7rem;
    margin: 2rem 0 0.75rem;
}

.content-section h3 {
    color: var(--color-primary);
    font-size: 1.35rem;
    margin: 1.75rem 0 0.75rem;
}

.content-section p {
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 0.9rem;
}

.content-section ul,
.content-section ol {
    margin: 0.75rem 0 1.25rem 1.5rem;
    color: #4B5563;
    line-height: 1.8;
}

.content-section li {
    margin-bottom: 0.4rem;
}

/* =============== 
   Contact page 
================== */
.contact-content {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-info {
    background: linear-gradient(145deg, #111827, #1f2937);
    padding: 2rem;
    border-radius: var(--radius-lg);
    color: #E5E7EB;
    box-shadow: var(--shadow-soft);
}

.contact-info h3 {
    color: #F9FAFB;
    margin-bottom: 1.3rem;
    font-size: 1.4rem;
}

.contact-item {
    margin-bottom: 1.3rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.35rem;
    color: #F9FAFB;
}

.contact-item p {
    color: #E5E7EB;
    font-size: 0.96rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    margin-top: 0.75rem;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    box-shadow: 0 18px 35px rgba(34,197,94,0.35);
}

.whatsapp-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(34,197,94,0.5);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
    background: rgba(255,255,255,0.98);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(209,213,219,0.9);
    box-shadow: 0 18px 40px rgba(15,23,42,0.06);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.85rem 0.9rem;
    border-radius: 0.6rem;
    border: 1px solid #E5E7EB;
    font-size: 0.98rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    background: #F9FAFB;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(220,38,38,0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-button {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    padding: 0.95rem 2rem;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    box-shadow: 0 18px 35px rgba(220,38,38,0.45);
    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal),
        opacity var(--transition-fast);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 45px rgba(220,38,38,0.6);
}

/* =============== 
   FAQ 
================== */
.faq-item + .faq-item {
    margin-top: 0.75rem;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: #F9FAFB;
    border-radius: 0.8rem;
    border: 1px solid #E5E7EB;
    padding: 0.9rem 1rem;
    font-size: 0.96rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.faq-question:hover {
    background: #EEF2FF;
    border-color: rgba(220,38,38,0.45);
}

.faq-question.active {
    background: #ffffff;
    border-color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-4px);
    transition: max-height 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
    padding: 0 0.25rem;
}

.faq-answer.active {
    max-height: 200px;
    opacity: 1;
    transform: translateY(0);
    margin-top: 0.25rem;
}

/* =============== 
   Reviews 
================== */
.review-summary {
    margin-top: 1.5rem;
    padding: 1.4rem 1.2rem;
    border-radius: 1rem;
    border: 1px solid rgba(209,213,219,0.9);
    background: #F9FAFB;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 2rem;
    align-items: center;
}

.review-score {
    display: flex;
    flex-direction: column;
}

.review-score .score-number {
    font-size: 2.4rem;
    font-weight: 800;
}

.review-score .score-stars {
    color: #FBBF24;
    font-size: 1.1rem;
    margin-top: -0.2rem;
}

.review-score .score-text {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.review-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.review-stars {
    color: #FBBF24;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* =============== 
   Footer 
================== */
footer {
    background: #020617;
    color: white;
    padding: 3rem 1.5rem 2rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(148,163,184,0.5);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.2rem;
}

.footer-section h3 {
    margin-bottom: 0.9rem;
    color: var(--color-primary);
    font-size: 1.05rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-section p,
.footer-section a {
    color: rgba(226,232,240,0.85);
    text-decoration: none;
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.93rem;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(148,163,184,0.4);
    opacity: 0.8;
    font-size: 0.85rem;
}

/* =============== 
   Scroll-to-top button 
================== */
#scrollToTop {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 18px 35px rgba(220,38,38,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
}

#scrollToTop:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 45px rgba(220,38,38,0.7);
}

/* =============== 
   Animations 
================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =============== 
   Responsive 
================== */
@media (max-width: 900px) {
    .nav-links {
        position: fixed;
        inset: 64px 0 auto 0;
        height: calc(100vh - 64px);
        background: rgba(255,255,255,0.97);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 1.1rem;
        transform: translateX(100%);
        transition: transform var(--transition-normal);
        box-shadow: 0 22px 60px rgba(15,23,42,0.35);
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        padding: 6rem 1.5rem 4rem;
        text-align: left;
    }

    .hero-content {
        text-align: left;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .container {
        padding: 3rem 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .content-section {
        box-shadow: none;
        border-radius: 1.2rem;
        margin-top: 2.2rem;
    }

    .review-summary {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .cta-button {
        width: 100%;
        max-width: 320px;
    }

    .section-title {
        font-size: 1.7rem;
    }

    nav {
        padding-inline: 1rem;
    }
}
/* Floating chatbot launcher (icoontje linksonder) */
.chatbot-launcher {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e53935; /* rood accent, match met je brand */
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 999;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
/* Kleine notificatie bubbel naast de chatbot-launcher */
.chatbot-notification {
    position: fixed;
    bottom: 90px;
    left: 90px;
    max-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    border: 1px solid #e5e5e5;
    z-index: 998;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0;
    transform: translateY(5px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}

.chatbot-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.chatbot-notification .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e53935;
}

.chatbot-launcher:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.25);
    background: #c62828;
}

/* Chatpanel links in beeld */
.chatbot-panel {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 340px;
    max-height: 70vh;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    display: none; /* standaard verborgen */
    flex-direction: column;
    overflow: hidden;
    z-index: 999;
    border: 1px solid #ddd;
}

/* Toon paneel als 'open' class aanwezig is */
.chatbot-panel.open {
    display: flex;
}

.chatbot-header {
    background: #f5f5f5;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.95rem;
    border-bottom: 1px solid #e0e0e0;
}

.chatbot-close {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    line-height: 1;
}

.chatbot-messages {
    padding: 0.75rem;
    max-height: 50vh;
    overflow-y: auto;
    font-size: 0.9rem;
    background: #ffffff;
}

.chatbot-panel {
    position: fixed;
    bottom: 90px;
    left: 20px;
    width: 340px;
    max-height: 70vh;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 999;
    border: 1px solid #e5e5e5;
    font-size: 0.9rem;
}

.chatbot-header {
    background: #f7f7f7;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    border-bottom: 1px solid #e0e0e0;
}

/* NIEUW: rijen + bubbels */
.chatbot-messages {
    padding: 0.75rem;
    max-height: 50vh;
    overflow-y: auto;
    background: #ffffff;
}

.chat-message-row {
    display: flex;
    margin-bottom: 0.4rem;
}

.chat-message-row.bot {
    justify-content: flex-start;
}

.chat-message-row.user {
    justify-content: flex-end;
}

.chat-message {
    max-width: 80%;
    padding: 0.45rem 0.75rem;
    border-radius: 16px;
    line-height: 1.4;
    font-size: 0.88rem;
    word-wrap: break-word;
}

/* Bot bubble links */
.chat-message-row.bot .chat-message {
    background: #f1f1f1;
    color: #333;
    border-bottom-left-radius: 4px;
}

/* User bubble rechts */
.chat-message-row.user .chat-message {
    background: #e53935;
    color: #fff;
    border-bottom-right-radius: 4px;
}

/* Form onderin */
.chatbot-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-top: 1px solid #eee;
    padding: 0.5rem 0.75rem;
    background: #fafafa;
}

#chatbot-input {
    flex: 1;
    padding: 0.4rem 0.65rem;
    border-radius: 999px;
    border: 1px solid #ccc;
    font-size: 0.9rem;
}

.chatbot-send {
    border: none;
    background: #e53935;
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-send:hover {
    background: #c62828;
}
.chatbot-form {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-top: 1px solid #eee;
    padding: 0.5rem 0.75rem;
    background: #fafafa;
}

#chatbot-input {
    flex: 1;
    padding: 0.4rem 0.6rem;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 0.9rem;
}

.chatbot-send {
    border: none;
    background: #e53935;
    color: #fff;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chatbot-send:hover {
    background: #c62828;
}

@media (max-width: 600px) {
    .chatbot-panel {
        left: 10px;
        right: 10px;
        width: auto;
        bottom: 80px;
    }
}
/* Firefox */
html {
    scrollbar-width: thin;                /* dunne scrollbar */
    scrollbar-color: #b71c1c #f0f0f0;     /* thumb / track kleuren */
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
    width: 6px;                          /* dikte van de scrollbar */
}

::-webkit-scrollbar-track {
    background: #f0f0f0;                 /* achtergrond van de balk */
}

::-webkit-scrollbar-thumb {
    background-color: #b71c1c;           /* kleur van de ‘thumb’ */
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #8c1515;
}
/* Abonnementen sectie */

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.plan-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.plan-card.highlight {
    border: 2px solid #e53935;
    box-shadow: 0 12px 28px rgba(229,57,53,0.15);
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0 1.5rem;
}

.plan-price span {
    font-size: 1rem;
    color: #666;
}

.plan-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.plan-list li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

/* Zorg dat cta-button in forms goed werkt */
.plan-card form .cta-button {
    width: 100%;
    display: block;
    text-align: center;
}
/* Dropdown in hoofdmenu */
/* Toggle boven de plannen */
.plan-toggle-group {
    display: inline-flex;
    border-radius: 999px;
    background: #f3f3f3;
    padding: 4px;
    margin-top: 1.5rem;
}

.plan-toggle {
    border: none;
    background: transparent;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #444;
}

.plan-toggle.active {
    background: #e53935;
    color: #fff;
}

/* Grids aan/uit */
.plans-wrapper {
    margin-top: 2rem;
}

.plans-grid {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
}

.plans-grid.is-active {
    display: grid;
}

/* Cards (zoals eerder) */
.plan-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.plan-card.highlight {
    border: 2px solid #e53935;
    box-shadow: 0 12px 28px rgba(229,57,53,0.15);
}

.plan-price {
    font-size: 2rem;
    font-weight: 700;
    margin: 1rem 0 1.5rem;
}

.plan-price span {
    font-size: 1rem;
    color: #666;
}

.plan-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.plan-list li {
    margin-bottom: 0.6rem;
    font-size: 1rem;
}

.plan-card form .cta-button {
    width: 100%;
    display: block;
    text-align: center;
}

.nav-links {
    position: relative;
}

.nav-links .has-dropdown {
    position: relative;
}
/* ============================
   DROPDOWN MENU
   ============================ */

.has-dropdown {
    position: relative;
}

/* Link "Meer" */

/* Container van dropdown (desktop) */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    min-width: 180px;
    display: none;
    z-index: 999;
}

/* Items in dropdown */
.dropdown-menu li a {
    display: block;
    padding: 0.55rem 1rem;
    font-size: 0.95rem;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s ease, padding-left .2s ease;
}

/* Hover */
.dropdown-menu li a:hover {
    background: #f4f4f4;
    padding-left: 1.25rem;
}

/* Dropdown tonen bij hover (desktop) */
.has-dropdown:hover .dropdown-menu {
    display: block;
}

/* MOBILE */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: transparent;
        padding: 0.25rem 0 0.25rem 1rem;
        display: none;
    }

    .has-dropdown:hover .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        color: #fff;
        padding: 0.4rem 0;
        font-size: 0.95rem;
    }

    .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.15);
        padding-left: 0.2rem;
    }
}
/* =========================
   Hero – modern 2-koloms
========================= */

.hero {
    background: radial-gradient(circle at top left, #f97373, #dc2626 45%, #7f1d1d 100%);
    color: white;
    padding: 5.5rem 1.5rem 4.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}

.hero-left {
    max-width: 640px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    background: rgba(248,250,252,0.15);
    border: 1px solid rgba(248,250,252,0.3);
    font-size: 0.85rem;
    margin-bottom: 1.1rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
}

.hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
    font-weight: 800;
    text-shadow: 0 18px 35px rgba(0,0,0,0.45);
}

.hero-highlight {
    color: #fffbeb;
}

.hero-subtitle {
    font-size: 1.05rem;
    opacity: 0.96;
    margin-bottom: 0.9rem;
}

.hero-heritage {
    font-size: 0.98rem;
    opacity: 0.9;
    margin-bottom: 1.4rem;
}

.hero-year-deal {
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.96;
}

.hero-year-deal a {
    color: #fef3c7;
    text-decoration: underline;
}

/* trustrow onder de tekst */
.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-top: 1.6rem;
}

.hero-avatar-stack {
    display: flex;
}

.avatar-circle {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: #f97373;
    border: 2px solid rgba(248,250,252,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    margin-left: -8px;
}

.avatar-circle:first-child {
    margin-left: 0;
}

.hero-trust-text {
    font-size: 0.85rem;
    opacity: 0.96;
}

.hero-trust-text strong {
    font-size: 0.95rem;
}

/* rechterkant – cards met “3D” effect */
.hero-right {
    position: relative;
    perspective: 1200px;
}

.hero-card {
    background: rgba(248,250,252,0.98);
    border-radius: 16px;
    padding: 1.4rem 1.3rem;
    box-shadow: 0 24px 60px rgba(15,23,42,0.45);
    border: 1px solid rgba(248,250,252,0.8);
    transform: rotateX(12deg) rotateY(-18deg);
    transform-origin: center left;
}

.hero-card {
    background: rgba(248,250,252,0.98);
    border-radius: 16px;
    padding: 1.4rem 1.3rem;
    box-shadow: 0 24px 60px rgba(15,23,42,0.45);
    border: 1px solid rgba(248,250,252,0.8);
    transform: rotateX(12deg) rotateY(-18deg);
    transform-origin: center left;
}

.hero-card-main {
    width: 100%;
    max-width: 360px;
}

.hero-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

.hero-card-pill {
    padding: 0.1rem 0.6rem;
    border-radius: 999px;
    background: rgba(22,163,74,0.1);
    color: #15803d;
    font-size: 0.7rem;
    font-weight: 600;
}

.hero-metric {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    margin-bottom: 0.3rem;
}

.metric-label {
    color: #4b5563;
}

.metric-value {
    font-weight: 600;
    color: #111827;
}

.metric-positive {
    color: #16a34a;
}

.hero-mini-chart {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.9rem;
}

.chart-bar {
    flex: 1;
    border-radius: 999px;
    background: linear-gradient(180deg,#f97373,#dc2626);
    height: 26px;
}

.bar-1 { height: 16px; }
.bar-2 { height: 24px; }
.bar-3 { height: 18px; }
.bar-4 { height: 28px; }

/* zwevende kaartjes */
.hero-card-float {
    position: absolute;
    width: 220px;
    background: rgba(15,23,42,0.96);
    color: #e5e7eb;
    border-radius: 14px;
    padding: 0.9rem 0.95rem;
    box-shadow: 0 20px 55px rgba(15,23,42,0.7);
    font-size: 0.8rem;
}

.hero-card-bottom-left {
    left: -20px;
    bottom: -30px;
}

.hero-card-top-right {
    right: -10px;
    top: -22px;
}

.float-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
    margin-bottom: 0.25rem;
}

.float-text {
    font-size: 0.86rem;
}

/* trust-strip onderaan home */
.home-trust-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    background: rgba(255,255,255,0.9);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.06);
    padding: 1.4rem 2rem;
    margin-top: -1.5rem;
}

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    text-align: center;
}

.trust-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
}

.trust-item strong {
    font-size: 0.98rem;
}

.trust-small {
    font-size: 0.8rem;
    color: #6b7280;
}

.trust-divider {
    width: 1px;
    height: 38px;
    background: #e5e7eb;
}

/* logo tekst naast beeldmerk (tijdelijk) */
.logo-text {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--color-primary);
}

/* ========== responsive tweaks voor hero ========== */

@media (max-width: 900px) {
    .hero {
        padding: 4.5rem 1.5rem 3.5rem;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-right {
        order: -1;
        display: flex;
        justify-content: center;
    }

    .hero-card-main {
        max-width: 320px;
    }

    .hero-card {
        transform: none;
    }

    .hero-card-float {
        display: none;
    }

    .home-trust-strip {
        flex-direction: column;
        gap: 1rem;
        padding: 1.3rem 1.4rem;
    }

    .trust-divider {
        display: none;
    }
}
/* ============================
   KENNISBANK ARTIKELEN
   ============================ */

.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 2.5rem;
}

.article-top {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    padding: 0 1.5rem;
}

.article-back {
    font-size: 0.9rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
}

.article-back:hover {
    text-decoration: underline;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--color-muted);
    align-items: center;
}

.article-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    background: rgba(220,38,38,0.08);
    color: var(--color-primary-dark);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.article-body {
    padding-top: 1.5rem;
}

.article-intro {
    font-size: 1.02rem;
    color: #374151;
    margin-bottom: 1.5rem;
}

.article-body h2 {
    margin-top: 1.8rem;
    font-size: 1.45rem;
}

.article-body h3 {
    margin-top: 1.4rem;
    font-size: 1.15rem;
}

.article-body p {
    margin-bottom: 0.8rem;
}

.article-body ul {
    margin-left: 1.3rem;
    margin-bottom: 1.2rem;
}

.article-callout {
    margin: 1.1rem 0;
    padding: 0.9rem 1rem;
    border-radius: 0.9rem;
    background: #fef2f2;
    border: 1px solid rgba(220,38,38,0.35);
    font-size: 0.95rem;
    color: #7f1d1d;
}

.article-callout-soft {
    background: #f3f4ff;
    border-color: rgba(129,140,248,0.5);
    color: #1f2937;
}

.article-bottom-cta {
    margin-top: 2.2rem;
    padding-top: 1.8rem;
    border-top: 1px solid rgba(209,213,219,0.7);
}

.article-bottom-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.article-bottom-buttons .cta-button {
    padding-inline: 1.6rem;
}

@media (max-width: 700px) {
    .article-container {
        padding-top: 1.5rem;
    }
    .article-top {
        padding-inline: 1rem;
    }
    .article-body {
        padding-inline: 1rem;
    }
}
/* ============================
   KENNISBANK OVERZICHT
   ============================ */

.kb-hero {
    padding-bottom: 2.5rem;
}

.kb-page {
    padding-top: 0;
}

/* Intro card bovenaan */
.kb-intro-card {
    background: radial-gradient(circle at top left,
                rgba(220,38,38,0.10),
                rgba(15,23,42,0.02));
    border-radius: 24px;
    padding: 2.4rem 2.3rem;
    margin-bottom: 2.8rem;
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
    border: 1px solid rgba(209,213,219,0.8);
}

.kb-intro-card h2 {
    font-size: 1.9rem;
    margin-bottom: 0.9rem;
}

.kb-intro-card p {
    margin-bottom: 0.4rem;
    color: #4B5563;
}

.kb-highlight {
    color: var(--color-primary);
    font-weight: 600;
}

.kb-tip {
    margin-top: 0.7rem;
    font-size: 0.93rem;
    color: var(--color-muted);
}

/* Grid / kaarten */
.kb-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.8rem;
}

.kb-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    padding: 1.8rem 1.7rem 1.6rem;
    border: 1px solid rgba(209,213,219,0.9);
    box-shadow: 0 18px 40px rgba(15,23,42,0.05);
    overflow: hidden;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .2s ease,
        background .2s ease;
}

/* subtiel kleurvlak links */
.kb-card::before {
    content: "";
    position: absolute;
    inset: 0;
    left: -40%;
    background: radial-gradient(circle at left,
                rgba(220,38,38,0.12),
                transparent 55%);
    opacity: 0;
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
}

.kb-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(15,23,42,0.13);
    border-color: rgba(220,38,38,0.35);
    background: #ffffff;
}

.kb-card:hover::before {
    opacity: 1;
    transform: translateX(6px);
}

.kb-card h3 {
    font-size: 1.25rem;
    margin: 0.9rem 0 0.7rem;
    color: #111827;
}

.kb-teaser {
    font-size: 0.97rem;
    color: #4B5563;
    line-height: 1.65;
    margin-bottom: 0.85rem;
}

.kb-meta {
    font-size: 0.86rem;
    color: var(--color-muted);
    margin-bottom: 1.1rem;
}

/* Badge bovenaan kaart */
.kb-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.18rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.2rem;
}

.kb-badge-zzp {
    background: rgba(220,38,38,0.06);
    color: var(--color-primary-dark);
}

.kb-badge-plan {
    background: rgba(37,99,235,0.06);
    color: #1d4ed8;
}

.kb-badge-check {
    background: rgba(16,185,129,0.07);
    color: #047857;
}

.kb-badge-tax {
    background: rgba(251,146,60,0.10);
    color: #c2410c;
}

/* link onderaan kaart */
.kb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    position: relative;
}

.kb-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-dark));
    transition: width .25s ease;
}

.kb-link:hover::after {
    width: 100%;
}

/* Mobiel tweaks */
@media (max-width: 768px) {
    .kb-intro-card {
        padding: 1.7rem 1.5rem;
        border-radius: 18px;
        box-shadow: 0 14px 32px rgba(15,23,42,0.08);
    }

    .kb-grid {
        gap: 1.4rem;
    }

    .kb-card {
        padding: 1.5rem 1.4rem 1.4rem;
        border-radius: 18px;
    }
}
.chatbot-whatsapp-link {
    display: inline-block;
    margin-top: 0.25rem;
    font-weight: 600;
    text-decoration: none;
    color: #e53935;
}

.chatbot-whatsapp-link:hover {
    text-decoration: underline;
}
/* ================================
   TABLET (max 900px)
================================ */
@media (max-width: 900px) {

    nav {
        padding: 0.75rem 1.25rem;
    }

    .logo-image {
        height: 40px;
    }

    .container {
        padding: 3rem 1.5rem;
    }

    .services-grid,
    .plans-grid,
    .knowledge-grid,
    .extras-grid,
    .addon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
    }

    .service-card,
    .plan-card,
    .extra-card,
    .knowledge-card {
        padding: 1.6rem 1.4rem;
    }

    .page-hero {
        padding: 3.5rem 1.5rem 2.5rem;
    }
}

/* ================================
   MOBIEL (max 640px)
================================ */
@media (max-width: 640px) {

    /* NAVIGATIE */
    nav {
        padding: 0.7rem 1rem;
    }

    .logo-image {
        height: 34px;
    }

    .logo {
        font-size: 1.25rem;
    }

    /* Mobiel menu overlay (links onder elkaar) */
    .nav-links {
        position: fixed;
        inset: 60px 0 0 0;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 1.25rem 1.5rem 2rem;
        gap: 0.9rem;
        transform: translateX(100%);
        transition: transform 0.25s ease;
        box-shadow: 0 20px 40px rgba(15,23,42,0.25);
        z-index: 998;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 0.98rem;
        padding-bottom: 0.15rem;
    }

    .mobile-menu {
        display: block;
    }

    /* HERO – alleen de linkerkant op mobiel */
    .hero {
        padding: 4.5rem 1.4rem 3rem;
        text-align: left;
    }

    .hero-inner {
        display: block;
    }

    .hero-left {
        width: 100%;
    }

    .hero-right {
        display: none;   /* 3D dashboard-kaart verbergen op mobiel */
    }

    .hero-badge {
        margin-bottom: 0.7rem;
    }

    .hero h1 {
        font-size: 1.9rem;
        line-height: 1.25;
        margin-bottom: 0.8rem;
    }

    .hero-subtitle {
        font-size: 0.96rem;
        margin-bottom: 1.1rem;
    }

    .hero-heritage {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
        margin-top: 0.5rem;
    }

    .cta-button {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 0.85rem 1rem;
        font-size: 0.95rem;
    }

    .hero-year-deal {
        font-size: 0.9rem;
        margin-top: 1.3rem;
    }

    .hero-trust-row {
        margin-top: 1.2rem;
        gap: 0.6rem;
    }

    /* ALGEMENE SECTIES */
    .container {
        padding: 2.3rem 1.3rem;
    }

    .section-title {
        font-size: 1.55rem;
        margin-bottom: 0.5rem;
    }

    .section-subtitle {
        font-size: 0.93rem;
        margin-bottom: 1.8rem;
    }

    /* Grids -> één kolom op mobiel */
    .services-grid,
    .plans-grid,
    .knowledge-grid,
    .extras-grid,
    .addon-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .service-card,
    .plan-card,
    .extra-card,
    .knowledge-card,
    .review-card {
        padding: 1.4rem 1.3rem;
        border-radius: 1rem;
        box-shadow: 0 14px 30px rgba(15,23,42,0.08);
    }

    /* Abonnementen toggles */
    .plan-toggle-group {
        display: flex;
        width: 100%;
        justify-content: space-between;
    }

    .plan-toggle {
        flex: 1;
        text-align: center;
        padding: 0.45rem 0.4rem;
        font-size: 0.9rem;
    }

    /* Content / tekstpagina’s */
    .content-section {
        margin: 2rem 0 0;
        padding: 1.5rem 1.3rem 1.8rem;
        border-radius: 1rem;
        box-shadow: none;
    }

    .content-section h2 {
        font-size: 1.4rem;
    }

    .content-section h3 {
        font-size: 1.15rem;
    }

    .content-section p,
    .content-section li {
        font-size: 0.93rem;
    }

    .page-hero {
        padding: 3rem 1.3rem 2.2rem;
    }

    .page-hero h1 {
        font-size: 1.7rem;
    }

    .page-hero p {
        font-size: 0.94rem;
    }

    /* CTA blok onderaan */
    .cta-section {
        padding: 3rem 1.3rem 3.2rem;
    }

    /* CONTACT pagina – grid onder elkaar */
    .contact-content {
        display: flex;
        flex-direction: column;
        gap: 1.6rem;
        margin-top: 2.2rem;
    }

    .contact-info,
    .contact-form {
        padding: 1.6rem 1.3rem;
    }

    /* FOOTER */
    footer {
        padding: 2.5rem 1.3rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.4rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    /* CHATBOT */
    .chatbot-panel {
        left: 10px;
        right: 10px;
        bottom: 80px;
        width: auto;
        max-height: 70vh;
    }
}
/* ---------- Subscribe formulier ---------- */

.container-narrow {
    max-width: 780px;
    margin: 3rem auto 4rem;
}

.contact-form.subscribe-form {
    max-width: 520px;
    margin: 2rem auto 0;
    background: #ffffff;
    padding: 2rem 2.5rem;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(148, 163, 184, 0.25);
}

.contact-form.subscribe-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.contact-form.subscribe-form label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #4b5563;
}

.contact-form.subscribe-form input,
.contact-form.subscribe-form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    outline: none;
    background: #f9fafb;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.contact-form.subscribe-form input:focus,
.contact-form.subscribe-form textarea:focus {
    border-color: #f97373; /* jouw roodtint mag ook */
    background: #ffffff;
    box-shadow: 0 0 0 1px rgba(239, 68, 68, 0.2);
}

.contact-form.subscribe-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Button netjes centreren en niet over de hele breedte “schreeuwen” */
.contact-form.subscribe-form .cta-button {
    margin-top: 0.75rem;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 1rem;
}

/* Mobile tweaks */
@media (max-width: 640px) {
    .contact-form.subscribe-form {
        padding: 1.5rem 1.25rem;
        border-radius: 18px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    }
}
