/* =========================================================
   SRG Website — eigen techniek (STROOM)
   Look & feel: specialistrisk.com (2026 theme)
   ========================================================= */

/* ---------- Fonts ---------- */
@font-face {
    font-family: 'National 2';
    src: url('../fonts/National2-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'National 2';
    src: url('../fonts/National2-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'National 2';
    src: url('../fonts/National2-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'National 2 Condensed';
    src: url('../fonts/national-2-condensed-bold-1.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Atlas Grotesk';
    src: url('../fonts/AtlasGrotesk-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Atlas Grotesk';
    src: url('../fonts/AtlasGrotesk-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Atlas Grotesk';
    src: url('../fonts/AtlasGrotesk-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
    --c-teal: #00AAAA;
    --c-forest: #004B4B;
    --c-navy: #0F2D4B;
    --c-orange: #E27D35;
    --c-lime: #C4DA7C;
    --c-mint: #F0FAFA;
    --c-ink: #000000;
    --c-white: #FFFFFF;
    --c-grey: #969696;

    --font-body: 'National 2', sans-serif;
    --font-headline: 'National 2 Condensed', sans-serif;

    /* Fluid type (min @375px -> max @1920px) */
    --fluid-bp: clamp(0, calc((100vw - 23.4375rem) / (120 - 23.4375)), 1);
    --f-4xl: clamp(2.49rem, calc(2.49rem + (3.76 - 2.49) * ((100vw - 23.44rem) / 96.56)), 3.76rem);
    --f-3xl: clamp(2.07rem, calc(2.07rem + (2.88 - 2.07) * ((100vw - 23.44rem) / 96.56)), 2.88rem);
    --f-2xl: clamp(1.73rem, calc(1.73rem + (2.21 - 1.73) * ((100vw - 23.44rem) / 96.56)), 2.21rem);
    --f-xl: clamp(1.44rem, calc(1.44rem + (1.7 - 1.44) * ((100vw - 23.44rem) / 96.56)), 1.7rem);
    --f-lg: clamp(1.2rem, calc(1.2rem + (1.3 - 1.2) * ((100vw - 23.44rem) / 96.56)), 1.3rem);

    --container: 1380px;
    --gutter: clamp(16px, 3vw, 40px);
    --radius-media: 32px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-ink);
    background: var(--c-white);
    -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

a { color: inherit; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}

.headline {
    font-family: var(--font-headline);
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.eyebrow {
    display: block;
    font-size: var(--f-lg);
    color: var(--c-teal);
    margin-bottom: 16px;
}

.section-title {
    font-size: var(--f-3xl);
    line-height: 1.1;
}

.text-content p { margin: 0 0 1em; }
.text-content p:last-child { margin-bottom: 0; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    line-height: 1;
    padding: 16px 28px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: background-color .3s ease, color .3s ease;
    background: var(--c-teal);
    color: var(--c-white);
}
.btn:hover { background: var(--c-orange); color: var(--c-white); }

.btn-light { background: var(--c-white); color: var(--c-teal); }
.btn-light:hover { background: var(--c-orange); color: var(--c-white); }

.btn-navy { background: var(--c-navy); color: var(--c-white); }
.btn-navy:hover { background: var(--c-orange); }

.link-underline {
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .3s ease;
}
.link-underline:hover { color: var(--c-teal); }

/* ---------- Header ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--c-teal);
    transition: background-color .3s ease, backdrop-filter .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(15, 45, 75, .08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.nav-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.nav-logo svg { height: 35px; width: auto; }

.nav-menu {
    display: none;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.nav-menu > li { position: relative; }

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    font-size: 16px;
    color: var(--c-navy);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 999px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    transition: background-color .25s ease, color .25s ease;
}
.nav-link:hover { background: rgba(255, 255, 255, .25); }
.site-header.is-scrolled .nav-link:hover { background: var(--c-mint); }

.nav-link .chevron { transition: transform .25s ease; }
.nav-menu > li:hover .chevron,
.nav-menu > li:focus-within .chevron { transform: rotate(180deg); }

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: var(--c-white);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(15, 45, 75, .18);
    padding: 10px;
    list-style: none;
    margin: 6px 0 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.nav-menu > li:hover .nav-dropdown,
.nav-menu > li:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--c-navy);
    text-decoration: none;
    transition: background-color .2s ease, color .2s ease;
}
.nav-dropdown a:hover { background: var(--c-mint); color: var(--c-teal); }
.nav-dropdown img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }

.nav-actions { display: none; align-items: center; gap: 12px; }
.nav-cta { padding: 12px 24px; }

/* Hamburger */
.nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: transparent;
    border: none;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--c-navy);
    transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none;
    background: var(--c-white);
    border-top: 1px solid var(--c-mint);
    padding: 16px var(--gutter) 32px;
}
.mobile-menu.is-open { display: block; }
.mobile-menu ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu a {
    display: block;
    padding: 14px 4px;
    font-size: 18px;
    font-weight: 500;
    color: var(--c-navy);
    text-decoration: none;
    border-bottom: 1px solid var(--c-mint);
}
.mobile-menu .btn { margin-top: 20px; }

@media (min-width: 1024px) {
    .nav-menu { display: flex; }
    .nav-actions { display: flex; }
    .nav-toggle { display: none; }
    .mobile-menu { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
    background: var(--c-teal);
    padding-top: clamp(40px, 6vw, 80px);
    padding-bottom: clamp(32px, 4vw, 56px);
}
.hero-intro {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(16px, 2vw, 28px);
    margin-bottom: clamp(28px, 4vw, 56px);
}
.hero-title {
    font-size: clamp(3rem, 7.5vw, 8.75rem);
    line-height: .85;
    color: var(--c-navy);
}
.hero-title span { color: var(--c-white); }
.hero-sub {
    font-size: var(--f-2xl);
    font-weight: 700;
    color: var(--c-navy);
}

.hero-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--c-teal);
}
.hero-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eye-curtain {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}
.eye-curtain.mobile { display: block; }
.eye-curtain.desktop { display: none; }
@media (min-width: 768px) {
    .eye-curtain.mobile { display: none; }
    .eye-curtain.desktop { display: block; }
}

/* ---------- Section shells ---------- */
.section { padding-top: clamp(56px, 8vw, 112px); padding-bottom: clamp(56px, 8vw, 112px); }
.section--mint { background: var(--c-mint); }
.section--white { background: var(--c-white); }

/* ---------- Intro (title module) ---------- */
.title-module {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
}
.title-module .text-content { font-size: var(--f-xl); font-weight: 500; }

/* ---------- Stats ---------- */
.stats-layout {
    display: flex;
    flex-direction: column;
    gap: 48px;
}
.stats-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 560px;
}
.stats-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.stat-card {
    background: var(--c-mint);
    border-radius: 24px;
    padding: 28px 24px 24px;
    min-width: 0;
}
.stat-value {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: clamp(2rem, 3.4vw, 3.6rem);
    line-height: 1;
    color: var(--c-teal);
    display: flex;
    align-items: flex-start;
    gap: 2px;
}
.stat-value sup {
    font-size: .45em;
    line-height: 1;
    margin-top: .18em;
}
.stat-label {
    margin-top: 10px;
    font-weight: 500;
    font-size: 17px;
    color: var(--c-navy);
}
@media (min-width: 1024px) {
    .stats-layout { flex-direction: row; justify-content: space-between; align-items: center; }
    .stats-cards { flex-shrink: 0; }
    .stat-card { width: 240px; }
}

/* ---------- Accordion ---------- */
.accordion-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 640px;
    margin-bottom: 48px;
}
.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.acc-item {
    border-radius: 24px;
    overflow: hidden;
    color: var(--c-ink);
    transition: flex-grow .5s ease;
}
.acc-item[data-color="teal"] { background: var(--c-teal); }
.acc-item[data-color="orange"] { background: var(--c-orange); }
.acc-item[data-color="navy"] { background: var(--c-navy); color: var(--c-white); }
.acc-item[data-color="forest"] { background: var(--c-forest); color: var(--c-white); }

.acc-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 18px;
    color: inherit;
    padding: 22px 28px;
    text-align: left;
}
.acc-toggle .acc-arrow { transition: transform .3s ease; flex-shrink: 0; }
.acc-item.is-open .acc-toggle .acc-arrow { transform: rotate(90deg); }

.acc-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .5s ease;
}
.acc-item.is-open .acc-panel { grid-template-rows: 1fr; }
.acc-panel-inner { overflow: hidden; }

.acc-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 28px 28px;
}
.acc-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}
.acc-text h3 {
    font-size: var(--f-2xl);
    line-height: 1.15;
}
.acc-media {
    border-radius: 20px;
    overflow: hidden;
}
.acc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}
.acc-item[data-color="teal"] .btn,
.acc-item[data-color="orange"] .btn { background: var(--c-white); color: var(--c-teal); }
.acc-item[data-color="teal"] .btn:hover,
.acc-item[data-color="orange"] .btn:hover { background: var(--c-navy); color: var(--c-white); }
.acc-item[data-color="navy"] .btn,
.acc-item[data-color="forest"] .btn { background: var(--c-white); color: var(--c-navy); }
.acc-item[data-color="navy"] .btn:hover,
.acc-item[data-color="forest"] .btn:hover { background: var(--c-orange); color: var(--c-white); }

