/* ============================================================
   STEVIG IN JE SCHOENEN — Main Stylesheet
   ============================================================ */

/* --- CSS Variables --- */
:root {
    --sijs-orange: #E8621C;
    --sijs-orange-dark: #C94F12;
    --sijs-orange-light: #FF8A4C;
    --sijs-navy: #1A2744;
    --sijs-navy-light: #2A3D5E;
    --sijs-cream: #FFF8F2;
    --sijs-warm-white: #FFFDFB;
    --sijs-green: #2D8B4E;
    --sijs-green-light: #3DAF63;
    --sijs-text: #2C2C2C;
    --sijs-text-light: #5A5A5A;
    --sijs-shadow: 0 4px 30px rgba(26, 39, 68, 0.08);
    --sijs-shadow-lg: 0 12px 50px rgba(26, 39, 68, 0.12);
}

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

body.page-template-template-stevig {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    color: var(--sijs-text);
    background: var(--sijs-warm-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* WP Admin bar offset */
body.admin-bar .sijs-nav { top: 32px; }
@media screen and (max-width: 782px) {
    body.admin-bar .sijs-nav { top: 46px; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.sijs-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 1.1rem 2rem;
    transition: all 0.4s ease;
    background: transparent;
}

.sijs-nav.scrolled {
    background: rgba(255, 253, 251, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    padding: 0.65rem 2rem;
}

.sijs-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ============================================================
   FLOATING LOGO — fixed, linksboven, transparant
   ============================================================ */
.sijs-floating-logo {
    position: fixed;
    top: 1.2rem;
    left: 1.5rem;
    z-index: 10000;
    pointer-events: auto;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

body.admin-bar .sijs-floating-logo { top: calc(32px + 1.2rem); }
@media screen and (max-width: 782px) {
    body.admin-bar .sijs-floating-logo { top: calc(46px + 1.2rem); }
}

.sijs-floating-logo a {
    display: block;
    line-height: 0;
}

.sijs-floating-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.35));
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Kleiner bij scrollen */
.sijs-floating-logo.shrink img {
    height: 55px;
}

@media (max-width: 600px) {
    .sijs-floating-logo img { height: 60px; }
    .sijs-floating-logo.shrink img { height: 42px; }
    .sijs-floating-logo { top: 0.8rem; left: 0.8rem; }
}

/* Nav spacer to push links to the right */
.sijs-nav-spacer {
    width: 120px; /* reserveer ruimte voor het logo */
    flex-shrink: 0;
}

.sijs-nav-links {
    display: flex;
    gap: 2.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.sijs-nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
}

.sijs-nav.scrolled .sijs-nav-links a { color: var(--sijs-text-light); }

.sijs-nav-links a:hover { color: var(--sijs-orange) !important; }

.sijs-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--sijs-orange);
    transition: width 0.3s;
}

.sijs-nav-links a:hover::after { width: 100%; }

/* Mobile menu toggle */
.sijs-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.sijs-nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s;
    border-radius: 2px;
}

.sijs-nav.scrolled .sijs-nav-toggle span { background: var(--sijs-navy); }

/* ============================================================
   HERO
   ============================================================ */
.sijs-hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--sijs-navy);
}

.sijs-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

/* Gradient overlay (always present) */
.sijs-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(232, 98, 28, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(45, 139, 78, 0.1) 0%, transparent 50%),
        linear-gradient(160deg, rgba(26, 39, 68, 0.55) 0%, rgba(15, 26, 48, 0.6) 40%, rgba(26, 39, 68, 0.5) 100%);
}

/* If no image, full gradient */
.sijs-hero-bg.no-image {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(232, 98, 28, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 30%, rgba(45, 139, 78, 0.15) 0%, transparent 50%),
        linear-gradient(160deg, #1A2744 0%, #0F1A30 40%, #1A2744 100%);
}

.sijs-hero-bg.no-image::after { display: none; }

.sijs-hero-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.sijs-hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: white;
}

.sijs-hero-shape:nth-child(1) { width: 600px; height: 600px; top: -200px; right: -100px; }
.sijs-hero-shape:nth-child(2) { width: 400px; height: 400px; bottom: -150px; left: -50px; }
.sijs-hero-shape:nth-child(3) { width: 200px; height: 200px; top: 30%; left: 10%; opacity: 0.04; }

.sijs-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
    animation: sijsHeroFadeIn 1.2s ease-out;
}

@keyframes sijsHeroFadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.sijs-hero-badge {
    display: inline-block;
    background: rgba(232, 98, 28, 0.2);
    border: 1px solid rgba(232, 98, 28, 0.35);
    color: var(--sijs-orange-light);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.sijs-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    padding: 0;
}

.sijs-hero h1 em {
    font-style: italic;
    color: var(--sijs-orange-light);
}

.sijs-hero-sub {
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    line-height: 1.8;
}

.sijs-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--sijs-orange);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(232, 98, 28, 0.35);
    border: none;
    cursor: pointer;
}

