/* GLOED — één basisregel, per sectie alleen de plaats en sterkte */

.section1::before,
.diensten-showcase::before,
.showcase-section::before,
.pricing-section::before,
.werkwijze::before {
    content: "";
    position: absolute;
    width: var(--gloed-w);
    max-width: var(--gloed-max);
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(246, 212, 81, var(--gloed-a)) 0%, transparent var(--gloed-stop));
    pointer-events: none;
}

.section1::before {
    --gloed-w: 38vw; --gloed-max: 500px; --gloed-a: 0.07; --gloed-stop: 66%;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    z-index: 0;
}

.diensten-showcase::before {
    --gloed-w: 40vw; --gloed-max: 520px; --gloed-a: 0.05; --gloed-stop: 68%;
    top: 22%;
    left: -14%;
}

.showcase-section::before {
    --gloed-w: 40vw; --gloed-max: 540px; --gloed-a: 0.05; --gloed-stop: 68%;
    top: 12%;
    right: -12%;
}

.pricing-section::before {
    --gloed-w: 42vw; --gloed-max: 560px; --gloed-a: 0.055; --gloed-stop: 68%;
    top: 8%;
    left: -12%;
}

.werkwijze::before {
    --gloed-w: 42vw; --gloed-max: 560px; --gloed-a: 0.05; --gloed-stop: 68%;
    top: 12%;
    right: -14%;
}

/* LANDING */

.section1 {
    position: relative;
    display: flex;
    align-items: center;
    min-height: calc(100svh - 74px);
    overflow: hidden;
}

.landings-box {
    position: relative;
    z-index: 2;
    width: var(--site-content-width);
    margin: 0 auto;
    padding-bottom: clamp(30px, 6vh, 70px);
    display: grid;
    grid-template-columns: 1fr minmax(0, 390px);
    align-items: center;
    gap: clamp(40px, 6vw, 90px);
}

/* TEKST */

/* Alles wat gelijk instapt, alleen de vertraging verschilt */

.landing-texts h1,
.landing-texts p,
.button-box,
.perf-card {
    opacity: 0;
    animation: landing-in 0.85s var(--avdb-ease) forwards;
}

.landing-texts {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: start;
}

/* Hoofdtekst */

.landing-texts h1 {
    font-family: var(--avdb-font-sans), sans-serif;
    font-size: clamp(32px, 3.9vw, 42.8px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1.5px;
    animation-delay: 0.06s;
    color: var(--avdb-text);
}

/* Subtekst */

.landing-texts p {
    max-width: 38ch;
    margin-top: 22px;
    font-family: var(--avdb-font-sans), sans-serif;
    font-size: clamp(15px, 1vw, 16px);
    font-weight: 300;
    line-height: 1.7;
    animation-delay: 0.18s;
    color: rgba(255, 255, 255, 0.5);
}

/* BUTTONS */

.button-box {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: clamp(30px, 3.6vh, 40px);
    animation-delay: 0.28s;
    font-family: var(--avdb-font-sans), sans-serif;
}

/* Primaire knop */

.project-button {
    min-height: var(--touch-target);
    padding: 13px 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid var(--gold);
    border-radius: var(--avdb-pill);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: var(--gold);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.project-button:hover {
    background-color: transparent;
    border-color: #fbe07a;
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -14px rgba(246, 212, 81, 0.85);
}

/* Secundaire tekstlink — hero en slot delen dezelfde toon */

.werk-button {
    position: relative;
    padding-bottom: 3px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.werk-button::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.26);
    transition: background-color 0.2s ease;
}

.werk-button .arrow {
    display: inline-block;
    margin-left: 4px;
    transition: transform 0.2s ease;
}

.werk-button:hover { color: white; }

.werk-button:hover::after { background-color: var(--gold); }

.werk-button:hover .arrow { transform: translateX(4px); }

/* Geruststelling onder de knoppen */

.hero-trust {
    margin-top: 20px;
    font-family: var(--avdb-font-sans), sans-serif;
    font-size: 11.5px;
    font-weight: 300;
    letter-spacing: 0.2px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.58);
}

