:root {
    /* Colors */
    --color-primary: #f55b16;
    /* Warm Orange-Red from logo */
    --color-primary-dark: #d94a0f;
    --color-secondary: #1A1A1A;
    /* Deep Anthracite/Black */
    --color-text: #333333;
    --color-text-light: #666666;
    --color-light: #F5F5F0;
    /* Warm light grey/beige */
    --color-white: #FFFFFF;
    --color-border: #E0E0E0;

    /* Typography */
    --font-main: 'Outfit', 'Segoe UI', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1rem;
    /* 16px */
    --spacing-md: 2rem;
    /* 32px */
    --spacing-lg: 4rem;
    /* 64px */
    --spacing-xl: 8rem;
    /* 128px */

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;

    /* Header + Hero Fluid Scale */
    --header-padding-top: clamp(12px, 1.2vw, 20px);
    --header-padding-scrolled: clamp(10px, 1vw, 15px);
    --logo-size-top: clamp(88px, 8.4vmin, 132px);
    --logo-size-scrolled: clamp(58px, 5.2vmin, 78px);
    --header-current-height: 170px;
    --hero-top-clearance: 56px;
    --hero-height: clamp(440px, 62svh, 700px);
    --hero-bottom-offset: clamp(38px, 8vh, 120px);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--color-secondary);
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-xl) 0;
}

.section--light {
    background-color: var(--color-white);
}

.section--grey {
    background-color: var(--color-light);
}

.section--dark {
    background-color: var(--color-secondary);
    color: var(--color-white);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--color-white);
}

.text-white-muted {
    color: rgba(255, 255, 255, 0.7);
}

.mt-2 {
    margin-top: var(--spacing-xs);
}

.mt-4 {
    margin-top: var(--spacing-md);
}

.mb-5 {
    margin-bottom: 3rem;
}

.shadow-lg {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.rounded {
    border-radius: 12px;
}

/* Typography Utilities */
.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.section__subtitle {
    font-size: 1.25rem;
    font-weight: 300;
}

.section__divider {
    width: 60px;
    height: 4px;
    background-color: var(--color-primary);
    margin: 0 0 var(--spacing-md) 0;
}

.text-center .section__divider {
    margin: 0 auto var(--spacing-md) auto;
}

.section__text {
    margin-bottom: var(--spacing-sm);
    font-size: 1.1rem;
}

.section__text.lead {
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-secondary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn--primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn--primary:hover {
    background-color: var(--color-primary-dark);
}

.btn--secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn--secondary:hover {
    background-color: var(--color-white);
    color: var(--color-secondary);
}

.btn--outline-light {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-white);
}

.btn--outline-light:hover {
    border-color: var(--color-white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    backdrop-filter: none;
    box-shadow: none;
    padding: var(--header-padding-top) 0;
    transition: var(--transition-normal);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-secondary);
    letter-spacing: 1px;
}

.logo__img {
    height: var(--logo-size-top);
    width: auto;
    object-fit: contain;
    transition: var(--transition-normal);
}

.nav__list {
    display: flex;
    gap: 2.75rem;
    align-items: center;
}

.nav__link {
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--color-white);
    position: relative;
    padding-bottom: 0;
    display: inline-flex;
    align-items: center;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: var(--transition-normal);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    color: var(--color-white);
    background-color: var(--color-primary);
    padding: 10px 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
}

.nav__link--cta i {
    margin-right: 6px;
    line-height: 1;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    left: 0;
    transition: var(--transition-fast);
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    bottom: -8px;
}

.nav__toggle.is-open .hamburger {
    background-color: transparent;
}

.nav__toggle.is-open .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav__toggle.is-open .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

.nav__toggle.is-open .hamburger::before,
.nav__toggle.is-open .hamburger::after {
    background-color: var(--color-secondary);
}

.nav__toggle.is-scrolled .hamburger,
.nav__toggle.is-scrolled .hamburger::before,
.nav__toggle.is-scrolled .hamburger::after {
    background-color: var(--color-secondary);
}

.header--scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: var(--header-padding-scrolled) 0;
}

.header--scrolled .logo__img {
    height: var(--logo-size-scrolled);
}

.header--scrolled .nav__link {
    color: var(--color-secondary);
}

.header--scrolled .nav__link--cta {
    color: var(--color-white);
}