.sijs-hero-cta:hover {
    background: var(--sijs-orange-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(232, 98, 28, 0.45);
}

.sijs-hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: sijsScrollBounce 2s infinite;
}

@keyframes sijsScrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   SHARED SECTION STYLES
   ============================================================ */
.sijs-section {
    position: relative;
}

.sijs-section-padding {
    padding: 7rem 2rem;
}

.sijs-container {
    max-width: 1100px;
    margin: 0 auto;
}

.sijs-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--sijs-orange);
    margin-bottom: 1rem;
}

.sijs-title {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--sijs-text);
}

.sijs-text {
    font-size: 1.1rem;
    color: var(--sijs-text-light);
    max-width: 700px;
    line-height: 1.85;
}

/* ============================================================
   PARALLAX DIVIDERS
   ============================================================ */
.sijs-parallax {
    height: 45vh;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sijs-parallax-bg {
    position: absolute;
    inset: -20%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.sijs-parallax-bg.gradient-navy {
    background: linear-gradient(135deg, #1A2744 0%, #0F1A30 100%);
}

.sijs-parallax-bg.gradient-orange {
    background: linear-gradient(135deg, var(--sijs-orange-dark) 0%, var(--sijs-orange) 100%);
}

/* When a background image is set */
.sijs-parallax-bg.has-image {
    filter: brightness(0.35);
}

.sijs-parallax-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 0 2rem;
}

.sijs-parallax-content .sijs-stat {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    display: block;
    margin-bottom: 0.5rem;
}

.sijs-parallax-content .sijs-stat-label {
    font-size: 1.1rem;
    opacity: 0.8;
    font-weight: 300;
}

.sijs-parallax-content .sijs-quote {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    line-height: 1.4;
}

/* ============================================================
   WAT SECTION
   ============================================================ */
.sijs-wat {
    background: var(--sijs-warm-white);
}

.sijs-wat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
}

.sijs-wat-cards {
    display: grid;
    gap: 1.2rem;
}

.sijs-wat-card {
    background: white;
    border-radius: 16px;
    padding: 1.8rem;
    box-shadow: var(--sijs-shadow);
    border-left: 4px solid var(--sijs-orange);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sijs-wat-card:nth-child(2) { border-left-color: var(--sijs-green); }
.sijs-wat-card:nth-child(3) { border-left-color: var(--sijs-navy); }

.sijs-wat-card:hover {
    transform: translateX(6px);
    box-shadow: var(--sijs-shadow-lg);
}

.sijs-wat-card-icon { font-size: 1.8rem; margin-bottom: 0.8rem; }

.sijs-wat-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: var(--sijs-navy);
}

.sijs-wat-card p {
    font-size: 0.95rem;
    color: var(--sijs-text-light);
    line-height: 1.65;
    margin: 0;
}

.sijs-wat-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sijs-doelgroep-card {
    background: linear-gradient(135deg, var(--sijs-navy) 0%, var(--sijs-navy-light) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    color: white;
}

.sijs-doelgroep-card .sijs-card-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    font-weight: 600;
}

.sijs-doelgroep-card h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.6rem;
    margin: 0.8rem 0;
    color: white;
}

.sijs-doelgroep-card p {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.7;
    margin: 0;
}

.sijs-monitoring-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--sijs-shadow);
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.sijs-monitoring-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: rgba(45, 139, 78, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.sijs-monitoring-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--sijs-navy);
    margin-bottom: 0.2rem;
}

.sijs-monitoring-card p {
    font-size: 0.85rem;
    color: var(--sijs-text-light);
    margin: 0;
}

/* ============================================================
   WAAROM SECTION
   ============================================================ */
.sijs-waarom {
    background: var(--sijs-navy);
    color: white;
    position: relative;
    overflow: hidden;
}

.sijs-waarom::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(232, 98, 28, 0.08);
    pointer-events: none;
}

.sijs-waarom .sijs-title { color: white; }
.sijs-waarom .sijs-text { color: rgba(255, 255, 255, 0.7); }

.sijs-waarom-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.sijs-waarom-stat {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s;
}

.sijs-waarom-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
}

.sijs-waarom-stat .sijs-number {
    font-family: 'DM Serif Display', serif;
    font-size: 3rem;
    color: var(--sijs-orange-light);
    display: block;
    margin-bottom: 0.5rem;
}

.sijs-waarom-stat .sijs-stat-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.sijs-waarom-reasons {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.sijs-reason {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.sijs-reason-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(232, 98, 28, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.sijs-reason h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: white;
}

.sijs-reason p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   HOE SECTION
   ============================================================ */
.sijs-hoe {
    background: var(--sijs-cream);
}

.sijs-timeline {
    margin-top: 3.5rem;
    position: relative;
}

.sijs-timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--sijs-orange), var(--sijs-green), var(--sijs-navy));
    border-radius: 3px;
}

.sijs-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.sijs-step-dot {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--sijs-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--sijs-orange);
    box-shadow: var(--sijs-shadow);
    z-index: 1;
}