/* SCROLL-CUE — subtiele hint onderin de eerste viewport van de hero.
   Verankerd aan de bovenkant van .section1 (niet de onderkant): die
   bovenkant verschuift nooit tussen breakpoints, terwijl de werkelijke
   hoogte van .section1 dat wel doet zodra de hero op tablet/telefoon
   onder het prestatiepaneel uit gaat lopen. Zo blijft de hint altijd
   precies onderin het eerste scherm staan, ongeacht paginahoogte. */

.scroll-cue {
    position: absolute;
    left: 0;
    right: 0;
    width: fit-content;
    margin-inline: auto;
    top: calc(100svh - 74px - clamp(26px, 5.5vh, 52px));
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: landing-in 0.85s var(--avdb-ease) forwards;
    animation-delay: 0.46s;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* Zodra de intro-animatie klaar is, zet index.js deze klasse erbij.
   Nodig omdat een "forwards"-animatie de opacity permanent blijft
   vasthouden — zolang die actief is, start er geen transition. Door
   de animatie hier expliciet af te sluiten (animation: none) komt
   opacity weer gewoon onder de normale cascade, en fadet hij daarna
   soepel in plaats van abrupt. */

.scroll-cue.scroll-cue--klaar {
    animation: none;
    opacity: 1;
}

/* Verdwijnt zodra index.js detecteert dat er een stukje gescrold is. */

.scroll-cue.scroll-cue--verborgen {
    opacity: 0 !important;
}

.scroll-cue-text {
    font-family: var(--avdb-font-sans), sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.82;
    white-space: nowrap;
}

.scroll-cue-arrow {
    display: block;
    color: var(--gold);
    opacity: 0.78;
    animation: scroll-cue-drijven 2.4s ease-in-out 1.3s infinite;
}

@media (max-width: 980px) {
    /* Op tablet/telefoon willen we de hint juist als allerlaatste regel
       van het eerste scherm — dus onder de trustregel, niet erboven.
       Trustregel schuift iets omhoog, de hint neemt zijn oude plek
       onderaan over, en het paneel eronder komt pas na het scrollen. */
    .landing-texts {
        padding-bottom: clamp(120px, 16vh, 156px) !important;
    }

    .hero-trust {
        bottom: clamp(58px, 9vh, 78px) !important;
        /* De algemene ".landing-texts p" regel geeft elke alinea een
           max-breedte van 38ch — bedoeld voor de leestekst, maar hij
           raakt hierdoor ook de trustregel. Daardoor kon die niet meer
           over de volle breedte spannen en stond hij dus niet echt
           gecentreerd, ondanks left/right/text-align. */
        max-width: none !important;
    }

    .scroll-cue {
        top: calc(100svh - 74px - clamp(46px, 7vh, 58px));
    }
}

@media (max-width: 980px) and (max-height: 480px) {
    /* Telefoon in liggende stand: te weinig hoogte om de trustregel en de
       hint allebei netjes te stapelen zonder overlap. De hint mag hier
       wijken — scrollen ligt in liggende stand toch al voor de hand. */
    .scroll-cue { display: none; }
}

/* PRESTATIEPANEEL */

.perf-card {
    position: relative;
    overflow: hidden;
    padding: 20px 24px;
    background-color: rgba(18, 18, 20, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    backdrop-filter: var(--glas);
    -webkit-backdrop-filter: var(--glas);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07), 0 34px 60px -30px rgba(0, 0, 0, 0.95);
    animation-delay: 0.36s;
    font-family: var(--avdb-font-mono), monospace;
}

/* Glans op de bovenrand */

.perf-card::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 18%;
    right: 18%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
}

/* Kop */

.perf-head { display: flex; align-items: center; gap: 9px; padding-bottom: 14px; }

.perf-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    animation: perf-pulse 2.4s ease-out infinite;
}

.perf-title {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.6px;
    color: rgba(255, 255, 255, 0.82);
}

.perf-meta {
    margin-left: auto;
    font-size: 10px;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.56);
}

/* Voortgangslijn */

.perf-progress {
    position: relative;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.07);
    overflow: hidden;
}

.perf-progress span {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(246, 212, 81, 0.2), var(--gold));
}

.perf-progress span.running { animation: perf-fill 1.4s cubic-bezier(0.32, 0.9, 0.36, 1) forwards; }

