/* ============================================
   HELDERHEID ZORG - Main Stylesheet v2
   Organisch / Warm / Vol beweging
   ============================================ */

:root {
    /* Diepblauw (alleen menu + footer) */
    --c-blue-deep: #0d2a52;
    --c-blue: #103466;
    --c-blue-soft: #1a4583;
    
    /* Zachte blauwen voor secties */
    --c-blue-mist: #d6dde9;
    --c-blue-pale: #e8edf4;
    --c-blue-cloud: #f0f3f8;
    
    /* Gele tinten */
    --c-yellow: #f5c945;
    --c-yellow-warm: #e8b835;
    --c-yellow-soft: #fce5a0;
    --c-yellow-cream: #fcefc4;
    
    /* Warme tinten */
    --c-cream: #f6efe1;
    --c-cream-warm: #efe4cb;
    --c-sand: #e6d5b3;
    --c-peach: #f5d4b8;
    --c-peach-soft: #fce6d4;
    
    /* Accenten */
    --c-terracotta: #c5704a;
    --c-terracotta-soft: #e8a888;
    --c-sage: #7a8a6a;
    --c-sage-soft: #c4cdb4;
    --c-rose: #d8a59a;
    --c-rose-soft: #eccfc7;
    --c-mint: #b8d4c4;
    
    /* Tekst */
    --c-text-on-cream: #1a2440;
    --c-text-on-cream-soft: #4a5878;
    --c-text-on-blue: #f6efe1;
    --c-text-on-blue-soft: rgba(246, 239, 225, 0.7);
    
    /* Layout */
    --container: 1440px;
    --gutter: clamp(1.5rem, 3vw, 3rem);
    
    /* Typo */
    --f-display: 'Fraunces', Georgia, serif;
    --f-body: 'Manrope', system-ui, sans-serif;
    --f-mono: 'JetBrains Mono', monospace;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--f-body);
    background: var(--c-cream);
    color: var(--c-text-on-cream);
    font-size: 17px;
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 1rem var(--gutter);
    background: rgba(13, 42, 82, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(245, 201, 69, 0.15);
    transition: transform 0.4s ease;
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
    max-width: var(--container);
    margin: 0 auto;
}

.logo-link {
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}
.logo-img {
    height: 40px;
    width: auto;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.logo-link:hover .logo-img { transform: scale(1.08) rotate(-4deg); }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    color: var(--c-cream);
    font-family: var(--f-display);
}
.logo-text-main {
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    font-style: italic;
}
.logo-text-sub {
    font-family: var(--f-mono);
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    color: var(--c-yellow);
    text-transform: uppercase;
    margin-top: 0.2rem;
    font-style: normal;
    font-weight: 500;
}

.menu-trigger {
    background: none; border: none;
    color: var(--c-cream);
    font-family: var(--f-mono);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    font-weight: 500;
    cursor: pointer;
    display: flex; align-items: center; gap: 0.75rem;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    transition: background 0.3s;
}
.menu-trigger:hover { background: rgba(245, 201, 69, 0.1); }

.menu-trigger-icon { position: relative; width: 18px; height: 14px; display: inline-block; }
.menu-line {
    position: absolute; left: 0;
    width: 100%; height: 1.5px;
    background: var(--c-cream);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.menu-line-1 { top: 3px; }
.menu-line-2 { bottom: 3px; }

body.menu-open .menu-line-1 { top: 50%; transform: translateY(-50%) rotate(45deg); background: var(--c-yellow); }
body.menu-open .menu-line-2 { bottom: 50%; transform: translateY(50%) rotate(-45deg); background: var(--c-yellow); }

.cta-header {
    justify-self: end;
    background: var(--c-yellow);
    color: var(--c-blue-deep);
    font-family: var(--f-mono);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    padding: 0.85rem 1.4rem;
    border-radius: 100px;
    display: inline-flex; align-items: center; gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.cta-header:hover {
    background: var(--c-cream);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -10px rgba(245, 201, 69, 0.6);
}
.cta-plus { font-size: 1.2rem; line-height: 1; }
.header.hidden { transform: translateY(-100%); }

/* ============================================
   MENU OVERLAY (blauw blijft)
   ============================================ */
.menu-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 90;
    background: rgba(13, 42, 82, 0.45);
    backdrop-filter: blur(40px) saturate(160%);
    -webkit-backdrop-filter: blur(40px) saturate(160%);
    padding: calc(80px + var(--gutter)) var(--gutter) var(--gutter);
    opacity: 0; visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
    display: flex; flex-direction: column;
    overflow-y: auto;
}
.menu-overlay.is-open { opacity: 1; visibility: visible; }

/* Drijvende cirkels in menu */
.menu-overlay::before {
    content: '';
    position: absolute;
    top: 10%; left: -5%;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 201, 69, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: float-slow 20s ease-in-out infinite;
}
.menu-overlay::after {
    content: '';
    position: absolute;
    bottom: 10%; right: -10%;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 112, 74, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: float-slow 25s ease-in-out infinite reverse;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -50px) scale(1.1); }
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    flex: 1;
    padding-top: 2rem;
    position: relative;
    z-index: 1;
}

.menu-col {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s, transform 0.6s;
}
.menu-overlay.is-open .menu-col { opacity: 1; transform: translateY(0); }
.menu-overlay.is-open .menu-col-nav { transition-delay: 0.15s; }
.menu-overlay.is-open .menu-col-contact { transition-delay: 0.25s; }
.menu-overlay.is-open .menu-col-visual { transition-delay: 0.35s; }

.menu-link {
    display: flex; align-items: center; gap: 1rem;
    font-family: var(--f-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--c-cream);
    line-height: 1.05;
    padding: 0.6rem 0;
    transition: color 0.3s, transform 0.3s;
    font-style: italic;
    letter-spacing: -0.02em;
}
.menu-link:hover { color: var(--c-yellow); transform: translateX(8px); }

.menu-marker {
    width: 10px; height: 10px;
    background: var(--c-yellow);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s, transform 0.3s;
}
.menu-link:hover .menu-marker { opacity: 1; transform: scale(1); }

.menu-col-contact { padding-top: 1.5rem; }

.menu-label {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--c-yellow);
    margin-bottom: 1rem;
    font-weight: 500;
}
.menu-label-spacer { margin-top: 2rem; }
.menu-text { color: var(--c-cream); font-size: 1rem; line-height: 1.7; }
.menu-text-spacer { color: var(--c-cream); font-size: 1rem; line-height: 1.7; margin-top: 1.5rem; }

