:root {
    /* Colors */
    --bg: #0b0b0b;
    --text: #fff;
    --red: #e11d22;
    
    /* Layout */
    --container: 1200px;
    --header-h: 72px;
    
    /* Image focal points */
    --focal-x: 50%;
    --focal-y: 50%;
    
    /* Typography */
    --hero-h1-size: clamp(2rem, 3.2vw, 3.2rem);
    
    /* Content Sizing */
    --nav-height: 72px;
    --logo-height: 100px;
    --card-aspect: 1.5;
    --grid-gap: 18px;
    
    /* Transitions */
    --transition-speed: 0.3s;
    --transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Content-visibility optimizations */
.defer-load {
    content-visibility: auto;
    contain-intrinsic-size: 0 500px;
}

/* Prevent layout shifts */
.size-container {
    position: relative;
    width: 100%;
    height: 0;
    overflow: hidden;
}

.ratio-16-9 {
    padding-bottom: 56.25%;
}

.ratio-4-3 {
    padding-bottom: 75%;
}

.ratio-1-1 {
    padding-bottom: 100%;
}

/* Force hardware acceleration */
.gpu {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Every section fills the screen (minus sticky header) */
section {
    min-height: calc(100svh - var(--header-h));
    /* make content easy to center vertically */
    display: flex;
    align-items: center;
    /* keep your spacing */
    padding-block: 4rem;
}

/* Ensure inner .container can expand */
section > .container {
    width: 100%;
}

/* If a section has a LOT of content (e.g. grids),
   allow scrolling inside the section instead of the whole page jumping */
.section-scroll {
    overflow: auto;
}

/* Hero already has a layout; ensure it still fills the screen cleanly */
.hero{
    min-height: calc(100svh - var(--header-h));
    display: flex;
    align-items: center;
    padding-block: 6rem; /* your existing hero spacing */
    border-top: none;     /* heroes usually don’t need the top border */
}

/* Footer stays natural height */
footer {
    min-height: initial;
    display: block;
    padding: 2rem 0;
}


/* ===== Reset & base ===== */
*{ 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body{ 
    background: var(--bg); 
    color: var(--text); 
    font-family: 'Inter', sans-serif; 
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    min-height: 100vh;
}

img{ 
    max-width: 100%; 
    display: block;
    height: auto;
    width: 100%;
}

a{ 
    color: inherit; 
    text-decoration: none;
    touch-action: manipulation;
}
.container{ max-width:var(--container); margin:0 auto; padding:0 1rem }

/* ===== NAVIGATION ("horizontaal) ===== */
header{
    background:#000;
    position:sticky; top:0; z-index:50;
    border-bottom:1px solid #111;
}
.site-nav{
    max-width:var(--container);
    margin:0 auto;
    padding:.85rem 1rem;
    display:flex;
    align-items:center;
    justify-content:space-between;
}
/* Zorg dat het logo groter toont */
.site-nav .brand img {
    height: 100px;   /* maak het logo hoger */
    width: auto;    /* breedte schaalt automatisch */
}

.brand img{
    height:34px;
    display:block;
}

/* Links naast elkaar */
.nav-right{
    display:flex;
    align-items:center;
    gap:2rem;
}
.nav-links{
    display:flex;
    align-items:center;
    gap:2rem;
    list-style:none;
}
.nav-links a{
    font-weight:800;
    font-size:.95rem;
    letter-spacing:.02em;
    text-transform:uppercase;
    position:relative;
    padding:.25rem 0;
    display:inline-block;
}
.nav-links a:hover{ color:var(--red); }
.nav-links a.active::after{
    content:""; position:absolute; left:0; right:0; bottom:-6px; height:3px;
    background:var(--red); border-radius:2px;
}

/* RODE CTA rechts */
.nav-cta{
    background:var(--red);
    color:#fff;
    font-weight:800;
    border-radius:6px;
    padding:.55rem 1rem;
    line-height:1;
    text-transform:uppercase;
    letter-spacing:.02em;
}
.nav-cta:hover{ filter:brightness(1.1); }

/* Mobile: stack menu & CTA onder elkaar */
.nav-toggle{
    display:none;
    width:48px; height:48px;
    border:2px solid var(--red);
    border-radius:12px;
    background:#0f0f0f;
    color:#fff;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s;
}
.nav-toggle:hover {
    background-color: var(--red);
    border-color: var(--red);
}
@media (max-width:980px){
    .nav-toggle { 
        display: inline-grid; 
        place-items: center;
        position: relative;
        z-index: 100;
    }
    .nav-right {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.98);
        border-top: 1px solid var(--red);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        padding: 2rem;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-1rem);
        transition: visibility 0s linear 0.3s,
                    opacity 0.3s var(--transition-timing),
                    transform 0.3s var(--transition-timing);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
    }
    .nav-right.open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0s;
        display: flex;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 2rem;
        text-align: center;
        transform: translateZ(0);
    }
    .nav-cta {
        margin-top: 1rem;
        padding: 1rem 2rem;
        width: 100%;
        max-width: 300px;
        text-align: center;
        transform: translateZ(0);
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 1.5rem;
        text-align: center;
    }
    .nav-cta{
        margin-top: 0.75rem;
        padding: 0.75rem 2rem;
        width: 100%;
        text-align: center;
    }
    /* Adjust logo size on mobile */
    .site-nav .brand img {
        height: 80px;
    }
}

