/* ===== TOPBAR ===== */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 101;
    background: var(--color-dark);
    height: 38px;
    display: flex;
    align-items: center;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-4);
    flex-wrap: nowrap;
    overflow: hidden;
}

.topbar__item {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.topbar__dot {
    width: 3px;
    height: 3px;
    background: var(--color-red);
    border-radius: 50%;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .topbar__item:nth-child(n+4),
    .topbar__dot:nth-child(n+3) { display: none; }
    .topbar__inner { padding: 0 var(--sp-5); }
}

@media (max-width: 480px) {
    .topbar__item:nth-child(n+2),
    .topbar__dot { display: none; }
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

/* ===== NAV ===== */
.nav {
    font-family: 'Plus Jakarta Sans', Helvetica, Arial, sans-serif;
    position: fixed;
    top: 38px; left: 0; right: 0;
    z-index: 100;
    background: var(--color-white);
    border-bottom: 1px solid var(--color-grey-200);
    height: 68px;
    display: flex;
    align-items: center;
    transition: box-shadow var(--ease-base);
}
.nav.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.07); }

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-8);
    width: 100%;
    padding: 0 100px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    text-decoration: none;
}

.nav__logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
    list-style: none;
}

.nav__link {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-muted);
    text-decoration: none;
    transition: color var(--ease-fast);
}
.nav__link:hover { color: var(--color-dark); }

/* ===== HAMBURGER ===== */
.nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}
.nav__hamburger span {
    display: block;
    height: 2px;
    background: var(--color-dark);
    border-radius: 1px;
    transition: transform var(--ease-base), opacity var(--ease-base);
    transform-origin: center;
}
.nav.is-open .nav__hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.is-open .nav__hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav.is-open .nav__hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU ===== */
.nav__mobile {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-bottom: 2px solid var(--color-green);
    padding: var(--sp-6) var(--sp-5) var(--sp-8);
    flex-direction: column;
    gap: var(--sp-6);
    box-shadow: 0 8px 24px rgba(0,0,0,0.10);
    z-index: 99;
}
.nav.is-open .nav__mobile {
    display: flex;
}
.nav__mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
}
.nav__mobile-link {
    display: block;
    padding: var(--sp-4) 0;
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--color-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--color-grey-200);
    letter-spacing: 0.01em;
    text-transform: uppercase;
}
.nav__mobile-link:hover { color: var(--color-green); }

/* ===== HERO ===== */
.hero {
    margin-top: 106px;
    position: relative;
    min-height: calc(100vh - 106px);
    background: var(--color-white);
    display: flex;
    align-items: center;
    padding: 0 100px;
    gap: var(--sp-16);
    overflow: visible;
}

.hero__container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--sp-20) 0;
    min-width: 0;
}

.hero__title {
    color: var(--color-dark);
    margin-bottom: var(--sp-6);
    font-size: clamp(2.4rem, 3.8vw, 4.2rem);
}

.hero__accent {
    color: var(--color-red);
}

.hero__text {
    font-size: var(--fs-lg);
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: var(--sp-10);
    max-width: 44ch;
}

.hero__ctas {
    display: flex;
    gap: var(--sp-4);
    flex-wrap: wrap;
    align-items: center;
}

.hero__sub {
    font-size: var(--fs-sm);
    color: var(--color-grey-400);
    margin-top: var(--sp-6);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    flex-wrap: wrap;
}

.hero__sub-dot {
    display: inline-block;
    width: 4px;
    height: 4px;
    background: var(--color-red);
    border-radius: 50%;
    flex-shrink: 0;
}

.hero__visual {
    flex: 0 0 50%;
    position: relative;
    align-self: stretch;
    min-height: calc(100vh - 106px);
    overflow: visible;
}

.hero__badge {
    position: absolute;
    bottom: 18%;
    right: var(--sp-6);
    background: #fff;
    border: 1px solid var(--color-grey-200);
    border-top: 3px solid var(--color-red);
    padding: var(--sp-5) var(--sp-7);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-2);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    min-width: 180px;
    z-index: 10;
}

.hero__badge-stars {
    display: flex;
    gap: 3px;
}

.hero__badge-star {
    display: block;
    width: 12px;
    height: 12px;
    background: #D4A017;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.hero__badge-score {
    font-size: var(--fs-3xl);
    font-weight: 900;
    color: var(--color-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero__badge-source {
    font-size: 10px;
    color: var(--color-grey-400);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
}

.hero__badge-label {
    font-size: var(--fs-xs);
    color: var(--color-grey-400);
    font-weight: 600;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.hero__machine-img {
    width: 250%;
    height: 130%;
    object-fit: contain;
    object-position: left center;
    position: absolute;
    top: -15%;
    left: 0;
}

/* ===== LOGO BAR ===== */
.logo-bar {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-grey-200);
    padding: var(--sp-6) 0;
}

.logo-bar__inner {
    display: flex;
    align-items: center;
    gap: var(--sp-8);
    padding: 0 100px;
    overflow: hidden;
}

.logo-bar__label {
    flex-shrink: 0;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-grey-400);
    white-space: nowrap;
    padding-right: var(--sp-8);
    border-right: 1px solid var(--color-grey-200);
}

.logo-bar__track-wrap {
    flex: 1;
    overflow: hidden;
}

.logo-bar__track {
    display: flex;
    align-items: center;
    gap: var(--sp-10);
}

.logo-bar__logos {
    display: flex;
    align-items: center;
    gap: var(--sp-10);
    flex-wrap: wrap;
}

.logo-bar__logos + .logo-bar__logos {
    display: none;
}

.logo-bar__img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.55);
    transition: filter var(--ease-base);
    flex-shrink: 0;
}