.perf-progress span.done { width: 100%; animation: none; }

/* Regels */

.perf-list { list-style: none; margin-top: 2px; }

.perf-list li {
    display: flex;
    align-items: baseline;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.045);
    font-size: 12px;
}

.perf-list li:last-child { border-bottom: none; }

.perf-label { color: rgba(255, 255, 255, 0.42); }

.perf-sub {
    font-size: 9.5px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.22);
}

.perf-value {
    margin-left: auto;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.88);
    font-variant-numeric: tabular-nums;
    transition: color 0.4s ease;
}

.perf-value.goed { color: var(--gold); }

/* Wat deze browser niet meet, mag ook niet schreeuwen */

.perf-value.stil {
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.34);
}

/* Slotregel */

.perf-final {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 11px;
}

.perf-final .perf-label { letter-spacing: 0.4px; }

/* Voetregel */

.perf-note {
    margin-top: 13px;
    font-family: var(--avdb-font-sans), sans-serif;
    font-size: 11.5px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.42);
}

.perf-note strong { font-weight: 400; color: rgba(255, 255, 255, 0.70); }

/* ROUTES */

.diensten-showcase {
    position: relative;
    z-index: 2;
    padding: clamp(64px, 8vw, 120px) 0 clamp(24px, 3vw, 46px);
    overflow: hidden;
}

.routes-box {
    position: relative;
    z-index: 2;
    width: var(--site-content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.5fr);
    gap: clamp(36px, 5vw, 90px);
    font-family: var(--avdb-font-sans), sans-serif;
}

/* Routes-kop */

.routes-head { position: sticky; top: clamp(120px, 32vh, 300px); align-self: start; }

.routes-head p {
    max-width: 30ch;
    margin-top: 20px;
    font-size: 14.5px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--avdb-muted);
}

/* LIJST */

.routes-lijst {
    --rail: clamp(22px, 3vw, 44px);
    padding-left: var(--rail);
    border-left: 1px solid rgba(255, 255, 255, 0.07);
}

/* Eén route */

.route {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: clamp(18px, 2.5vw, 40px);
    padding: clamp(26px, 3vw, 40px) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    transition: background-color 0.28s ease;
}

.route:first-child { padding-top: 0; border-top: none; }

.route:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }

/* Gouden stukje op de zijlijn */

.route::before {
    content: "";
    position: absolute;
    top: 0;
    left: calc(var(--rail) * -1 - 1px);
    width: 1px;
    height: 0;
    background: linear-gradient(180deg, var(--gold), rgba(246, 212, 81, 0.15));
    transition: height 0.32s ease;
}

.route:hover::before,
.route:focus-visible::before { height: 100%; }

.route:hover { background-color: rgba(255, 255, 255, 0.014); }

/* Tekst */

.route-tekst { min-width: 0; }

.route-titel {
    font-size: clamp(22px, 2.3vw, 31px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.9px;
    color: var(--avdb-text);
    transition: transform 0.28s ease;
}

.route:hover .route-titel { transform: translateX(4px); }

.route-text {
    max-width: 44ch;
    margin-top: 14px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--avdb-muted);
}

.route .route-text { color: rgba(255, 255, 255, 0.44); }

/* OVER ONS */

/* Dit is geen dienst, dus leest het ook anders */

.route-over .route-tekst { padding-left: clamp(0px, 2vw, 34px); }

.route-label {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(246, 212, 81, 0.68);
}

.route-over .route-titel { font-size: clamp(19px, 1.7vw, 24px); letter-spacing: -0.5px; }

.route-lede {
    max-width: 34ch;
    margin-top: 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: clamp(15px, 1.2vw, 17.5px);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.route-over .route-text { margin-top: 12px; font-size: 13.5px; }

/* SLOTREGEL */

.routes-slot {
    margin-top: clamp(20px, 2.4vw, 30px);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.38);
}

.routes-slot a { position: relative; padding-bottom: 3px; font-weight: 400; color: var(--gold); }

.routes-slot a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(246, 212, 81, 0.35);
    transition: background-color 0.24s ease;
}

.routes-slot a span { display: inline-block; margin-left: 3px; transition: transform 0.24s ease; }

