/* =========================================================
   EVOIP — huisstijl volgens Merkboek 2026
   Verhouding: 70% wit · 12% marineblauw · 8% middenblauw
               5% geel · 3% mint · 2% lichtblauw
   ========================================================= */

:root {
    /* Primair palet */
    --navy: #1A3556;
    --mid: #2E9CCA;

    /* Secundair palet */
    --geel: #FFC72C;
    --mint: #B8D8C9;
    --sky: #E5F1F8;
    --wit: #FFFFFF;

    /* Afgeleide tinten (alleen tinten van het palet, geen nieuwe kleuren) */
    --navy-90: #2A4468;
    --navy-08: rgba(26, 53, 86, 0.08);
    --navy-14: rgba(26, 53, 86, 0.14);
    --ink: var(--navy);
    --ink-60: rgba(26, 53, 86, 0.66);
    --ink-45: rgba(26, 53, 86, 0.5);
    --lijn: rgba(26, 53, 86, 0.1);

    --radius: 10px;
    --radius-lg: 18px;
    --radius-xl: 24px;

    --shadow-sm: 0 4px 20px rgba(26, 53, 86, 0.06);
    --shadow-md: 0 12px 40px rgba(26, 53, 86, 0.1);
    --shadow-lg: 0 24px 60px rgba(26, 53, 86, 0.14);

    --section-padding: 6.5rem;
    --wrap: 1200px;
}

@media (max-width: 768px) {
    :root { --section-padding: 4rem; }
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.55;
    color: var(--ink-60);
    background: var(--wit);
    -webkit-font-smoothing: antialiased;
}
img, svg, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { color: var(--ink); margin: 0; letter-spacing: -0.02em; }
h1 { font-weight: 800; letter-spacing: -0.035em; line-height: 1.02; }
h2 { font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; }
h3 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; }
p { margin: 0 0 1.1rem; }
p:last-child { margin-bottom: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }
.wrap--narrow { max-width: 820px; }
.section { padding: var(--section-padding) 0; }
.section--sky { background: var(--sky); }
.section--tint { background: linear-gradient(180deg, var(--wit) 0%, var(--sky) 100%); }
.section--navy { background: var(--navy); color: rgba(255, 255, 255, 0.78); }
.section--navy h2, .section--navy h3 { color: var(--wit); }