.logo-bar__img:hover {
    filter: grayscale(0%) opacity(1);
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--sp-24) 0;
    background: var(--color-off-white);
}

.section-header {
    margin-bottom: var(--sp-12);
}

.section-header--center {
    text-align: center;
}
.section-header--center p { margin-left: auto; margin-right: auto; }

.section-header--row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--sp-6);
}
.section-header--row h2 { margin-bottom: 0; }

.section-header h2 { margin-bottom: var(--sp-4); }
.section-header p { color: var(--color-muted); font-size: var(--fs-lg); }

.services__4col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: var(--sp-5);
    align-items: stretch;
    padding: 0 100px;
}

.services__intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: var(--sp-8);
}

.services__intro h2 {
    margin-bottom: var(--sp-4);
    font-size: clamp(1.7rem, 2.8vw, var(--fs-3xl));
}

.services__intro p {
    color: var(--color-muted);
    font-size: var(--fs-sm);
}

/* ===== PRODUCTS ===== */
.products {
    padding: var(--sp-24) 0;
    background: var(--color-white);
}

.products__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--sp-10);
    gap: var(--sp-6);
    padding: 0 100px;
}

.products__nav {
    display: flex;
    gap: var(--sp-2);
}

.products__arrow {
    width: 48px;
    height: 48px;
    background: var(--color-dark);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: background var(--ease-fast);
    flex-shrink: 0;
}

.products__arrow:hover { background: var(--color-green); }
.products__arrow:disabled { background: var(--color-grey-200); color: var(--color-grey-400); cursor: default; }

.products__scroll-wrap {
    overflow: hidden;
    padding-left: 100px;
}

.products__scroll {
    display: flex;
    gap: 5px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.products__scroll .prod-card {
    flex: 0 0 420px;
    cursor: pointer;
}

.products__scroll .prod-card__img {
    aspect-ratio: 3/4;
}

@media (max-width: 900px) {
    .products__scroll-wrap {
        overflow-x: auto;
        overflow-y: hidden;
        padding-left: var(--sp-6);
        padding-right: var(--sp-6);
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .products__scroll-wrap::-webkit-scrollbar { display: none; }
    .products__scroll {
        transform: none !important;
        transition: none;
        padding-right: var(--sp-6);
    }
    .products__scroll .prod-card {
        flex: 0 0 72vw;
        scroll-snap-align: start;
    }
    .products__nav { display: none; }
}

@media (max-width: 600px) {
    .products__scroll .prod-card {
        flex: 0 0 82vw;
    }
    .products__head {
        padding: 0 var(--sp-5);
    }
    .products__head h2 {
        font-size: clamp(1.6rem, 6vw, 2rem);
    }
}

/* ===== INTRO SPLIT ===== */
.intro-split {
    padding: var(--sp-24) 0;
    background: var(--color-white);
}

.intro-split__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-20);
    align-items: center;
}

.intro-split__img-outer {
    position: relative;
    aspect-ratio: 4/3;
    width: 100%;
}

.intro-split__img-outer::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 14px;
    width: 100%;
    height: calc(100% - 5rem - 20px);
    background: var(--color-red);
    z-index: 0;
}

.intro-split__img {
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 1.5rem 5rem;
    z-index: 1;
}

.intro-split__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.intro-split__content h2 { margin-bottom: var(--sp-5); }

.intro-split__text {
    color: var(--color-muted);
    font-size: var(--fs-lg);
    line-height: 1.7;
    margin-bottom: var(--sp-8);
}

.intro-split__usps {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    margin-bottom: var(--sp-8);
}

/* ===== STATS BAR ===== */
.stats {
    padding: var(--sp-16) 0;
    background: var(--color-dark);
}

.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    divide-x: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    gap: 0;
}

.stats__item {
    padding: var(--sp-6);
    border-right: 1px solid rgba(255,255,255,0.08);
}
.stats__item:last-child { border-right: none; }

.stats__num {
    display: block;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: var(--sp-2);
}

.stats__label {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.45);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ===== PROCESS ===== */
.process {
    padding: var(--sp-24) 0;
    background: var(--color-green-tint);
}

.process .section-header p { color: var(--color-muted); }
.process .overline { color: var(--color-muted); }
.process h2 { color: var(--color-dark); }
.process .step__title { color: var(--color-dark); }
.process .step__text { color: var(--color-muted); }
.process .step__num { color: #4a9a5e; }
.process .process__divider { background: rgba(0,0,0,0.08); }

.process__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-20);
    align-items: start;
}

.process__right-img {
    aspect-ratio: 4/3;
    width: 100%;
    position: sticky;
    top: 88px;
    overflow: hidden;
    box-shadow: 14px 14px 0 var(--color-green);
}

.process__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

.process .section-header h2 {
    font-size: clamp(1.5rem, 2.5vw, var(--fs-3xl));
}

.process__steps {
    display: flex;
    flex-direction: column;
    gap: var(--sp-10);
    padding-top: var(--sp-2);
}

.process__divider {
    height: 1px;
    background: var(--color-grey-200);
}

/* ===== SECTORS ===== */
.sectors {
    padding: var(--sp-24) 0;
    background: var(--color-white);
}

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

.sector {
    background: var(--color-grey-100);
    padding: var(--sp-10) var(--sp-10) var(--sp-10);
    transition: box-shadow var(--ease-base);
}
.sector:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.sector__label {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-red);
    background: rgba(200,35,26,0.07);
    border: 1px solid rgba(200,35,26,0.18);
    padding: 3px 10px;
    margin-bottom: var(--sp-4);
}

.sector__title {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: var(--sp-3);
}

.sector__text {
    font-size: var(--fs-sm);
    color: var(--color-muted);
    line-height: 1.75;
    max-width: none;
}

