/* ============================================================
   Global Motive — Stylesheet
   ============================================================ */

:root {
    --primary: #1B3A6B;
    --primary-dark: #0F2847;
    --primary-mid: #1B3A6B;
    --primary-light: #2A5298;
    --accent: #3B82F6;
    --accent-hover: #2563EB;
    --accent-glow: rgba(59,130,246,0.15);
    --electric: #3B82F6;
    --dark: #0A0E17;
    --dark-800: #111827;
    --dark-700: #1F2937;
    --dark-600: #374151;
    --text: #1F2937;
    --text-light: #6B7280;
    --text-muted: #9CA3AF;
    --border: #E5E7EB;
    --border-light: #F3F4F6;
    --light: #F8FAFC;
    --lighter: #FAFBFC;
    --white: #FFFFFF;
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --radius: 8px;
    --radius-md: 8px;
    --radius-lg: 8px;
    --radius-xl: 8px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
    --shadow-2xl: 0 24px 64px rgba(0,0,0,0.16);
    --transition: all 0.25s cubic-bezier(.4,0,.2,1);
    --transition-slow: all 0.45s cubic-bezier(.4,0,.2,1);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; color: var(--text); line-height: 1.6; background: var(--white); -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { color: var(--electric); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font-family: inherit; }

/* === CONTAINER === */
.container { max-width: 1600px; margin: 0 auto; padding: 0 2.5rem; }
.container-sm { max-width: 900px; margin: 0 auto; padding: 0 2rem; }
.container-lg { max-width: 1600px; margin: 0 auto; padding: 0 2.5rem; }

/* === GRID === */
.grid { display: grid; gap: 1.75rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .grid-3 { grid-template-columns: 1fr; }
    .grid-4 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
    .grid-2 { grid-template-columns: 1fr; }
    .container, .container-sm, .container-lg { padding: 0 1.25rem; }
}

/* === UTILITIES === */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.5rem; }
.mb-3 { margin-bottom: 2.5rem; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
    background: var(--dark);
    color: rgba(255,255,255,0.9);
    font-size: 0.8rem;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.topbar-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.topbar-left span,
.topbar-left a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    font-weight: 400;
}
.topbar-left a:hover { color: var(--accent); text-decoration: none; }
.topbar-left .topbar-icon { width: 14px; height: 14px; opacity: 0.6; }
.topbar-right {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.topbar-right a {
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    border-radius: 50%;
    transition: var(--transition);
}
.topbar-right a:hover {
    color: var(--accent);
    background: rgba(59,130,246,0.08);
    text-decoration: none;
}
.topbar-right svg { width: 13px; height: 13px; fill: currentColor; }
.topbar-right a i { font-size: 13px; line-height: 1; }

@media (max-width: 768px) {
    .topbar-left { gap: 1rem; }
    .topbar-left span:nth-child(n+3) { display: none; }
}
@media (max-width: 480px) {
    .topbar { display: none; }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: relative;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 40px; width: auto; max-height: 100%; }
.logo:hover { opacity: 0.85; text-decoration: none; }

.nav {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
/* Menupositie (desktop) — instelbaar via Branding. De knoppen (header-cta)
   blijven altijd rechts staan; alleen de menulinks verschuiven. */
@media (min-width: 1025px) {
    .header.menu-right .nav { margin-left: auto; }
    .header.menu-left .nav,
    .header.menu-center .nav {
        flex: 1;
        position: relative;
        margin: 0;
        padding-right: 220px;
    }
    .header.menu-left .nav { justify-content: flex-start; margin-left: 2rem; }
    .header.menu-center .nav { justify-content: center; }
    .header.menu-left .nav > .nav-divider,
    .header.menu-center .nav > .nav-divider { display: none; }
    .header.menu-left .nav > .header-cta,
    .header.menu-center .nav > .header-cta {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        padding-right: 0;
    }
}
.nav a:not(.btn) {
    color: var(--text);
    font-weight: 500;
    font-size: 0.88rem;
    padding: 0.5rem 1.15rem;
    border-radius: 0;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}
.nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.15rem;
    right: 1.15rem;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.25s ease;
}
.nav a:not(.btn):hover {
    color: var(--primary);
    background: transparent;
    text-decoration: none;
}
.nav a:not(.btn):hover::after {
    transform: scaleX(1);
}
.nav a:not(.btn).active {
    color: var(--primary);
    background: transparent;
    font-weight: 600;
}
.nav a:not(.btn).active::after {
    transform: scaleX(1);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}
.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.dropdown-arrow {
    font-size: 0.65rem;
    transition: var(--transition);
}
.nav-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}
.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 1000;
}
.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown-menu a {
    display: block;
    padding: 0.6rem 1rem;
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
}
.nav-dropdown-menu a:hover {
    background: var(--light);
    color: var(--primary);
}
.nav-dropdown-menu a.nav-dropdown-sub {
    padding-left: 1.75rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Megamenu */
.nav-mega {
    position: static;
}
.nav-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 1520px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0 0 8px 8px;
    box-shadow: var(--shadow-lg);
    padding: 1.5rem 1.75rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
    z-index: 1000;
}
.nav-mega:hover .nav-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-mega:hover .dropdown-arrow {
    transform: rotate(180deg);
}
.nav-mega-col {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}
.nav-mega-heading {
    display: block;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary) !important;
    padding: 0.35rem 0 !important;
    border-bottom: 1px solid var(--border);
    margin-bottom: 0.35rem;
    border-radius: 0 !important;
}
.nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.65rem;
    vertical-align: middle;
    line-height: 1;
}
.nav-icon svg {
    width: 1em;
    height: 1em;
    display: block;
}
.nav a.nav-mega-link {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 0;
    font-size: 0.85rem;
    color: var(--text);
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
}
.nav a.nav-mega-link:hover {
    color: var(--primary);
}
/* Titel/link staan flush links; het icoon houdt alleen ruimte t.o.v. de tekst
   via de flex-gap, niet via een marge (voorkomt dubbele/afwijkende ruimte). */