.grid { display: grid; gap: 1.5rem; }
@media (min-width: 720px) {
    .grid--2 { grid-template-columns: repeat(2, 1fr); }
    .grid--3 { grid-template-columns: repeat(3, 1fr); }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
    .grid--4 { grid-template-columns: repeat(4, 1fr); }
    .grid--split { grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .grid--aside { grid-template-columns: 1.35fr 1fr; gap: 3.5rem; align-items: start; }
}

/* ---------- Typografie-rollen (merkboek: vijf rollen) ---------- */
.caption {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
    margin: 0 0 0.9rem;
}
.headline { font-size: clamp(2.6rem, 6vw, 4.5rem); }
.subkop { font-size: clamp(1.9rem, 3.6vw, 2.6rem); }
.sectie-titel { font-size: 1.15rem; }
.lead { font-size: 1.2rem; font-weight: 300; line-height: 1.6; color: var(--ink-60); }
.statement { font-weight: 700; color: var(--ink); }
.accent { color: var(--mid); }
.tekst-max { max-width: 62ch; }

.sectie-kop { max-width: 720px; margin-bottom: 3.5rem; }
.sectie-kop--midden { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Eyebrow ---------- */
/* Typografisch label, geen gekleurd blokje: uppercase, gespatieerd, met streepje. */
.eyebrow {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 1.1rem;
}
.eyebrow::before {
    content: '';
    width: 1.75rem;
    height: 2px;
    background: currentColor;
    flex-shrink: 0;
}
.sectie-kop--midden .eyebrow { justify-content: center; }
.eyebrow--op-navy { color: var(--geel); }

/* ---------- Knoppen ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.95rem 1.6rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn svg { width: 1.05em; height: 1.05em; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }

/* Eén gele knop per scherm — de hoofdactie */
.btn--geel { background: var(--geel); color: var(--navy); font-weight: 700; box-shadow: 0 6px 20px rgba(255, 199, 44, 0.35); }
.btn--geel:hover { box-shadow: 0 12px 28px rgba(255, 199, 44, 0.42); }

.btn--navy { background: var(--navy); color: var(--wit); }
.btn--navy:hover { background: var(--navy-90); box-shadow: var(--shadow-md); }

.btn--lijn { background: var(--wit); color: var(--navy); border-color: var(--navy-14); }
.btn--lijn:hover { border-color: var(--mid); color: var(--mid); box-shadow: var(--shadow-sm); }

.btn--op-navy { background: rgba(255, 255, 255, 0.1); color: var(--wit); border-color: rgba(255, 255, 255, 0.22); }
.btn--op-navy:hover { background: rgba(255, 255, 255, 0.18); }

.btn-rij { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.link-pijl {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--mid);
    font-weight: 500;
    font-size: 0.95rem;
}
.link-pijl svg { width: 1em; height: 1em; transition: transform 0.18s ease; }
.link-pijl:hover svg { transform: translateX(3px); }

/* ---------- Navigatie ---------- */
.nav-outer { position: fixed; top: 0; left: 0; right: 0; z-index: 60; padding: 1.1rem 0; transition: padding 0.25s ease; }
.nav-outer.is-scrolled { padding: 0.5rem 0; }
.nav-boxed {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.7rem 1.25rem;
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px rgba(26, 53, 86, 0.09);
}
.nav-outer.is-scrolled .nav-boxed { background: rgba(255, 255, 255, 0.94); }
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: none; align-items: center; gap: 0.35rem; }
.nav-links a {
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius);
    color: var(--navy);
    font-size: 0.92rem;
    font-weight: 500;
    transition: background 0.15s ease, color 0.15s ease;
}
.nav-links a:hover { background: var(--sky); color: var(--mid); }
.nav-links a.is-actief { color: var(--mid); background: var(--sky); }
.nav-acties { display: none; align-items: center; gap: 0.6rem; }
.nav-acties .btn { padding: 0.6rem 1.15rem; font-size: 0.88rem; }
.nav-tekstlink { font-size: 0.9rem; font-weight: 500; color: var(--ink-60); padding: 0.5rem 0.4rem; }
.nav-tekstlink:hover { color: var(--mid); }

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    background: var(--sky);
    border: none;
    border-radius: var(--radius);
    color: var(--navy);
    cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

.nav-mobiel {
    display: none;
    margin-top: 0.6rem;
    padding: 1rem;
    background: var(--wit);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}
.nav-mobiel.is-open { display: block; }
.nav-mobiel a {
    display: block;
    padding: 0.8rem 0.9rem;
    border-radius: var(--radius);
    color: var(--navy);
    font-weight: 500;
}
.nav-mobiel a:hover { background: var(--sky); }
.nav-mobiel .btn { width: 100%; margin-top: 0.6rem; }

@media (min-width: 1024px) {
    .nav-links, .nav-acties { display: flex; }
    .nav-toggle, .nav-mobiel { display: none; }
}

/* ---------- Hero ---------- */
/* Merkboek: lichtblauw → wit verloop. Eén hero, één knop, lucht. */
.hero {
    position: relative;
    padding: 11rem 0 5.5rem;
    background: linear-gradient(170deg, var(--sky) 0%, rgba(229, 241, 248, 0.45) 45%, var(--wit) 100%);
    overflow: hidden;
}
.hero::after {
    content: '';
    position: absolute;
    top: -18%;
    right: -12%;
    width: 42rem;
    height: 42rem;
    background: radial-gradient(circle, rgba(46, 156, 202, 0.1) 0%, rgba(46, 156, 202, 0) 68%);
    border-radius: 50%;
    pointer-events: none;
}
.hero > .wrap { position: relative; z-index: 1; }
.hero-inner { max-width: 800px; }
.hero h1 { margin-bottom: 1.6rem; }
.hero .lead { max-width: 56ch; margin-bottom: 2.2rem; font-size: 1.25rem; }
.hero--klein { padding: 10rem 0 4rem; }
.hero--klein h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); }