/* ===== HERO ===== */
.hero{
    position:relative;
    min-height:78vh;
    display:flex;
    align-items:center;
    padding:6rem 0;
    text-align:left;
    isolation:isolate;
    background-image:linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.75) 100%);
    background-size:cover;
    background-repeat:no-repeat;
    background-position: var(--focal-x) var(--focal-y);
    box-shadow: inset 0 -80px 120px rgba(0,0,0,.45);
}

.hero .container{
    position:relative;
    z-index:1;
    padding: 0 1.5rem;
}

.hero p{
    max-width:650px;
    margin:1.25rem 0;
    font-size: clamp(1rem, 1.1vw, 1.1rem);
    line-height: 1.6;
}

@media (max-width:900px){
    .hero{
        min-height:85vh;
        padding:4rem 0;
        background-image:linear-gradient(180deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.5) 45%, rgba(0,0,0,.8) 100%);
    }
    .hero .container {
        padding: 0 1.25rem;
    }
    .hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
        line-height: 1.25;
    }
    .hero p {
        margin: 1rem 0;
        font-size: 1rem;
    }
    .hero .nav-cta {
        width: 100%;
        max-width: 320px;
        text-align: center;
        padding: 1rem;
        margin-top: 1.5rem;
    }
}

@media (max-width:480px){
    .hero {
        min-height: 90svh;
        padding: 3rem 0;
    }
    .hero .container {
        padding: 0 1rem;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
}

/* ===== SECTIONS & CARDS ===== */
section{ padding:4rem 0; }
h2{ font-size:2rem; margin-bottom:1rem }
.grid{ display:grid; gap:1rem }
.cards{ grid-template-columns:repeat(auto-fit,minmax(250px,1fr)) }
.card{ background:#111; padding:1rem; border-radius:8px; border:1px solid #222 }

/* ===== RESULTATEN CAROUSEL ===== */
.res-wrap {
    position: relative;
    overflow: hidden;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.res-track {
    display: flex;
    gap: 24px;
    padding: 1.5rem 0;
    will-change: transform;
    transform: translateX(0);
    transition: transform 0.35s var(--transition-timing);
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.res-track::-webkit-scrollbar {
    display: none;
}

.res-card {
    flex: 0 0 calc((100% - 48px) / 3);
    position: relative;
    background: #111;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    aspect-ratio: 3/4;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.res-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 0.6s var(--transition-timing);
}

@media (max-width: 1200px) {
    .res-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 900px) {
    .res-wrap {
        padding: 0;
    }
    .res-track {
        gap: 16px;
        padding: 1rem 0;
    }
    .res-card {
        flex: 0 0 calc(80% - 8px);
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .res-wrap {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .res-track {
        gap: 0;
        padding: 0;
    }
    
    .res-card {
        flex: 0 0 100%;
        width: 100%;
        aspect-ratio: 4/5;
        border-radius: 0;
        margin: 0;
    }
    
    .res-card img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        background: #000;
    }
    
    .res-arrow {
        width: 40px;
        height: 40px;
        background: rgba(225, 29, 34, 0.9);
        border: none;
        z-index: 10;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }
    
    .res-prev { left: 10px; }
    .res-next { right: 10px; }
    
    #resultaten {
        padding: 1.5rem 0;
    }
    
    #resultaten h2 {
        margin-bottom: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .res-wrap {
        max-width: 100%;
        overflow: hidden;
        padding: 0;
        margin: 0 auto;
    }

    .res-track {
        padding: 0;
        gap: 0;
        width: 100%;
    }

    .res-card {
        flex: 0 0 100%;
        width: 100%;
        aspect-ratio: 4/5;
        border-radius: 0;
        margin: 0;
    }

    .res-arrow {
        width: 40px;
        height: 40px;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    .res-prev { left: 10px; }
    .res-next { right: 10px; }
}
.res-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--red);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
    font-size: 1.5rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.res-prev { left: 0.5rem; }
.res-next { right: 0.5rem; }

.res-arrow:hover {
    background: #ff2a2f;
}

/* ===== FAQ ===== */
#faq {
    padding: clamp(2rem, 6vw, 4rem) 0;
}
#faq h2 {
    font-size: clamp(1.6rem, 4vw, 2rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 2rem);
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: clamp(12px, 2vw, 18px);
    padding: 0.5rem;
}
.faq-item {
    background: var(--red);
    color: #fff;
    border-radius: 14px;
    padding: clamp(1.25rem, 3vw, 1.5rem);
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,.35);
}
.faq-item h3 {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    font-weight: 800;
    margin: 0 0 0.75rem;
    line-height: 1.3;
}
.faq-item p {
    font-size: clamp(0.9rem, 1.2vw, 0.95rem);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 480px) {
    #faq {
        padding: 1.5rem 0;
    }
    .faq-grid {
        gap: 10px;
        padding: 0.25rem;
    }
    .faq-item {
        padding: 1.25rem;
    }
}

