/* ==========================================================================
   De home-wereld — de basis onder /, /tarieven/, /service/, /info/,
   /ontwikkelaars/, de foutpagina en de kennisbank. De propositiepagina's
   draaien op propositie.css.

   Dit bestand draagt sinds 25-08-2026 alleen nog de STRUCTUUR: grids, spacing,
   lay-out. Hoe het eruitziet komt uit fenofin-2026.css (kern) en
   publiek-2026.css (gedeeld), die er allebei ná laden. Zet hier dus geen nieuwe
   vormgeving in.

   De tokens hieronder zijn de enige; de donkere variant die hier tot
   25-08-2026 stond werd door geen enkele pagina gerenderd.
   ========================================================================== */

/* ========== CSS Variables ========== */
:root {
    --primary: #e84e7e;
    --primary-light: #ff6b9d;
    --primary-dark: #c73a66;
    --primary-glow: rgba(232, 78, 126, 0.5);

    --bg-dark: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --bg-glass: rgba(255, 255, 255, 0.85);

    --border-subtle: rgba(232, 78, 126, 0.12);
    --border-glow: rgba(232, 78, 126, 0.3);

    --text-primary: #1a1a2e;
    --text-secondary: #374151;
    --text-muted: #6b7280;

    --font-display: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ========== Base Styles ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 7rem;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========== Navbar ==========
   Staat in static/css/home/navbar.css — gedeeld met de propositiepagina's.
   Die stylesheet moet naast home.css geladen worden. */

/* ========== Breadcrumb Navigation ========== */
.breadcrumb-nav {
    margin-bottom: 1.5rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    background: none;
    font-size: 0.9rem;
    list-style: none;
}

.breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

.breadcrumb-item.active {
    color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    color: var(--text-muted);
    padding: 0 0.5rem;
}

/* ========== Page Hero (voor subpagina's) ========== */
.page-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 4rem;
    text-align: center;
    overflow-x: hidden;
}

/* Verberg breadcrumbs op page-hero */
.page-hero .breadcrumb-nav {
    display: none;
}

/* Scroll indicator */
.page-hero::after {
    content: '';
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid var(--border-subtle);
    border-radius: 25px;
    opacity: 0.5;
    pointer-events: none;
}

.page-hero::before {
    content: '';
    position: absolute;
    bottom: 2.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: var(--primary);
    border-radius: 3px;
    animation: scroll-indicator 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes scroll-indicator {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(15px); }
}

.page-hero .hero-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-glow) 0%, transparent 60%);
    filter: blur(80px);
    opacity: 0.4;
    pointer-events: none;
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.hero-intro,
.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ========== Hero Section ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6rem 2rem 2rem;
    overflow: hidden;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title .hero-tagline {
    order: 3;
    font-size: 0.22em;
    font-weight: 400;
    color: var(--text-secondary);
    -webkit-text-fill-color: var(--text-secondary);
    letter-spacing: 0.01em;
    line-height: 1.5;
    max-width: 400px;
}

.hero-title .hero-tagline strong {
    color: var(--primary-light);
    -webkit-text-fill-color: var(--primary-light);
    font-weight: 600;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: transform 0.25s ease;
    text-decoration: none;
    color: inherit;
}

