/* ============================================================
   SmartMap – 2026
   ============================================================ */

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* --- Tokens --- */
:root {
    --ink:          #111827;
    --ink-soft:     #374151;
    --ink-muted:    #6B7280;
    --ink-light:    #9CA3AF;
    --bg:           #F5F5F3;
    --bg-alt:       #EBEBEA;
    --surface:      #FFFFFF;
    --border:       #E5E7EB;
    --border-light: #F3F4F6;

    --brand:        #0F2D4A;
    --brand-mid:    #1A4A6E;
    --brand-light:  #2563A8;

    --green:        #059669;
    --green-light:  #10B981;
    --green-pale:   #ECFDF5;

    --orange:       #EA580C;
    --orange-pale:  #FFF7ED;

    --red:          #DC2626;
    --red-pale:     #FEF2F2;

    --yellow:       #D97706;
    --yellow-pale:  #FFFBEB;

    --purple:       #7C3AED;
    --purple-pale:  #F5F3FF;

    --blue:         #2563EB;
    --blue-pale:    #EFF6FF;

    --font: 'Inter', system-ui, -apple-system, sans-serif;

    --r-sm:   6px;
    --r-md:   12px;
    --r-lg:   20px;
    --r-xl:   28px;
    --r-pill: 100px;

    --shadow-xs: 0 1px 2px rgba(0,0,0,.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 6px 20px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
    --shadow-lg: 0 16px 48px rgba(0,0,0,.10), 0 4px 12px rgba(0,0,0,.05);
    --shadow-xl: 0 24px 64px rgba(0,0,0,.12), 0 8px 20px rgba(0,0,0,.06);

    --ease:   cubic-bezier(.4,0,.2,1);
    --spring: cubic-bezier(.34,1.56,.64,1);
    --t:      220ms;
}

/* --- Body --- */
body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    padding-top: 72px;
}

/* --- Container --- */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
}

/* --- Sections --- */
.section         { padding: 96px 0; }
.section-alt     { background: var(--bg-alt); }
.section-dark    { background: var(--brand); color: #fff; }

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}
.section-eyebrow::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}
.eyebrow-green  { color: var(--green); }
.eyebrow-yellow { color: var(--yellow); }
.eyebrow-red    { color: var(--red); }
.eyebrow-orange { color: var(--orange); }
.eyebrow-purple { color: var(--purple); }
.eyebrow-white  { color: rgba(255,255,255,.7); }
.eyebrow-white::before { background: rgba(255,255,255,.5); }

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: var(--ink);
}
.section-dark .section-title { color: #fff; }

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--r-pill);
    font-size: 14px;
    font-weight: 600;
    transition: all var(--t) var(--ease);
    white-space: nowrap;
}
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-sm { padding: 7px 14px; font-size: 13px; }

.btn-primary {
    background: var(--brand);
    color: #fff;
}
.btn-primary:hover { background: var(--brand-mid); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-outline {
    background: transparent;
    color: var(--ink-soft);
    box-shadow: inset 0 0 0 1.5px var(--border);
}
.btn-outline:hover { box-shadow: inset 0 0 0 1.5px var(--ink-muted); color: var(--ink); }

.btn-outline-white {
    background: transparent;
    color: #fff;
    box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4);
}
.btn-outline-white:hover { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.8); }

.btn-ghost {
    background: transparent;
    color: var(--ink-soft);
    padding: 10px 16px;
}
.btn-ghost:hover { background: var(--bg-alt); color: var(--ink); }

.btn-white {
    background: #fff;
    color: var(--brand);
    box-shadow: var(--shadow-sm);
}
.btn-white:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-red {
    background: var(--red);
    color: #fff;
}
.btn-red:hover { background: #B91C1C; }

.btn-icon {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    border-radius: var(--r-pill);
    color: var(--ink-soft);
    transition: all var(--t) var(--ease);
}
.btn-icon:hover { background: var(--bg-alt); color: var(--ink); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(245,245,243,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.site-header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-xs);
}

.header-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.03em;
    text-decoration: none;
}
.logo-icon {
    width: 34px; height: 34px;
    background: var(--brand);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    flex-shrink: 0;
}
.logo-smart { color: var(--brand); }
.logo-map   { color: var(--green); }