/* ===== FOOTER & FORM ===== */
footer{ background:#000; padding:2rem 0; text-align:center; color:#aaa; border-top:1px solid #222 }
form label{ display:block; margin:.5rem 0 .25rem }
input,
textarea {
    width: 100%;
    padding: .5rem;
    background: #000;
    border: 2px solid var(--red);   /* rode rand */
    border-radius: 6px;
    color: #fff;
    transition: border-color .3s, box-shadow .3s;
}
button{ cursor:pointer; border:none }

/* === Diensten: 2 kolommen, foto rechts gecentreerd t.o.v. tekst === */
#diensten .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: center;
    justify-items: start;
}

#diensten .text {
    grid-column: 1;
    padding-right: clamp(0rem, 2vw, 2rem);
}

#diensten .image {
    grid-column: 2;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
}

@media (max-width: 900px) {
    #diensten .container {
        display: grid;
        grid-template-columns: 60% 40%;
        gap: 1rem;
    }
    
    #diensten .text {
        grid-column: 1;
        padding-right: 0;
    }
    
    #diensten .image {
        grid-column: 2;
        aspect-ratio: 4/5;
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    #diensten .container {
        grid-template-columns: 55% 45%;
        gap: 0.75rem;
    }
    
    #diensten .image {
        aspect-ratio: 3/5;
        min-height: 450px;
    }
    
    #diensten h2 {
        font-size: 1.5rem;
    }
    
    #diensten p {
        font-size: 0.9rem;
    }
}

#diensten .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
    transition: transform 0.6s ease;
}

#diensten .image:hover img {
    transform: scale(1.05);
}

/* Knop niet full-width */
#diensten .nav-cta {
    display: inline-block;
    margin-top: clamp(1rem, 3vw, 1.5rem);
}