.stat-item:hover {
    transform: translateY(-2px);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.9rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.stat-item:hover .stat-icon {
    transform: scale(1.12) rotate(-5deg);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
    background: linear-gradient(135deg, var(--primary) 0%, #818cf8 100%);
}

.stat-item:hover .stat-text {
    color: var(--text-primary);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-btn.btn-whatsapp-modern {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
}

/* Responsive: hero-cta + stat + badge-pill */
@media (max-width: 768px) {

    .hero-cta .btn-primary-glow,
    .hero-cta .btn-ghost {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
    }

    .stat-icon {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {

    .stat-item {
        padding: 0.5rem 0.7rem;
    }

    .stat-icon {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
}

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

/* Primary Glow Button */
.btn-primary-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-primary-glow:hover {
    background: var(--primary-light);
    color: white;
}

.btn-primary-glow i {
    transition: transform 0.3s ease;
}

.btn-primary-glow:hover i {
    transform: translateX(4px);
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20BD5A;
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
}

/* Modern WhatsApp Button (Glass/Neon) */
.btn-whatsapp-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(37, 211, 102, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 100px;
    color: white;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp-modern i {
    color: #25D366;
    font-size: 1.2rem;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0.5));
}

.btn-whatsapp-modern:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.8);
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.3), inset 0 0 20px rgba(37, 211, 102, 0.1);
    transform: translateY(-2px);
    color: white;
}

.btn-whatsapp-modern:hover i {
    transform: scale(1.1) rotate(-10deg);
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.8));
}

.btn-whatsapp-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37, 211, 102, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-whatsapp-modern:hover::before {
    left: 100%;
}

@media (max-width: 576px) {
    .btn-whatsapp-modern {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
        gap: 0.5rem;
        white-space: nowrap;
    }
    .btn-whatsapp-modern i {
        font-size: 1rem;
    }
}

/* Ghost Button */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 100px;
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-ghost:hover {
    background: var(--bg-glass);
    border-color: var(--primary);
    color: var(--primary);
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ========== Section Styles ========== */
section {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h1,
.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Connector-sectie — agentic boekhouden met video-/illustratieplek, direct onder de hero */
.connector-section {
    position: relative;
    z-index: 1;
    padding: 3.5rem 0 1.5rem;
}

.connector-showcase {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    text-align: left;
}

/* Zonder min-width:0 krijgt een grid-item de min-content-breedte van zijn inhoud
   als ondergrens en loopt de kolom bij smalle schermen buiten de viewport. */
.connector-showcase-text {
    min-width: 0;
}

.connector-showcase-eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.connector-showcase-title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--primary);
    margin: 0 0 0.6rem;
}

.connector-showcase-body {
    font-size: 1.02rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0 0 1rem;
}

/* .connector-showcase-link staat volledig in publiek-2026.css. Het pil-ontwerp
   dat hier stond droeg alleen nog een flex-wrap: wrap die de regel-link daar
   uit elkaar trok. */