.nav .nav-mega-heading {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}
.nav a.nav-mega-link .nav-icon,
.nav .nav-mega-heading .nav-icon {
    margin-right: 0;
}

.nav .nav-divider {
    width: 1px;
    height: 22px;
    background: var(--border);
    margin: 0 0.65rem;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text);
    padding: 0.5rem;
    border-radius: var(--radius);
}
.mobile-toggle:hover { background: var(--light); }

/* Drawer-onderdelen: standaard verborgen op desktop */
.nav-drawer-head { display: none; }
.nav-backdrop { display: none; }

@media (max-width: 1024px) {
    .mobile-toggle { display: block; position: relative; z-index: 1210; }

    /* App-stijl zijpaneel dat vanaf rechts inschuift */
    .nav {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(86vw, 360px);
        max-width: 360px;
        height: 100%;
        height: 100dvh;
        background: var(--white);
        padding: 0 0 calc(env(safe-area-inset-bottom, 0px) + 1.5rem);
        border-left: 1px solid var(--border);
        box-shadow: -12px 0 40px rgba(0,0,0,0.18);
        z-index: 1205;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        align-items: stretch;
    }
    .nav.open { transform: translateX(0); }

    /* Achtergrond-overlay */
    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 1200;
    }
    .nav-backdrop.open { opacity: 1; visibility: visible; }
    body.gm-nav-open { overflow: hidden; }

    /* Kop van het paneel met sluitknop */
    .nav-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 1.25rem;
        border-bottom: 1px solid var(--border);
        position: sticky;
        top: 0;
        background: var(--white);
        z-index: 2;
    }
    .nav-drawer-head span {
        font-weight: 700;
        font-size: 0.8rem;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--text-light);
    }
    .nav-close {
        background: var(--light);
        border: none;
        width: 38px;
        height: 38px;
        border-radius: 50%;
        font-size: 1.4rem;
        line-height: 1;
        color: var(--text);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .nav-close:hover { background: var(--border); }

    .nav .nav-divider { display: none; }
    .nav a:not(.btn) {
        width: 100%;
        padding: 0.9rem 1.25rem;
        border-radius: 0;
        font-size: 1rem;
        min-height: 48px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--border);
    }
    .nav a:not(.btn)::after { display: none; }
    .nav a:not(.btn).active { background: var(--light); color: var(--primary); }
    .nav a:not(.btn):hover { background: var(--light); }
    .nav-dropdown { width: 100%; }
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        background: var(--lighter, #f8fafc);
    }
    .nav-dropdown-menu a { padding: 0.75rem 1.5rem; min-height: 44px; }
    .nav-mega { width: 100%; }
    .nav-mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0;
        background: transparent;
        display: block;
        max-width: none;
        border-radius: 0;
    }
    .nav-mega-col { gap: 0; }
    .nav-mega-heading {
        padding: 0.85rem 1.25rem !important;
        background: var(--lighter, #f8fafc);
        border-bottom: 1px solid var(--border);
        font-size: 0.72rem !important;
    }
    .nav-mega-link { padding: 0.8rem 1.5rem !important; min-height: 44px; }
    .header-cta {
        width: 100%;
        margin: 0.75rem 0 0;
        gap: 0.6rem;
        padding: 0 1.25rem;
        flex-direction: column;
    }
    .header-cta form { width: 100%; margin: 0; }
    .header-cta .btn {
        flex: 1;
        width: 100%;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.95rem;
    }
}

/* ============================================================
   DEMO BANNER
   ============================================================ */
.demo-banner {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: 200;
    pointer-events: none;
}
.demo-banner .container {
    max-width: none;
    margin: 0;
    padding: 0;
    transform: translateX(19px);
}
.demo-banner-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.6rem 1.1rem;
    white-space: nowrap;
    border-radius: 8px 8px 0 0;
    text-decoration: none;
    transition: background 0.2s ease;
    pointer-events: all;
    transform: rotate(90deg);
    transform-origin: left center;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.18);
}
.demo-banner-link:hover {
    background: var(--primary-light);
    text-decoration: none;
    color: #ffffff;
}
.demo-banner-link svg {
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .demo-banner .container {
        transform: translateX(16px);
    }
    .demo-banner-link {
        font-size: 0.78rem;
        padding: 0.5rem 0.9rem;
    }
}

/* Zwevend WhatsApp-icoon (rood) rechtsonder */
.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 300;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #e11d1d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, background 0.2s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #c81717;
    color: #ffffff;
    transform: scale(1.08);
    text-decoration: none;
}
@media (max-width: 640px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 26px;
        right: 16px;
        bottom: 16px;
    }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.6rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    letter-spacing: 0.01em;
    white-space: nowrap;
    line-height: 1.4;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); box-shadow: 0 4px 20px rgba(13,33,55,0.3); }