.sijs-step:nth-child(2) .sijs-step-dot { border-color: var(--sijs-green); color: var(--sijs-green); }
.sijs-step:nth-child(3) .sijs-step-dot { border-color: var(--sijs-navy); color: var(--sijs-navy); }

.sijs-step-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--sijs-shadow);
    flex: 1;
    transition: transform 0.3s;
}

.sijs-step-content:hover { transform: translateY(-3px); }

.sijs-step-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--sijs-navy);
    margin-bottom: 0.5rem;
}

.sijs-step-content p {
    color: var(--sijs-text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.sijs-step-tag {
    display: inline-block;
    background: var(--sijs-cream);
    color: var(--sijs-orange);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    margin-top: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sijs-step:nth-child(2) .sijs-step-tag { color: var(--sijs-green); }
.sijs-step:nth-child(3) .sijs-step-tag { color: var(--sijs-navy); }

/* ============================================================
   CTA SECTION
   ============================================================ */
.sijs-cta {
    background: linear-gradient(135deg, var(--sijs-orange) 0%, var(--sijs-orange-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sijs-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.sijs-cta::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -80px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.sijs-cta-content {
    position: relative;
    z-index: 2;
}

.sijs-cta .sijs-label { color: rgba(255, 255, 255, 0.7); }
.sijs-cta .sijs-title { color: white; max-width: 600px; margin-left: auto; margin-right: auto; }
.sijs-cta .sijs-text { color: rgba(255, 255, 255, 0.85); margin: 0 auto 2.5rem; font-size: 1.15rem; }

.sijs-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: white;
    color: var(--sijs-orange);
    padding: 1.2rem 3rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
}

.sijs-cta-button:hover {
    color: var(--sijs-orange);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.2);
}

.sijs-cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.sijs-cta-button:hover svg { transform: translateX(4px); }

.sijs-cta-sub {
    margin-top: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

/* ============================================================
   PARTNERS
   ============================================================ */
.sijs-partners {
    background: var(--sijs-warm-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.sijs-partners-header {
    text-align: center;
}

.sijs-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.sijs-partner {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--sijs-shadow);
    transition: all 0.3s;
}

.sijs-partner:hover {
    transform: translateY(-4px);
    box-shadow: var(--sijs-shadow-lg);
}

.sijs-partner-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.sijs-partner:nth-child(1) .sijs-partner-icon { background: rgba(232, 98, 28, 0.1); }
.sijs-partner:nth-child(2) .sijs-partner-icon { background: rgba(26, 39, 68, 0.1); }
.sijs-partner:nth-child(3) .sijs-partner-icon { background: rgba(45, 139, 78, 0.1); }
.sijs-partner:nth-child(4) .sijs-partner-icon { background: rgba(232, 98, 28, 0.1); }

/* Partner logo images */
.sijs-partner-icon img {
    max-width: 48px;
    max-height: 48px;
    object-fit: contain;
}

.sijs-partner h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sijs-navy);
    margin-bottom: 0.4rem;
}

.sijs-partner p {
    font-size: 0.85rem;
    color: var(--sijs-text-light);
    line-height: 1.5;
    margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.sijs-footer {
    background: var(--sijs-navy);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    padding: 2.5rem 2rem;
    font-size: 0.85rem;
}

.sijs-footer a {
    color: var(--sijs-orange-light);
    text-decoration: none;
    transition: color 0.3s;
}

.sijs-footer a:hover { color: white; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.sijs-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.sijs-fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* stagger child animations */
.sijs-fade-up.visible .sijs-wat-card:nth-child(1) { transition-delay: 0.05s; }
.sijs-fade-up.visible .sijs-wat-card:nth-child(2) { transition-delay: 0.15s; }
.sijs-fade-up.visible .sijs-wat-card:nth-child(3) { transition-delay: 0.25s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .sijs-wat-grid { grid-template-columns: 1fr; gap: 2rem; }
    .sijs-waarom-stats { grid-template-columns: 1fr; }
    .sijs-waarom-reasons { grid-template-columns: 1fr; }
    .sijs-partners-grid { grid-template-columns: 1fr 1fr; }

    .sijs-nav-links { display: none; }
    .sijs-nav-toggle { display: block; }

    .sijs-nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 253, 251, 0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem 2rem;
        gap: 1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .sijs-nav-links.open a { color: var(--sijs-text) !important; }
}

@media (max-width: 600px) {
    .sijs-section-padding { padding: 4rem 1.2rem; }
    .sijs-partners-grid { grid-template-columns: 1fr; }
    .sijs-step { flex-direction: column; gap: 1rem; }
    .sijs-timeline::before { display: none; }
    .sijs-hero { min-height: 600px; }
    .sijs-waarom-stat .sijs-number { font-size: 2.2rem; }
}

/* Parallax fix for iOS */
@supports (-webkit-touch-callout: none) {
    .sijs-parallax-bg {
        background-attachment: scroll;
    }
}