.header--scrolled .hamburger,
.header--scrolled .hamburger::before,
.header--scrolled .hamburger::after {
    background-color: var(--color-secondary);
}

.header--scrolled .nav__toggle.is-open .hamburger,
.nav__toggle.is-open.is-scrolled .hamburger {
    background-color: transparent;
}

/* Hero Section */
.hero {
    position: relative;
    height: var(--hero-height);
    min-height: calc(var(--header-current-height) + 240px);
    display: flex;
    align-items: flex-end;
    padding-top: calc(var(--header-current-height) + var(--hero-top-clearance));
    padding-bottom: var(--hero-bottom-offset);
    color: var(--color-white);
    overflow: hidden;
}

.hero .container {
    width: 100%;
    /* Ensure container takes full width to center itself */
}

.hero__bg {
    position: absolute;
    top: 0;
    left: -1px;
    width: calc(100% + 2px);
    height: 100%;
    z-index: -2;
}

.hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: -1px;
    width: calc(100% + 2px);
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: -1;
}

.hero__content {
    max-width: 800px;
    /* Removed margin-left override to respect container centering */
}

.hero__title {
    font-size: clamp(2.4rem, 5.4vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero__subtitle {
    font-size: clamp(1.05rem, 2vw, 1.5rem);
    margin-bottom: var(--spacing-md);
    opacity: 0.9;
    max-width: 600px;
}

@media (max-width: 1024px) {
    .nav__list {
        gap: 1.4rem;
    }

    .nav__link {
        font-size: 1rem;
    }

    .hero {
        min-height: 380px;
    }
}

@media (max-height: 820px) and (min-width: 769px) {
    :root {
        --logo-size-top: 98px;
        --logo-size-scrolled: 64px;
        --hero-height: 470px;
        --hero-top-clearance: 84px;
        --hero-bottom-offset: 56px;
    }

    .hero {
        min-height: calc(var(--header-current-height) + 260px);
    }

    .hero__title {
        font-size: clamp(2.2rem, 4.1vw, 3.5rem);
    }

    .hero__subtitle {
        font-size: clamp(1rem, 1.6vw, 1.25rem);
    }
}

@media (min-width: 1800px) and (min-height: 900px) {
    :root {
        --logo-size-top: 150px;
        --logo-size-scrolled: 92px;
    }
}

.hero__actions {
    display: flex;
    gap: var(--spacing-sm);
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: var(--spacing-lg);
    align-items: center;
}

.grid--2-cols {
    grid-template-columns: 1fr 1fr;
}

/* Product Gallery */
.product-gallery__main-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    touch-action: pan-y;
}

.product-gallery__main {
    width: 100%;
    height: auto;
    object-fit: contain;
    background-color: #f4f1eb;
    display: block;
    transition: opacity 0.25s ease;
}

.product-gallery__main.is-switching {
    opacity: 0.35;
}

.product-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 999px;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.product-gallery__main-wrap:hover .product-gallery__nav,
.product-gallery__main-wrap:focus-within .product-gallery__nav,
.product-gallery.is-interacted .product-gallery__nav {
    opacity: 1;
    pointer-events: auto;
}

.product-gallery__nav:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

.product-gallery__nav--prev {
    left: 12px;
}

.product-gallery__nav--next {
    right: 12px;
}

.product-gallery__thumbs {
    margin-top: 0.8rem;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.6rem;
}

.product-gallery__thumb {
    border: 2px solid transparent;
    border-radius: 9px;
    overflow: hidden;
    padding: 0;
    background: none;
    cursor: pointer;
    transition: var(--transition-fast);
}

.product-gallery__thumb img {
    width: 100%;
    height: 82px;
    object-fit: cover;
    display: block;
}

.product-gallery__thumb.is-active {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(211, 84, 0, 0.16);
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-normal);
}

.feature-card:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-card__icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
    /* Ensure icons use brand color */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.feature-card__title {
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
    font-size: 1.25rem;
}

.feature-card__text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* Specs List */
.specs-list {
    margin-top: var(--spacing-md);
    background-color: var(--color-light);
    padding: var(--spacing-md);
    border-radius: 8px;
}

.specs-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

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

.specs-list__value {
    text-align: right;
    margin-left: auto;
}

.section#specificaties .grid--2-cols {
    gap: calc(var(--spacing-lg) + 1rem);
    align-items: start;
}