/* Videohero: bewegend beeld met navy verloop eroverheen, wit op navy. */
.hero--video {
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 9rem 0 6rem;
    background: var(--navy);
}
.hero--video::after { display: none; }
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* Ontkleuren: de beelden bevatten rode accenten die buiten ons palet vallen.
       Onder het navy verloop leest het beeld daardoor als één blauwe tint. */
    filter: grayscale(1) contrast(1.06) brightness(0.92);
}
.hero-waas {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(100deg, rgba(26, 53, 86, 0.94) 0%, rgba(26, 53, 86, 0.78) 45%, rgba(26, 53, 86, 0.42) 100%),
        linear-gradient(to top, rgba(26, 53, 86, 0.75) 0%, rgba(26, 53, 86, 0) 45%);
}
.hero--video > .wrap { z-index: 2; }
.hero--video h1, .hero--video .subkop { color: var(--wit); }
.hero--video .lead { color: rgba(255, 255, 255, 0.82); }
.hero--video .eyebrow { color: var(--mid); }

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    display: flex;
    justify-content: center;
    padding-top: 7px;
}
.hero-scroll span {
    width: 4px;
    height: 9px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    animation: stuiter 1.6s ease-in-out infinite;
}
@keyframes stuiter { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(7px); opacity: 0.4; } }
@media (prefers-reduced-motion: reduce) { .hero-scroll span { animation: none; } }

/* Beeld in een sectie */
.beeld {
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}
.beeld img { width: 100%; height: 100%; object-fit: cover; }
.beeld--staand { aspect-ratio: 4 / 5; }
.beeld--liggend { aspect-ratio: 16 / 10; }

/* Volle beeldband met tekst erop */
.beeldband {
    position: relative;
    min-height: 26rem;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--navy);
}
.beeldband img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.beeldband::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 53, 86, 0.92) 0%, rgba(26, 53, 86, 0.45) 55%, rgba(26, 53, 86, 0.15) 100%);
}
.beeldband .wrap { position: relative; z-index: 1; padding-top: 4rem; padding-bottom: 3rem; }
.beeldband h2 { color: var(--wit); max-width: 22ch; }
.beeldband p { color: rgba(255, 255, 255, 0.82); max-width: 56ch; margin-top: 1rem; }

/* Mensen-sectie */
.mensen { display: grid; gap: 1.25rem; }
@media (min-width: 860px) { .mensen { grid-template-columns: 1.4fr 1fr 1fr; } }
.mensen .beeld:first-child { grid-row: span 2; }
@media (max-width: 859px) { .mensen .beeld:first-child { grid-row: auto; } }

/* Drie kolommen direct onder de hero, zoals in het merkboek */
.hero-voet { border-top: 1px solid var(--lijn); background: var(--wit); }
.hero-voet .wrap { padding-top: 3rem; padding-bottom: 3rem; }
.hero-voet .nummer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: var(--sky);
    color: var(--mid);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 0.9rem;
}
.hero-voet h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.hero-voet p { font-size: 0.92rem; }

/* ---------- Kaarten ---------- */
.kaart {
    padding: 2rem;
    background: var(--wit);
    border: 1px solid var(--lijn);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.kaart:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.kaart h3 { font-size: 1.2rem; margin-bottom: 0.7rem; }
.kaart p { font-size: 0.95rem; }
.kaart--vlak:hover { transform: none; box-shadow: var(--shadow-sm); }
.kaart--sky { background: var(--sky); border-color: transparent; box-shadow: none; }
.kaart--mint { background: var(--mint); border-color: transparent; box-shadow: none; }
.kaart--navy { background: var(--navy); border-color: transparent; color: rgba(255, 255, 255, 0.78); }
.kaart--navy h3 { color: var(--wit); }

.icoon-vlak {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.25rem;
    height: 3.25rem;
    margin-bottom: 1.4rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--mid) 100%);
    border-radius: 14px;
    color: var(--wit);
}
.icoon-vlak svg { width: 1.5rem; height: 1.5rem; }
.icoon-vlak--sky { background: var(--sky); color: var(--mid); }