.menu-status {
    margin-top: 2.5rem;
    padding: 0.85rem 1.2rem;
    background: rgba(245, 201, 69, 0.1);
    border: 1px solid rgba(245, 201, 69, 0.3);
    border-radius: 100px;
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--c-yellow);
}

.status-dot {
    width: 8px; height: 8px;
    background: var(--c-yellow);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.menu-col-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.menu-card {
    position: relative;
    aspect-ratio: 3/4;
    background: var(--c-blue);
    border-radius: 32px;
    overflow: hidden;
    display: flex; flex-direction: column; justify-content: space-between;
    padding: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(245, 201, 69, 0.2);
}
.menu-card:hover { transform: translateY(-6px) rotate(-1deg); }

.menu-card-bg { position: absolute; inset: 0; z-index: 0; }
.menu-card-1 .menu-card-bg { background: linear-gradient(135deg, var(--c-yellow) 0%, var(--c-yellow-warm) 100%); }
.menu-card-2 .menu-card-bg { background: linear-gradient(135deg, var(--c-peach) 0%, var(--c-rose) 100%); }

.menu-card-icon {
    position: relative; z-index: 1;
    width: 56px; height: 56px;
    background: rgba(13, 42, 82, 0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--c-blue-deep);
}
.menu-card-icon svg { width: 28px; height: 28px; }

.menu-card-label {
    position: relative; z-index: 1;
    font-family: var(--f-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--c-blue-deep);
    font-weight: 600;
}

.menu-footer {
    display: flex; justify-content: space-between; align-items: center;
    padding: 2rem 0 1rem;
    border-top: 1px solid rgba(246, 239, 225, 0.1);
    margin-top: 2rem;
    max-width: var(--container);
    margin-left: auto; margin-right: auto;
    width: 100%;
    flex-wrap: wrap; gap: 1rem;
    position: relative; z-index: 1;
}
.menu-footer-text {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--c-cream);
    display: flex; align-items: center; gap: 0.6rem;
}
.menu-marker-small {
    width: 8px; height: 8px;
    background: var(--c-yellow);
    border-radius: 50%;
    display: inline-block;
}

/* ============================================
   MAIN
   ============================================ */
.main { padding-top: 80px; }

/* ============================================
   HERO - met blobs ipv strakke vlakken
   ============================================ */
.hero {
    min-height: 100vh;
    padding: 4rem var(--gutter) 6rem;
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-peach-soft) 100%);
}

/* Drijvende blobs op de achtergrond */
.hero-blob-1 {
    position: absolute;
    top: -10%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle at 30% 30%, var(--c-yellow-soft) 0%, transparent 65%);
    filter: blur(30px);
    z-index: 0;
    animation: blob-float 18s ease-in-out infinite;
}
.hero-blob-2 {
    position: absolute;
    bottom: -10%; left: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle at 70% 70%, var(--c-peach) 0%, transparent 60%);
    filter: blur(40px);
    z-index: 0;
    animation: blob-float 22s ease-in-out infinite reverse;
}
.hero-blob-3 {
    position: absolute;
    top: 30%; left: 40%;
    width: 350px; height: 350px;
    background: radial-gradient(circle, var(--c-rose-soft) 0%, transparent 70%);
    filter: blur(50px);
    z-index: 0;
    animation: blob-float 25s ease-in-out infinite;
    animation-delay: -5s;
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(50px, -30px) scale(1.1) rotate(120deg); }
    66% { transform: translate(-30px, 40px) scale(0.95) rotate(240deg); }
}

/* Decoratieve ring rondom hero */
.hero-ring {
    position: absolute;
    top: 15%; right: 8%;
    width: 180px; height: 180px;
    border: 2px dashed rgba(197, 112, 74, 0.25);
    border-radius: 50%;
    z-index: 0;
    animation: rotate-slow 40s linear infinite;
}
.hero-ring-2 {
    position: absolute;
    bottom: 20%; left: 5%;
    width: 120px; height: 120px;
    border: 1.5px solid var(--c-yellow);
    border-radius: 50%;
    z-index: 0;
    opacity: 0.4;
    animation: rotate-slow 30s linear infinite reverse;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    font-family: var(--f-mono);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    color: var(--c-terracotta);
    margin-bottom: 2rem;
    display: inline-flex; align-items: center; gap: 0.7rem;
}

.hero-title {
    font-family: var(--f-display);
    font-size: clamp(3rem, 7.5vw, 7rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.035em;
    color: var(--c-blue-deep);
    margin-bottom: 2rem;
}
.hero-title em { font-style: italic; color: var(--c-blue-deep); font-weight: 400; }

.hero-title .underline-word {
    position: relative;
    display: inline-block;
}
.hero-title .underline-word::after {
    content: '';
    position: absolute;
    bottom: 0.08em; left: -4%;
    width: 108%; height: 18px;
    background: var(--c-terracotta);
    z-index: -1;
    border-radius: 50%;
    transform: rotate(-1deg);
}

.hero-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--c-text-on-cream-soft);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-actions {
    display: flex; gap: 1rem;
    flex-wrap: wrap; align-items: center;
}

/* Buttons */
.btn-primary {
    background: var(--c-blue-deep);
    color: var(--c-cream);
    padding: 1.1rem 1.8rem;
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 0.85rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none; cursor: pointer;
    position: relative; overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    background: var(--c-yellow);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    z-index: 0;
}
.btn-primary:hover::before { width: 400px; height: 400px; }
.btn-primary:hover { color: var(--c-blue-deep); transform: translateY(-3px); box-shadow: 0 14px 28px -10px rgba(13, 42, 82, 0.4); }
.btn-primary span, .btn-primary svg { position: relative; z-index: 1; }
.btn-primary svg { width: 16px; height: 16px; transition: transform 0.3s; }
.btn-primary:hover svg { transform: translate(3px, -3px); }

.btn-secondary {
    background: transparent;
    color: var(--c-blue-deep);
    padding: 1.1rem 1.8rem;
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    display: inline-flex; align-items: center; gap: 0.85rem;
    border: 1.5px solid var(--c-blue-deep);
    transition: all 0.3s;
}
.btn-secondary:hover {
    background: var(--c-blue-deep);
    color: var(--c-cream);
    transform: translateY(-3px);
}
.btn-secondary svg { width: 16px; height: 16px; }

/* Hero visual rechts - asymmetrische cirkel-card */
.hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    perspective: 1200px;
}