.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--white); box-shadow: 0 4px 12px rgba(59,130,246,0.35); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover { background: var(--lighter); color: var(--primary); box-shadow: 0 4px 16px rgba(0,0,0,0.12); }
.btn-round { border-radius: 8px; padding: 0.75rem 2rem; }
.btn-square { border-radius: 0; }
.btn-ghost { background: rgba(255,255,255,0.08); color: var(--white); border-color: rgba(255,255,255,0.15); }
.btn-ghost:hover { background: rgba(255,255,255,0.15); color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); border-color: var(--danger); }
.btn-danger:hover { background: #E8434F; }
.btn-sm { padding: 0.35rem 0.95rem; font-size: 0.8rem; }
.btn-lg { padding: 0.85rem 2.5rem; font-size: 0.95rem; }
.btn-xl { padding: 1rem 3rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }
.btn-icon { padding: 0.6rem; }
.btn-arrow::after { content: ' \2192'; font-weight: 400; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: var(--primary);
    color: var(--white);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1619642751034-765dfdf7c58e?w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    pointer-events: none;
}
/* Vaste pagina's: rechte, even hoge hero (geen schuine onderrand). */
.hero::after { display: none; }
.hero .container { position: relative; z-index: 1; }
.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
}
.hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.7;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
    font-weight: 400;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.hero-small { padding: 4rem 0 5rem; min-height: auto; }
.hero-small h1 { font-size: 2.5rem; margin-bottom: 0.75rem; }
.hero-small p { opacity: 0.65; font-size: 1rem; }

/* Pagebuilder-hero: hoogte, tekstpositie en onderrandvorm worden per blok
   ingesteld, dus de vaste padding en de hardcoded schuine onderrand uitzetten. */
.hero.hero-pb { padding: 3rem 0; }
.hero.hero-pb::after { display: none; }

@media (max-width: 768px) {
    .hero { padding: 4rem 0; min-height: 300px; }
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-small h1 { font-size: 1.8rem; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
}

/* ============================================================
   DOMAIN CHECKER
   ============================================================ */
.domain-checker-bar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    max-width: 640px;
    margin: 2.5rem auto 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}
.domain-form {
    display: flex;
    gap: 0;
    border-radius: 8px;
    border: 2px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}
.domain-form:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}
.domain-form input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: none;
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
    background: var(--white);
    color: var(--text);
}
.domain-form input::placeholder { color: var(--text-muted); }
.domain-form button {
    padding: 0.85rem 2rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
}
.domain-form button:hover { background: var(--primary-dark); }

.domain-extensions {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 0.75rem;
}
.domain-extensions span {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-bar-inline {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 1.25rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}
.trust-item .trust-check {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
}

@media (max-width: 640px) {
    .domain-checker-bar { padding: 1.25rem; margin: 2rem auto 0; }
    .domain-form { flex-direction: column; border-radius: var(--radius-md); }
    .domain-form button { border-radius: 0; }
    .trust-bar-inline { gap: 1rem; }
    .trust-item { font-size: 0.75rem; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5.5rem 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-light { background: var(--light); }
.section-primary { background: var(--primary); color: var(--white); }
.section-accent { background: var(--accent); color: var(--dark); }

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.65rem;
    color: var(--dark);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}
.section-dark .section-title,
.section-primary .section-title { color: var(--white); }

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.5); }
.section-primary .section-subtitle { color: rgba(255,255,255,0.6); }

/* Legacy compat */
.features, .services-preview, .cta { padding: 4rem 0; }
.cta { background: var(--light); }
.page-header { background: var(--primary); color: var(--white); padding: 3rem 0; text-align: center; }
.page-header h1 { font-size: 2.2rem; color: var(--white); font-weight: 800; }
.page-header p { color: rgba(255,255,255,0.6); margin-top: 0.5rem; }
.content-section { padding: 3rem 0; }
.content-block h2 { margin: 1.5rem 0 0.75rem; color: var(--dark); }
.content-block ul { padding-left: 1.5rem; list-style: disc; }
.content-block ul li { margin-bottom: 0.4rem; }
.category-title { margin: 2rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--border); color: var(--dark); }

/* ============================================================
   FEATURE CARDS
   ============================================================ */
.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--accent);
}
.feature-card .icon {
    width: 50px; height: 50px;
    border-radius: var(--radius-md);
    background: var(--light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin: 0 auto 1.25rem;
    border: 1px solid var(--border);
}
.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}
.feature-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.65;
}

