/* ==========================================================================
   Rioolservice Garant, design system
   Brand: calm authority, genuinely local, 24/7-capable.
   ========================================================================== */

:root {
    /* Brand palette */
    --navy:           #002B41;
    --navy-2:         #10354B;
    --red:            #CE2939;
    --red-hover:      #B5222F;
    --calm:           #D0E3E9;
    --calm-mid:       #A8C8D4;

    --ink:            #1A1A1A;
    --ink-mid:        #5A6472;
    --ink-soft:       #8A95A2;
    --bg-soft:        #F4F7F9;
    --white:          #FFFFFF;
    --hairline:       rgba(0, 43, 65, 0.10);
    --hairline-strong:rgba(0, 43, 65, 0.18);

    --error:          #C62828;
    --success:        #2E7D32;

    /* Type: Saira reserved for titles/headings only (client preference).
       Inter handles body text for readability. */
    --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    --font-display: 'Saira', 'Inter', 'Segoe UI', system-ui, sans-serif;
    --leading-body: 1.6;
    --leading-tight: 1.05;

    /* Spacing, 8px grid */
    --s-1: 4px;
    --s-2: 8px;
    --s-3: 12px;
    --s-4: 16px;
    --s-5: 24px;
    --s-6: 32px;
    --s-7: 48px;
    --s-8: 64px;
    --s-9: 80px;
    --s-10: 112px;

    /* Radii */
    --r-sm: 6px;
    --r-md: 8px;
    --r-lg: 14px;
    --r-pill: 999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 43, 65, 0.06), 0 2px 6px rgba(0, 43, 65, 0.04);
    --shadow-md: 0 6px 14px rgba(0, 43, 65, 0.08), 0 2px 4px rgba(0, 43, 65, 0.04);
    --shadow-lg: 0 18px 40px rgba(0, 43, 65, 0.12);
    --shadow-red: 0 8px 22px rgba(206, 41, 57, 0.28);

    /* Layout */
    --container: 1200px;
    --container-narrow: 880px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 17px;
    line-height: var(--leading-body);
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--navy); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--red); }
button { font-family: inherit; cursor: pointer; }

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--navy);
    line-height: var(--leading-tight);
    margin: 0 0 var(--s-4);
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-mid); }
p  { margin: 0 0 var(--s-4); }
p.lead { font-size: 1.15rem; color: var(--ink-mid); max-width: 60ch; }

ul.checks { list-style: none; padding: 0; margin: 0 0 var(--s-5); }
ul.checks li {
    position: relative;
    padding: 6px 0 6px 32px;
    color: var(--ink);
}
ul.checks li::before {
    content: "";
    position: absolute;
    left: 0; top: 12px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--navy);
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: 12px 12px;
    background-repeat: no-repeat;
    background-position: center;
}

/* Container */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: var(--container-narrow); }

/* Section padding */
.section { padding: var(--s-9) 0; }
.section.tight { padding: var(--s-7) 0; }
.section.dark { background: var(--navy); color: rgba(255,255,255,0.92); }
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: var(--white); }
.section.dark p { color: rgba(255,255,255,0.78); }
.section.calm { background: var(--calm); }
.section.soft { background: var(--bg-soft); }

@media (max-width: 720px) {
    .section { padding: var(--s-7) 0; }
    .section.tight { padding: var(--s-6) 0; }
    body { font-size: 16px; }
}

/* Eyebrow label */
.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .12em;
    color: var(--ink-mid);
    margin-bottom: var(--s-3);
}
.eyebrow::before {
    content: ""; width: 28px; height: 2px; background: var(--red);
}
.section.dark .eyebrow { color: var(--calm); }

/* ==========================================================================
   Buttons / CTAs
   ========================================================================== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 22px;
    border-radius: var(--r-sm);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
    white-space: nowrap;
}
.btn .ico { width: 18px; height: 18px; flex: 0 0 18px; }
.btn:active { transform: translateY(1px); }

.btn-call {
    background: var(--red);
    color: var(--white);
    box-shadow: var(--shadow-red);
}
.btn-call:hover { background: var(--red-hover); color: var(--white); }

.btn-quote {
    background: var(--navy);
    color: var(--white);
}
.btn-quote:hover { background: var(--navy-2); color: var(--white); }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.section.dark .btn-outline { color: var(--white); border-color: rgba(255,255,255,0.4); }
.section.dark .btn-outline:hover { background: var(--white); color: var(--navy); }

/* General-purpose outline button for dark backgrounds (footer, subhero, spoed). */
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