.hero-card {
    position: relative;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--c-blue-deep) 0%, var(--c-blue) 100%);
    border-radius: 45% 55% 50% 50% / 50% 50% 45% 55%;
    overflow: hidden;
    padding: 5rem 4rem;
    color: var(--c-cream);
    display: flex; flex-direction: column; justify-content: space-between;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.8s;
    transform-style: preserve-3d;
    box-shadow: 0 30px 60px -20px rgba(13, 42, 82, 0.4);
}
.hero-card:hover {
    border-radius: 55% 45% 50% 50% / 50% 50% 55% 45%;
}

.hero-card-tag {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--c-yellow);
    display: flex; align-items: center; gap: 0.6rem;
}

.hero-card-quote {
    font-family: var(--f-display);
    font-size: clamp(1.2rem, 1.8vw, 1.6rem);
    font-weight: 400;
    line-height: 1.3;
    font-style: italic;
    color: var(--c-cream);
}
.hero-card-quote::before {
    content: '"';
    font-size: 3.5rem;
    color: var(--c-yellow);
    line-height: 0.3;
    display: block;
    margin-bottom: 0.8rem;
}

.hero-card-cite {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--c-text-on-blue-soft);
}
.hero-card-cite strong { color: var(--c-yellow); display: block; font-weight: 500; margin-bottom: 0.2rem; }

.hero-card-deco {
    position: absolute;
    inset: 18px;
    border: 1px dashed rgba(245, 201, 69, 0.3);
    border-radius: 45% 55% 50% 50% / 50% 50% 45% 55%;
    pointer-events: none; z-index: 1;
    animation: morph 12s ease-in-out infinite;
}

@keyframes morph {
    0%, 100% { border-radius: 45% 55% 50% 50% / 50% 50% 45% 55%; }
    50% { border-radius: 55% 45% 50% 50% / 50% 50% 55% 45%; }
}

.hero-floating-tag {
    position: absolute;
    background: var(--c-cream);
    color: var(--c-blue-deep);
    padding: 0.8rem 1.2rem;
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    box-shadow: 0 18px 40px -12px rgba(13, 42, 82, 0.3);
    display: flex; align-items: center; gap: 0.5rem;
    z-index: 2;
}
.hero-floating-tag svg { width: 14px; height: 14px; color: var(--c-terracotta); }
.hero-floating-tag-1 { top: -1.5rem; left: -2rem; transform: rotate(-4deg); animation: float-tag 5s ease-in-out infinite; }
.hero-floating-tag-2 { bottom: 2rem; right: -2rem; transform: rotate(3deg); background: var(--c-yellow); animation: float-tag 5s ease-in-out infinite 1.5s; }

@keyframes float-tag {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50% { transform: translateY(-12px) rotate(-2deg); }
}

.hero-scroll {
    position: absolute;
    bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    color: var(--c-terracotta);
    display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
    z-index: 2;
}
.scroll-line {
    width: 1px; height: 40px;
    background: var(--c-terracotta);
    animation: scroll-down 2s ease-in-out infinite;
    transform-origin: top;
}
@keyframes scroll-down {
    0%, 100% { transform: scaleY(0.3); opacity: 0.3; }
    50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================
   SECTIES (algemeen)
   ============================================ */
.section {
    padding: 8rem var(--gutter);
    position: relative;
    overflow: hidden;
}

.section-header {
    max-width: 900px;
    margin: 0 auto 5rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    font-family: var(--f-mono);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    color: var(--c-terracotta);
    margin-bottom: 1.5rem;
    display: inline-flex; align-items: center; gap: 0.7rem;
}

.section-title {
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--c-blue-deep);
    margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--c-blue-deep); }

.section-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--c-text-on-cream-soft);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   PILLARS sectie - meer kleur, organische vormen
   ============================================ */
.pillars {
    background: var(--c-cream);
    position: relative;
}

/* Decoratieve cirkels in achtergrond */
.pillars::before {
    content: '';
    position: absolute;
    top: 10%; left: -8%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--c-yellow-soft) 0%, transparent 65%);
    filter: blur(40px);
    opacity: 0.6;
}
.pillars::after {
    content: '';
    position: absolute;
    bottom: 5%; right: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--c-peach) 0%, transparent 60%);
    filter: blur(50px);
    opacity: 0.5;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pillar {
    background: var(--c-cream);
    border-radius: 32px;
    padding: 2.5rem;
    border: 1px solid var(--c-sand);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.6s, border-radius 0.6s;
    transform-style: preserve-3d;
    position: relative;
    overflow: hidden;
}

/* Verschillende kleurvarianten voor pillars - meer leven */
.pillar:nth-child(6n+1) { background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-yellow-cream) 100%); }
.pillar:nth-child(6n+2) { background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-peach-soft) 100%); }
.pillar:nth-child(6n+3) { background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-rose-soft) 100%); }
.pillar:nth-child(6n+4) { background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-mint) 100%); }
.pillar:nth-child(6n+5) { background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-sage-soft) 100%); }

.pillar:hover {
    transform: translateY(-12px) rotate(-1deg);
    box-shadow: 0 30px 60px -20px rgba(13, 42, 82, 0.2);
    border-radius: 40px;
}

/* Decoratieve cirkel rechtsboven in pillar */
.pillar::after {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(245, 201, 69, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: transform 0.6s;
}
.pillar:hover::after { transform: scale(1.5); }

.pillar-num {
    font-family: var(--f-display);
    font-size: 5rem;
    font-style: italic;
    font-weight: 300;
    color: var(--c-terracotta);
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.7;
}

.pillar-title {
    font-family: var(--f-display);
    font-size: 1.65rem;
    font-weight: 500;
    color: var(--c-blue-deep);
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative; z-index: 1;
}

.pillar-desc {
    color: var(--c-text-on-cream-soft);
    line-height: 1.7;
    font-size: 1rem;
    position: relative; z-index: 1;
}

.pillar-icon {
    position: absolute;
    top: 2rem; right: 2rem;
    width: 50px; height: 50px;
    background: var(--c-blue-deep);
    color: var(--c-yellow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    z-index: 2;
    transition: transform 0.4s;
}
.pillar:hover .pillar-icon { transform: rotate(15deg) scale(1.1); }
.pillar-icon svg { width: 22px; height: 22px; }

/* ============================================
   DIENSTEN block - lichter blauw, met blobs
   ============================================ */
.diensten-block {
    background: linear-gradient(135deg, var(--c-blue-mist) 0%, var(--c-blue-pale) 100%);
    color: var(--c-text-on-cream);
    overflow: hidden;
    position: relative;
}

.diensten-block::before {
    content: '';
    position: absolute;
    top: 10%; right: -5%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, var(--c-yellow-soft) 0%, transparent 60%);
    filter: blur(50px);
    pointer-events: none;
    opacity: 0.6;
}
.diensten-block::after {
    content: '';
    position: absolute;
    bottom: -10%; left: -5%;
    width: 450px; height: 450px;
    background: radial-gradient(circle, var(--c-peach) 0%, transparent 65%);
    filter: blur(60px);
    pointer-events: none;
    opacity: 0.5;
}

.diensten-block .section-eyebrow { color: var(--c-terracotta); }
.diensten-block .section-title { color: var(--c-blue-deep); }
.diensten-block .section-title em { color: var(--c-blue-deep); }
.diensten-block .section-lead { color: var(--c-text-on-cream-soft); }

.diensten-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: var(--container);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.dienst-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 32px;
    padding: 2.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), background 0.5s, border-radius 0.5s, box-shadow 0.5s;
    display: flex; flex-direction: column; gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