.section-dark .feature-card {
    background: var(--dark-700);
    border-color: var(--dark-600);
}
.section-dark .feature-card:hover { border-color: var(--accent); }
.section-dark .feature-card h3 { color: var(--white); }
.section-dark .feature-card p { color: rgba(255,255,255,0.55); }
.section-dark .feature-card .icon { background: var(--dark-600); border-color: rgba(255,255,255,0.06); color: var(--accent); }

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
    align-items: start;
}
@media (max-width: 968px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    transition: var(--transition-slow);
    position: relative;
}
.pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-3px);
}
/* Pakketten-slider: scrollbar verbergen + 3 kaarten tegelijk */
.pricing-slider {
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.pricing-slider::-webkit-scrollbar { width: 0; height: 0; display: none; }
.pricing-slider > .pricing-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    scroll-snap-align: start;
}
@media (max-width: 900px) {
    .pricing-slider > .pricing-card { flex-basis: calc((100% - 1.5rem) / 2); }
    .pricing-slider-nav { display: none !important; }
}
@media (max-width: 600px) {
    .pricing-slider > .pricing-card { flex-basis: 100%; }
}
/* Blog-blok: kaarten in pakketten-stijl + slider */
.blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(15, 40, 71, 0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(15, 40, 71, 0.14);
}
.blog-card-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}
.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.blog-card:hover .blog-card-media img { transform: scale(1.05); }
.blog-card-media-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.55);
}
.blog-card-cat {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    background: rgba(255, 255, 255, 0.92);
    color: var(--primary);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    padding: 0.28rem 0.65rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(15, 40, 71, 0.12);
}
.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.blog-card-date {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--text-light);
}
.blog-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0.4rem 0 0.5rem;
    line-height: 1.35;
}
.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 1rem;
}
.blog-card-link {
    margin-top: auto;
    align-self: flex-start;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(15, 40, 71, 0.12);
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}
.blog-card-link:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(15, 40, 71, 0.18);
}
.blog-card-link span,
.blog-card-link i { transition: transform .2s ease; }
.blog-card:hover .blog-card-link span,
.blog-card:hover .blog-card-link i { transform: translateX(4px); }

/* Statuslijst (Instatus-stijl): 90-daagse uptime-balken. Gedeeld door de
   /status-pagina en het serverstatus-blok in de pagebuilder. */