/* Nav */
.main-nav { flex: 1; }
.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    border-radius: var(--r-pill);
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-soft);
    transition: all var(--t) var(--ease);
}
.nav-link:hover { background: var(--bg-alt); color: var(--ink); }

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.header-cta { display: none; }
@media (min-width: 900px) { .header-cta { display: inline-flex; } }

/* Hamburger */
.btn-hamburger {
    width: 38px; height: 38px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 5px;
    border-radius: var(--r-md);
    transition: background var(--t) var(--ease);
}
.btn-hamburger span {
    display: block;
    width: 20px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all var(--t) var(--ease);
}
.btn-hamburger:hover { background: var(--bg-alt); }
.btn-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.btn-hamburger.active span:nth-child(2) { opacity: 0; }
.btn-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (min-width: 900px) { .btn-hamburger { display: none; } }

/* Mobile nav open */
.nav-open {
    display: block !important;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 12px 20px 20px;
    box-shadow: var(--shadow-lg);
}
.nav-open .nav-list { flex-direction: column; align-items: flex-start; gap: 2px; }
.nav-open .nav-link { padding: 12px 16px; font-size: 16px; }

@media (max-width: 899px) { .main-nav { display: none; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background: var(--brand);
    color: #fff;
    overflow: hidden;
}

.hero-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 72px 32px 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Hero text */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--r-pill);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,.85);
    margin-bottom: 24px;
    width: fit-content;
}
.badge-dot {
    width: 7px; height: 7px;
    background: var(--green-light);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .6; transform: scale(1.3); }
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.04em;
    color: #fff;
    margin-bottom: 20px;
}
.hero-title em {
    font-style: normal;
    color: var(--green-light);
}