/* ===== REVIEWS ===== */
.reviews {
    background: var(--color-dark);
    padding: var(--sp-24) 0;
}

.reviews__header {
    padding: 0 100px;
    margin-bottom: var(--sp-12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-6);
}

.reviews__header h2 {
    color: #fff;
}

.reviews__stars-row {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.reviews__score {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    margin-left: var(--sp-3);
    letter-spacing: 0.04em;
}

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

.review-block {
    background: var(--color-dark-2);
    padding: var(--sp-10);
    display: flex;
    flex-direction: column;
    gap: var(--sp-8);
}

.review-block__text {
    font-size: var(--fs-lg);
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    font-style: italic;
    max-width: none;
    flex: 1;
}

.review-block__author {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: var(--sp-5);
}

.review-block__name {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: #fff;
}

.review-block__role {
    display: inline-block;
    font-size: var(--fs-xs);
    color: rgba(255,255,255,0.6);
    margin-top: var(--sp-2);
    letter-spacing: 0.02em;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 3px 12px;
    border-radius: 9999px;
}

/* ===== SHOWROOM CTA ===== */
.showroom {
    background: var(--color-white);
    padding: var(--sp-24) 0;
}

.showroom__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-20);
    align-items: center;
}

.showroom__overline {
    color: var(--color-green);
    margin-bottom: var(--sp-5);
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    display: block;
}

.showroom__title {
    color: var(--color-dark);
    margin-bottom: var(--sp-5);
}

.showroom__text {
    color: var(--color-muted);
    font-size: var(--fs-lg);
    line-height: 1.7;
    margin-bottom: var(--sp-8);
    max-width: 46ch;
}

.showroom__usps {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    margin-bottom: var(--sp-8);
}

.showroom__usp {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.5;
}

.showroom__usp-mark {
    width: 18px;
    height: 18px;
    background: var(--color-green);
    flex-shrink: 0;
    margin-top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.showroom__usp-mark::after {
    content: '';
    display: block;
    width: 5px;
    height: 9px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg) translateY(-1px);
}

.showroom__img-outer {
    position: relative;
    aspect-ratio: 4/3;
    width: 100%;
}

.showroom__img-outer::after {
    content: '';
    position: absolute;
    top: 14px;
    right: 14px;
    width: 100%;
    height: calc(100% - 5rem - 20px);
    background: var(--color-red);
    z-index: 0;
}

.showroom__img {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 5rem 1.5rem;
    z-index: 1;
}

.showroom__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    inset: 0;
}

/* ===== CONTACT ===== */
.contact {
    padding: var(--sp-24) 0;
    background: var(--color-white);
}

.contact__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
    margin-bottom: var(--sp-16);
}

.contact__form-wrap {
    background: var(--color-off-white);
    border: 1px solid var(--color-grey-200);
    border-top: 3px solid var(--color-green);
    padding: var(--sp-10);
    max-width: 720px;
    margin: 0 auto;
}

.contact__form-title {
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: var(--sp-2);
}

.contact__form-sub {
    font-size: var(--fs-sm);
    color: var(--color-muted);
    margin-bottom: var(--sp-8);
    max-width: none;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}

/* ===== CONTACT CTA BANNER ===== */
.contact-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    margin-top: var(--sp-24);
}

.contact-banner__img {
    position: relative;
    overflow: hidden;
}

.contact-banner__photo {
    width: 100%;
    height: calc(100% + 100px);
    object-fit: cover;
    object-position: center top;
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
}

.contact-banner__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 60%, rgba(28,30,28,0.15) 100%);
}

.contact-banner__panel {
    background: #EAE6E0;
    display: flex;
    align-items: stretch;
}

.contact-banner__content {
    padding: var(--sp-12) var(--sp-12);
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
    width: 100%;
}

.contact-banner__title {
    color: var(--color-dark);
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.contact-banner__text {
    color: var(--color-muted);
    font-size: var(--fs-lg);
    line-height: 1.7;
    max-width: 46ch;
}

.contact-banner__details {
    display: flex;
    align-items: stretch;
    gap: var(--sp-8);
    padding: var(--sp-6) 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.contact-banner__detail {
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
    text-decoration: none;
    transition: opacity var(--ease-fast);
}
.contact-banner__detail:hover { opacity: 0.7; }

.contact-banner__detail-label {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-grey-400);
}

.contact-banner__detail-value {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--color-dark);
    letter-spacing: -0.01em;
}

.contact-banner__divider {
    width: 1px;
    background: rgba(0,0,0,0.1);
    align-self: stretch;
}

.contact-banner__form-wrap {
    flex: 1;
}

.contact-banner__form {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.contact-banner__form .form-input,
.contact-banner__form .form-textarea {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.12);
    color: #fff;
}
.contact-banner__form .form-input::placeholder,
.contact-banner__form .form-textarea::placeholder {
    color: rgba(255,255,255,0.3);
}
.contact-banner__form .form-input:focus,
.contact-banner__form .form-textarea:focus {
    border-color: var(--color-green);
    background: rgba(255,255,255,0.08);
}
.contact-banner__form .form-label {
    color: rgba(255,255,255,0.6);
}

@media (max-width: 900px) {
    .contact-banner {
        grid-template-columns: 1fr;
    }
    .contact-banner__img {
        min-height: 300px;
    }
    .contact-banner__content {
        padding: var(--sp-10) var(--sp-6);
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--color-dark);
    border-top: 3px solid var(--color-green);
}

.footer__main {
    padding: var(--sp-16) 0 var(--sp-12);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--sp-12);
    align-items: start;
}

.footer__brand { display: flex; flex-direction: column; gap: var(--sp-5); }

.footer__logo {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    text-decoration: none;
}