.btn-lg { padding: 18px 28px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* Spoed pill (small badge) */
.spoed-pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--red); color: var(--white);
    padding: 6px 12px;
    border-radius: var(--r-pill);
    font-size: .78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
}
.spoed-pill::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--white);
    box-shadow: 0 0 0 0 rgba(255,255,255,.7);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
    70%  { box-shadow: 0 0 0 10px rgba(255,255,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* ==========================================================================
   Top bar + header (desktop)
   ========================================================================== */
.topbar {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    font-size: .88rem;
}
.topbar .container {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 38px; padding-top: 6px; padding-bottom: 6px;
    gap: var(--s-4);
}
.topbar a { color: var(--white); }
.topbar a:hover { color: var(--calm); }
.topbar .topbar-left { display: flex; align-items: center; gap: var(--s-5); }
.topbar .topbar-left span { display: inline-flex; align-items: center; gap: 6px; }
.topbar .topbar-right { display: flex; align-items: center; gap: var(--s-5); }
@media (max-width: 880px) { .topbar { display: none; } }

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--hairline);
    position: sticky; top: 0; z-index: 50;
}
.site-header .container {
    display: flex; align-items: center; justify-content: space-between;
    min-height: 92px;
    gap: var(--s-5);
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { height: 60px; width: auto; display: block; }

/* ---- Primary nav ---- */
.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1 1 auto;
    justify-content: center;
}
.main-nav a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    color: var(--navy);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.2;
    border-radius: 8px;
    white-space: nowrap;
    letter-spacing: 0.005em;
    transition: background-color .15s ease, color .15s ease;
}
.main-nav a:hover { background: var(--bg-soft); color: var(--navy); }
.main-nav a:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }
.main-nav a.active { color: var(--navy); }
.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 16px; right: 16px;
    bottom: 2px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

/* Chevron for dropdown trigger */
.main-nav .has-dropdown { position: relative; }
.main-nav .has-dropdown > a .chev {
    width: 12px; height: 12px;
    transition: transform .15s ease;
    color: currentColor;
}
.main-nav .has-dropdown:hover > a .chev,
.main-nav .has-dropdown:focus-within > a .chev {
    transform: rotate(180deg);
}

/* Dropdown panel */
.main-nav .dropdown {
    position: absolute; top: calc(100% + 4px); left: 0;
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-md);
    min-width: 300px;
    padding: 8px;
    opacity: 0; visibility: hidden;
    transform: translateY(6px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s;
    z-index: 60;
}
.main-nav .has-dropdown:hover .dropdown,
.main-nav .has-dropdown:focus-within .dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.main-nav .dropdown a {
    display: block;
    padding: 10px 14px;
    font-size: .95rem;
    color: var(--navy);
    border-radius: 6px;
    font-weight: 500;
}
.main-nav .dropdown a:hover { background: var(--bg-soft); }
.main-nav .dropdown a.active::after { display: none; }

/* ---- Header CTAs (right side) ---- */
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}
.header-cta .btn { padding: 12px 18px; font-size: 0.97rem; }
.header-cta .btn-call { font-weight: 700; }

.menu-btn {
    display: none;
    background: var(--navy); color: var(--white);
    border: none; border-radius: var(--r-sm);
    padding: 10px 12px;
}

@media (max-width: 980px) {
    .main-nav, .header-cta .btn-quote { display: none; }
    .menu-btn { display: inline-flex; }
    .site-header .container { min-height: 70px; }
    .brand img { height: 44px; }
    .header-cta .btn-call { padding: 10px 14px; font-size: .92rem; }
}