/* Kleur variatie per card */
.dienst-card:nth-child(4n+1) { background: linear-gradient(135deg, rgba(252, 229, 160, 0.5) 0%, rgba(255, 255, 255, 0.7) 100%); }
.dienst-card:nth-child(4n+2) { background: linear-gradient(135deg, rgba(245, 212, 184, 0.5) 0%, rgba(255, 255, 255, 0.7) 100%); }
.dienst-card:nth-child(4n+3) { background: linear-gradient(135deg, rgba(216, 165, 154, 0.4) 0%, rgba(255, 255, 255, 0.7) 100%); }
.dienst-card:nth-child(4n+4) { background: linear-gradient(135deg, rgba(184, 212, 196, 0.5) 0%, rgba(255, 255, 255, 0.7) 100%); }

.dienst-card:hover {
    transform: translateY(-10px) rotate(0.5deg);
    border-radius: 40px;
    box-shadow: 0 30px 60px -20px rgba(13, 42, 82, 0.15);
}

.dienst-card-top {
    display: flex; justify-content: space-between; align-items: flex-start;
    gap: 1rem;
}

.dienst-tag {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--c-blue-deep);
    padding: 0.4rem 0.9rem;
    background: var(--c-yellow);
    border-radius: 100px;
    font-weight: 600;
}

.dienst-icon {
    width: 56px; height: 56px;
    background: var(--c-blue-deep);
    color: var(--c-yellow);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s;
}
.dienst-card:hover .dienst-icon { transform: rotate(15deg) scale(1.1); }
.dienst-icon svg { width: 26px; height: 26px; }

.dienst-card h3 {
    font-family: var(--f-display);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--c-blue-deep);
    line-height: 1.15;
}
.dienst-card p {
    color: var(--c-text-on-cream-soft);
    line-height: 1.7;
}

.dienst-card-link {
    margin-top: auto;
    display: inline-flex; align-items: center; gap: 0.6rem;
    color: var(--c-terracotta);
    font-family: var(--f-mono);
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    padding-top: 1rem;
    border-top: 1px solid rgba(13, 42, 82, 0.1);
}
.dienst-card-link svg { width: 16px; height: 16px; transition: transform 0.3s; }
.dienst-card:hover .dienst-card-link svg { transform: translate(3px, -3px); }

/* ============================================
   QUOTE BLOCK - met grote cirkel achter
   ============================================ */
.quote-block {
    padding: 10rem var(--gutter);
    background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-yellow-cream) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Grote cirkel achter quote */
.quote-block::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 700px; height: 700px;
    border: 2px dashed rgba(197, 112, 74, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotate-slow 60s linear infinite;
}
.quote-block::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 500px; height: 500px;
    border: 1px solid rgba(245, 201, 69, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotate-slow 45s linear infinite reverse;
}

.quote-block-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }

.quote-mark {
    font-family: var(--f-display);
    font-size: 8rem;
    color: var(--c-terracotta);
    line-height: 0.3;
    margin-bottom: 2rem;
    font-style: italic;
}

.quote-text {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--c-blue-deep);
    font-style: italic;
    letter-spacing: -0.02em;
    margin-bottom: 2rem;
}

.quote-cite {
    font-family: var(--f-mono);
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--c-text-on-cream-soft);
}

/* ============================================
   PROCESS - stappen met gebogen verbindingen
   ============================================ */
.process {
    background: linear-gradient(180deg, var(--c-yellow-cream) 0%, var(--c-cream) 100%);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 20%; right: -5%;
    width: 350px; height: 350px;
    background: radial-gradient(circle, var(--c-rose-soft) 0%, transparent 70%);
    filter: blur(50px);
    opacity: 0.6;
}

.process-steps {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2.5rem;
    background: var(--c-cream);
    border-radius: 32px;
    border: 1px solid var(--c-sand);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:nth-child(odd):hover { transform: translateX(8px) rotate(-0.5deg); border-color: var(--c-yellow); border-radius: 40px 24px 40px 24px; }
.process-step:nth-child(even):hover { transform: translateX(-8px) rotate(0.5deg); border-color: var(--c-terracotta); border-radius: 24px 40px 24px 40px; }

.process-step-num {
    font-family: var(--f-display);
    font-size: 3.5rem;
    font-style: italic;
    color: var(--c-terracotta);
    line-height: 1;
}

.process-step-content h3 {
    font-family: var(--f-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--c-blue-deep);
    margin-bottom: 0.5rem;
}
.process-step-content p { color: var(--c-text-on-cream-soft); line-height: 1.6; }

.process-step-meta {
    font-family: var(--f-mono);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    color: var(--c-terracotta);
    padding: 0.5rem 1rem;
    background: var(--c-peach-soft);
    border-radius: 100px;
}

/* ============================================
   STATS - met cirkels en kleur
   ============================================ */
.stats {
    padding: 6rem var(--gutter);
    background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-blue-cloud) 100%);
    position: relative;
    overflow: hidden;
}
.stats::before {
    content: '';
    position: absolute;
    top: -20%; left: 50%;
    width: 800px; height: 800px;
    border: 1px solid var(--c-sand);
    border-radius: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
}

.stats-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    transition: all 0.5s;
}
.stat:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.8);
    border-radius: 40px 24px 40px 24px;
}

.stat-num {
    font-family: var(--f-display);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 400;
    color: var(--c-blue-deep);
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}
.stat-num em { font-style: italic; color: var(--c-blue-deep); }