.footer__logo-bar {
    width: 4px;
    height: 28px;
    background: var(--color-red);
    flex-shrink: 0;
}

.footer__logo-text {
    font-size: var(--fs-lg);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.footer__tagline {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    max-width: 34ch;
}

.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    list-style: none;
}

.footer__contact-list li {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
}

.footer__contact-list a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color var(--ease-fast);
}
.footer__contact-list a:hover { color: rgba(255,255,255,0.8); }

.footer__col { display: flex; flex-direction: column; gap: var(--sp-4); }

.footer__col-title {
    font-size: var(--fs-xs);
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    padding-bottom: var(--sp-3);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__col-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    list-style: none;
}

.footer__col-list a {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color var(--ease-fast);
}
.footer__col-list a:hover { color: rgba(255,255,255,0.75); }

.footer__usp-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    list-style: none;
}

.footer__usp-item {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    line-height: 1.4;
}

.footer__usp-dot {
    width: 5px;
    height: 5px;
    background: var(--color-green);
    flex-shrink: 0;
    border-radius: 50%;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: var(--sp-5) 0;
}

.footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--sp-4);
}

.footer__copy {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.22);
}

.footer__legal {
    display: flex;
    gap: var(--sp-6);
}

.footer__legal a {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.22);
    text-decoration: none;
    transition: color var(--ease-fast);
}
.footer__legal a:hover { color: rgba(255,255,255,0.5); }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .nav__inner { padding: 0 var(--sp-8); }
    .hero { padding: 0 var(--sp-8); }
    .products__grid { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .footer__brand { grid-column: span 2; }
}

@media (max-width: 900px) {
    .hero { flex-direction: column; min-height: auto; padding: var(--sp-16) var(--sp-6) var(--sp-10); gap: var(--sp-10); }
    .hero__container { padding: 0; }
    .hero__visual { min-height: 320px; width: 100%; overflow: visible; }
    .hero__machine-img { width: 100%; height: 100%; top: 0; left: 0; object-position: center center; }
    .services__4col { grid-template-columns: 1fr; padding: 0 var(--container-pad); }
    .intro-split__container,
    .process__container,
    .showroom__container { grid-template-columns: 1fr; gap: var(--sp-10); }
    .intro-split { overflow: hidden; max-width: 100vw; }
    .intro-split__container { max-width: 100%; }
    .intro-split__img,
    .process__right-img,
    .showroom__img { box-shadow: 8px 8px 0 var(--color-red); }
    .showroom__img { box-shadow: -8px 8px 0 var(--color-red); }
    .reviews__header {
        padding: 0 var(--sp-6);
        flex-direction: column;
        align-items: flex-start;
        gap: var(--sp-4);
    }
    .reviews__grid { grid-template-columns: 1fr 1fr; }
    .sectors__grid { grid-template-columns: 1fr 1fr; }
    .contact__grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: repeat(2, 1fr); }
    .process__right-img { position: static; }
    .products__head { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
    .nav__inner { padding: 0 var(--sp-5); }
    .nav__links { display: none; }
    .nav__cta { display: none; }
    .nav__hamburger { display: flex; }
    .hero { padding: var(--sp-8) var(--sp-5) var(--sp-10); margin-top: 106px; }
    .btn { white-space: normal; }
    .intro-split .btn--lg,
    .contact-banner .btn--lg { display: block; text-align: center; }
    .hero__visual { order: -1; }
    .hero__container { order: 0; }
    .hero__title { font-size: clamp(2rem, 8vw, 2.8rem); }
    .hero__ctas { flex-direction: column; align-items: flex-start; }
    .hero__badge { display: none; }
    .hero__sub { display: none; }
    .intro-split__img,
    .process__right-img,
    .showroom__img { box-shadow: none; }
    .products__grid { grid-template-columns: 1fr 1fr; }
    .reviews__grid { grid-template-columns: 1fr; }
    .sectors__grid { grid-template-columns: 1fr; }
    .stats__grid { grid-template-columns: 1fr 1fr; }
    .stats__item { padding: var(--sp-4) var(--sp-3); }
    .stats__item:nth-child(even) { border-right: none; }
    .stats__num { font-size: clamp(1.5rem, 7vw, 2rem); }
    .stats__label { font-size: var(--fs-xs); }
    .footer__grid { grid-template-columns: 1fr; }
    .footer__brand { grid-column: span 1; }
    .form-row { grid-template-columns: 1fr; }
    .cta-options__grid { grid-template-columns: 1fr; }
    .trust-bar__inner { gap: var(--sp-4); flex-wrap: wrap; }
    .services__intro { padding: var(--sp-10) var(--sp-5) var(--sp-4); }
    section { overflow-x: hidden; }

    /* Product card: disable reveal + hover animation */
    .products__scroll .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .prod-card:hover .prod-card__img { transform: none; }

    /* Contact banner mobile */
    .contact-banner__content { padding: var(--sp-8) var(--sp-5); }
    .contact-banner__title { font-size: clamp(1.7rem, 6vw, 2.2rem); }
    .contact-banner__text { font-size: var(--fs-base); }
    .contact-banner__details { flex-direction: column; gap: var(--sp-4); }
    .contact-banner__divider { width: 100%; height: 1px; align-self: auto; }
    .contact-banner__detail-value { font-size: var(--fs-lg); }

    /* Logo bar marquee */
    .logo-bar__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: var(--sp-5);
        gap: var(--sp-4);
    }
    .logo-bar__label {
        border-right: none;
        padding-right: 0;
    }
    .logo-bar__track-wrap {
        width: 100%;
        overflow: hidden;
    }
    .logo-bar__track {
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
        animation: marquee 20s linear infinite;
        gap: var(--sp-8);
    }
    .logo-bar__logos {
        flex-wrap: nowrap;
        gap: var(--sp-8);
    }
    .logo-bar__logos + .logo-bar__logos {
        display: flex;
    }
}