/* Mobile drawer */
.mobile-drawer {
    position: fixed; inset: 0;
    background: rgba(0, 43, 65, 0.55);
    backdrop-filter: blur(2px);
    opacity: 0; visibility: hidden;
    transition: opacity .2s ease, visibility .2s;
    z-index: 100;
}
.mobile-drawer .panel {
    position: absolute; top: 0; right: 0; height: 100%;
    width: min(360px, 90%);
    background: var(--white);
    transform: translateX(100%);
    transition: transform .25s ease;
    display: flex; flex-direction: column;
    padding: var(--s-5);
    overflow-y: auto;
}
.mobile-drawer.open { opacity: 1; visibility: visible; }
.mobile-drawer.open .panel { transform: translateX(0); }
.mobile-drawer .panel a {
    display: block; padding: 14px 8px;
    font-weight: 600; color: var(--navy);
    border-bottom: 1px solid var(--hairline);
}
.mobile-drawer .panel a.sub { padding-left: 22px; font-weight: 500; color: var(--ink-mid); font-size: .95rem; }
.mobile-drawer .close-btn {
    align-self: flex-end;
    background: transparent; border: none; font-size: 1.4rem;
    color: var(--navy); padding: 4px 10px;
    margin-bottom: var(--s-3);
}
.mobile-drawer .drawer-cta { margin-top: var(--s-5); display: flex; flex-direction: column; gap: 10px; }

/* ==========================================================================
   Hero, full-bleed photo + dark navy overlay (Manders-inspired)
   ========================================================================== */
.hero {
    position: relative;
    color: var(--white);
    background-color: var(--navy);
    padding: clamp(64px, 11vw, 132px) 0 clamp(72px, 12vw, 144px);
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
/* Hero artwork (SVG illustration) on its own layer */
.hero::before {
    content: "";
    position: absolute; inset: 0;
    background-image: url('../img/loodgieter-vlaanderen.svg');
    background-size: cover;
    background-position: center center;
    z-index: 0;
}
/* Dark gradient overlay + subtle red glow in one layer so the text reads */
.hero::after {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(closest-side at 90% 110%, rgba(206, 41, 57, 0.20), transparent 65%),
        linear-gradient(115deg,
            rgba(0, 26, 40, 0.94) 0%,
            rgba(0, 43, 65, 0.86) 45%,
            rgba(16, 53, 75, 0.55) 80%,
            rgba(16, 53, 75, 0.28) 100%
        );
    z-index: 1;
    pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 720px; }

/* Pill badge with pulsing green dot */
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 8px 16px;
    border-radius: var(--r-pill);
    font-size: 0.84rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.96);
    letter-spacing: 0.02em;
    margin-bottom: var(--s-5);
}
.hero-badge .dot {
    width: 9px; height: 9px; border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: pulse-green 1.8s ease-in-out infinite;
}
@keyframes pulse-green {
    0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55); }
    70%  { box-shadow: 0 0 0 12px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Headline + subhead */
.hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 5.6vw, 4.4rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin-bottom: var(--s-5);
    text-wrap: balance;
}
.hero h1 .accent { color: var(--red); }
.hero p.lead {
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.05rem, 1.6vw, 1.25rem);
    line-height: 1.55;
    max-width: 56ch;
    margin-bottom: var(--s-6);
}

/* CTA group */
.hero-ctas {
    display: flex; flex-wrap: wrap; gap: var(--s-3);
    margin-bottom: var(--s-7);
}
.hero-ctas .btn { padding: 18px 28px; font-size: 1.05rem; }
/* Trust row, small horizontal checks at the bottom of the hero */
.hero-trust {
    display: flex; flex-wrap: wrap; gap: 14px 28px;
    padding: 0; margin: 0;
    list-style: none;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.95rem;
    font-weight: 500;
}
.hero-trust li {
    display: inline-flex; align-items: center; gap: 8px;
    white-space: nowrap;
}
.hero-trust .check {
    width: 18px; height: 18px;
    color: var(--calm);
    flex: 0 0 18px;
}

/* Floating phone card, pinned to bottom-right on desktop */
.hero-card {
    position: absolute;
    right: 32px; bottom: 24px;
    background: var(--white);
    color: var(--ink);
    padding: 18px 22px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 14px;
    z-index: 3;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}
.hero-card:hover { transform: translateY(-2px); box-shadow: 0 22px 50px rgba(0,43,65,0.18); }
.hero-card .seal {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 52px;
}
.hero-card .seal svg { width: 24px; height: 24px; }
.hero-card .label { font-size: 0.74rem; color: var(--ink-mid); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; }
.hero-card .num   { display: block; color: var(--navy); font-weight: 800; font-size: 1.25rem; letter-spacing: -0.01em; line-height: 1.2; }