.section#specificaties .content-block {
    position: relative;
}

.section#specificaties .content-block:first-child {
    padding-right: 2rem;
}

.section#specificaties .content-block:first-child::after {
    content: '';
    position: absolute;
    top: 0.25rem;
    right: -0.5rem;
    width: 1px;
    height: calc(100% - 0.5rem);
    background: linear-gradient(
        to bottom,
        rgba(224, 224, 224, 0) 0%,
        rgba(224, 224, 224, 1) 20%,
        rgba(224, 224, 224, 1) 80%,
        rgba(224, 224, 224, 0) 100%
    );
}

.section#specificaties .content-block:last-child {
    padding-left: 2rem;
}

.montage-pdf-note {
    margin-top: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background-color: #f7f3ee;
    border: 1px solid #ece1d4;
    border-radius: 8px;
    padding: 0.55rem 0.85rem;
    width: fit-content;
}

.montage-pdf-note__icon {
    font-size: 1.8rem;
    color: var(--color-primary);
    line-height: 1;
    flex-shrink: 0;
}

.montage-pdf-note__text {
    margin: 0;
    font-size: 1rem;
    color: var(--color-text);
}

.color-options {
    margin-top: var(--spacing-lg);
}

.color-options__grid {
    margin-top: var(--spacing-sm);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--spacing-sm);
}

.color-option {
    margin: 0;
    background-color: #faf8f5;
    border: 1px solid #e8e2d9;
    border-radius: 10px;
    overflow: hidden;
}

.color-option img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.color-option figcaption {
    padding: 0.7rem 0.8rem;
    font-weight: 600;
    color: var(--color-secondary);
}

.price-tag {
    display: inline-block;
    border-left: 4px solid var(--color-primary);
    padding-left: var(--spacing-sm);
}

.price-label {
    display: block;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.price-sub {
    font-size: 1rem;
    font-weight: 500;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-sm);
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    height: 300px;
}

.gallery-item__button {
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.88);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 3000;
}

.gallery-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.gallery-lightbox.is-closing {
    opacity: 0;
    pointer-events: none;
}

.gallery-lightbox__image {
    max-width: min(1200px, 92vw);
    max-height: 88vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    transform: scale(0.96);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-lightbox.is-open .gallery-lightbox__image {
    transform: scale(1);
    opacity: 1;
}

.gallery-lightbox__image.is-switching {
    opacity: 0.35;
}

.gallery-lightbox__image.is-switching-next {
    opacity: 0;
    transform: translateX(24px) scale(0.98);
}

.gallery-lightbox__image.is-switching-prev {
    opacity: 0;
    transform: translateX(-24px) scale(0.98);
}

.gallery-lightbox__nav,
.gallery-lightbox__close {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    color: var(--color-white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.28);
}

.gallery-lightbox__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
}

.gallery-lightbox__nav--prev {
    left: 1.2rem;
}

.gallery-lightbox__nav--next {
    right: 1.2rem;
}

.gallery-lightbox__close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 1.4rem;
}

@media (max-width: 768px) {
    .gallery-lightbox__nav--prev {
        left: 0.6rem;
    }

    .gallery-lightbox__nav--next {
        right: 0.6rem;
    }
}

/* Reseller Section */
.reseller-section {
    background:
        radial-gradient(circle at 15% 20%, rgba(211, 84, 0, 0.18) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(211, 84, 0, 0.14) 0%, transparent 35%),
        var(--color-secondary);
}

.reseller-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.reseller-kicker {
    display: inline-block;
    margin-bottom: var(--spacing-xs);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.08);
}

.reseller-content .section__divider {
    background-color: var(--color-primary);
}

.reseller-benefits {
    display: grid;
    gap: var(--spacing-sm);
}

.reseller-benefit {
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background-color: rgba(255, 255, 255, 0.06);
}

.reseller-benefit h3 {
    color: var(--color-primary);
    margin-bottom: 0.4rem;
    font-size: 1.15rem;
}

.reseller-benefit p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

/* Contact Section */
.contact-section {
    background-color: #f7f6f3;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: var(--spacing-md);
    align-items: stretch;
}