/* Mobiel: afbeelding rechts naast tekst */
@media (max-width: 900px) {
    #diensten .container {
        grid-template-columns: 1fr;
        justify-items: stretch;
        gap: 2rem;
    }
    #diensten .text {
        padding-right: 0;
        grid-row: 1;
    }
    #diensten .image {
        grid-row: 1;
        aspect-ratio: 3/4;
        margin-inline: auto;
        max-width: min(100%, 480px);
    }
    #diensten .nav-cta {
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }
}

/* Extra kleine schermen: afbeelding onder tekst */
@media (max-width: 480px) {
    #diensten .container {
        grid-template-columns: 1fr;
    }
    #diensten .text {
        grid-row: auto;
    }
    #diensten .image {
        grid-row: auto;
        aspect-ratio: 1/1;
        border-radius: 8px;
    }
}

@media (max-width: 480px) {
    #diensten .image {
        aspect-ratio: 1/1;
        border-radius: 8px;
    }
}

/* Home: verfijn de focus-positie voor dit specifieke beeld */
:root{ --focal-x:50%; --focal-y:18%; }

/* Hero: foto-achtergrond met verbeterde layout */
.hero {
    background-image:
            linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.45) 45%, rgba(0,0,0,.75) 100%),
            url("../media/DSC00245-2 (1).jpg");
    background-size: cover, cover;
    background-repeat: no-repeat, no-repeat;
    background-position: var(--focal-x) var(--focal-y), var(--focal-x) var(--focal-y);
    min-height: 90svh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
}

.hero .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.hero p {
    font-size: clamp(1.1rem, 1.3vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    :root { --focal-y: 15%; }
    .hero {
        min-height: 85svh;
    }
}

@media (max-width: 900px) {
    :root { --focal-y: 12%; }
    .hero {
        min-height: 80svh;
        padding: 4rem 0;
    }
    .hero .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 600px) {
    .hero {
        min-height: 75svh;
        padding: 3rem 0;
    }
    .hero .container {
        padding: 0 1.25rem;
    }
    .hero h1 {
        font-size: clamp(2rem, 7vw, 2.4rem);
    }
    .hero p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
}

/* === App Promo (shared across pages) === */
.app-promo {
    padding: 4rem 0;
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.app-visual {
    margin: 0;
    display: grid;
    place-items: center;
}
.app-visual img {
    width: 100%;
    max-width: 420px;     /* adjust if you want bigger/smaller phone */
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,.45));
}

.app-copy h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 1rem;
}
.app-copy p {
    color: #ddd;
    margin: 0 0 1rem;
    max-width: 52ch;
}
.app-bullets {
    margin: 0 0 2rem;
    padding-left: 1.1rem;
    color: #dcdcdc;
}
.app-bullets li { margin: .25rem 0; }

.app-copy .nav-cta {
    display: inline-block;
    margin-top: 1.5rem;
}

/* Stack on smaller screens */
@media (max-width: 900px){
    .app-grid { grid-template-columns: 1fr; text-align: center; }
    .app-copy p, .app-bullets { margin-left: auto; margin-right: auto; text-align: left; }
    .app-copy .nav-cta { margin-left: auto; margin-right: auto; }
}

/* FAQ Section Styling */
#faq {
    padding: 4rem 0;
}

#faq h2 {
    font-size: 2rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-item {
    background: var(--red);
    color: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,.35);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 0 0.75rem;
    line-height: 1.3;
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1200px) {
    .faq-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .faq-item {
        padding: 1.25rem;
    }
    #faq {
        padding: 2.5rem 0;
    }
}

@media (max-width: 600px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        overflow-y: auto;
        max-height: calc(100vh - var(--header-h) - 200px);
        padding: 0.5rem 1rem;
        margin: 0;
        scrollbar-width: none;  /* Firefox */
        -ms-overflow-style: none;  /* IE and Edge */
    }
    .faq-grid::-webkit-scrollbar {
        display: none;  /* Chrome, Safari, Opera */
    }
    .faq-item {
        padding: 1.25rem;
    }
    #faq {
        padding: 2rem 0;
    }
    #faq h2 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }
}