@media (max-width: 880px) {
    .hero {
        min-height: 480px;
        background-position: 70% center;
    }
    .hero::before {
        background: linear-gradient(180deg,
            rgba(0, 26, 40, 0.92) 0%,
            rgba(0, 43, 65, 0.88) 60%,
            rgba(16, 53, 75, 0.78) 100%
        );
    }
    .hero-card {
        position: static;
        margin-top: var(--s-5);
        right: auto; bottom: auto;
        width: 100%;
        justify-content: center;
    }
    .hero-trust { font-size: 0.9rem; gap: 10px 20px; }
}

/* ==========================================================================
   USP strip (under hero)
   ========================================================================== */
.usp-strip {
    background: var(--navy);
    color: var(--white);
    padding: var(--s-4) 0;
}
.usp-strip .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-4);
}
.usp-strip .item {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.92);
    font-size: .95rem;
}
.usp-strip .item svg { width: 22px; height: 22px; flex: 0 0 22px; color: var(--calm); }
@media (max-width: 880px) {
    .usp-strip .container { grid-template-columns: 1fr 1fr; gap: var(--s-3); }
}

/* ==========================================================================
   Services grid
   ========================================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-5);
}
.service-card {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    padding: 28px 26px;
    display: flex; flex-direction: column;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
    text-decoration: none;
    color: var(--ink);
    position: relative;
}
.service-card:hover {
    transform: translateY(-3px);
    border-color: var(--calm-mid);
    box-shadow: var(--shadow-md);
    color: var(--ink);
}
.service-card .s-ico {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: var(--calm);
    color: var(--navy);
    display: inline-flex; align-items: center; justify-content: center;
    margin-bottom: var(--s-4);
}
.service-card .s-ico svg { width: 28px; height: 28px; }
.service-card h3 { margin: 0 0 10px; color: var(--navy); }
.service-card p  { margin: 0 0 var(--s-4); color: var(--ink-mid); font-size: .95rem; }
.service-card .more {
    margin-top: auto;
    color: var(--navy);
    font-weight: 700;
    font-size: .92rem;
    display: inline-flex; align-items: center; gap: 6px;
}
.service-card .more::after {
    content: "→";
    transition: transform .15s ease;
}
.service-card:hover .more::after { transform: translateX(3px); }
.service-card .corner-pill {
    position: absolute; top: 14px; right: 14px;
    background: var(--red); color: var(--white);
    font-size: .68rem; padding: 3px 8px; border-radius: var(--r-pill);
    font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}

@media (max-width: 980px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .services-grid { grid-template-columns: 1fr; gap: var(--s-4); } }

/* ==========================================================================
   Section heads
   ========================================================================== */
.s-head { max-width: 720px; margin-bottom: var(--s-7); }
.s-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.s-head p { color: var(--ink-mid); font-size: 1.05rem; margin-bottom: 0; }

/* ==========================================================================
   Guarantee section
   ========================================================================== */
.guarantee {
    position: relative;
    overflow: hidden;
}
.guarantee::before {
    content: "";
    position: absolute; inset: 0;
    background:
        radial-gradient(50% 50% at 90% 10%, rgba(255,255,255,0.04), transparent 70%),
        radial-gradient(60% 50% at 10% 90%, rgba(208, 227, 233, 0.05), transparent 70%);
}
.guarantee .container { position: relative; }
.guarantee-grid {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: var(--s-9);
    align-items: center;
}
.seal-big {
    width: 220px; height: 220px;
    border-radius: 50%;
    background: var(--white);
    color: var(--navy);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center;
    box-shadow: 0 0 0 8px rgba(255,255,255,0.08), 0 0 0 16px rgba(255,255,255,0.04);
    position: relative;
    margin: 0 auto;
}
.seal-big svg { width: 54px; height: 54px; color: var(--red); margin-bottom: 4px; }
.seal-big strong { font-size: 1.4rem; font-weight: 800; color: var(--navy); display: block; line-height: 1; }
.seal-big span { font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; color: var(--ink-mid); margin-top: 6px; font-weight: 700; }

