:root {
    --yellow: #FFD400;
    --yellow-dark: #E6BF00;
    --black: #0B0B0B;
    --dark: #131313;
    --card: #1A1A1A;
    --card-border: #2A2A2A;
    --text: #F5F5F5;
    --muted: #B7B7B7;
    --radius: 14px;
    --shadow: 0 20px 50px rgba(0, 0, 0, .45);
    --font-head: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

.container {
    width: min(1180px, 92%);
    margin: 0 auto
}

.yellow {
    color: var(--yellow)
}

.icon {
    width: 1.15em;
    height: 1.15em;
    fill: currentColor;
    flex: none
}

/* ====== KNOPPEN ====== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .55em;
    padding: .85em 1.6em;
    border-radius: 999px;
    border: 2px solid transparent;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .02em;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-2px)
}

.btn:active {
    transform: translateY(0)
}

.btn-yellow {
    background: var(--yellow);
    color: #111;
    box-shadow: 0 8px 24px rgba(255, 212, 0, .28)
}

.btn-yellow:hover {
    background: var(--yellow-dark);
    box-shadow: 0 12px 30px rgba(255, 212, 0, .4)
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: #3a3a3a
}

.btn-ghost:hover {
    border-color: var(--yellow);
    color: var(--yellow)
}

.btn-whatsapp {
    background: #22c55e;
    color: #fff;
    box-shadow: 0 8px 24px rgba(34, 197, 94, .28)
}

.btn-whatsapp:hover {
    background: #1fb457
}

.btn-sm {
    padding: .55em 1.2em;
    font-size: .85rem
}

.btn-block {
    width: 100%;
    justify-content: center
}

/* ====== NAVIGATIE ====== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(11, 11, 11, .85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s, box-shadow .3s;
}

.site-header.scrolled {
    border-bottom-color: #222;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .4)
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .9rem 0;
    gap: 1rem
}

.logo {
    display: flex;
    align-items: center;
    gap: .6rem
}

.logo-icon {
    width: 38px;
    height: 38px;
    color: var(--yellow);
    flex: none
}

.logo-text {
    font-family: var(--font-head);
    font-size: 1.55rem;
    letter-spacing: .06em;
    color: #fff;
    line-height: 1
}

.logo-text span {
    color: var(--yellow)
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem
}

.main-nav>a:not(.btn) {
    font-weight: 600;
    font-size: .9rem;
    color: var(--muted);
    position: relative;
    padding: .3em 0;
    transition: color .2s;
}

.main-nav>a:not(.btn)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    background: var(--yellow);
    border-radius: 2px;
    transition: width .25s ease;
}

.main-nav>a:not(.btn):hover,
.main-nav>a.active {
    color: #fff
}

.main-nav>a:not(.btn):hover::after,
.main-nav>a.active::after {
    width: 100%
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 8px
}

.nav-toggle span {
    width: 26px;
    height: 3px;
    background: var(--yellow);
    border-radius: 2px;
    transition: transform .3s, opacity .3s
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg)
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg)
}

/* ====== HERO ====== */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 8.5rem 0 4rem;
    background:
        radial-gradient(1000px 500px at 85% 10%, rgba(255, 212, 0, .10), transparent 60%),
        radial-gradient(700px 500px at 0% 100%, rgba(255, 212, 0, .06), transparent 60%),
        var(--black);
}

.hero-grunge {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .5;
    background-image:
        repeating-linear-gradient(115deg, transparent 0 220px, rgba(255, 212, 0, .03) 220px 222px);
    mask-image: radial-gradient(120% 90% at 50% 0%, #000 40%, transparent 100%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 3.5rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: .45em 1.1em;
    border-radius: 999px;
    border: 1px solid #3a3a3a;
    background: rgba(255, 212, 0, .07);
    color: var(--yellow);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
}

.hero h1 {
    font-family: var(--font-head);
    font-size: clamp(3.4rem, 7.5vw, 6.2rem);
    line-height: .95;
    letter-spacing: .02em;
    color: #fff;
}

.hero-sub {
    color: var(--muted);
    font-size: 1.12rem;
    max-width: 34rem;
    margin: 1.3rem 0 2rem
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem
}

.hero-trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    margin-top: 2.4rem;
    color: var(--muted);
    font-size: .88rem;
    font-weight: 600;
}