.routes-slot a:hover::after { background-color: var(--gold); }

.routes-slot a:hover span { transform: translateX(4px); }

/* PIJL */

/* Waar de kaart je heen brengt */

.route-actie { flex: none; margin-left: auto; display: flex; align-items: center; gap: 14px; }

.route-actie-label {
    font-family: var(--avdb-font-sans), sans-serif;
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 0.2px;
    white-space: nowrap;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.24s ease;
}

.route:hover .route-actie-label,
.route:focus-visible .route-actie-label { color: var(--gold); }

.route-pijl {
    flex: none;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.route:hover .route-pijl { color: var(--gold); border-color: rgba(246, 212, 81, 0.42); transform: translateX(4px); }

.route:focus-visible .route-pijl { color: var(--gold); border-color: rgba(246, 212, 81, 0.42); }

/* PROJECT */

.showcase-section {
    position: relative;
    z-index: 2;
    padding: clamp(34px, 4.5vw, 68px) 0 0;
    overflow: hidden;
}

.showcase-box { position: relative; z-index: 2; width: var(--site-content-width); margin: 0 auto; }

/* Kop */

.showcase-intro { margin-bottom: clamp(22px, 2.6vw, 36px); font-family: var(--avdb-font-sans), sans-serif; }

.showcase-eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(246, 212, 81, 0.68);
}

.showcase-intro p {
    max-width: 42ch;
    margin-top: 16px;
    font-size: 14.5px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--avdb-muted);
}

.showcase-card {
    padding: clamp(26px, 3.4vw, 52px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.42fr);
    align-items: center;
    gap: clamp(32px, 5vw, 80px);
    font-family: var(--avdb-font-sans), sans-serif;
}

/* Gouden gloed die de hoek in loopt */

.showcase-card::after {
    content: "";
    position: absolute;
    top: -34%;
    right: -14%;
    width: 46%;
    aspect-ratio: 1;
    background: radial-gradient(circle,
        rgba(246, 212, 81, 0.09) 0%, rgba(246, 212, 81, 0.03) 44%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.showcase-body { position: relative; z-index: 2; }

/* Klant */

.showcase-topline {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-bottom: clamp(20px, 2.4vw, 32px);
}

.showcase-client {
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: rgba(255, 255, 255, 0.88);
}

.showcase-badge {
    padding: 4px 13px;
    border: 1px solid rgba(246, 212, 81, 0.42);
    border-radius: var(--avdb-pill);
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--gold);
}

/* Tekst */

.showcase-title {
    max-width: 22ch;
    font-family: var(--avdb-font-sans), sans-serif;
    font-size: clamp(22px, 2.5vw, 33px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -1px;
    color: #f6f5f2;
}

.showcase-lede {
    max-width: 40ch;
    margin-top: clamp(22px, 2.6vw, 36px);
    font-family: Georgia, "Times New Roman", serif;
    font-style: italic;
    font-size: clamp(15px, 1.3vw, 18.5px);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
}

.showcase-text {
    max-width: 50ch;
    margin-top: clamp(18px, 2vw, 26px);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.85;
    color: var(--avdb-muted);
}

/* Specs */

.showcase-specs { margin-top: clamp(28px, 3.4vw, 46px); }

.spec-rij {
    display: grid;
    grid-template-columns: minmax(0, 170px) minmax(0, 1fr);
    align-items: baseline;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-rij:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }

.spec-rij dt {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
}

.spec-rij dd {
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1px;
    color: rgba(255, 255, 255, 0.74);
}

/* Link */

.showcase-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: clamp(26px, 3vw, 40px);
    padding-bottom: 5px;
    font-size: 14.5px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: var(--gold);
}

.showcase-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(246, 212, 81, 0.42);
    transition: background-color 0.3s ease;
}

.showcase-link span { display: inline-block; font-size: 12px; transition: transform 0.3s ease; }

.showcase-link:hover::after { background-color: var(--gold); }

.showcase-link:hover span { transform: translate(3px, -3px); }

/* TELEFOON */

.showcase-beeld { position: relative; z-index: 2; display: flex; justify-content: center; }

/* Behuizing — de padding is de rand rondom het scherm */

