:root {
    --bg: #050814;
    --bg2: #090f22;
    --panel: rgba(255,255,255,.075);
    --panel2: rgba(255,255,255,.11);
    --text: #ffffff;
    --muted: rgba(255,255,255,.72);
    --soft: rgba(255,255,255,.12);
    --red: #f5322a;
    --orange: #ff5a1f;
    --gold: #c5a35c;
    --dark-gold: #211600;
    --max: 1180px;
    --radius: 28px;
    --shadow: 0 28px 80px rgba(0,0,0,.35);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
}

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

img,
video {
    max-width: 100%;
}

.container {
    width: min(var(--max), calc(100% - 44px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.nav {
    width: min(var(--max), calc(100% - 44px));
    margin: 0 auto;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav.scrolled {
    margin-top: 10px;
    height: 70px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(5,8,20,.82);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 60px rgba(0,0,0,.32);
}

.brand {
    display: flex;
    align-items: center;
    gap: 13px;
    font-weight: 900;
    letter-spacing: -.02em;
    font-size: 21px;
}

.brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    background: rgba(255,255,255,.94);
    border-radius: 13px;
    padding: 4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 800;
}

.nav-links a {
    color: rgba(255,255,255,.86);
    transition: .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--orange);
}

.nav-cta {
    padding: 17px 29px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--orange), #f0441f);
    color: #fff !important;
    box-shadow: 0 16px 38px rgba(255,90,31,.25);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    background: rgba(255,255,255,.08);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 5px auto;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
    background:
        radial-gradient(circle at 50% 25%, rgba(255,90,31,.18), transparent 28%),
        linear-gradient(135deg, #050814, #071436 55%, #02030a);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .58;
    filter: saturate(1.05) contrast(1.1);
    z-index: -3;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 48%, rgba(8,18,48,.32), rgba(0,0,0,.75) 65%),
        linear-gradient(to bottom, rgba(4,6,16,.35), rgba(4,6,16,.72));
    z-index: -2;
}

.hero-content {
    width: min(960px, calc(100% - 44px));
    text-align: center;
    padding-top: 110px;
}

.hero-logo {
    width: 92px;
    height: 92px;
    object-fit: contain;
    margin-bottom: 18px;
    filter: drop-shadow(0 20px 25px rgba(0,0,0,.42));
}

.eyebrow,
.section-label {
    color: var(--orange);
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: 13px;
    margin: 0 0 14px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(46px, 7vw, 94px);
    line-height: .95;
    letter-spacing: -.075em;
}

.hero-text {
    max-width: 770px;
    margin: 26px auto 0;
    color: rgba(255,255,255,.82);
    font-size: clamp(18px, 2vw, 23px);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 38px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 0 28px;
    border-radius: 999px;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--orange), var(--red));
    box-shadow: 0 18px 42px rgba(245,50,42,.28);
}

.btn-secondary {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(12px);
}

.hero-bottom {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    width: min(var(--max), calc(100% - 44px));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.hero-bottom div {
    padding: 20px 22px;
    border-radius: 22px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
}

.hero-bottom strong {
    display: block;
    font-size: 18px;
}

.hero-bottom span {
    display: block;
    color: var(--muted);
    margin-top: 5px;
}

.section {
    padding: 105px 0;
}

.section.dark {
    background:
        radial-gradient(circle at 15% 10%, rgba(255,90,31,.12), transparent 34%),
        linear-gradient(180deg, #071024, #050814);
}

.two-col {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: start;
}

h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.02;
    letter-spacing: -.055em;
}

.content-text,
.section-head p,
.contact-section p,
.order-preview p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
}

.content-text p:first-child {
    margin-top: 0;
}

.section-head {
    max-width: 760px;
    margin-bottom: 42px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.product-card {
    min-height: 230px;
    padding: 28px;
    border-radius: var(--radius);
    background: linear-gradient(180deg, var(--panel2), var(--panel));
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow);
}