.contact-card,
.faq-card {
    background-color: var(--color-white);
    border: 1px solid #ebe8e1;
    border-radius: 12px;
    padding: var(--spacing-md);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.contact-email-block {
    margin-top: var(--spacing-md);
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.contact-email-icon {
    font-size: 2.25rem;
    color: var(--color-primary);
    line-height: 1;
}

.contact-email-link {
    color: var(--color-text);
    font-size: 1.15rem;
    font-weight: 600;
}

.contact-email-link:hover {
    color: var(--color-primary-dark);
}

.contact-address-block {
    margin-top: 0.5rem;
}

.faq-title {
    font-size: 1.45rem;
    margin-bottom: var(--spacing-sm);
}

.faq-list {
    display: grid;
    gap: 0.65rem;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    background-color: #fbfaf8;
    padding: 0.75rem 1rem;
}

.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--color-secondary);
}

.faq-item p {
    margin-top: 0.6rem;
    margin-bottom: 0;
    color: var(--color-text-light);
}

/* Footer */
.footer {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: var(--spacing-md) 0;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer__logo-text {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: var(--spacing-xs);
}

.footer__tagline {
    opacity: 0.7;
}

.footer__links ul li {
    margin-bottom: 10px;
}

.footer__links a {
    opacity: 0.7;
}

.footer__links a:hover {
    opacity: 1;
    color: var(--color-primary);
}

.footer__bottom {
    border-top: none;
    padding-top: 0;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

/* Animations */
[data-animate] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="zoom-in"] {
    transform: scale(0.95);
}

[data-animate].in-view {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 768px) {
    .section {
        padding: var(--spacing-lg) 0;
    }

    .header {
        padding: 10px 0;
    }

    .header__container {
        min-height: 58px;
        align-items: center;
    }

    .logo__img {
        width: auto;
        height: 100px;
    }

    .header--scrolled {
        padding: 9px 0;
    }

    .header--scrolled .logo__img {
        height: 54px;
    }

    .header.header--scrolled .hamburger,
    .header.header--scrolled .hamburger::before,
    .header.header--scrolled .hamburger::after {
        background-color: var(--color-secondary);
    }

    .nav {
        display: flex;
        align-items: center;
    }

    .nav__toggle {
        margin: 0;
        padding: 14px 10px;
        align-self: center;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        height: clamp(300px, 50vh, 420px);
        min-height: 300px;
        padding-top: 0;
        padding-bottom: 18px;
    }

    .hero__title {
        font-size: clamp(1.9rem, 8vw, 2.55rem);
        line-height: 1.15;
    }

    .hero__subtitle {
        font-size: clamp(0.98rem, 4vw, 1.15rem);
        margin-bottom: 1rem;
    }

    .hero__actions {
        flex-wrap: wrap;
    }

    .grid--2-cols {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .section#specificaties .content-block:first-child,
    .section#specificaties .content-block:last-child {
        padding-left: 0;
        padding-right: 0;
    }

    .section#specificaties .content-block:first-child::after {
        display: none;
    }

    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }

    .product-gallery__nav {
        opacity: 1;
        pointer-events: auto;
    }

    .product-gallery__thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .nav__list {
        position: fixed;
        top: 0;
        right: 0;
        width: min(80%, 360px);
        height: 100vh;
        background-color: var(--color-white);
        flex-direction: column;
        gap: var(--spacing-md);
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    }

    .header .nav__list .nav__link {
        color: var(--color-secondary);
    }

    .header .nav__list .nav__link--cta {
        color: var(--color-white);
        background-color: var(--color-primary);
    }

    .nav__list.active {
        transform: translateX(0);
    }

    .nav__toggle {
        display: block;
        z-index: 1001;
    }

    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .reseller-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .reseller-benefit {
        padding: 1rem 1.1rem;
    }

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

    .color-options__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 420px) {
    .header__container {
        min-height: 52px;
    }

    .logo__img {
        height: 86px;
    }

    .header--scrolled .logo__img {
        height: 50px;
    }

    .hero {
        height: auto;
        min-height: 0;
        align-items: flex-start;
        padding-top: 132px;
        padding-bottom: 16px;
    }

    .hero__title {
        font-size: clamp(1.55rem, 8.2vw, 2rem);
    }

    .hero__subtitle {
        font-size: 0.95rem;
        margin-bottom: 0.9rem;
        max-width: 100%;
    }

    .hero__actions .btn {
        padding: 10px 16px;
        font-size: 0.92rem;
    }
}