.stat-label {
    font-family: var(--f-mono);
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    color: var(--c-text-on-cream-soft);
    text-transform: uppercase;
}

/* ============================================
   FOOTER BLOCK - donker blauw blijft (zoals gevraagd)
   ============================================ */
.footer-block {
    background: var(--c-blue-deep);
    color: var(--c-cream);
    position: relative;
    overflow: hidden;
    padding-top: 10rem;
}

.footer-block::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(245, 201, 69, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 80%, rgba(197, 112, 74, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

/* Decoratieve cirkel achter footer */
.footer-circle {
    position: absolute;
    top: 5%; right: 5%;
    width: 200px; height: 200px;
    border: 2px dashed rgba(245, 201, 69, 0.2);
    border-radius: 50%;
    animation: rotate-slow 40s linear infinite;
}

.footer-cta {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--gutter) 8rem;
    position: relative;
    z-index: 2;
}

.footer-eyebrow {
    font-family: var(--f-mono);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    color: var(--c-yellow);
    margin-bottom: 2rem;
    display: inline-flex; align-items: center; gap: 0.7rem;
}

.footer-headline {
    font-family: var(--f-display);
    font-size: clamp(2.5rem, 7vw, 6rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--c-cream);
    margin-bottom: 2rem;
}
.footer-headline em { font-style: italic; color: var(--c-yellow); }

.footer-sub {
    font-size: 1.2rem;
    color: var(--c-text-on-blue-soft);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.footer-cta-buttons {
    display: flex; gap: 1rem;
    justify-content: center; flex-wrap: wrap;
}
.footer-cta-buttons .btn-primary { background: var(--c-yellow); color: var(--c-blue-deep); }
.footer-cta-buttons .btn-primary::before { background: var(--c-cream); }
.footer-cta-buttons .btn-secondary { color: var(--c-cream); border-color: rgba(246, 239, 225, 0.3); }
.footer-cta-buttons .btn-secondary:hover { background: var(--c-cream); color: var(--c-blue-deep); border-color: var(--c-cream); }

.footer {
    padding: 4rem var(--gutter) 2rem;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(246, 239, 225, 0.1);
}

.footer-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-col-brand { max-width: 340px; }

.footer-logo-block {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}
.footer-logo { height: 50px; width: auto; }
.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    font-family: var(--f-display);
}
.footer-logo-text-main {
    font-size: 1.65rem;
    font-weight: 500;
    color: var(--c-cream);
    font-style: italic;
    letter-spacing: -0.02em;
}
.footer-logo-text-sub {
    font-family: var(--f-mono);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: var(--c-yellow);
    text-transform: uppercase;
    margin-top: 0.25rem;
    font-weight: 500;
}

.footer-tagline {
    color: var(--c-text-on-blue-soft);
    line-height: 1.6;
    font-family: var(--f-display);
    font-style: italic;
    font-size: 1.1rem;
}

.footer-label {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    color: var(--c-yellow);
    margin-bottom: 1.25rem;
}

.footer-link {
    display: block;
    color: var(--c-cream);
    padding: 0.35rem 0;
    transition: color 0.2s, transform 0.2s;
    font-size: 0.95rem;
}
.footer-link:hover { color: var(--c-yellow); transform: translateX(3px); }
.footer-link-static { color: var(--c-text-on-blue-soft); cursor: default; }
.footer-link-static:hover { color: var(--c-text-on-blue-soft); transform: none; }

.footer-bar {
    max-width: var(--container);
    margin: 0 auto;
    padding: 2rem 0 0;
    border-top: 1px solid rgba(246, 239, 225, 0.08);
    display: flex; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
}

.footer-copy {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    color: var(--c-text-on-blue-soft);
}

.footer-bg-text {
    position: absolute;
    bottom: -3.5vw; left: 50%;
    transform: translateX(-50%);
    font-family: var(--f-display);
    font-size: 25vw;
    font-weight: 400;
    color: rgba(245, 201, 69, 0.05);
    letter-spacing: -0.04em;
    line-height: 0.8;
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
    font-style: italic;
}

/* ============================================
   INTRO VIDEO OVERLAY (alleen homepage)
   ============================================ */
.intro-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: var(--c-blue-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.intro-overlay.is-hidden {
    opacity: 0;
    pointer-events: none;
}

.intro-overlay.is-removed {
    display: none;
}

.intro-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: var(--c-blue-deep);
}

.intro-skip {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(246, 239, 225, 0.1);
    color: var(--c-cream);
    border: 1px solid rgba(245, 201, 69, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.7rem 1.2rem;
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s;
    z-index: 10000;
}

.intro-skip:hover {
    background: var(--c-yellow);
    color: var(--c-blue-deep);
    border-color: var(--c-yellow);
    transform: translateY(-2px);
}

.intro-skip svg {
    width: 14px;
    height: 14px;
}

/* Body geen scroll tijdens intro */
body.intro-playing {
    overflow: hidden;
}

@media (max-width: 640px) {
    .intro-skip {
        top: 1rem;
        right: 1rem;
        padding: 0.55rem 1rem;
        font-size: 0.65rem;
    }
}

/* Hero image card - alternatief voor hero-card met foto */
.hero-image-card {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 45% 55% 50% 50% / 50% 50% 45% 55%;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), border-radius 0.8s;
    box-shadow: 0 30px 60px -20px rgba(13, 42, 82, 0.4);
    animation: morph 14s ease-in-out infinite;
}
.hero-image-card:hover {
    border-radius: 55% 45% 50% 50% / 50% 50% 55% 45%;
}
.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-image-card:hover img {
    transform: scale(1.08);
}

.hero-image-deco {
    position: absolute;
    inset: 18px;
    border: 1px dashed rgba(245, 201, 69, 0.5);
    border-radius: 45% 55% 50% 50% / 50% 50% 45% 55%;
    pointer-events: none;
    z-index: 2;
    animation: morph 14s ease-in-out infinite;
}

.hero-image-badge {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-yellow);
    color: var(--c-blue-deep);
    padding: 0.8rem 1.4rem;
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    box-shadow: 0 14px 30px -8px rgba(13, 42, 82, 0.35);
    z-index: 3;
}
.hero-image-badge svg {
    width: 14px; height: 14px;
}

/* ============================================
   AANPAK SECTIE - foto + tekst + pills (home pagina)
   ============================================ */