@media (min-width: 1024px) {
    .accordion {
        flex-direction: row;
        gap: 16px;
        min-height: 520px;
    }
    .acc-item {
        flex: 1 1 0;
        display: flex;
        flex-direction: column;
        transition: flex .55s cubic-bezier(.4, 0, .2, 1);
    }
    .acc-item.is-open { flex: 7 1 0; }
    .acc-toggle { padding: 28px; }
    .acc-item:not(.is-open) .acc-toggle {
        flex: 1;
        align-items: flex-end;
        justify-content: flex-start;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        white-space: nowrap;
    }
    .acc-item:not(.is-open) .acc-toggle .acc-arrow { transform: rotate(-90deg); }
    .acc-panel { flex: 1; min-width: 0; }
    .acc-content {
        flex-direction: row;
        align-items: stretch;
        gap: 32px;
        padding: 0 32px 32px;
        height: 100%;
        min-width: 560px;
    }
    .acc-text { flex: 1 1 50%; justify-content: center; }
    .acc-media { flex: 1 1 50%; }
    .acc-media img { height: 100%; aspect-ratio: auto; }
}

/* ---------- Switchback ---------- */
.switchback {
    display: flex;
    flex-direction: column-reverse;
    gap: 40px;
    align-items: center;
}
.switchback-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}
.switchback-media { width: 100%; }
.switchback-media img {
    width: 100%;
    border-radius: var(--radius-media);
    border-top-left-radius: 64px;
    object-fit: cover;
    aspect-ratio: 3 / 2;
}
@media (min-width: 1024px) {
    .switchback { flex-direction: row; gap: 64px; }
    .switchback.reverse { flex-direction: row-reverse; }
    .switchback > * { flex: 1 1 50%; }
}