.telefoon {
    position: relative;
    width: min(100%, 268px);
    padding: 9px;
    background: linear-gradient(152deg, #34343a 0%, #1b1b1f 34%, #101012 62%, #26262b 100%);
    border-radius: 44px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.22),
        inset 0 -1px 0 rgba(255, 255, 255, 0.06),
        inset 0 0 0 1px rgba(0, 0, 0, 0.75),
        0 54px 84px -42px rgba(0, 0, 0, 1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Volumeknoppen op de linkerrand, de tweede knop via de schaduw */

.telefoon::before {
    content: "";
    position: absolute;
    top: 98px;
    left: -2px;
    width: 2px;
    height: 26px;
    background-color: rgba(255, 255, 255, 0.13);
    border-radius: 2px 0 0 2px;
    box-shadow: 0 36px 0 rgba(255, 255, 255, 0.13);
}

/* Dynamic island */

.telefoon::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    width: 29%;
    max-width: 76px;
    height: 19px;
    background-color: #08080a;
    border-radius: var(--avdb-pill);
    transform: translateX(-50%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 3;
}

/* Scherm — verhouding van de echte screenshot: 1057 x 2048 */

.telefoon img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1057 / 2048;
    object-fit: cover;
    object-position: top center;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 35px;
}

/* REVIEW */

.review {
    width: min(calc(100% - (2 * var(--site-gutter))), 540px);
    margin: clamp(46px, 5.5vw, 72px) auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    font-family: var(--avdb-font-sans), sans-serif;
}

.review-sterren { font-size: 15px; letter-spacing: 7px; text-indent: 7px; color: var(--gold); }

.review blockquote p {
    font-size: clamp(16px, 1.7vw, 20px);
    font-weight: 300;
    line-height: 1.55;
    letter-spacing: -0.2px;
    color: rgba(255, 255, 255, 0.86);
}

.review figcaption {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    font-weight: 300;
    line-height: 1.5;
}

/* Waar de beoordeling vandaan komt */

.review-bron {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 4px 12px 4px 9px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--avdb-pill);
    font-size: 11.5px;
    font-weight: 400;
    letter-spacing: 0.2px;
    color: rgba(255, 255, 255, 0.72);
}

.review-vink {
    display: grid;
    place-items: center;
    width: 14px;
    height: 14px;
    background-color: rgba(246, 212, 81, 0.14);
    border-radius: 50%;
    font-size: 8.5px;
    line-height: 1;
    color: var(--gold);
}

.review-bedrijf { font-size: 11.5px; color: rgba(255, 255, 255, 0.38); }

/* SCHEIDING */

.scheiding {
    width: min(70%, 340px);
    height: 1px;
    margin: clamp(46px, 5.5vw, 72px) auto;
    background: linear-gradient(90deg,
        transparent, rgba(255, 255, 255, 0.16) 30%, rgba(255, 255, 255, 0.16) 70%, transparent);
}

/* PRIJSINDICATIE */

.pricing-section { position: relative; z-index: 2; padding: 0 0 clamp(70px, 8vw, 120px); overflow: hidden; }

.pricing-box { position: relative; z-index: 2; width: var(--site-content-width); margin: 0 auto; }

/* Intro */

.pricing-intro { margin-bottom: clamp(32px, 4vw, 52px); text-align: center; }

.pricing-heading h2 { max-width: 18ch; margin: 0 auto; font-family: var(--avdb-font-sans), sans-serif; }

.pricing-heading p {
    max-width: 46ch;
    margin: 16px auto 0;
    font-family: var(--avdb-font-sans), sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.48);
}

/* Prijsblok */

.pricing-panel { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }

.price-item {
    position: relative;
    min-width: 0;
    padding: clamp(26px, 2.6vw, 34px);
    display: flex;
    flex-direction: column;
    font-family: var(--avdb-font-sans), sans-serif;
    transition: background-color 0.28s ease, transform 0.28s ease;
}

.price-item + .price-item { border-left: 1px solid rgba(255, 255, 255, 0.065); }

.price-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(246, 212, 81, 0.82), transparent);
    transform: translateX(-50%);
    transition: width 0.32s ease;
}

.price-item:hover { background-color: rgba(255, 255, 255, 0.018); }