/* Blok met accentlijn links (merkboek tone-of-voice-pagina) */
.streep-blok { padding-left: 1.5rem; border-left: 3px solid var(--mid); }
.streep-blok + .streep-blok { margin-top: 2rem; }
.streep-blok h3 { font-size: 1.05rem; margin-bottom: 0.35rem; }
.streep-blok p { font-size: 0.95rem; }

/* ---------- Stappen ---------- */
.stappen { counter-reset: stap; display: grid; gap: 1.25rem; }
@media (min-width: 900px) { .stappen { grid-template-columns: repeat(4, 1fr); } }
.stap { position: relative; padding: 2rem 1.6rem 1.7rem; background: var(--wit); border: 1px solid var(--lijn); border-radius: var(--radius-xl); }
.stap::before {
    counter-increment: stap;
    content: '0' counter(stap);
    position: absolute;
    top: 1.5rem;
    right: 1.6rem;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--sky);
    letter-spacing: -0.03em;
}
.stap h3 { font-size: 1.05rem; margin-bottom: 0.5rem; padding-right: 2.5rem; }
.stap p { font-size: 0.93rem; }

/* ---------- Pills ---------- */
.pill-rij { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    background: var(--wit);
    border: 1px solid var(--lijn);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
    transition: border-color 0.15s ease, color 0.15s ease;
}
a.pill:hover { border-color: var(--mid); color: var(--mid); }
.pill--sky { background: var(--sky); border-color: transparent; }

/* ---------- Lijstjes met vinkje ---------- */
.check-lijst li {
    position: relative;
    padding-left: 1.9rem;
    margin-bottom: 0.9rem;
    font-size: 0.98rem;
}
.check-lijst li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.35rem;
    width: 1.15rem;
    height: 1.15rem;
    background: var(--mid);
    border-radius: 50%;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.7-9.3a1 1 0 00-1.4-1.4L9 10.6 7.7 9.3a1 1 0 00-1.4 1.4l2 2a1 1 0 001.4 0l4-4z'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.7-9.3a1 1 0 00-1.4-1.4L9 10.6 7.7 9.3a1 1 0 00-1.4 1.4l2 2a1 1 0 001.4 0l4-4z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.check-lijst--op-navy li::before { background: var(--geel); }

/* ---------- Logo-slider ---------- */
.logo-slider { position: relative; overflow: hidden; padding: 3rem 0; background: var(--wit); }
.logo-slider::before,
.logo-slider::after { content: ''; position: absolute; top: 0; width: 140px; height: 100%; z-index: 2; pointer-events: none; }
.logo-slider::before { left: 0; background: linear-gradient(to right, var(--wit), transparent); }
.logo-slider::after { right: 0; background: linear-gradient(to left, var(--wit), transparent); }
.logo-track { display: flex; width: max-content; animation: schuif 38s linear infinite; }
.logo-track:hover { animation-play-state: paused; }
.logo-item {
    flex-shrink: 0;
    padding: 0 2.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--ink-45);
    white-space: nowrap;
}
@keyframes schuif { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .logo-track { animation: none; } }

/* ---------- Quote ---------- */
.quote {
    padding: 2.5rem;
    background: var(--sky);
    border-radius: var(--radius-xl);
}
.quote p { font-size: 1.45rem; font-weight: 300; line-height: 1.4; color: var(--navy); }
.quote cite { display: block; margin-top: 1.2rem; font-size: 0.85rem; font-style: normal; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--lijn); }
.faq details { border-bottom: 1px solid var(--lijn); }
.faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.4rem 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: '';
    flex-shrink: 0;
    width: 1.6rem;
    height: 1.6rem;
    background: var(--sky);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' stroke='%232E9CCA' stroke-width='2.5' stroke-linecap='round' viewBox='0 0 24 24'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
    background-size: 0.85rem;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding-bottom: 1.4rem; max-width: 70ch; font-size: 0.98rem; }