.hero-desc {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255,255,255,.7);
    margin-bottom: 28px;
    max-width: 480px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: rgba(255,255,255,.85);
    transition: all var(--t) var(--ease);
}
.feature-pill:hover { background: rgba(255,255,255,.14); }
.pill-green  { border-color: rgba(16,185,129,.3); color: #6EE7B7; }
.pill-yellow { border-color: rgba(217,119,6,.3);  color: #FCD34D; }
.pill-red    { border-color: rgba(220,38,38,.3);   color: #FCA5A5; }
.pill-blue   { border-color: rgba(37,99,235,.3);   color: #93C5FD; }
.pill-purple { border-color: rgba(124,58,237,.3);  color: #C4B5FD; }

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Hero map */
.hero-map-wrap {
    position: relative;
    height: 480px;
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,.4);
}

.map-filters {
    position: absolute;
    top: 16px; left: 16px;
    z-index: 10;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.map-filter {
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: var(--r-pill);
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all var(--t) var(--ease);
}
.map-filter:hover  { background: #fff; color: var(--ink); }
.map-filter.active { background: var(--brand); color: #fff; border-color: var(--brand); }

#heroMap { width: 100%; height: 100%; }

.map-card {
    position: absolute;
    bottom: 20px; left: 16px;
    background: rgba(255,255,255,.97);
    border-radius: var(--r-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(8px);
    z-index: 10;
    min-width: 220px;
}
.map-card-icon {
    width: 34px; height: 34px;
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
}
.map-card-icon.green { background: var(--green-pale); color: var(--green); }
.map-card-text { display: flex; flex-direction: column; }
.map-card-text strong { font-size: 13px; font-weight: 600; color: var(--ink); }
.map-card-text span   { font-size: 12px; color: var(--ink-muted); }

/* Hero strip */
.hero-strip {
    background: rgba(0,0,0,.2);
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 48px;
    border-right: 1px solid rgba(255,255,255,.08);
}
.hero-stat:last-child { border-right: none; }
.stat-num   { font-size: 26px; font-weight: 800; color: #fff; letter-spacing: -.03em; }
.stat-label { font-size: 12px; color: rgba(255,255,255,.55); margin-top: 2px; }

/* ============================================================
   BENTO GRID
   ============================================================ */
.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}

.bento-card {
    position: relative;
    border-radius: var(--r-xl);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: hidden;
    transition: transform var(--t) var(--spring), box-shadow var(--t) var(--ease);
    text-decoration: none;
}
.bento-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); }

.bento-lg { grid-column: span 2; grid-row: span 2; }
.bento-md { grid-column: span 2; }
.bento-sm { grid-column: span 1; }

.bento-navy   { background: var(--brand); color: #fff; }
.bento-green  { background: var(--green); color: #fff; }
.bento-yellow { background: #F59E0B; color: var(--ink); }
.bento-red    { background: var(--red); color: #fff; }
.bento-ink    { background: var(--ink); color: #fff; }
.bento-orange { background: var(--orange); color: #fff; }
.bento-purple { background: var(--purple); color: #fff; }
.bento-slate  { background: #475569; color: #fff; }

.bento-icon {
    width: 48px; height: 48px;
    background: rgba(255,255,255,.15);
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 4px;
}
.bento-yellow .bento-icon { background: rgba(0,0,0,.1); }

.bento-num {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .1em;
    opacity: .4;
    margin-bottom: 4px;
}
.bento-card h3 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
}
.bento-sm h3 { font-size: 16px; }
.bento-lg h3 { font-size: 28px; }

.bento-card p {
    font-size: 13px;
    opacity: .75;
    line-height: 1.5;
    flex: 1;
}

.bento-tag {
    display: inline-flex;
    background: rgba(255,255,255,.2);
    border-radius: var(--r-pill);
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    width: fit-content;
    margin-top: 4px;
}

.bento-arrow {
    position: absolute;
    bottom: 24px; right: 24px;
    width: 32px; height: 32px;
    background: rgba(255,255,255,.15);
    border-radius: var(--r-pill);
    display: flex; align-items: center; justify-content: center;
    transition: background var(--t) var(--ease);
}
.bento-yellow .bento-arrow { background: rgba(0,0,0,.1); }
.bento-card:hover .bento-arrow { background: rgba(255,255,255,.25); }

/* ============================================================
   SPLIT SECTIONS
   ============================================================ */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.split-reverse { direction: rtl; }
.split-reverse > * { direction: ltr; }

.split-text { display: flex; flex-direction: column; gap: 16px; }
.split-desc {
    font-size: 16px;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 480px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 8px 0;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.fl-icon {
    width: 34px; height: 34px;
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.fl-icon.green  { background: var(--green-pale);  color: var(--green); }
.fl-icon.yellow { background: var(--yellow-pale);  color: var(--yellow); }
.fl-icon.red    { background: var(--red-pale);     color: var(--red); }
.fl-icon.orange { background: var(--orange-pale);  color: var(--orange); }

.feature-list li > div:last-child { display: flex; flex-direction: column; gap: 2px; }
.feature-list li strong { font-size: 14px; font-weight: 600; color: var(--ink); }
.feature-list li span   { font-size: 13px; color: var(--ink-muted); }

/* ============================================================
   BUURTPREVENTIE WIDGET
   ============================================================ */
.buurt-widget {
    background: var(--surface);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.bw-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
    border-bottom: 1px solid var(--border-light);
    gap: 8px;
}
.bw-header svg { color: var(--green); }
.bw-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--r-pill);
    background: var(--green-pale);
    color: var(--green);
}

.bw-groups { padding: 12px 12px 0; display: flex; flex-direction: column; gap: 4px; }
.bw-group {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 8px;
    border-radius: var(--r-md);
    transition: background var(--t) var(--ease);
}
.bw-group:hover { background: var(--bg); }

.bw-group-icon {
    width: 38px; height: 38px;
    border-radius: var(--r-md);
    background: var(--brand);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.bw-group-info { flex: 1; display: flex; flex-direction: column; }
.bw-group-info strong { font-size: 13px; font-weight: 600; }
.bw-group-info span   { font-size: 12px; color: var(--ink-muted); }

.btn-join {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: var(--r-pill);
    background: var(--brand);
    color: #fff;
    transition: all var(--t) var(--ease);
    flex-shrink: 0;
}
.btn-join:hover  { background: var(--brand-mid); }
.btn-join.joined { background: var(--green-pale); color: var(--green); }

.bw-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 12px;
    padding: 12px 14px;
    background: var(--orange-pale);
    border-radius: var(--r-md);
    border: 1px solid rgba(234,88,12,.15);
}
.bw-alert-dot {
    width: 8px; height: 8px;
    background: var(--orange);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
    animation: pulse-dot 2s infinite;
}
.bw-alert-text { display: flex; flex-direction: column; gap: 2px; }
.bw-alert-text strong { font-size: 12px; font-weight: 700; color: var(--orange); }
.bw-alert-text span   { font-size: 12px; color: var(--ink-soft); line-height: 1.4; }

/* ============================================================
   AFVALKALENDER WIDGET
   ============================================================ */
.afval-widget {
    background: var(--surface);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.afval-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 20px;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid var(--border-light);
    color: var(--ink);
}
.afval-header svg { color: var(--yellow); }

.afval-next { padding: 20px; border-bottom: 1px solid var(--border-light); }
.afval-next-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 12px; }

.afval-bins { display: flex; gap: 12px; margin-bottom: 12px; }
.afval-bin {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 18px;
    border-radius: var(--r-md);
    font-size: 12px;
    font-weight: 700;
    flex: 1;
}
.bin-icon { display: flex; }
.bin-green { background: var(--green-pale); color: var(--green); }
.bin-grey  { background: var(--bg-alt); color: var(--ink-soft); }

.afval-notification {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--yellow);
    background: var(--yellow-pale);
    padding: 8px 12px;
    border-radius: var(--r-sm);
    font-weight: 500;
}

.afval-schedule { padding: 12px 20px; display: flex; flex-direction: column; gap: 8px; }
.afval-row {
    display: flex;
    align-items: center;
    gap: 10px;
}
.afval-date { font-size: 12px; color: var(--ink-muted); width: 48px; flex-shrink: 0; }
.afval-bin-sm {
    padding: 4px 10px;
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 700;
}
.bin-blue-sm   { background: var(--blue-pale);   color: var(--blue); }
.bin-green-sm  { background: var(--green-pale);  color: var(--green); }
.bin-grey-sm   { background: var(--bg-alt);      color: var(--ink-soft); }
.bin-yellow-sm { background: var(--yellow-pale); color: var(--yellow); }

.afval-links {
    padding: 12px 20px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px solid var(--border-light);
}
.afval-link {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: var(--brand);
    padding: 6px 0;
    transition: gap var(--t) var(--ease);
}
.afval-link:hover { gap: 10px; }

/* ============================================================
   AED SECTION
   ============================================================ */
.aed-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

.aed-map-wrap {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    height: 380px;
}
#aedMap { width: 100%; height: 100%; }

.aed-map-legend {
    position: absolute;
    bottom: 16px; left: 16px;
    background: rgba(255,255,255,.95);
    border-radius: var(--r-md);
    padding: 10px 14px;
    display: flex;
    gap: 14px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-soft);
    backdrop-filter: blur(8px);
    z-index: 10;
}
.aed-legend-item { display: flex; align-items: center; gap: 6px; }
.aed-dot { width: 10px; height: 10px; border-radius: 50%; }
.aed-dot.green { background: var(--green); }
.aed-dot.red   { background: var(--red); }

.aed-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aed-emergency-btn {
    position: relative;
    width: 100%;
    background: var(--red);
    color: #fff;
    border-radius: var(--r-xl);
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: all var(--t) var(--ease);
}
.aed-emergency-btn:hover { background: #B91C1C; transform: scale(1.02); }
.aed-emergency-btn span { font-size: 16px; font-weight: 800; }
.aed-emergency-btn small { font-size: 12px; opacity: .75; text-align: center; }

.aed-pulse {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--red);
    animation: aed-pulse 2.5s infinite;
    z-index: -1;
}
@keyframes aed-pulse {
    0%   { opacity: 0; transform: scale(.95); }
    50%  { opacity: .2; transform: scale(1.02); }
    100% { opacity: 0; transform: scale(1.05); }
}

.aed-list { background: rgba(255,255,255,.08); border-radius: var(--r-xl); padding: 16px; border: 1px solid rgba(255,255,255,.1); }
.aed-list h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; opacity: .5; margin-bottom: 12px; }

.aed-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,.07);
}
.aed-item:last-child { border-bottom: none; padding-bottom: 0; }

.aed-status {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.aed-status.available { background: var(--green-light); }
.aed-status.busy      { background: var(--red); }

.aed-info { flex: 1; display: flex; flex-direction: column; }
.aed-info strong { font-size: 13px; font-weight: 600; color: #fff; }
.aed-info span   { font-size: 12px; color: rgba(255,255,255,.5); }

.aed-dist { font-size: 12px; font-weight: 700; color: var(--green-light); flex-shrink: 0; }

.aed-info-box {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: rgba(255,255,255,.06);
    border-radius: var(--r-md);
    border: 1px solid rgba(255,255,255,.1);
    font-size: 13px;
    color: rgba(255,255,255,.7);
}
.aed-info-box strong { color: #fff; }
.aed-info-box svg { flex-shrink: 0; opacity: .6; }

/* ============================================================
   NEWS
   ============================================================ */
.news-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 32px;
    align-items: start;
}

.news-featured {
    background: var(--surface);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    padding: 0;
    display: flex;
    flex-direction: column;
}
.news-img-ph {
    height: 220px;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-light);
}

.news-featured .news-badge,
.news-featured .news-meta,
.news-featured h3,
.news-featured p,
.news-featured .news-readmore { padding: 0 24px; }
.news-badge { margin: 20px 24px 0; }
.news-meta { display: flex; gap: 8px; font-size: 12px; color: var(--ink-muted); margin: 8px 24px 4px; }
.news-featured h3 { font-size: 19px; font-weight: 700; line-height: 1.3; letter-spacing: -.02em; margin-bottom: 8px; }
.news-featured p  { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; flex: 1; }
.news-readmore {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand);
    padding-bottom: 24px;
    transition: gap var(--t) var(--ease);
}
.news-readmore:hover { gap: 10px; }

.news-badge {
    display: inline-flex;
    padding: 3px 10px;
    border-radius: var(--r-pill);
    font-size: 11px;
    font-weight: 700;
    width: fit-content;
}
.gemeente  { background: var(--blue-pale);   color: var(--blue); }
.sport     { background: var(--green-pale);  color: var(--green); }
.evenement { background: var(--orange-pale); color: var(--orange); }
.wonen     { background: var(--purple-pale); color: var(--purple); }
.politiek  { background: var(--bg-alt);      color: var(--ink-soft); }

.news-sidebar { display: flex; flex-direction: column; gap: 12px; }
.news-compact {
    display: flex;
    gap: 14px;
    background: var(--surface);
    border-radius: var(--r-lg);
    padding: 14px;
    border: 1px solid var(--border);
    transition: box-shadow var(--t) var(--ease);
}
.news-compact:hover { box-shadow: var(--shadow-sm); }
.nc-thumb {
    width: 60px; height: 60px;
    background: var(--bg-alt);
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--ink-light);
    flex-shrink: 0;
}
.nc-body { display: flex; flex-direction: column; gap: 5px; }
.nc-cat {
    display: inline-flex;
    padding: 2px 8px;
    border-radius: var(--r-pill);
    font-size: 10px;
    font-weight: 700;
    width: fit-content;
}
.nc-body h3 { font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--ink); }
.nc-meta { font-size: 11px; color: var(--ink-muted); }

/* ============================================================
   VACATURES
   ============================================================ */
.vacature-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.vac-filter {
    padding: 7px 16px;
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    background: var(--surface);
    border: 1.5px solid var(--border);
    transition: all var(--t) var(--ease);
    cursor: pointer;
}
.vac-filter:hover  { border-color: var(--ink-muted); color: var(--ink); }
.vac-filter.active { background: var(--brand); color: #fff; border-color: var(--brand); }

.vacature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.vac-card {
    background: var(--surface);
    border-radius: var(--r-xl);
    padding: 24px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: box-shadow var(--t) var(--ease), transform var(--t) var(--spring);
}
.vac-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.vac-header { display: flex; align-items: center; gap: 12px; }
.vac-logo {
    width: 44px; height: 44px;
    border-radius: var(--r-md);
    background: var(--brand);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.vac-meta { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.vac-bedrijf { font-size: 13px; font-weight: 700; color: var(--ink); }
.vac-locatie { display: flex; align-items: center; gap: 4px; font-size: 12px; color: var(--ink-muted); }

.vac-type {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--r-pill);
    flex-shrink: 0;
}
.fulltime { background: var(--blue-pale); color: var(--blue); }
.parttime { background: var(--green-pale); color: var(--green); }

.vac-title { font-size: 16px; font-weight: 700; color: var(--ink); letter-spacing: -.01em; }
.vac-desc  { font-size: 13px; color: var(--ink-soft); line-height: 1.6; flex: 1; }

.vac-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.vac-tags span {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: var(--r-pill);
    background: var(--bg-alt);
    color: var(--ink-soft);
}

.vac-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 8px; border-top: 1px solid var(--border-light); }
.vac-date { font-size: 12px; color: var(--ink-muted); }

.vacature-cta {
    margin-top: 40px;
    background: var(--bg-alt);
    border-radius: var(--r-xl);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid var(--border);
}
.vacature-cta p { font-size: 15px; color: var(--ink-soft); max-width: 560px; }

/* ============================================================
   MELDINGEN
   ============================================================ */
.melding-cats {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 4px 0;
}
.mcat {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: var(--r-pill);
    font-size: 13px;
    font-weight: 600;
    background: var(--surface);
    border: 1.5px solid var(--border);
    color: var(--ink-soft);
    cursor: pointer;
    transition: all var(--t) var(--ease);
}
.mcat:hover  { border-color: var(--ink-muted); color: var(--ink); }
.mcat.active { background: var(--orange); color: #fff; border-color: var(--orange); }

.melding-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--surface);
    border-radius: var(--r-xl);
    padding: 20px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}
.melding-form textarea {
    width: 100%;
    resize: none;
    border: 1.5px solid var(--border);
    border-radius: var(--r-md);
    padding: 12px 14px;
    font-size: 14px;
    color: var(--ink);
    background: var(--bg);
    outline: none;
    transition: border-color var(--t) var(--ease);
    line-height: 1.5;
}
.melding-form textarea:focus { border-color: var(--brand); }

.melding-form-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.btn-foto {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-muted);
    padding: 8px 12px;
    border-radius: var(--r-md);
    background: var(--bg-alt);
    transition: all var(--t) var(--ease);
}
.btn-foto:hover { color: var(--ink); background: var(--border); }

.meldingen-widget {
    background: var(--surface);
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.mw-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid var(--border-light);
}
.mw-count {
    font-size: 11px;
    font-weight: 700;
    background: var(--orange-pale);
    color: var(--orange);
    padding: 3px 10px;
    border-radius: var(--r-pill);
}

.mw-list { padding: 8px 12px; display: flex; flex-direction: column; gap: 2px; }
.mw-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 8px;
    border-radius: var(--r-md);
    transition: background var(--t) var(--ease);
}
.mw-item:hover { background: var(--bg); }

.mw-icon {
    width: 32px; height: 32px;
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.mw-icon.orange { background: var(--orange-pale); color: var(--orange); }
.mw-icon.blue   { background: var(--blue-pale);   color: var(--blue); }
.mw-icon.green  { background: var(--green-pale);  color: var(--green); }

.mw-text { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.mw-text strong { font-size: 13px; font-weight: 600; }
.mw-text span   { font-size: 12px; color: var(--ink-muted); }

.mw-status {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--r-pill);
    flex-shrink: 0;
}
.mw-status.open     { background: var(--orange-pale); color: var(--orange); }
.mw-status.progress { background: var(--blue-pale);   color: var(--blue); }
.mw-status.done     { background: var(--green-pale);  color: var(--green); }

/* ============================================================
   RADIO
   ============================================================ */
.radio-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.radio-player {
    background: var(--brand);
    border-radius: var(--r-xl);
    padding: 28px;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.radio-now-playing { display: flex; align-items: center; gap: 20px; }

.radio-disc {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform .4s linear;
}
.radio-disc.spinning { animation: spin 8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.radio-info { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.radio-station { font-size: 18px; font-weight: 800; }
.radio-track   { font-size: 13px; color: rgba(255,255,255,.6); }

.radio-wave { display: flex; align-items: center; gap: 3px; height: 20px; margin-top: 4px; }
.radio-wave span {
    display: block;
    width: 3px;
    background: var(--green-light);
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}
.radio-wave span:nth-child(1) { animation-delay: 0s;    height: 8px;  }
.radio-wave span:nth-child(2) { animation-delay: .15s;  height: 16px; }
.radio-wave span:nth-child(3) { animation-delay: .3s;   height: 12px; }
.radio-wave span:nth-child(4) { animation-delay: .45s;  height: 20px; }
.radio-wave span:nth-child(5) { animation-delay: .6s;   height: 10px; }
.radio-wave.paused span { animation-play-state: paused; height: 4px !important; }
@keyframes wave {
    0%, 100% { transform: scaleY(1); }
    50%       { transform: scaleY(.4); }
}

.radio-controls { display: flex; align-items: center; gap: 20px; }
.radio-btn {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--t) var(--spring);
    flex-shrink: 0;
}
.radio-btn:hover { background: var(--green-light); transform: scale(1.08); }

.radio-vol { display: flex; align-items: center; gap: 10px; flex: 1; }
.radio-vol svg { color: rgba(255,255,255,.6); flex-shrink: 0; }
.vol-slider {
    -webkit-appearance: none;
    width: 100%; height: 4px;
    background: rgba(255,255,255,.2);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}
.vol-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
}

.radio-stations { display: flex; flex-direction: column; gap: 8px; }
.radio-station-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: var(--surface);
    border-radius: var(--r-lg);
    border: 1.5px solid var(--border);
    cursor: pointer;
    transition: all var(--t) var(--ease);
}
.radio-station-card:hover  { border-color: var(--brand); }
.radio-station-card.active { border-color: var(--green); background: var(--green-pale); }

.rs-logo {
    width: 42px; height: 42px;
    border-radius: var(--r-md);
    background: var(--brand);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.radio-station-card.active .rs-logo { background: var(--green); }

.rs-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.rs-info strong { font-size: 13px; font-weight: 700; }
.rs-info span   { font-size: 12px; color: var(--ink-muted); }

.rs-live { display: flex; align-items: center; gap: 5px; font-size: 11px; font-weight: 700; color: var(--red); }
.live-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--red);
    animation: pulse-dot 1.5s infinite;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { background: var(--brand); }
.cta-block {
    position: relative;
    background: var(--brand-mid);
    border-radius: var(--r-xl);
    overflow: hidden;
    padding: 64px;
    color: #fff;
    text-align: center;
}
.cta-bg-map {
    position: absolute;
    inset: 0;
    opacity: .08;
    pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -.04em;
    margin-bottom: 16px;
}
.cta-content p {
    font-size: 16px;
    color: rgba(255,255,255,.7);
    max-width: 560px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); }

.footer-main { padding: 64px 0 48px; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,.5);
    margin-top: 16px;
    max-width: 280px;
}
.footer-logo { margin-bottom: 4px; }
.footer-logo .logo-smart { color: #fff; }
.footer-logo .logo-icon  { background: var(--brand-mid); }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.social-link {
    width: 36px; height: 36px;
    border-radius: var(--r-sm);
    background: rgba(255,255,255,.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6);
    transition: all var(--t) var(--ease);
}
.social-link:hover { background: rgba(255,255,255,.15); color: #fff; }

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
    font-size: 14px;
    color: rgba(255,255,255,.6);
    transition: color var(--t) var(--ease);
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255,255,255,.35);
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,.35); transition: color var(--t) var(--ease); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border);
    z-index: 90;
    padding: 0 0 max(0px, env(safe-area-inset-bottom));
}