.price-item:hover::before { width: 68%; }

/* Bovenregel */

.price-topline { display: flex; align-items: center; gap: 12px; }

.price-type {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15px;
    color: rgba(255, 255, 255, 0.82);
}

/* Bedrag */

.price-value {
    min-height: 66px;
    margin-top: 22px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 7px;
}

.price-from {
    width: 100%;
    margin-bottom: -3px;
    font-size: 10.5px;
    font-weight: 300;
    letter-spacing: 0.35px;
    color: rgba(255, 255, 255, 0.34);
}

.price-amount {
    font-size: clamp(30px, 2.6vw, 38px);
    font-weight: 500;
    letter-spacing: -1px;
    color: var(--avdb-text);
}

.price-period { font-size: 11.5px; font-weight: 300; color: rgba(255, 255, 255, 0.38); }

/* Omschrijving */

.price-description {
    max-width: 35ch;
    margin-top: 18px;
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.49);
}

/* Link */

.price-link {
    position: relative;
    width: fit-content;
    margin-top: auto;
    padding-top: 26px;
    padding-bottom: 3px;
    font-size: 12.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.2s ease;
}

.price-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.20);
    transition: background-color 0.2s ease;
}

.price-link span { display: inline-block; margin-left: 4px; transition: transform 0.2s ease; }

.price-link:hover { color: white; }

.price-link:hover::after { background-color: var(--gold); }

.price-link:hover span { transform: translateX(4px); }

/* ONDERREGEL */

.pricing-bottom {
    margin-top: clamp(30px, 4vw, 46px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    text-align: center;
    font-family: var(--avdb-font-sans), sans-serif;
}

.pricing-notes {
    width: min(100%, 820px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.pricing-note {
    min-width: 0;
    padding: 20px clamp(20px, 2.4vw, 28px) 22px;
    text-align: left;
    background-color: rgba(18, 18, 20, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.pricing-note-label {
    display: block;
    margin-bottom: 10px;
    font-family: var(--avdb-font-mono), monospace;
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 1.35px;
    text-transform: uppercase;
    color: rgba(246, 212, 81, 0.62);
}

.pricing-bottom p {
    max-width: 58ch;
    font-size: 12.75px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.40);
}

.pricing-note p { max-width: none; }

.pricing-bottom strong {
    display: block;
    margin-bottom: 5px;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.70);
}

/* Geruststelling onder de knop */

.pricing-trust {
    margin-top: -8px;
    font-family: var(--avdb-font-sans), sans-serif;
    font-size: 11.5px;
    font-weight: 300;
    letter-spacing: 0.2px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.26);
}

/* WERKWIJZE */

.werkwijze { position: relative; z-index: 2; padding: 0 0 clamp(56px, 6.5vw, 92px); overflow: hidden; }

.werkwijze-box {
    position: relative;
    z-index: 2;
    width: var(--site-content-width);
    margin: 0 auto;
    font-family: var(--avdb-font-sans), sans-serif;
}

/* Kop */

.werkwijze-intro { margin-bottom: clamp(34px, 4.4vw, 60px); text-align: center; }

.werkwijze-eyebrow {
    display: block;
    margin-bottom: 16px;
    font-family: var(--avdb-font-mono), monospace;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: rgba(246, 212, 81, 0.6);
}

.werkwijze-intro h2 { max-width: 20ch; margin: 0 auto; }

.werkwijze-intro p {
    max-width: 44ch;
    margin: 16px auto 0;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.46);
}

/* TRAJECT */

.traject {
    --rail: clamp(18px, 2.4vw, 34px);
    --stap-pad: clamp(30px, 3.4vw, 48px);
    position: relative;
    width: min(100%, 880px);
    margin: 0 auto;
    list-style: none;
    padding-left: var(--rail);
    border-left: 1px solid rgba(255, 255, 255, 0.07);
}

/* Gouden lijn die meeloopt terwijl je scrolt */

.traject::before {
    content: "";
    position: absolute;
    top: 0;
    left: -1px;
    width: 1px;
    height: 100%;
    background-color: rgba(246, 212, 81, 0.55);
    transform: scaleY(0);
    transform-origin: top center;
    pointer-events: none;
}

/* Eén stap */

.stap {
    position: relative;
    padding: var(--stap-pad) 0;
    display: grid;
    grid-template-columns: clamp(64px, 7.5vw, 112px) minmax(0, 1fr);
    align-items: start;
    gap: clamp(18px, 2.6vw, 40px);
    border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.stap:first-child { padding-top: 0; border-top: none; }

/* Knooppunt op de zijlijn */

.stap::before {
    content: "";
    position: absolute;
    top: calc(var(--stap-pad) + 13px);
    left: calc(var(--rail) * -1 - 3px);
    width: 5px;
    height: 5px;
    background-color: rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

.stap:first-child::before { top: 13px; }

.stap:hover::before { background-color: var(--gold); box-shadow: 0 0 0 4px rgba(246, 212, 81, 0.09); }

/* Het cijfer, alleen een contour */

.stap-nr {
    font-size: clamp(32px, 4.2vw, 52px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -2.4px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.24);
    transition: -webkit-text-stroke-color 0.4s ease, color 0.4s ease;
}

/* Voor browsers zonder contourtekst */

@supports not (-webkit-text-stroke: 1px white) {
    .stap-nr { color: rgba(255, 255, 255, 0.12); }
}

.stap:hover .stap-nr { color: rgba(246, 212, 81, 0.07); -webkit-text-stroke-color: rgba(246, 212, 81, 0.75); }

/* De laatste stap is de oplevering, die mag er al staan */

.stap-live .stap-nr { -webkit-text-stroke-color: rgba(246, 212, 81, 0.45); }

/* Tekst */

.stap-tekst { min-width: 0; padding-top: 2px; }

.stap-titel {
    font-size: clamp(19px, 1.9vw, 25px);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.7px;
    color: var(--avdb-text);
    transition: transform 0.3s ease;
}

.stap:hover .stap-titel { transform: translateX(3px); }

.stap-text {
    max-width: 54ch;
    margin-top: 13px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--avdb-muted);
}

/* Wat je van die stap mag verwachten */

.stap-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
    font-family: var(--avdb-font-mono), monospace;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.34);
    transition: color 0.3s ease;
}