/* ===================================================
   OVER ONS PAGINA
   =================================================== */

/* ===== PAGE HERO ===== */
.page-hero {
    margin-top: 106px;
    background: var(--color-white);
    padding: var(--sp-20) 0 var(--sp-16);
    border-bottom: 1px solid var(--color-grey-200);
}

.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-sm);
    color: var(--color-grey-400);
    margin-bottom: var(--sp-6);
}
.page-hero__breadcrumb a { color: var(--color-grey-400); text-decoration: none; }
.page-hero__breadcrumb a:hover { color: var(--color-dark); }
.page-hero__breadcrumb-sep { color: var(--color-grey-300); }

.page-hero__title {
    color: var(--color-dark);
    margin-bottom: var(--sp-5);
}

.page-hero__intro {
    font-size: var(--fs-xl);
    color: var(--color-muted);
    line-height: 1.6;
    max-width: 52ch;
}

/* ===== VERHAAL ===== */
.story {
    padding: var(--sp-24) 0;
    background: var(--color-white);
}

.story__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-20);
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.story__content {
    min-width: 0;
}

.story__content h2 {
    font-size: clamp(1.15rem, 2vw, var(--fs-2xl));
    margin-bottom: var(--sp-6);
}

.story__content p {
    font-size: var(--fs-base);
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: var(--sp-5);
    max-width: none;
}

.story__visual {
    min-width: 0;
    width: 100%;
}

.story__photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-grey-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-sm);
    color: var(--color-grey-400);
    font-weight: 600;
}

/* ===== MIJLPALEN SLIDER ===== */
.milestones {
    padding: var(--sp-20) 0;
    background: var(--color-grey-100);
    overflow: hidden;
}

.milestones__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: var(--sp-10);
    gap: var(--sp-6);
    padding: 0 100px;
}

.milestones__head h2 {
    margin-bottom: 0;
}

.milestones__nav {
    display: flex;
    gap: var(--sp-2);
    flex-shrink: 0;
}

.milestones__scroll-wrap {
    overflow: hidden;
    padding-left: 100px;
}

.milestones__scroll {
    display: flex;
    gap: 5px;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.milestone {
    flex: 0 0 320px;
    background: var(--color-white);
    padding: var(--sp-8);
}

.milestone__year {
    display: block;
    font-size: var(--fs-5xl);
    font-weight: 900;
    color: var(--color-dark);
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: var(--sp-4);
}

.milestone__text {
    font-size: var(--fs-sm);
    color: var(--color-muted);
    line-height: 1.75;
    max-width: none;
}

@media (max-width: 900px) {
    .milestones__scroll-wrap {
        overflow-x: auto;
        padding-left: var(--sp-6);
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .milestones__scroll-wrap::-webkit-scrollbar { display: none; }
    .milestones__scroll { transform: none !important; transition: none; }
    .milestone { flex: 0 0 75vw; scroll-snap-align: start; }
    .milestones__nav { display: none; }
    .milestones__head { flex-direction: column; align-items: flex-start; padding: 0 var(--sp-6); }
}

@media (max-width: 600px) {
    .milestone { flex: 0 0 85vw; }
}

/* ===== TEAM ===== */
.team-section {
    padding: var(--sp-24) 0;
    background: var(--color-white);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--sp-8);
    align-items: stretch;
}

.team-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: var(--sp-8);
}

.team-intro h2 {
    font-size: clamp(1.15rem, 2vw, var(--fs-2xl));
    margin-bottom: var(--sp-5);
}

.team-intro p {
    color: var(--color-muted);
    line-height: 1.75;
    max-width: none;
}

.team-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--color-grey-100);
}

.team-card__photo-inner {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--color-grey-200);
}

.team-card__body {
    padding: var(--sp-6);
}

.team-card__name {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: var(--sp-1);
    text-transform: uppercase;
}

.team-card__role {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-green);
    margin-bottom: var(--sp-4);
}

.team-card__bio {
    font-size: var(--fs-sm);
    color: var(--color-muted);
    line-height: 1.75;
    max-width: none;
}

/* ===== WAARDEN ===== */
.values {
    padding: var(--sp-24) 0;
    background: var(--color-off-white);
}

.values__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-20);
    align-items: center;
}

.values__content h2 {
    margin-bottom: var(--sp-8);
}

.values__usps {
    display: flex;
    flex-direction: column;
    gap: var(--sp-6);
}

/* ===== ABOUT CTA ===== */
.about-cta {
    padding: var(--sp-24) 0;
    background: var(--color-green-tint);
}

.about-cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-20);
    align-items: center;
}

.about-cta__text h2 {
    color: var(--color-dark);
    margin-bottom: var(--sp-5);
}

.about-cta__text p {
    color: var(--color-muted);
    font-size: var(--fs-lg);
    line-height: 1.7;
    max-width: none;
}

.about-cta__actions {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    align-items: flex-start;
}

.about-cta__actions .btn--outline {
    color: var(--color-dark);
    border-color: var(--color-grey-300);
}
.about-cta__actions .btn--outline:hover {
    border-color: var(--color-dark);
}

.about-cta__meta {
    font-size: var(--fs-sm);
    color: var(--color-grey-400);
    margin-top: var(--sp-2);
}
.about-cta__meta a {
    color: var(--color-muted);
}


/* ===== NAV ACTIVE LINK ===== */
.nav__link--active {
    color: var(--color-green);
    font-weight: 700;
}

/* ===== MEGA MENU ===== */
.nav__item--mega {
    position: static;
}