.statuslist{margin-top:2.5rem;background:#fff;border:1px solid var(--border,#e5e7eb);border-radius:8px;padding:.5rem 1.75rem;box-shadow:0 2px 14px rgba(15,40,71,.05)}
.statusrow{padding:1.4rem 0;border-bottom:1px solid var(--border,#eef1f5)}
.statusrow:last-child{border-bottom:none}
.statusrow-head{display:flex;align-items:center;justify-content:space-between;gap:1rem;margin-bottom:.7rem}
.statusrow-name{display:flex;align-items:center;gap:.55rem;font-weight:600;color:var(--primary);font-size:1rem}
.statusrow-ico{width:1.1rem;text-align:center;color:var(--text-light,#6b7280)}
.statusrow-mark{width:16px;height:16px;border-radius:50%;background:#10b981;box-shadow:0 0 0 3px rgba(16,185,129,.18);flex:0 0 auto}
.statusrow-down .statusrow-mark{background:#ef4444;box-shadow:0 0 0 3px rgba(239,68,68,.18)}
.statusrow-pending .statusrow-mark{background:#f59e0b;box-shadow:0 0 0 3px rgba(245,158,11,.18)}
.statusrow-meta{display:flex;align-items:center;gap:1rem;font-size:.86rem}
.statusrow-ms{color:var(--text-light,#6b7280)}
.statusrow-uptime{color:#10b981;font-weight:600}
.statusrow-down .statusrow-uptime{color:#ef4444}
.statusrow-pending .statusrow-uptime{color:#f59e0b}
.statusbar{display:flex;gap:2px;align-items:stretch;height:34px}
.statusbar-seg{flex:1 1 0;min-width:0;border-radius:2px;background:#e5e7eb;transition:transform .1s}
.statusbar-seg:hover{transform:scaleY(1.12)}
.statusbar-seg.seg-up{background:#10b981}
.statusbar-seg.seg-partial{background:#f59e0b}
.statusbar-seg.seg-down{background:#ef4444}
.statusbar-seg.seg-nodata{background:#e5e7eb}
.statusrow-foot{display:flex;justify-content:space-between;margin-top:.5rem;font-size:.72rem;letter-spacing:.04em;text-transform:uppercase;color:var(--text-light,#9aa4b2)}
@media(max-width:640px){.statuslist{padding:.5rem 1rem}.statusbar{height:28px;gap:1px}}

/* Monitoring / uptime */
.monitor-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}
.monitor-grid > .monitor-card {
    flex: 1 1 300px;
    max-width: 380px;
}
.monitor-card {
    background: #fff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--text-light);
    border-radius: 8px;
    padding: 1.25rem 1.35rem;
    box-shadow: 0 4px 16px rgba(15, 40, 71, 0.06);
    transition: transform .2s ease, box-shadow .2s ease;
}
.monitor-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(15, 40, 71, 0.12);
}
.monitor-card.monitor-up { border-left-color: var(--success); }
.monitor-card.monitor-down { border-left-color: #ef4444; }
.monitor-card.monitor-pending { border-left-color: #f59e0b; }
.monitor-card-head {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}
.monitor-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex: none;
    background: var(--text-light);
}
.monitor-up .monitor-dot {
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.18);
    animation: monitorPulse 2s infinite;
}
.monitor-down .monitor-dot {
    background: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.18);
}
.monitor-pending .monitor-dot {
    background: #f59e0b;
    box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.18);
}
@keyframes monitorPulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.35); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.monitor-card-meta {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex: 1;
}
.monitor-name {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.98rem;
    line-height: 1.2;
}
.monitor-host {
    font-size: 0.78rem;
    color: var(--text-light);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.monitor-status {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.25rem 0.6rem;
    border-radius: 8px;
    background: #f1f5f9;
    color: var(--text-light);
    flex: none;
}
.monitor-up .monitor-status { background: rgba(16, 185, 129, 0.12); color: var(--success); }
.monitor-down .monitor-status { background: rgba(239, 68, 68, 0.12); color: #ef4444; }
.monitor-pending .monitor-status { background: rgba(245, 158, 11, 0.12); color: #b45309; }
.monitor-card-stats {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
    margin-top: 1.1rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--border);
}
.monitor-stat {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
}
.monitor-stat:last-child {
    text-align: right;
    align-items: flex-end;
}
.monitor-stat-val {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1.1;
}
.monitor-stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-light);
    margin-top: 0.15rem;
}
.monitor-checked {
    margin-top: 0.85rem;
    font-size: 0.72rem;
    color: var(--text-light);
}
.status-banner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    padding: 1.1rem 1.5rem;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    border: 1px solid var(--border);
}
.status-banner.status-up { background: rgba(16, 185, 129, 0.1); color: var(--success); border-color: rgba(16, 185, 129, 0.25); }
.status-banner.status-down { background: rgba(239, 68, 68, 0.1); color: #ef4444; border-color: rgba(239, 68, 68, 0.25); }
.status-banner.status-pending { background: rgba(245, 158, 11, 0.1); color: #b45309; border-color: rgba(245, 158, 11, 0.25); }
.status-banner .monitor-dot { width: 12px; height: 12px; background: currentColor; }
.monitor-icon {
    width: 38px;
    height: 38px;
    flex: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1rem;
    background: rgba(0, 112, 79, 0.08);
    color: var(--primary);
}
.monitor-up .monitor-icon { background: rgba(16, 185, 129, 0.12); color: var(--success); }
.monitor-down .monitor-icon { background: rgba(239, 68, 68, 0.12); color: #ef4444; }
.monitor-status {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.monitor-status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
}
.monitor-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.5rem 0.25rem 1rem;
    align-items: stretch;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.monitor-slider::-webkit-scrollbar { width: 0; height: 0; display: none; }
.monitor-slider > .monitor-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    scroll-snap-align: start;
}
@media (max-width: 900px) {
    .monitor-slider > .monitor-card { flex-basis: calc((100% - 1.5rem) / 2); }
    .monitor-slider-wrap .blog-slider-nav { display: none !important; }
}
@media (max-width: 600px) {
    .monitor-slider > .monitor-card { flex-basis: 100%; }
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.blog-grid > .blog-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    max-width: calc((100% - 3rem) / 3);
}
@media (max-width: 900px) {
    .blog-grid > .blog-card {
        flex-basis: calc((100% - 1.5rem) / 2);
        max-width: calc((100% - 1.5rem) / 2);
    }
}
@media (max-width: 600px) {
    .blog-grid > .blog-card {
        flex-basis: 100%;
        max-width: 100%;
    }
}
.blog-slider {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 0.5rem 0.25rem 1rem;
    align-items: stretch;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.blog-slider::-webkit-scrollbar { width: 0; height: 0; display: none; }
.blog-slider > .blog-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    scroll-snap-align: start;
}
@media (max-width: 900px) {
    .blog-slider > .blog-card { flex-basis: calc((100% - 1.5rem) / 2); }
    .blog-slider-nav { display: none !important; }
}
@media (max-width: 600px) {
    .blog-slider > .blog-card { flex-basis: 100%; }
}
.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--primary);
}
.pricing-card.featured::before {
    content: 'Populair';
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.3rem 1.4rem;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}
.pricing-name { font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 0.25rem; }
.pricing-desc { font-size: 0.85rem; color: var(--text-light); margin-bottom: 1.5rem; }
.pricing-price { margin-bottom: 2rem; }
.pricing-amount { font-size: 2.75rem; font-weight: 800; color: var(--dark); letter-spacing: -0.03em; line-height: 1; }
.pricing-period { font-size: 0.85rem; color: var(--text-muted); font-weight: 400; margin-left: 0.25rem; }
.pricing-features { margin-bottom: 2rem; }
.pricing-features li {
    padding: 0.5rem 0;
    font-size: 0.88rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid var(--border-light);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
    content: '\2713';
    color: var(--success);
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.pricing-features li.excluded {
    color: var(--text-muted);
    text-decoration: line-through;
}
.pricing-features li.excluded::before {
    content: '\2717';
    color: var(--text-muted);
}

/* ============================================================
   MARKETING TABS
   ============================================================ */
.marketing-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    background: var(--light);
    border-radius: var(--radius-xl);
    padding: 0.4rem;
    border: 1px solid var(--border);
}
.marketing-tab {
    padding: 0.85rem 1.75rem;
    border: none;
    background: transparent;
    border-radius: var(--radius-lg);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}
.marketing-tab:hover {
    color: var(--primary);
}
.marketing-tab.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-md);
}
.marketing-panel {
    display: none;
}
.marketing-panel.active {
    display: block;
}
.marketing-panel-intro {
    text-align: center;
    margin-bottom: 2.5rem;
}
.marketing-panel-intro h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}
.marketing-panel-intro p {
    color: var(--text-light);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}
@media (max-width: 640px) {
    .marketing-tabs {
        flex-direction: column;
    }
    .marketing-tab {
        text-align: center;
    }
}

/* Service Blocks */
.service-block {
    display: block;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-slow);
}
.service-block:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.service-block-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.service-block h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
.service-block p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.service-block-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
}

/* Content Split */
.content-split {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-sm);
}
.content-split.reversed {
    grid-template-columns: 1fr 1.2fr;
}
.content-split.reversed .content-split-text {
    order: 2;
}
.content-split.reversed .content-split-points {
    order: 1;
}
.content-split-text h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}
.content-split-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.content-split-points {
    background: var(--light);
    border-radius: var(--radius-md);
    padding: 2rem;
    border: 1px solid var(--border);
}
.content-split-points h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.25rem;
}
.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}
.check-list li:last-child {
    border-bottom: none;
}
.check-list li::before {
    content: '\2713';
    color: var(--white);
    background: var(--success);
    font-weight: 700;
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Info Block (stats/highlight) */
.info-block {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 3rem;
    color: var(--white);
}
.info-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.info-block p {
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.info-block-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.info-block-stat {
    text-align: center;
}
.info-block-stat .number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.25rem;
}
.info-block-stat .label {
    font-size: 0.8rem;
    opacity: 0.8;
    font-weight: 500;
}

/* Highlight Cards */
.highlight-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.highlight-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    transition: var(--transition);
}
.highlight-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}
.highlight-card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}
.highlight-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.4rem;
}
.highlight-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}
@media (max-width: 768px) {
    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    .content-split.reversed .content-split-text,
    .content-split.reversed .content-split-points {
        order: unset;
    }
    .info-block-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .highlight-cards {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   ALLES-IN-EEN BANNER
   ============================================================ */
.alles-in-een-banner {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    color: var(--white);
}
.alles-in-een-banner h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.alles-in-een-banner p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}
.alles-in-een-list {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
}
.alles-in-een-list li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
}
.alles-in-een-list li::before {
    content: '\2713';
    font-weight: 700;
    color: var(--accent);
}
.alles-in-een-action {
    flex-shrink: 0;
}
.alles-in-een-banner .btn-accent {
    background: var(--white);
    color: var(--primary);
    font-weight: 600;
}
.alles-in-een-banner .btn-accent:hover {
    background: var(--accent);
    color: var(--white);
}
@media (max-width: 768px) {
    .alles-in-een-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .alles-in-een-list { justify-content: center; }
}

/* ============================================================
   WHY / SPLIT LAYOUT
   ============================================================ */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.why-grid.why-grid--top { align-items: start; }
.why-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.025em;
}
.section-dark .why-content h2 { color: var(--white); }
.why-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 0.92rem;
}
.section-dark .why-content p { color: rgba(255,255,255,0.6); }