/* Responsieve aanscherping */
@media (max-width: 1000px){
    #faq.section-tight .faq-item{ padding: .9rem; }
}
@media (max-width: 600px){
    #faq.section-tight { padding-block: 1.5rem; }
    #faq.section-tight .faq-item{ padding: .85rem; }
}

/* App-sectie: telefoon mockup */
#app-section .image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: clamp(1rem, 3vw, 2rem);
}

#app-section .image::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80%;
    height: 80%;
    background: var(--red);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    z-index: -1;
    animation: morphBg 8s ease-in-out infinite;
}

@keyframes morphBg {
    0% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

#app-section .image img {
    width: 100%;
    max-width: min(280px, 90%);
    height: auto;
    aspect-ratio: 360/740;
    object-fit: contain;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
    transition: transform 0.3s ease;
}

#app-section .image:hover img {
    transform: translateY(-8px);
}

/* Zorg dat de hele sectie netjes binnen scherm past */
#app-section {
    min-height: min(100vh, 800px);
    display: flex;
    align-items: center;
    padding: clamp(3rem, 6vw, 6rem) 0;
}

#app-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: center;
}

/* Responsive stacking */
@media (max-width: 900px) {
    #app-section {
        min-height: auto;
        padding: 3rem 0;
    }
    #app-section .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    #app-section .image img {
        max-width: min(220px, 80%);
    }
    #app-section .image::after {
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    #app-section {
        padding: 2rem 0;
    }
    #app-section .image {
        padding: 0.5rem;
    }
    #app-section .image img {
        max-width: 180px;
    }
}

/* Spacing in de app-sectie */
#app-section .app-bullets {
    margin-bottom: 1.75rem;   /* extra ruimte onder de bulletlijst */
}

#app-section .nav-cta {
    display: inline-block;
    margin-top: .5rem;        /* of zet op 0 als je alleen de lijst-marge wil gebruiken */
}

:root{
    /* kies dezelfde maat als op training; dit is je “single source of truth” */
    --hero-h1-size: clamp(2rem, 3.2vw, 3.2rem);
}

.hero h1{
    font-size: var(--hero-h1-size);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.02em;
    max-width: 900px;
}
.hero--lg h1 { font-size: clamp(2.4rem, 4vw, 4rem); }
.hero--sm h1 { font-size: clamp(1.8rem, 2.6vw, 2.6rem); }

/* Zelfde tekst-oppervlakte als Training */
.hero--narrow .container{
    max-width: 900px;        /* zelfde breedte voor alle pagina's */
    margin-inline: auto;
}

.hero--narrow h1{
    font-size: var(--hero-h1-size); /* je bestaande var */
    max-width: 26ch;                /* consistente regel-lengte */
    line-height: 1.1;
    letter-spacing: -.02em;
}

.hero--narrow p{
    max-width: 58ch;                /* zelfde paragraafbreedte */
    margin-top: 1rem;
}

/* ===== Normaliseer hero-tekstbreedte op alle pagina's ===== */
:root{
    --hero-container: 900px;  /* 900px = zoals Training */
    --hero-h1-ch: 26ch;       /* regel-lengte voor H1 */
    --hero-p-ch: 58ch;        /* regel-lengte voor paragraaf */
}

.hero .container{
    max-width: var(--hero-container);
    margin-inline: auto;
}

.hero h1{
    max-width: var(--hero-h1-ch);
}

.hero p{
    max-width: var(--hero-p-ch);
}

/* ===== Video Hero (achtergrondvideo met overlay & copy) ===== */
.video-hero{
    position: relative;
    min-height: 65vh;                 /* pas eventueel aan (bv. 60-70vh) */
    display: flex;
    align-items: center;
    overflow: hidden;
}

.video-hero .vh-media{
    position: absolute; inset: 0;
    overflow: hidden;
}

.vh-video{
    position:absolute; inset:0;
    width:100%; height:100%;
    object-fit:cover;
    opacity:0;
    transition: opacity 900ms ease;
    filter: brightness(.72) contrast(1.05) saturate(1.05);
    /* iOS fix */
    background:#000;
}

.vh-video.on{ opacity:1; }