.product-card span {
    color: var(--orange);
    font-weight: 1000;
}

.product-card h3 {
    margin: 42px 0 13px;
    font-size: 25px;
    letter-spacing: -.035em;
}

.product-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
}

.price-section {
    background: #fff;
    color: #111827;
}

.price-section .section-label {
    color: var(--red);
}

.price-section .content-text {
    color: #4b5563;
}

.price-wrap {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 55px;
    align-items: center;
}

.price-card {
    padding: 34px;
    border-radius: var(--radius);
    background: #0b1022;
    color: #fff;
    box-shadow: 0 30px 80px rgba(10,15,34,.25);
}

.price-row {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}

.price-row strong {
    color: var(--orange);
}

.price-card p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 0;
}

.order-preview {
    background:
        linear-gradient(135deg, rgba(245,50,42,.16), transparent 38%),
        #050814;
}

.order-box {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: center;
    padding: 42px;
    border-radius: 34px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}

.order-box p {
    max-width: 760px;
}

.contact-section {
    background: #080d1d;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr .85fr;
    gap: 20px;
    align-items: stretch;
}

.contact-card {
    padding: 30px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
}

.contact-card h3 {
    margin-top: 0;
    font-size: 24px;
}

.contact-card a {
    color: #fff;
    font-weight: 800;
}

.hours {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 18px;
}

.hours span {
    color: var(--muted);
}

.footer {
    padding: 28px 0;
    background: #03050d;
    color: var(--muted);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 10px;
}

.footer strong {
    color: #fff;
}

