:root {
    --navy-950: #0d2244;
    --navy-900: #122c56;
    --navy-800: #17346a;
    --navy-700: #1f3f7c;
    --navy-600: #2a4f92;
    --navy-500: #3760ab;
    --lime: #a6ff1e;
    --lime-dark: #8be000;
    --lime-soft: rgba(166, 255, 30, 0.14);
    --bg: #f4f6fa;
    --card: #ffffff;
    --text: #101828;
    --text-muted: #5c6579;
    --border: #e4e8f0;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow: 0 2px 10px rgba(10, 23, 48, 0.06);
    --shadow-hover: 0 16px 40px rgba(10, 23, 48, 0.14);
    --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 0.5em; font-weight: 800; letter-spacing: -0.02em; }
p { margin: 0 0 1em; color: var(--text-muted); }
ul { padding-left: 0; list-style: none; margin: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
/* padding-top/-bottom only, deliberately not the shorthand — .section is always combined with
   .container on the same element (class="container section"), and the padding SHORTHAND
   would silently reset .container's own left/right padding to 0 (equal specificity, later
   rule wins the whole property, not just the axis that conflicts). Real bug, caught 2026-08-18:
   every "container section" block sitewide had zero horizontal padding because of this. */
.section { padding-top: 88px; padding-bottom: 88px; }
.section-sm { padding-top: 56px; padding-bottom: 56px; }
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--lime-soft); color: var(--navy-900);
    font-size: 0.78rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 7px 16px; border-radius: 999px; margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--lime-dark); }

.section-head { max-width: 680px; margin: 0 0 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); color: var(--navy-900); }
.section-head p { font-size: 1.05rem; margin: 0; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 28px; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
    border: none; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--lime); color: var(--navy-950); }