/* ---------- Media stats (international) ---------- */
.media-stats {
    position: relative;
    background: var(--c-white);
    padding-top: clamp(56px, 8vw, 112px);
    padding-bottom: 0;
    overflow: hidden;
}
.media-stats-bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 38%;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='1920' height='954' viewBox='0 0 1920 954' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M786.471 7.79071C399.655 -59.8535 -337.619 334.779 -378.379 351.584L-378.379 1068.07H2088.35V64.1866C1718.31 259.207 1173.29 75.4349 786.471 7.79071Z' fill='%2300AAAA'/%3e%3c/svg%3e");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}
.media-stats-head {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 640px;
    margin-bottom: 56px;
}
.media-stats-frame {
    position: relative;
    border-radius: var(--radius-media) var(--radius-media) 0 0;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(15, 45, 75, .25);
}
.media-stats-frame video {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--c-navy);
}
.audio-toggle {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: rgba(255, 255, 255, .9);
    color: var(--c-navy);
    transition: background-color .25s ease;
}
.audio-toggle:hover { background: var(--c-white); }

/* ---------- News cards ---------- */
.news-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 48px;
}
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.news-card {
    display: flex;
    flex-direction: column;
    background: var(--c-mint);
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: var(--c-ink);
    transition: transform .3s ease, box-shadow .3s ease;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 45, 75, .12);
}
.news-card-media { position: relative; }
.news-card-media img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}
.news-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--c-teal);
    color: var(--c-white);
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 999px;
}
.news-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    flex: 1;
}
.news-date { font-size: 14px; color: var(--c-grey); }
.news-title {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 19px;
    line-height: 1.3;
    color: var(--c-navy);
}
.news-excerpt {
    margin: 0;
    font-size: 15px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-more {
    margin-top: auto;
    padding-top: 8px;
    font-weight: 500;
    color: var(--c-teal);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.news-card:hover .news-more { color: var(--c-orange); }
@media (min-width: 768px) {
    .news-grid { grid-template-columns: repeat(3, 1fr); }
}
.news-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.news-dots button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--c-navy);
    background: transparent;
    color: var(--c-navy);
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: background-color .25s ease, color .25s ease;
}
.news-dots button.is-active,
.news-dots button:hover { background: var(--c-teal); border-color: var(--c-teal); color: var(--c-white); }