.why-points { list-style: none; padding: 0; margin-top: 1rem; }
.why-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text);
    font-weight: 500;
}
.section-dark .why-points li { color: rgba(255,255,255,0.8); }
.why-points li::before {
    content: '\2713';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
    width: 1em;
    text-align: center;
    margin-top: 1px;
}
.why-points li .why-icon {
    color: var(--primary);
    flex-shrink: 0;
    width: 1.35em;
    text-align: center;
    margin-top: 2px;
}
.why-points--noticks li { align-items: center; }
.why-points--noticks li::before { content: none; }
.why-points--noticks li .why-icon {
    margin-top: 0;
    font-size: 1.1em;
    line-height: 1;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.why-stat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}
.why-stat-card:hover {
    background: rgba(59,130,246,0.05);
    border-color: rgba(59,130,246,0.15);
    transform: translateY(-2px);
}
.why-stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1;
}
.why-stat-card .stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .why-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   MAP + TEKST BLOK
   ============================================================ */
.pbmap {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
.pbmap-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
    font-weight: 600;
    text-align: center;
}
.pbmap-placeholder i { margin-right: 0.5rem; }
.pbmap-sub,
.why-sub {
    font-weight: 600;
    color: var(--primary);
    margin: 0.2rem 0 1rem;
    font-size: 1.05rem;
    line-height: 1.4;
}
.section-dark .pbmap-sub,
.section-dark .why-sub { color: var(--white); }
.pbmap-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.25rem;
}
.pbmap-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--dark);
}
.pbmap-list li i { color: var(--primary); }
.section-dark .pbmap-list li { color: rgba(255,255,255,0.85); }

/* ============================================================
   PORTFOLIO
   ============================================================ */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.portfolio-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--dark-700), var(--dark));
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-slow);
    cursor: pointer;
}
.portfolio-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
}
.portfolio-item .portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    transition: var(--transition-slow);
}
.portfolio-item:hover .portfolio-overlay {
    background: linear-gradient(to top, rgba(27,58,107,0.9) 0%, rgba(27,58,107,0.4) 50%, rgba(27,58,107,0.1) 100%);
}
.portfolio-item .portfolio-title {
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
}
.portfolio-item .portfolio-category {
    color: rgba(255,255,255,0.6);
    font-size: 0.78rem;
    margin-top: 0.15rem;
    font-weight: 500;
}
.portfolio-item .portfolio-placeholder {
    font-size: 3rem;
    opacity: 0.12;
    color: var(--white);
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) { .portfolio-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .portfolio-grid { grid-template-columns: 1fr; } }

/* ============================================================
   BLOG
   ============================================================ */