.nav__link--drop {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-muted);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color var(--ease-fast);
}
.nav__link--drop:hover { color: var(--color-dark); }

.nav__link--drop::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.2s;
    flex-shrink: 0;
}
.nav__item--mega.is-open .nav__link--drop::after {
    transform: rotate(-135deg) translateY(1px);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-grey-200);
    border-bottom: 2px solid var(--color-green);
    box-shadow: 0 12px 40px rgba(0,0,0,0.09);
    padding: var(--sp-10) 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s, visibility 0.18s;
    z-index: 99;
}
.nav__item--mega.is-open .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.mega-menu__inner {
    display: flex;
    gap: var(--sp-16);
    padding: 0 100px;
}

.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-3) var(--sp-8);
    padding: 0 100px;
}

.mega-col {
    min-width: 160px;
}

.mega-col__head {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-grey-400);
    margin-bottom: var(--sp-5);
    padding-bottom: var(--sp-3);
    border-bottom: 1px solid var(--color-grey-200);
}

.mega-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.mega-col a {
    font-size: var(--fs-sm);
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s;
    display: block;
}
.mega-col a:hover { color: var(--color-green); }

.mega-grid__link {
    font-size: var(--fs-sm);
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    padding: var(--sp-2) 0;
    transition: color 0.15s;
    display: block;
}
.mega-grid__link:hover { color: var(--color-green); }

/* Mobile accordion */
.nav__mobile-sub {
    display: none;
    flex-direction: column;
    gap: 0;
    padding-left: var(--sp-5);
    border-left: 2px solid var(--color-green);
    margin: var(--sp-2) 0 var(--sp-3);
}
.nav__mobile-item.is-open .nav__mobile-sub { display: flex; }

.nav__mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-4) 0;
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--color-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--color-grey-200);
    text-transform: uppercase;
    letter-spacing: 0.01em;
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
    width: 100%;
    font-family: inherit;
    cursor: pointer;
}
.nav__mobile-toggle::after {
    content: '+';
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
    color: var(--color-muted);
    transition: transform 0.2s;
}
.nav__mobile-item.is-open .nav__mobile-toggle::after {
    transform: rotate(45deg);
}

.nav__mobile-sub-link {
    display: block;
    padding: var(--sp-3) 0;
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-muted);
    text-decoration: none;
    border-bottom: 1px solid var(--color-grey-100);
    text-transform: none;
    letter-spacing: 0;
}
.nav__mobile-sub-link:hover { color: var(--color-green); }

/* ===== OVER-ONS RESPONSIVE ===== */
@media (max-width: 1100px) {
    .team-card {
        grid-template-columns: 160px 1fr;
    }
    .team-card__photo-inner { width: 160px; height: 200px; }
}

@media (max-width: 900px) {
    .page-hero { padding: var(--sp-16) 0 var(--sp-12); }
    .story__container { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr 1fr; }
    .team-intro { grid-column: span 2; padding-right: 0; }
    .team-card { flex-direction: column; }
    .values__split { grid-template-columns: 1fr; }
    .about-cta__inner { grid-template-columns: 1fr; gap: var(--sp-10); }
}

@media (max-width: 600px) {
    .team-grid { grid-template-columns: 1fr; }
    .team-intro { grid-column: span 1; }
}

/* ===================================================
   CONTACT PAGINA
   =================================================== */

.contact-main {
    padding: var(--sp-24) 0;
    background: var(--color-white);
}

.contact-main__grid {
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: var(--sp-20);
    align-items: start;
}

.contact-form-wrap h2 {
    margin-bottom: var(--sp-3);
}

.contact-form-wrap__intro {
    color: var(--color-muted);
    margin-bottom: var(--sp-8);
    max-width: none;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}

.contact-form__submit {
    align-self: flex-start;
    margin-top: var(--sp-2);
}

.contact-form__privacy {
    font-size: var(--fs-xs);
    color: var(--color-grey-400);
    max-width: none;
}
.contact-form__privacy a { color: var(--color-green); }

/* Contact details sidebar */
.contact-details {
    background: var(--color-grey-100);
    padding: var(--sp-8);
}

.contact-details__title {
    margin-bottom: var(--sp-8);
    font-size: clamp(1.1rem, 2vw, var(--fs-2xl));
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
    margin-bottom: var(--sp-8);
}

.contact-info-item {
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
    padding-bottom: var(--sp-5);
    border-bottom: 1px solid var(--color-grey-200);
}
.contact-info-item:last-child { border-bottom: none; }

.contact-info-item__label {
    font-size: var(--fs-xs);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-grey-400);
}

.contact-info-item__value {
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.5;
    max-width: none;
}
a.contact-info-item__value:hover { color: var(--color-green); }

.contact-map {
    width: 100%;
    margin-bottom: var(--sp-5);
    border: 1px solid var(--color-grey-200);
}

.contact-details__route {
    width: 100%;
    justify-content: center;
}

/* Showroom strip */
.contact-showroom {
    padding: var(--sp-20) 0;
    background: var(--color-off-white);
    border-top: 1px solid var(--color-grey-200);
}

.contact-showroom__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-20);
    align-items: center;
}

.contact-showroom__text h2 {
    margin-bottom: var(--sp-5);
}

.contact-showroom__text p {
    color: var(--color-muted);
    line-height: 1.75;
    max-width: none;
}

.contact-showroom__usps {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}

/* Select styling */
select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239A9A96' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

/* Contact responsive */
@media (max-width: 1100px) {
    .contact-main__grid { grid-template-columns: 1fr 380px; gap: var(--sp-12); }
}

@media (max-width: 900px) {
    .contact-main__grid { grid-template-columns: 1fr; }
    .contact-details { order: -1; }
    .contact-showroom__inner { grid-template-columns: 1fr; gap: var(--sp-10); }
}

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