.pillar-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: var(--s-5);
    margin-top: var(--s-5);
}
.pillar {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--r-md);
    padding: 20px;
}
.pillar svg { width: 22px; height: 22px; color: var(--calm); margin-bottom: 10px; }
.pillar strong { display: block; color: var(--white); font-size: 1.02rem; margin-bottom: 4px; }
.pillar span { color: rgba(255,255,255,0.72); font-size: .9rem; }

.guarantee-ctas { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-5); }

@media (max-width: 880px) {
    .guarantee-grid { grid-template-columns: 1fr; gap: var(--s-6); }
    .pillar-row { grid-template-columns: 1fr; }
    .seal-big { width: 180px; height: 180px; }
}

/* ==========================================================================
   Process steps
   ========================================================================== */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-5);
    counter-reset: step;
}
.step {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    padding: 24px;
    position: relative;
}
.step::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    position: absolute; top: -16px; left: 24px;
    background: var(--navy);
    color: var(--white);
    width: 36px; height: 36px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: .92rem;
    border: 4px solid var(--bg-soft);
}
.step h3 { font-size: 1.05rem; margin-top: 14px; color: var(--navy); }
.step p { font-size: .95rem; color: var(--ink-mid); margin-bottom: 0; }

@media (max-width: 980px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }

/* ==========================================================================
   Werkgebied / regio
   ========================================================================== */
.werkgebied-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--s-7);
    align-items: center;
}
.gemeente-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-2);
}
.gemeente-list a {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: var(--r-sm);
    padding: 10px 14px;
    color: var(--navy);
    font-weight: 600;
    font-size: .95rem;
    display: inline-flex; align-items: center; justify-content: space-between;
}
.gemeente-list a:hover { border-color: var(--navy); color: var(--navy); }
.gemeente-list a::after { content: "→"; color: var(--ink-soft); }
@media (max-width: 880px) {
    .werkgebied-grid { grid-template-columns: 1fr; gap: var(--s-5); }
    .gemeente-list { grid-template-columns: 1fr 1fr; }
}

/* ==========================================================================
   Werkgebied page — richer gemeente cards
   ========================================================================== */
.gemeente-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-4);
}
.gemeente-card {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    padding: 18px 20px;
    text-decoration: none;
    color: var(--ink);
    overflow: hidden;
    transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.gemeente-card::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 4px;
    background: var(--red);
    transform: scaleY(0.4);
    transform-origin: center;
    transition: transform .2s ease;
}
.gemeente-card:hover {
    transform: translateY(-2px);
    border-color: var(--calm-mid);
    box-shadow: var(--shadow-md);
    color: var(--ink);
}
.gemeente-card:hover::before { transform: scaleY(1); }
.gemeente-card .pin {
    flex: 0 0 38px;
    width: 38px; height: 38px;
    border-radius: 10px;
    background: var(--calm);
    color: var(--navy);
    display: inline-flex; align-items: center; justify-content: center;
}
.gemeente-card .pin svg { width: 20px; height: 20px; }
.gemeente-card .body { flex: 1; min-width: 0; }
.gemeente-card .name {
    display: block;
    color: var(--navy);
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.2;
    margin-bottom: 2px;
}
.gemeente-card .sub {
    display: block;
    color: var(--ink-mid);
    font-size: 0.85rem;
    line-height: 1.35;
}
.gemeente-card .arrow {
    flex: 0 0 22px;
    align-self: center;
    color: var(--ink-soft);
    transition: transform .15s ease, color .15s ease;
}
.gemeente-card:hover .arrow { transform: translateX(3px); color: var(--red); }
@media (max-width: 980px) { .gemeente-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .gemeente-cards { grid-template-columns: 1fr; } }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-5);
}
.review {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    padding: 26px;
    display: flex; flex-direction: column;
}
.review .stars { color: #F5A524; letter-spacing: 2px; margin-bottom: 12px; font-size: 1.05rem; }
.review p { color: var(--ink); font-size: .98rem; line-height: 1.55; }
.review p::before { content: "“"; }
.review p::after  { content: "”"; }
.review .who { margin-top: auto; padding-top: 12px; border-top: 1px solid var(--hairline); display: flex; align-items: center; gap: 12px; }
.review .av { width: 40px; height: 40px; border-radius: 50%; background: var(--calm); color: var(--navy); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; }
.review .who strong { display: block; color: var(--navy); font-size: .95rem; }
.review .who span  { color: var(--ink-mid); font-size: .82rem; }
@media (max-width: 880px) { .testimonials { grid-template-columns: 1fr; } }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    background: var(--white);
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .15s ease;
}
.faq details[open] { border-color: var(--navy); }
.faq summary {
    list-style: none;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 700;
    color: var(--navy);
    display: flex; align-items: center; justify-content: space-between;
    gap: var(--s-3);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: "+";
    font-size: 1.4rem;
    color: var(--ink-mid);
    transition: transform .2s ease;
    line-height: 1;
}
.faq details[open] summary::after { content: "−"; color: var(--red); }
.faq .answer { padding: 0 22px 20px; color: var(--ink-mid); }
.faq .answer p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Contact / Form
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--s-7);
    align-items: stretch;
}
.contact-info {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--r-md);
    padding: var(--s-7);
    display: flex; flex-direction: column;
}
.contact-info h2 { color: var(--white); }
.contact-info p { color: rgba(255,255,255,0.78); }
.contact-block { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-block:last-of-type { border-bottom: none; }
.contact-block .ic {
    width: 40px; height: 40px; border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: var(--calm);
    display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 40px;
}
.contact-block .ic svg { width: 20px; height: 20px; }
.contact-block strong { display: block; color: var(--white); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 4px; }
.contact-block a, .contact-block span { color: rgba(255,255,255,0.92); font-weight: 600; font-size: 1.05rem; }

.form-card {
    background: var(--white);
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    padding: var(--s-7);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-3); }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr; } }
.form-field { margin-bottom: var(--s-3); }
.form-field label {
    display: block;
    font-size: .88rem; font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}