.hero-trust li {
    display: flex;
    align-items: center;
    gap: .45em
}

.hero-trust .icon {
    color: var(--yellow)
}

.hero-visual {
    position: relative
}

.poster-frame {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow);
    transform: rotate(1.2deg);
    transition: transform .4s ease;
}

.poster-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    box-shadow: inset 0 0 0 3px rgba(255, 212, 0, .55);
    border-radius: var(--radius);
}

.poster-frame:hover {
    transform: rotate(0)
}

.poster-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.scroll-hint {
    position: absolute;
    left: 50%;
    bottom: 1.6rem;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    animation: bob 2s ease-in-out infinite;
}

.scroll-hint svg {
    width: 22px;
    height: 22px;
    fill: currentColor
}

@keyframes bob {

    0%,
    100% {
        transform: translate(-50%, 0)
    }

    50% {
        transform: translate(-50%, 8px)
    }
}

/* ====== SECTIES ====== */
.section {
    padding: 6.5rem 0
}

.section-alt {
    background: var(--dark);
    position: relative
}

.section-alt::before,
.section-alt::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--yellow), transparent);
    opacity: .35;
}

.section-alt::before {
    top: 0
}

.section-alt::after {
    bottom: 0
}

.section-head {
    max-width: 44rem;
    margin-bottom: 3.2rem
}

.eyebrow {
    color: var(--yellow);
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    font-size: .78rem;
    margin-bottom: .9rem;
}

.section h2 {
    font-family: var(--font-head);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    line-height: 1;
    letter-spacing: .02em;
    color: #fff;
}

.section-sub {
    color: var(--muted);
    margin-top: 1rem;
    font-size: 1.02rem
}

/* ====== DIENSTEN ====== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
    gap: 1.4rem
}

.service-card {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 2rem 1.7rem;
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: #3d3d3d;
    box-shadow: var(--shadow)
}

.service-card:hover::before {
    transform: scaleX(1)
}

.service-icon {
    width: 66px;
    height: 66px;
    border-radius: 16px;
    background: rgba(255, 212, 0, .1);
    border: 1px solid rgba(255, 212, 0, .25);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
}

.service-icon svg {
    width: 40px;
    height: 40px
}

.service-card h3 {
    font-size: 1.22rem;
    margin-bottom: .55rem;
    color: #fff
}

.service-card p {
    color: var(--muted);
    font-size: .93rem
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: 1.1rem
}

.tags span {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .05em;
    color: var(--yellow);
    border: 1px solid rgba(255, 212, 0, .35);
    border-radius: 999px;
    padding: .25em .8em;
    background: rgba(255, 212, 0, .06);
}

.note-card {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem;
    background: linear-gradient(90deg, rgba(255, 212, 0, .12), rgba(255, 212, 0, .04));
    border: 1px solid rgba(255, 212, 0, .35);
    border-radius: var(--radius);
    padding: 1.4rem 1.7rem;
}

.note-card .icon {
    width: 34px;
    height: 34px;
    color: var(--yellow);
    flex: none
}

.note-card p {
    flex: 1;
    min-width: 240px;
    color: #eee;
    font-size: .97rem
}

.note-card strong {
    color: var(--yellow)
}

/* ====== WAAROM WIJ ====== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.4rem
}

.why-card {
    text-align: center;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 2.4rem 1.6rem;
    transition: transform .3s ease, border-color .3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 212, 0, .4)
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.3rem;
    border-radius: 50%;
    background: var(--yellow);
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 26px rgba(255, 212, 0, .3);
}

.why-icon .icon {
    width: 32px;
    height: 32px
}

.why-card h3 {
    margin-bottom: .5rem;
    font-size: 1.12rem;
    color: #fff
}

.why-card p {
    color: var(--muted);
    font-size: .92rem
}

/* ====== WERKWIJZE ====== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.4rem;
    counter-reset: step
}

.step-card {
    position: relative;
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 2.4rem 1.7rem 2rem;
    overflow: hidden;
}

.step-num {
    position: absolute;
    top: -.5rem;
    right: .6rem;
    font-family: var(--font-head);
    font-size: 6.5rem;
    line-height: 1;
    color: rgba(255, 212, 0, .13);
    pointer-events: none;
}

.step-card h3 {
    margin-bottom: .5rem;
    color: #fff
}

.step-card p {
    color: var(--muted);
    font-size: .94rem
}

.step-card a {
    color: var(--yellow);
    font-weight: 700
}

.step-card a:hover {
    text-decoration: underline
}

/* ====== CONTACT ====== */
.section-contact {
    background:
        radial-gradient(800px 400px at 100% 0%, rgba(255, 212, 0, .08), transparent 60%),
        var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem
}