/* ===================================================
   COMBI AUTOMAAT PAGINA
   =================================================== */

/* ===== PRODUCT INTRO ===== */
.product-intro {
    padding: var(--sp-24) 0;
}
.product-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-20);
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}
.product-intro__content { min-width: 0; }
.product-intro__content h2 { font-size: clamp(1.15rem, 2vw, var(--fs-2xl)); margin-bottom: var(--sp-6); }
.product-intro__content p { font-size: var(--fs-base); color: var(--color-muted); line-height: 1.8; margin-bottom: var(--sp-5); max-width: none; }
.product-intro__usps { display: flex; flex-direction: column; gap: var(--sp-5); margin-bottom: var(--sp-8); }
.product-intro__visual { min-width: 0; width: 100%; }
.product-intro__img-outer {
    position: relative;
    padding-bottom: var(--sp-5);
    padding-right: var(--sp-5);
}
.product-intro__img-outer::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    background: var(--color-red);
    z-index: 0;
}
.product-intro__img {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--color-grey-200);
    border-radius: 0 0 5rem 1.5rem;
    overflow: hidden;
}

/* ===== PRODUCT MODELS ===== */
.product-models {
    padding: var(--sp-24) 0;
    background: var(--color-white);
}
.product-models__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-5);
}

/* ===== PRODUCT WHY ===== */
.product-why {
    padding: var(--sp-24) 0;
    background: var(--color-green-tint);
}
.product-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
}

/* ===== COMBI AUTOMAAT RESPONSIVE ===== */
@media (max-width: 900px) {
    .product-intro__grid { grid-template-columns: 1fr; gap: var(--sp-10); }
    .product-intro__visual { order: -1; }
    .product-models__grid { grid-template-columns: repeat(2, 1fr); }
    .product-why__grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .product-models__grid { grid-template-columns: 1fr 1fr; }
    .product-why__grid { grid-template-columns: 1fr; }
}

/* ===== SEO TEXT ===== */
.seo-text {
    padding: var(--sp-24) 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-grey-200);
}
.seo-text__inner {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--sp-20);
    align-items: start;
}
.seo-text__title {
    font-size: clamp(1.1rem, 2vw, var(--fs-2xl));
    color: var(--color-dark);
    position: sticky;
    top: calc(106px + var(--sp-8));
    line-height: 1.3;
}
.seo-text__body {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}
.seo-text__body p {
    font-size: var(--fs-base);
    color: var(--color-muted);
    line-height: 1.85;
    max-width: none;
}
@media (max-width: 900px) {
    .seo-text__inner { grid-template-columns: 1fr; gap: var(--sp-8); }
    .seo-text__title { position: static; }
}

/* ===========================
   PRODUCT DETAIL PAGE
   =========================== */
.product-detail {
    padding: var(--sp-20) 0;
    background: var(--color-white);
}
.product-detail__inner {
    display: grid;
    grid-template-columns: 550px 1fr;
    gap: var(--sp-16);
    align-items: start;
}
.product-detail__gallery {
    position: sticky;
    top: calc(106px + var(--sp-6));
}
.product-detail__main-img {
    aspect-ratio: 4/5;
    background: var(--color-grey-100);
    
    overflow: hidden;
}
.product-detail__main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.product-detail__thumbs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-3);
    margin-top: var(--sp-3);
}
.product-detail__thumb {
    aspect-ratio: 1;
    background: var(--color-grey-100);
    
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.15s;
}
.product-detail__thumb:first-child { border-color: var(--color-green); }
.product-detail__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-detail__aside {
    position: sticky;
    top: calc(106px + var(--sp-6));
    display: flex;
    flex-direction: column;
}
.product-detail__status {
    display: flex;
    gap: var(--sp-2);
    align-items: center;
    margin-bottom: var(--sp-4);
}
.status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #4DB869;
    flex-shrink: 0;
}
.status-label { font-size: var(--fs-sm); font-weight: 600; color: #4DB869; }
.product-detail__name {
    font-size: clamp(1.6rem, 3vw, var(--fs-3xl));
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.1;
    margin-bottom: var(--sp-2);
    text-transform: uppercase;
}
.product-detail__sub {
    font-size: var(--fs-base);
    color: var(--color-muted);
    margin-bottom: var(--sp-5);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.5;
}
.spec-chips {
    display: flex;
    gap: var(--sp-2);
    flex-wrap: wrap;
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-6);
    border-bottom: 1px solid var(--color-grey-200);
}
.spec-chip {
    background: var(--color-grey-100);
    
    padding: var(--sp-2) var(--sp-3);
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.spec-chip__val { font-size: var(--fs-sm); font-weight: 700; color: var(--color-dark); }
.spec-chip__label { font-size: var(--fs-xs); color: var(--color-muted); }

.product-detail__usps {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
    margin-bottom: var(--sp-6);
    padding-bottom: var(--sp-6);
    border-bottom: 1px solid var(--color-grey-200);
}
.product-detail__usp {
    display: flex;
    gap: var(--sp-3);
    align-items: flex-start;
}
.product-detail__usp-check {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--color-green);
    flex-shrink: 0;
    margin-top: 2px;
}
.product-detail__usp-text strong {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-dark);
    text-transform: none;
    letter-spacing: 0;
}
.product-detail__usp-text span {
    font-size: var(--fs-xs);
    color: var(--color-muted);
    line-height: 1.5;
}

.product-detail__cta {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    margin-bottom: var(--sp-4);
}
.product-detail__phone {
    text-align: center;
    font-size: var(--fs-sm);
    color: var(--color-muted);
}
.product-detail__phone a { font-weight: 700; color: var(--color-dark); }