.stap-meta::before {
    content: "";
    width: 16px;
    height: 1px;
    background-color: rgba(246, 212, 81, 0.5);
    transition: width 0.3s ease, background-color 0.3s ease;
}

.stap:hover .stap-meta { color: rgba(255, 255, 255, 0.62); }

.stap:hover .stap-meta::before { width: 28px; background-color: var(--gold); }

.stap-live .stap-meta { color: rgba(246, 212, 81, 0.78); }

.stap-live .stap-meta::before { background-color: var(--gold); }

/* NA DE OPLEVERING */

.oplevering { width: min(100%, 880px); margin: clamp(40px, 5vw, 66px) auto 0; text-align: center; }

.oplevering-kop { margin-bottom: clamp(22px, 2.6vw, 32px); }

.oplevering-label {
    display: block;
    margin-bottom: 12px;
    font-family: var(--avdb-font-mono), monospace;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.oplevering-kop h3 {
    font-size: clamp(21px, 2.1vw, 28px);
    font-weight: 500;
    line-height: 1.15;
    letter-spacing: -0.8px;
    color: var(--avdb-text);
}

.oplevering-kop p {
    max-width: 46ch;
    margin: 10px auto 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--avdb-muted);
}

/* De twee routes */

.keuzes {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: stretch;
    gap: clamp(12px, 1.6vw, 22px);
}

.keuze {
    position: relative;
    overflow: hidden;
    padding: clamp(22px, 2.4vw, 30px);
    background-color: rgba(18, 18, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 16px;
    backdrop-filter: var(--glas-zacht);
    -webkit-backdrop-filter: var(--glas-zacht);
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

/* Gouden streep die van het midden uit opent */

.keuze::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: rgba(246, 212, 81, 0.8);
    transform: translateX(-50%);
    transition: width 0.42s var(--avdb-ease);
}

.keuze:hover { background-color: rgba(20, 20, 22, 0.55); border-color: rgba(255, 255, 255, 0.14); }

.keuze:hover::before { width: 70%; }

.keuze-titel { font-size: 16.5px; font-weight: 500; letter-spacing: -0.2px; color: var(--avdb-text); }

.keuze-text {
    max-width: 36ch;
    margin: 10px auto 0;
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--avdb-muted);
}