.vh-overlay{
    position:absolute; inset:0;
    pointer-events:none;
    background:
            linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.25) 40%, rgba(0,0,0,.55) 100%),
            radial-gradient(120% 120% at 15% 50%, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 55%);
}

.video-hero .vh-copy{
    position: relative; z-index: 2;
    max-width: 880px;
    padding: 3rem 1rem;
}

.video-hero .vh-copy h2{
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    line-height: 1.15;
    margin: 0 0 .75rem;
}

.video-hero .vh-copy p{
    color:#e9e9e9;
    margin: 0 0 1rem;
    max-width: 60ch;
}

.video-hero .nav-cta{
    display:inline-block;
    margin-top:.25rem;
}

@media (max-width: 900px){
    .video-hero{ min-height: 54vh; }
    .video-hero .vh-copy{ padding: 2.25rem 1rem; }
}
input:focus,
textarea:focus {
    outline: none;
    border-color: #ff4444;          /* fellere rood bij focus */
    box-shadow: 0 0 8px rgba(255, 0, 0, .6);
}

/* ===== VI-style Footer CTA ===== */
#dom-footer-cta{
    background:#000;
    border-top:4px solid var(--red);        /* rode bovenlijn */
    padding:2.5rem 0 3rem;
}

.dom-footer-grid{
    display:grid;
    grid-template-columns: 1.2fr .8fr .9fr; /* brand | links | contact */
    gap: 2.2rem;
    align-items:flex-start;
}

#dom-footer-cta h3{
    font-size: .95rem;
    letter-spacing:.08em;
    text-transform:uppercase;
    color:#fff;
    margin:0 0 .75rem;
    font-weight:900;
}

#dom-footer-cta h4{
    margin:1.25rem 0 .5rem;
    font-size:.9rem;
    font-weight:800;
    letter-spacing:.05em;
    text-transform:uppercase;
    color:#fff;
}

.dom-logo{
    height: 54px;            /* pas aan naar smaak */
    width:auto;
    display:block;
    margin-bottom:.9rem;
    filter: drop-shadow(0 6px 18px rgba(0,0,0,.35));
}

.dom-pitch{
    color:#ddd;
    max-width:56ch;
    margin:0 0 1rem;
}

.dom-cta{
    display:inline-block;
    margin-top:.25rem;
    border-radius:10px;
    padding:.7rem 1.05rem;
    font-weight:900;
}

/* Links */
.dom-links{ list-style:none; padding:0; margin:0; }
.dom-links li{ margin:.35rem 0; }
.dom-links a{
    color:#eaeaea;
    transition: color .2s ease;
}
.dom-links a:hover{ color:var(--red); }

/* Contact */
.dom-contact{ list-style:none; padding:0; margin:0 0 .5rem; color:#e0e0e0; }
.dom-contact li{ margin:.25rem 0; }
.dom-contact a{ color:#fff; text-decoration:underline; text-decoration-color:rgba(255,255,255,.25); }
.dom-contact a:hover{ color:var(--red); text-decoration-color:var(--red); }

/* Socials */
.dom-socials{ display:flex; gap:.6rem; }
.senne-social{
    width:38px; height:38px;
    border:1px solid #222;
    background:#0f0f0f;
    border-radius:10px;
    display:grid; place-items:center;
    color:#fff;
    transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.senne-social:hover{
    transform: translateY(-2px);
    background:#151515;
    border-color:#2a2a2a;
    color: var(--red);
}

/* Responsive */
@media (max-width: 980px){
    .dom-footer-grid{
        grid-template-columns: 1fr 1fr;
    }
    .contact-col{ order: 3; grid-column: 1 / -1; }
}

@media (max-width: 680px){
    .dom-footer-grid{
        grid-template-columns: 1fr;
        gap:1.4rem;
        justify-items:center;
        text-align:center;
    }
    .dom-logo{ height: 46px; }
    .dom-pitch{
        margin:0 auto 1rem;
    }
    .dom-links,
    .dom-contact{
        text-align:center;
    }
    .dom-socials{
        justify-content:center;
    }
}









