/* ==========================================================================
   Section — Hero (Maximaal)
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-dark);
    overflow: hidden;
}

/* --- Achtergrond --- */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
    0%   { transform: scale(1); }
    100% { transform: scale(1.06); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(40,40,40,0.6) 50%, rgba(26,26,26,0.75) 100%);
    z-index: 2;
}

/* --- Accent lijn links --- */
.hero__accent-line {
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--color-secondary);
    z-index: 5;
}

/* --- Decoratieve gele golf (uit logo) op hero --- */
.hero::after {
    content: '';
    position: absolute;
    right: 5%;
    bottom: 15%;
    width: 400px;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg width='400' height='100' viewBox='0 0 400 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,30 C33,10 67,10 100,30 C133,50 167,50 200,30 C233,10 267,10 300,30 C333,50 367,50 400,30' stroke='%23f1c400' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3Cpath d='M0,60 C33,40 67,40 100,60 C133,80 167,80 200,60 C233,40 267,40 300,60 C333,80 367,80 400,60' stroke='%23f1c400' stroke-width='4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.08;
    z-index: 2;
    pointer-events: none;
}

/* --- Grid layout --- */
.hero__grid {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: center;
    padding-top: 80px;
}

/* --- Content links --- */
.hero__content {
    max-width: 640px;
}

.hero__label {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-accent);
    margin-bottom: 1.75rem;
    opacity: 0;
    animation: heroFadeUp 0.8s 0.2s ease forwards;
}
.hero__label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
    animation: heroPulse 2s ease-in-out infinite;
}
@keyframes heroPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(245,168,0,0.4); }
    50%      { opacity: 0.7; box-shadow: 0 0 0 8px rgba(245,168,0,0); }
}

.hero__title {
    color: var(--color-white);
    font-size: clamp(2.75rem, 6vw, 4.25rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    opacity: 0;
    animation: heroFadeUp 0.8s 0.4s ease forwards;
}
.hero__title::after {
    content: '';
    display: block;
    width: 88px;
    height: 18px;
    margin-top: 0.75rem;
    background-image: url("data:image/svg+xml,%3Csvg width='88' height='18' viewBox='0 0 88 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,3.5 C7.3,0 14.7,0 22,3.5 C29.3,7 36.7,7 44,3.5 C51.3,0 58.7,0 66,3.5 C73.3,7 80.7,7 88,3.5' stroke='%23f1c400' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3Cpath d='M0,12.5 C7.3,9 14.7,9 22,12.5 C29.3,16 36.7,16 44,12.5 C51.3,9 58.7,9 66,12.5 C73.3,16 80.7,16 88,12.5' stroke='%23f1c400' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.hero__subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2.5rem;
    max-width: 520px;
    opacity: 0;
    animation: heroFadeUp 0.8s 0.6s ease forwards;
}

/* --- Buttons --- */
.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    opacity: 0;
    animation: heroFadeUp 0.8s 0.8s ease forwards;
}

.btn--lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

/* --- Social proof --- */
.hero__proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: heroFadeUp 0.8s 1s ease forwards;
}
.hero__proof-avatars {
    display: flex;
    gap: -4px;
}
.hero__proof-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-accent);
    border: 2px solid rgba(255,255,255,0.2);
    margin-left: -4px;
}
.hero__proof-dot:first-child { margin-left: 0; }
.hero__proof-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}
.hero__proof-text strong {
    color: var(--color-white);
}

/* --- Floating cards rechts --- */
.hero__cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.hero__card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    transition: all var(--transition);
    opacity: 0;
    transform: translateX(30px);
    animation: heroCardIn 0.6s ease forwards;
}
.hero__card--0 { animation-delay: 0.6s; }
.hero__card--1 { animation-delay: 0.8s; }
.hero__card--2 { animation-delay: 1.0s; }
.hero__card--3 { animation-delay: 1.2s; }

.hero__card:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(245,168,0,0.3);
    transform: translateX(-4px);
}

.hero__card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.hero__card-icon i {
    color: var(--color-dark);
    font-size: 1.1rem;
}

.hero__card-body {
    display: flex;
    flex-direction: column;
}
.hero__card-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
}
.hero__card-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.3;
}

@keyframes heroCardIn {
    to { opacity: 1; transform: translateX(0); }
}

/* --- Scroll indicator --- */
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.hero__scroll span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255,255,255,0.35);
}
.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.4);
    animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: scaleY(1); opacity: 0.4; }
    50%      { transform: scaleY(0.5); opacity: 1; }
}

/* --- Fade up animatie --- */
@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}


/* ==========================================================================
   USP Strip (Maximaal Gepimpt)
   ========================================================================== */

.usp-strip {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 0;
    position: relative;
    z-index: 10;
}

/* Voor de horizontale scroll op mobiel */
.usp-container {
    padding: 0;
    max-width: 100%;
}

@media (min-width: 1025px) {
    .usp-container {
        padding: 0 20px;
        max-width: 1200px;
        margin: 0 auto;
    }
}

.usp-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.usp-strip__item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem 1.5rem;
    border-right: 1px solid var(--color-border);
    background: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
}

.usp-strip__item:last-child { 
    border-right: none; 
}

/* De lichtflits (shine) die eroverheen schiet op hover */
.usp-strip__item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent, rgba(245, 168, 0, 0.08), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 0;
}

/* --- Magnetisch Pop-up Effect --- */
.usp-strip__item:hover {
    background: var(--color-white);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transform: translateY(-4px); /* Subtiel omhoog uit de strip */
    z-index: 2;
    border-color: transparent;
    border-radius: 8px; /* Maakt hem iets zachter als hij popt */
}