.connector-showcase-media {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(232, 78, 126, 0.18);
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.connector-showcase-media img {
    display: block;
    width: 100%;
    height: auto;
}

.connector-showcase-video {
    aspect-ratio: 16 / 9;
    background: #000000;
}

/* Zowel de Vimeo-embed (productie) als de self-hosted mp4 (lokaal) vullen het
   16:9-kader. Zonder de video-regel valt <video> terug op zijn intrinsieke
   1280x720 en snijdt overflow:hidden op de mediakaart het beeld af. */
.connector-showcase-video iframe,
.connector-showcase-video video {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: contain;
}

:root .connector-showcase-media {
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

@media (prefers-reduced-motion: reduce) {
    .connector-section {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Het tweeluik wordt een kolom; de linkerrand blijft de linkerrand. Hier stond
   tot 27-08-2026 een text-align: center met twee uitzonderingen eronder om de
   lopende tekst en de spec-lijst er weer uit te halen. Dat hoorde bij de oude
   pil-knoppen; een regel-link met een pijl rechts leest gecentreerd scheef, en
   de 2026-taal kent geen gecentreerde sectiekoppen. */
@media (max-width: 900px) {
    .connector-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .connector-showcase-media {
        width: 100%;
        max-width: 520px;
        margin: 0 auto;
    }
}

.flow-arrow {
    color: rgba(232, 78, 126, 0.5);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
}

/* HTMX swap */
.kb-flow-block .kb-newsletter-message {
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    font-size: 0.85rem;
}

.kb-flow-block .kb-newsletter-success {
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.kb-flow-block .kb-newsletter-error {
    color: var(--primary);
    background: rgba(232, 78, 126, 0.1);
    border: 1px solid rgba(232, 78, 126, 0.2);
}

/* ========== Services Section ========== */
.services {
    padding: 6rem 0 8rem;
    background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(15, 15, 20, 1) 100%);
}

/* Pakket Badge - toont bij welk abonnement feature hoort (donkergeel) */
.feature-badge:has(.fa-tag) {
    background: rgba(251, 191, 36, 0.1);
    color: rgba(251, 191, 36, 0.9);
}

.feature-badge:has(.fa-tag) i {
    color: rgba(251, 191, 36, 0.8);
    opacity: 1;
}

/* ========== Service Feature Box ========== */
.service-feature-box {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    position: relative;
}

/* Roze streepje als scheiding - korter dan volle breedte */
.service-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 180px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    border-radius: 2px;
}

.service-feature-box .feature-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.service-feature-box .feature-label i {
    font-size: 0.85rem;
}

.service-feature-box p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.service-feature-box p:last-child {
    margin-bottom: 0;
}

.service-feature-box strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Info en disclaimer styling binnen feature box */
.service-feature-box .feature-info,
.service-feature-box .feature-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}

.service-feature-box .feature-info {
    background: rgba(148, 163, 184, 0.10);
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.service-feature-box .feature-info i {
    color: var(--primary);
    font-size: 0.75rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.service-feature-box .feature-disclaimer {
    background: rgba(251, 191, 36, 0.08);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.service-feature-box .feature-disclaimer i {
    color: #fbbf24;
    font-size: 0.75rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.service-feature-box .feature-info span,
.service-feature-box .feature-disclaimer span {
    color: var(--text-secondary);
}

.service-feature-box a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-feature-box a:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

/* Responsive voor feature box */
@media (max-width: 768px) {
    .service-feature-box::before {
        width: 50%;
        max-width: 120px;
    }

    .service-feature-box .feature-label {
        font-size: 0.85rem;
    }

    .service-feature-box p {
        font-size: 0.8rem;
    }

    .service-feature-box .feature-info,
    .service-feature-box .feature-disclaimer {
        font-size: 0.75rem;
        padding: 0.625rem;
    }
}

/* Inline content-links in body-paragrafen (home module):
 * zelfde subtiele stijl als kennisbank-artikel-links. */
.service-info p a,
.feature-description a,
.prop-story-promise a {
    color: #60a5fa;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(96, 165, 250, 0.35);
    padding-bottom: 1px;
    transition: color 0.15s, border-color 0.15s;
}

.service-info p a:hover,
.feature-description a:hover,
.prop-story-promise a:hover {
    color: #93c5fd;
    border-bottom-color: #93c5fd;
}

/* CTA Actions row */
.cta-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-toggle .fa-shield-alt {
    color: var(--primary);
}

/* ========== Pricing Section ========== */
.pricing {
    padding: 8rem 0;
    background: linear-gradient(180deg, rgba(15, 15, 20, 1) 0%, var(--bg-dark) 100%);
}

/* ── Gestapelde pricing layout (alleen op home) ───────────────────── */
.pricing-stack {
    max-width: 1100px;
    margin: 0 auto 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.pricing-stack .pricing-card {
    width: 100%;
    max-width: none;
}

.pricing-layer {
    position: relative;
}

/* Binnen elke laag: feature-groepen in meerdere kolommen (desktop) */
.pricing-layer .pricing-features-grouped {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem 2rem;
    margin-bottom: 1.5rem;
}

/* Header: titel/prijs links, compacte CTA rechts */
.pricing-stack .pricing-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-pricing--compact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: auto;
    min-width: 220px;
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
    margin: 0;
}

.btn-pricing--compact i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.btn-pricing--compact:hover i {
    transform: translateX(3px);
}

.pricing-layer--upgrade .btn-pricing--compact {
    background: #8B5CF6;
    border-color: #8B5CF6;
    color: #fff;
}

.pricing-layer--upgrade .btn-pricing--compact:hover {
    background: #7c3aed;
    border-color: #7c3aed;
}

@media (max-width: 768px) {
    .pricing-stack .pricing-header {
        flex-direction: column;
        align-items: center;
    }
    .pricing-header-cta .btn-pricing,
    .pricing-header-cta .btn-pricing--compact {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-width: 0;
        padding: 0.6rem 1rem;
        font-size: 0.875rem;
        gap: 0.4rem;
        white-space: nowrap;
        border-radius: 14px;
    }
    .pricing-header-cta .btn-pricing--compact i {
        font-size: 0.7rem;
    }
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.pricing-card .btn-pricing {
    margin-top: auto;
}

.pricing-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.pricing-header .price {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.pricing-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-pricing:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 30px var(--primary-glow);
}

.info-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-header i {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-header h4 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    transition: transform 0.25s ease;
}

.info-item:hover {
    transform: translateX(4px);
}

.info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--primary);
    transition: border-color 0.25s ease;
}

.info-item:hover .info-icon {
    border-color: var(--border-glow);
}

/* Mobiel: lange addon-namen mogen binnen de pill wrappen i.p.v. overflowen */
/* ========== Contact Section ========== */
.contact {
    padding: 8rem 0;
    background: var(--bg-dark);
}

.contact-card {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    transition: var(--transition-smooth);
}

.contact-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.contact-card:hover .contact-card-glow {
    opacity: 0.1;
}

.contact-card:hover .contact-icon {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* ---- Contact-acties: WhatsApp / Bellen / Contact formulier ---- */
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn-contact-secondary {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-contact-secondary i {
    font-size: 1.05rem;
    color: var(--text-secondary);
    transition: transform 0.3s ease, color 0.3s ease;
}

.btn-contact-secondary:hover {
    border-color: var(--border-glow);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.btn-contact-secondary:hover i {
    color: var(--primary-light);
}

.contact-chevron {
    font-size: 0.8rem !important;
    transition: transform 0.3s ease;
}

.btn-contact-secondary[aria-expanded="true"] .contact-chevron {
    transform: rotate(180deg);
}

/* ---- Uitklap-formulier ---- */
.contact-form-collapse {
    text-align: left;
}

.contact-form-inner {
    padding-top: 2rem;
}

.contact-field {
    margin-bottom: 1rem;
}

.contact-field-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-field-row .contact-field {
    flex: 1 1 200px;
}

.contact-form-collapse label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.contact-optional {
    font-weight: 400;
    color: var(--text-muted);
}

.contact-form-collapse .form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-collapse .form-control::placeholder {
    color: var(--text-muted);
}

.contact-form-collapse .form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
    background: rgba(255, 255, 255, 0.06);
}

.btn-contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    padding: 0.85rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: 100px;
    color: #fff;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-contact-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    border-radius: 16px;
    color: var(--text-primary);
    text-align: left;
}

.contact-success i {
    color: #25D366;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact-form-error {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 12px;
    color: #fecaca;
    font-size: 0.9rem;
}

/* Lichte thema: invoervelden duidelijk wit met donkere tekst */
:root .contact-form-collapse .form-control {
    background: #fff;
    color: #1a1a1a;
}

:root .contact-form-collapse .form-control::placeholder {
    color: #9ca3af;
}

:root .contact-form-error {
    color: #b91c1c;
}

/* Mobiel: knoppen onder elkaar, volle breedte */
@media (max-width: 480px) {
    .contact-actions {
        flex-direction: column;
    }
    .contact-actions > a,
    .contact-actions > button {
        width: 100%;
        justify-content: center;
    }
}

/* ========== Footer ========== */
footer {
    background: #050507;
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-about h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.footer-about .footer-tagline {
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.9rem;
}

.footer-about p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    color: var(--text-secondary);
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.footer-copy { margin: 0; }

/* ========== Responsive ========== */
@media (max-width: 991px) {

    .pricing-stack {
        gap: 2rem;
    }

    .pricing-layer .pricing-features-grouped {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 7rem 1.5rem 3rem;
    }

    .page-hero {
        min-height: auto;
        padding: 2.5rem 1rem 1rem;
    }

    .page-hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .page-hero .hero-content {
        max-width: 100%;
        padding: 0 0.5rem;
    }

    .page-hero::after,
    .page-hero::before {
        display: none;
    }

    .btn-primary-glow,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .services,
    .about,
    .pricing,
    .contact {
        padding: 5rem 0;
    }

    .cta-actions {
        flex-direction: row;
        justify-content: center;
    }

    .trust-toggle,
    .cta-actions .cta-toggle {
        justify-content: center;
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {

    .section-header h2 {
        font-size: 1.75rem;
    }
}

/* ========== Accessibility ========== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .orb,
    .banner-orb {
        animation: none;
    }
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

/* ========== WhatsApp Inline Link Styling ========== */
.whatsapp-inline {
    color: #25D366;
    text-decoration: none;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.whatsapp-inline:hover {
    color: #1EAE50;
    text-decoration: underline;
    opacity: 0.9;
}

.whatsapp-inline i {
    color: #25D366;
}

/* Footer WhatsApp link styling */
.contact-details-footer .whatsapp-inline {
    color: #25D366;
}

.contact-details-footer .whatsapp-inline:hover {
    color: #1EAE50;
}


/* ==========================================================================
   De paginakleuren. Roze accent (#e84e7e) blijft, de achtergrond is licht.

   Dit blok hing tot 25-08-2026 aan .prop-light, een klasse die elke publieke
   template hardcoded op <html> zette. De donkere variant erboven werd dus nooit
   gerenderd. De selector is :root geworden: dat matcht altijd en heeft exact
   dezelfde specificiteit, dus de cascade is ongewijzigd.
   ========================================================================== */

/* --- Navbar: light-overrides staan in static/css/home/navbar.css --- */

/* --- Section Backgrounds --- */
:root .services {
    background: linear-gradient(180deg, var(--bg-dark) 0%, #f1f5f9 100%);
}

:root .pricing {
    background: linear-gradient(180deg, #f1f5f9 0%, var(--bg-dark) 100%);
}

:root footer {
    background: #f1f5f9;
}

:root .btn-whatsapp-modern {
    color: #1a1a2e;
}

:root .btn-whatsapp-modern:hover {
    color: #1a1a2e;
}

:root .service-info p a,
:root .feature-description a,
:root .prop-story-promise a {
    color: #3b82f6;
    border-bottom-color: rgba(59, 130, 246, 0.35);
}

:root .service-info p a:hover,
:root .feature-description a:hover,
:root .prop-story-promise a:hover {
    color: #2563eb;
    border-bottom-color: #2563eb;
}

/* --- Pricing --- */
:root .pricing-card {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
}

:root .pricing-card:hover {
    box-shadow: 0 10px 25px rgba(232, 78, 126, 0.08);
}

/* --- Contact --- */
:root .contact-card {
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
}

:root .contact-card:hover {
    box-shadow: 0 10px 25px rgba(232, 78, 126, 0.08);
}

/* --- Service/Info Page overrides --- */
:root .feature-description .highlight-box,
:root .content-body .highlight-box {
    background: rgba(232, 78, 126, 0.06);
}

:root .about-me-portrait img {
    box-shadow: 0 10px 40px rgba(232, 78, 126, 0.15);
}

/* ==========================================================================
   Hoe het werkt - slider in #services + abonnement-quick-links
   Frameless screenshots: rounded corners + soft shadow on the image itself.
   ========================================================================== */

/* Structuur staat in slider.css (gedeeld). Hier alleen de DONKERE thema-tokens. */
.hiw-swiper {
    --slider-eyebrow: var(--primary-light);
    --slider-title: var(--text-primary);
    --slider-text: var(--text-secondary);
    --slider-accent: var(--primary);
    --slider-arrow-bg: var(--bg-card);
    --slider-arrow-border: var(--border-subtle);
    --slider-arrow-hover-bg: var(--bg-card-hover);
    --slider-arrow-hover-border: var(--border-glow);
    --slider-arrow-backdrop: blur(8px);
    --slider-img-border: none;
    --slider-img-shadow: 0 1px 2px rgba(0, 0, 0, 0.08), 0 12px 32px rgba(0, 0, 0, 0.35);
}

/* Slidertokens — alleen token-overrides */
:root .hiw-swiper {
    --slider-img-shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 16px 40px rgba(0, 0, 0, 0.10);
    --slider-arrow-bg: rgba(255, 255, 255, 0.95);
    --slider-arrow-border: rgba(0, 0, 0, 0.08);
    --slider-arrow-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.tarieven-regel-hoofdregel {
    display: flex;
    align-items: baseline;
    gap: 0.9rem;
}

.tarieven-regel-omschrijving {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
}

.tarieven-regel-leader {
    flex: 1 1 auto;
    align-self: flex-end;
    margin-bottom: 0.4em;
    border-bottom: 2px dotted rgba(255, 255, 255, 0.22);
}

.tarieven-regel-bedrag {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-primary);
    white-space: nowrap;
}

/* --- Typografische patronen (offerteregel-taal) --- */
.spec-lijst {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Bewust GEEN display:flex hier: elk inline-element in de regel (<code>, <strong>,
   <a>) zou dan een eigen flexitem worden dat niet met de tekst mee kan wrappen. De
   min-content-breedte van de li duwde daardoor de hele tekstkolom buiten beeld op
   mobiel — zichtbaar zodra de gebruiker in Chrome een grotere tekstgrootte instelt.
   De bullet staat daarom absoluut gepositioneerd naast de normale tekstflow. */
.spec-lijst li {
    position: relative;
    padding: 0.8rem 0 0.8rem 1.4rem;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-size: 0.96rem;
    line-height: 1.55;
}

.spec-lijst li:last-child {
    border-bottom: 1px solid var(--border-subtle);
}

.spec-lijst li::before {
    content: '';
    position: absolute;
    left: 0;
    /* padding-top + halve regelhoogte: schaalt mee met de tekstgrootte en zet de
       bullet op de eerste regel, zoals align-items: baseline eerder deed. */
    top: calc(0.8rem + 0.55em);
    width: 7px;
    height: 7px;
    background: var(--primary);
}

/* Lange tokens (Idempotency-Key, X-RateLimit-*) mogen nooit een regel oprekken. */
.spec-lijst code,
.connector-showcase-body code {
    overflow-wrap: anywhere;
}

/* Geen eigen max-width: de lijst deelt zijn haarlijnen met de lopende tekst
   erboven en de regel-links eronder, en die lopen tot de kolomrand. Een lijst
   van 32rem in een kolom van 696px (de eenkoloms-stand op een tablet) gaf een
   getrapte rechterrand van drie verschillende breedtes. */
.connector-showcase-text .spec-lijst {
    margin: 0 0 1.2rem;
}

.module-lijst {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
}

.module-lijst li {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 0.7rem 0;
    border-top: 1px solid var(--border-subtle);
    font-size: 0.92rem;
}

.module-lijst li:last-child {
    border-bottom: 1px solid var(--border-subtle);
}

.module-lijst .module-naam {
    color: var(--text-primary);
}

.module-lijst .module-waarde {
    margin-left: auto;
    flex: 0 0 auto;
    text-align: right;
    color: var(--text-secondary);
    font-size: 0.82rem;
    max-width: 40%;
}

.feiten-grid .feit {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-subtle);
}

.feiten-grid .feit h3 {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.45rem;
}

.feiten-grid .feit p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

.feiten-grid .feit p a {
    color: var(--text-primary);
    text-decoration: underline;
    text-decoration-color: var(--primary);
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.feiten-grid .feit p a:hover {
    color: var(--primary);
}

.pricing-card--regel {
    border-color: rgba(232, 78, 126, 0.22);
    background: var(--bg-card);
}

.pricing-card--regel .pricing-header {
    text-align: left;
}

.pricing-card--regel .sectie-eyebrow {
    margin-bottom: 0.9rem;
}

.pricing-card--regel .module-lijst {
    flex-grow: 1;
}

:root .tarieven-regel-leader {
    border-color: rgba(26, 26, 46, 0.22);
}

:root .pricing-card--regel {
    border-color: rgba(232, 78, 126, 0.18);
}

/* Mobile */
@media (max-width: 768px) {

    .tarieven-regel-hoofdregel {
        flex-wrap: wrap;
        gap: 0.35rem 0.75rem;
    }

    .tarieven-regel-leader {
        display: none;
    }

    .tarieven-regel-bedrag {
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .module-lijst li {
        flex-wrap: wrap;
        gap: 0.15rem 1rem;
    }

    .module-lijst .module-waarde {
        max-width: 100%;
    }
}

/* Tablet + iPad liggend (769–1199px): de --rich-rijen (Meekijkservice + Tarieven)
   hebben te veel kolommen om horizontaal netjes te passen, en op iPad liggend valt
   het blok anders terug op de links-uitgelijnde desktop-layout. Stapel verticaal en
   centreer — dezelfde nette reflow als op mobiel (≤768px). Vanaf 1200px (echte
   laptops/desktop) geldt weer de horizontale layout. */
/* iPad Pro 12.9" liggend (1366px CSS) valt buiten de tablet-query hierboven (cap 1199px) en kreeg
   daardoor de horizontale desktop-layout. pointer: coarse houdt 1280/1366px muis-laptops horizontaal;
   alleen touch-tablets stapelen + centreren (incl. align-items op de tekst). */
/* Mobile — slider-regels staan in slider.css; hier alleen de abonnement-grid */
/* ==========================================================================
   Slider in propositie-context: kleinere header + pagination onder de content
   ========================================================================== */
.prop-showcase-section .section-header h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.25rem);
    line-height: 1.2;
}

.prop-showcase-section .hiw-swiper {
    padding-bottom: 1rem;
}

/* ==========================================================================
   Voor wie — 2 propositie-cards (horizontaal onder Onze dienstverlening)
   ========================================================================== */
.voor-wie-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.voor-wie-grid-inline {
    margin-top: 2rem;
}

.voor-wie-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 1200px;
}

@media (max-width: 991px) {
    .voor-wie-grid--three {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

.voor-wie-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0 2.25rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    gap: 0.5rem;
    overflow: hidden;
}

.voor-wie-card:hover {
    transform: translateY(-2px);
    color: var(--text-primary);
}

.voor-wie-card > .voor-wie-title-card,
.voor-wie-card > .voor-wie-sub,
.voor-wie-card > .voor-wie-arrow {
    padding-left: 2rem;
    padding-right: 2rem;
}

/* --- Subtiele variant: Bedrijven (warm pink-tint) --- */
.voor-wie-card--bedrijven {
    background: rgba(232, 78, 126, 0.04);
    border-color: rgba(232, 78, 126, 0.18);
}

.voor-wie-card--bedrijven:hover {
    background: rgba(232, 78, 126, 0.10);
    border-color: rgba(232, 78, 126, 0.45);
    box-shadow: 0 12px 32px rgba(232, 78, 126, 0.12);
}

.voor-wie-card--bedrijven .voor-wie-arrow {
    color: var(--primary-light);
}

/* --- Subtiele variant: Accountantskantoren (cool indigo-tint) --- */
.voor-wie-card--accountants {
    background: rgba(99, 102, 241, 0.04);
    border-color: rgba(99, 102, 241, 0.18);
}

.voor-wie-card--accountants:hover {
    background: rgba(99, 102, 241, 0.10);
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.12);
}

.voor-wie-card--accountants .voor-wie-arrow {
    color: #a5b4fc;
}

.voor-wie-title-card {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.voor-wie-sub {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 38ch;
}

.voor-wie-arrow {
    margin-top: auto;
    padding-top: 1rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.voor-wie-arrow i {
    margin-left: 0.35rem;
    transition: transform 0.3s ease;
}

.voor-wie-card:hover .voor-wie-arrow i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .voor-wie-grid {
        grid-template-columns: 1fr;
    }
}

/* Skip-link (WCAG 2.4.1) staat in static/css/home/navbar.css */


/* ========== Dienstverlening split (tekst + mediapaneel, hairline-features) ========== */
.dienst-split-list {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    margin-bottom: 4rem;
}

.dienst-split {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 4rem;
    align-items: center;
}

.dienst-split--reverse .dienst-split-content {
    order: 2;
}

.dienst-split--reverse .dienst-split-media {
    order: 1;
}

.dienst-split-eyebrow,
.sectie-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1.1rem;
}

.dienst-split-eyebrow::before,
.sectie-eyebrow::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--primary);
}

.dienst-split-title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(1.6rem, 2.6vw, 2.2rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: 0.9rem;
}

.dienst-split-sub {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.9rem;
    max-width: 32rem;
}

.dienst-split-features {
    list-style: none;
    margin: 0 0 2.1rem;
    padding: 0;
    max-width: 32rem;
}

.dienst-split-features li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 0;
    border-top: 1px solid var(--border-subtle);
    color: var(--text-primary);
    font-size: 0.98rem;
}

.dienst-split-features li:last-child {
    border-bottom: 1px solid var(--border-subtle);
}

.dienst-split-features li::before {
    content: '';
    flex: 0 0 auto;
    width: 7px;
    height: 7px;
    background: var(--primary);
}

.dienst-split-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    background: var(--primary);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.98rem;
    padding: 0.85rem 1.55rem;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.25s ease;
}

.dienst-split-cta:hover {
    background: var(--primary-dark);
    color: #fff;
}

/* Uitgelichte strook onder de dienst-splits (consolidatie).
   Geen kaart en geen vlak: alleen de hairline die .dienst-split-features li
   ook gebruikt, met het 7px-accentblokje van .dienst-split-eyebrow. */
.dienst-uitgelicht {
    margin: 2.6rem 0 0;
    padding-top: 1.4rem;
    border-top: 1px solid var(--border-subtle);
}

/* Eén regel binnen de strook. De hairline onder elk item zet de regels van
   elkaar af, net als .dienst-split-features li dat binnen een lijst doet. */
.dienst-uitgelicht-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--border-subtle);
    text-decoration: none;
    color: inherit;
}

/* Vormgeving: het gedeelde eyebrow-motief in publiek-2026.css. */
.dienst-uitgelicht-eyebrow {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.dienst-uitgelicht-kop {
    display: block;
    max-width: 44rem;
    color: var(--text-primary);
    font-size: 1.02rem;
    line-height: 1.6;
}

.dienst-uitgelicht-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex: 0 0 auto;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--primary);
    transition: gap 0.25s ease;
}

.dienst-uitgelicht-item:hover .dienst-uitgelicht-link {
    gap: 0.9rem;
}

@media (max-width: 768px) {
    .dienst-uitgelicht-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.9rem;
    }
}

.dienst-split-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    border: 1px solid var(--border-subtle);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

:root .dienst-split-media img {
    box-shadow: 0 20px 50px rgba(20, 28, 48, 0.14);
}

@media (max-width: 991px) {
    .dienst-split {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.2rem;
    }

    .dienst-split--reverse .dienst-split-content {
        order: 1;
    }

    .dienst-split--reverse .dienst-split-media {
        order: 2;
    }

    .dienst-split-list {
        gap: 3.5rem;
    }
}