.form-field label .req { color: var(--red); }
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid var(--hairline-strong);
    border-radius: var(--r-sm);
    font-family: inherit;
    font-size: 1rem;
    color: var(--ink);
    background: var(--white);
    transition: border-color .12s ease, box-shadow .12s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(0,43,65,0.10);
}
.form-field textarea { min-height: 110px; resize: vertical; }

.form-checkbox {
    display: flex; align-items: flex-start; gap: 10px;
    background: var(--bg-soft);
    border: 1px solid var(--hairline);
    border-radius: var(--r-sm);
    padding: 12px 14px;
    margin-bottom: var(--s-4);
    cursor: pointer;
}
.form-checkbox input { margin-top: 4px; accent-color: var(--red); }
.form-checkbox span { font-size: .92rem; color: var(--ink); }
.form-note { font-size: .82rem; color: var(--ink-mid); margin-top: 8px; }

/* Honeypot field — hidden from sighted users, kept reachable for the form data
   so bots that scrape the DOM still try to fill it. */
.hp-field {
    position: absolute !important;
    left: -10000px; top: auto;
    width: 1px; height: 1px;
    overflow: hidden;
}

/* Inline form status message under the submit button */
.form-status {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: var(--r-sm);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.45;
}
.form-status--loading { background: var(--bg-soft); color: var(--ink-mid); border: 1px solid var(--hairline); }
.form-status--success { background: #e8f5e9; color: #1b5e20; border: 1px solid #c8e6c9; }
.form-status--error   { background: #fdecea; color: #b71c1c; border: 1px solid #f5c6c6; }

@media (max-width: 880px) {
    .contact-grid { grid-template-columns: 1fr; gap: var(--s-5); }
    .contact-info, .form-card { padding: var(--s-5); }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.72);
    padding: var(--s-9) 0 var(--s-5);
    margin-bottom: 0;
}
.site-footer h4 { color: var(--white); margin-bottom: var(--s-3); font-size: .92rem; letter-spacing: .12em; }
.site-footer a { color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: var(--white); }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: var(--s-7);
    padding-bottom: var(--s-7);
    border-bottom: 1px solid rgba(255,255,255,0.10);
}
.footer-brand img { height: 56px; width: auto; margin-bottom: var(--s-4); filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.66); font-size: .95rem; max-width: 36ch; }
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-meta {
    padding-top: var(--s-4);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    font-size: .82rem;
    color: rgba(255,255,255,0.56);
}
.footer-meta .legal { display: flex; gap: var(--s-4); flex-wrap: wrap; }
@media (max-width: 880px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-5); }
    .footer-brand { grid-column: 1 / -1; }
}