.btn-primary:hover { background: var(--lime-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(166,255,30,0.35); }
.btn-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-outline-navy { background: transparent; color: var(--navy-900); border: 1.5px solid var(--border); }
.btn-outline-navy:hover { border-color: var(--navy-700); background: var(--navy-900); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }

/* Header */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(13, 34, 68, 0.92); backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 16px 24px; }
.header-inner .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0; }
.site-logo img { height: 30px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
    color: rgba(255,255,255,0.82); font-size: 0.92rem; font-weight: 600;
    padding: 10px 14px; border-radius: 999px; transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
.main-nav a:hover, .main-nav a.active { background: rgba(255,255,255,0.1); color: #fff; }
.nav-dropdown { position: relative; }
.nav-dropdown-panel {
    position: absolute; top: calc(100% + 10px); left: 0; min-width: 260px;
    background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-hover);
    padding: 10px; opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.nav-dropdown:hover .nav-dropdown-panel,
.nav-dropdown:focus-within .nav-dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown-panel a { display: block; color: var(--text); padding: 10px 14px; border-radius: 10px; font-size: 0.9rem; }
.nav-dropdown-panel a:hover { background: var(--bg); color: var(--navy-900); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; }

@media (max-width: 960px) {
    .main-nav { display: none; }
    .header-actions .btn-outline, .header-actions .btn-primary { display: none; }
    .nav-toggle {
        display: flex; align-items: center; justify-content: center;
        width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,0.08);
        border: none; color: #fff; cursor: pointer; flex-shrink: 0;
    }
    .site-header.nav-open .main-nav {
        display: flex; flex-direction: column; align-items: stretch; gap: 0;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--navy-950); padding: 4px 20px 12px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        max-height: calc(100vh - 68px); overflow-y: auto;
    }
    /* Every top-level row (plain links AND dropdown triggers) gets the same full-width,
       divided-list treatment on mobile instead of the desktop pill style — pills stacked
       vertically read as separate floating buttons rather than one coherent menu. */
    .site-header.nav-open .main-nav > a,
    .site-header.nav-open .nav-dropdown > a {
        display: flex; align-items: center; justify-content: space-between; gap: 10px;
        padding: 15px 4px; border-radius: 0; background: none !important; color: rgba(255,255,255,0.9);
        border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 1rem;
    }
    .site-header.nav-open .main-nav > a:last-child,
    .site-header.nav-open .nav-dropdown:last-child > a { border-bottom: none; }
    /* Chevron on dropdown triggers only — the one visual cue that these rows expand a submenu
       instead of navigating away, which the menu had no affordance for at all before. */
    .nav-dropdown > a::after {
        content: ''; width: 8px; height: 8px; flex-shrink: 0;
        border-right: 2px solid rgba(255,255,255,0.5); border-bottom: 2px solid rgba(255,255,255,0.5);
        transform: rotate(45deg); transition: transform 0.2s ease;
    }
    .site-header.nav-open .nav-dropdown.open > a::after { transform: rotate(-135deg); }
    /* Dropped when open: the panel right below already has its own rounded corners, and a hard
       straight divider line running right into that rounded edge looked like a clash. */
    .site-header.nav-open .nav-dropdown.open > a { border-bottom: none; }
    .site-header.nav-open .nav-dropdown-panel {
        position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
        background: rgba(255,255,255,0.1); display: none; padding: 6px 0 10px; margin: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .site-header.nav-open .nav-dropdown:last-child .nav-dropdown-panel { border-bottom: none; }
    .site-header.nav-open .nav-dropdown.open .nav-dropdown-panel { display: block; }
    /* Indented (no decorative border — read as a confusing stray line instead of a clear
       nesting cue) so submenu items still sit visibly under their parent via spacing alone. */
    .site-header.nav-open .nav-dropdown-panel a {
        display: block; color: rgba(255,255,255,0.68); font-size: 0.92rem;
        padding: 11px 12px 11px 22px; margin: 1px 0; border-radius: 8px;
    }
    .site-header.nav-open .nav-dropdown-panel a:hover { background: rgba(255,255,255,0.08); color: #fff; }
}

/* Hero */
.hero { background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 100%); color: #fff; padding: 100px 0 110px; position: relative; overflow: hidden; }
.hero.has-photo {
    background-image: linear-gradient(100deg, rgba(13,34,68,0.82) 0%, rgba(13,34,68,0.68) 45%, rgba(13,34,68,0.32) 100%), url('../img/pand.jpg');
    background-size: cover; background-position: center;
}
.hero::after {
    content: ''; position: absolute; right: -10%; top: -20%; width: 560px; height: 560px;
    background: radial-gradient(circle, rgba(166,255,30,0.16) 0%, rgba(166,255,30,0) 70%);
}
/* margin:0 explicitly overrides .container's own margin:0 auto (same element carries both
   classes) — without it, this narrower max-width made the whole hero text block center itself
   in the page instead of staying flush with the left edge like every other section. */
/* Nested INSIDE .container in the HTML (not combined on the same element) — sidesteps any
   cascade fights over margin/padding between the two classes entirely. .container alone
   handles the left edge, exactly like every other section on the site; this just caps width. */
.hero-inner { position: relative; max-width: 670px; }
.hero .btn-outline { background: rgba(255,255,255,0.14); }
.hero .eyebrow { background: rgba(166,255,30,0.16); color: var(--lime); }
.hero .eyebrow::before { background: var(--lime); }
.hero h1 { font-size: clamp(2.2rem, 4.4vw, 3.4rem); color: #fff; margin-bottom: 0.4em; }
.hero p.lead { font-size: 1.15rem; color: rgba(255,255,255,0.78); max-width: 560px; margin-bottom: 2em; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 40px; margin-top: 56px; flex-wrap: wrap; position: relative; }
.hero-stat strong { display: block; font-size: 1.8rem; color: var(--lime); font-weight: 800; }
.hero-stat span { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

.page-hero { background: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 100%); color: #fff; padding: 64px 0 72px; }
.page-hero .breadcrumbs { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 14px; }
.page-hero .breadcrumbs a { color: rgba(255,255,255,0.8); }
.page-hero .breadcrumbs a:hover { color: var(--lime); }
.page-hero h1 { color: #fff; font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 0.35em; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 640px; margin: 0; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.service-card {
    background: var(--card); border-radius: var(--radius-lg); padding: 32px 28px;
    box-shadow: var(--shadow); border: 1px solid var(--border);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.service-icon {
    width: 52px; height: 52px; border-radius: 14px; background: var(--navy-900);
    display: flex; align-items: center; justify-content: center; margin-bottom: 20px; flex-shrink: 0;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--lime); }
.service-card h3 { font-size: 1.15rem; color: var(--navy-900); margin-bottom: 10px; }
.service-card p { font-size: 0.94rem; margin-bottom: 14px; flex-grow: 1; }
.service-card ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.service-card ul li { font-size: 0.88rem; color: var(--text-muted); display: flex; gap: 8px; align-items: flex-start; }
.service-card ul li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--lime-dark); margin-top: 7px; flex-shrink: 0; }
.card-link { font-size: 0.88rem; font-weight: 700; color: var(--navy-700); margin-top: auto; }
.card-link::after { content: ' →'; }
.service-card:hover .card-link { color: var(--navy-900); }

/* Content card (bare content blocks) */
.content-card { background: var(--card); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); border: 1px solid var(--border); }

/* Two column layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); }

/* Brand/logo strip */
.brand-strip { display: flex; align-items: center; justify-content: center; gap: 44px; flex-wrap: wrap; padding: 8px 0 0; }
.brand-strip img { height: 30px; width: auto; opacity: 0.55; filter: grayscale(1); transition: opacity 0.15s, filter 0.15s; }
.brand-strip img:hover { opacity: 1; filter: grayscale(0); }

/* Stats strip */
.stats-strip { background: var(--navy-950); color: #fff; padding: 48px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stats-grid strong { display: block; font-size: 2.2rem; color: var(--lime); font-weight: 800; }
.stats-grid span { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

/* Team */
.team-card { text-align: center; }
.team-photo {
    width: 96px; height: 96px; border-radius: 50%; background: var(--navy-900); margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center; color: var(--lime); font-weight: 800; font-size: 1.4rem;
    overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-card h3 { font-size: 1.02rem; margin-bottom: 2px; color: var(--navy-900); }
.team-card .role { font-size: 0.82rem; font-weight: 700; color: var(--lime-dark); background: var(--navy-950); display: inline-block; padding: 4px 12px; border-radius: 999px; margin-bottom: 10px; }
.team-card p { font-size: 0.86rem; }

/* Testimonials */
.testimonial-card { background: var(--card); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); border: 1px solid var(--border); }
a.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.stars { color: var(--lime-dark); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p { color: var(--text); font-size: 0.95rem; }
.testimonial-author { font-weight: 700; font-size: 0.88rem; color: var(--navy-900); margin-top: 12px; }

/* Pricing table */
.pricing-table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.pricing-table th { background: var(--navy-950); color: #fff; text-align: left; padding: 14px 20px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; }
.pricing-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.pricing-table td:not(:first-child) { text-align: right; color: var(--navy-900); font-weight: 700; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tbody tr:hover { background: var(--bg); }
.pricing-group-title { margin: 40px 0 14px; color: var(--navy-900); font-size: 1.1rem; }
.pricing-group-title:first-of-type { margin-top: 0; }
.pricing-note { font-size: 0.82rem; color: var(--text-muted); margin-top: 12px; }

.price-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card { background: var(--card); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow); border: 1px solid var(--border); text-align: center; }
.price-card .amount { font-size: 2rem; font-weight: 800; color: var(--navy-900); margin: 12px 0 4px; }
.price-card .amount span { font-size: 0.95rem; font-weight: 600; color: var(--text-muted); }
.price-card .tag { font-size: 0.8rem; color: var(--text-muted); }

/* Timeline (Over ons) */
.timeline { position: relative; padding-left: 28px; border-left: 2px solid var(--border); display: flex; flex-direction: column; gap: 22px; }
.timeline-item { position: relative; }
.timeline-item::before { content: ''; position: absolute; left: -34px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--lime); border: 3px solid var(--navy-950); }
.timeline-item .year { font-weight: 800; color: var(--navy-900); font-size: 0.92rem; }
.timeline-item .desc { font-size: 0.9rem; color: var(--text-muted); }

/* Downloads */
.download-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.download-item {
    display: flex; align-items: center; gap: 12px; background: var(--card); border: 1px solid var(--border);
    border-radius: 10px; padding: 12px 16px; font-size: 0.9rem; font-weight: 600; color: var(--navy-900);
}
.download-item svg { width: 18px; height: 18px; stroke: var(--navy-700); flex-shrink: 0; }
.download-item:hover { border-color: var(--navy-700); box-shadow: var(--shadow); }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--navy-950), var(--navy-800)); border-radius: var(--radius-lg); padding: 56px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; color: #fff; }
.cta-band h2 { color: #fff; font-size: 1.7rem; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.72); margin: 0; max-width: 440px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
.contact-block { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--lime-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-icon svg { width: 20px; height: 20px; stroke: var(--navy-900); }
.contact-block h4 { font-size: 0.95rem; color: var(--navy-900); margin-bottom: 4px; }
.contact-block p { font-size: 0.9rem; margin: 0; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 8px 0; font-size: 0.9rem; border-bottom: 1px solid var(--border); }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--navy-900); }
.hours-table tr:last-child td { border-bottom: none; }

/* Live prijslijst-widget (dienstenv3, proxied from facturatie.vdbdiensten.nl) — the widget
   ships bare BEM-style classes with no CSS of its own (styled by the old WordPress theme
   before), so all of this is written fresh to match this site's own design system. */
.dienstenv3__table-wrap { overflow-x: auto; margin-bottom: 8px; }
.dienstenv3__table { width: 100%; border-collapse: collapse; background: var(--card); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.dienstenv3__category-row td { background: var(--navy-950); padding: 0; }
.dienstenv3__category-title { color: #fff; font-size: 1rem; margin: 0; padding: 14px 20px; }
.dienstenv3__head-row th { text-align: left; padding: 12px 20px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.dienstenv3__service-row .dienstenv3__cell { padding: 12px 20px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.dienstenv3__table tr:last-child .dienstenv3__cell { border-bottom: none; }
.dienstenv3__cell--image { width: 48px; padding-right: 0 !important; }
.dienstenv3__image { width: 32px; height: 32px; object-fit: contain; border-radius: 6px; }
.dienstenv3__offerte-trigger { display: inline-flex; align-items: center; padding: 7px 16px; border-radius: 999px; font-weight: 700; font-size: 0.8rem; border: 1.5px solid var(--border); background: transparent; color: var(--navy-900); cursor: pointer; }
.dienstenv3__offerte-trigger:hover { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.dienstenv3__meta { font-size: 0.82rem; color: var(--text-muted); margin: 16px 0 0; }
.dienstenv3__table + .dienstenv3__table-wrap,
.dienstenv3__table-wrap + p.dienstenv3__meta ~ .dienstenv3__table-wrap { margin-top: 32px; }
.dienstenv3__table-wrap ~ .dienstenv3__table-wrap { margin-top: 32px; }

/* Bootstrap-style modal, reimplemented minimally in vanilla CSS/JS (see main.js) since this
   site has no jQuery/Bootstrap — only the .modal/.in classes + data-toggle/data-dismiss
   attributes are reused from the proxied widget markup so its own inline script still works. */
.modal { display: none; position: fixed; inset: 0; z-index: 1000; }
.modal.in { display: block; }
.modal::before { content: ''; position: fixed; inset: 0; background: rgba(13,34,68,0.6); }
.modal-dialog { position: relative; max-width: 480px; margin: 60px auto; padding: 0 16px; }
.modal-content { position: relative; background: var(--card); border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); overflow: hidden; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.modal-title { margin: 0; font-size: 1.1rem; color: var(--navy-900); }
.modal-header .close { background: none; border: none; font-size: 1.4rem; line-height: 1; color: var(--text-muted); cursor: pointer; }
.modal-body { padding: 20px 24px; max-height: 70vh; overflow-y: auto; }
.modal-footer { padding: 16px 24px; border-top: 1px solid var(--border); text-align: right; }
.dienstenv3__field { margin-bottom: 14px; }
.dienstenv3__field label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--navy-900); margin-bottom: 4px; }
.dienstenv3__field input { width: 100%; padding: 10px 14px; border-radius: 8px; border: 1px solid var(--border); font-family: var(--font); font-size: 0.92rem; }
.dienstenv3__field input:read-only { background: var(--bg); }
.dienstenv3__spam-hint { font-size: 0.8rem; color: var(--text-muted); margin: 0 0 6px; }
.btn-success { background: var(--lime); color: var(--navy-950); border: none; padding: 12px 24px; border-radius: 999px; font-weight: 700; cursor: pointer; }
.btn-success:hover { background: var(--lime-dark); }

/* Floating "hulp" (remote support) buttons — TeamViewer / Splashtop quick-download, matching
   the two buttons on the current vdbcomputers.nl site. Hidden on small screens, same as there. */
.help-buttons { position: fixed; top: 200px; left: 0; z-index: 500; display: flex; flex-direction: column; gap: 8px; }
.help-btn {
    display: block; width: 76px; padding: 10px 6px; text-align: center;
    font-size: 0.8rem; font-weight: 800; letter-spacing: 0.02em; color: #fff;
    border-radius: 0 8px 8px 0; box-shadow: var(--shadow-hover);
    transition: transform 0.15s ease, width 0.15s ease;
}
.help-btn:hover { transform: translateX(4px); }
.help-btn--teamviewer { background: linear-gradient(135deg, #1a73c4, #0d4f8f); }
.help-btn--splashtop { background: linear-gradient(135deg, #e0435b, #a8172b); }
@media (max-width: 767px) {
    .help-buttons { display: none; }
}

/* Seasonal "gesloten op zaterdag in juli/augustus" notice — matches the red banner fixed on
   the right on the current vdbcomputers.nl site. Only shown in July/August, via main.js
   (checks the real current date), so it doesn't linger the rest of the year. */
.seasonal-notice {
    display: none; position: fixed; top: 200px; right: 0; z-index: 500;
    background: linear-gradient(135deg, #e0435b, #a8172b); color: #fff; padding: 14px 18px;
    border-radius: 8px 0 0 8px; border: 1px solid rgba(255,255,255,0.35); border-right: none;
    font-size: 0.82rem; line-height: 1.45; box-shadow: 0 10px 30px rgba(160,20,40,0.45); text-align: right;
}
.seasonal-notice.visible { display: block; }
@media (max-width: 767px) {
    .seasonal-notice { display: none !important; }
}

/* WhatsApp chat button — the current site loads a 3rd-party widget script (1msgWidget.js) for
   this; reimplemented here as a native wa.me click-to-chat link instead, same look/position,
   no external script dependency (keeps this page fully self-contained, matches the same reason
   the "hulp" buttons and reviews link were done as plain HTML/CSS rather than embedded widgets). */
.whatsapp-btn {
    position: fixed; right: 20px; bottom: 20px; z-index: 500;
    display: flex; align-items: center; gap: 10px;
    background: #34ba73; color: #fff; padding: 14px 20px; border-radius: 999px;
    font-weight: 700; font-size: 0.9rem; box-shadow: 0 10px 30px rgba(10,23,48,0.25);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(10,23,48,0.3); }
.whatsapp-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
@media (max-width: 767px) {
    .whatsapp-btn span { display: none; }
    .whatsapp-btn { padding: 14px; }
}

/* Footer */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.65); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-grid h4 { color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.footer-grid a { display: block; color: rgba(255,255,255,0.6); font-size: 0.9rem; padding: 5px 0; }
.footer-grid a:hover { color: var(--lime); }
.footer-logo img { height: 26px; margin-bottom: 14px; }
.footer-grid p { font-size: 0.86rem; color: rgba(255,255,255,0.5); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--lime); }

/* Utility */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.badge { display: inline-block; background: var(--lime-soft); color: var(--navy-900); font-size: 0.75rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }

@media (max-width: 900px) {
    .card-grid, .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
    .card-grid.cols-2 { grid-template-columns: 1fr; }
    .two-col { grid-template-columns: 1fr; gap: 32px; }
    .two-col.reverse { direction: ltr; }
    .two-col .img-col { order: -1; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .price-cards { grid-template-columns: 1fr; }
    .download-list { grid-template-columns: 1fr; }
    .cta-band { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
    .card-grid, .card-grid.cols-4, .card-grid.cols-2 { grid-template-columns: 1fr; }
    .hero { padding: 72px 0 80px; }
    .section { padding-top: 64px; padding-bottom: 64px; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 24px; }
}