/* ---------- Footer ---------- */
.site-footer {
    background: var(--c-navy);
    color: var(--c-white);
    padding-top: clamp(56px, 7vw, 96px);
}
.footer-top {
    display: flex;
    flex-direction: column;
    gap: 48px;
    padding-bottom: 56px;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    max-width: 380px;
}
.footer-brand img { width: 171px; height: auto; }
.footer-newsletter p { margin: 0 0 14px; font-size: 15px; color: rgba(255, 255, 255, .8); }
.newsletter-form { display: flex; gap: 10px; }
.newsletter-form input {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .3);
    background: rgba(255, 255, 255, .08);
    color: var(--c-white);
    font-family: var(--font-body);
    font-size: 15px;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, .5); }
.newsletter-form input:focus { outline: 2px solid var(--c-teal); border-color: transparent; }

.footer-cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    flex: 1;
}
.footer-col h6 {
    margin: 0 0 18px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--c-teal);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
    color: rgba(255, 255, 255, .85);
    text-decoration: none;
    font-size: 15px;
    transition: color .2s ease;
}
.footer-col a:hover { color: var(--c-teal); }

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding: 28px 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .55);
}
.footer-disclaimer p { margin: 0; }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding: 22px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
}
.footer-accent { height: 8px; background: var(--c-teal); }

@media (min-width: 1024px) {
    .footer-top { flex-direction: row; justify-content: space-between; }
    .footer-cols { grid-template-columns: repeat(3, 1fr); max-width: 640px; }
    .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

/* ---------- Scroll animaties ---------- */
.anim {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.anim.in-view { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
    .anim { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* Logo: witte delen worden teal zodra de header wit is */
.site-header.is-scrolled .nav-logo svg path[fill="white"] { fill: var(--c-teal); }

/* ---------- GRIPPP wordmark ---------- */
.wordmark {
    font-family: var(--font-headline);
    font-weight: 700;
    font-size: 30px;
    letter-spacing: .02em;
    color: var(--c-navy);
    text-decoration: none;
    line-height: 1;
}
.wordmark-dot { color: var(--c-white); }
.site-header.is-scrolled .wordmark { color: var(--c-navy); }
.site-header.is-scrolled .wordmark-dot { color: var(--c-teal); }
.wordmark--footer { color: var(--c-white); font-size: 40px; }
.wordmark--footer .wordmark-dot { color: var(--c-teal); }
.footer-payoff {
    margin: -8px 0 0;
    font-size: 15px;
    color: rgba(255, 255, 255, .8);
}

/* Aanleiding-tag in oranje voor levensgebeurtenissen */
.news-tag--orange { background: var(--c-orange); }

/* =========================================================
   Stromen-concept: doelgroepkiezer, labels en actieve stroom
   ========================================================= */
:root {
    --dg-werkgever: var(--c-teal);
    --dg-medewerker: var(--c-orange);
    --dg-uitvoerder: var(--c-navy);
    --dg-bond: var(--c-forest);
}

/* ---------- Stroomkiezer ---------- */
.stroom-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    max-width: 640px;
    margin-bottom: 48px;
}
.stroom-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}
.stroom-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
    padding: 24px;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    font-family: var(--font-body);
    color: var(--c-white);
    transition: transform .3s ease, box-shadow .3s ease, opacity .3s ease;
}
.stroom-card[data-stroom="werkgever"] { background: var(--dg-werkgever); }
.stroom-card[data-stroom="medewerker"] { background: var(--dg-medewerker); }
.stroom-card[data-stroom="uitvoerder"] { background: var(--dg-uitvoerder); }
.stroom-card[data-stroom="bond"] { background: var(--dg-bond); }
.stroom-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 45, 75, .18);
}
.stroom-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.stroom-arrow { transition: transform .3s ease; }
.stroom-card:hover .stroom-arrow { transform: translateX(4px); }
.stroom-card-title {
    font-size: var(--f-xl);
    font-weight: 400;
    line-height: 1.1;
}
.stroom-card-text {
    font-size: 15px;
    line-height: 1.5;
    opacity: .92;
}
/* gekozen stroom: andere kaarten dimmen */
body[data-stroom] .stroom-card { opacity: .45; }
body[data-stroom="werkgever"] .stroom-card[data-stroom="werkgever"],
body[data-stroom="medewerker"] .stroom-card[data-stroom="medewerker"],
body[data-stroom="uitvoerder"] .stroom-card[data-stroom="uitvoerder"],
body[data-stroom="bond"] .stroom-card[data-stroom="bond"] {
    opacity: 1;
    box-shadow: 0 16px 40px rgba(15, 45, 75, .22);
}