@media (max-width: 899px) { .mobile-nav { display: block; } body { padding-bottom: 64px; } }

.mobile-nav-list { display: flex; }
.mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 10px 4px 8px;
    font-size: 10px;
    font-weight: 600;
    color: var(--ink-muted);
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font);
    transition: color var(--t) var(--ease);
    text-decoration: none;
}
.mobile-nav-item:hover,
.mobile-nav-item.active { color: var(--brand); }

.meld-btn {
    color: var(--red) !important;
}
.meld-btn svg { color: var(--red); }

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 200;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t) var(--ease);
    backdrop-filter: blur(4px);
}
.search-overlay.active { opacity: 1; pointer-events: all; }

.search-box {
    background: var(--surface);
    border-radius: var(--r-xl);
    padding: 32px;
    width: 100%;
    max-width: 560px;
    box-shadow: var(--shadow-xl);
    margin: 0 16px;
    transform: translateY(-16px);
    transition: transform var(--t) var(--spring);
}
.search-overlay.active .search-box { transform: translateY(0); }

.search-box h2 { font-size: 20px; font-weight: 800; margin-bottom: 16px; }

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg);
    border-radius: var(--r-pill);
    padding: 10px 20px;
    margin-bottom: 16px;
    border: 1.5px solid var(--border);
    transition: border-color var(--t) var(--ease);
}
.search-input-wrap:focus-within { border-color: var(--brand); }
.search-input-wrap svg { color: var(--ink-muted); flex-shrink: 0; }
.search-input-wrap input {
    flex: 1;
    border: none;
    background: none;
    font-size: 15px;
    outline: none;
    color: var(--ink);
}