.aanpak-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.aanpak-image {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(13, 42, 82, 0.3);
    animation: morph-image-alt 14s ease-in-out infinite;
}
.aanpak-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.aanpak-image:hover img {
    transform: scale(1.05);
}
.aanpak-image-deco {
    position: absolute;
    inset: 18px;
    border: 1px dashed rgba(245, 201, 69, 0.5);
    border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
    pointer-events: none;
    z-index: 2;
    animation: morph-image-alt 14s ease-in-out infinite;
}

.aanpak-text-title {
    font-family: var(--f-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--c-blue-deep);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}
.aanpak-text-title em {
    font-style: italic;
    color: var(--c-blue-deep);
}

.aanpak-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--c-text-on-cream);
    margin-bottom: 1.2rem;
}

.aanpak-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0;
}
.aanpak-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 42, 82, 0.1);
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--c-blue-deep);
    letter-spacing: 0.05em;
    transition: all 0.3s;
}
.aanpak-pill:hover {
    background: var(--c-yellow);
    transform: translateY(-2px) rotate(-1deg);
    border-color: var(--c-yellow);
}
.aanpak-pill svg {
    width: 14px;
    height: 14px;
    color: var(--c-terracotta);
}

.aanpak-btn {
    margin-top: 1rem;
}

@media (max-width: 1024px) {
    .aanpak-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .aanpak-image {
        max-width: 480px;
        margin: 0 auto;
    }
}

/* ============================================
   AANPAK SECTIE EINDE
   ============================================ */

/* ============================================
   IMAGE-BREAK sectie (foto + tekst, herbruikbaar)
   ============================================ */
.image-break {
    padding: 8rem var(--gutter);
    background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-cream-warm) 100%);
    position: relative;
    overflow: hidden;
}

.image-break-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.image-break-text .section-eyebrow {
    margin-bottom: 1.5rem;
}

.image-break-text p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--c-text-on-cream);
    margin-bottom: 1.3rem;
}

.image-break-image {
    position: relative;
    aspect-ratio: 5/4;
    border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(13, 42, 82, 0.25);
    animation: morph-image-alt 16s ease-in-out infinite;
}
.image-break-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.image-break-image:hover img {
    transform: scale(1.05);
}
.image-break-image-deco {
    position: absolute;
    inset: 18px;
    border: 1px dashed rgba(245, 201, 69, 0.5);
    border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%;
    pointer-events: none;
    z-index: 2;
    animation: morph-image-alt 16s ease-in-out infinite;
}

@keyframes morph-image-alt {
    0%, 100% { border-radius: 50% 50% 45% 55% / 55% 45% 50% 50%; }
    50% { border-radius: 45% 55% 55% 45% / 50% 50% 55% 45%; }
}

@media (max-width: 1024px) {
    .image-break-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .image-break-image {
        max-width: 500px;
        margin: 0 auto;
    }
}
@media (max-width: 640px) {
    .image-break { padding: 5rem var(--gutter); }
}

/* ============================================
   OVER ONS - SPLIT SECTIES (tekst + foto)
   ============================================ */
.over-split {
    background: var(--c-cream);
    position: relative;
    overflow: hidden;
}

.over-split-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.over-split-reversed .over-split-grid {
    direction: rtl;
}
.over-split-reversed .over-split-grid > * {
    direction: ltr;
}

.over-split-text .section-eyebrow {
    margin-bottom: 1.5rem;
}

.section-title-inline {
    font-family: var(--f-display);
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--c-blue-deep);
    margin-bottom: 1.5rem;
}
.section-title-inline em {
    font-style: italic;
    color: var(--c-blue-deep);
}

.over-split-text p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--c-text-on-cream);
    margin-bottom: 1.3rem;
}

.over-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}
.over-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: var(--c-text-on-cream);
}
.over-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.55rem;
    width: 14px; height: 14px;
    background: var(--c-yellow);
    border-radius: 50%;
}

/* Image container met organische vorm */
.over-split-image {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 45% 55% 50% 50% / 50% 50% 45% 55%;
    overflow: hidden;
    box-shadow: 0 30px 60px -20px rgba(13, 42, 82, 0.25);
    animation: morph-image 14s ease-in-out infinite;
}

.over-split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.over-split-image:hover img {
    transform: scale(1.05);
}

.over-split-image-deco {
    position: absolute;
    inset: 18px;
    border: 1px dashed rgba(245, 201, 69, 0.6);
    border-radius: 45% 55% 50% 50% / 50% 50% 45% 55%;
    pointer-events: none;
    z-index: 2;
    animation: morph-image 14s ease-in-out infinite;
}

@keyframes morph-image {
    0%, 100% { border-radius: 45% 55% 50% 50% / 50% 50% 45% 55%; }
    50% { border-radius: 55% 45% 50% 50% / 50% 50% 55% 45%; }
}

/* Talen tags */
.over-talen-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.over-taal-tag {
    padding: 0.7rem 1.4rem;
    background: var(--c-yellow);
    color: var(--c-blue-deep);
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: transform 0.3s;
}
.over-taal-tag:hover {
    transform: translateY(-3px) rotate(-2deg);
}
.over-taal-tag:nth-child(2) {
    background: var(--c-peach);
    font-size: 1rem;
}
.over-taal-tag:nth-child(3) { background: var(--c-rose-soft); }
.over-taal-tag:nth-child(4) { background: var(--c-mint); }

/* ============================================
   OVER ONS - VISIE sectie (gecentreerd)
   ============================================ */
.over-vision {
    background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-cream-warm) 100%);
    position: relative;
    overflow: hidden;
}

.over-vision-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.over-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    text-align: left;
}

.over-vision-grid p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--c-text-on-cream);
}

.over-vision-quote {
    font-family: var(--f-display);
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-style: italic;
    color: var(--c-terracotta);
    line-height: 1.4;
    max-width: 800px;
    margin: 2rem auto 0;
    padding: 2rem 3rem;
    position: relative;
}

.over-vision-quote::before,
.over-vision-quote::after {
    content: '"';
    position: absolute;
    font-size: 4rem;
    color: var(--c-yellow);
    line-height: 0.4;
}
.over-vision-quote::before {
    top: 1.5rem; left: 0;
}
.over-vision-quote::after {
    bottom: 0; right: 0;
    transform: rotate(180deg);
}

@media (max-width: 1024px) {
    .over-split-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .over-split-reversed .over-split-grid {
        direction: ltr;
    }
    .over-split-image {
        max-width: 480px;
        margin: 0 auto;
    }
    .over-vision-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .over-split { padding: 5rem var(--gutter); }
    .over-vision-quote { padding: 2rem 1.5rem; font-size: 1.2rem; }
    .over-vision-quote::before { font-size: 3rem; }
}