/* ---------- CTA-band ---------- */
.cta-band { position: relative; overflow: hidden; background: var(--navy); color: rgba(255, 255, 255, 0.78); }
.cta-band::before,
.cta-band::after { content: ''; position: absolute; border-radius: 50%; pointer-events: none; }
.cta-band::before { top: -50%; right: -8%; width: 30rem; height: 30rem; background: rgba(255, 255, 255, 0.04); }
.cta-band::after { bottom: -55%; left: -6%; width: 22rem; height: 22rem; background: rgba(46, 156, 202, 0.16); }
.cta-band .wrap { position: relative; z-index: 1; padding-top: var(--section-padding); padding-bottom: var(--section-padding); }
.cta-band h2 { color: var(--wit); margin-bottom: 1.1rem; }
.cta-band .lead { color: rgba(255, 255, 255, 0.75); }
.cta-kaart { padding: 2rem; background: var(--wit); border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); }
.cta-kaart h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.cta-kaart p { font-size: 0.92rem; margin-bottom: 1.5rem; }
.cta-kaart .btn { width: 100%; }

/* ---------- Formulier ---------- */
.formulier { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .formulier .veld--half { grid-column: span 1; } .formulier { grid-template-columns: 1fr 1fr; } .formulier .veld--vol { grid-column: 1 / -1; } }
.veld label { display: block; margin-bottom: 0.4rem; font-size: 0.85rem; font-weight: 500; color: var(--navy); }
.veld input, .veld textarea, .veld select {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--navy);
    background: var(--wit);
    border: 1px solid var(--navy-14);
    border-radius: var(--radius);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.veld input:focus, .veld textarea:focus, .veld select:focus {
    outline: none;
    border-color: var(--mid);
    box-shadow: 0 0 0 3px rgba(46, 156, 202, 0.16);
}
.veld textarea { min-height: 130px; resize: vertical; }
.veld-hint { font-size: 0.8rem; color: var(--ink-45); margin-top: 0.35rem; }

.melding { padding: 1rem 1.2rem; border-radius: var(--radius); font-size: 0.95rem; margin-bottom: 1.5rem; }
.melding--ok { background: var(--mint); color: var(--navy); }
.melding--fout { background: var(--sky); color: var(--navy); border-left: 3px solid var(--mid); }

/* ---------- Contactblok ---------- */
.contact-regel { display: flex; align-items: flex-start; gap: 1rem; padding: 1.1rem 0; border-bottom: 1px solid var(--lijn); }
.contact-regel:last-child { border-bottom: none; }
.contact-regel .icoon-vlak { width: 2.5rem; height: 2.5rem; margin: 0; border-radius: 10px; flex-shrink: 0; }
.contact-regel .icoon-vlak svg { width: 1.15rem; height: 1.15rem; }
.contact-regel strong { display: block; color: var(--navy); font-size: 0.92rem; font-weight: 500; }
.contact-regel span, .contact-regel a { font-size: 1rem; color: var(--ink-60); }
.contact-regel a:hover { color: var(--mid); }

/* ---------- Hardware-gallerij ---------- */
.product-kaart { overflow: hidden; padding: 0; text-align: left; }
.product-beeld {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4 / 3;
    background: var(--sky);
    color: var(--mid);
}
.product-beeld svg { width: 42%; height: auto; }
.product-body { padding: 1.5rem; }
.product-body h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.product-body p { font-size: 0.9rem; margin-bottom: 1rem; }

/* ---------- Footer ---------- */
.footer { background: var(--navy); color: rgba(255, 255, 255, 0.6); padding: 4.5rem 0 2rem; font-size: 0.92rem; }
.footer h4 { color: var(--wit); font-size: 0.78rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer a { color: rgba(255, 255, 255, 0.6); }
.footer a:hover { color: var(--wit); }
.footer li { margin-bottom: 0.6rem; }
/* Aparte logoversie met wit woordmerk; het blauwe E-blok blijft staan. */
.footer-logo { height: 58px; width: auto; margin-bottom: 1.4rem; }
.footer-grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 3rem; } }
.footer-onder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
}

/* ---------- Scroll-reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-zichtbaar { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}