/* Het woordje tussen de twee */

.keuze-of {
    align-self: center;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.4px;
    color: rgba(255, 255, 255, 0.36);
}

/* Onderhoud, want dat hoeft niet */

.oplevering-extra {
    max-width: 56ch;
    margin: clamp(18px, 2vw, 26px) auto 0;
    font-size: 12.5px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.34);
}

.extra-label {
    margin-right: 8px;
    font-family: var(--avdb-font-mono), monospace;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: rgba(246, 212, 81, 0.66);
}

.extra-label::after { content: " ·"; color: rgba(255, 255, 255, 0.2); }

/* CONTACT / EERSTE STAP */

.contact-section {
    position: relative;
    z-index: 2;
    width: var(--site-content-width);
    margin: clamp(44px, 5vw, 68px) auto clamp(72px, 8vw, 110px);
    padding-top: clamp(46px, 5vw, 68px);
    border-top: 1px solid rgba(255, 255, 255, 0.075);
}

.contact-section::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    width: min(46vw, 520px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(246, 212, 81, 0.20), transparent);
    transform: translateX(-50%);
    pointer-events: none;
}

.contact-box {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    align-items: start;
    gap: clamp(44px, 7vw, 96px);
    font-family: var(--avdb-font-sans), sans-serif;
}

.contact-intro { align-self: start; }

.contact-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    font-family: var(--avdb-font-mono), monospace;
    font-size: 10.5px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(246, 212, 81, 0.72);
}

.contact-intro h2 {
    max-width: 15ch;
    font-size: clamp(29px, 3.4vw, 46px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -1.4px;
    color: var(--avdb-text);
}

.contact-intro > p {
    max-width: 39ch;
    margin-top: 17px;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.75;
    color: var(--avdb-muted);
}

.contact-intro .contact-region {
    margin-top: 12px;
    font-size: 12.75px;
    color: rgba(255, 255, 255, 0.34);
}

.contact-direct {
    margin-top: clamp(26px, 3vw, 36px);
    display: grid;
    font-style: normal;
}

.contact-direct a {
    min-height: var(--touch-target);
    padding: 13px 0;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.74);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-direct a:first-child { border-top: 1px solid rgba(255, 255, 255, 0.07); }

.contact-direct a span {
    font-family: var(--avdb-font-mono), monospace;
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

.contact-direct a:hover { color: var(--gold); border-color: rgba(246, 212, 81, 0.28); }

.contact-direct a:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 4px;
    border-radius: 3px;
}

/* Het formulier zelf staat in shared.css, inclusief zijn eigen
   responsive gedrag. Zo delen alle pagina's met een .contact-form
   dezelfde vormgeving en dezelfde beveiliging. Hier staat alleen
   de sectie eromheen. */

/* TOETSENBORD-FOCUS */

.project-button:focus-visible,
.werk-button:focus-visible,
.price-link:focus-visible,
.pricing-cta:focus-visible {
    outline: 1px solid var(--gold);
    outline-offset: 5px;
    border-radius: var(--avdb-pill);
}

.routes-slot a:focus-visible { outline: 1px solid var(--gold); outline-offset: 5px; border-radius: 2px; }

.showcase-link:focus-visible { outline: 1px solid var(--gold); outline-offset: 6px; border-radius: 2px; }

.route:focus-visible { outline: 1px solid var(--gold); outline-offset: 8px; border-radius: 4px; }

/* ANIMATIE */

@keyframes landing-in {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scroll-cue-drijven {
    0%, 100% { transform: translateY(0); opacity: 0.78; }
    50% { transform: translateY(5px); opacity: 0.35; }
}

@keyframes perf-fill {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes perf-pulse {
    0% { box-shadow: 0 0 0 0 rgba(246, 212, 81, 0.45); }
    70% { box-shadow: 0 0 0 7px rgba(246, 212, 81, 0); }
    100% { box-shadow: 0 0 0 0 rgba(246, 212, 81, 0); }
}

@keyframes rail-vullen {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}