.product-detail__trust {
    display: flex;
    gap: var(--sp-3);
    justify-content: center;
    flex-wrap: wrap;
    padding-top: var(--sp-5);
    margin-top: var(--sp-2);
    border-top: 1px solid var(--color-grey-200);
}
.product-detail__trust-item {
    font-size: var(--fs-xs);
    color: var(--color-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}
.product-detail__trust-item::before {
    content: '✓';
    color: var(--color-green);
    font-weight: 700;
    font-size: 11px;
}

/* Feature cards */
.product-features { padding: var(--sp-20) 0; background: var(--color-green-tint); }
.product-features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-5);
    margin-top: var(--sp-10);
}
.feature-card {
    background: var(--color-white);
    
    padding: var(--sp-7);
}
.feature-card__num {
    font-size: var(--fs-sm);
    font-weight: 800;
    color: var(--color-green);
    letter-spacing: 0.08em;
    margin-bottom: var(--sp-4);
    display: block;
}
.feature-card__title {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--sp-2);
    text-transform: none;
    letter-spacing: 0;
}
.feature-card__text {
    font-size: var(--fs-sm);
    color: var(--color-muted);
    line-height: 1.65;
    font-weight: 400;
    text-transform: none;
}

/* Specs */
.product-specs {
    padding: var(--sp-20) 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-grey-200);
}
.product-specs__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-20);
    align-items: start;
}
.product-specs__intro p {
    color: var(--color-muted);
    font-size: var(--fs-base);
    line-height: 1.75;
    margin-top: var(--sp-4);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}
.btn--specs-cta { margin-top: var(--sp-6); display: inline-flex; }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--color-grey-200); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: var(--sp-4) var(--sp-2); font-size: var(--fs-sm); vertical-align: top; }
.specs-table td:first-child { color: var(--color-muted); width: 50%; font-weight: 400; }
.specs-table td:last-child { font-weight: 700; color: var(--color-dark); }

/* Payment */
.product-payment { padding: var(--sp-20) 0; background: var(--color-grey-100); }
.product-payment__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-6);
    margin-top: var(--sp-10);
}
.payment-card {
    background: var(--color-white);
    
    padding: var(--sp-8);
    border: 2px solid transparent;
}
.payment-card--featured { border-color: var(--color-green); }
.payment-card__badge {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--color-white);
    background: var(--color-green);
    
    padding: 2px var(--sp-2);
    margin-bottom: var(--sp-3);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.payment-card__name {
    font-size: var(--fs-xl);
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: var(--sp-1);
    text-transform: uppercase;
}
.payment-card__type {
    font-size: var(--fs-sm);
    color: var(--color-muted);
    margin-bottom: var(--sp-5);
    padding-bottom: var(--sp-5);
    border-bottom: 1px solid var(--color-grey-200);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}
.payment-rows { display: flex; flex-direction: column; gap: var(--sp-3); }
.payment-row { display: flex; justify-content: space-between; align-items: baseline; font-size: var(--fs-sm); }
.payment-row__label { color: var(--color-muted); font-weight: 400; text-transform: none; letter-spacing: 0; }
.payment-row__val { font-weight: 700; color: var(--color-dark); text-transform: none; letter-spacing: 0; }

.payment-disclaimer {
    text-align: center;
    margin-top: var(--sp-6);
    font-size: var(--fs-xs);
    color: var(--color-muted);
    max-width: none;
}

/* Delivery included */
.product-delivery { padding: var(--sp-20) 0; background: var(--color-white); }
.product-delivery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-6);
    margin-top: var(--sp-10);
}
.delivery-item { display: flex; gap: var(--sp-4); align-items: flex-start; }
.delivery-item__check {
    width: 22px; height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--color-green);
    margin-top: 2px;
}
.delivery-item__title {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--sp-1);
    text-transform: none;
    letter-spacing: 0;
}
.delivery-item__text {
    font-size: var(--fs-sm);
    color: var(--color-muted);
    line-height: 1.65;
    font-weight: 400;
    text-transform: none;
}

/* Sticky buy bar */
.buy-bar {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: var(--color-dark);
    padding: var(--sp-4) 0;
    z-index: 200;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}
.buy-bar.is-visible { transform: translateY(0); }
.buy-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-6);
}
.buy-bar__name {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.buy-bar__sub { font-size: var(--fs-xs); color: rgba(255,255,255,0.55); font-weight: 400; text-transform: none; letter-spacing: 0; }
.buy-bar__actions { display: flex; gap: var(--sp-3); align-items: center; flex-shrink: 0; }
.buy-bar__phone { font-size: var(--fs-sm); color: rgba(255,255,255,0.7); white-space: nowrap; }
.buy-bar__phone a { color: var(--color-white); font-weight: 700; }

/* Responsive product detail */
@media (max-width: 1100px) {
    .product-detail__inner { grid-template-columns: 380px 1fr; gap: var(--sp-12); }
}
@media (max-width: 900px) {
    .product-detail__inner { grid-template-columns: 1fr; }
    .product-detail__gallery { position: static; }
    .product-detail__aside { position: static; }
    .product-features__grid { grid-template-columns: repeat(2, 1fr); }
    .product-specs__inner { grid-template-columns: 1fr; gap: var(--sp-10); }
    .product-payment__grid { grid-template-columns: 1fr; }
    .product-delivery__grid { grid-template-columns: 1fr 1fr; }
    .buy-bar__name { font-size: var(--fs-sm); }
}
@media (max-width: 600px) {
    .product-features__grid { grid-template-columns: 1fr; }
    .product-delivery__grid { grid-template-columns: 1fr; }
    .buy-bar__sub { display: none; }
}