/* ============================================
   DECORATIEVE VORMEN - halve cirkels & bochten
   ============================================ */

/* Halve cirkel - geel - rechts uit de pagina komend */
.decor-half-circle-yellow {
    position: absolute;
    width: 200px; height: 400px;
    background: var(--c-yellow);
    border-radius: 200px 0 0 200px;
    right: 0;
    opacity: 0.85;
    pointer-events: none;
    z-index: 0;
}

/* Halve cirkel - blauw - links uit de pagina komend */
.decor-half-circle-blue {
    position: absolute;
    width: 180px; height: 360px;
    background: var(--c-blue-deep);
    border-radius: 0 180px 180px 0;
    left: 0;
    opacity: 0.9;
    pointer-events: none;
    z-index: 0;
}

/* Halve cirkel met ring eromheen - geel */
.decor-half-circle-yellow-ring {
    position: absolute;
    right: -60px;
    width: 280px; height: 280px;
    pointer-events: none;
    z-index: 0;
}
.decor-half-circle-yellow-ring::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--c-yellow);
    border-radius: 50%;
    transform: scale(0.65);
}
.decor-half-circle-yellow-ring::after {
    content: '';
    position: absolute; inset: 0;
    border: 2px dashed var(--c-terracotta);
    border-radius: 50%;
    opacity: 0.3;
    animation: rotate-slow 50s linear infinite;
}

/* Gebogen lijn / arc */
.decor-arc {
    position: absolute;
    width: 300px; height: 300px;
    border: 3px solid var(--c-yellow);
    border-radius: 50%;
    border-color: var(--c-yellow) transparent transparent var(--c-yellow);
    transform: rotate(45deg);
    pointer-events: none;
    opacity: 0.4;
    z-index: 0;
}

/* Dubbele ring (concentrische cirkels) */
.decor-rings {
    position: absolute;
    width: 200px; height: 200px;
    pointer-events: none;
    z-index: 0;
}
.decor-rings::before {
    content: '';
    position: absolute; inset: 0;
    border: 2px solid var(--c-terracotta);
    border-radius: 50%;
    opacity: 0.35;
}
.decor-rings::after {
    content: '';
    position: absolute; inset: 20%;
    border: 2px dashed var(--c-yellow);
    border-radius: 50%;
    opacity: 0.5;
    animation: rotate-slow 30s linear infinite reverse;
}

/* Gevulde kleine cirkel met blob-vorm */
.decor-blob-yellow {
    position: absolute;
    width: 120px; height: 120px;
    background: var(--c-yellow);
    border-radius: 60% 40% 50% 50% / 50% 50% 40% 60%;
    pointer-events: none;
    z-index: 0;
    animation: morph 10s ease-in-out infinite;
}

.decor-blob-blue {
    position: absolute;
    width: 140px; height: 140px;
    background: var(--c-blue-deep);
    border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
    pointer-events: none;
    z-index: 0;
    animation: morph 12s ease-in-out infinite reverse;
}

/* Gestippelde golf-curve */
.decor-wave {
    position: absolute;
    width: 100%;
    height: 60px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.decor-wave svg {
    width: 100%; height: 100%;
    display: block;
}

/* Variaties voor positionering */
.decor-pos-top-right { top: 5%; right: -100px; }
.decor-pos-top-left { top: 8%; left: -80px; }
.decor-pos-mid-right { top: 40%; right: 0; }
.decor-pos-mid-left { top: 45%; left: -50px; }
.decor-pos-bottom-right { bottom: 8%; right: -60px; }
.decor-pos-bottom-left { bottom: 10%; left: 5%; }

/* ============================================
   SCROLL ANIMATIES - beide richtingen
   ============================================ */

/* Basis reveal - fade + omhoog */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Scale reveal */
.reveal-scale {
    opacity: 0;
    transform: scale(0.85) translateY(40px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-scale.in-view { opacity: 1; transform: scale(1) translateY(0); }

/* Van links */
.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.in-view { opacity: 1; transform: translateX(0); }

/* Van rechts */
.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1), transform 0.9s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.in-view { opacity: 1; transform: translateX(0); }

/* Rotatie reveal */
.reveal-rotate {
    opacity: 0;
    transform: rotate(-8deg) scale(0.8) translateY(40px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-rotate.in-view { opacity: 1; transform: rotate(0deg) scale(1) translateY(0); }

/* Tekst die letter voor letter komt */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(6px);
    transition: opacity 1s ease, transform 1s ease, filter 1s ease;
}
.reveal-text.in-view { opacity: 1; transform: translateY(0); filter: blur(0); }

/* Staggered animaties (per kind) */
.stagger > * {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.stagger.in-view > *:nth-child(1) { transition-delay: 0.05s; }
.stagger.in-view > *:nth-child(2) { transition-delay: 0.15s; }
.stagger.in-view > *:nth-child(3) { transition-delay: 0.25s; }
.stagger.in-view > *:nth-child(4) { transition-delay: 0.35s; }
.stagger.in-view > *:nth-child(5) { transition-delay: 0.45s; }
.stagger.in-view > *:nth-child(6) { transition-delay: 0.55s; }
.stagger.in-view > * { opacity: 1; transform: translateY(0); }

/* 3D zoom on scroll */
.zoom-section { perspective: 1500px; }
.zoom-target { transition: transform 0.1s linear; will-change: transform; }

/* ============================================
   SUB-PAGE HEADER
   ============================================ */
.page-header {
    padding: 8rem var(--gutter) 5rem;
    background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-peach-soft) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 20%; right: -5%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--c-yellow-soft) 0%, transparent 65%);
    filter: blur(50px);
    pointer-events: none;
}
.page-header::after {
    content: '';
    position: absolute;
    bottom: -20%; left: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, var(--c-rose-soft) 0%, transparent 65%);
    filter: blur(50px);
    pointer-events: none;
}

.page-eyebrow {
    font-family: var(--f-mono);
    font-size: 0.78rem;
    letter-spacing: 0.25em;
    color: var(--c-terracotta);
    margin-bottom: 1.5rem;
    display: inline-flex; align-items: center; gap: 0.6rem;
    position: relative; z-index: 1;
}

.page-title {
    font-family: var(--f-display);
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -0.035em;
    color: var(--c-blue-deep);
    margin-bottom: 2rem;
    position: relative; z-index: 1;
}
.page-title em { font-style: italic; color: var(--c-blue-deep); }