.contact-form {
    background: var(--card);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 2.2rem;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: .3rem;
    color: #fff
}

.form-hint {
    color: var(--muted);
    font-size: .85rem;
    margin-bottom: 1.5rem
}

.form-row {
    margin-bottom: 1.2rem
}

.form-row label {
    display: block;
    font-size: .85rem;
    font-weight: 700;
    margin-bottom: .4rem;
    color: #ddd
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    background: #0f0f0f;
    border: 1px solid #2e2e2e;
    border-radius: 10px;
    color: var(--text);
    padding: .8em 1em;
    font-family: inherit;
    font-size: .95rem;
    transition: border-color .2s, box-shadow .2s;
}

.form-row textarea {
    resize: vertical
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--yellow);
    box-shadow: 0 0 0 3px rgba(255, 212, 0, .15);
}

/* ====== FOOTER ====== */
.site-footer {
    background: #080808;
    border-top: 1px solid #1e1e1e
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0;
}

.logo-footer {
    margin-bottom: .8rem
}

.footer-tag {
    color: var(--muted);
    font-size: .85rem;
    letter-spacing: .12em;
    text-transform: uppercase
}

.site-footer h4 {
    color: #fff;
    font-size: .95rem;
    margin-bottom: 1rem;
    letter-spacing: .05em
}

.site-footer ul {
    list-style: none;
    display: grid;
    gap: .55rem
}

.site-footer ul a {
    color: var(--muted);
    font-size: .92rem;
    transition: color .2s
}

.site-footer ul a:hover {
    color: var(--yellow)
}

.footer-bar {
    border-top: 1px solid #1a1a1a;
    padding: 1.2rem 0
}

.footer-bar p {
    color: #666;
    font-size: .82rem;
    text-align: center
}

/* ====== FLOATERS ====== */
.back-to-top {
    position: fixed;
    right: 1.4rem;
    bottom: 6rem;
    z-index: 90;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #333;
    background: rgba(20, 20, 20, .9);
    color: var(--yellow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .3s, transform .3s, background .2s;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0)
}

.back-to-top:hover {
    background: #1e1e1e
}

.back-to-top svg {
    width: 22px;
    height: 22px;
    fill: currentColor
}

.whatsapp-float {
    position: fixed;
    right: 1.4rem;
    bottom: 1.4rem;
    z-index: 90;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(34, 197, 94, .45);
    transition: transform .25s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1)
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: currentColor
}

/* ====== ANIMATIES ====== */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0)
}

@media (prefers-reduced-motion:reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    html {
        scroll-behavior: auto
    }

    .scroll-hint {
        animation: none
    }
}

/* ====== RESPONSIVE ====== */
@media (max-width:980px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.6rem
    }

    .hero {
        min-height: auto;
        padding-top: 7.5rem
    }

    .hero-visual {
        max-width: 560px
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media (max-width:760px) {
    .main-nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        z-index: 99;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(10, 10, 10, .97);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid #222;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s ease;
    }

    .main-nav.open {
        max-height: 420px
    }

    .main-nav>a:not(.btn) {
        padding: 1rem 6%;
        border-top: 1px solid #1b1b1b;
        font-size: 1rem
    }

    .main-nav>a:not(.btn)::after {
        display: none
    }

    .nav-cta {
        margin: 1rem 6% 1.4rem;
        justify-content: center
    }

    .nav-toggle {
        display: flex
    }

    .section {
        padding: 4.5rem 0
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .scroll-hint {
        display: none
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        bottom: 1.1rem;
        right: 1.1rem
    }

    .back-to-top {
        bottom: 4.6rem;
        right: 1.15rem
    }
}