.usp-strip__item:hover::before {
    transform: translateX(100%);
}

/* --- Icoon Transformatie --- */
.usp-strip__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(241,196,0,0.15); /* Zachte gele achtergrond */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.usp-strip__icon i {
    font-size: 1.15rem;
    color: var(--color-primary); /* Origineel rood */
    transition: color 0.3s ease;
}

/* Magie op hover */
.usp-strip__item:hover .usp-strip__icon {
    background: var(--color-primary); /* Achtergrond wordt rood */
    transform: scale(1.1) rotate(-8deg); /* Lichte speelse kanteling */
    box-shadow: 0 8px 20px rgba(162, 26, 40, 0.25);
}

.usp-strip__item:hover .usp-strip__icon i {
    color: var(--color-white); /* Icoon wordt wit */
}

/* --- Tekst Transformatie --- */
.usp-strip__text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.usp-strip__text strong {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--color-dark);
    transition: color 0.3s ease;
}

.usp-strip__text span {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.usp-strip__item:hover .usp-strip__text strong {
    color: var(--color-primary);
}

/* --- Vertraging voor de Intrede (Staggered Load) --- */
.delay-0 { animation-delay: 0.1s; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.4s; }

/* ==========================================================================
   Mobiele Swipeable Ticker (Native App Feel)
   ========================================================================== */
@media (max-width: 1024px) {
    .usp-strip__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Verbergt scrollbar in Firefox */
        -webkit-overflow-scrolling: touch; /* Voor soepele iOS scroll */
        padding-left: 20px; /* Geeft een indicatie dat je kunt scrollen */
    }
    
    /* Verbergt scrollbar in Chrome/Safari */
    .usp-strip__grid::-webkit-scrollbar {
        display: none; 
    }
    
    .usp-strip__item {
        min-width: 280px; /* Vaste breedte zodat ze naast elkaar blijven */
        scroll-snap-align: center; /* Zorgt dat de USP in het midden vastklikt */
        border-right: 1px solid var(--color-border);
        border-bottom: none;
    }
    
    .usp-strip__item:last-child {
        padding-right: 40px; /* Extra ruimte aan het einde van de scroll */
    }
}


/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero__cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
}

@media (max-width: 768px) {
    .hero { min-height: 100svh; }
    .hero__accent-line { display: none; }

    .hero__actions { flex-direction: column; }
    .hero__actions .btn { text-align: center; justify-content: center; width: 100%; }

    .hero__cards { grid-template-columns: 1fr; }

    .hero__scroll { display: none; }

    .usp-strip__grid { grid-template-columns: 1fr 1fr; }
    .usp-strip__item { border-bottom: 1px solid var(--color-border); }
    .usp-strip__item:nth-child(2) { border-right: none; }
}

@media (max-width: 480px) {
    .usp-strip__grid { grid-template-columns: 1fr; }
    .usp-strip__item { border-right: none; }
}

/* ==========================================================================
   MAXIMAAL EFFECTEN: Toegevoegd aan originele hero
   ========================================================================== */

/* Upgrade voor de Floating Cards hover (overschrijft de originele lichte hover) */
.hero__card:hover {
    background: rgba(255,255,255,0.18);
    border-color: var(--color-accent);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 20px rgba(255,255,255,0.1);
    z-index: 10;
}

/* Upgrade voor de iconen in de kaarten op hover */
.hero__card:hover .hero__card-icon {
    transform: rotate(5deg) scale(1.1);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* ==========================================================================
   GOLVEN ANIMATIE BOTTEN HERO
   ========================================================================== */

.wave-container {
    position: absolute;
    bottom: -2px; /* Zorgt voor naadloze aansluiting op de witte USP strip */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 4; /* Moet boven de achtergrond (1) en overlay (2) zitten */
}

.waves {
    position: relative;
    width: 100%;
    height: 12vh;
    min-height: 70px;
    max-height: 120px;
}

.parallax-waves > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax-waves > use:nth-child(1) { animation-delay: -2s; animation-duration: 7s; }
.parallax-waves > use:nth-child(2) { animation-delay: -3s; animation-duration: 10s; }
.parallax-waves > use:nth-child(3) { animation-delay: -4s; animation-duration: 13s; }
.parallax-waves > use:nth-child(4) { animation-delay: -5s; animation-duration: 20s; }

@keyframes move-forever {
    0% { transform: translate3d(-90px,0,0); }
    100% { transform: translate3d(85px,0,0); }
}

/* Responsive aanpassingen voor de golven */
@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }
}

/* =========================================
   TYPEMACHINE EFFECT
   ========================================= */
.typewriter-text {
    color: var(--color-accent);
    font-weight: 800;
    border-bottom: 2px solid var(--color-accent);
}

.cursor {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 800;
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

/* =========================================
   WATER RIPPLE BACKGROUND
   ========================================= */
.ripple-bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    /* Voor de jQuery ripples library is het belangrijk dat de div een breedte en hoogte heeft */
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* Zorg dat de overlay klikken doorlaat naar de ripple */
.hero__overlay {
    pointer-events: none; 
}

/* =========================================
   VIDEO LIGHTBOX
   ========================================= */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.video-modal.is-active {
    opacity: 1;
    visibility: visible;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    z-index: 10000;
    transform: scale(0.95);
    transition: transform 0.4s ease;
}

.video-modal.is-active .video-modal-content {
    transform: scale(1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.video-modal-close:hover {
    color: var(--color-accent);
}