.page-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--c-text-on-cream-soft);
    max-width: 700px;
    margin: 0 auto;
    position: relative; z-index: 1;
}

/* ============================================
   PROSE
   ============================================ */
.prose {
    max-width: 760px;
    margin: 0 auto;
    padding: 4rem var(--gutter) 8rem;
    position: relative;
}

.prose h2 {
    font-family: var(--f-display);
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--c-blue-deep);
    margin: 3rem 0 1.2rem;
    letter-spacing: -0.02em;
}
.prose h2 em { font-style: italic; color: var(--c-blue-deep); }

.prose h3 {
    font-family: var(--f-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--c-terracotta);
    margin: 2.5rem 0 1rem;
}

.prose p {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--c-text-on-cream);
    margin-bottom: 1.3rem;
}

.prose ul { margin-bottom: 1.5rem; padding-left: 0; list-style: none; }
.prose ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: var(--c-text-on-cream);
}
.prose ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 0.55rem;
    width: 12px; height: 12px;
    background: var(--c-yellow);
    border-radius: 50%;
}

/* ============================================
   CONTACT FORM - lichter, vriendelijker
   ============================================ */
.contact-grid {
    max-width: var(--container);
    margin: 0 auto;
    padding: 4rem var(--gutter);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-block {
    padding: 2.5rem;
    background: linear-gradient(135deg, var(--c-blue-deep) 0%, var(--c-blue) 100%);
    color: var(--c-cream);
    border-radius: 40px 24px 40px 24px;
    align-self: start;
    position: relative;
    overflow: hidden;
}
.contact-info-block::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    border: 2px dashed rgba(245, 201, 69, 0.2);
    border-radius: 50%;
    animation: rotate-slow 40s linear infinite;
}

.contact-info-block h3 {
    font-family: var(--f-display);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--c-yellow);
    position: relative; z-index: 1;
}

.contact-info-row {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(246, 239, 225, 0.1);
    position: relative; z-index: 1;
}
.contact-info-row:last-child { border-bottom: none; }

.contact-info-label {
    font-family: var(--f-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--c-yellow);
    margin-bottom: 0.4rem;
}
.contact-info-value { font-size: 1rem; color: var(--c-cream); }

.contact-form {
    background: var(--c-cream);
    border: 1px solid var(--c-sand);
    border-radius: 32px;
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
}
.form-field { margin-bottom: 1.2rem; }
.form-field label {
    display: block;
    font-family: var(--f-mono);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--c-text-on-cream-soft);
    margin-bottom: 0.6rem;
    font-weight: 500;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 0.9rem 1.1rem;
    border: 1px solid var(--c-sand);
    border-radius: 16px;
    background: var(--c-cream-warm);
    font-family: var(--f-body);
    font-size: 1rem;
    color: var(--c-text-on-cream);
    transition: border-color 0.3s, background 0.3s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
    outline: none;
    border-color: var(--c-terracotta);
    background: var(--c-cream);
}
.form-field textarea { resize: vertical; min-height: 130px; }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 200;
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0.6s;
    max-width: calc(100vw - 3rem);
}

.cookie-banner.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    visibility: visible;
}

.cookie-card {
    width: 380px;
    max-width: 100%;
    background: var(--c-cream);
    border: 1px solid var(--c-sand);
    border-radius: 28px;
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: 0 25px 60px -15px rgba(13, 42, 82, 0.25);
    position: relative;
    overflow: hidden;
}

.cookie-card::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, var(--c-yellow-soft) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cookie-icon {
    width: 56px;
    height: 56px;
    background: var(--c-yellow);
    color: var(--c-blue-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
}
.cookie-icon svg { width: 28px; height: 28px; }

.cookie-title {
    font-family: var(--f-display);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--c-blue-deep);
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}

.cookie-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--c-text-on-cream-soft);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}
.cookie-text a {
    color: var(--c-terracotta);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.cookie-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 100px;
    font-family: var(--f-mono);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.cookie-btn-decline {
    background: transparent;
    color: var(--c-blue-deep);
    border: 1.5px solid var(--c-sand);
}
.cookie-btn-decline:hover {
    background: var(--c-sand);
    border-color: var(--c-blue-deep);
}

.cookie-btn-accept {
    background: var(--c-blue-deep);
    color: var(--c-cream);
    border: 1.5px solid var(--c-blue-deep);
}
.cookie-btn-accept:hover {
    background: var(--c-yellow);
    color: var(--c-blue-deep);
    border-color: var(--c-yellow);
    transform: translateY(-2px);
}

.cookie-btn:active { transform: scale(0.96); }

@media (max-width: 640px) {
    .cookie-banner {
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }
    .cookie-card {
        width: 100%;
        padding: 1.5rem 1.25rem;
    }
    .cookie-title { font-size: 1.15rem; }
    .cookie-text { font-size: 0.85rem; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .menu-grid { grid-template-columns: 1fr 1fr; }
    .menu-col-visual { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; max-height: 200px; }
    .menu-card { aspect-ratio: 16/9; }
    
    .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
    .pillars-grid { grid-template-columns: 1fr; }
    .diensten-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .header-inner { grid-template-columns: auto 1fr auto; gap: 0.5rem; }
    .cta-header span:first-child { display: none; }
    .cta-header { padding: 0.7rem 1rem; }
    .logo-img { height: 32px; }
    .logo-text-main { font-size: 1rem; }
    .logo-text-sub { font-size: 0.55rem; letter-spacing: 0.25em; }
    
    .menu-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .menu-col-visual { grid-template-columns: 1fr 1fr; max-height: none; }
    .menu-link { font-size: 2.2rem; }
    
    .process-step { grid-template-columns: 1fr; gap: 1rem; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    
    .section { padding: 5rem var(--gutter); }
    .hero-floating-tag { display: none; }
    .hero-ring, .hero-ring-2 { display: none; }
    
    .footer-bar { flex-direction: column; align-items: flex-start; }

    /* Alleen gevulde decor-vormen verbergen op mobiel - dunne ringen/arcs blijven */
    .decor-half-circle-yellow,
    .decor-half-circle-blue,
    .decor-blob-yellow,
    .decor-blob-blue {
        display: none !important;
    }
    /* Subtiele lijnen kleiner en lichter zodat ze niet storen */
    .decor-half-circle-yellow-ring,
    .decor-arc,
    .decor-rings {
        transform: scale(0.6);
        opacity: 0.5;
    }
}

/* Respect for reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