/* ---------- Samenvloeiende stromen ---------- */
.stroom-flow { display: none; }
@media (min-width: 768px) {
    .stroom-flow { display: block; margin-top: -4px; }
    .stroom-flow svg { width: 100%; height: auto; display: block; }
    .stroom-flow-caption {
        text-align: center;
        font-size: var(--f-lg);
        font-weight: 700;
        color: var(--c-navy);
        margin-top: 16px;
    }
}
@media (min-width: 768px) {
    .stroom-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .stroom-cards { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Doelgroeplabels op secties (merkboek-systeem) ---------- */
.doelgroep-labels {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.dg-chip {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    padding: 7px 14px;
    border-radius: 999px;
    color: var(--c-white);
    transition: opacity .3s ease, box-shadow .3s ease;
}
.dg-iedereen { background: var(--c-white); color: var(--c-navy); box-shadow: inset 0 0 0 1px var(--c-navy); }
.section--white .dg-iedereen { background: var(--c-mint); box-shadow: none; }
.dg-werkgever { background: var(--dg-werkgever); }
.dg-medewerker { background: var(--dg-medewerker); }
.dg-uitvoerder { background: var(--dg-uitvoerder); }
.dg-bond { background: var(--dg-bond); }

/* gekozen stroom: chips van andere doelgroepen dimmen (Iedereen blijft staan) */
body[data-stroom] .dg-chip:not(.dg-iedereen) { opacity: .3; }
body[data-stroom="werkgever"] .dg-chip.dg-werkgever,
body[data-stroom="medewerker"] .dg-chip.dg-medewerker,
body[data-stroom="uitvoerder"] .dg-chip.dg-uitvoerder,
body[data-stroom="bond"] .dg-chip.dg-bond {
    opacity: 1;
    box-shadow: 0 4px 14px rgba(15, 45, 75, .3);
}

/* ---------- De stroomlijn langs relevante secties ---------- */
section[data-stromen] { position: relative; }
section[data-stromen]::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    opacity: 0;
    transition: opacity .4s ease;
}
body[data-stroom="werkgever"] section[data-stromen~="werkgever"]::before { background: var(--dg-werkgever); opacity: 1; }
body[data-stroom="medewerker"] section[data-stromen~="medewerker"]::before { background: var(--dg-medewerker); opacity: 1; }
body[data-stroom="uitvoerder"] section[data-stromen~="uitvoerder"]::before { background: var(--dg-uitvoerder); opacity: 1; }
body[data-stroom="bond"] section[data-stromen~="bond"]::before { background: var(--dg-bond); opacity: 1; }
body[data-stroom="werkgever"] section[data-stromen~="iedereen"]::before,
body[data-stroom="medewerker"] section[data-stromen~="iedereen"]::before,
body[data-stroom="uitvoerder"] section[data-stromen~="iedereen"]::before,
body[data-stroom="bond"] section[data-stromen~="iedereen"]::before { background: var(--c-grey); opacity: .35; }

/* ---------- Sticky stroomindicator ---------- */
.stroom-indicator {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 60;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--c-white);
    color: var(--c-navy);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 12px 10px 16px;
    border-radius: 999px;
    box-shadow: 0 8px 30px rgba(15, 45, 75, .25);
}
.stroom-indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--c-teal);
}
.stroom-indicator button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: none;
    border-radius: 50%;
    background: var(--c-mint);
    color: var(--c-navy);
    cursor: pointer;
    transition: background-color .2s ease, color .2s ease;
}
.stroom-indicator button:hover { background: var(--c-orange); color: var(--c-white); }