.search-tags { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.search-tag-label { font-size: 12px; color: var(--ink-muted); }
.stag {
    padding: 5px 12px;
    border-radius: var(--r-pill);
    font-size: 12px;
    font-weight: 600;
    background: var(--bg-alt);
    color: var(--ink-soft);
    cursor: pointer;
    transition: all var(--t) var(--ease);
    border: none;
    font-family: var(--font);
}
.stag:hover { background: var(--brand); color: #fff; }

/* ============================================================
   AED MODAL
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t) var(--ease);
    backdrop-filter: blur(4px);
}
.modal-overlay.active { opacity: 1; pointer-events: all; }

.modal {
    background: var(--surface);
    border-radius: var(--r-xl);
    padding: 40px 36px;
    max-width: 440px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-xl);
    transform: scale(.95);
    transition: transform var(--t) var(--spring);
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--red-pale);
    color: var(--red);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.modal h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.modal p  { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 24px; }
.modal-actions { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.modal-actions .btn { width: 100%; justify-content: center; }

/* ============================================================
   LEAFLET OVERRIDES
   ============================================================ */
.leaflet-container { font-family: var(--font); }
.leaflet-control-attribution { font-size: 10px; }
.leaflet-popup-content-wrapper { border-radius: var(--r-md); box-shadow: var(--shadow-md); }
.leaflet-popup-content { font-family: var(--font); font-size: 13px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .hero-content { gap: 40px; }
    .aed-layout { grid-template-columns: 1fr 300px; }
    .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
}

@media (max-width: 900px) {
    .section { padding: 64px 0; }
    .container { padding: 0 20px; }

    .hero-content {
        grid-template-columns: 1fr;
        padding: 48px 20px 40px;
        gap: 40px;
    }
    .hero-map-wrap { height: 340px; }

    .bento {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-lg { grid-column: span 2; }
    .bento-md { grid-column: span 2; }
    .bento-sm { grid-column: span 1; }

    .split-section { grid-template-columns: 1fr; gap: 40px; }
    .split-reverse { direction: ltr; }

    .news-grid { grid-template-columns: 1fr; }

    .aed-layout { grid-template-columns: 1fr; }
    .aed-map-wrap { height: 280px; }

    .vacature-grid { grid-template-columns: 1fr; }
    .vacature-cta { flex-direction: column; text-align: center; }

    .radio-layout { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand { grid-column: span 2; }

    .cta-block { padding: 40px 28px; }

    .hero-strip { flex-wrap: wrap; }
    .hero-stat { padding: 16px 24px; flex: 1 1 40%; }

    .section-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
    .hero-title { font-size: 2.2rem; }
    .bento { grid-template-columns: 1fr; }
    .bento-lg, .bento-md, .bento-sm { grid-column: span 1; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: span 1; }
    .hero-actions { flex-direction: column; }
    .cta-actions { flex-direction: column; align-items: stretch; }
    .map-filters { display: none; }
}