.blog-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.75rem;
}
.blog-grid > .blog-card {
    flex: 0 0 calc((100% - 3.5rem) / 3);
    max-width: calc((100% - 3.5rem) / 3);
}
@media (max-width: 900px) {
    .blog-grid > .blog-card {
        flex-basis: calc((100% - 1.75rem) / 2);
        max-width: calc((100% - 1.75rem) / 2);
    }
}
@media (max-width: 600px) {
    .blog-grid > .blog-card {
        flex-basis: 100%;
        max-width: 340px;
    }
}
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    text-decoration: none;
    border-color: var(--accent);
}
.blog-card .blog-thumb {
    height: 190px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.15);
    font-size: 3rem;
}
.blog-card .blog-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card .blog-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    display: flex;
    gap: 0.75rem;
    font-weight: 500;
}
.blog-card .blog-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    line-height: 1.35;
}
.blog-card .blog-excerpt {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}
.blog-card .blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 1rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}
.blog-card .blog-link:hover { color: var(--accent-hover); gap: 0.5rem; }



/* ============================================================
   BLOG CAROUSEL
   ============================================================ */
.blog-carousel-wrapper {
    position: relative;
}
.blog-carousel {
    display: flex;
    gap: 1.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 1rem;
    scrollbar-width: none;
}
.blog-carousel::-webkit-scrollbar { display: none; }
.blog-carousel .blog-card {
    min-width: 340px;
    max-width: 380px;
    scroll-snap-align: start;
    flex-shrink: 0;
}
.carousel-nav {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 1.5rem;
}
.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--primary);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.carousel-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

@media (max-width: 640px) {
    .blog-carousel .blog-card { min-width: 280px; }
}

/* ============================================================
   CTA BLOCK
   ============================================================ */
.cta-block {
    background: var(--primary);
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.cta-block::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-block::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(79,142,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.cta-block h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    letter-spacing: -0.025em;
    position: relative;
}
.cta-block p {
    font-size: 1rem;
    opacity: 0.65;
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.7;
    position: relative;
}

@media (max-width: 640px) {
    .cta-block { padding: 3rem 1.5rem; }
    .cta-block h2 { font-size: 1.5rem; }
}

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1;
}
.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.4rem;
    font-weight: 600;
}

/* ============================================================
   COMPARE TABLE
   ============================================================ */
.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.compare-table th,
.compare-table td {
    padding: 0.9rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.88rem;
}
.compare-table thead th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.compare-table tbody tr:hover { background: var(--lighter); }
.compare-table .check { color: var(--success); font-weight: 700; }
.compare-table .cross { color: var(--text-muted); }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin-top: 2rem;
}
.process-step { text-align: center; position: relative; }
.process-step .step-num {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.15rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 12px rgba(27,58,107,0.3);
}
.process-step h4 {
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--dark);
    font-size: 0.95rem;
}
.process-step p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

@media (max-width: 768px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .process-steps { grid-template-columns: 1fr; } }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    opacity: 0.5;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.trust-bar span {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 5rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 1.25rem;
    opacity: 0.85;
}
.footer-col p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
}
.footer-col h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.footer-col a {
    display: block;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    padding: 0.3rem 0;
    transition: var(--transition);
}
.footer-col a:hover { color: var(--accent); text-decoration: none; padding-left: 0.25rem; }
.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}
.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ============================================================
   ALERTS
   ============================================================ */
.alert { padding: 0.9rem 0; font-size: 0.9rem; }
.alert-success { background: #ECFDF5; color: #065F46; border-bottom: 1px solid #A7F3D0; }
.alert-danger { background: #FEF2F2; color: #991B1B; border-bottom: 1px solid #FECACA; }
.alert-warning { background: #FFFBEB; color: #92400E; border-bottom: 1px solid #FDE68A; }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    color: var(--text);
}
.form-control {
    width: 100%;
    padding: 0.7rem 0;
    border: none;
    border-bottom: 1.5px solid var(--border);
    border-radius: 0;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--text);
    background: transparent;
    transition: border-color 0.2s ease;
    outline: none;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}
.form-control::placeholder { color: var(--text-muted); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }

/* ============================================================
   CARDS (generic)
   ============================================================ */
.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--accent); }
.card h3 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.card-price {
    margin-top: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}
.card-price .price-type {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 0.25rem;
}
.card-price .price-free {
    font-size: 1.2rem;
    color: var(--success);
    font-weight: 700;
}

/* ============================================================
   BADGES
   ============================================================ */