@media (max-width: 900px) {
    .topbar-inner {
        justify-content: center;
    }

    .hide-mobile {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 86px;
        left: 22px;
        right: 22px;
        display: none;
        flex-direction: column;
        padding: 22px;
        border-radius: 24px;
        background: rgba(5,8,20,.96);
        border: 1px solid rgba(255,255,255,.12);
        backdrop-filter: blur(18px);
    }

    .nav-links.open {
        display: flex;
    }

    .hero-content {
        padding-top: 150px;
        padding-bottom: 190px;
    }

    .hero-bottom {
        grid-template-columns: 1fr;
        position: absolute;
        bottom: 18px;
    }

    .two-col,
    .price-wrap,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .order-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .section {
        padding: 76px 0;
    }

    .brand span {
        font-size: 17px;
    }

    .nav {
        width: calc(100% - 24px);
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-bottom {
        display: none;
    }

    .hero-content {
        padding-bottom: 60px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

.quick-contact {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    display: flex;
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: rgba(5,8,20,.78);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 55px rgba(0,0,0,.32);
}

.quick-contact a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 900;
    color: #fff;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.12);
}

.quick-contact a:first-child {
    background: linear-gradient(135deg, var(--orange), var(--red));
    border-color: transparent;
}

@media (max-width: 560px) {
    .quick-contact {
        left: 14px;
        right: 14px;
        bottom: 14px;
        justify-content: center;
    }

    .quick-contact a {
        flex: 1;
        padding: 0 12px;
    }

    .footer {
        padding-bottom: 92px;
    }
}

.contact-form {
    grid-column: 1 / -1;
    margin-top: 10px;
    padding: 34px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.09);
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: var(--shadow);
}

.form-head {
    margin-bottom: 24px;
}

.form-head h3 {
    margin: 0 0 8px;
    font-size: 28px;
    letter-spacing: -.035em;
}

.form-head p {
    margin: 0;
    color: var(--muted);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 22px;
}

.contact-form label {
    display: grid;
    gap: 8px;
}

.contact-form label.full {
    grid-column: 1 / -1;
}

.contact-form span {
    color: rgba(255,255,255,.82);
    font-weight: 800;
    font-size: 14px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 16px;
    background: rgba(0,0,0,.22);
    color: #fff;
    padding: 15px 16px;
    font: inherit;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(255,90,31,.78);
    box-shadow: 0 0 0 4px rgba(255,90,31,.13);
}

.contact-form ::placeholder {
    color: rgba(255,255,255,.42);
}

.hp-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.form-message {
    margin: 16px 0 0;
    color: var(--muted);
    font-weight: 800;
}

.form-message.success {
    color: #7ee787;
}

.form-message.error {
    color: #ff9a9a;
}

@media (max-width: 700px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .contact-form label.full {
        grid-column: auto;
    }
}

/* Hero video lichter en scherper */
.hero-video {
    opacity: .86 !important;
    filter: saturate(1.18) contrast(1.04) brightness(1.18) !important;
}

.hero-overlay {
    background:
        radial-gradient(circle at 50% 48%, rgba(8,18,48,.16), rgba(0,0,0,.44) 72%),
        linear-gradient(to bottom, rgba(4,6,16,.18), rgba(4,6,16,.44)) !important;
}

.hero {
    background:
        radial-gradient(circle at 50% 25%, rgba(255,90,31,.10), transparent 28%),
        linear-gradient(135deg, #050814, #071436 55%, #02030a) !important;
}

/* Hero tekst blijft goed leesbaar ondanks lichtere video */
.hero-content {
    text-shadow: 0 3px 22px rgba(0,0,0,.55);
}

/* Tijdelijk Bestellen verbergen */
.nav-links .nav-cta,
#bestellen {
    display: none !important;
}

/* Hero video iets lichter, maar niet te agressief */
.hero-video {
    opacity: .74 !important;
    filter: saturate(1.10) contrast(1.02) brightness(1.08) !important;
}

.hero-overlay {
    background:
        radial-gradient(circle at 50% 48%, rgba(8,18,48,.24), rgba(0,0,0,.58) 70%),
        linear-gradient(to bottom, rgba(4,6,16,.28), rgba(4,6,16,.58)) !important;
}

/* Hero titel twee regels */
.hero-title {
    display: grid;
    gap: 14px;
    margin: 0;
    line-height: 1.02;
    letter-spacing: -.055em;
}

.hero-title span {
    display: block;
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 500;
    letter-spacing: -.035em;
}

.hero-title strong {
    display: block;
    font-size: clamp(42px, 6vw, 78px);
    font-weight: 950;
    letter-spacing: -.07em;
}

@media (max-width: 560px) {
    .hero-title span {
        font-size: 30px;
    }

    .hero-title strong {
        font-size: 42px;
    }
}

/* Hero-video lichter maken */
.hero-video {
    opacity: 0.88 !important;
    filter: brightness(1.22) saturate(1.08) contrast(1.02) !important;
}

.hero-overlay {
    background:
        radial-gradient(circle at 50% 48%, rgba(8,18,48,.10), rgba(0,0,0,.32) 72%),
        linear-gradient(to bottom, rgba(4,6,16,.12), rgba(4,6,16,.34)) !important;
}

/* Hero-video scherper/helderder tonen */
.hero-video {
    opacity: 0.92 !important;
    filter: brightness(1.18) contrast(1.16) saturate(1.18) sharpen(1) !important;
    transform: scale(1.01);
}

/* Minder zware overlay zodat de video scherper oogt */
.hero-overlay {
    background:
        radial-gradient(circle at 50% 48%, rgba(8,18,48,.06), rgba(0,0,0,.26) 74%),
        linear-gradient(to bottom, rgba(4,6,16,.08), rgba(4,6,16,.30)) !important;
}

/* Tekst blijft leesbaar op lichtere video */
.hero-content {
    text-shadow: 0 4px 24px rgba(0,0,0,.68);
}

/* Hero-content pas tonen nadat de video-intro klaar is */
.hero-content-delayed {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity .85s ease, transform .85s ease;
}

.hero-content-delayed.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tijdens de intro blijft de video leidend */
.hero-content-delayed:not(.is-visible) {
    pointer-events: none;
}

/* Hero-logo iets groter */
.hero-logo {
    width: 125px !important;
    height: 125px !important;
}