/* ==========================================================================
   Sticky mobile CTA bar
   ========================================================================== */
.sticky-cta {
    display: none;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    padding: 8px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(6px);
    border-top: 1px solid var(--hairline-strong);
    box-shadow: 0 -4px 16px rgba(0, 43, 65, 0.08);
}
.sticky-cta .row { display: flex; gap: 8px; }
.sticky-cta .row .btn { padding: 14px 12px; font-size: .95rem; flex: 1; }
.sticky-cta .row .btn.btn-call { flex: 2; }
@media (max-width: 880px) {
    .sticky-cta { display: block; }
    body { padding-bottom: 86px; }
}

/* ==========================================================================
   Service-page sub-hero (compact)
   ========================================================================== */
.subhero {
    background: var(--navy);
    color: var(--white);
    padding: var(--s-7) 0 var(--s-9);
    position: relative;
    overflow: hidden;
}
.subhero::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(40% 70% at 100% 0%, rgba(208,227,233,0.10), transparent 70%);
}
.subhero .container { position: relative; }
.crumbs { font-size: .82rem; color: rgba(255,255,255,0.55); margin-bottom: var(--s-3); }
.crumbs a { color: rgba(255,255,255,0.78); }
.crumbs a:hover { color: var(--white); }
.crumbs .sep { padding: 0 6px; opacity: .5; }
.subhero h1 { color: var(--white); max-width: 24ch; }
.subhero p.lead { color: rgba(255,255,255,0.82); max-width: 60ch; }
.subhero-ctas { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-top: var(--s-4); }

/* Two-column page block */
.col-2 {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: var(--s-7);
    align-items: start;
}
.col-2.flip > :first-child { order: 2; }
.col-2 .img-frame {
    border-radius: var(--r-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--calm);
    box-shadow: var(--shadow-md);
}
.col-2 .img-frame img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 880px) {
    .col-2 { grid-template-columns: 1fr; gap: var(--s-5); }
    .col-2.flip > :first-child { order: initial; }
}

/* Pricing card */
.pricing {
    background: var(--bg-soft);
    border: 1px solid var(--hairline);
    border-radius: var(--r-md);
    padding: 24px 26px;
    display: flex; align-items: center; gap: 18px;
}
.pricing .ico {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--navy); color: var(--white);
    display: inline-flex; align-items: center; justify-content: center;
    flex: 0 0 48px;
}
.pricing strong { display: block; color: var(--navy); font-size: 1.05rem; }
.pricing span { color: var(--ink-mid); font-size: .92rem; }

/* Big call-to-action band */
.cta-band {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    color: var(--white);
    border-radius: var(--r-md);
    padding: var(--s-7);
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: var(--s-5);
    align-items: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,0.78); margin-bottom: 0; max-width: 50ch; }
.cta-band .actions { display: flex; flex-direction: column; gap: 10px; }
/* The cta-band uses a dark navy gradient — make outline buttons readable. */
.cta-band .btn-outline {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.55);
    background: transparent;
}
.cta-band .btn-outline:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}
@media (max-width: 880px) {
    .cta-band { grid-template-columns: 1fr; padding: var(--s-5); }
}

/* ==========================================================================
   Real-photos band (homepage trust)
   ========================================================================== */
.proof-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--s-5);
}
@media (max-width: 980px) { .proof-band { grid-template-columns: 1fr 1fr; } }
.proof-band .photo {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: var(--calm);
    box-shadow: var(--shadow-md);
}
.proof-band .photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s ease;
}
.proof-band .photo:hover img { transform: scale(1.03); }
.proof-band .photo .label {
    position: absolute; left: 16px; bottom: 16px;
    background: rgba(0, 43, 65, 0.92);
    color: var(--white);
    padding: 8px 14px;
    border-radius: var(--r-pill);
    font-size: .85rem; font-weight: 600;
    backdrop-filter: blur(4px);
    display: inline-flex; align-items: center; gap: 8px;
}
.proof-band .photo .label svg { width: 14px; height: 14px; color: var(--calm); }
@media (max-width: 620px) { .proof-band { grid-template-columns: 1fr; } }

/* Utility */
.mt-5 { margin-top: var(--s-5); } .mt-7 { margin-top: var(--s-7); }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