.badge { display: inline-flex; align-items: center; padding: 0.2rem 0.6rem; border-radius: 8px; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em; }
.badge-success { background: #ECFDF5; color: #065F46; }
.badge-danger { background: #FEF2F2; color: #991B1B; }
.badge-warning { background: #FFFBEB; color: #92400E; }
.badge-info { background: #EFF6FF; color: #1E40AF; }

/* ============================================================
   FEATURE LINK
   ============================================================ */
.feature-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-top: 1rem;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}
.feature-link:hover { color: var(--accent-hover); gap: 0.4rem; text-decoration: none; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-slow);
    display: flex;
    flex-direction: column;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--accent);
}
.testimonial-stars {
    color: var(--warning);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.testimonial-text {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    font-style: italic;
    flex: 1;
    margin-bottom: 1.5rem;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.82rem;
    flex-shrink: 0;
}
.testimonial-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--dark);
}
.testimonial-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
    border-top: 1px solid var(--border);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.15rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    gap: 1rem;
    transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-toggle {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: var(--transition);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-item.open .faq-toggle {
    transform: rotate(45deg);
    color: var(--accent);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(.4,0,.2,1), padding 0.35s cubic-bezier(.4,0,.2,1);
    padding: 0 0;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 0 1.25rem;
}
.faq-answer p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}
.faq-answer a { font-weight: 600; color: var(--accent); }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.partner-item {
    padding: 1.15rem 2.25rem;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--text-muted);
    background: var(--white);
    letter-spacing: 0.02em;
    transition: var(--transition);
}
.partner-item:hover {
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.12);
    transition: var(--transition);
}
.newsletter-form:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
.newsletter-form input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border: none;
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button {
    padding: 0.85rem 2rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    font-weight: 700;
    font-size: 0.88rem;
    font-family: inherit;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.newsletter-form button:hover { background: #2563EB; }

/* ============================================================
   ADVICE BLOCK
   ============================================================ */
.advice-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.advice-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.advice-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.92rem;
}
.advice-content .why-points { margin-bottom: 1.5rem; }

.advice-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.advice-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.advice-feature-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}
.advice-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.advice-feature-card h4 {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--dark);
    margin-bottom: 0.2rem;
}
.advice-feature-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .advice-block { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── SPA-laag (Turbo + view transitions) ─────────────────────────────── */
.turbo-progress-bar {
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #60a5fa);
}
@keyframes gmPageEnter {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.gm-page-enter { animation: gmPageEnter 0.28s cubic-bezier(0.22, 1, 0.36, 1); }
@media (prefers-reduced-motion: reduce) { .gm-page-enter { animation: none; } }
::view-transition-old(root), ::view-transition-new(root) { animation-duration: 0.25s; }

.gm-loading { position: relative; opacity: 0.55; transition: opacity 0.15s ease; pointer-events: none; }
@keyframes gmShimmer2 { to { background-position: 200% 0; } }

/* ============================================================
   MOBIELE OPTIMALISATIE (app-weergave)
   Doel: alles goed leesbaar, ruime tikdoelen, nette stapeling.
   ============================================================ */
@media (max-width: 768px) {
    html { -webkit-text-size-adjust: 100%; }

    /* Compactere maar leesbare secties */
    .section { padding: 3.25rem 0; }
    .features, .services-preview, .cta { padding: 3rem 0; }
    .content-section { padding: 2.25rem 0; }
    .page-header { padding: 2.25rem 0; }
    .page-header h1 { font-size: 1.7rem; }

    .section-title { font-size: 1.7rem; }
    .section-subtitle { font-size: 0.95rem; margin-bottom: 2.25rem; }

    /* Ruime tikdoelen voor knoppen */
    .btn {
        min-height: 46px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .btn-sm { min-height: 40px; }

    /* Volledige breedte voor formulieren en velden */
    .form-input, .form-select, textarea, select, input[type="text"],
    input[type="email"], input[type="password"], input[type="tel"],
    input[type="number"], input[type="search"] {
        width: 100%;
        font-size: 16px; /* voorkomt inzoomen op iOS */
    }

    /* Kaarten iets compacter */
    .feature-card, .pricing-card { padding: 1.75rem 1.5rem; }
}

@media (max-width: 480px) {
    .container, .container-sm, .container-lg { padding: 0 1rem; }
    .section { padding: 2.75rem 0; }
    .section-title { font-size: 1.5rem; }
    /* Knoppen die naast elkaar in een rij stonden, stapelen netjes */
    .btn-row, .hero-buttons { flex-direction: column; }
    .btn-row .btn, .hero-buttons .btn { width: 100%; }
}

/* Tabellen scrollbaar maken op smalle schermen zodat niets afkapt */
@media (max-width: 768px) {
    .table-responsive, .table-wrap, .table-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table-responsive > table, .table-wrap > table { min-width: 560px; }
    .compare-table { display: block; overflow-x: auto; white-space: nowrap; }
}

/* Vaste domeincheck-balk onder het menu (alle pagina's) */
.site-domain-hero {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff;
    padding: 1.5rem 0;
}
.site-domain-hero .sdh-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
}
.site-domain-hero .sdh-text h2 {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    color: #fff;
}
.site-domain-hero .sdh-text p {
    margin: 0.2rem 0 0;
    font-size: 0.92rem;
    opacity: 0.9;
}
.site-domain-hero .sdh-form {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    flex: 1 1 360px;
    max-width: 520px;
}
.site-domain-hero .sdh-icon {
    color: var(--text-light, #6b7280);
    padding: 0 0.25rem 0 1rem;
    font-size: 0.95rem;
}
.site-domain-hero .sdh-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.85rem 0.9rem;
    font-size: 1rem;
    color: var(--text, #1f2937);
    min-width: 0;
}
.site-domain-hero .sdh-form button {
    background: var(--accent, #f97316);
    color: #fff;
    border: none;
    padding: 0 1.6rem;
    align-self: stretch;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.site-domain-hero .sdh-form button:hover { filter: brightness(0.95); }
@media (max-width: 768px) {
    .site-domain-hero .sdh-inner { flex-direction: column; align-items: stretch; text-align: center; }
    .site-domain-hero .sdh-form { max-width: none; }
}

/* Telefoonveld met landkeuze (vlag + netnummer) */
.phone-field { display: flex; gap: 0.4rem; align-items: stretch; }
.phone-field-dial {
    flex: 0 0 auto;
    padding: 0.55rem 0.5rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #f9fafb;
    font-size: 0.9rem;
    line-height: 1.2;
}
.phone-field-local { flex: 1; min-width: 0; }
