  /* =========================================================
   TEXTIELDRUK ZUTPHEN
   main.css
   Exact afgestemd op huidige index.php
   ========================================================= */

:root {
    --bg: #ffffff;
    --bg-soft: #f7f8f4;
    --surface: #ffffff;
    --text: #101310;
    --text-soft: #676d67;
    --green: #3da51c;
    --green-hover: #318a16;
    --green-dark: #263b2a;
    --green-deep: #17271b;
    --green-soft: #edf5e8;
    --lime: #dff36a;
    --line: #dde1da;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --shadow: 0 18px 50px rgba(22, 40, 25, .09);
    --container: 1440px;
    --font-body: "DM Sans", Arial, sans-serif;
    --font-heading: "Manrope", Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    overflow-x: hidden;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.container { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }

h1, h2, h3 { margin: 0; color: var(--text); font-family: var(--font-heading); }
p { margin-top: 0; }

/* HEADER */
.site-header {
    position: relative; z-index: 500; width: 100%; padding: 14px 0;
    background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line);
}
.site-header__inner {
    display: grid; min-height: 68px; grid-template-columns: auto 1fr auto;
    align-items: center; gap: 38px;
}
.logo { display: inline-grid; line-height: 1; }
.logo__main { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; letter-spacing: -.055em; }
.logo__accent { width: 44px; height: 4px; margin: 7px 0 4px 6px; border-radius: 999px; background: var(--green); transform: rotate(-4deg); }
.logo__sub { margin-left: 50px; font-size: .67rem; font-weight: 900; letter-spacing: .19em; }

.main-nav { display: flex; align-items: center; justify-content: center; gap: 28px; }
.main-nav__link {
    position: relative; padding: 0; border: 0; background: transparent; color: var(--text);
    cursor: pointer; font-size: .75rem; font-weight: 800; text-transform: uppercase;
}
.main-nav__link::after {
    position: absolute; bottom: -9px; left: 0; width: 0; height: 2px;
    background: var(--green); content: ""; transition: width .2s ease;
}
.main-nav__link:hover::after, .main-nav__link.is-active::after { width: 100%; }
.main-nav__toggle { display: flex; align-items: center; gap: 7px; }
.main-nav__dropdown { position: relative; }
.main-nav__chevron { font-size: .9rem; }

.dropdown-menu {
    position: absolute; top: calc(100% + 20px); left: -20px; display: grid; min-width: 230px;
    gap: 2px; padding: 10px; border: 1px solid var(--line); border-radius: 13px;
    background: #fff; box-shadow: var(--shadow); visibility: hidden; opacity: 0;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.dropdown-menu a { padding: 10px 12px; border-radius: 8px; font-size: .86rem; font-weight: 600; }
.dropdown-menu a:hover { background: var(--green-soft); color: var(--green-dark); }
.main-nav__dropdown:hover .dropdown-menu, .main-nav__dropdown.is-open .dropdown-menu {
    visibility: visible; opacity: 1; transform: translateY(0);
}

.site-header__actions { display: flex; align-items: center; gap: 12px; }
.header-search {
    display: grid; width: 42px; height: 42px; place-items: center; padding: 0;
    border: 0; background: transparent; cursor: pointer; font-size: 1.3rem;
}
.header-cta {
    display: inline-flex; min-height: 48px; align-items: center; justify-content: center;
    gap: 12px; padding: 0 20px; border-radius: 8px; background: var(--green);
    color: #fff; font-size: .82rem; font-weight: 800;
}
.header-cta:hover { background: var(--green-hover); }
.mobile-menu-button { display: none; width: 48px; height: 48px; padding: 7px; border: 0; background: transparent; cursor: pointer; }
.mobile-menu-button span { display: block; width: 31px; height: 2px; margin: 7px auto; border-radius: 99px; background: var(--text); }
.mobile-nav__top, .mobile-nav__actions { display: none; }

/* CLASSIC HOMEPAGE */
.classic-home { width: 100%; overflow: hidden; background: #fff; }

/* HERO */
.classic-hero {
    position: relative; width: 100%; overflow: hidden;
    background: radial-gradient(circle at 22% 30%, rgba(61,165,28,.06), transparent 30%), #fff;
}
.classic-hero__grid {
    display: grid; min-height: 590px;
    grid-template-columns: minmax(390px,.82fr) minmax(0,1.18fr); align-items: stretch;
}
.classic-hero__copy {
    position: relative; z-index: 2; display: flex; flex-direction: column;
    justify-content: center; padding: 68px 60px 56px 0;
}
.classic-eyebrow {
    display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 18px;
    color: var(--green-dark); font-size: .71rem; font-weight: 900; letter-spacing: .17em;
}
.classic-eyebrow i { width: 4px; height: 4px; border-radius: 50%; background: var(--green); }
.classic-hero h1 {
    max-width: 620px; margin: 0; color: var(--text); font-family: var(--font-heading);
    font-size: clamp(4rem,5.8vw,6.5rem); font-weight: 800; line-height: .9; letter-spacing: -.07em;
}
.classic-hero h1 span { color: var(--green); }
.classic-hero__copy > p {
    max-width: 590px; margin: 27px 0 0; color: var(--text-soft);
    font-size: 1.02rem; line-height: 1.65;
}
.classic-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.classic-btn {
    display: inline-flex; min-height: 52px; align-items: center; justify-content: center;
    gap: 20px; padding: 0 23px; border: 1px solid transparent; border-radius: 8px;
    cursor: pointer; font-size: .86rem; font-weight: 800;
    transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.classic-btn:hover { transform: translateY(-2px); }
.classic-btn--green { background: var(--green); color: #fff; }
.classic-btn--green:hover { background: var(--green-hover); }
.classic-btn--outline { border-color: #cfd4cc; background: #fff; color: var(--text); }
.classic-btn--outline:hover { border-color: var(--green); color: var(--green-dark); }
.classic-btn--white { background: #fff; color: var(--green-deep); }

.classic-hero__usps {
    display: flex; flex-wrap: wrap; gap: 11px 22px; margin-top: 35px; padding-top: 23px;
    border-top: 1px solid var(--line); color: #565c56; font-size: .76rem; font-weight: 700;
}
.classic-hero__usps span { white-space: nowrap; }
.classic-hero__usps span::first-letter { color: var(--green); }

.classic-hero__visual { position: relative; min-width: 0; min-height: 590px; overflow: hidden; background: var(--green-soft); }
.classic-hero__visual > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.classic-hero__visual::after {
    position: absolute; inset: 0; background: linear-gradient(90deg,rgba(255,255,255,.17),transparent 25%);
    content: ""; pointer-events: none;
}
.classic-hero__tag {
    position: absolute; z-index: 3; top: 22%; right: 8%; padding: 17px 20px;
    background: rgba(244,249,241,.95); box-shadow: 0 18px 40px rgba(20,40,22,.13);
    color: var(--green-deep); font-family: Georgia,serif; font-size: 1.35rem;
    font-style: italic; line-height: 1.1; transform: rotate(5deg);
}
.classic-hero__note {
    position: absolute; z-index: 3; right: 5%; bottom: 8%; color: var(--green-dark);
    font-family: Georgia,serif; font-size: 1.5rem; font-style: italic; line-height: 1.05;
    text-align: center; transform: rotate(-7deg);
}

/* GENERAL SECTIONS */
.classic-section { padding: 78px 0; }
.classic-heading {
    display: flex; align-items: flex-end; justify-content: space-between;
    gap: 40px; margin-bottom: 30px;
}
.classic-label { margin-bottom: 8px; color: var(--green); font-size: .69rem; font-weight: 900; letter-spacing: .15em; }
.classic-label--light { color: var(--lime); }
.classic-heading h2 {
    margin: 0; font-family: var(--font-heading); font-size: clamp(2.2rem,3.4vw,4rem);
    font-weight: 800; line-height: .98; letter-spacing: -.055em;
}
.classic-heading__link { flex: 0 0 auto; padding-bottom: 5px; font-size: .83rem; font-weight: 800; }
.classic-heading__link span { margin-left: 7px; }
.classic-heading__link:hover { color: var(--green); }

/* PRODUCTS */
.classic-products { background: #fff; }
.classic-product-grid { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 13px; }
.classic-product {
    min-width: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 9px;
    background: #fff; box-shadow: 0 8px 24px rgba(22,40,25,.035);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.classic-product:hover { border-color: #cbd8c5; transform: translateY(-4px); box-shadow: var(--shadow); }
.classic-product__image { position: relative; width: 100%; aspect-ratio: 1.1/1; overflow: hidden; background: var(--bg-soft); }
.classic-product__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.classic-product:hover .classic-product__image img { transform: scale(1.04); }
.classic-product__body {
    display: flex; min-height: 90px; align-items: flex-start; justify-content: space-between;
    gap: 10px; padding: 14px;
}
.classic-product__body > div { min-width: 0; }
.classic-product__body h3 { margin: 0; font-family: var(--font-heading); font-size: .92rem; font-weight: 800; line-height: 1.15; }
.classic-product__body p { margin: 6px 0 0; color: var(--text-soft); font-size: .72rem; line-height: 1.4; }
.classic-product__body > span {
    display: grid; width: 28px; height: 28px; flex: 0 0 28px; place-items: center;
    border: 1px solid var(--line); border-radius: 50%; background: #fff; font-size: .9rem;
    transition: background .2s ease,border-color .2s ease,color .2s ease;
}
.classic-product:hover .classic-product__body > span { border-color: var(--green); background: var(--green); color: #fff; }

/* ABOUT / QUALITY */
.classic-about { width: 100%; overflow: hidden; background: var(--bg-soft); }
.classic-about__grid {
    display: grid; width: min(100%,1700px); margin-inline: auto;
    grid-template-columns: minmax(0,1.15fr) minmax(390px,.75fr) minmax(230px,.42fr);
    align-items: stretch;
}
.classic-about__image { position: relative; min-height: 520px; overflow: hidden; }
.classic-about__image > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.classic-about__badge {
    position: absolute; z-index: 2; top: 35px; right: 35px; display: flex;
    width: 130px; height: 130px; flex-direction: column; align-items: center; justify-content: center;
    padding: 15px; border-radius: 50%; background: rgba(255,255,255,.95);
    box-shadow: 0 15px 35px rgba(22,40,25,.13); color: var(--green-dark);
    text-align: center; line-height: 1.3;
}
.classic-about__badge span { font-size: .62rem; letter-spacing: .09em; }
.classic-about__badge strong { margin: 2px 0; font-size: .75rem; letter-spacing: .05em; }
.classic-about__badge b { margin-top: 4px; color: var(--green); font-size: 1.05rem; }

.classic-about__content { display: flex; flex-direction: column; justify-content: center; padding: 60px 45px; }
.classic-about__content h2 {
    margin: 0; font-family: var(--font-heading); font-size: clamp(2.7rem,3.8vw,4.5rem);
    font-weight: 800; line-height: .96; letter-spacing: -.055em;
}
.classic-about__content > p { max-width: 560px; margin: 23px 0 20px; color: var(--text-soft); font-size: .95rem; line-height: 1.65; }
.classic-about__content ul { display: grid; gap: 7px; margin: 0 0 27px; padding: 0; list-style: none; }
.classic-about__content li { position: relative; padding-left: 26px; font-size: .87rem; }
.classic-about__content li::before { position: absolute; left: 0; color: var(--green); content: "✓"; font-weight: 900; }
.classic-about__content .classic-btn { align-self: flex-start; }

.classic-about__local {
    display: flex; flex-direction: column; justify-content: center; gap: 30px; padding: 45px 35px 45px 0;
}
.classic-about__quote {
    color: var(--green-dark); font-family: Georgia,serif; font-size: clamp(1.45rem,2vw,2.15rem);
    font-style: italic; line-height: 1.08; transform: rotate(-5deg);
}
.classic-postcard { padding: 9px 9px 21px; background: #fff; box-shadow: 0 18px 40px rgba(22,40,25,.13); transform: rotate(5deg); }
.classic-postcard img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.classic-postcard span {
    display: block; margin-top: 8px; color: var(--green-dark); text-align: center;
    font-family: Georgia,serif; font-size: 1rem; font-style: italic;
}

/* PREMIUM VOORDELEN */
.classic-benefits-premium {
    position: relative;
    padding: 72px 0 78px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 20%,rgba(61,165,28,.08),transparent 42%), #f2f7ee;
}
.classic-benefits-premium__intro { max-width: 760px; margin: 0 auto 38px; text-align: center; }
.classic-benefits-premium__kicker {
    display: flex; align-items: center; justify-content: center; gap: 18px;
    margin-bottom: 14px; color: var(--green); font-size: .72rem; font-weight: 900; letter-spacing: .18em;
}
.classic-benefits-premium__kicker i { width: 75px; height: 1px; background: #cbdcc4; }
.classic-benefits-premium__intro h2 {
    margin: 0; color: var(--text); font-family: var(--font-heading);
    font-size: clamp(2.5rem,4vw,4.2rem); font-weight: 800; line-height: .98; letter-spacing: -.055em;
}
.classic-benefits-premium__grid { display: grid; max-width: 1050px; margin-inline: auto; gap: 14px; }
.classic-benefit-premium {
    display: grid; grid-template-columns: 72px minmax(0,1fr) 48px; align-items: center;
    gap: 20px; min-height: 112px; padding: 18px 22px;
    border: 1px solid rgba(38,59,42,.08); border-radius: 22px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 10px 30px rgba(23,39,27,.045), 0 2px 8px rgba(23,39,27,.025);
}
.classic-benefit-premium__icon {
    display: grid; width: 68px; height: 68px; place-items: center;
    border: 1px solid #dce9d7; border-radius: 50%; background: #f1f8ed;
    color: var(--green); font-size: 1.55rem; line-height: 1;
}
.classic-benefit-premium__text { display: flex; min-width: 0; flex-direction: column; }
.classic-benefit-premium__text strong {
    display: block; color: var(--text); font-family: var(--font-heading);
    font-size: 1.25rem; font-weight: 800; line-height: 1.05; letter-spacing: -.025em;
}
.classic-benefit-premium__text > span { display: block; margin-top: 3px; color: var(--text); font-size: 1rem; font-weight: 500; line-height: 1.25; }
.classic-benefit-premium__text small { display: block; margin-top: 5px; color: #8a9088; font-size: .79rem; font-weight: 400; line-height: 1.4; }
.classic-benefit-premium__arrow {
    display: grid; width: 44px; height: 44px; place-items: center; justify-self: end;
    border: 1px solid #dce9d7; border-radius: 50%; background: #f5f9f2;
    color: var(--green-dark); font-size: 1.1rem;
}

/* PROJECTS */
.classic-projects { background: #fff; }
.classic-project-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); gap: 13px; }
.classic-project-grid a {
    position: relative; min-width: 0; overflow: hidden; aspect-ratio: 1/.82;
    border-radius: 9px; background: var(--bg-soft);
}
.classic-project-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.classic-project-grid a:hover img { transform: scale(1.045); }
.classic-project-grid a::after {
    position: absolute; inset: 0; background: linear-gradient(180deg,transparent 60%,rgba(15,30,18,.22));
    content: ""; pointer-events: none;
}

/* REVIEWS */
.classic-reviews {
    background: radial-gradient(circle at 10% 30%,rgba(61,165,28,.07),transparent 25%),
                linear-gradient(180deg,var(--green-soft),#f8faf6);
}
.classic-review-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 18px; }
.classic-review-grid article {
    display: flex; min-width: 0; min-height: 215px; flex-direction: column; padding: 26px;
    border: 1px solid #d7e3d2; border-radius: 12px; background: rgba(255,255,255,.94);
    box-shadow: 0 12px 30px rgba(22,40,25,.045);
}
.classic-stars { margin-bottom: 14px; color: var(--green); font-size: .94rem; letter-spacing: .08em; }
.classic-review-grid article p { margin: 0 0 24px; font-size: .96rem; line-height: 1.58; }
.classic-review-grid article strong { display: block; margin-top: auto; font-family: var(--font-heading); font-size: .85rem; }
.classic-review-grid article > span { display: block; margin-top: 3px; color: var(--text-soft); font-size: .75rem; }

/* CTA */
.classic-cta { padding: 76px 0; background: var(--green-deep); color: #fff; }
.classic-cta__inner { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 80px; }
.classic-cta h2 {
    margin: 0; color: #fff; font-family: var(--font-heading);
    font-size: clamp(2.6rem,4vw,4.6rem); font-weight: 800; line-height: .97; letter-spacing: -.055em;
}
.classic-cta__inner > div:last-child { max-width: 470px; }
.classic-cta p { margin: 0 0 25px; color: #cbd6ca; line-height: 1.65; }

/* FOOTER */
.site-footer { background: #f7f8f4; border-top: 1px solid var(--line); }
.site-footer__top {
    display: grid; grid-template-columns: 1.35fr .55fr .55fr .75fr 1.15fr .75fr 1fr;
    gap: 30px; align-items: start; padding-top: 60px; padding-bottom: 48px;
}
.footer-column, .footer-contact { display: grid; gap: 8px; }
.footer-column a, .footer-contact a, .footer-contact p { margin: 0; color: var(--text-soft); font-size: .82rem; }
.footer-column a:hover, .footer-contact a:hover { color: var(--green); }
.footer-socials { display: flex; flex-wrap: wrap; gap: 9px; }
.footer-socials a {
    display: grid; width: 36px; height: 36px; place-items: center;
    border: 1px solid var(--line); border-radius: 50%; background: #fff;
    font-size: .68rem; font-weight: 900;
}
.footer-socials a:hover { border-color: var(--green); background: var(--green); color: #fff; }
.footer-signature { color: var(--green-dark); font-family: Georgia,serif; font-size: 1.35rem; font-style: italic; line-height: 1.05; transform: rotate(-5deg); }
.site-footer__bottom {
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
    padding-top: 20px; padding-bottom: 29px; border-top: 1px solid var(--line);
    color: #81877f; font-size: .71rem;
}
.site-footer__bottom > div, .footer-legal { display: flex; flex-wrap: wrap; gap: 10px; }
.footer-powered a:hover { color: var(--green); }

/* TABLET */
@media (max-width:1180px) {
    .site-header__inner { gap: 20px; }
    .main-nav { gap: 16px; }
    .main-nav__link { font-size: .7rem; }
    .header-cta { display: none; }
    .classic-hero__grid { grid-template-columns: .92fr 1.08fr; }
    .classic-hero__copy { padding-right: 38px; }
    .classic-product-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .classic-about__grid { grid-template-columns: 1fr 1fr; }
    .classic-about__local { display: none; }
    .classic-project-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
    .site-footer__top { grid-template-columns: 1.4fr repeat(3,1fr); }
}

/* MOBILE */
@media (max-width:860px) {
    .container { width: calc(100% - 40px); }
    .classic-section { padding: 64px 0; }

    .site-header { padding: 10px 0; background: #fff; }
    .site-header__inner { min-height: 74px; grid-template-columns: 1fr auto; gap: 16px; }
    .header-search, .header-cta { display: none; }
    .site-header__actions { justify-content: flex-end; }
    .mobile-menu-button { display: block; }

    .main-nav {
        position: fixed; z-index: 1000; inset: 0; display: flex; width: 100%; height: 100dvh;
        flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
        margin: 0; padding: 0; overflow-y: auto; background: #fff; visibility: hidden;
        opacity: 0; pointer-events: none; transform: translateX(100%);
        transition: transform .28s ease,opacity .2s ease,visibility .28s ease;
    }
    .main-nav.is-open { visibility: visible; opacity: 1; pointer-events: auto; transform: translateX(0); }
    .mobile-nav__top {
        position: sticky; z-index: 10; top: 0; display: flex; min-height: 96px;
        align-items: center; justify-content: space-between;
        padding: calc(10px + env(safe-area-inset-top)) 24px 10px;
        border-bottom: 1px solid var(--line); background: rgba(255,255,255,.98);
        backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    }
    .mobile-nav__close { position: relative; width: 50px; height: 50px; padding: 0; border: 0; background: transparent; cursor: pointer; }
    .mobile-nav__close span { position: absolute; top: 24px; left: 8px; width: 34px; height: 2px; border-radius: 99px; background: var(--text); }
    .mobile-nav__close span:first-child { transform: rotate(45deg); }
    .mobile-nav__close span:last-child { transform: rotate(-45deg); }
    .mobile-nav__content { display: flex; width: 100%; flex-direction: column; padding: 30px 24px 16px; }
    .main-nav__link {
        display: flex; width: 100%; min-height: 74px; align-items: center; justify-content: space-between;
        padding: 0; border: 0; border-bottom: 1px solid var(--line); background: transparent;
        font-family: var(--font-heading); font-size: 1.7rem; font-weight: 800; line-height: 1;
        letter-spacing: -.045em; text-align: left; text-transform: none;
    }
    .main-nav__link::after { display: none; }
    .main-nav__link.is-active { color: var(--green); }
    .main-nav__dropdown { position: static; width: 100%; }
    .main-nav__toggle { justify-content: space-between; }
    .main-nav__chevron { margin-left: 20px; transition: transform .2s ease; }
    .main-nav__dropdown.is-open .main-nav__chevron { transform: rotate(180deg); }
    .dropdown-menu {
        position: static; display: none; width: 100%; min-width: 0; margin: 0;
        padding: 8px 0 18px 18px; border: 0; border-bottom: 1px solid var(--line);
        border-radius: 0; background: var(--green-soft); box-shadow: none;
        visibility: visible; opacity: 1; transform: none; transition: none;
    }
    .main-nav__dropdown:hover .dropdown-menu { visibility: visible; opacity: 1; transform: none; }
    .main-nav__dropdown.is-open .dropdown-menu { display: grid; }
    .dropdown-menu a { padding: 11px 9px; color: var(--green-dark); font-size: .95rem; font-weight: 700; }
    .mobile-nav__actions {
        display: grid; gap: 12px; margin-top: auto;
        padding: 22px 24px calc(26px + env(safe-area-inset-bottom));
    }
    .mobile-nav__button { width: 100%; min-height: 60px; }

    .classic-hero__grid { width: 100%; min-height: 0; grid-template-columns: 1fr; }
    .classic-hero__copy { width: calc(100% - 40px); margin-inline: auto; padding: 54px 0 43px; }
    .classic-eyebrow { margin-bottom: 16px; font-size: .65rem; gap: 8px; }
    .classic-hero h1 { max-width: 100%; font-size: clamp(3.5rem,15vw,5rem); line-height: .9; letter-spacing: -.07em; }
    .classic-hero__copy > p { margin-top: 23px; font-size: .96rem; line-height: 1.58; }
    .classic-hero__actions { display: grid; grid-template-columns: 1fr 1fr; margin-top: 25px; }
    .classic-btn { min-height: 52px; padding-inline: 18px; }
    .classic-hero__usps { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 14px; margin-top: 28px; padding-top: 20px; font-size: .72rem; }
    .classic-hero__visual { width: 100%; min-height: 430px; }
    .classic-hero__visual > img { object-position: center; }
    .classic-hero__tag { top: 24px; right: 22px; padding: 14px 16px; font-size: 1.1rem; }
    .classic-hero__note { right: 23px; bottom: 27px; font-size: 1.25rem; }

    .classic-heading { align-items: flex-start; flex-direction: column; gap: 11px; margin-bottom: 25px; }
    .classic-heading h2 { font-size: clamp(2.35rem,10vw,3.5rem); line-height: .98; }
    .classic-heading__link { padding: 0; font-size: .82rem; }

    .classic-product-grid {
        display: flex; width: calc(100% + 20px); gap: 13px; padding: 0 20px 8px 0;
        overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-left: 0;
        -webkit-overflow-scrolling: touch; scrollbar-width: none;
    }
    .classic-product-grid::-webkit-scrollbar { display: none; }
    .classic-product { width: 270px; min-width: 270px; flex: 0 0 270px; scroll-snap-align: start; }
    .classic-product__image { height: 235px; aspect-ratio: auto; }
    .classic-product__body { min-height: 84px; padding: 14px; }
    .classic-product__body h3 { font-size: .93rem; }
    .classic-product__body p { font-size: .72rem; }

    .classic-about__grid { width: 100%; grid-template-columns: 1fr; }
    .classic-about__image { min-height: 420px; }
    .classic-about__image > img { position: absolute; object-position: center; }
    .classic-about__badge { top: 25px; right: 22px; width: 115px; height: 115px; }
    .classic-about__content { width: calc(100% - 40px); margin-inline: auto; padding: 55px 0 60px; }
    .classic-about__content h2 { font-size: clamp(3rem,12vw,4.2rem); }
    .classic-about__content > p { margin-top: 20px; font-size: .94rem; }
    .classic-about__content li { font-size: .88rem; }
    .classic-about__local {
        display: flex; width: calc(100% - 40px); margin-inline: auto; flex-direction: row;
        align-items: center; gap: 30px; padding: 0 0 60px;
    }
    .classic-about__quote { width: 42%; font-size: 1.45rem; }
    .classic-postcard { width: 58%; }

    .classic-benefits-premium { padding: 58px 0 64px; }
    .classic-benefits-premium__intro { margin-bottom: 30px; }
    .classic-benefits-premium__kicker { gap: 13px; margin-bottom: 15px; font-size: .66rem; letter-spacing: .17em; }
    .classic-benefits-premium__kicker i { width: 45px; }
    .classic-benefits-premium__intro h2 { max-width: 600px; margin-inline: auto; font-size: clamp(2.25rem,8vw,3.5rem); line-height: .99; }
    .classic-benefits-premium__grid { gap: 13px; }
    .classic-benefit-premium {
        grid-template-columns: 64px minmax(0,1fr) 44px; gap: 16px; min-height: 106px;
        padding: 17px 18px; border-radius: 20px;
    }
    .classic-benefit-premium__icon { width: 62px; height: 62px; font-size: 1.4rem; }
    .classic-benefit-premium__arrow { width: 42px; height: 42px; }

    .classic-project-grid {
        display: flex; width: calc(100% + 20px); gap: 13px; padding: 0 20px 8px 0;
        overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    }
    .classic-project-grid::-webkit-scrollbar { display: none; }
    .classic-project-grid a { width: 285px; min-width: 285px; flex: 0 0 285px; aspect-ratio: 1/.85; scroll-snap-align: start; }

    .classic-review-grid {
        display: flex; width: calc(100% + 20px); gap: 13px; padding: 0 20px 8px 0;
        overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    }
    .classic-review-grid::-webkit-scrollbar { display: none; }
    .classic-review-grid article { width: 290px; min-width: 290px; flex: 0 0 290px; scroll-snap-align: start; }

    .classic-cta { padding: 65px 0; }
    .classic-cta__inner { grid-template-columns: 1fr; gap: 28px; }
    .classic-cta h2 { font-size: clamp(2.8rem,11vw,4rem); }
    .classic-cta__inner > div:last-child { max-width: 100%; }

    .site-footer__top { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1/-1; }
    .site-footer__bottom { align-items: flex-start; flex-direction: column; }
}

/* SMALL MOBILE */
@media (max-width:560px) {
    .container { width: calc(100% - 36px); }
    .logo__main { font-size: 1.55rem; }
    .logo__accent { width: 38px; }
    .logo__sub { margin-left: 39px; }

    .classic-hero__copy { width: calc(100% - 36px); padding: 47px 0 39px; }
    .classic-hero h1 { font-size: clamp(3.35rem,16vw,4.65rem); }
    .classic-hero__actions { grid-template-columns: 1fr; }
    .classic-hero__actions .classic-btn { width: 100%; }
    .classic-hero__usps { grid-template-columns: 1fr 1fr; }
    .classic-hero__visual { min-height: 360px; }

    .classic-product { width: 245px; min-width: 245px; flex-basis: 245px; }
    .classic-product__image { height: 210px; }

    .classic-about__image { min-height: 350px; }
    .classic-about__content { width: calc(100% - 36px); padding: 49px 0 54px; }
    .classic-about__content h2 { font-size: 3rem; }
    .classic-about__local {
        width: calc(100% - 36px); align-items: flex-start; flex-direction: column; padding-bottom: 55px;
    }
    .classic-about__quote, .classic-postcard { width: 100%; }
    .classic-about__quote { padding-left: 12px; }
    .classic-postcard { max-width: 290px; margin-inline: auto; }

    .classic-benefits-premium { padding: 52px 0 58px; }
    .classic-benefits-premium__intro { margin-bottom: 27px; }
    .classic-benefits-premium__kicker { gap: 10px; font-size: .61rem; letter-spacing: .15em; }
    .classic-benefits-premium__kicker i { width: 30px; }
    .classic-benefits-premium__intro h2 { font-size: clamp(2.15rem,10vw,2.85rem); line-height: 1; }
    .classic-benefits-premium__intro h2 br { display: none; }
    .classic-benefit-premium {
        grid-template-columns: 58px minmax(0,1fr) 38px; gap: 13px;
        min-height: 101px; padding: 15px; border-radius: 18px;
    }
    .classic-benefit-premium__icon { width: 56px; height: 56px; font-size: 1.25rem; }
    .classic-benefit-premium__text strong { font-size: 1.08rem; }
    .classic-benefit-premium__text > span { margin-top: 2px; font-size: .9rem; }
    .classic-benefit-premium__text small { margin-top: 4px; font-size: .69rem; line-height: 1.3; }
    .classic-benefit-premium__arrow { width: 36px; height: 36px; font-size: .95rem; }

    .classic-project-grid a { width: 260px; min-width: 260px; flex-basis: 260px; }
    .classic-review-grid article { width: 270px; min-width: 270px; flex-basis: 270px; }
    .classic-cta h2 { font-size: 2.85rem; }
    .classic-cta .classic-btn { width: 100%; }
    .site-footer__top { grid-template-columns: 1fr; }
}

/* VERY SMALL PHONES */
@media (max-width:380px) {
    .classic-hero h1 { font-size: 3.05rem; }
    .classic-hero__usps { grid-template-columns: 1fr; }
    .classic-heading h2 { font-size: 2.25rem; }
    .classic-product { width: 230px; min-width: 230px; flex-basis: 230px; }

    .classic-benefit-premium {
        grid-template-columns: 52px minmax(0,1fr) 34px; gap: 10px; padding: 13px;
    }
    .classic-benefit-premium__icon { width: 50px; height: 50px; font-size: 1.15rem; }
    .classic-benefit-premium__text strong { font-size: 1rem; }
    .classic-benefit-premium__text > span { font-size: .84rem; }
    .classic-benefit-premium__text small { font-size: .64rem; }
    .classic-benefit-premium__arrow { width: 32px; height: 32px; }

    .classic-project-grid a { width: 245px; min-width: 245px; flex-basis: 245px; }
    .classic-review-grid article { width: 255px; min-width: 255px; flex-basis: 255px; }
}

/* =========================================
   ECHT LOGO - FOOTER
   ========================================= */

.site-footer .footer-brand .logo--image {
    display: inline-flex;
    align-items: center;
    width: auto;
}

.site-footer .footer-brand .footer-logo__image {
    display: block;
    width: auto !important;
    height: 46px !important;
    max-width: 180px !important;
    object-fit: contain;
}

@media (max-width: 860px) {
    .site-footer .footer-brand .footer-logo__image {
        height: 42px !important;
        max-width: 165px !important;
    }
}

/* =========================================
   HEADER - ANDERE DIENSTEN DROPDOWN
   ========================================= */

.header-other-services {
    position: relative;
}

.header-other-services > summary {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 0 20px;

    border: 1px solid #d9ded7;
    border-radius: 10px;

    background: #fff;
    color: #111;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
    list-style: none;

    transition:
        border-color .2s ease,
        background .2s ease;
}

.header-other-services > summary::-webkit-details-marker {
    display: none;
}

.header-other-services > summary:hover {
    border-color: #3da51c;
    background: #f7fbf5;
}

.header-other-services__chevron {
    display: inline-block;
    color: #3da51c;
    font-size: 17px;
    transition: transform .2s ease;
}

.header-other-services[open] .header-other-services__chevron {
    transform: rotate(180deg);
}

.header-other-services__menu {
    position: absolute;
    z-index: 1000;

    top: calc(100% + 12px);
    right: 0;

    width: 300px;
    padding: 8px;

    border: 1px solid #e0e5de;
    border-radius: 14px;

    background: #fff;

    box-shadow:
        0 18px 50px rgba(20, 35, 22, .12);
}

.header-other-services__menu a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;

    padding: 15px 16px;

    border-radius: 10px;

    color: #111;
    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease;
}

.header-other-services__menu a:hover {
    background: #f2f9ee;
}

.header-other-services__menu a + a {
    border-top: 1px solid #edf0eb;
}

.header-other-services__menu span {
    display: grid;
    gap: 3px;
}

.header-other-services__menu small {
    color: #3da51c;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
}

.header-other-services__menu strong {
    font-family: "Manrope", Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.header-other-services__menu b {
    color: #3da51c;
    font-size: 18px;
    font-weight: 500;
}

/* Mobiel blijft gewoon het hamburgermenu */
@media (max-width: 860px) {
    .header-other-services {
        display: none;
    }
}
/* =========================================================
   TEXTIELDRUK ZUTPHEN - DESKTOP NAVBAR FIX
   Plaats helemaal onderaan /assets/css/main.css
   ========================================================= */

@media (min-width: 901px) {

    .site-header {
        position: relative;
        z-index: 1000;
    }

    .site-header__inner {
        display: grid !important;
        grid-template-columns: auto minmax(0, 1fr) auto !important;
        align-items: center !important;
        gap: 34px !important;
        min-height: 104px !important;
    }

    /* Hoofdnavigatie zelf */
    .main-nav {
        position: static !important;
        display: block !important;
        width: auto !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    /* Dit is de echte desktop menurij in jouw header.php */
    .mobile-nav__content {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
        gap: clamp(14px, 1.45vw, 28px) !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .main-nav__link {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        width: auto !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 12px 0 !important;
        border: 0 !important;
        background: transparent !important;
        white-space: nowrap !important;
        font-size: 13px !important;
        line-height: 1 !important;
        text-decoration: none !important;
    }

    .main-nav__dropdown {
        position: relative !important;
        display: block !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .main-nav__toggle {
        cursor: pointer !important;
        font: inherit !important;
    }

    .main-nav__chevron {
        display: inline-block !important;
        font-size: 12px !important;
        line-height: 1 !important;
        transform: translateY(-1px);
    }

    /* Dropdown panel */
    .dropdown-menu {
        position: absolute !important;
        top: calc(100% + 12px) !important;
        left: 50% !important;
        z-index: 1100 !important;
        display: none !important;
        min-width: 230px !important;
        width: max-content !important;
        max-width: 320px !important;
        padding: 10px !important;
        margin: 0 !important;
        transform: translateX(-50%) !important;
        background: #fff !important;
        border: 1px solid #e8e8e3 !important;
        border-radius: 14px !important;
        box-shadow: 0 18px 45px rgba(0, 0, 0, .10) !important;
    }

    .main-nav__dropdown:hover > .dropdown-menu,
    .main-nav__dropdown:focus-within > .dropdown-menu,
    .main-nav__dropdown.is-open > .dropdown-menu {
        display: grid !important;
        gap: 2px !important;
    }

    .dropdown-menu a {
        display: block !important;
        width: 100% !important;
        padding: 11px 12px !important;
        border-radius: 9px !important;
        white-space: normal !important;
        font-size: 13px !important;
        line-height: 1.35 !important;
        text-decoration: none !important;
    }

    .dropdown-menu a:hover {
        background: #f3f7f0 !important;
    }

    /* Alleen mobiel */
    .mobile-nav__top,
    .mobile-nav__actions,
    .mobile-menu-button {
        display: none !important;
    }

    /* Rechter acties */
    .site-header__actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 16px !important;
        white-space: nowrap !important;
    }

    .header-search,
    .header-cta {
        flex: 0 0 auto !important;
    }

    /* Logo mag niet inkrimpen */
    .site-header > .container > .logo,
    .site-header__inner > .logo {
        flex: 0 0 auto !important;
        white-space: nowrap !important;
    }
}

/* Iets compacter op kleinere laptops */
@media (min-width: 901px) and (max-width: 1180px) {
    .site-header__inner {
        gap: 20px !important;
    }

    .mobile-nav__content {
        gap: 12px !important;
    }

    .main-nav__link {
        font-size: 12px !important;
    }

    .header-cta {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}


/* VOORDELEN - SVG LIJNICONEN
   Alleen de icoonweergave; bestaande layout blijft ongewijzigd. */
.classic-benefit-premium__icon svg {
    display: block;
    width: 30px;
    height: 30px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 560px) {
    .classic-benefit-premium__icon svg {
        width: 26px;
        height: 26px;
    }
}

@media (max-width: 380px) {
    .classic-benefit-premium__icon svg {
        width: 23px;
        height: 23px;
    }
}

/* =========================================
   SPRINGKUSSEN LINK - MOBIEL MENU
   ========================================= */

.mobile-springkussen-link {
    display: none;
}

@media (max-width: 860px) {

    .mobile-springkussen-link {
        display: grid;
        grid-template-columns: 46px minmax(0, 1fr) auto;
        align-items: center;
        gap: 14px;

        width: 100%;
        margin: 0 0 18px;
        padding: 15px 16px;

        border: 1px solid rgba(61, 165, 28, .28);
        border-radius: 16px;

        background: #f2f9ee;
        color: #101510;
        text-decoration: none;
    }

    .mobile-springkussen-link__icon {
        display: grid;
        width: 46px;
        height: 46px;
        place-items: center;

        border-radius: 13px;
        background: #3da51c;
        color: #fff;
    }

    .mobile-springkussen-link__icon svg {
        width: 25px;
        height: 25px;

        fill: none;
        stroke: currentColor;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-springkussen-link__copy {
        display: grid;
        min-width: 0;
        gap: 2px;
    }

    .mobile-springkussen-link__copy small {
        color: #318a16;
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .1em;
    }

    .mobile-springkussen-link__copy strong {
        font-family: "Manrope", Arial, sans-serif;
        font-size: 16px;
        font-weight: 800;
        line-height: 1.2;
    }

    .mobile-springkussen-link__copy > span {
        color: #5b655c;
        font-size: 12px;
        line-height: 1.35;
    }

    .mobile-springkussen-link__arrow {
        color: #318a16;
        font-size: 22px;
    }
}

/* =========================================================
   ECHT TEXTIELDRUK LOGO IN HEADER
   ========================================================= */

.logo.logo--image {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    width: auto;
    height: auto;
    text-decoration: none;
}

.logo.logo--image .logo__image {
    display: block;
    width: auto;
    height: 58px;
    max-width: 220px;
    object-fit: contain;
}

/* Mobiele menukop */
.mobile-nav__top .logo.logo--image .logo__image {
    height: 58px;
    max-width: 220px;
}

@media (max-width: 860px) {
    .site-header > .container > .logo.logo--image .logo__image {
        height: 48px;
        max-width: 180px;
    }

    .mobile-nav__top .logo.logo--image .logo__image {
        height: 54px;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .site-header > .container > .logo.logo--image .logo__image {
        height: 44px;
        max-width: 165px;
    }

    .mobile-nav__top .logo.logo--image .logo__image {
        height: 50px;
        max-width: 185px;
    }
}

/* =========================================
   LOGO FORMAAT FIX
   ========================================= */

/* Desktop */
.logo.logo--image .logo__image {
    width: auto !important;
    height: 46px !important;
    max-width: 180px !important;
    object-fit: contain;
}

/* Mobiel */
@media (max-width: 860px) {
    .site-header > .container > .logo.logo--image .logo__image {
        height: 40px !important;
        max-width: 155px !important;
    }

    .mobile-nav__top .logo.logo--image .logo__image {
        height: 44px !important;
        max-width: 170px !important;
    }
}
/* =========================================
   DESKTOP NAV FIX
   ========================================= */

@media (min-width: 901px) {

    .site-header__inner,
    .header-inner,
    .main-header__inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 32px !important;
    }

    .main-nav {
        position: static !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1 1 auto !important;
        width: auto !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .main-nav > ul,
    .main-nav__list,
    .nav-list {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
        gap: 26px !important;
        width: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .main-nav li {
        position: relative !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        width: auto !important;
    }

    .main-nav a,
    .main-nav button {
        display: inline-flex !important;
        align-items: center !important;
        gap: 5px !important;
        width: auto !important;
        padding: 12px 0 !important;
        white-space: nowrap !important;
        font-size: 13px !important;
        line-height: 1 !important;
    }

    .main-nav__dropdown {
        position: absolute !important;
        top: calc(100% + 10px) !important;
        left: 0 !important;
        min-width: 210px !important;
        padding: 10px !important;
        background: #fff !important;
        border: 1px solid #e7e7e7 !important;
        border-radius: 12px !important;
        box-shadow: 0 16px 38px rgba(0,0,0,.08) !important;
        z-index: 1000 !important;
    }

    .main-nav__dropdown a {
        display: block !important;
        padding: 10px 12px !important;
        line-height: 1.3 !important;
    }

    .mobile-nav__top,
    .mobile-nav__close,
    .mobile-nav__actions {
        display: none !important;
    }

    .nav-toggle,
    .menu-toggle,
    .mobile-menu-toggle {
        display: none !important;
    }
}
/* =========================================================
   DIENSTENPAGINA
   Toevoegen ONDERAAN bestaande main.css
   ========================================================= */

.services-page {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

/* HERO */
.services-hero {
    position: relative;
    background:
        radial-gradient(circle at 18% 24%, rgba(61,165,28,.07), transparent 28%),
        #fff;
}

.services-hero__grid {
    display: grid;
    min-height: 620px;
    grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
    align-items: stretch;
}

.services-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 78px 70px 70px 0;
}

.services-hero__copy h1 {
    margin: 0;
    max-width: 700px;
    font-family: var(--font-heading);
    font-size: clamp(4rem,5.7vw,6.4rem);
    font-weight: 800;
    line-height: .91;
    letter-spacing: -.07em;
}

.services-hero__copy h1 span {
    color: var(--green);
}

.services-hero__copy > p {
    max-width: 600px;
    margin: 28px 0 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.68;
}

.services-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.services-hero__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 38px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.services-hero__meta div {
    display: grid;
    gap: 4px;
}

.services-hero__meta strong {
    font-size: .82rem;
    font-weight: 800;
}

.services-hero__meta span {
    color: var(--text-soft);
    font-size: .73rem;
    line-height: 1.45;
}

.services-hero__visual {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: var(--green-soft);
}

.services-hero__visual > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-hero__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 48%,rgba(20,35,22,.22));
    content: "";
    pointer-events: none;
}

.services-hero__card {
    position: absolute;
    z-index: 2;
    right: 34px;
    bottom: 34px;
    width: min(330px,calc(100% - 68px));
    padding: 24px 26px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 16px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 18px 45px rgba(22,40,25,.17);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.services-hero__card span {
    display: block;
    margin-bottom: 8px;
    color: var(--green);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .16em;
}

.services-hero__card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.45rem;
    line-height: 1.05;
    letter-spacing: -.035em;
}

.services-hero__card small {
    display: block;
    margin-top: 11px;
    color: var(--text-soft);
    font-size: .75rem;
}

/* OVERVIEW */
.services-overview {
    padding: 92px 0 98px;
    background: #fff;
}

.services-heading {
    display: grid;
    grid-template-columns: 1fr minmax(280px,450px);
    align-items: end;
    gap: 70px;
    margin-bottom: 42px;
}

.services-heading h2,
.services-process__intro h2,
.services-why__content h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.8rem,4vw,4.7rem);
    font-weight: 800;
    line-height: .96;
    letter-spacing: -.06em;
}

.services-heading > p {
    margin: 0 0 5px;
    color: var(--text-soft);
    font-size: .95rem;
    line-height: 1.65;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 16px;
}

.service-card {
    display: grid;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

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

.service-card__image {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--bg-soft);
}

.service-card--large .service-card__image {
    height: 350px;
}

.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.service-card:hover .service-card__image img {
    transform: scale(1.035);
}

.service-card__content {
    display: grid;
    grid-template-columns: 44px minmax(0,1fr) 42px;
    align-items: start;
    gap: 16px;
    padding: 24px;
}

.service-card__number {
    color: var(--green);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .1em;
}

.service-card h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.035em;
}

.service-card p {
    margin: 8px 0 0;
    color: var(--text-soft);
    font-size: .82rem;
    line-height: 1.55;
}

.service-card__arrow {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    justify-self: end;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    transition: background .2s ease,border-color .2s ease,color .2s ease;
}

.service-card:hover .service-card__arrow {
    border-color: var(--green);
    background: var(--green);
    color: #fff;
}

/* PROCESS */
.services-process {
    padding: 90px 0;
    background:
        radial-gradient(circle at 80% 20%,rgba(61,165,28,.07),transparent 30%),
        var(--bg-soft);
}

.services-process__intro {
    max-width: 760px;
    margin-bottom: 42px;
}

.services-process__grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.services-process__grid article {
    min-height: 260px;
    padding: 28px 25px;
    border: 1px solid #dde5da;
    border-radius: 18px;
    background: rgba(255,255,255,.92);
}

.services-process__grid article > span {
    display: inline-flex;
    margin-bottom: 42px;
    color: var(--green);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.services-process__grid h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -.035em;
}

.services-process__grid p {
    margin: 10px 0 0;
    color: var(--text-soft);
    font-size: .82rem;
    line-height: 1.58;
}

/* WHY */
.services-why {
    padding: 98px 0;
    background: #fff;
}

.services-why__grid {
    display: grid;
    grid-template-columns: minmax(0,1.05fr) minmax(360px,.95fr);
    align-items: center;
    gap: 80px;
}

.services-why__visual {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--green-soft);
}

.services-why__visual > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-why__badge {
    position: absolute;
    right: 28px;
    bottom: 28px;
    display: flex;
    width: 155px;
    height: 155px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    box-shadow: 0 18px 40px rgba(22,40,25,.15);
    text-align: center;
}

.services-why__badge span {
    color: var(--green);
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.services-why__badge strong {
    margin-top: 3px;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    line-height: 1;
}

.services-why__badge small {
    max-width: 95px;
    margin-top: 7px;
    color: var(--text-soft);
    font-size: .62rem;
    line-height: 1.3;
}

.services-why__content > p {
    max-width: 560px;
    margin: 24px 0 28px;
    color: var(--text-soft);
    font-size: .95rem;
    line-height: 1.68;
}

.services-why__list {
    display: grid;
    gap: 12px;
    margin-bottom: 30px;
}

.services-why__list > div {
    display: grid;
    grid-template-columns: 34px minmax(0,1fr);
    gap: 13px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.services-why__list > div > span {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    font-size: .78rem;
    font-weight: 900;
}

.services-why__list strong,
.services-why__list small {
    display: block;
}

.services-why__list strong {
    font-size: .87rem;
}

.services-why__list small {
    margin-top: 3px;
    color: var(--text-soft);
    font-size: .72rem;
}

/* TABLET */
@media (max-width: 1180px) {
    .services-hero__grid {
        grid-template-columns: .95fr 1.05fr;
    }

    .services-hero__copy {
        padding-right: 45px;
    }

    .services-process__grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .services-why__grid {
        gap: 55px;
    }
}

/* MOBILE */
@media (max-width: 860px) {
    .services-hero__grid {
        width: 100%;
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .services-hero__copy {
        width: calc(100% - 40px);
        margin-inline: auto;
        padding: 54px 0 44px;
    }

    .services-hero__copy h1 {
        font-size: clamp(3.4rem,14vw,5rem);
    }

    .services-hero__copy > p {
        margin-top: 22px;
        font-size: .95rem;
    }

    .services-hero__actions {
        margin-top: 25px;
    }

    .services-hero__meta {
        gap: 18px;
        margin-top: 30px;
        padding-top: 20px;
    }

    .services-hero__visual {
        min-height: 430px;
    }

    .services-hero__card {
        right: 20px;
        bottom: 20px;
        width: min(300px,calc(100% - 40px));
    }

    .services-overview {
        padding: 68px 0 72px;
    }

    .services-heading {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }

    .services-heading h2,
    .services-process__intro h2,
    .services-why__content h2 {
        font-size: clamp(2.65rem,10vw,3.7rem);
    }

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

    .service-card__image,
    .service-card--large .service-card__image {
        height: 280px;
    }

    .services-process {
        padding: 68px 0;
    }

    .services-process__intro {
        margin-bottom: 30px;
    }

    .services-process__grid {
        grid-template-columns: 1fr 1fr;
    }

    .services-why {
        padding: 72px 0;
    }

    .services-why__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .services-why__visual {
        min-height: 430px;
    }
}

/* SMALL MOBILE */
@media (max-width: 560px) {
    .services-hero__copy {
        width: calc(100% - 36px);
        padding: 47px 0 40px;
    }

    .services-hero__copy h1 {
        font-size: clamp(3.2rem,16vw,4.5rem);
    }

    .services-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .services-hero__actions .classic-btn {
        width: 100%;
    }

    .services-hero__meta {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .services-hero__visual {
        min-height: 360px;
    }

    .services-hero__card {
        padding: 20px;
    }

    .services-heading h2,
    .services-process__intro h2,
    .services-why__content h2 {
        font-size: 2.85rem;
    }

    .service-card__image,
    .service-card--large .service-card__image {
        height: 235px;
    }

    .service-card__content {
        grid-template-columns: 36px minmax(0,1fr) 38px;
        gap: 12px;
        padding: 20px 18px;
    }

    .service-card h3 {
        font-size: 1.2rem;
    }

    .services-process__grid {
        grid-template-columns: 1fr;
    }

    .services-process__grid article {
        min-height: 220px;
    }

    .services-process__grid article > span {
        margin-bottom: 30px;
    }

    .services-why__visual {
        min-height: 360px;
    }

    .services-why__badge {
        right: 18px;
        bottom: 18px;
        width: 130px;
        height: 130px;
    }
}

/* =========================================
   PRODUCTEN - QUALITY ICONS
   ========================================= */

.products-quality__icon {
    display: grid !important;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    background: #f0f7ed;
    border: 1px solid #d9e7d4;
    color: var(--green);
}

.products-quality__icon svg {
    width: 25px;
    height: 25px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   PRODUCTENPAGINA
   Toevoegen ONDERAAN bestaande main.css
   ========================================================= */

.products-page {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

/* HERO */
.products-hero {
    position: relative;
    background:
        radial-gradient(circle at 20% 25%,rgba(61,165,28,.07),transparent 29%),
        #fff;
}

.products-hero__grid {
    display: grid;
    min-height: 620px;
    grid-template-columns: minmax(0,.88fr) minmax(0,1.12fr);
    align-items: stretch;
}

.products-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 76px 70px 68px 0;
}

.products-hero__copy h1 {
    max-width: 680px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(4rem,5.8vw,6.5rem);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.07em;
}

.products-hero__copy h1 span {
    color: var(--green);
}

.products-hero__copy > p {
    max-width: 600px;
    margin: 28px 0 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.67;
}

.products-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 29px;
}

.products-hero__meta {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
    margin-top: 38px;
    padding-top: 23px;
    border-top: 1px solid var(--line);
}

.products-hero__meta div {
    display: grid;
    gap: 4px;
}

.products-hero__meta strong {
    font-size: .8rem;
    font-weight: 800;
}

.products-hero__meta span {
    color: var(--text-soft);
    font-size: .7rem;
    line-height: 1.4;
}

.products-hero__visual {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: var(--green-soft);
}

.products-hero__visual > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-hero__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 52%,rgba(20,35,22,.2));
    content: "";
    pointer-events: none;
}

.products-hero__note {
    position: absolute;
    z-index: 2;
    right: 34px;
    bottom: 34px;
    width: min(320px,calc(100% - 68px));
    padding: 24px 26px;
    border: 1px solid rgba(255,255,255,.55);
    border-radius: 16px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 18px 45px rgba(22,40,25,.16);
}

.products-hero__note span {
    display: block;
    margin-bottom: 8px;
    color: var(--green);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .16em;
}

.products-hero__note strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.03;
    letter-spacing: -.04em;
}

.products-hero__note small {
    display: block;
    margin-top: 10px;
    color: var(--text-soft);
    font-size: .74rem;
    line-height: 1.45;
}

/* OVERVIEW */
.products-overview {
    padding: 92px 0 100px;
    background: #fff;
}

.products-heading {
    display: grid;
    grid-template-columns: 1fr minmax(280px,440px);
    align-items: end;
    gap: 72px;
    margin-bottom: 42px;
}

.products-heading h2,
.products-guide__copy h2,
.products-quality__heading h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.8rem,4vw,4.7rem);
    font-weight: 800;
    line-height: .96;
    letter-spacing: -.06em;
}

.products-heading > p {
    margin: 0 0 5px;
    color: var(--text-soft);
    font-size: .95rem;
    line-height: 1.65;
}

.products-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 16px;
}

.catalog-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    transition: transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}

.catalog-card:hover {
    border-color: #cbd8c5;
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.catalog-card__image {
    position: relative;
    height: 300px;
    overflow: hidden;
    background: var(--bg-soft);
}

.catalog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .42s ease;
}

.catalog-card:hover .catalog-card__image img {
    transform: scale(1.04);
}

.catalog-card__tag {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.catalog-card__content {
    display: grid;
    grid-template-columns: minmax(0,1fr) 42px;
    gap: 18px;
    align-items: start;
    padding: 23px;
}

.catalog-card__number {
    display: block;
    margin-bottom: 11px;
    color: var(--green);
    font-size: .63rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.catalog-card h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.28rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.catalog-card p {
    margin: 9px 0 0;
    color: var(--text-soft);
    font-size: .8rem;
    line-height: 1.55;
}

.catalog-card__arrow {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    justify-self: end;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    transition: background .2s ease,border-color .2s ease,color .2s ease;
}

.catalog-card:hover .catalog-card__arrow {
    border-color: var(--green);
    background: var(--green);
    color: #fff;
}

/* GUIDE */
.products-guide {
    padding: 96px 0;
    background:
        radial-gradient(circle at 22% 20%,rgba(61,165,28,.08),transparent 28%),
        var(--bg-soft);
}

.products-guide__grid {
    display: grid;
    grid-template-columns: minmax(360px,.88fr) minmax(0,1.12fr);
    align-items: center;
    gap: 80px;
}

.products-guide__copy > p {
    max-width: 570px;
    margin: 24px 0 28px;
    color: var(--text-soft);
    font-size: .95rem;
    line-height: 1.68;
}

.products-guide__points {
    display: grid;
    gap: 0;
    margin-bottom: 30px;
}

.products-guide__points > div {
    display: grid;
    grid-template-columns: 44px 120px minmax(0,1fr);
    gap: 14px;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid #d9e0d6;
}

.products-guide__points span {
    color: var(--green);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.products-guide__points strong {
    font-size: .85rem;
}

.products-guide__points small {
    color: var(--text-soft);
    font-size: .72rem;
}

.products-guide__visual {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--green-soft);
}

.products-guide__visual > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-guide__badge {
    position: absolute;
    right: 28px;
    bottom: 28px;
    display: flex;
    width: 150px;
    height: 150px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    box-shadow: 0 18px 40px rgba(22,40,25,.15);
    text-align: center;
}

.products-guide__badge span {
    color: var(--green);
    font-size: .6rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.products-guide__badge strong {
    margin-top: 2px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.products-guide__badge small {
    max-width: 90px;
    margin-top: 5px;
    color: var(--text-soft);
    font-size: .61rem;
    line-height: 1.3;
}

/* QUALITY */
.products-quality {
    padding: 92px 0 98px;
    background: #fff;
}

.products-quality__heading {
    max-width: 780px;
    margin-bottom: 38px;
}

.products-quality__grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.products-quality__grid article {
    min-height: 235px;
    padding: 27px 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
}

.products-quality__grid article > span {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    margin-bottom: 42px;
    border: 1px solid #dce9d7;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    font-size: 1.2rem;
}

.products-quality__grid h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 800;
    letter-spacing: -.03em;
}

.products-quality__grid p {
    margin: 9px 0 0;
    color: var(--text-soft);
    font-size: .79rem;
    line-height: 1.58;
}

/* TABLET */
@media (max-width: 1180px) {
    .products-hero__grid {
        grid-template-columns: .95fr 1.05fr;
    }

    .products-hero__copy {
        padding-right: 45px;
    }

    .products-catalog-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .products-quality__grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .products-guide__grid {
        gap: 55px;
    }
}

/* MOBILE */
@media (max-width: 860px) {
    .products-hero__grid {
        width: 100%;
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .products-hero__copy {
        width: calc(100% - 40px);
        margin-inline: auto;
        padding: 54px 0 44px;
    }

    .products-hero__copy h1 {
        font-size: clamp(3.4rem,14vw,5rem);
    }

    .products-hero__copy > p {
        margin-top: 22px;
        font-size: .95rem;
    }

    .products-hero__meta {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .products-hero__meta div:last-child {
        grid-column: 1/-1;
    }

    .products-hero__visual {
        min-height: 430px;
    }

    .products-hero__note {
        right: 20px;
        bottom: 20px;
        width: min(300px,calc(100% - 40px));
    }

    .products-overview {
        padding: 68px 0 72px;
    }

    .products-heading {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }

    .products-heading h2,
    .products-guide__copy h2,
    .products-quality__heading h2 {
        font-size: clamp(2.65rem,10vw,3.7rem);
    }

    .products-catalog-grid {
        grid-template-columns: 1fr 1fr;
    }

    .catalog-card__image {
        height: 250px;
    }

    .products-guide {
        padding: 72px 0;
    }

    .products-guide__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .products-guide__visual {
        min-height: 430px;
    }

    .products-quality {
        padding: 70px 0 76px;
    }
}

/* SMALL MOBILE */
@media (max-width: 560px) {
    .products-hero__copy {
        width: calc(100% - 36px);
        padding: 47px 0 40px;
    }

    .products-hero__copy h1 {
        font-size: clamp(3.2rem,16vw,4.5rem);
    }

    .products-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .products-hero__actions .classic-btn {
        width: 100%;
    }

    .products-hero__meta {
        grid-template-columns: 1fr;
    }

    .products-hero__meta div:last-child {
        grid-column: auto;
    }

    .products-hero__visual {
        min-height: 360px;
    }

    .products-heading h2,
    .products-guide__copy h2,
    .products-quality__heading h2 {
        font-size: 2.85rem;
    }

    .products-catalog-grid {
        grid-template-columns: 1fr;
    }

    .catalog-card__image {
        height: 265px;
    }

    .catalog-card__content {
        padding: 20px;
    }

    .products-guide__points > div {
        grid-template-columns: 38px minmax(0,1fr);
        gap: 10px 12px;
    }

    .products-guide__points small {
        grid-column: 2;
    }

    .products-guide__visual {
        min-height: 360px;
    }

    .products-guide__badge {
        right: 18px;
        bottom: 18px;
        width: 130px;
        height: 130px;
    }

    .products-quality__grid {
        grid-template-columns: 1fr;
    }

    .products-quality__grid article {
        min-height: 205px;
    }

    .products-quality__grid article > span {
        margin-bottom: 30px;
    }
}


/* =========================================================
   OVER ONS PAGINA
   Toevoegen ONDERAAN bestaande main.css
   ========================================================= */

.about-page {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

/* HERO */
.about-hero {
    position: relative;
    background:
        radial-gradient(circle at 20% 25%,rgba(61,165,28,.07),transparent 30%),
        #fff;
}

.about-hero__grid {
    display: grid;
    min-height: 620px;
    grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
    align-items: stretch;
}

.about-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 78px 70px 70px 0;
}

.about-hero__copy h1 {
    max-width: 680px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(4rem,5.8vw,6.5rem);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.07em;
}

.about-hero__copy h1 span {
    color: var(--green);
}

.about-hero__copy > p {
    max-width: 600px;
    margin: 28px 0 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.68;
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 29px;
}

.about-hero__facts {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
    margin-top: 38px;
    padding-top: 23px;
    border-top: 1px solid var(--line);
}

.about-hero__facts div {
    display: grid;
    gap: 4px;
}

.about-hero__facts strong {
    font-size: .8rem;
    font-weight: 800;
}

.about-hero__facts span {
    color: var(--text-soft);
    font-size: .7rem;
    line-height: 1.4;
}

.about-hero__visual {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: var(--green-soft);
}

.about-hero__visual > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-hero__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 52%,rgba(20,35,22,.2));
    content: "";
    pointer-events: none;
}

.about-hero__stamp {
    position: absolute;
    z-index: 2;
    right: 34px;
    bottom: 34px;
    display: flex;
    width: 165px;
    height: 165px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    box-shadow: 0 18px 45px rgba(22,40,25,.16);
    text-align: center;
}

.about-hero__stamp span {
    color: var(--green);
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.about-hero__stamp strong {
    margin-top: 3px;
    font-family: var(--font-heading);
    font-size: 1.22rem;
    line-height: 1;
}

.about-hero__stamp small {
    max-width: 100px;
    margin-top: 7px;
    color: var(--text-soft);
    font-size: .61rem;
    line-height: 1.3;
}

/* STORY */
.about-story {
    padding: 98px 0;
    background: #fff;
}

.about-story__grid {
    display: grid;
    grid-template-columns: minmax(0,1.08fr) minmax(360px,.92fr);
    align-items: center;
    gap: 82px;
}

.about-story__visual {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--green-soft);
}

.about-story__visual > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story__note {
    position: absolute;
    left: 28px;
    bottom: 28px;
    width: min(285px,calc(100% - 56px));
    padding: 21px 23px;
    border-radius: 14px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 15px 35px rgba(22,40,25,.14);
}

.about-story__note span {
    display: block;
    margin-bottom: 7px;
    color: var(--green);
    font-size: .61rem;
    font-weight: 900;
    letter-spacing: .15em;
}

.about-story__note strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.05;
    letter-spacing: -.035em;
}

.about-story__content h2,
.about-values__intro h2,
.about-personal__content h2,
.about-facts__heading h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.8rem,4vw,4.7rem);
    font-weight: 800;
    line-height: .96;
    letter-spacing: -.06em;
}

.about-story__content > p {
    max-width: 580px;
    margin: 23px 0 0;
    color: var(--text-soft);
    font-size: .95rem;
    line-height: 1.7;
}

.about-story__signature {
    display: grid;
    gap: 4px;
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.about-story__signature span {
    color: var(--green-dark);
    font-family: Georgia,serif;
    font-size: 1.45rem;
    font-style: italic;
}

.about-story__signature small {
    color: var(--text-soft);
    font-size: .72rem;
}

/* VALUES */
.about-values {
    padding: 92px 0;
    background:
        radial-gradient(circle at 82% 20%,rgba(61,165,28,.07),transparent 28%),
        var(--bg-soft);
}

.about-values__intro {
    max-width: 850px;
    margin-bottom: 40px;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.about-values__grid article {
    min-height: 270px;
    padding: 29px 25px;
    border: 1px solid #dce4d9;
    border-radius: 18px;
    background: rgba(255,255,255,.94);
}

.about-values__grid article > span {
    display: inline-block;
    margin-bottom: 48px;
    color: var(--green);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.about-values__grid h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: -.035em;
}

.about-values__grid p {
    margin: 10px 0 0;
    color: var(--text-soft);
    font-size: .81rem;
    line-height: 1.58;
}

/* PERSONAL */
.about-personal {
    padding: 98px 0;
    background: #fff;
}

.about-personal__grid {
    display: grid;
    grid-template-columns: minmax(360px,.9fr) minmax(0,1.1fr);
    align-items: center;
    gap: 82px;
}

.about-personal__content > p {
    max-width: 560px;
    margin: 24px 0 28px;
    color: var(--text-soft);
    font-size: .95rem;
    line-height: 1.68;
}

.about-personal__list {
    display: grid;
    gap: 0;
    margin-bottom: 30px;
}

.about-personal__list > div {
    display: grid;
    grid-template-columns: 34px minmax(0,1fr);
    gap: 13px;
    align-items: start;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}

.about-personal__list > div > span {
    display: grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    font-size: .78rem;
    font-weight: 900;
}

.about-personal__list strong,
.about-personal__list small {
    display: block;
}

.about-personal__list strong {
    font-size: .87rem;
}

.about-personal__list small {
    margin-top: 3px;
    color: var(--text-soft);
    font-size: .72rem;
}

.about-personal__visual {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--green-soft);
}

.about-personal__visual > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-personal__card {
    position: absolute;
    right: 28px;
    bottom: 28px;
    width: min(280px,calc(100% - 56px));
    padding: 22px 23px;
    border-radius: 14px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 15px 35px rgba(22,40,25,.14);
}

.about-personal__card span {
    display: block;
    margin-bottom: 8px;
    color: var(--green);
    font-size: .61rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.about-personal__card strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.05;
    letter-spacing: -.035em;
}

/* FACTS */
.about-facts {
    padding: 90px 0 98px;
    background: var(--green-deep);
    color: #fff;
}

.about-facts__heading {
    max-width: 780px;
    margin-bottom: 40px;
}

.about-facts__heading h2 {
    color: #fff;
}

.about-facts__grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.about-fact {
    min-height: 220px;
    padding: 27px 24px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: rgba(255,255,255,.055);
}

.about-fact strong {
    display: block;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -.04em;
}

.about-fact span {
    display: block;
    margin-top: 48px;
    color: #fff;
    font-size: .92rem;
    font-weight: 700;
}

.about-fact small {
    display: block;
    margin-top: 6px;
    color: #aebdaf;
    font-size: .71rem;
    line-height: 1.45;
}

/* TABLET */
@media (max-width: 1180px) {
    .about-hero__grid {
        grid-template-columns: .95fr 1.05fr;
    }

    .about-hero__copy {
        padding-right: 45px;
    }

    .about-values__grid,
    .about-facts__grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .about-story__grid,
    .about-personal__grid {
        gap: 55px;
    }
}

/* MOBILE */
@media (max-width: 860px) {
    .about-hero__grid {
        width: 100%;
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .about-hero__copy {
        width: calc(100% - 40px);
        margin-inline: auto;
        padding: 54px 0 44px;
    }

    .about-hero__copy h1 {
        font-size: clamp(3.4rem,14vw,5rem);
    }

    .about-hero__copy > p {
        margin-top: 22px;
        font-size: .95rem;
    }

    .about-hero__facts {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .about-hero__facts div:last-child {
        grid-column: 1/-1;
    }

    .about-hero__visual {
        min-height: 430px;
    }

    .about-hero__stamp {
        right: 20px;
        bottom: 20px;
        width: 145px;
        height: 145px;
    }

    .about-story,
    .about-personal {
        padding: 72px 0;
    }

    .about-story__grid,
    .about-personal__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .about-story__visual,
    .about-personal__visual {
        min-height: 430px;
    }

    .about-story__content h2,
    .about-values__intro h2,
    .about-personal__content h2,
    .about-facts__heading h2 {
        font-size: clamp(2.65rem,10vw,3.7rem);
    }

    .about-values {
        padding: 70px 0;
    }

    .about-values__grid,
    .about-facts__grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-facts {
        padding: 72px 0;
    }
}

/* SMALL MOBILE */
@media (max-width: 560px) {
    .about-hero__copy {
        width: calc(100% - 36px);
        padding: 47px 0 40px;
    }

    .about-hero__copy h1 {
        font-size: clamp(3.2rem,16vw,4.5rem);
    }

    .about-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .about-hero__actions .classic-btn {
        width: 100%;
    }

    .about-hero__facts {
        grid-template-columns: 1fr;
    }

    .about-hero__facts div:last-child {
        grid-column: auto;
    }

    .about-hero__visual {
        min-height: 360px;
    }

    .about-story__content h2,
    .about-values__intro h2,
    .about-personal__content h2,
    .about-facts__heading h2 {
        font-size: 2.85rem;
    }

    .about-story__visual,
    .about-personal__visual {
        min-height: 360px;
    }

    .about-values__grid,
    .about-facts__grid {
        grid-template-columns: 1fr;
    }

    .about-values__grid article {
        min-height: 225px;
    }

    .about-values__grid article > span {
        margin-bottom: 34px;
    }

    .about-fact {
        min-height: 190px;
    }

    .about-fact span {
        margin-top: 34px;
    }
}


/* =========================================================
   PORTFOLIO PAGINA
   Toevoegen ONDERAAN bestaande main.css
   ========================================================= */

.portfolio-page{width:100%;overflow:hidden;background:#fff}
.portfolio-hero{position:relative;background:radial-gradient(circle at 20% 25%,rgba(61,165,28,.07),transparent 30%),#fff}
.portfolio-hero__grid{display:grid;min-height:620px;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);align-items:stretch}
.portfolio-hero__copy{display:flex;flex-direction:column;justify-content:center;padding:78px 70px 70px 0}
.portfolio-hero__copy h1{max-width:700px;margin:0;font-family:var(--font-heading);font-size:clamp(4rem,5.8vw,6.5rem);font-weight:800;line-height:.9;letter-spacing:-.07em}
.portfolio-hero__copy h1 span{color:var(--green)}
.portfolio-hero__copy>p{max-width:600px;margin:28px 0 0;color:var(--text-soft);font-size:1.02rem;line-height:1.68}
.portfolio-hero__actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:29px}
.portfolio-hero__meta{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:38px;padding-top:23px;border-top:1px solid var(--line)}
.portfolio-hero__meta div{display:grid;gap:4px}
.portfolio-hero__meta strong{font-size:.8rem;font-weight:800}
.portfolio-hero__meta span{color:var(--text-soft);font-size:.7rem;line-height:1.4}
.portfolio-hero__visual{position:relative;min-height:620px;overflow:hidden;background:var(--green-soft)}
.portfolio-hero__visual>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.portfolio-hero__visual::after{position:absolute;inset:0;background:linear-gradient(180deg,transparent 52%,rgba(20,35,22,.21));content:"";pointer-events:none}
.portfolio-hero__card{position:absolute;z-index:2;right:34px;bottom:34px;width:min(320px,calc(100% - 68px));padding:24px 26px;border-radius:16px;background:rgba(255,255,255,.95);box-shadow:0 18px 45px rgba(22,40,25,.16)}
.portfolio-hero__card span{display:block;margin-bottom:8px;color:var(--green);font-size:.61rem;font-weight:900;letter-spacing:.15em}
.portfolio-hero__card strong{display:block;font-family:var(--font-heading);font-size:1.5rem;line-height:1.04;letter-spacing:-.04em}
.portfolio-hero__card small{display:block;margin-top:10px;color:var(--text-soft);font-size:.73rem}

.portfolio-projects{padding:94px 0 100px;background:#fff}
.portfolio-heading{display:grid;grid-template-columns:1fr minmax(280px,440px);align-items:end;gap:72px;margin-bottom:42px}
.portfolio-heading h2,.portfolio-approach__content h2,.portfolio-types__intro h2{margin:0;font-family:var(--font-heading);font-size:clamp(2.8rem,4vw,4.7rem);font-weight:800;line-height:.96;letter-spacing:-.06em}
.portfolio-heading>p{margin:0 0 5px;color:var(--text-soft);font-size:.95rem;line-height:1.65}
.portfolio-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.portfolio-card{min-width:0;overflow:hidden;border:1px solid var(--line);border-radius:18px;background:#fff;transition:transform .22s ease,box-shadow .22s ease,border-color .22s ease}
.portfolio-card:hover{border-color:#cbd8c5;transform:translateY(-4px);box-shadow:var(--shadow)}
.portfolio-card--wide{grid-column:span 2}
.portfolio-card__image{display:block;position:relative;height:360px;overflow:hidden;background:var(--bg-soft)}
.portfolio-card--wide .portfolio-card__image{height:500px}
.portfolio-card__image img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease}
.portfolio-card:hover .portfolio-card__image img{transform:scale(1.035)}
.portfolio-card__content{display:grid;grid-template-columns:minmax(0,1fr) 44px;gap:18px;align-items:start;padding:24px}
.portfolio-card__category{display:block;margin-bottom:10px;color:var(--green);font-size:.62rem;font-weight:900;letter-spacing:.13em}
.portfolio-card h3{margin:0;font-family:var(--font-heading);font-size:1.35rem;font-weight:800;line-height:1.08;letter-spacing:-.035em}
.portfolio-card p{max-width:650px;margin:9px 0 0;color:var(--text-soft);font-size:.81rem;line-height:1.55}
.portfolio-card__arrow{display:grid;width:40px;height:40px;place-items:center;justify-self:end;border:1px solid var(--line);border-radius:50%;background:#fff;font-size:1rem;transition:background .2s ease,border-color .2s ease,color .2s ease}
.portfolio-card:hover .portfolio-card__arrow{border-color:var(--green);background:var(--green);color:#fff}

.portfolio-approach{padding:96px 0;background:radial-gradient(circle at 82% 20%,rgba(61,165,28,.07),transparent 28%),var(--bg-soft)}
.portfolio-approach__grid{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(360px,.92fr);align-items:center;gap:82px}
.portfolio-approach__visual{position:relative;min-height:570px;overflow:hidden;border-radius:20px;background:var(--green-soft)}
.portfolio-approach__visual>img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.portfolio-approach__badge{position:absolute;right:28px;bottom:28px;display:flex;width:155px;height:155px;flex-direction:column;align-items:center;justify-content:center;border-radius:50%;background:rgba(255,255,255,.95);box-shadow:0 18px 40px rgba(22,40,25,.15);text-align:center}
.portfolio-approach__badge span{color:var(--green);font-size:.58rem;font-weight:900;letter-spacing:.12em}
.portfolio-approach__badge strong{max-width:115px;margin-top:4px;font-family:var(--font-heading);font-size:1rem;line-height:1.02}
.portfolio-approach__badge small{max-width:100px;margin-top:7px;color:var(--text-soft);font-size:.59rem;line-height:1.3}
.portfolio-approach__content>p{max-width:560px;margin:24px 0 28px;color:var(--text-soft);font-size:.95rem;line-height:1.68}
.portfolio-approach__list{display:grid;margin-bottom:30px}
.portfolio-approach__list>div{display:grid;grid-template-columns:44px minmax(0,1fr);gap:13px;align-items:start;padding:14px 0;border-bottom:1px solid #d8e0d5}
.portfolio-approach__list>div>span{color:var(--green);font-size:.65rem;font-weight:900;letter-spacing:.12em}
.portfolio-approach__list strong,.portfolio-approach__list small{display:block}
.portfolio-approach__list strong{font-size:.87rem}
.portfolio-approach__list small{margin-top:3px;color:var(--text-soft);font-size:.72rem}

.portfolio-types{padding:92px 0 98px;background:#fff}
.portfolio-types__intro{max-width:820px;margin-bottom:38px}
.portfolio-types__grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.portfolio-types__grid article{min-height:245px;padding:28px 24px;border:1px solid var(--line);border-radius:18px;background:#fff}
.portfolio-types__grid article>span{display:block;margin-bottom:46px;color:var(--green);font-size:.66rem;font-weight:900;letter-spacing:.12em}
.portfolio-types__grid h3{margin:0;font-family:var(--font-heading);font-size:1.2rem;font-weight:800;letter-spacing:-.03em}
.portfolio-types__grid p{margin:9px 0 0;color:var(--text-soft);font-size:.79rem;line-height:1.58}

@media(max-width:1180px){
.portfolio-hero__grid{grid-template-columns:.95fr 1.05fr}
.portfolio-hero__copy{padding-right:45px}
.portfolio-approach__grid{gap:55px}
.portfolio-types__grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:860px){
.portfolio-hero__grid{width:100%;min-height:0;grid-template-columns:1fr}
.portfolio-hero__copy{width:calc(100% - 40px);margin-inline:auto;padding:54px 0 44px}
.portfolio-hero__copy h1{font-size:clamp(3.4rem,14vw,5rem)}
.portfolio-hero__copy>p{margin-top:22px;font-size:.95rem}
.portfolio-hero__meta{grid-template-columns:1fr 1fr;gap:16px;margin-top:30px}
.portfolio-hero__meta div:last-child{grid-column:1/-1}
.portfolio-hero__visual{min-height:430px}
.portfolio-hero__card{right:20px;bottom:20px;width:min(300px,calc(100% - 40px))}
.portfolio-projects{padding:68px 0 72px}
.portfolio-heading{grid-template-columns:1fr;gap:18px;margin-bottom:30px}
.portfolio-heading h2,.portfolio-approach__content h2,.portfolio-types__intro h2{font-size:clamp(2.65rem,10vw,3.7rem)}
.portfolio-grid{grid-template-columns:1fr}
.portfolio-card--wide{grid-column:auto}
.portfolio-card__image,.portfolio-card--wide .portfolio-card__image{height:330px}
.portfolio-approach{padding:72px 0}
.portfolio-approach__grid{grid-template-columns:1fr;gap:42px}
.portfolio-approach__visual{min-height:430px}
.portfolio-types{padding:70px 0 76px}
}

@media(max-width:560px){
.portfolio-hero__copy{width:calc(100% - 36px);padding:47px 0 40px}
.portfolio-hero__copy h1{font-size:clamp(3.2rem,16vw,4.5rem)}
.portfolio-hero__actions{display:grid;grid-template-columns:1fr}
.portfolio-hero__actions .classic-btn{width:100%}
.portfolio-hero__meta{grid-template-columns:1fr}
.portfolio-hero__meta div:last-child{grid-column:auto}
.portfolio-hero__visual{min-height:360px}
.portfolio-heading h2,.portfolio-approach__content h2,.portfolio-types__intro h2{font-size:2.85rem}
.portfolio-card__image,.portfolio-card--wide .portfolio-card__image{height:270px}
.portfolio-card__content{padding:20px}
.portfolio-approach__visual{min-height:360px}
.portfolio-approach__badge{right:18px;bottom:18px;width:130px;height:130px}
.portfolio-types__grid{grid-template-columns:1fr}
.portfolio-types__grid article{min-height:210px}
.portfolio-types__grid article>span{margin-bottom:32px}
}

/* ECHTE PORTFOLIO PIJL ICONEN */
.portfolio-card__arrow {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    justify-self: end;
    border: 1px solid #dce4d9;
    border-radius: 50%;
    background: #f7faf5;
    color: var(--green);
}

.portfolio-card__arrow svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.portfolio-card:hover .portfolio-card__arrow {
    border-color: var(--green);
    background: var(--green);
    color: #fff;
}


/* =========================================================
   REVIEWS PAGINA
   Toevoegen ONDERAAN bestaande main.css
   ========================================================= */

.reviews-page {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

/* HERO */
.reviews-hero {
    position: relative;
    background:
        radial-gradient(circle at 18% 24%,rgba(61,165,28,.07),transparent 30%),
        #fff;
}

.reviews-hero__grid {
    display: grid;
    min-height: 620px;
    grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr);
    align-items: stretch;
}

.reviews-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 78px 70px 70px 0;
}

.reviews-hero__copy h1 {
    max-width: 700px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(4rem,5.8vw,6.5rem);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.07em;
}

.reviews-hero__copy h1 span {
    color: var(--green);
}

.reviews-hero__copy > p {
    max-width: 600px;
    margin: 28px 0 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.68;
}

.reviews-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 29px;
}

.reviews-hero__meta {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
    margin-top: 38px;
    padding-top: 23px;
    border-top: 1px solid var(--line);
}

.reviews-hero__meta div {
    display: grid;
    gap: 4px;
}

.reviews-hero__meta strong {
    font-size: .8rem;
    font-weight: 800;
}

.reviews-hero__meta span {
    color: var(--text-soft);
    font-size: .7rem;
    line-height: 1.4;
}

.reviews-hero__visual {
    position: relative;
    display: flex;
    min-height: 620px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 70px;
    background:
        radial-gradient(circle at 65% 30%,rgba(223,243,106,.3),transparent 30%),
        linear-gradient(145deg,#eff6eb,#e2eedc);
}

.reviews-hero__visual::before,
.reviews-hero__visual::after {
    position: absolute;
    border: 1px solid rgba(61,165,28,.16);
    border-radius: 50%;
    content: "";
}

.reviews-hero__visual::before {
    width: 380px;
    height: 380px;
    top: -110px;
    right: -90px;
}

.reviews-hero__visual::after {
    width: 230px;
    height: 230px;
    bottom: -70px;
    left: -50px;
}

.reviews-hero__score {
    position: relative;
    z-index: 2;
    width: min(430px,100%);
    padding: 38px;
    border: 1px solid rgba(255,255,255,.75);
    border-radius: 24px;
    background: rgba(255,255,255,.94);
    box-shadow: 0 22px 60px rgba(22,40,25,.12);
}

.reviews-hero__label {
    display: block;
    color: var(--green);
    font-size: .63rem;
    font-weight: 900;
    letter-spacing: .16em;
}

.reviews-hero__stars {
    margin-top: 22px;
    color: var(--green);
    font-size: 1.3rem;
    letter-spacing: .12em;
}

.reviews-hero__score strong {
    display: block;
    margin-top: 14px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.045em;
}

.reviews-hero__score p {
    margin: 14px 0 0;
    color: var(--text-soft);
    font-size: .85rem;
    line-height: 1.55;
}

.reviews-hero__quote {
    position: absolute;
    z-index: 3;
    right: 32px;
    bottom: 28px;
    max-width: 220px;
    padding: 19px 22px;
    border-radius: 14px;
    background: var(--green-deep);
    color: #fff;
    transform: rotate(3deg);
}

.reviews-hero__quote > span {
    display: block;
    color: var(--lime);
    font-family: Georgia,serif;
    font-size: 2rem;
    line-height: .7;
}

.reviews-hero__quote strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1.15;
}

/* OVERVIEW */
.reviews-overview {
    padding: 94px 0 100px;
    background: #fff;
}

.reviews-heading {
    display: grid;
    grid-template-columns: 1fr minmax(280px,440px);
    align-items: end;
    gap: 72px;
    margin-bottom: 42px;
}

.reviews-heading h2,
.reviews-reasons__intro h2,
.reviews-share__content h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.8rem,4vw,4.7rem);
    font-weight: 800;
    line-height: .96;
    letter-spacing: -.06em;
}

.reviews-heading > p {
    margin: 0 0 5px;
    color: var(--text-soft);
    font-size: .95rem;
    line-height: 1.65;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 16px;
}

.review-card {
    display: flex;
    min-height: 300px;
    min-width: 0;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(23,39,27,.04);
}

.review-card--placeholder {
    background:
        linear-gradient(180deg,rgba(247,250,245,.95),#fff);
}

.review-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.review-card__stars {
    color: var(--green);
    font-size: .92rem;
    letter-spacing: .08em;
}

.review-card__tag {
    padding: 6px 8px;
    border-radius: 999px;
    background: var(--green-soft);
    color: var(--green-dark);
    font-size: .55rem;
    font-weight: 900;
    letter-spacing: .11em;
}

.review-card blockquote {
    margin: 31px 0 34px;
    color: var(--text);
    font-family: var(--font-heading);
    font-size: 1.03rem;
    font-weight: 650;
    line-height: 1.52;
    letter-spacing: -.02em;
}

.review-card__person {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.review-card__avatar {
    display: grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green-dark);
    font-size: .78rem;
    font-weight: 900;
}

.review-card__person strong,
.review-card__person span {
    display: block;
}

.review-card__person strong {
    font-size: .78rem;
}

.review-card__person span {
    margin-top: 2px;
    color: var(--text-soft);
    font-size: .68rem;
}

/* REASONS */
.reviews-reasons {
    padding: 92px 0 98px;
    background:
        radial-gradient(circle at 82% 22%,rgba(61,165,28,.07),transparent 28%),
        var(--bg-soft);
}

.reviews-reasons__intro {
    max-width: 820px;
    margin-bottom: 40px;
}

.reviews-reasons__grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.reviews-reasons__grid article {
    min-height: 255px;
    padding: 28px 24px;
    border: 1px solid #dce4d9;
    border-radius: 18px;
    background: rgba(255,255,255,.94);
}

.reviews-reasons__grid article > span {
    display: block;
    margin-bottom: 46px;
    color: var(--green);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.reviews-reasons__grid h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -.03em;
}

.reviews-reasons__grid p {
    margin: 9px 0 0;
    color: var(--text-soft);
    font-size: .79rem;
    line-height: 1.58;
}

/* SHARE REVIEW */
.reviews-share {
    padding: 98px 0;
    background: #fff;
}

.reviews-share__grid {
    display: grid;
    grid-template-columns: minmax(360px,.9fr) minmax(0,1.1fr);
    align-items: center;
    gap: 82px;
}

.reviews-share__content > p {
    max-width: 560px;
    margin: 24px 0 29px;
    color: var(--text-soft);
    font-size: .95rem;
    line-height: 1.68;
}

.reviews-share__visual {
    position: relative;
    display: grid;
    min-height: 470px;
    place-items: center;
    overflow: hidden;
    border-radius: 22px;
    background:
        radial-gradient(circle at 50% 45%,rgba(223,243,106,.38),transparent 24%),
        linear-gradient(145deg,#eff6eb,#dfeeda);
}

.reviews-share__visual::before,
.reviews-share__visual::after {
    position: absolute;
    border: 1px solid rgba(61,165,28,.17);
    border-radius: 50%;
    content: "";
}

.reviews-share__visual::before {
    width: 340px;
    height: 340px;
    top: -120px;
    right: -80px;
}

.reviews-share__visual::after {
    width: 210px;
    height: 210px;
    bottom: -65px;
    left: -45px;
}

.reviews-share__card {
    position: relative;
    z-index: 2;
    width: min(330px,calc(100% - 50px));
    padding: 34px;
    border-radius: 20px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 20px 50px rgba(22,40,25,.12);
    text-align: center;
}

.reviews-share__stars {
    color: var(--green);
    font-size: 1.05rem;
    letter-spacing: .12em;
}

.reviews-share__card strong {
    display: block;
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.045em;
}

.reviews-share__card span {
    display: block;
    margin-top: 12px;
    color: var(--text-soft);
    font-size: .75rem;
}

/* TABLET */
@media (max-width:1180px) {
    .reviews-hero__grid {
        grid-template-columns: .95fr 1.05fr;
    }

    .reviews-hero__copy {
        padding-right: 45px;
    }

    .reviews-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .reviews-reasons__grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .reviews-share__grid {
        gap: 55px;
    }
}

/* MOBILE */
@media (max-width:860px) {
    .reviews-hero__grid {
        width: 100%;
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .reviews-hero__copy {
        width: calc(100% - 40px);
        margin-inline: auto;
        padding: 54px 0 44px;
    }

    .reviews-hero__copy h1 {
        font-size: clamp(3.4rem,14vw,5rem);
    }

    .reviews-hero__copy > p {
        margin-top: 22px;
        font-size: .95rem;
    }

    .reviews-hero__meta {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .reviews-hero__meta div:last-child {
        grid-column: 1/-1;
    }

    .reviews-hero__visual {
        min-height: 450px;
        padding: 40px 20px 90px;
    }

    .reviews-hero__score {
        padding: 30px;
    }

    .reviews-hero__quote {
        right: 20px;
        bottom: 20px;
    }

    .reviews-overview {
        padding: 68px 0 72px;
    }

    .reviews-heading {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }

    .reviews-heading h2,
    .reviews-reasons__intro h2,
    .reviews-share__content h2 {
        font-size: clamp(2.65rem,10vw,3.7rem);
    }

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

    .reviews-reasons {
        padding: 70px 0 76px;
    }

    .reviews-share {
        padding: 72px 0;
    }

    .reviews-share__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .reviews-share__visual {
        min-height: 390px;
    }
}

/* SMALL MOBILE */
@media (max-width:560px) {
    .reviews-hero__copy {
        width: calc(100% - 36px);
        padding: 47px 0 40px;
    }

    .reviews-hero__copy h1 {
        font-size: clamp(3.2rem,16vw,4.5rem);
    }

    .reviews-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .reviews-hero__actions .classic-btn {
        width: 100%;
    }

    .reviews-hero__meta {
        grid-template-columns: 1fr;
    }

    .reviews-hero__meta div:last-child {
        grid-column: auto;
    }

    .reviews-hero__visual {
        min-height: 420px;
    }

    .reviews-hero__score {
        padding: 26px 22px;
    }

    .reviews-heading h2,
    .reviews-reasons__intro h2,
    .reviews-share__content h2 {
        font-size: 2.85rem;
    }

    .review-card {
        min-height: 285px;
        padding: 22px;
    }

    .reviews-reasons__grid {
        grid-template-columns: 1fr;
    }

    .reviews-reasons__grid article {
        min-height: 215px;
    }

    .reviews-reasons__grid article > span {
        margin-bottom: 33px;
    }

    .reviews-share__visual {
        min-height: 340px;
    }
}


/* =========================================================
   CONTACT PAGINA
   Toevoegen ONDERAAN bestaande main.css
   ========================================================= */

.contact-page {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

/* HERO */
.contact-hero {
    position: relative;
    background:
        radial-gradient(circle at 18% 24%,rgba(61,165,28,.07),transparent 30%),
        #fff;
}

.contact-hero__grid {
    display: grid;
    min-height: 620px;
    grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr);
    align-items: stretch;
}

.contact-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 78px 70px 70px 0;
}

.contact-hero__copy h1 {
    max-width: 700px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(4rem,5.8vw,6.5rem);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.07em;
}

.contact-hero__copy h1 span {
    color: var(--green);
}

.contact-hero__copy > p {
    max-width: 610px;
    margin: 28px 0 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.68;
}

.contact-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 29px;
}

.contact-hero__meta {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
    margin-top: 38px;
    padding-top: 23px;
    border-top: 1px solid var(--line);
}

.contact-hero__meta div {
    display: grid;
    gap: 4px;
}

.contact-hero__meta strong {
    font-size: .8rem;
    font-weight: 800;
}

.contact-hero__meta span {
    color: var(--text-soft);
    font-size: .7rem;
    line-height: 1.4;
}

.contact-hero__visual {
    position: relative;
    display: grid;
    min-height: 620px;
    place-items: center;
    overflow: hidden;
    padding: 70px;
    background:
        radial-gradient(circle at 68% 26%,rgba(223,243,106,.30),transparent 28%),
        linear-gradient(145deg,#eff6eb,#dfeeda);
}

.contact-hero__visual::before,
.contact-hero__visual::after {
    position: absolute;
    border: 1px solid rgba(61,165,28,.16);
    border-radius: 50%;
    content: "";
}

.contact-hero__visual::before {
    width: 390px;
    height: 390px;
    top: -120px;
    right: -90px;
}

.contact-hero__visual::after {
    width: 240px;
    height: 240px;
    bottom: -80px;
    left: -50px;
}

.contact-hero__panel {
    position: relative;
    z-index: 2;
    width: min(450px,100%);
    padding: 38px;
    border: 1px solid rgba(255,255,255,.78);
    border-radius: 24px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 22px 60px rgba(22,40,25,.12);
}

.contact-hero__panel-label {
    display: block;
    color: var(--green);
    font-size: .63rem;
    font-weight: 900;
    letter-spacing: .16em;
}

.contact-hero__panel h2 {
    margin: 17px 0 28px;
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -.05em;
}

.contact-hero__mail {
    display: grid;
    grid-template-columns: minmax(0,1fr) 38px;
    gap: 3px 15px;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.contact-hero__mail > span,
.contact-hero__location > span {
    display: block;
    color: var(--text-soft);
    font-size: .59rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.contact-hero__mail strong {
    grid-column: 1;
    font-size: .86rem;
    overflow-wrap: anywhere;
}

.contact-hero__mail i {
    grid-row: 1 / 3;
    grid-column: 2;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid #d9e6d5;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
    font-style: normal;
}

.contact-hero__location {
    display: grid;
    gap: 4px;
    padding-top: 18px;
}

.contact-hero__location strong {
    font-size: .86rem;
}

.contact-hero__note {
    position: absolute;
    z-index: 3;
    right: 30px;
    bottom: 27px;
    max-width: 220px;
    padding: 19px 22px;
    border-radius: 14px;
    background: var(--green-deep);
    color: #fff;
    transform: rotate(3deg);
}

.contact-hero__note > span {
    display: block;
    color: var(--lime);
    font-family: Georgia,serif;
    font-size: 2rem;
    line-height: .7;
}

.contact-hero__note strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1.15;
}

/* MAIN */
.contact-main {
    padding: 98px 0;
    background: #fff;
}

.contact-main__grid {
    display: grid;
    grid-template-columns: minmax(330px,.78fr) minmax(0,1.22fr);
    align-items: start;
    gap: 80px;
}

.contact-main__intro h2,
.contact-steps__intro h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.8rem,4vw,4.7rem);
    font-weight: 800;
    line-height: .96;
    letter-spacing: -.06em;
}

.contact-main__intro > p {
    max-width: 530px;
    margin: 24px 0 30px;
    color: var(--text-soft);
    font-size: .95rem;
    line-height: 1.68;
}

.contact-main__cards {
    display: grid;
    gap: 11px;
}

.contact-info-card {
    display: grid;
    grid-template-columns: 50px minmax(0,1fr) 38px;
    gap: 14px;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
}

.contact-info-card__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
}

.contact-info-card__icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-info-card > div:nth-child(2) {
    min-width: 0;
}

.contact-info-card > div:nth-child(2) span,
.contact-info-card > div:nth-child(2) strong,
.contact-info-card > div:nth-child(2) small {
    display: block;
}

.contact-info-card > div:nth-child(2) span {
    color: var(--green);
    font-size: .56rem;
    font-weight: 900;
    letter-spacing: .13em;
}

.contact-info-card > div:nth-child(2) strong {
    margin-top: 3px;
    font-size: .81rem;
    overflow-wrap: anywhere;
}

.contact-info-card > div:nth-child(2) small {
    margin-top: 3px;
    color: var(--text-soft);
    font-size: .66rem;
}

.contact-info-card__arrow {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    justify-self: end;
    border: 1px solid #dce8d8;
    border-radius: 50%;
    color: var(--green);
}

.contact-info-card__arrow svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* FORM */
.contact-form-wrap {
    min-width: 0;
}

.contact-form {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0,rgba(61,165,28,.06),transparent 24%),
        #fff;
    box-shadow: 0 16px 45px rgba(22,40,25,.055);
}

.contact-form__heading {
    margin-bottom: 28px;
}

.contact-form__heading > span {
    color: var(--green);
    font-size: .61rem;
    font-weight: 900;
    letter-spacing: .15em;
}

.contact-form__heading h3 {
    margin: 7px 0 0;
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -.04em;
}

.contact-form__heading p {
    margin: 5px 0 0;
    color: var(--text-soft);
    font-size: .72rem;
}

.contact-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

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

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

.contact-field > span {
    font-size: .72rem;
    font-weight: 800;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #d8ddd6;
    border-radius: 10px;
    outline: 0;
    background: #fff;
    color: var(--text);
    transition: border-color .2s ease,box-shadow .2s ease;
}

.contact-field input,
.contact-field select {
    height: 52px;
    padding: 0 14px;
}

.contact-field textarea {
    min-height: 170px;
    padding: 14px;
    resize: vertical;
    line-height: 1.55;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #a0a59e;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(61,165,28,.09);
}

.contact-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 24px;
}

.contact-form__footer p {
    max-width: 390px;
    margin: 0;
    color: var(--text-soft);
    font-size: .66rem;
    line-height: 1.5;
}

.contact-form__submit {
    flex: 0 0 auto;
    border: 0;
}

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.contact-alert {
    display: grid;
    gap: 4px;
    margin-bottom: 14px;
    padding: 15px 18px;
    border-radius: 12px;
    font-size: .78rem;
}

.contact-alert strong,
.contact-alert span {
    display: block;
}

.contact-alert--success {
    border: 1px solid #c9e4be;
    background: #eff8eb;
    color: var(--green-dark);
}

.contact-alert--error {
    border: 1px solid #e9c6c3;
    background: #fff4f3;
    color: #743b36;
}

/* STEPS */
.contact-steps {
    padding: 92px 0 98px;
    background:
        radial-gradient(circle at 82% 20%,rgba(61,165,28,.07),transparent 28%),
        var(--bg-soft);
}

.contact-steps__intro {
    max-width: 820px;
    margin-bottom: 40px;
}

.contact-steps__grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.contact-steps__grid article {
    min-height: 255px;
    padding: 28px 24px;
    border: 1px solid #dce4d9;
    border-radius: 18px;
    background: rgba(255,255,255,.94);
}

.contact-steps__grid article > span {
    display: block;
    margin-bottom: 46px;
    color: var(--green);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.contact-steps__grid h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -.03em;
}

.contact-steps__grid p {
    margin: 9px 0 0;
    color: var(--text-soft);
    font-size: .79rem;
    line-height: 1.58;
}

/* TABLET */
@media (max-width:1180px) {
    .contact-hero__grid {
        grid-template-columns: .95fr 1.05fr;
    }

    .contact-hero__copy {
        padding-right: 45px;
    }

    .contact-main__grid {
        gap: 55px;
    }

    .contact-steps__grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

/* MOBILE */
@media (max-width:860px) {
    .contact-hero__grid {
        width: 100%;
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .contact-hero__copy {
        width: calc(100% - 40px);
        margin-inline: auto;
        padding: 54px 0 44px;
    }

    .contact-hero__copy h1 {
        font-size: clamp(3.4rem,14vw,5rem);
    }

    .contact-hero__copy > p {
        margin-top: 22px;
        font-size: .95rem;
    }

    .contact-hero__meta {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .contact-hero__meta div:last-child {
        grid-column: 1/-1;
    }

    .contact-hero__visual {
        min-height: 470px;
        padding: 40px 20px 92px;
    }

    .contact-hero__panel {
        padding: 30px;
    }

    .contact-hero__note {
        right: 20px;
        bottom: 20px;
    }

    .contact-main {
        padding: 72px 0;
    }

    .contact-main__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .contact-main__intro h2,
    .contact-steps__intro h2 {
        font-size: clamp(2.65rem,10vw,3.7rem);
    }

    .contact-form {
        padding: 28px;
    }

    .contact-steps {
        padding: 70px 0 76px;
    }
}

/* SMALL MOBILE */
@media (max-width:560px) {
    .contact-hero__copy {
        width: calc(100% - 36px);
        padding: 47px 0 40px;
    }

    .contact-hero__copy h1 {
        font-size: clamp(3.2rem,16vw,4.5rem);
    }

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

    .contact-hero__actions .classic-btn {
        width: 100%;
    }

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

    .contact-hero__meta div:last-child {
        grid-column: auto;
    }

    .contact-hero__visual {
        min-height: 430px;
    }

    .contact-hero__panel {
        padding: 25px 21px;
    }

    .contact-hero__panel h2 {
        font-size: 1.85rem;
    }

    .contact-main__intro h2,
    .contact-steps__intro h2 {
        font-size: 2.85rem;
    }

    .contact-info-card {
        grid-template-columns: 46px minmax(0,1fr) 34px;
        gap: 11px;
        padding: 13px;
    }

    .contact-info-card__icon {
        width: 44px;
        height: 44px;
    }

    .contact-form {
        padding: 23px 18px;
        border-radius: 18px;
    }

    .contact-form__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-field--full {
        grid-column: auto;
    }

    .contact-form__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .contact-form__submit {
        width: 100%;
    }

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

    .contact-steps__grid article {
        min-height: 215px;
    }

    .contact-steps__grid article > span {
        margin-bottom: 33px;
    }
}


/* =========================================================
   OFFERTE PAGINA
   Toevoegen ONDERAAN bestaande main.css
   ========================================================= */

.quote-page {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

/* HERO */
.quote-hero {
    position: relative;
    background:
        radial-gradient(circle at 18% 24%,rgba(61,165,28,.07),transparent 30%),
        #fff;
}

.quote-hero__grid {
    display: grid;
    min-height: 620px;
    grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr);
    align-items: stretch;
}

.quote-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 78px 70px 70px 0;
}

.quote-hero__copy h1 {
    max-width: 720px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(4rem,5.8vw,6.5rem);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.07em;
}

.quote-hero__copy h1 span {
    color: var(--green);
}

.quote-hero__copy > p {
    max-width: 610px;
    margin: 28px 0 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.68;
}

.quote-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 29px;
}

.quote-hero__meta {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
    margin-top: 38px;
    padding-top: 23px;
    border-top: 1px solid var(--line);
}

.quote-hero__meta div {
    display: grid;
    gap: 4px;
}

.quote-hero__meta strong {
    font-size: .8rem;
    font-weight: 800;
}

.quote-hero__meta span {
    color: var(--text-soft);
    font-size: .7rem;
    line-height: 1.4;
}

.quote-hero__visual {
    position: relative;
    display: grid;
    min-height: 620px;
    place-items: center;
    overflow: hidden;
    padding: 70px;
    background:
        radial-gradient(circle at 68% 25%,rgba(223,243,106,.31),transparent 28%),
        linear-gradient(145deg,#eff6eb,#dfeeda);
}

.quote-hero__visual::before,
.quote-hero__visual::after {
    position: absolute;
    border: 1px solid rgba(61,165,28,.16);
    border-radius: 50%;
    content: "";
}

.quote-hero__visual::before {
    width: 390px;
    height: 390px;
    top: -120px;
    right: -90px;
}

.quote-hero__visual::after {
    width: 240px;
    height: 240px;
    bottom: -80px;
    left: -50px;
}

.quote-hero__panel {
    position: relative;
    z-index: 2;
    width: min(450px,100%);
    padding: 38px;
    border: 1px solid rgba(255,255,255,.78);
    border-radius: 24px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 22px 60px rgba(22,40,25,.12);
}

.quote-hero__label {
    display: block;
    color: var(--green);
    font-size: .63rem;
    font-weight: 900;
    letter-spacing: .16em;
}

.quote-hero__panel > strong {
    display: block;
    margin-top: 16px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.03;
    letter-spacing: -.045em;
}

.quote-hero__steps {
    display: grid;
    gap: 0;
    margin-top: 29px;
}

.quote-hero__steps > div {
    display: grid;
    grid-template-columns: 42px minmax(0,1fr);
    gap: 12px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid var(--line);
}

.quote-hero__steps span {
    color: var(--green);
    font-size: .63rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.quote-hero__steps p {
    margin: 0;
    color: var(--text);
    font-size: .8rem;
    font-weight: 700;
}

.quote-hero__note {
    position: absolute;
    z-index: 3;
    right: 30px;
    bottom: 27px;
    max-width: 230px;
    padding: 19px 22px;
    border-radius: 14px;
    background: var(--green-deep);
    color: #fff;
    transform: rotate(3deg);
}

.quote-hero__note > span {
    display: block;
    color: var(--lime);
    font-family: Georgia,serif;
    font-size: 2rem;
    line-height: .7;
}

.quote-hero__note strong {
    display: block;
    margin-top: 8px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1.15;
}

/* MAIN */
.quote-main {
    padding: 98px 0;
    background: #fff;
}

.quote-main__grid {
    display: grid;
    grid-template-columns: minmax(330px,.76fr) minmax(0,1.24fr);
    align-items: start;
    gap: 80px;
}

.quote-main__intro h2,
.quote-process__intro h2,
.quote-contact__inner h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.8rem,4vw,4.7rem);
    font-weight: 800;
    line-height: .96;
    letter-spacing: -.06em;
}

.quote-main__intro > p {
    max-width: 530px;
    margin: 24px 0 30px;
    color: var(--text-soft);
    font-size: .95rem;
    line-height: 1.68;
}

.quote-main__tips {
    display: grid;
    gap: 11px;
}

.quote-main__tips > div {
    display: grid;
    grid-template-columns: 50px minmax(0,1fr);
    gap: 14px;
    align-items: center;
    padding: 15px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
}

.quote-main__tip-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
}

.quote-main__tip-icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quote-main__tips strong,
.quote-main__tips small {
    display: block;
}

.quote-main__tips strong {
    font-size: .81rem;
}

.quote-main__tips small {
    margin-top: 3px;
    color: var(--text-soft);
    font-size: .66rem;
    line-height: 1.45;
}

/* FORM */
.quote-form-wrap {
    min-width: 0;
}

.quote-form {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        radial-gradient(circle at 100% 0,rgba(61,165,28,.06),transparent 24%),
        #fff;
    box-shadow: 0 16px 45px rgba(22,40,25,.055);
}

.quote-form__heading {
    margin-bottom: 30px;
}

.quote-form__heading > span {
    color: var(--green);
    font-size: .61rem;
    font-weight: 900;
    letter-spacing: .15em;
}

.quote-form__heading h3 {
    margin: 7px 0 0;
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -.04em;
}

.quote-form__heading p {
    margin: 5px 0 0;
    color: var(--text-soft);
    font-size: .72rem;
}

.quote-form__section + .quote-form__section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.quote-form__section-title {
    display: grid;
    grid-template-columns: 42px minmax(0,1fr);
    gap: 12px;
    align-items: start;
    margin-bottom: 20px;
}

.quote-form__section-title > span {
    color: var(--green);
    font-size: .64rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.quote-form__section-title strong,
.quote-form__section-title small {
    display: block;
}

.quote-form__section-title strong {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
}

.quote-form__section-title small {
    margin-top: 2px;
    color: var(--text-soft);
    font-size: .68rem;
}

.quote-form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.quote-field {
    display: grid;
    gap: 8px;
}

.quote-field--full {
    grid-column: 1/-1;
}

.quote-field > span {
    font-size: .72rem;
    font-weight: 800;
}

.quote-field input,
.quote-field select,
.quote-field textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #d8ddd6;
    border-radius: 10px;
    outline: 0;
    background: #fff;
    color: var(--text);
    transition: border-color .2s ease,box-shadow .2s ease;
}

.quote-field input,
.quote-field select {
    height: 52px;
    padding: 0 14px;
}

.quote-field textarea {
    min-height: 185px;
    padding: 14px;
    resize: vertical;
    line-height: 1.55;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
    color: #a0a59e;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(61,165,28,.09);
}

.quote-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 26px;
}

.quote-form__footer p {
    max-width: 390px;
    margin: 0;
    color: var(--text-soft);
    font-size: .66rem;
    line-height: 1.5;
}

.quote-form__submit {
    flex: 0 0 auto;
    border: 0;
}

.quote-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.quote-alert {
    display: grid;
    gap: 4px;
    margin-bottom: 14px;
    padding: 15px 18px;
    border-radius: 12px;
    font-size: .78rem;
}

.quote-alert strong,
.quote-alert span {
    display: block;
}

.quote-alert--success {
    border: 1px solid #c9e4be;
    background: #eff8eb;
    color: var(--green-dark);
}

.quote-alert--error {
    border: 1px solid #e9c6c3;
    background: #fff4f3;
    color: #743b36;
}

/* PROCESS */
.quote-process {
    padding: 92px 0 98px;
    background:
        radial-gradient(circle at 82% 20%,rgba(61,165,28,.07),transparent 28%),
        var(--bg-soft);
}

.quote-process__intro {
    max-width: 820px;
    margin-bottom: 40px;
}

.quote-process__grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.quote-process__grid article {
    min-height: 255px;
    padding: 28px 24px;
    border: 1px solid #dce4d9;
    border-radius: 18px;
    background: rgba(255,255,255,.94);
}

.quote-process__grid article > span {
    display: block;
    margin-bottom: 46px;
    color: var(--green);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.quote-process__grid h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -.03em;
}

.quote-process__grid p {
    margin: 9px 0 0;
    color: var(--text-soft);
    font-size: .79rem;
    line-height: 1.58;
}

/* CONTACT CTA */
.quote-contact {
    padding: 90px 0;
    background: #fff;
}

.quote-contact__inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: end;
    gap: 80px;
    padding: 55px 60px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background:
        radial-gradient(circle at 90% 10%,rgba(61,165,28,.07),transparent 24%),
        #fff;
}

.quote-contact__inner > div:last-child {
    max-width: 480px;
}

.quote-contact__inner p {
    margin: 0 0 24px;
    color: var(--text-soft);
    font-size: .93rem;
    line-height: 1.65;
}

/* TABLET */
@media (max-width:1180px) {
    .quote-hero__grid {
        grid-template-columns: .95fr 1.05fr;
    }

    .quote-hero__copy {
        padding-right: 45px;
    }

    .quote-main__grid {
        gap: 55px;
    }

    .quote-process__grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

/* MOBILE */
@media (max-width:860px) {
    .quote-hero__grid {
        width: 100%;
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .quote-hero__copy {
        width: calc(100% - 40px);
        margin-inline: auto;
        padding: 54px 0 44px;
    }

    .quote-hero__copy h1 {
        font-size: clamp(3.4rem,14vw,5rem);
    }

    .quote-hero__copy > p {
        margin-top: 22px;
        font-size: .95rem;
    }

    .quote-hero__meta {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .quote-hero__meta div:last-child {
        grid-column: 1/-1;
    }

    .quote-hero__visual {
        min-height: 470px;
        padding: 40px 20px 92px;
    }

    .quote-hero__panel {
        padding: 30px;
    }

    .quote-hero__note {
        right: 20px;
        bottom: 20px;
    }

    .quote-main {
        padding: 72px 0;
    }

    .quote-main__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .quote-main__intro h2,
    .quote-process__intro h2,
    .quote-contact__inner h2 {
        font-size: clamp(2.65rem,10vw,3.7rem);
    }

    .quote-form {
        padding: 28px;
    }

    .quote-process {
        padding: 70px 0 76px;
    }

    .quote-contact {
        padding: 70px 0;
    }

    .quote-contact__inner {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 42px;
    }

    .quote-contact__inner > div:last-child {
        max-width: none;
    }
}

/* SMALL MOBILE */
@media (max-width:560px) {
    .quote-hero__copy {
        width: calc(100% - 36px);
        padding: 47px 0 40px;
    }

    .quote-hero__copy h1 {
        font-size: clamp(3.2rem,16vw,4.5rem);
    }

    .quote-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .quote-hero__actions .classic-btn {
        width: 100%;
    }

    .quote-hero__meta {
        grid-template-columns: 1fr;
    }

    .quote-hero__meta div:last-child {
        grid-column: auto;
    }

    .quote-hero__visual {
        min-height: 430px;
    }

    .quote-hero__panel {
        padding: 25px 21px;
    }

    .quote-hero__panel > strong {
        font-size: 1.75rem;
    }

    .quote-main__intro h2,
    .quote-process__intro h2,
    .quote-contact__inner h2 {
        font-size: 2.85rem;
    }

    .quote-form {
        padding: 23px 18px;
        border-radius: 18px;
    }

    .quote-form__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .quote-field--full {
        grid-column: auto;
    }

    .quote-form__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .quote-form__submit {
        width: 100%;
    }

    .quote-process__grid {
        grid-template-columns: 1fr;
    }

    .quote-process__grid article {
        min-height: 215px;
    }

    .quote-process__grid article > span {
        margin-bottom: 33px;
    }

    .quote-contact__inner {
        padding: 30px 22px;
    }

    .quote-contact__inner .classic-btn {
        width: 100%;
    }
}

/* =========================================================
   DIENST DETAIL - TEXTIEL BEDRUKKEN
   Toevoegen ONDERAAN bestaande main.css
   ========================================================= */

.service-detail-page {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

/* HERO */
.service-detail-hero {
    background:
        radial-gradient(circle at 16% 24%,rgba(61,165,28,.07),transparent 28%),
        #fff;
}

.service-detail-hero__grid {
    display: grid;
    min-height: 640px;
    grid-template-columns: minmax(0,.96fr) minmax(0,1.04fr);
    align-items: stretch;
}

.service-detail-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 78px 70px 70px 0;
}

.service-detail-hero__copy h1 {
    max-width: 760px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(4rem,5.7vw,6.35rem);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.07em;
}

.service-detail-hero__copy h1 span {
    color: var(--green);
}

.service-detail-hero__copy > p {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.68;
}

.service-detail-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 29px;
}

.service-detail-hero__meta {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
    margin-top: 38px;
    padding-top: 23px;
    border-top: 1px solid var(--line);
}

.service-detail-hero__meta div {
    display: grid;
    gap: 4px;
}

.service-detail-hero__meta strong {
    font-size: .8rem;
    font-weight: 800;
}

.service-detail-hero__meta span {
    color: var(--text-soft);
    font-size: .7rem;
    line-height: 1.4;
}

.service-detail-hero__visual {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: var(--bg-soft);
}

.service-detail-hero__visual > img {
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
}

.service-detail-hero__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 45%,rgba(12,25,15,.18));
    content: "";
    pointer-events: none;
}

.service-detail-hero__card {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 28px;
    width: min(300px,calc(100% - 56px));
    padding: 23px 24px;
    border-radius: 17px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 18px 42px rgba(15,31,18,.16);
}

.service-detail-hero__card span {
    display: block;
    color: var(--green);
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.service-detail-hero__card strong {
    display: block;
    margin-top: 9px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.service-detail-hero__card small {
    display: block;
    margin-top: 9px;
    color: var(--text-soft);
    font-size: .69rem;
    line-height: 1.45;
}

/* INTRO */
.service-detail-intro {
    padding: 94px 0;
    background: #fff;
}

.service-detail-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}

.service-detail-intro h2,
.service-options__heading h2,
.service-process__content h2,
.service-benefits__intro h2,
.service-applications__heading h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.8rem,4vw,4.7rem);
    font-weight: 800;
    line-height: .96;
    letter-spacing: -.06em;
}

.service-detail-intro__content {
    padding-top: 26px;
}

.service-detail-intro__content p {
    margin: 0;
    color: var(--text-soft);
    font-size: .96rem;
    line-height: 1.72;
}

.service-detail-intro__content p + p {
    margin-top: 18px;
}

/* OPTIONS */
.service-options {
    padding: 92px 0 98px;
    background:
        radial-gradient(circle at 82% 18%,rgba(61,165,28,.07),transparent 26%),
        var(--bg-soft);
}

.service-options__heading,
.service-applications__heading {
    display: grid;
    grid-template-columns: 1fr minmax(280px,440px);
    align-items: end;
    gap: 72px;
    margin-bottom: 42px;
}

.service-options__heading > p,
.service-applications__heading > p {
    margin: 0 0 4px;
    color: var(--text-soft);
    font-size: .94rem;
    line-height: 1.65;
}

.service-options__grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 14px;
}

.service-options__grid article {
    position: relative;
    min-height: 285px;
    padding: 27px;
    border: 1px solid #dce4d9;
    border-radius: 18px;
    background: rgba(255,255,255,.95);
}

.service-options__icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    margin-bottom: 42px;
    border-radius: 50%;
    background: var(--green-soft);
    color: var(--green);
}

.service-options__icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-options__grid article > span {
    position: absolute;
    top: 29px;
    right: 27px;
    color: var(--green);
    font-size: .6rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.service-options__grid h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -.035em;
}

.service-options__grid p {
    margin: 9px 0 0;
    color: var(--text-soft);
    font-size: .79rem;
    line-height: 1.58;
}

/* PROCESS */
.service-process {
    padding: 100px 0;
    background: #fff;
}

.service-process__grid {
    display: grid;
    grid-template-columns: minmax(0,1.03fr) minmax(360px,.97fr);
    gap: 82px;
    align-items: center;
}

.service-process__visual {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--bg-soft);
}

.service-process__visual img {
    width: 100%;
    height: 590px;
    object-fit: cover;
}

.service-process__badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 20px 22px;
    border-radius: 14px;
    background: var(--green-deep);
    color: #fff;
}

.service-process__badge span,
.service-process__badge strong,
.service-process__badge small {
    display: block;
}

.service-process__badge span {
    color: var(--lime);
    font-size: .55rem;
    font-weight: 900;
    letter-spacing: .13em;
}

.service-process__badge strong {
    margin-top: 4px;
    font-size: .9rem;
}

.service-process__badge small {
    margin-top: 4px;
    color: rgba(255,255,255,.72);
    font-size: .62rem;
}

.service-process__content > p {
    max-width: 570px;
    margin: 25px 0 28px;
    color: var(--text-soft);
    font-size: .94rem;
    line-height: 1.68;
}

.service-process__list {
    display: grid;
    margin-bottom: 30px;
    border-top: 1px solid var(--line);
}

.service-process__list > div {
    display: grid;
    grid-template-columns: 47px minmax(0,1fr);
    gap: 12px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.service-process__list > div > span {
    color: var(--green);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.service-process__list strong,
.service-process__list small {
    display: block;
}

.service-process__list strong {
    font-size: .84rem;
}

.service-process__list small {
    margin-top: 3px;
    color: var(--text-soft);
    font-size: .69rem;
}

/* BENEFITS */
.service-benefits {
    padding: 92px 0 98px;
    background:
        radial-gradient(circle at 16% 18%,rgba(61,165,28,.07),transparent 27%),
        var(--bg-soft);
}

.service-benefits__intro {
    max-width: 820px;
    margin-bottom: 40px;
}

.service-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.service-benefits__grid article {
    min-height: 255px;
    padding: 28px 24px;
    border: 1px solid #dce4d9;
    border-radius: 18px;
    background: rgba(255,255,255,.95);
}

.service-benefits__grid article > span {
    display: block;
    margin-bottom: 46px;
    color: var(--green);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.service-benefits__grid h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -.03em;
}

.service-benefits__grid p {
    margin: 9px 0 0;
    color: var(--text-soft);
    font-size: .79rem;
    line-height: 1.58;
}

/* APPLICATIONS */
.service-applications {
    padding: 96px 0 100px;
    background: #fff;
}

.service-applications__grid {
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 15px;
}

.service-applications__grid article {
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0,rgba(61,165,28,.055),transparent 30%),
        #fff;
}

.service-applications__grid article > span {
    display: block;
    color: var(--green);
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.service-applications__grid h3 {
    margin: 12px 0 0;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.035em;
}

.service-applications__grid p {
    margin: 8px 0 0;
    color: var(--text-soft);
    font-size: .8rem;
    line-height: 1.58;
}

/* TABLET */
@media (max-width:1180px) {
    .service-detail-hero__grid {
        grid-template-columns: .96fr 1.04fr;
    }

    .service-detail-hero__copy {
        padding-right: 45px;
    }

    .service-process__grid {
        gap: 55px;
    }

    .service-benefits__grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

/* MOBILE */
@media (max-width:860px) {
    .service-detail-hero__grid {
        width: 100%;
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .service-detail-hero__copy {
        width: calc(100% - 40px);
        margin-inline: auto;
        padding: 54px 0 44px;
    }

    .service-detail-hero__copy h1 {
        font-size: clamp(3.4rem,14vw,5rem);
    }

    .service-detail-hero__copy > p {
        margin-top: 22px;
        font-size: .95rem;
    }

    .service-detail-hero__meta {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        margin-top: 30px;
    }

    .service-detail-hero__meta div:last-child {
        grid-column: 1/-1;
    }

    .service-detail-hero__visual,
    .service-detail-hero__visual > img {
        min-height: 440px;
        height: 440px;
    }

    .service-detail-intro {
        padding: 70px 0;
    }

    .service-detail-intro__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .service-detail-intro__content {
        padding-top: 0;
    }

    .service-detail-intro h2,
    .service-options__heading h2,
    .service-process__content h2,
    .service-benefits__intro h2,
    .service-applications__heading h2 {
        font-size: clamp(2.65rem,10vw,3.7rem);
    }

    .service-options,
    .service-benefits {
        padding: 70px 0 76px;
    }

    .service-options__heading,
    .service-applications__heading {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }

    .service-options__grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .service-process {
        padding: 72px 0;
    }

    .service-process__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .service-process__visual,
    .service-process__visual img {
        min-height: 430px;
        height: 430px;
    }

    .service-applications {
        padding: 72px 0;
    }
}

/* SMALL MOBILE */
@media (max-width:560px) {
    .service-detail-hero__copy {
        width: calc(100% - 36px);
        padding: 47px 0 40px;
    }

    .service-detail-hero__copy h1 {
        font-size: clamp(3.05rem,15vw,4.3rem);
    }

    .service-detail-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .service-detail-hero__actions .classic-btn {
        width: 100%;
    }

    .service-detail-hero__meta {
        grid-template-columns: 1fr;
    }

    .service-detail-hero__meta div:last-child {
        grid-column: auto;
    }

    .service-detail-hero__visual,
    .service-detail-hero__visual > img {
        min-height: 380px;
        height: 380px;
    }

    .service-detail-hero__card {
        right: 18px;
        bottom: 18px;
        width: calc(100% - 36px);
        padding: 19px;
    }

    .service-detail-intro h2,
    .service-options__heading h2,
    .service-process__content h2,
    .service-benefits__intro h2,
    .service-applications__heading h2 {
        font-size: 2.85rem;
    }

    .service-options__grid,
    .service-benefits__grid,
    .service-applications__grid {
        grid-template-columns: 1fr;
    }

    .service-options__grid article {
        min-height: 245px;
    }

    .service-process__visual,
    .service-process__visual img {
        min-height: 340px;
        height: 340px;
    }

    .service-benefits__grid article {
        min-height: 215px;
    }

    .service-benefits__grid article > span {
        margin-bottom: 33px;
    }
}


/* =========================================================
   DIENST DETAIL - BEDRIJFSKLEDING
   Toevoegen ONDERAAN bestaande main.css
   ========================================================= */

.company-clothing-page {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

/* HERO */
.company-clothing-hero {
    background:
        radial-gradient(circle at 15% 24%,rgba(61,165,28,.07),transparent 29%),
        #fff;
}

.company-clothing-hero__grid {
    display: grid;
    min-height: 640px;
    grid-template-columns: minmax(0,.96fr) minmax(0,1.04fr);
    align-items: stretch;
}

.company-clothing-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 78px 70px 70px 0;
}

.company-clothing-hero__copy h1 {
    max-width: 780px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(4rem,5.55vw,6.2rem);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.07em;
}

.company-clothing-hero__copy h1 span {
    color: var(--green);
}

.company-clothing-hero__copy > p {
    max-width: 625px;
    margin: 28px 0 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.68;
}

.company-clothing-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 29px;
}

.company-clothing-hero__meta {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
    margin-top: 38px;
    padding-top: 23px;
    border-top: 1px solid var(--line);
}

.company-clothing-hero__meta div {
    display: grid;
    gap: 4px;
}

.company-clothing-hero__meta strong {
    font-size: .8rem;
    font-weight: 800;
}

.company-clothing-hero__meta span {
    color: var(--text-soft);
    font-size: .7rem;
    line-height: 1.4;
}

.company-clothing-hero__visual {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: var(--bg-soft);
}

.company-clothing-hero__visual > img {
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
}

.company-clothing-hero__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 45%,rgba(12,25,15,.18));
    content: "";
    pointer-events: none;
}

.company-clothing-hero__card {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 28px;
    width: min(310px,calc(100% - 56px));
    padding: 23px 24px;
    border-radius: 17px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 18px 42px rgba(15,31,18,.16);
}

.company-clothing-hero__card span {
    display: block;
    color: var(--green);
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.company-clothing-hero__card strong {
    display: block;
    margin-top: 9px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.company-clothing-hero__card small {
    display: block;
    margin-top: 9px;
    color: var(--text-soft);
    font-size: .69rem;
    line-height: 1.45;
}

/* INTRO */
.company-clothing-intro {
    padding: 94px 0;
}

.company-clothing-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}

.company-clothing-intro h2,
.company-clothing-options__heading h2,
.company-clothing-why__content h2,
.company-clothing-sectors__intro h2,
.company-clothing-process__heading h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.8rem,4vw,4.7rem);
    font-weight: 800;
    line-height: .96;
    letter-spacing: -.06em;
}

.company-clothing-intro__content {
    padding-top: 26px;
}

.company-clothing-intro__content p {
    margin: 0;
    color: var(--text-soft);
    font-size: .96rem;
    line-height: 1.72;
}

.company-clothing-intro__content p + p {
    margin-top: 18px;
}

/* OPTIONS */
.company-clothing-options {
    padding: 92px 0 98px;
    background:
        radial-gradient(circle at 82% 18%,rgba(61,165,28,.07),transparent 27%),
        var(--bg-soft);
}

.company-clothing-options__heading,
.company-clothing-process__heading {
    display: grid;
    grid-template-columns: 1fr minmax(280px,440px);
    align-items: end;
    gap: 72px;
    margin-bottom: 42px;
}

.company-clothing-options__heading > p,
.company-clothing-process__heading > p {
    margin: 0 0 4px;
    color: var(--text-soft);
    font-size: .94rem;
    line-height: 1.65;
}

.company-clothing-options__grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 14px;
}

.company-clothing-options__grid article {
    position: relative;
    min-height: 240px;
    padding: 28px 25px;
    border: 1px solid #dce4d9;
    border-radius: 18px;
    background: rgba(255,255,255,.95);
}

.company-clothing-options__grid article > span {
    display: block;
    margin-bottom: 55px;
    color: var(--green);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.company-clothing-options__grid h3,
.company-clothing-sectors__grid h3,
.company-clothing-process__grid h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -.03em;
}

.company-clothing-options__grid p,
.company-clothing-sectors__grid p,
.company-clothing-process__grid p {
    margin: 9px 0 0;
    color: var(--text-soft);
    font-size: .79rem;
    line-height: 1.58;
}

/* WHY */
.company-clothing-why {
    padding: 100px 0;
    background: #fff;
}

.company-clothing-why__grid {
    display: grid;
    grid-template-columns: minmax(0,1.03fr) minmax(360px,.97fr);
    gap: 82px;
    align-items: center;
}

.company-clothing-why__visual {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--bg-soft);
}

.company-clothing-why__visual img {
    width: 100%;
    height: 590px;
    object-fit: cover;
}

.company-clothing-why__badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 20px 22px;
    border-radius: 14px;
    background: var(--green-deep);
    color: #fff;
}

.company-clothing-why__badge span,
.company-clothing-why__badge strong,
.company-clothing-why__badge small {
    display: block;
}

.company-clothing-why__badge span {
    color: var(--lime);
    font-size: .55rem;
    font-weight: 900;
    letter-spacing: .13em;
}

.company-clothing-why__badge strong {
    margin-top: 4px;
    font-size: .9rem;
}

.company-clothing-why__badge small {
    margin-top: 4px;
    color: rgba(255,255,255,.72);
    font-size: .62rem;
}

.company-clothing-why__content > p {
    max-width: 570px;
    margin: 25px 0 28px;
    color: var(--text-soft);
    font-size: .94rem;
    line-height: 1.68;
}

.company-clothing-why__list {
    display: grid;
    margin-bottom: 30px;
    border-top: 1px solid var(--line);
}

.company-clothing-why__list > div {
    display: grid;
    grid-template-columns: 47px minmax(0,1fr);
    gap: 12px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.company-clothing-why__list > div > span {
    color: var(--green);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.company-clothing-why__list strong,
.company-clothing-why__list small {
    display: block;
}

.company-clothing-why__list strong {
    font-size: .84rem;
}

.company-clothing-why__list small {
    margin-top: 3px;
    color: var(--text-soft);
    font-size: .69rem;
}

/* SECTORS */
.company-clothing-sectors {
    padding: 92px 0 98px;
    background:
        radial-gradient(circle at 16% 18%,rgba(61,165,28,.07),transparent 26%),
        var(--bg-soft);
}

.company-clothing-sectors__intro {
    max-width: 820px;
    margin-bottom: 40px;
}

.company-clothing-sectors__grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.company-clothing-sectors__grid article {
    min-height: 255px;
    padding: 28px 24px;
    border: 1px solid #dce4d9;
    border-radius: 18px;
    background: rgba(255,255,255,.95);
}

.company-clothing-sectors__grid article > span {
    display: block;
    margin-bottom: 46px;
    color: var(--green);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .12em;
}

/* PROCESS */
.company-clothing-process {
    padding: 96px 0 100px;
}

.company-clothing-process__grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.company-clothing-process__grid article {
    min-height: 230px;
    padding: 28px 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0,rgba(61,165,28,.055),transparent 30%),
        #fff;
}

.company-clothing-process__grid article > span {
    display: block;
    margin-bottom: 46px;
    color: var(--green);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .12em;
}

/* TABLET */
@media (max-width:1180px) {
    .company-clothing-hero__copy {
        padding-right: 45px;
    }

    .company-clothing-why__grid {
        gap: 55px;
    }

    .company-clothing-sectors__grid,
    .company-clothing-process__grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

/* MOBILE */
@media (max-width:860px) {
    .company-clothing-hero__grid {
        width: 100%;
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .company-clothing-hero__copy {
        width: calc(100% - 40px);
        margin-inline: auto;
        padding: 54px 0 44px;
    }

    .company-clothing-hero__copy h1 {
        font-size: clamp(3.4rem,14vw,5rem);
    }

    .company-clothing-hero__meta {
        grid-template-columns: 1fr 1fr;
    }

    .company-clothing-hero__meta div:last-child {
        grid-column: 1/-1;
    }

    .company-clothing-hero__visual,
    .company-clothing-hero__visual > img {
        min-height: 440px;
        height: 440px;
    }

    .company-clothing-intro {
        padding: 70px 0;
    }

    .company-clothing-intro__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .company-clothing-intro__content {
        padding-top: 0;
    }

    .company-clothing-intro h2,
    .company-clothing-options__heading h2,
    .company-clothing-why__content h2,
    .company-clothing-sectors__intro h2,
    .company-clothing-process__heading h2 {
        font-size: clamp(2.65rem,10vw,3.7rem);
    }

    .company-clothing-options,
    .company-clothing-sectors {
        padding: 70px 0 76px;
    }

    .company-clothing-options__heading,
    .company-clothing-process__heading {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }

    .company-clothing-options__grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .company-clothing-why {
        padding: 72px 0;
    }

    .company-clothing-why__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .company-clothing-why__visual,
    .company-clothing-why__visual img {
        min-height: 430px;
        height: 430px;
    }

    .company-clothing-process {
        padding: 72px 0;
    }
}

/* SMALL MOBILE */
@media (max-width:560px) {
    .company-clothing-hero__copy {
        width: calc(100% - 36px);
        padding: 47px 0 40px;
    }

    .company-clothing-hero__copy h1 {
        font-size: clamp(3rem,14.5vw,4.15rem);
    }

    .company-clothing-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .company-clothing-hero__actions .classic-btn {
        width: 100%;
    }

    .company-clothing-hero__meta {
        grid-template-columns: 1fr;
    }

    .company-clothing-hero__meta div:last-child {
        grid-column: auto;
    }

    .company-clothing-hero__visual,
    .company-clothing-hero__visual > img {
        min-height: 380px;
        height: 380px;
    }

    .company-clothing-hero__card {
        right: 18px;
        bottom: 18px;
        width: calc(100% - 36px);
        padding: 19px;
    }

    .company-clothing-intro h2,
    .company-clothing-options__heading h2,
    .company-clothing-why__content h2,
    .company-clothing-sectors__intro h2,
    .company-clothing-process__heading h2 {
        font-size: 2.85rem;
    }

    .company-clothing-options__grid,
    .company-clothing-sectors__grid,
    .company-clothing-process__grid {
        grid-template-columns: 1fr;
    }

    .company-clothing-options__grid article {
        min-height: 220px;
    }

    .company-clothing-why__visual,
    .company-clothing-why__visual img {
        min-height: 340px;
        height: 340px;
    }

    .company-clothing-sectors__grid article,
    .company-clothing-process__grid article {
        min-height: 215px;
    }

    .company-clothing-sectors__grid article > span,
    .company-clothing-process__grid article > span {
        margin-bottom: 33px;
    }
}


/* =========================================================
   DIENST DETAIL - SPORTKLEDING
   Toevoegen ONDERAAN bestaande main.css
   ========================================================= */

.sportswear-page {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

/* HERO */
.sportswear-hero {
    background:
        radial-gradient(circle at 15% 24%,rgba(61,165,28,.07),transparent 29%),
        #fff;
}

.sportswear-hero__grid {
    display: grid;
    min-height: 640px;
    grid-template-columns: minmax(0,.96fr) minmax(0,1.04fr);
    align-items: stretch;
}

.sportswear-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 78px 70px 70px 0;
}

.sportswear-hero__copy h1 {
    max-width: 780px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(4rem,5.55vw,6.2rem);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.07em;
}

.sportswear-hero__copy h1 span {
    color: var(--green);
}

.sportswear-hero__copy > p {
    max-width: 625px;
    margin: 28px 0 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.68;
}

.sportswear-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 29px;
}

.sportswear-hero__meta {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
    margin-top: 38px;
    padding-top: 23px;
    border-top: 1px solid var(--line);
}

.sportswear-hero__meta div {
    display: grid;
    gap: 4px;
}

.sportswear-hero__meta strong {
    font-size: .8rem;
    font-weight: 800;
}

.sportswear-hero__meta span {
    color: var(--text-soft);
    font-size: .7rem;
    line-height: 1.4;
}

.sportswear-hero__visual {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: var(--bg-soft);
}

.sportswear-hero__visual > img {
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
}

.sportswear-hero__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 45%,rgba(12,25,15,.18));
    content: "";
    pointer-events: none;
}

.sportswear-hero__card {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 28px;
    width: min(310px,calc(100% - 56px));
    padding: 23px 24px;
    border-radius: 17px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 18px 42px rgba(15,31,18,.16);
}

.sportswear-hero__card span {
    display: block;
    color: var(--green);
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.sportswear-hero__card strong {
    display: block;
    margin-top: 9px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.sportswear-hero__card small {
    display: block;
    margin-top: 9px;
    color: var(--text-soft);
    font-size: .69rem;
    line-height: 1.45;
}

/* INTRO */
.sportswear-intro {
    padding: 94px 0;
}

.sportswear-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}

.sportswear-intro h2,
.sportswear-options__heading h2,
.sportswear-why__content h2,
.sportswear-groups__intro h2,
.sportswear-process__heading h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.8rem,4vw,4.7rem);
    font-weight: 800;
    line-height: .96;
    letter-spacing: -.06em;
}

.sportswear-intro__content {
    padding-top: 26px;
}

.sportswear-intro__content p {
    margin: 0;
    color: var(--text-soft);
    font-size: .96rem;
    line-height: 1.72;
}

.sportswear-intro__content p + p {
    margin-top: 18px;
}

/* OPTIONS */
.sportswear-options {
    padding: 92px 0 98px;
    background:
        radial-gradient(circle at 82% 18%,rgba(61,165,28,.07),transparent 27%),
        var(--bg-soft);
}

.sportswear-options__heading,
.sportswear-process__heading {
    display: grid;
    grid-template-columns: 1fr minmax(280px,440px);
    align-items: end;
    gap: 72px;
    margin-bottom: 42px;
}

.sportswear-options__heading > p,
.sportswear-process__heading > p {
    margin: 0 0 4px;
    color: var(--text-soft);
    font-size: .94rem;
    line-height: 1.65;
}

.sportswear-options__grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 14px;
}

.sportswear-options__grid article {
    min-height: 240px;
    padding: 28px 25px;
    border: 1px solid #dce4d9;
    border-radius: 18px;
    background: rgba(255,255,255,.95);
}

.sportswear-options__grid article > span {
    display: block;
    margin-bottom: 55px;
    color: var(--green);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.sportswear-options__grid h3,
.sportswear-groups__grid h3,
.sportswear-process__grid h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -.03em;
}

.sportswear-options__grid p,
.sportswear-groups__grid p,
.sportswear-process__grid p {
    margin: 9px 0 0;
    color: var(--text-soft);
    font-size: .79rem;
    line-height: 1.58;
}

/* WHY */
.sportswear-why {
    padding: 100px 0;
    background: #fff;
}

.sportswear-why__grid {
    display: grid;
    grid-template-columns: minmax(0,1.03fr) minmax(360px,.97fr);
    gap: 82px;
    align-items: center;
}

.sportswear-why__visual {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--bg-soft);
}

.sportswear-why__visual img {
    width: 100%;
    height: 590px;
    object-fit: cover;
}

.sportswear-why__badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 20px 22px;
    border-radius: 14px;
    background: var(--green-deep);
    color: #fff;
}

.sportswear-why__badge span,
.sportswear-why__badge strong,
.sportswear-why__badge small {
    display: block;
}

.sportswear-why__badge span {
    color: var(--lime);
    font-size: .55rem;
    font-weight: 900;
    letter-spacing: .13em;
}

.sportswear-why__badge strong {
    margin-top: 4px;
    font-size: .9rem;
}

.sportswear-why__badge small {
    margin-top: 4px;
    color: rgba(255,255,255,.72);
    font-size: .62rem;
}

.sportswear-why__content > p {
    max-width: 570px;
    margin: 25px 0 28px;
    color: var(--text-soft);
    font-size: .94rem;
    line-height: 1.68;
}

.sportswear-why__list {
    display: grid;
    margin-bottom: 30px;
    border-top: 1px solid var(--line);
}

.sportswear-why__list > div {
    display: grid;
    grid-template-columns: 47px minmax(0,1fr);
    gap: 12px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.sportswear-why__list > div > span {
    color: var(--green);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.sportswear-why__list strong,
.sportswear-why__list small {
    display: block;
}

.sportswear-why__list strong {
    font-size: .84rem;
}

.sportswear-why__list small {
    margin-top: 3px;
    color: var(--text-soft);
    font-size: .69rem;
}

/* GROUPS */
.sportswear-groups {
    padding: 92px 0 98px;
    background:
        radial-gradient(circle at 16% 18%,rgba(61,165,28,.07),transparent 26%),
        var(--bg-soft);
}

.sportswear-groups__intro {
    max-width: 820px;
    margin-bottom: 40px;
}

.sportswear-groups__grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.sportswear-groups__grid article {
    min-height: 255px;
    padding: 28px 24px;
    border: 1px solid #dce4d9;
    border-radius: 18px;
    background: rgba(255,255,255,.95);
}

.sportswear-groups__grid article > span {
    display: block;
    margin-bottom: 46px;
    color: var(--green);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .12em;
}

/* PROCESS */
.sportswear-process {
    padding: 96px 0 100px;
}

.sportswear-process__grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.sportswear-process__grid article {
    min-height: 230px;
    padding: 28px 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0,rgba(61,165,28,.055),transparent 30%),
        #fff;
}

.sportswear-process__grid article > span {
    display: block;
    margin-bottom: 46px;
    color: var(--green);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .12em;
}

/* TABLET */
@media (max-width:1180px) {
    .sportswear-hero__copy {
        padding-right: 45px;
    }

    .sportswear-why__grid {
        gap: 55px;
    }

    .sportswear-groups__grid,
    .sportswear-process__grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

/* MOBILE */
@media (max-width:860px) {
    .sportswear-hero__grid {
        width: 100%;
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .sportswear-hero__copy {
        width: calc(100% - 40px);
        margin-inline: auto;
        padding: 54px 0 44px;
    }

    .sportswear-hero__copy h1 {
        font-size: clamp(3.4rem,14vw,5rem);
    }

    .sportswear-hero__meta {
        grid-template-columns: 1fr 1fr;
    }

    .sportswear-hero__meta div:last-child {
        grid-column: 1/-1;
    }

    .sportswear-hero__visual,
    .sportswear-hero__visual > img {
        min-height: 440px;
        height: 440px;
    }

    .sportswear-intro {
        padding: 70px 0;
    }

    .sportswear-intro__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .sportswear-intro__content {
        padding-top: 0;
    }

    .sportswear-intro h2,
    .sportswear-options__heading h2,
    .sportswear-why__content h2,
    .sportswear-groups__intro h2,
    .sportswear-process__heading h2 {
        font-size: clamp(2.65rem,10vw,3.7rem);
    }

    .sportswear-options,
    .sportswear-groups {
        padding: 70px 0 76px;
    }

    .sportswear-options__heading,
    .sportswear-process__heading {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }

    .sportswear-options__grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .sportswear-why {
        padding: 72px 0;
    }

    .sportswear-why__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .sportswear-why__visual,
    .sportswear-why__visual img {
        min-height: 430px;
        height: 430px;
    }

    .sportswear-process {
        padding: 72px 0;
    }
}

/* SMALL MOBILE */
@media (max-width:560px) {
    .sportswear-hero__copy {
        width: calc(100% - 36px);
        padding: 47px 0 40px;
    }

    .sportswear-hero__copy h1 {
        font-size: clamp(3rem,14.5vw,4.15rem);
    }

    .sportswear-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .sportswear-hero__actions .classic-btn {
        width: 100%;
    }

    .sportswear-hero__meta {
        grid-template-columns: 1fr;
    }

    .sportswear-hero__meta div:last-child {
        grid-column: auto;
    }

    .sportswear-hero__visual,
    .sportswear-hero__visual > img {
        min-height: 380px;
        height: 380px;
    }

    .sportswear-hero__card {
        right: 18px;
        bottom: 18px;
        width: calc(100% - 36px);
        padding: 19px;
    }

    .sportswear-intro h2,
    .sportswear-options__heading h2,
    .sportswear-why__content h2,
    .sportswear-groups__intro h2,
    .sportswear-process__heading h2 {
        font-size: 2.85rem;
    }

    .sportswear-options__grid,
    .sportswear-groups__grid,
    .sportswear-process__grid {
        grid-template-columns: 1fr;
    }

    .sportswear-options__grid article {
        min-height: 220px;
    }

    .sportswear-why__visual,
    .sportswear-why__visual img {
        min-height: 340px;
        height: 340px;
    }

    .sportswear-groups__grid article,
    .sportswear-process__grid article {
        min-height: 215px;
    }

    .sportswear-groups__grid article > span,
    .sportswear-process__grid article > span {
        margin-bottom: 33px;
    }
}


/* =========================================================
   DIENST DETAIL - PROMOTIEKLEDING
   Toevoegen ONDERAAN bestaande main.css
   ========================================================= */

.promo-wear-page {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

/* HERO */
.promo-wear-hero {
    background:
        radial-gradient(circle at 15% 24%,rgba(61,165,28,.07),transparent 29%),
        #fff;
}

.promo-wear-hero__grid {
    display: grid;
    min-height: 640px;
    grid-template-columns: minmax(0,.96fr) minmax(0,1.04fr);
    align-items: stretch;
}

.promo-wear-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 78px 70px 70px 0;
}

.promo-wear-hero__copy h1 {
    max-width: 790px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(4rem,5.45vw,6.1rem);
    font-weight: 800;
    line-height: .9;
    letter-spacing: -.07em;
}

.promo-wear-hero__copy h1 span {
    color: var(--green);
}

.promo-wear-hero__copy > p {
    max-width: 625px;
    margin: 28px 0 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.68;
}

.promo-wear-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 29px;
}

.promo-wear-hero__meta {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
    margin-top: 38px;
    padding-top: 23px;
    border-top: 1px solid var(--line);
}

.promo-wear-hero__meta div {
    display: grid;
    gap: 4px;
}

.promo-wear-hero__meta strong {
    font-size: .8rem;
    font-weight: 800;
}

.promo-wear-hero__meta span {
    color: var(--text-soft);
    font-size: .7rem;
    line-height: 1.4;
}

.promo-wear-hero__visual {
    position: relative;
    min-height: 640px;
    overflow: hidden;
    background: var(--bg-soft);
}

.promo-wear-hero__visual > img {
    width: 100%;
    height: 100%;
    min-height: 640px;
    object-fit: cover;
}

.promo-wear-hero__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 45%,rgba(12,25,15,.18));
    content: "";
    pointer-events: none;
}

.promo-wear-hero__card {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 28px;
    width: min(310px,calc(100% - 56px));
    padding: 23px 24px;
    border-radius: 17px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 18px 42px rgba(15,31,18,.16);
}

.promo-wear-hero__card span {
    display: block;
    color: var(--green);
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.promo-wear-hero__card strong {
    display: block;
    margin-top: 9px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.promo-wear-hero__card small {
    display: block;
    margin-top: 9px;
    color: var(--text-soft);
    font-size: .69rem;
    line-height: 1.45;
}

/* INTRO */
.promo-wear-intro {
    padding: 94px 0;
}

.promo-wear-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}

.promo-wear-intro h2,
.promo-wear-options__heading h2,
.promo-wear-why__content h2,
.promo-wear-uses__intro h2,
.promo-wear-process__heading h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.8rem,4vw,4.7rem);
    font-weight: 800;
    line-height: .96;
    letter-spacing: -.06em;
}

.promo-wear-intro__content {
    padding-top: 26px;
}

.promo-wear-intro__content p {
    margin: 0;
    color: var(--text-soft);
    font-size: .96rem;
    line-height: 1.72;
}

.promo-wear-intro__content p + p {
    margin-top: 18px;
}

/* OPTIONS */
.promo-wear-options {
    padding: 92px 0 98px;
    background:
        radial-gradient(circle at 82% 18%,rgba(61,165,28,.07),transparent 27%),
        var(--bg-soft);
}

.promo-wear-options__heading,
.promo-wear-process__heading {
    display: grid;
    grid-template-columns: 1fr minmax(280px,440px);
    align-items: end;
    gap: 72px;
    margin-bottom: 42px;
}

.promo-wear-options__heading > p,
.promo-wear-process__heading > p {
    margin: 0 0 4px;
    color: var(--text-soft);
    font-size: .94rem;
    line-height: 1.65;
}

.promo-wear-options__grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 14px;
}

.promo-wear-options__grid article {
    min-height: 240px;
    padding: 28px 25px;
    border: 1px solid #dce4d9;
    border-radius: 18px;
    background: rgba(255,255,255,.95);
}

.promo-wear-options__grid article > span {
    display: block;
    margin-bottom: 55px;
    color: var(--green);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.promo-wear-options__grid h3,
.promo-wear-uses__grid h3,
.promo-wear-process__grid h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -.03em;
}

.promo-wear-options__grid p,
.promo-wear-uses__grid p,
.promo-wear-process__grid p {
    margin: 9px 0 0;
    color: var(--text-soft);
    font-size: .79rem;
    line-height: 1.58;
}

/* WHY */
.promo-wear-why {
    padding: 100px 0;
    background: #fff;
}

.promo-wear-why__grid {
    display: grid;
    grid-template-columns: minmax(0,1.03fr) minmax(360px,.97fr);
    gap: 82px;
    align-items: center;
}

.promo-wear-why__visual {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--bg-soft);
}

.promo-wear-why__visual img {
    width: 100%;
    height: 590px;
    object-fit: cover;
}

.promo-wear-why__badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 20px 22px;
    border-radius: 14px;
    background: var(--green-deep);
    color: #fff;
}

.promo-wear-why__badge span,
.promo-wear-why__badge strong,
.promo-wear-why__badge small {
    display: block;
}

.promo-wear-why__badge span {
    color: var(--lime);
    font-size: .55rem;
    font-weight: 900;
    letter-spacing: .13em;
}

.promo-wear-why__badge strong {
    margin-top: 4px;
    font-size: .9rem;
}

.promo-wear-why__badge small {
    margin-top: 4px;
    color: rgba(255,255,255,.72);
    font-size: .62rem;
}

.promo-wear-why__content > p {
    max-width: 570px;
    margin: 25px 0 28px;
    color: var(--text-soft);
    font-size: .94rem;
    line-height: 1.68;
}

.promo-wear-why__list {
    display: grid;
    margin-bottom: 30px;
    border-top: 1px solid var(--line);
}

.promo-wear-why__list > div {
    display: grid;
    grid-template-columns: 47px minmax(0,1fr);
    gap: 12px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.promo-wear-why__list > div > span {
    color: var(--green);
    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.promo-wear-why__list strong,
.promo-wear-why__list small {
    display: block;
}

.promo-wear-why__list strong {
    font-size: .84rem;
}

.promo-wear-why__list small {
    margin-top: 3px;
    color: var(--text-soft);
    font-size: .69rem;
}

/* USES */
.promo-wear-uses {
    padding: 92px 0 98px;
    background:
        radial-gradient(circle at 16% 18%,rgba(61,165,28,.07),transparent 26%),
        var(--bg-soft);
}

.promo-wear-uses__intro {
    max-width: 820px;
    margin-bottom: 40px;
}

.promo-wear-uses__grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.promo-wear-uses__grid article {
    min-height: 255px;
    padding: 28px 24px;
    border: 1px solid #dce4d9;
    border-radius: 18px;
    background: rgba(255,255,255,.95);
}

.promo-wear-uses__grid article > span {
    display: block;
    margin-bottom: 46px;
    color: var(--green);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .12em;
}

/* PROCESS */
.promo-wear-process {
    padding: 96px 0 100px;
}

.promo-wear-process__grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.promo-wear-process__grid article {
    min-height: 230px;
    padding: 28px 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background:
        radial-gradient(circle at 100% 0,rgba(61,165,28,.055),transparent 30%),
        #fff;
}

.promo-wear-process__grid article > span {
    display: block;
    margin-bottom: 46px;
    color: var(--green);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .12em;
}

/* TABLET */
@media (max-width:1180px) {
    .promo-wear-hero__copy {
        padding-right: 45px;
    }

    .promo-wear-why__grid {
        gap: 55px;
    }

    .promo-wear-uses__grid,
    .promo-wear-process__grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

/* MOBILE */
@media (max-width:860px) {
    .promo-wear-hero__grid {
        width: 100%;
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .promo-wear-hero__copy {
        width: calc(100% - 40px);
        margin-inline: auto;
        padding: 54px 0 44px;
    }

    .promo-wear-hero__copy h1 {
        font-size: clamp(3.4rem,14vw,5rem);
    }

    .promo-wear-hero__meta {
        grid-template-columns: 1fr 1fr;
    }

    .promo-wear-hero__meta div:last-child {
        grid-column: 1/-1;
    }

    .promo-wear-hero__visual,
    .promo-wear-hero__visual > img {
        min-height: 440px;
        height: 440px;
    }

    .promo-wear-intro {
        padding: 70px 0;
    }

    .promo-wear-intro__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .promo-wear-intro__content {
        padding-top: 0;
    }

    .promo-wear-intro h2,
    .promo-wear-options__heading h2,
    .promo-wear-why__content h2,
    .promo-wear-uses__intro h2,
    .promo-wear-process__heading h2 {
        font-size: clamp(2.65rem,10vw,3.7rem);
    }

    .promo-wear-options,
    .promo-wear-uses {
        padding: 70px 0 76px;
    }

    .promo-wear-options__heading,
    .promo-wear-process__heading {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }

    .promo-wear-options__grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .promo-wear-why {
        padding: 72px 0;
    }

    .promo-wear-why__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .promo-wear-why__visual,
    .promo-wear-why__visual img {
        min-height: 430px;
        height: 430px;
    }

    .promo-wear-process {
        padding: 72px 0;
    }
}

/* SMALL MOBILE */
@media (max-width:560px) {
    .promo-wear-hero__copy {
        width: calc(100% - 36px);
        padding: 47px 0 40px;
    }

    .promo-wear-hero__copy h1 {
        font-size: clamp(3rem,14.5vw,4.15rem);
    }

    .promo-wear-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .promo-wear-hero__actions .classic-btn {
        width: 100%;
    }

    .promo-wear-hero__meta {
        grid-template-columns: 1fr;
    }

    .promo-wear-hero__meta div:last-child {
        grid-column: auto;
    }

    .promo-wear-hero__visual,
    .promo-wear-hero__visual > img {
        min-height: 380px;
        height: 380px;
    }

    .promo-wear-hero__card {
        right: 18px;
        bottom: 18px;
        width: calc(100% - 36px);
        padding: 19px;
    }

    .promo-wear-intro h2,
    .promo-wear-options__heading h2,
    .promo-wear-why__content h2,
    .promo-wear-uses__intro h2,
    .promo-wear-process__heading h2 {
        font-size: 2.85rem;
    }

    .promo-wear-options__grid,
    .promo-wear-uses__grid,
    .promo-wear-process__grid {
        grid-template-columns: 1fr;
    }

    .promo-wear-options__grid article {
        min-height: 220px;
    }

    .promo-wear-why__visual,
    .promo-wear-why__visual img {
        min-height: 340px;
        height: 340px;
    }

    .promo-wear-uses__grid article,
    .promo-wear-process__grid article {
        min-height: 215px;
    }

    .promo-wear-uses__grid article > span,
    .promo-wear-process__grid article > span {
        margin-bottom: 33px;
    }
}

/* PRODUCT DETAIL - T-SHIRTS */
.product-shirts-page{width:100%;overflow:hidden;background:#fff}
.product-shirts-hero{background:radial-gradient(circle at 15% 24%,rgba(61,165,28,.07),transparent 29%),#fff}
.product-shirts-hero__grid{display:grid;min-height:640px;grid-template-columns:minmax(0,.96fr) minmax(0,1.04fr);align-items:stretch}
.product-shirts-hero__copy{display:flex;flex-direction:column;justify-content:center;padding:78px 70px 70px 0}
.product-shirts-hero__copy h1{max-width:790px;margin:0;font-family:var(--font-heading);font-size:clamp(4rem,5.45vw,6.1rem);font-weight:800;line-height:.9;letter-spacing:-.07em}
.product-shirts-hero__copy h1 span{color:var(--green)}
.product-shirts-hero__copy>p{max-width:625px;margin:28px 0 0;color:var(--text-soft);font-size:1.02rem;line-height:1.68}
.product-shirts-hero__actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:29px}
.product-shirts-hero__meta{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:38px;padding-top:23px;border-top:1px solid var(--line)}
.product-shirts-hero__meta div{display:grid;gap:4px}.product-shirts-hero__meta strong{font-size:.8rem;font-weight:800}.product-shirts-hero__meta span{color:var(--text-soft);font-size:.7rem;line-height:1.4}
.product-shirts-hero__visual{position:relative;min-height:640px;overflow:hidden;background:var(--bg-soft)}.product-shirts-hero__visual>img{width:100%;height:100%;min-height:640px;object-fit:cover}
.product-shirts-hero__visual:after{position:absolute;inset:0;background:linear-gradient(180deg,transparent 45%,rgba(12,25,15,.18));content:"";pointer-events:none}
.product-shirts-hero__card{position:absolute;z-index:2;right:28px;bottom:28px;width:min(310px,calc(100% - 56px));padding:23px 24px;border-radius:17px;background:rgba(255,255,255,.95);box-shadow:0 18px 42px rgba(15,31,18,.16)}
.product-shirts-hero__card span{display:block;color:var(--green);font-size:.58rem;font-weight:900;letter-spacing:.14em}.product-shirts-hero__card strong{display:block;margin-top:9px;font-family:var(--font-heading);font-size:1.35rem;font-weight:800;line-height:1.08;letter-spacing:-.04em}.product-shirts-hero__card small{display:block;margin-top:9px;color:var(--text-soft);font-size:.69rem;line-height:1.45}
.product-shirts-intro h2,.product-shirts-options__heading h2,.product-shirts-print__content h2,.product-shirts-uses__intro h2,.product-shirts-process__heading h2{margin:0;font-family:var(--font-heading);font-size:clamp(2.8rem,4vw,4.7rem);font-weight:800;line-height:.96;letter-spacing:-.06em}
.product-shirts-intro{padding:94px 0}.product-shirts-intro__grid{display:grid;grid-template-columns:1fr 1fr;gap:90px;align-items:start}.product-shirts-intro__content{padding-top:26px}.product-shirts-intro__content p{margin:0;color:var(--text-soft);font-size:.96rem;line-height:1.72}.product-shirts-intro__content p+p{margin-top:18px}
.product-shirts-options,.product-shirts-uses{padding:92px 0 98px;background:radial-gradient(circle at 82% 18%,rgba(61,165,28,.07),transparent 27%),var(--bg-soft)}
.product-shirts-options__heading,.product-shirts-process__heading{display:grid;grid-template-columns:1fr minmax(280px,440px);align-items:end;gap:72px;margin-bottom:42px}.product-shirts-options__heading>p,.product-shirts-process__heading>p{margin:0 0 4px;color:var(--text-soft);font-size:.94rem;line-height:1.65}
.product-shirts-options__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.product-shirts-options__grid article,.product-shirts-uses__grid article,.product-shirts-process__grid article{padding:28px 24px;border:1px solid #dce4d9;border-radius:18px;background:#fff}.product-shirts-options__grid article{min-height:240px}
.product-shirts-options__grid article>span,.product-shirts-uses__grid article>span,.product-shirts-process__grid article>span{display:block;margin-bottom:46px;color:var(--green);font-size:.66rem;font-weight:900;letter-spacing:.12em}
.product-shirts-options__grid h3,.product-shirts-uses__grid h3,.product-shirts-process__grid h3{margin:0;font-family:var(--font-heading);font-size:1.2rem;font-weight:800;letter-spacing:-.03em}.product-shirts-options__grid p,.product-shirts-uses__grid p,.product-shirts-process__grid p{margin:9px 0 0;color:var(--text-soft);font-size:.79rem;line-height:1.58}
.product-shirts-print{padding:100px 0}.product-shirts-print__grid{display:grid;grid-template-columns:minmax(0,1.03fr) minmax(360px,.97fr);gap:82px;align-items:center}.product-shirts-print__visual{position:relative;min-height:590px;overflow:hidden;border-radius:20px;background:var(--bg-soft)}.product-shirts-print__visual img{width:100%;height:590px;object-fit:cover}
.product-shirts-print__badge{position:absolute;left:24px;bottom:24px;padding:20px 22px;border-radius:14px;background:var(--green-deep);color:#fff}.product-shirts-print__badge span,.product-shirts-print__badge strong,.product-shirts-print__badge small{display:block}.product-shirts-print__badge span{color:var(--lime);font-size:.55rem;font-weight:900;letter-spacing:.13em}.product-shirts-print__badge strong{margin-top:4px;font-size:.9rem}.product-shirts-print__badge small{margin-top:4px;color:rgba(255,255,255,.72);font-size:.62rem}
.product-shirts-print__content>p{max-width:570px;margin:25px 0 28px;color:var(--text-soft);font-size:.94rem;line-height:1.68}.product-shirts-print__list{display:grid;margin-bottom:30px;border-top:1px solid var(--line)}.product-shirts-print__list>div{display:grid;grid-template-columns:47px minmax(0,1fr);gap:12px;padding:17px 0;border-bottom:1px solid var(--line)}.product-shirts-print__list>div>span{color:var(--green);font-size:.62rem;font-weight:900}.product-shirts-print__list strong,.product-shirts-print__list small{display:block}.product-shirts-print__list strong{font-size:.84rem}.product-shirts-print__list small{margin-top:3px;color:var(--text-soft);font-size:.69rem}
.product-shirts-uses__grid,.product-shirts-process__grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.product-shirts-uses__intro{max-width:820px;margin-bottom:40px}.product-shirts-uses__grid article{min-height:255px}.product-shirts-process{padding:96px 0 100px}.product-shirts-process__grid article{min-height:230px}
@media(max-width:1180px){.product-shirts-hero__copy{padding-right:45px}.product-shirts-print__grid{gap:55px}.product-shirts-uses__grid,.product-shirts-process__grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:860px){.product-shirts-hero__grid{width:100%;min-height:0;grid-template-columns:1fr}.product-shirts-hero__copy{width:calc(100% - 40px);margin-inline:auto;padding:54px 0 44px}.product-shirts-hero__copy h1{font-size:clamp(3.4rem,14vw,5rem)}.product-shirts-hero__meta{grid-template-columns:1fr 1fr}.product-shirts-hero__meta div:last-child{grid-column:1/-1}.product-shirts-hero__visual,.product-shirts-hero__visual>img{min-height:440px;height:440px}.product-shirts-intro{padding:70px 0}.product-shirts-intro__grid,.product-shirts-print__grid{grid-template-columns:1fr;gap:15px}.product-shirts-intro__content{padding-top:0}.product-shirts-options__heading,.product-shirts-process__heading{grid-template-columns:1fr;gap:18px;margin-bottom:30px}.product-shirts-options__grid{grid-template-columns:repeat(2,minmax(0,1fr))}.product-shirts-print{padding:72px 0}.product-shirts-print__grid{gap:42px}.product-shirts-print__visual,.product-shirts-print__visual img{min-height:430px;height:430px}.product-shirts-process{padding:72px 0}}
@media(max-width:560px){.product-shirts-hero__copy{width:calc(100% - 36px);padding:47px 0 40px}.product-shirts-hero__copy h1{font-size:clamp(3rem,14.5vw,4.15rem)}.product-shirts-hero__actions{display:grid;grid-template-columns:1fr}.product-shirts-hero__actions .classic-btn{width:100%}.product-shirts-hero__meta{grid-template-columns:1fr}.product-shirts-hero__meta div:last-child{grid-column:auto}.product-shirts-hero__visual,.product-shirts-hero__visual>img{min-height:380px;height:380px}.product-shirts-hero__card{right:18px;bottom:18px;width:calc(100% - 36px);padding:19px}.product-shirts-intro h2,.product-shirts-options__heading h2,.product-shirts-print__content h2,.product-shirts-uses__intro h2,.product-shirts-process__heading h2{font-size:2.85rem}.product-shirts-options__grid,.product-shirts-uses__grid,.product-shirts-process__grid{grid-template-columns:1fr}.product-shirts-print__visual,.product-shirts-print__visual img{min-height:340px;height:340px}}

/* PRODUCT DETAIL - HOODIES & SWEATERS */
.product-hoodies-page{width:100%;overflow:hidden;background:#fff}
.product-hoodies-hero{background:radial-gradient(circle at 15% 24%,rgba(61,165,28,.07),transparent 29%),#fff}
.product-hoodies-hero__grid{display:grid;min-height:640px;grid-template-columns:minmax(0,.96fr) minmax(0,1.04fr);align-items:stretch}
.product-hoodies-hero__copy{display:flex;flex-direction:column;justify-content:center;padding:78px 70px 70px 0}
.product-hoodies-hero__copy h1{max-width:790px;margin:0;font-family:var(--font-heading);font-size:clamp(4rem,5.45vw,6.1rem);font-weight:800;line-height:.9;letter-spacing:-.07em}
.product-hoodies-hero__copy h1 span{color:var(--green)}
.product-hoodies-hero__copy>p{max-width:625px;margin:28px 0 0;color:var(--text-soft);font-size:1.02rem;line-height:1.68}
.product-hoodies-hero__actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:29px}
.product-hoodies-hero__meta{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:38px;padding-top:23px;border-top:1px solid var(--line)}
.product-hoodies-hero__meta div{display:grid;gap:4px}.product-hoodies-hero__meta strong{font-size:.8rem;font-weight:800}.product-hoodies-hero__meta span{color:var(--text-soft);font-size:.7rem;line-height:1.4}
.product-hoodies-hero__visual{position:relative;min-height:640px;overflow:hidden;background:var(--bg-soft)}.product-hoodies-hero__visual>img{width:100%;height:100%;min-height:640px;object-fit:cover}
.product-hoodies-hero__visual:after{position:absolute;inset:0;background:linear-gradient(180deg,transparent 45%,rgba(12,25,15,.18));content:"";pointer-events:none}
.product-hoodies-hero__card{position:absolute;z-index:2;right:28px;bottom:28px;width:min(310px,calc(100% - 56px));padding:23px 24px;border-radius:17px;background:rgba(255,255,255,.95);box-shadow:0 18px 42px rgba(15,31,18,.16)}
.product-hoodies-hero__card span{display:block;color:var(--green);font-size:.58rem;font-weight:900;letter-spacing:.14em}.product-hoodies-hero__card strong{display:block;margin-top:9px;font-family:var(--font-heading);font-size:1.35rem;font-weight:800;line-height:1.08;letter-spacing:-.04em}.product-hoodies-hero__card small{display:block;margin-top:9px;color:var(--text-soft);font-size:.69rem;line-height:1.45}
.product-hoodies-intro h2,.product-hoodies-options__heading h2,.product-hoodies-print__content h2,.product-hoodies-uses__intro h2,.product-hoodies-process__heading h2{margin:0;font-family:var(--font-heading);font-size:clamp(2.8rem,4vw,4.7rem);font-weight:800;line-height:.96;letter-spacing:-.06em}
.product-hoodies-intro{padding:94px 0}.product-hoodies-intro__grid{display:grid;grid-template-columns:1fr 1fr;gap:90px;align-items:start}.product-hoodies-intro__content{padding-top:26px}.product-hoodies-intro__content p{margin:0;color:var(--text-soft);font-size:.96rem;line-height:1.72}.product-hoodies-intro__content p+p{margin-top:18px}
.product-hoodies-options,.product-hoodies-uses{padding:92px 0 98px;background:radial-gradient(circle at 82% 18%,rgba(61,165,28,.07),transparent 27%),var(--bg-soft)}
.product-hoodies-options__heading,.product-hoodies-process__heading{display:grid;grid-template-columns:1fr minmax(280px,440px);align-items:end;gap:72px;margin-bottom:42px}.product-hoodies-options__heading>p,.product-hoodies-process__heading>p{margin:0 0 4px;color:var(--text-soft);font-size:.94rem;line-height:1.65}
.product-hoodies-options__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.product-hoodies-options__grid article,.product-hoodies-uses__grid article,.product-hoodies-process__grid article{padding:28px 24px;border:1px solid #dce4d9;border-radius:18px;background:#fff}.product-hoodies-options__grid article{min-height:240px}
.product-hoodies-options__grid article>span,.product-hoodies-uses__grid article>span,.product-hoodies-process__grid article>span{display:block;margin-bottom:46px;color:var(--green);font-size:.66rem;font-weight:900;letter-spacing:.12em}
.product-hoodies-options__grid h3,.product-hoodies-uses__grid h3,.product-hoodies-process__grid h3{margin:0;font-family:var(--font-heading);font-size:1.2rem;font-weight:800;letter-spacing:-.03em}.product-hoodies-options__grid p,.product-hoodies-uses__grid p,.product-hoodies-process__grid p{margin:9px 0 0;color:var(--text-soft);font-size:.79rem;line-height:1.58}
.product-hoodies-print{padding:100px 0}.product-hoodies-print__grid{display:grid;grid-template-columns:minmax(0,1.03fr) minmax(360px,.97fr);gap:82px;align-items:center}.product-hoodies-print__visual{position:relative;min-height:590px;overflow:hidden;border-radius:20px;background:var(--bg-soft)}.product-hoodies-print__visual img{width:100%;height:590px;object-fit:cover}
.product-hoodies-print__badge{position:absolute;left:24px;bottom:24px;padding:20px 22px;border-radius:14px;background:var(--green-deep);color:#fff}.product-hoodies-print__badge span,.product-hoodies-print__badge strong,.product-hoodies-print__badge small{display:block}.product-hoodies-print__badge span{color:var(--lime);font-size:.55rem;font-weight:900;letter-spacing:.13em}.product-hoodies-print__badge strong{margin-top:4px;font-size:.9rem}.product-hoodies-print__badge small{margin-top:4px;color:rgba(255,255,255,.72);font-size:.62rem}
.product-hoodies-print__content>p{max-width:570px;margin:25px 0 28px;color:var(--text-soft);font-size:.94rem;line-height:1.68}.product-hoodies-print__list{display:grid;margin-bottom:30px;border-top:1px solid var(--line)}.product-hoodies-print__list>div{display:grid;grid-template-columns:47px minmax(0,1fr);gap:12px;padding:17px 0;border-bottom:1px solid var(--line)}.product-hoodies-print__list>div>span{color:var(--green);font-size:.62rem;font-weight:900}.product-hoodies-print__list strong,.product-hoodies-print__list small{display:block}.product-hoodies-print__list strong{font-size:.84rem}.product-hoodies-print__list small{margin-top:3px;color:var(--text-soft);font-size:.69rem}
.product-hoodies-uses__grid,.product-hoodies-process__grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.product-hoodies-uses__intro{max-width:820px;margin-bottom:40px}.product-hoodies-uses__grid article{min-height:255px}.product-hoodies-process{padding:96px 0 100px}.product-hoodies-process__grid article{min-height:230px}
@media(max-width:1180px){.product-hoodies-hero__copy{padding-right:45px}.product-hoodies-print__grid{gap:55px}.product-hoodies-uses__grid,.product-hoodies-process__grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:860px){.product-hoodies-hero__grid{width:100%;min-height:0;grid-template-columns:1fr}.product-hoodies-hero__copy{width:calc(100% - 40px);margin-inline:auto;padding:54px 0 44px}.product-hoodies-hero__copy h1{font-size:clamp(3.4rem,14vw,5rem)}.product-hoodies-hero__meta{grid-template-columns:1fr 1fr}.product-hoodies-hero__meta div:last-child{grid-column:1/-1}.product-hoodies-hero__visual,.product-hoodies-hero__visual>img{min-height:440px;height:440px}.product-hoodies-intro{padding:70px 0}.product-hoodies-intro__grid,.product-hoodies-print__grid{grid-template-columns:1fr;gap:15px}.product-hoodies-intro__content{padding-top:0}.product-hoodies-options__heading,.product-hoodies-process__heading{grid-template-columns:1fr;gap:18px;margin-bottom:30px}.product-hoodies-options__grid{grid-template-columns:repeat(2,minmax(0,1fr))}.product-hoodies-print{padding:72px 0}.product-hoodies-print__grid{gap:42px}.product-hoodies-print__visual,.product-hoodies-print__visual img{min-height:430px;height:430px}.product-hoodies-process{padding:72px 0}}
@media(max-width:560px){.product-hoodies-hero__copy{width:calc(100% - 36px);padding:47px 0 40px}.product-hoodies-hero__copy h1{font-size:clamp(3rem,14.5vw,4.15rem)}.product-hoodies-hero__actions{display:grid;grid-template-columns:1fr}.product-hoodies-hero__actions .classic-btn{width:100%}.product-hoodies-hero__meta{grid-template-columns:1fr}.product-hoodies-hero__meta div:last-child{grid-column:auto}.product-hoodies-hero__visual,.product-hoodies-hero__visual>img{min-height:380px;height:380px}.product-hoodies-hero__card{right:18px;bottom:18px;width:calc(100% - 36px);padding:19px}.product-hoodies-intro h2,.product-hoodies-options__heading h2,.product-hoodies-print__content h2,.product-hoodies-uses__intro h2,.product-hoodies-process__heading h2{font-size:2.85rem}.product-hoodies-options__grid,.product-hoodies-uses__grid,.product-hoodies-process__grid{grid-template-columns:1fr}.product-hoodies-print__visual,.product-hoodies-print__visual img{min-height:340px;height:340px}}

/* PRODUCT DETAIL - POLO'S */
.product-polos-page{width:100%;overflow:hidden;background:#fff}
.product-polos-hero{background:radial-gradient(circle at 15% 24%,rgba(61,165,28,.07),transparent 29%),#fff}
.product-polos-hero__grid{display:grid;min-height:640px;grid-template-columns:minmax(0,.96fr) minmax(0,1.04fr);align-items:stretch}
.product-polos-hero__copy{display:flex;flex-direction:column;justify-content:center;padding:78px 70px 70px 0}
.product-polos-hero__copy h1{max-width:790px;margin:0;font-family:var(--font-heading);font-size:clamp(4rem,5.45vw,6.1rem);font-weight:800;line-height:.9;letter-spacing:-.07em}
.product-polos-hero__copy h1 span{color:var(--green)}
.product-polos-hero__copy>p{max-width:625px;margin:28px 0 0;color:var(--text-soft);font-size:1.02rem;line-height:1.68}
.product-polos-hero__actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:29px}
.product-polos-hero__meta{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:38px;padding-top:23px;border-top:1px solid var(--line)}
.product-polos-hero__meta div{display:grid;gap:4px}.product-polos-hero__meta strong{font-size:.8rem;font-weight:800}.product-polos-hero__meta span{color:var(--text-soft);font-size:.7rem;line-height:1.4}
.product-polos-hero__visual{position:relative;min-height:640px;overflow:hidden;background:var(--bg-soft)}.product-polos-hero__visual>img{width:100%;height:100%;min-height:640px;object-fit:cover}
.product-polos-hero__visual:after{position:absolute;inset:0;background:linear-gradient(180deg,transparent 45%,rgba(12,25,15,.18));content:"";pointer-events:none}
.product-polos-hero__card{position:absolute;z-index:2;right:28px;bottom:28px;width:min(310px,calc(100% - 56px));padding:23px 24px;border-radius:17px;background:rgba(255,255,255,.95);box-shadow:0 18px 42px rgba(15,31,18,.16)}
.product-polos-hero__card span{display:block;color:var(--green);font-size:.58rem;font-weight:900;letter-spacing:.14em}.product-polos-hero__card strong{display:block;margin-top:9px;font-family:var(--font-heading);font-size:1.35rem;font-weight:800;line-height:1.08;letter-spacing:-.04em}.product-polos-hero__card small{display:block;margin-top:9px;color:var(--text-soft);font-size:.69rem;line-height:1.45}
.product-polos-intro h2,.product-polos-options__heading h2,.product-polos-print__content h2,.product-polos-uses__intro h2,.product-polos-process__heading h2{margin:0;font-family:var(--font-heading);font-size:clamp(2.8rem,4vw,4.7rem);font-weight:800;line-height:.96;letter-spacing:-.06em}
.product-polos-intro{padding:94px 0}.product-polos-intro__grid{display:grid;grid-template-columns:1fr 1fr;gap:90px;align-items:start}.product-polos-intro__content{padding-top:26px}.product-polos-intro__content p{margin:0;color:var(--text-soft);font-size:.96rem;line-height:1.72}.product-polos-intro__content p+p{margin-top:18px}
.product-polos-options,.product-polos-uses{padding:92px 0 98px;background:radial-gradient(circle at 82% 18%,rgba(61,165,28,.07),transparent 27%),var(--bg-soft)}
.product-polos-options__heading,.product-polos-process__heading{display:grid;grid-template-columns:1fr minmax(280px,440px);align-items:end;gap:72px;margin-bottom:42px}.product-polos-options__heading>p,.product-polos-process__heading>p{margin:0 0 4px;color:var(--text-soft);font-size:.94rem;line-height:1.65}
.product-polos-options__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.product-polos-options__grid article,.product-polos-uses__grid article,.product-polos-process__grid article{padding:28px 24px;border:1px solid #dce4d9;border-radius:18px;background:#fff}.product-polos-options__grid article{min-height:240px}
.product-polos-options__grid article>span,.product-polos-uses__grid article>span,.product-polos-process__grid article>span{display:block;margin-bottom:46px;color:var(--green);font-size:.66rem;font-weight:900;letter-spacing:.12em}
.product-polos-options__grid h3,.product-polos-uses__grid h3,.product-polos-process__grid h3{margin:0;font-family:var(--font-heading);font-size:1.2rem;font-weight:800;letter-spacing:-.03em}.product-polos-options__grid p,.product-polos-uses__grid p,.product-polos-process__grid p{margin:9px 0 0;color:var(--text-soft);font-size:.79rem;line-height:1.58}
.product-polos-print{padding:100px 0}.product-polos-print__grid{display:grid;grid-template-columns:minmax(0,1.03fr) minmax(360px,.97fr);gap:82px;align-items:center}.product-polos-print__visual{position:relative;min-height:590px;overflow:hidden;border-radius:20px;background:var(--bg-soft)}.product-polos-print__visual img{width:100%;height:590px;object-fit:cover}
.product-polos-print__badge{position:absolute;left:24px;bottom:24px;padding:20px 22px;border-radius:14px;background:var(--green-deep);color:#fff}.product-polos-print__badge span,.product-polos-print__badge strong,.product-polos-print__badge small{display:block}.product-polos-print__badge span{color:var(--lime);font-size:.55rem;font-weight:900;letter-spacing:.13em}.product-polos-print__badge strong{margin-top:4px;font-size:.9rem}.product-polos-print__badge small{margin-top:4px;color:rgba(255,255,255,.72);font-size:.62rem}
.product-polos-print__content>p{max-width:570px;margin:25px 0 28px;color:var(--text-soft);font-size:.94rem;line-height:1.68}.product-polos-print__list{display:grid;margin-bottom:30px;border-top:1px solid var(--line)}.product-polos-print__list>div{display:grid;grid-template-columns:47px minmax(0,1fr);gap:12px;padding:17px 0;border-bottom:1px solid var(--line)}.product-polos-print__list>div>span{color:var(--green);font-size:.62rem;font-weight:900}.product-polos-print__list strong,.product-polos-print__list small{display:block}.product-polos-print__list strong{font-size:.84rem}.product-polos-print__list small{margin-top:3px;color:var(--text-soft);font-size:.69rem}
.product-polos-uses__grid,.product-polos-process__grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.product-polos-uses__intro{max-width:820px;margin-bottom:40px}.product-polos-uses__grid article{min-height:255px}.product-polos-process{padding:96px 0 100px}.product-polos-process__grid article{min-height:230px}
@media(max-width:1180px){.product-polos-hero__copy{padding-right:45px}.product-polos-print__grid{gap:55px}.product-polos-uses__grid,.product-polos-process__grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:860px){.product-polos-hero__grid{width:100%;min-height:0;grid-template-columns:1fr}.product-polos-hero__copy{width:calc(100% - 40px);margin-inline:auto;padding:54px 0 44px}.product-polos-hero__copy h1{font-size:clamp(3.4rem,14vw,5rem)}.product-polos-hero__meta{grid-template-columns:1fr 1fr}.product-polos-hero__meta div:last-child{grid-column:1/-1}.product-polos-hero__visual,.product-polos-hero__visual>img{min-height:440px;height:440px}.product-polos-intro{padding:70px 0}.product-polos-intro__grid,.product-polos-print__grid{grid-template-columns:1fr;gap:15px}.product-polos-intro__content{padding-top:0}.product-polos-options__heading,.product-polos-process__heading{grid-template-columns:1fr;gap:18px;margin-bottom:30px}.product-polos-options__grid{grid-template-columns:repeat(2,minmax(0,1fr))}.product-polos-print{padding:72px 0}.product-polos-print__grid{gap:42px}.product-polos-print__visual,.product-polos-print__visual img{min-height:430px;height:430px}.product-polos-process{padding:72px 0}}
@media(max-width:560px){.product-polos-hero__copy{width:calc(100% - 36px);padding:47px 0 40px}.product-polos-hero__copy h1{font-size:clamp(3rem,14.5vw,4.15rem)}.product-polos-hero__actions{display:grid;grid-template-columns:1fr}.product-polos-hero__actions .classic-btn{width:100%}.product-polos-hero__meta{grid-template-columns:1fr}.product-polos-hero__meta div:last-child{grid-column:auto}.product-polos-hero__visual,.product-polos-hero__visual>img{min-height:380px;height:380px}.product-polos-hero__card{right:18px;bottom:18px;width:calc(100% - 36px);padding:19px}.product-polos-intro h2,.product-polos-options__heading h2,.product-polos-print__content h2,.product-polos-uses__intro h2,.product-polos-process__heading h2{font-size:2.85rem}.product-polos-options__grid,.product-polos-uses__grid,.product-polos-process__grid{grid-template-columns:1fr}.product-polos-print__visual,.product-polos-print__visual img{min-height:340px;height:340px}}

/* PRODUCT DETAIL - JASSEN */
.product-jackets-page{width:100%;overflow:hidden;background:#fff}
.product-jackets-hero{background:radial-gradient(circle at 15% 24%,rgba(61,165,28,.07),transparent 29%),#fff}
.product-jackets-hero__grid{display:grid;min-height:640px;grid-template-columns:minmax(0,.96fr) minmax(0,1.04fr);align-items:stretch}
.product-jackets-hero__copy{display:flex;flex-direction:column;justify-content:center;padding:78px 70px 70px 0}
.product-jackets-hero__copy h1{max-width:790px;margin:0;font-family:var(--font-heading);font-size:clamp(4rem,5.45vw,6.1rem);font-weight:800;line-height:.9;letter-spacing:-.07em}
.product-jackets-hero__copy h1 span{color:var(--green)}
.product-jackets-hero__copy>p{max-width:625px;margin:28px 0 0;color:var(--text-soft);font-size:1.02rem;line-height:1.68}
.product-jackets-hero__actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:29px}
.product-jackets-hero__meta{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:38px;padding-top:23px;border-top:1px solid var(--line)}
.product-jackets-hero__meta div{display:grid;gap:4px}.product-jackets-hero__meta strong{font-size:.8rem;font-weight:800}.product-jackets-hero__meta span{color:var(--text-soft);font-size:.7rem;line-height:1.4}
.product-jackets-hero__visual{position:relative;min-height:640px;overflow:hidden;background:var(--bg-soft)}.product-jackets-hero__visual>img{width:100%;height:100%;min-height:640px;object-fit:cover}
.product-jackets-hero__visual:after{position:absolute;inset:0;background:linear-gradient(180deg,transparent 45%,rgba(12,25,15,.18));content:"";pointer-events:none}
.product-jackets-hero__card{position:absolute;z-index:2;right:28px;bottom:28px;width:min(310px,calc(100% - 56px));padding:23px 24px;border-radius:17px;background:rgba(255,255,255,.95);box-shadow:0 18px 42px rgba(15,31,18,.16)}
.product-jackets-hero__card span{display:block;color:var(--green);font-size:.58rem;font-weight:900;letter-spacing:.14em}.product-jackets-hero__card strong{display:block;margin-top:9px;font-family:var(--font-heading);font-size:1.35rem;font-weight:800;line-height:1.08;letter-spacing:-.04em}.product-jackets-hero__card small{display:block;margin-top:9px;color:var(--text-soft);font-size:.69rem;line-height:1.45}
.product-jackets-intro h2,.product-jackets-options__heading h2,.product-jackets-print__content h2,.product-jackets-uses__intro h2,.product-jackets-process__heading h2{margin:0;font-family:var(--font-heading);font-size:clamp(2.8rem,4vw,4.7rem);font-weight:800;line-height:.96;letter-spacing:-.06em}
.product-jackets-intro{padding:94px 0}.product-jackets-intro__grid{display:grid;grid-template-columns:1fr 1fr;gap:90px;align-items:start}.product-jackets-intro__content{padding-top:26px}.product-jackets-intro__content p{margin:0;color:var(--text-soft);font-size:.96rem;line-height:1.72}.product-jackets-intro__content p+p{margin-top:18px}
.product-jackets-options,.product-jackets-uses{padding:92px 0 98px;background:radial-gradient(circle at 82% 18%,rgba(61,165,28,.07),transparent 27%),var(--bg-soft)}
.product-jackets-options__heading,.product-jackets-process__heading{display:grid;grid-template-columns:1fr minmax(280px,440px);align-items:end;gap:72px;margin-bottom:42px}.product-jackets-options__heading>p,.product-jackets-process__heading>p{margin:0 0 4px;color:var(--text-soft);font-size:.94rem;line-height:1.65}
.product-jackets-options__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.product-jackets-options__grid article,.product-jackets-uses__grid article,.product-jackets-process__grid article{padding:28px 24px;border:1px solid #dce4d9;border-radius:18px;background:#fff}.product-jackets-options__grid article{min-height:240px}
.product-jackets-options__grid article>span,.product-jackets-uses__grid article>span,.product-jackets-process__grid article>span{display:block;margin-bottom:46px;color:var(--green);font-size:.66rem;font-weight:900;letter-spacing:.12em}
.product-jackets-options__grid h3,.product-jackets-uses__grid h3,.product-jackets-process__grid h3{margin:0;font-family:var(--font-heading);font-size:1.2rem;font-weight:800;letter-spacing:-.03em}.product-jackets-options__grid p,.product-jackets-uses__grid p,.product-jackets-process__grid p{margin:9px 0 0;color:var(--text-soft);font-size:.79rem;line-height:1.58}
.product-jackets-print{padding:100px 0}.product-jackets-print__grid{display:grid;grid-template-columns:minmax(0,1.03fr) minmax(360px,.97fr);gap:82px;align-items:center}.product-jackets-print__visual{position:relative;min-height:590px;overflow:hidden;border-radius:20px;background:var(--bg-soft)}.product-jackets-print__visual img{width:100%;height:590px;object-fit:cover}
.product-jackets-print__badge{position:absolute;left:24px;bottom:24px;padding:20px 22px;border-radius:14px;background:var(--green-deep);color:#fff}.product-jackets-print__badge span,.product-jackets-print__badge strong,.product-jackets-print__badge small{display:block}.product-jackets-print__badge span{color:var(--lime);font-size:.55rem;font-weight:900;letter-spacing:.13em}.product-jackets-print__badge strong{margin-top:4px;font-size:.9rem}.product-jackets-print__badge small{margin-top:4px;color:rgba(255,255,255,.72);font-size:.62rem}
.product-jackets-print__content>p{max-width:570px;margin:25px 0 28px;color:var(--text-soft);font-size:.94rem;line-height:1.68}.product-jackets-print__list{display:grid;margin-bottom:30px;border-top:1px solid var(--line)}.product-jackets-print__list>div{display:grid;grid-template-columns:47px minmax(0,1fr);gap:12px;padding:17px 0;border-bottom:1px solid var(--line)}.product-jackets-print__list>div>span{color:var(--green);font-size:.62rem;font-weight:900}.product-jackets-print__list strong,.product-jackets-print__list small{display:block}.product-jackets-print__list strong{font-size:.84rem}.product-jackets-print__list small{margin-top:3px;color:var(--text-soft);font-size:.69rem}
.product-jackets-uses__grid,.product-jackets-process__grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.product-jackets-uses__intro{max-width:820px;margin-bottom:40px}.product-jackets-uses__grid article{min-height:255px}.product-jackets-process{padding:96px 0 100px}.product-jackets-process__grid article{min-height:230px}
@media(max-width:1180px){.product-jackets-hero__copy{padding-right:45px}.product-jackets-print__grid{gap:55px}.product-jackets-uses__grid,.product-jackets-process__grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:860px){.product-jackets-hero__grid{width:100%;min-height:0;grid-template-columns:1fr}.product-jackets-hero__copy{width:calc(100% - 40px);margin-inline:auto;padding:54px 0 44px}.product-jackets-hero__copy h1{font-size:clamp(3.4rem,14vw,5rem)}.product-jackets-hero__meta{grid-template-columns:1fr 1fr}.product-jackets-hero__meta div:last-child{grid-column:1/-1}.product-jackets-hero__visual,.product-jackets-hero__visual>img{min-height:440px;height:440px}.product-jackets-intro{padding:70px 0}.product-jackets-intro__grid,.product-jackets-print__grid{grid-template-columns:1fr;gap:15px}.product-jackets-intro__content{padding-top:0}.product-jackets-options__heading,.product-jackets-process__heading{grid-template-columns:1fr;gap:18px;margin-bottom:30px}.product-jackets-options__grid{grid-template-columns:repeat(2,minmax(0,1fr))}.product-jackets-print{padding:72px 0}.product-jackets-print__grid{gap:42px}.product-jackets-print__visual,.product-jackets-print__visual img{min-height:430px;height:430px}.product-jackets-process{padding:72px 0}}
@media(max-width:560px){.product-jackets-hero__copy{width:calc(100% - 36px);padding:47px 0 40px}.product-jackets-hero__copy h1{font-size:clamp(3rem,14.5vw,4.15rem)}.product-jackets-hero__actions{display:grid;grid-template-columns:1fr}.product-jackets-hero__actions .classic-btn{width:100%}.product-jackets-hero__meta{grid-template-columns:1fr}.product-jackets-hero__meta div:last-child{grid-column:auto}.product-jackets-hero__visual,.product-jackets-hero__visual>img{min-height:380px;height:380px}.product-jackets-hero__card{right:18px;bottom:18px;width:calc(100% - 36px);padding:19px}.product-jackets-intro h2,.product-jackets-options__heading h2,.product-jackets-print__content h2,.product-jackets-uses__intro h2,.product-jackets-process__heading h2{font-size:2.85rem}.product-jackets-options__grid,.product-jackets-uses__grid,.product-jackets-process__grid{grid-template-columns:1fr}.product-jackets-print__visual,.product-jackets-print__visual img{min-height:340px;height:340px}}

/* PRODUCT DETAIL - PETTEN */
.product-caps-page{width:100%;overflow:hidden;background:#fff}
.product-caps-hero{background:radial-gradient(circle at 15% 24%,rgba(61,165,28,.07),transparent 29%),#fff}
.product-caps-hero__grid{display:grid;min-height:640px;grid-template-columns:minmax(0,.96fr) minmax(0,1.04fr);align-items:stretch}
.product-caps-hero__copy{display:flex;flex-direction:column;justify-content:center;padding:78px 70px 70px 0}
.product-caps-hero__copy h1{max-width:790px;margin:0;font-family:var(--font-heading);font-size:clamp(4rem,5.45vw,6.1rem);font-weight:800;line-height:.9;letter-spacing:-.07em}
.product-caps-hero__copy h1 span{color:var(--green)}
.product-caps-hero__copy>p{max-width:625px;margin:28px 0 0;color:var(--text-soft);font-size:1.02rem;line-height:1.68}
.product-caps-hero__actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:29px}
.product-caps-hero__meta{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:38px;padding-top:23px;border-top:1px solid var(--line)}
.product-caps-hero__meta div{display:grid;gap:4px}.product-caps-hero__meta strong{font-size:.8rem;font-weight:800}.product-caps-hero__meta span{color:var(--text-soft);font-size:.7rem;line-height:1.4}
.product-caps-hero__visual{position:relative;min-height:640px;overflow:hidden;background:var(--bg-soft)}.product-caps-hero__visual>img{width:100%;height:100%;min-height:640px;object-fit:cover}
.product-caps-hero__visual:after{position:absolute;inset:0;background:linear-gradient(180deg,transparent 45%,rgba(12,25,15,.18));content:"";pointer-events:none}
.product-caps-hero__card{position:absolute;z-index:2;right:28px;bottom:28px;width:min(310px,calc(100% - 56px));padding:23px 24px;border-radius:17px;background:rgba(255,255,255,.95);box-shadow:0 18px 42px rgba(15,31,18,.16)}
.product-caps-hero__card span{display:block;color:var(--green);font-size:.58rem;font-weight:900;letter-spacing:.14em}.product-caps-hero__card strong{display:block;margin-top:9px;font-family:var(--font-heading);font-size:1.35rem;font-weight:800;line-height:1.08;letter-spacing:-.04em}.product-caps-hero__card small{display:block;margin-top:9px;color:var(--text-soft);font-size:.69rem;line-height:1.45}
.product-caps-intro h2,.product-caps-options__heading h2,.product-caps-print__content h2,.product-caps-uses__intro h2,.product-caps-process__heading h2{margin:0;font-family:var(--font-heading);font-size:clamp(2.8rem,4vw,4.7rem);font-weight:800;line-height:.96;letter-spacing:-.06em}
.product-caps-intro{padding:94px 0}.product-caps-intro__grid{display:grid;grid-template-columns:1fr 1fr;gap:90px;align-items:start}.product-caps-intro__content{padding-top:26px}.product-caps-intro__content p{margin:0;color:var(--text-soft);font-size:.96rem;line-height:1.72}.product-caps-intro__content p+p{margin-top:18px}
.product-caps-options,.product-caps-uses{padding:92px 0 98px;background:radial-gradient(circle at 82% 18%,rgba(61,165,28,.07),transparent 27%),var(--bg-soft)}
.product-caps-options__heading,.product-caps-process__heading{display:grid;grid-template-columns:1fr minmax(280px,440px);align-items:end;gap:72px;margin-bottom:42px}.product-caps-options__heading>p,.product-caps-process__heading>p{margin:0 0 4px;color:var(--text-soft);font-size:.94rem;line-height:1.65}
.product-caps-options__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.product-caps-options__grid article,.product-caps-uses__grid article,.product-caps-process__grid article{padding:28px 24px;border:1px solid #dce4d9;border-radius:18px;background:#fff}.product-caps-options__grid article{min-height:240px}
.product-caps-options__grid article>span,.product-caps-uses__grid article>span,.product-caps-process__grid article>span{display:block;margin-bottom:46px;color:var(--green);font-size:.66rem;font-weight:900;letter-spacing:.12em}
.product-caps-options__grid h3,.product-caps-uses__grid h3,.product-caps-process__grid h3{margin:0;font-family:var(--font-heading);font-size:1.2rem;font-weight:800;letter-spacing:-.03em}.product-caps-options__grid p,.product-caps-uses__grid p,.product-caps-process__grid p{margin:9px 0 0;color:var(--text-soft);font-size:.79rem;line-height:1.58}
.product-caps-print{padding:100px 0}.product-caps-print__grid{display:grid;grid-template-columns:minmax(0,1.03fr) minmax(360px,.97fr);gap:82px;align-items:center}.product-caps-print__visual{position:relative;min-height:590px;overflow:hidden;border-radius:20px;background:var(--bg-soft)}.product-caps-print__visual img{width:100%;height:590px;object-fit:cover}
.product-caps-print__badge{position:absolute;left:24px;bottom:24px;padding:20px 22px;border-radius:14px;background:var(--green-deep);color:#fff}.product-caps-print__badge span,.product-caps-print__badge strong,.product-caps-print__badge small{display:block}.product-caps-print__badge span{color:var(--lime);font-size:.55rem;font-weight:900;letter-spacing:.13em}.product-caps-print__badge strong{margin-top:4px;font-size:.9rem}.product-caps-print__badge small{margin-top:4px;color:rgba(255,255,255,.72);font-size:.62rem}
.product-caps-print__content>p{max-width:570px;margin:25px 0 28px;color:var(--text-soft);font-size:.94rem;line-height:1.68}.product-caps-print__list{display:grid;margin-bottom:30px;border-top:1px solid var(--line)}.product-caps-print__list>div{display:grid;grid-template-columns:47px minmax(0,1fr);gap:12px;padding:17px 0;border-bottom:1px solid var(--line)}.product-caps-print__list>div>span{color:var(--green);font-size:.62rem;font-weight:900}.product-caps-print__list strong,.product-caps-print__list small{display:block}.product-caps-print__list strong{font-size:.84rem}.product-caps-print__list small{margin-top:3px;color:var(--text-soft);font-size:.69rem}
.product-caps-uses__grid,.product-caps-process__grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.product-caps-uses__intro{max-width:820px;margin-bottom:40px}.product-caps-uses__grid article{min-height:255px}.product-caps-process{padding:96px 0 100px}.product-caps-process__grid article{min-height:230px}
@media(max-width:1180px){.product-caps-hero__copy{padding-right:45px}.product-caps-print__grid{gap:55px}.product-caps-uses__grid,.product-caps-process__grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:860px){.product-caps-hero__grid{width:100%;min-height:0;grid-template-columns:1fr}.product-caps-hero__copy{width:calc(100% - 40px);margin-inline:auto;padding:54px 0 44px}.product-caps-hero__copy h1{font-size:clamp(3.4rem,14vw,5rem)}.product-caps-hero__meta{grid-template-columns:1fr 1fr}.product-caps-hero__meta div:last-child{grid-column:1/-1}.product-caps-hero__visual,.product-caps-hero__visual>img{min-height:440px;height:440px}.product-caps-intro{padding:70px 0}.product-caps-intro__grid,.product-caps-print__grid{grid-template-columns:1fr;gap:15px}.product-caps-intro__content{padding-top:0}.product-caps-options__heading,.product-caps-process__heading{grid-template-columns:1fr;gap:18px;margin-bottom:30px}.product-caps-options__grid{grid-template-columns:repeat(2,minmax(0,1fr))}.product-caps-print{padding:72px 0}.product-caps-print__grid{gap:42px}.product-caps-print__visual,.product-caps-print__visual img{min-height:430px;height:430px}.product-caps-process{padding:72px 0}}
@media(max-width:560px){.product-caps-hero__copy{width:calc(100% - 36px);padding:47px 0 40px}.product-caps-hero__copy h1{font-size:clamp(3rem,14.5vw,4.15rem)}.product-caps-hero__actions{display:grid;grid-template-columns:1fr}.product-caps-hero__actions .classic-btn{width:100%}.product-caps-hero__meta{grid-template-columns:1fr}.product-caps-hero__meta div:last-child{grid-column:auto}.product-caps-hero__visual,.product-caps-hero__visual>img{min-height:380px;height:380px}.product-caps-hero__card{right:18px;bottom:18px;width:calc(100% - 36px);padding:19px}.product-caps-intro h2,.product-caps-options__heading h2,.product-caps-print__content h2,.product-caps-uses__intro h2,.product-caps-process__heading h2{font-size:2.85rem}.product-caps-options__grid,.product-caps-uses__grid,.product-caps-process__grid{grid-template-columns:1fr}.product-caps-print__visual,.product-caps-print__visual img{min-height:340px;height:340px}}

/* PRODUCT DETAIL - TASSEN */
.product-bags-page{width:100%;overflow:hidden;background:#fff}
.product-bags-hero{background:radial-gradient(circle at 15% 24%,rgba(61,165,28,.07),transparent 29%),#fff}
.product-bags-hero__grid{display:grid;min-height:640px;grid-template-columns:minmax(0,.96fr) minmax(0,1.04fr);align-items:stretch}
.product-bags-hero__copy{display:flex;flex-direction:column;justify-content:center;padding:78px 70px 70px 0}
.product-bags-hero__copy h1{max-width:790px;margin:0;font-family:var(--font-heading);font-size:clamp(4rem,5.45vw,6.1rem);font-weight:800;line-height:.9;letter-spacing:-.07em}
.product-bags-hero__copy h1 span{color:var(--green)}
.product-bags-hero__copy>p{max-width:625px;margin:28px 0 0;color:var(--text-soft);font-size:1.02rem;line-height:1.68}
.product-bags-hero__actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:29px}
.product-bags-hero__meta{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px;margin-top:38px;padding-top:23px;border-top:1px solid var(--line)}
.product-bags-hero__meta div{display:grid;gap:4px}.product-bags-hero__meta strong{font-size:.8rem;font-weight:800}.product-bags-hero__meta span{color:var(--text-soft);font-size:.7rem;line-height:1.4}
.product-bags-hero__visual{position:relative;min-height:640px;overflow:hidden;background:var(--bg-soft)}.product-bags-hero__visual>img{width:100%;height:100%;min-height:640px;object-fit:cover}
.product-bags-hero__visual:after{position:absolute;inset:0;background:linear-gradient(180deg,transparent 45%,rgba(12,25,15,.18));content:"";pointer-events:none}
.product-bags-hero__card{position:absolute;z-index:2;right:28px;bottom:28px;width:min(310px,calc(100% - 56px));padding:23px 24px;border-radius:17px;background:rgba(255,255,255,.95);box-shadow:0 18px 42px rgba(15,31,18,.16)}
.product-bags-hero__card span{display:block;color:var(--green);font-size:.58rem;font-weight:900;letter-spacing:.14em}.product-bags-hero__card strong{display:block;margin-top:9px;font-family:var(--font-heading);font-size:1.35rem;font-weight:800;line-height:1.08;letter-spacing:-.04em}.product-bags-hero__card small{display:block;margin-top:9px;color:var(--text-soft);font-size:.69rem;line-height:1.45}
.product-bags-intro h2,.product-bags-options__heading h2,.product-bags-print__content h2,.product-bags-uses__intro h2,.product-bags-process__heading h2{margin:0;font-family:var(--font-heading);font-size:clamp(2.8rem,4vw,4.7rem);font-weight:800;line-height:.96;letter-spacing:-.06em}
.product-bags-intro{padding:94px 0}.product-bags-intro__grid{display:grid;grid-template-columns:1fr 1fr;gap:90px;align-items:start}.product-bags-intro__content{padding-top:26px}.product-bags-intro__content p{margin:0;color:var(--text-soft);font-size:.96rem;line-height:1.72}.product-bags-intro__content p+p{margin-top:18px}
.product-bags-options,.product-bags-uses{padding:92px 0 98px;background:radial-gradient(circle at 82% 18%,rgba(61,165,28,.07),transparent 27%),var(--bg-soft)}
.product-bags-options__heading,.product-bags-process__heading{display:grid;grid-template-columns:1fr minmax(280px,440px);align-items:end;gap:72px;margin-bottom:42px}.product-bags-options__heading>p,.product-bags-process__heading>p{margin:0 0 4px;color:var(--text-soft);font-size:.94rem;line-height:1.65}
.product-bags-options__grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}.product-bags-options__grid article,.product-bags-uses__grid article,.product-bags-process__grid article{padding:28px 24px;border:1px solid #dce4d9;border-radius:18px;background:#fff}.product-bags-options__grid article{min-height:240px}
.product-bags-options__grid article>span,.product-bags-uses__grid article>span,.product-bags-process__grid article>span{display:block;margin-bottom:46px;color:var(--green);font-size:.66rem;font-weight:900;letter-spacing:.12em}
.product-bags-options__grid h3,.product-bags-uses__grid h3,.product-bags-process__grid h3{margin:0;font-family:var(--font-heading);font-size:1.2rem;font-weight:800;letter-spacing:-.03em}.product-bags-options__grid p,.product-bags-uses__grid p,.product-bags-process__grid p{margin:9px 0 0;color:var(--text-soft);font-size:.79rem;line-height:1.58}
.product-bags-print{padding:100px 0}.product-bags-print__grid{display:grid;grid-template-columns:minmax(0,1.03fr) minmax(360px,.97fr);gap:82px;align-items:center}.product-bags-print__visual{position:relative;min-height:590px;overflow:hidden;border-radius:20px;background:var(--bg-soft)}.product-bags-print__visual img{width:100%;height:590px;object-fit:cover}
.product-bags-print__badge{position:absolute;left:24px;bottom:24px;padding:20px 22px;border-radius:14px;background:var(--green-deep);color:#fff}.product-bags-print__badge span,.product-bags-print__badge strong,.product-bags-print__badge small{display:block}.product-bags-print__badge span{color:var(--lime);font-size:.55rem;font-weight:900;letter-spacing:.13em}.product-bags-print__badge strong{margin-top:4px;font-size:.9rem}.product-bags-print__badge small{margin-top:4px;color:rgba(255,255,255,.72);font-size:.62rem}
.product-bags-print__content>p{max-width:570px;margin:25px 0 28px;color:var(--text-soft);font-size:.94rem;line-height:1.68}.product-bags-print__list{display:grid;margin-bottom:30px;border-top:1px solid var(--line)}.product-bags-print__list>div{display:grid;grid-template-columns:47px minmax(0,1fr);gap:12px;padding:17px 0;border-bottom:1px solid var(--line)}.product-bags-print__list>div>span{color:var(--green);font-size:.62rem;font-weight:900}.product-bags-print__list strong,.product-bags-print__list small{display:block}.product-bags-print__list strong{font-size:.84rem}.product-bags-print__list small{margin-top:3px;color:var(--text-soft);font-size:.69rem}
.product-bags-uses__grid,.product-bags-process__grid{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}.product-bags-uses__intro{max-width:820px;margin-bottom:40px}.product-bags-uses__grid article{min-height:255px}.product-bags-process{padding:96px 0 100px}.product-bags-process__grid article{min-height:230px}
@media(max-width:1180px){.product-bags-hero__copy{padding-right:45px}.product-bags-print__grid{gap:55px}.product-bags-uses__grid,.product-bags-process__grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:860px){.product-bags-hero__grid{width:100%;min-height:0;grid-template-columns:1fr}.product-bags-hero__copy{width:calc(100% - 40px);margin-inline:auto;padding:54px 0 44px}.product-bags-hero__copy h1{font-size:clamp(3.4rem,14vw,5rem)}.product-bags-hero__meta{grid-template-columns:1fr 1fr}.product-bags-hero__meta div:last-child{grid-column:1/-1}.product-bags-hero__visual,.product-bags-hero__visual>img{min-height:440px;height:440px}.product-bags-intro{padding:70px 0}.product-bags-intro__grid,.product-bags-print__grid{grid-template-columns:1fr;gap:15px}.product-bags-intro__content{padding-top:0}.product-bags-options__heading,.product-bags-process__heading{grid-template-columns:1fr;gap:18px;margin-bottom:30px}.product-bags-options__grid{grid-template-columns:repeat(2,minmax(0,1fr))}.product-bags-print{padding:72px 0}.product-bags-print__grid{gap:42px}.product-bags-print__visual,.product-bags-print__visual img{min-height:430px;height:430px}.product-bags-process{padding:72px 0}}
@media(max-width:560px){.product-bags-hero__copy{width:calc(100% - 36px);padding:47px 0 40px}.product-bags-hero__copy h1{font-size:clamp(3rem,14.5vw,4.15rem)}.product-bags-hero__actions{display:grid;grid-template-columns:1fr}.product-bags-hero__actions .classic-btn{width:100%}.product-bags-hero__meta{grid-template-columns:1fr}.product-bags-hero__meta div:last-child{grid-column:auto}.product-bags-hero__visual,.product-bags-hero__visual>img{min-height:380px;height:380px}.product-bags-hero__card{right:18px;bottom:18px;width:calc(100% - 36px);padding:19px}.product-bags-intro h2,.product-bags-options__heading h2,.product-bags-print__content h2,.product-bags-uses__intro h2,.product-bags-process__heading h2{font-size:2.85rem}.product-bags-options__grid,.product-bags-uses__grid,.product-bags-process__grid{grid-template-columns:1fr}.product-bags-print__visual,.product-bags-print__visual img{min-height:340px;height:340px}}


/* =========================================================
   INFORMATIEPAGINA - BEDRIJFSKLEDING
   Toevoegen onderaan main.css
   ========================================================= */

.info-companywear-page {
    width: 100%;
    overflow: hidden;
    background: #fff;
}

/* HERO */
.info-companywear-hero {
    background:
        radial-gradient(circle at 14% 22%, rgba(61,165,28,.07), transparent 30%),
        #fff;
}

.info-companywear-hero__grid {
    display: grid;
    min-height: 650px;
    grid-template-columns: minmax(0,.98fr) minmax(0,1.02fr);
    align-items: stretch;
}

.info-companywear-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 78px 72px 72px 0;
}

.info-companywear-hero__copy h1 {
    max-width: 800px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(4rem,5.35vw,6rem);
    font-weight: 800;
    line-height: .91;
    letter-spacing: -.07em;
}

.info-companywear-hero__copy h1 span {
    color: var(--green);
}

.info-companywear-hero__copy > p {
    max-width: 640px;
    margin: 28px 0 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    line-height: 1.7;
}

.info-companywear-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.info-companywear-hero__meta {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 18px;
    margin-top: 38px;
    padding-top: 23px;
    border-top: 1px solid var(--line);
}

.info-companywear-hero__meta div {
    display: grid;
    gap: 4px;
}

.info-companywear-hero__meta strong {
    font-size: .8rem;
    font-weight: 800;
}

.info-companywear-hero__meta span {
    color: var(--text-soft);
    font-size: .7rem;
    line-height: 1.4;
}

.info-companywear-hero__visual {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: var(--bg-soft);
}

.info-companywear-hero__visual > img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
}

.info-companywear-hero__visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 45%,rgba(12,25,15,.2));
    content: "";
    pointer-events: none;
}

.info-companywear-hero__card {
    position: absolute;
    z-index: 2;
    right: 28px;
    bottom: 28px;
    width: min(320px,calc(100% - 56px));
    padding: 23px 24px;
    border-radius: 17px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 18px 42px rgba(15,31,18,.16);
}

.info-companywear-hero__card span {
    display: block;
    color: var(--green);
    font-size: .58rem;
    font-weight: 900;
    letter-spacing: .14em;
}

.info-companywear-hero__card strong {
    display: block;
    margin-top: 9px;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    line-height: 1.08;
    letter-spacing: -.04em;
}

.info-companywear-hero__card small {
    display: block;
    margin-top: 9px;
    color: var(--text-soft);
    font-size: .69rem;
    line-height: 1.45;
}

/* HEADINGS */
.info-companywear-intro h2,
.info-companywear-options__heading h2,
.info-companywear-personalize__content h2,
.info-companywear-benefits__intro h2,
.info-companywear-process__heading h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(2.8rem,4vw,4.7rem);
    font-weight: 800;
    line-height: .96;
    letter-spacing: -.06em;
}

/* INTRO */
.info-companywear-intro {
    padding: 94px 0;
}

.info-companywear-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}

.info-companywear-intro__content {
    padding-top: 26px;
}

.info-companywear-intro__content p {
    margin: 0;
    color: var(--text-soft);
    font-size: .96rem;
    line-height: 1.72;
}

.info-companywear-intro__content p + p {
    margin-top: 18px;
}

/* OPTIONS */
.info-companywear-options {
    padding: 92px 0 98px;
    background:
        radial-gradient(circle at 82% 18%,rgba(61,165,28,.07),transparent 27%),
        var(--bg-soft);
}

.info-companywear-options__heading,
.info-companywear-process__heading {
    display: grid;
    grid-template-columns: 1fr minmax(280px,440px);
    align-items: end;
    gap: 72px;
    margin-bottom: 42px;
}

.info-companywear-options__heading > p,
.info-companywear-process__heading > p {
    margin: 0 0 4px;
    color: var(--text-soft);
    font-size: .94rem;
    line-height: 1.65;
}

.info-companywear-options__grid {
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 14px;
}

.info-companywear-options__grid article,
.info-companywear-benefits__grid article,
.info-companywear-process__grid article {
    padding: 28px 24px;
    border: 1px solid #dce4d9;
    border-radius: 18px;
    background: rgba(255,255,255,.96);
}

.info-companywear-options__grid article {
    min-height: 238px;
}

.info-companywear-options__grid article > span,
.info-companywear-benefits__grid article > span,
.info-companywear-process__grid article > span {
    display: block;
    margin-bottom: 46px;
    color: var(--green);
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .12em;
}

.info-companywear-options__grid h3,
.info-companywear-benefits__grid h3,
.info-companywear-process__grid h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -.03em;
}

.info-companywear-options__grid p,
.info-companywear-benefits__grid p,
.info-companywear-process__grid p {
    margin: 9px 0 0;
    color: var(--text-soft);
    font-size: .79rem;
    line-height: 1.58;
}

/* PERSONALIZE */
.info-companywear-personalize {
    padding: 100px 0;
}

.info-companywear-personalize__grid {
    display: grid;
    grid-template-columns: minmax(0,1.03fr) minmax(360px,.97fr);
    gap: 82px;
    align-items: center;
}

.info-companywear-personalize__visual {
    position: relative;
    min-height: 590px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--bg-soft);
}

.info-companywear-personalize__visual img {
    width: 100%;
    height: 590px;
    object-fit: cover;
}

.info-companywear-personalize__badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 20px 22px;
    border-radius: 14px;
    background: var(--green-deep);
    color: #fff;
}

.info-companywear-personalize__badge span,
.info-companywear-personalize__badge strong,
.info-companywear-personalize__badge small {
    display: block;
}

.info-companywear-personalize__badge span {
    color: #bfe7ad;
    font-size: .55rem;
    font-weight: 900;
    letter-spacing: .13em;
}

.info-companywear-personalize__badge strong {
    margin-top: 4px;
    font-size: .9rem;
}

.info-companywear-personalize__badge small {
    margin-top: 4px;
    color: rgba(255,255,255,.72);
    font-size: .62rem;
}

.info-companywear-personalize__content > p {
    max-width: 570px;
    margin: 25px 0 28px;
    color: var(--text-soft);
    font-size: .94rem;
    line-height: 1.68;
}

.info-companywear-personalize__list {
    display: grid;
    margin-bottom: 30px;
    border-top: 1px solid var(--line);
}

.info-companywear-personalize__list > div {
    display: grid;
    grid-template-columns: 47px minmax(0,1fr);
    gap: 12px;
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.info-companywear-personalize__list > div > span {
    color: var(--green);
    font-size: .62rem;
    font-weight: 900;
}

.info-companywear-personalize__list strong,
.info-companywear-personalize__list small {
    display: block;
}

.info-companywear-personalize__list strong {
    font-size: .84rem;
}

.info-companywear-personalize__list small {
    margin-top: 3px;
    color: var(--text-soft);
    font-size: .69rem;
}

/* BENEFITS */
.info-companywear-benefits {
    padding: 92px 0 98px;
    background:
        radial-gradient(circle at 16% 18%,rgba(61,165,28,.07),transparent 26%),
        var(--bg-soft);
}

.info-companywear-benefits__intro {
    max-width: 820px;
    margin-bottom: 40px;
}

.info-companywear-benefits__grid,
.info-companywear-process__grid {
    display: grid;
    grid-template-columns: repeat(4,minmax(0,1fr));
    gap: 14px;
}

.info-companywear-benefits__grid article {
    min-height: 250px;
}

/* PROCESS */
.info-companywear-process {
    padding: 96px 0 100px;
}

.info-companywear-process__grid article {
    min-height: 230px;
}

/* TABLET */
@media (max-width:1180px) {
    .info-companywear-hero__copy {
        padding-right: 45px;
    }

    .info-companywear-personalize__grid {
        gap: 55px;
    }

    .info-companywear-benefits__grid,
    .info-companywear-process__grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

/* MOBILE */
@media (max-width:860px) {
    .info-companywear-hero__grid {
        width: 100%;
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .info-companywear-hero__copy {
        width: calc(100% - 40px);
        margin-inline: auto;
        padding: 54px 0 44px;
    }

    .info-companywear-hero__copy h1 {
        font-size: clamp(3.25rem,13vw,4.9rem);
    }

    .info-companywear-hero__meta {
        grid-template-columns: 1fr 1fr;
    }

    .info-companywear-hero__meta div:last-child {
        grid-column: 1/-1;
    }

    .info-companywear-hero__visual,
    .info-companywear-hero__visual > img {
        min-height: 440px;
        height: 440px;
    }

    .info-companywear-intro {
        padding: 70px 0;
    }

    .info-companywear-intro__grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .info-companywear-intro__content {
        padding-top: 0;
    }

    .info-companywear-options,
    .info-companywear-benefits {
        padding: 70px 0 76px;
    }

    .info-companywear-options__heading,
    .info-companywear-process__heading {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 30px;
    }

    .info-companywear-options__grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .info-companywear-personalize {
        padding: 72px 0;
    }

    .info-companywear-personalize__grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .info-companywear-personalize__visual,
    .info-companywear-personalize__visual img {
        min-height: 430px;
        height: 430px;
    }

    .info-companywear-process {
        padding: 72px 0;
    }
}

/* SMALL MOBILE */
@media (max-width:560px) {
    .info-companywear-hero__copy {
        width: calc(100% - 36px);
        padding: 47px 0 40px;
    }

    .info-companywear-hero__copy h1 {
        font-size: clamp(3rem,13.3vw,4rem);
    }

    .info-companywear-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .info-companywear-hero__actions .classic-btn {
        width: 100%;
    }

    .info-companywear-hero__meta {
        grid-template-columns: 1fr;
    }

    .info-companywear-hero__meta div:last-child {
        grid-column: auto;
    }

    .info-companywear-hero__visual,
    .info-companywear-hero__visual > img {
        min-height: 380px;
        height: 380px;
    }

    .info-companywear-hero__card {
        right: 18px;
        bottom: 18px;
        width: calc(100% - 36px);
        padding: 19px;
    }

    .info-companywear-intro h2,
    .info-companywear-options__heading h2,
    .info-companywear-personalize__content h2,
    .info-companywear-benefits__intro h2,
    .info-companywear-process__heading h2 {
        font-size: 2.78rem;
    }

    .info-companywear-options__grid,
    .info-companywear-benefits__grid,
    .info-companywear-process__grid {
        grid-template-columns: 1fr;
    }

    .info-companywear-personalize__visual,
    .info-companywear-personalize__visual img {
        min-height: 340px;
        height: 340px;
    }
}

/* =========================================================
   INFO - DRUKTECHNIEKEN
   Pagina: /info/druktechnieken
========================================================= */

.info-printmethods-page {
    background: #fff;
    color: var(--text, #1f1f1f);
}

/* HERO */
.info-printmethods-hero {
    padding: 72px 0 88px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcf8 100%);
}

.info-printmethods-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
    gap: 72px;
    align-items: center;
}

.info-printmethods-hero__copy h1 {
    margin: 18px 0 24px;
    font-family: "Manrope", Arial, sans-serif;
    font-size: clamp(3.7rem, 7vw, 7.1rem);
    line-height: .93;
    letter-spacing: -.065em;
    color: #191919;
}

.info-printmethods-hero__copy h1 span {
    color: var(--green, #3da51c);
}

.info-printmethods-hero__copy > p {
    max-width: 700px;
    margin: 0;
    color: #737982;
    font-size: 1.12rem;
    line-height: 1.8;
}

.info-printmethods-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.info-printmethods-hero__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 42px;
    border-top: 1px solid var(--line, #e7e9e5);
}

.info-printmethods-hero__meta > div {
    padding: 22px 22px 0 0;
}

.info-printmethods-hero__meta > div + div {
    padding-left: 22px;
    border-left: 1px solid var(--line, #e7e9e5);
}

.info-printmethods-hero__meta strong,
.info-printmethods-hero__meta span {
    display: block;
}

.info-printmethods-hero__meta strong {
    margin-bottom: 7px;
    font-family: "Manrope", Arial, sans-serif;
    font-size: .95rem;
    color: #1d1d1d;
}

.info-printmethods-hero__meta span {
    color: #7a8088;
    font-size: .83rem;
    line-height: 1.55;
}

.info-printmethods-hero__visual {
    position: relative;
    min-height: 630px;
    overflow: hidden;
    border-radius: 30px;
    background: #eef2e9;
}

.info-printmethods-hero__visual > img {
    display: block;
    width: 100%;
    height: 630px;
    object-fit: cover;
}

.info-printmethods-hero__card {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: min(330px, calc(100% - 48px));
    padding: 24px 25px;
    border-radius: 22px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 18px 44px rgba(24,38,28,.12);
    backdrop-filter: blur(10px);
}

.info-printmethods-hero__card span,
.info-printmethods-feature__badge span {
    display: block;
    margin-bottom: 10px;
    color: var(--green, #3da51c);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .11em;
}

.info-printmethods-hero__card strong {
    display: block;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 1.38rem;
    line-height: 1.2;
    color: #1e1e1e;
}

.info-printmethods-hero__card small {
    display: block;
    margin-top: 10px;
    color: #777d84;
    font-size: .82rem;
    line-height: 1.55;
}

/* INTRO */
.info-printmethods-intro {
    padding: 100px 0;
    background: #fff;
}

.info-printmethods-intro__grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: start;
}

.info-printmethods-intro h2,
.info-printmethods-options h2,
.info-printmethods-feature h2,
.info-printmethods-benefits h2,
.info-printmethods-process h2 {
    margin: 13px 0 0;
    font-family: "Manrope", Arial, sans-serif;
    font-size: clamp(2.5rem, 4.5vw, 4.6rem);
    line-height: 1;
    letter-spacing: -.05em;
    color: #202020;
}

.info-printmethods-intro__content {
    max-width: 720px;
    padding-top: 28px;
}

.info-printmethods-intro__content p,
.info-printmethods-feature__content > p,
.info-printmethods-process__heading > p,
.info-printmethods-options__heading > p {
    color: #747a82;
    font-size: 1.05rem;
    line-height: 1.82;
}

.info-printmethods-intro__content p {
    margin: 0 0 20px;
}

/* TECHNIEKEN */
.info-printmethods-options {
    padding: 100px 0;
    background: #f7f9f3;
}

.info-printmethods-options__heading,
.info-printmethods-process__heading {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 54px;
}

.info-printmethods-options__heading > p,
.info-printmethods-process__heading > p {
    margin: 0 0 8px;
    max-width: 560px;
}

.info-printmethods-options__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid #dfe4da;
    border-left: 1px solid #dfe4da;
}

.info-printmethods-options__grid article {
    min-height: 290px;
    padding: 32px 28px;
    border-right: 1px solid #dfe4da;
    border-bottom: 1px solid #dfe4da;
    background: rgba(255,255,255,.55);
}

.info-printmethods-options__grid article > span,
.info-printmethods-benefits__grid article > span,
.info-printmethods-process__grid article > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 52px;
    border: 1px solid rgba(61,165,28,.35);
    border-radius: 50%;
    color: var(--green, #3da51c);
    font-size: .75rem;
    font-weight: 800;
}

.info-printmethods-options__grid h3,
.info-printmethods-benefits__grid h3,
.info-printmethods-process__grid h3 {
    margin: 0 0 12px;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 1.22rem;
    color: #222;
}

.info-printmethods-options__grid p,
.info-printmethods-benefits__grid p,
.info-printmethods-process__grid p {
    margin: 0;
    color: #757b83;
    font-size: .94rem;
    line-height: 1.7;
}

/* FEATURE */
.info-printmethods-feature {
    padding: 110px 0;
    background: #fff;
}

.info-printmethods-feature__grid {
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(0, 1.04fr);
    gap: 86px;
    align-items: center;
}

.info-printmethods-feature__visual {
    position: relative;
    overflow: hidden;
    min-height: 610px;
    border-radius: 28px;
    background: #edf2e9;
}

.info-printmethods-feature__visual > img {
    display: block;
    width: 100%;
    height: 610px;
    object-fit: cover;
}

.info-printmethods-feature__badge {
    position: absolute;
    left: 22px;
    bottom: 22px;
    min-width: 245px;
    padding: 20px 22px;
    border-radius: 18px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 16px 40px rgba(24,38,28,.12);
}

.info-printmethods-feature__badge strong,
.info-printmethods-feature__badge small {
    display: block;
}

.info-printmethods-feature__badge strong {
    margin-bottom: 5px;
    font-family: "Manrope", Arial, sans-serif;
    font-size: 1rem;
    color: #202020;
}

.info-printmethods-feature__badge small {
    color: #7b8087;
    font-size: .78rem;
}

.info-printmethods-feature__content > p {
    max-width: 690px;
    margin: 24px 0 0;
}

.info-printmethods-feature__list {
    margin: 34px 0 32px;
    border-top: 1px solid var(--line, #e7e9e5);
}

.info-printmethods-feature__list > div {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line, #e7e9e5);
}

.info-printmethods-feature__list > div > span {
    color: var(--green, #3da51c);
    font-size: .76rem;
    font-weight: 800;
}

.info-printmethods-feature__list strong,
.info-printmethods-feature__list small {
    display: block;
}

.info-printmethods-feature__list strong {
    margin-bottom: 4px;
    font-family: "Manrope", Arial, sans-serif;
    color: #222;
}

.info-printmethods-feature__list small {
    color: #777d84;
    font-size: .87rem;
    line-height: 1.55;
}

/* FLEX & FLOCK */
.info-printmethods-benefits {
    padding: 100px 0;
    background: #203324;
    color: #fff;
}

.info-printmethods-benefits .classic-label {
    color: #b9d8af;
}

.info-printmethods-benefits h2 {
    color: #fff;
}

.info-printmethods-benefits__intro {
    margin-bottom: 52px;
}

.info-printmethods-benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(255,255,255,.14);
    border-left: 1px solid rgba(255,255,255,.14);
}

.info-printmethods-benefits__grid article {
    min-height: 245px;
    padding: 30px 26px;
    border-right: 1px solid rgba(255,255,255,.14);
    border-bottom: 1px solid rgba(255,255,255,.14);
}

.info-printmethods-benefits__grid article > span {
    border-color: rgba(255,255,255,.25);
    color: #9ad884;
}

.info-printmethods-benefits__grid h3 {
    color: #fff;
}

.info-printmethods-benefits__grid p {
    color: rgba(255,255,255,.67);
}

/* PROCES */
.info-printmethods-process {
    padding: 110px 0;
    background: #fff;
}

.info-printmethods-process__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.info-printmethods-process__grid article {
    min-height: 260px;
    padding: 28px;
    border: 1px solid var(--line, #e7e9e5);
    border-radius: 20px;
    background: #fff;
}

.info-printmethods-process__grid article > span {
    margin-bottom: 46px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .info-printmethods-hero__grid,
    .info-printmethods-feature__grid {
        grid-template-columns: 1fr 1fr;
        gap: 44px;
    }

    .info-printmethods-hero__visual,
    .info-printmethods-hero__visual > img,
    .info-printmethods-feature__visual,
    .info-printmethods-feature__visual > img {
        min-height: 540px;
        height: 540px;
    }

    .info-printmethods-options__grid,
    .info-printmethods-benefits__grid,
    .info-printmethods-process__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .info-printmethods-hero {
        padding: 42px 0 64px;
    }

    .info-printmethods-hero__grid,
    .info-printmethods-intro__grid,
    .info-printmethods-feature__grid,
    .info-printmethods-options__heading,
    .info-printmethods-process__heading {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .info-printmethods-hero__copy h1 {
        font-size: clamp(3.6rem, 14vw, 5.5rem);
    }

    .info-printmethods-hero__meta {
        grid-template-columns: 1fr;
    }

    .info-printmethods-hero__meta > div {
        padding: 16px 0;
    }

    .info-printmethods-hero__meta > div + div {
        padding-left: 0;
        border-left: 0;
        border-top: 1px solid var(--line, #e7e9e5);
    }

    .info-printmethods-hero__visual,
    .info-printmethods-hero__visual > img,
    .info-printmethods-feature__visual,
    .info-printmethods-feature__visual > img {
        min-height: 460px;
        height: 460px;
    }

    .info-printmethods-intro,
    .info-printmethods-options,
    .info-printmethods-feature,
    .info-printmethods-benefits,
    .info-printmethods-process {
        padding: 74px 0;
    }

    .info-printmethods-intro__content {
        padding-top: 0;
    }

    .info-printmethods-options__heading,
    .info-printmethods-process__heading {
        margin-bottom: 38px;
    }
}

@media (max-width: 560px) {
    .info-printmethods-hero {
        padding: 28px 0 52px;
    }

    .info-printmethods-hero__copy h1 {
        margin-top: 14px;
        font-size: clamp(3.35rem, 16vw, 4.8rem);
        line-height: .94;
    }

    .info-printmethods-hero__copy > p,
    .info-printmethods-intro__content p,
    .info-printmethods-feature__content > p,
    .info-printmethods-options__heading > p,
    .info-printmethods-process__heading > p {
        font-size: .98rem;
        line-height: 1.72;
    }

    .info-printmethods-hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .info-printmethods-hero__actions .classic-btn {
        width: 100%;
        justify-content: center;
    }

    .info-printmethods-hero__visual,
    .info-printmethods-hero__visual > img {
        min-height: 390px;
        height: 390px;
        border-radius: 22px;
    }

    .info-printmethods-hero__card {
        right: 14px;
        bottom: 14px;
        width: calc(100% - 28px);
        padding: 18px;
        border-radius: 17px;
    }

    .info-printmethods-intro h2,
    .info-printmethods-options h2,
    .info-printmethods-feature h2,
    .info-printmethods-benefits h2,
    .info-printmethods-process h2 {
        font-size: clamp(2.5rem, 12vw, 3.7rem);
    }

    .info-printmethods-options__grid,
    .info-printmethods-benefits__grid,
    .info-printmethods-process__grid {
        grid-template-columns: 1fr;
    }

    .info-printmethods-options__grid article,
    .info-printmethods-benefits__grid article,
    .info-printmethods-process__grid article {
        min-height: 0;
        padding: 26px 22px;
    }

    .info-printmethods-options__grid article > span,
    .info-printmethods-benefits__grid article > span,
    .info-printmethods-process__grid article > span {
        margin-bottom: 32px;
    }

    .info-printmethods-feature__visual,
    .info-printmethods-feature__visual > img {
        min-height: 410px;
        height: 410px;
        border-radius: 22px;
    }

    .info-printmethods-feature__badge {
        left: 14px;
        bottom: 14px;
        min-width: 0;
        width: calc(100% - 28px);
    }

    .info-printmethods-feature__list > div {
        grid-template-columns: 36px 1fr;
    }
}

/* Druktechnieken - mobiele titel fix */
@media (max-width: 560px) {
    .info-printmethods-hero__copy h1 {
        width: 100%;
        max-width: 100%;
        font-size: 12vw;
        line-height: .95;
        letter-spacing: -.065em;
        word-break: normal;
        overflow-wrap: normal;
    }

    .info-printmethods-hero__copy h1 span {
        display: block;
        max-width: 100%;
        white-space: nowrap;
        word-break: normal;
        overflow-wrap: normal;
    }
}

/* Druktechnieken - definitieve mobiele titel fix */
@media (max-width: 560px) {
    .info-printmethods-hero__copy h1 {
        font-size: 11vw !important;
        line-height: .96 !important;
        letter-spacing: -.065em !important;
        max-width: 100% !important;
    }

    .info-printmethods-hero__copy h1 span {
        display: block !important;
        white-space: nowrap !important;
        font-size: 1em !important;
        max-width: 100% !important;
    }
}
/* =========================================================
   DRUKTECHNIEKEN - MOBILE OVERFLOW FIX
========================================================= */

.info-printmethods-page {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.info-printmethods-page .container {
    min-width: 0;
}

.info-printmethods-hero__grid,
.info-printmethods-hero__copy,
.info-printmethods-hero__meta,
.info-printmethods-intro__grid,
.info-printmethods-options__heading,
.info-printmethods-options__grid,
.info-printmethods-feature__grid,
.info-printmethods-feature__content,
.info-printmethods-benefits__grid,
.info-printmethods-process__heading,
.info-printmethods-process__grid {
    min-width: 0;
}

@media (max-width: 560px) {

    .info-printmethods-hero__copy h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(3rem, 14.5vw, 4.35rem);
        line-height: .95;
        letter-spacing: -.06em;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .info-printmethods-hero__copy h1 span {
        display: block;
        max-width: 100%;
    }

    .info-printmethods-hero__copy > p {
        width: 100%;
        max-width: 100%;
    }

    .info-printmethods-hero__actions {
        width: 100%;
    }

    .info-printmethods-hero__actions .classic-btn {
        max-width: 100%;
        box-sizing: border-box;
    }

    .info-printmethods-hero__meta {
        width: 100%;
        max-width: 100%;
    }
}

/* =========================================================
   INFO PAGINA'S - CADEAUS / DRUKTECHNIEKEN / RECLAME
   Toevoegen onderaan main.css
   ========================================================= */

.info-gifts-page,
.info-techniques-page,
.info-signage-page {
    width:100%;
    overflow:hidden;
    background:#fff;
}

.info-gifts-hero,
.info-techniques-hero,
.info-signage-hero {
    background:radial-gradient(circle at 14% 22%,rgba(61,165,28,.07),transparent 30%),#fff;
}

.info-gifts-hero__grid,
.info-techniques-hero__grid,
.info-signage-hero__grid {
    display:grid;
    min-height:650px;
    grid-template-columns:minmax(0,.98fr) minmax(0,1.02fr);
    align-items:stretch;
}

.info-gifts-hero__copy,
.info-techniques-hero__copy,
.info-signage-hero__copy {
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:78px 72px 72px 0;
}

.info-gifts-hero__copy h1,
.info-techniques-hero__copy h1,
.info-signage-hero__copy h1 {
    margin:0;
    font-family:var(--font-heading);
    font-size:clamp(4rem,5.2vw,5.9rem);
    font-weight:800;
    line-height:.91;
    letter-spacing:-.07em;
}

.info-gifts-hero__copy h1 span,
.info-techniques-hero__copy h1 span,
.info-signage-hero__copy h1 span { color:var(--green); }

.info-gifts-hero__copy>p,
.info-techniques-hero__copy>p,
.info-signage-hero__copy>p {
    max-width:640px;
    margin:28px 0 0;
    color:var(--text-soft);
    font-size:1.02rem;
    line-height:1.7;
}

.info-gifts-hero__actions,
.info-techniques-hero__actions,
.info-signage-hero__actions {
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:30px;
}

.info-gifts-hero__meta,
.info-techniques-hero__meta,
.info-signage-hero__meta {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
    margin-top:38px;
    padding-top:23px;
    border-top:1px solid var(--line);
}

.info-gifts-hero__meta div,
.info-techniques-hero__meta div,
.info-signage-hero__meta div { display:grid; gap:4px; }

.info-gifts-hero__meta strong,
.info-techniques-hero__meta strong,
.info-signage-hero__meta strong { font-size:.8rem; font-weight:800; }

.info-gifts-hero__meta span,
.info-techniques-hero__meta span,
.info-signage-hero__meta span { color:var(--text-soft); font-size:.7rem; line-height:1.4; }

.info-gifts-hero__visual,
.info-techniques-hero__visual,
.info-signage-hero__visual {
    position:relative;
    min-height:650px;
    overflow:hidden;
    background:var(--bg-soft);
}

.info-gifts-hero__visual>img,
.info-techniques-hero__visual>img,
.info-signage-hero__visual>img {
    width:100%;
    height:100%;
    min-height:650px;
    object-fit:cover;
}

.info-gifts-hero__visual:after,
.info-techniques-hero__visual:after,
.info-signage-hero__visual:after {
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,transparent 45%,rgba(12,25,15,.2));
    content:"";
    pointer-events:none;
}

.info-gifts-hero__card,
.info-techniques-hero__card,
.info-signage-hero__card {
    position:absolute;
    z-index:2;
    right:28px;
    bottom:28px;
    width:min(320px,calc(100% - 56px));
    padding:23px 24px;
    border-radius:17px;
    background:rgba(255,255,255,.95);
    box-shadow:0 18px 42px rgba(15,31,18,.16);
}

.info-gifts-hero__card span,
.info-techniques-hero__card span,
.info-signage-hero__card span {
    display:block;
    color:var(--green);
    font-size:.58rem;
    font-weight:900;
    letter-spacing:.14em;
}

.info-gifts-hero__card strong,
.info-techniques-hero__card strong,
.info-signage-hero__card strong {
    display:block;
    margin-top:9px;
    font-family:var(--font-heading);
    font-size:1.35rem;
    line-height:1.08;
    letter-spacing:-.04em;
}

.info-gifts-hero__card small,
.info-techniques-hero__card small,
.info-signage-hero__card small {
    display:block;
    margin-top:9px;
    color:var(--text-soft);
    font-size:.69rem;
    line-height:1.45;
}

.info-gifts-intro,
.info-techniques-intro,
.info-signage-intro { padding:94px 0; }

.info-gifts-intro__grid,
.info-techniques-intro__grid,
.info-signage-intro__grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:start;
}

.info-gifts-intro__content,
.info-techniques-intro__content,
.info-signage-intro__content { padding-top:26px; }

.info-gifts-intro__content p,
.info-techniques-intro__content p,
.info-signage-intro__content p {
    margin:0;
    color:var(--text-soft);
    font-size:.96rem;
    line-height:1.72;
}

.info-gifts-intro__content p+p,
.info-techniques-intro__content p+p,
.info-signage-intro__content p+p { margin-top:18px; }

.info-gifts-intro h2,
.info-gifts-options__heading h2,
.info-gifts-feature__content h2,
.info-gifts-process__heading h2,
.info-techniques-intro h2,
.info-techniques-methods__heading h2,
.info-techniques-choice__content h2,
.info-techniques-process__heading h2,
.info-signage-intro h2,
.info-signage-options__heading h2,
.info-signage-feature__content h2,
.info-signage-process__heading h2 {
    margin:0;
    font-family:var(--font-heading);
    font-size:clamp(2.8rem,4vw,4.7rem);
    font-weight:800;
    line-height:.96;
    letter-spacing:-.06em;
}

.info-gifts-options,
.info-techniques-methods,
.info-signage-options {
    padding:92px 0 98px;
    background:radial-gradient(circle at 82% 18%,rgba(61,165,28,.07),transparent 27%),var(--bg-soft);
}

.info-gifts-options__heading,
.info-gifts-process__heading,
.info-techniques-methods__heading,
.info-techniques-process__heading,
.info-signage-options__heading,
.info-signage-process__heading {
    display:grid;
    grid-template-columns:1fr minmax(280px,440px);
    align-items:end;
    gap:72px;
    margin-bottom:42px;
}

.info-gifts-options__heading>p,
.info-gifts-process__heading>p,
.info-techniques-methods__heading>p,
.info-techniques-process__heading>p,
.info-signage-options__heading>p,
.info-signage-process__heading>p {
    margin:0 0 4px;
    color:var(--text-soft);
    font-size:.94rem;
    line-height:1.65;
}

.info-gifts-options__grid,
.info-techniques-methods__grid,
.info-signage-options__grid {
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:14px;
}

.info-gifts-options__grid article,
.info-techniques-methods__grid article,
.info-signage-options__grid article,
.info-gifts-process__grid article,
.info-techniques-process__grid article,
.info-signage-process__grid article {
    min-height:238px;
    padding:28px 24px;
    border:1px solid #dce4d9;
    border-radius:18px;
    background:#fff;
}

.info-gifts-options__grid article>span,
.info-techniques-methods__grid article>span,
.info-signage-options__grid article>span,
.info-gifts-process__grid article>span,
.info-techniques-process__grid article>span,
.info-signage-process__grid article>span {
    display:block;
    margin-bottom:46px;
    color:var(--green);
    font-size:.66rem;
    font-weight:900;
    letter-spacing:.12em;
}

.info-gifts-options__grid h3,
.info-techniques-methods__grid h3,
.info-signage-options__grid h3,
.info-gifts-process__grid h3,
.info-techniques-process__grid h3,
.info-signage-process__grid h3 {
    margin:0;
    font-family:var(--font-heading);
    font-size:1.2rem;
    font-weight:800;
    letter-spacing:-.03em;
}

.info-gifts-options__grid p,
.info-techniques-methods__grid p,
.info-signage-options__grid p,
.info-gifts-process__grid p,
.info-techniques-process__grid p,
.info-signage-process__grid p {
    margin:9px 0 0;
    color:var(--text-soft);
    font-size:.79rem;
    line-height:1.58;
}

.info-gifts-feature,
.info-techniques-choice,
.info-signage-feature { padding:100px 0; }

.info-gifts-feature__grid,
.info-techniques-choice__grid,
.info-signage-feature__grid {
    display:grid;
    grid-template-columns:minmax(0,1.03fr) minmax(360px,.97fr);
    gap:82px;
    align-items:center;
}

.info-gifts-feature__visual,
.info-techniques-choice__visual,
.info-signage-feature__visual {
    position:relative;
    min-height:590px;
    overflow:hidden;
    border-radius:20px;
    background:var(--bg-soft);
}

.info-gifts-feature__visual img,
.info-techniques-choice__visual img,
.info-signage-feature__visual img { width:100%; height:590px; object-fit:cover; }

.info-gifts-feature__badge,
.info-techniques-choice__badge,
.info-signage-feature__badge {
    position:absolute;
    left:24px;
    bottom:24px;
    padding:20px 22px;
    border-radius:14px;
    background:var(--green-deep);
    color:#fff;
}

.info-gifts-feature__badge span,.info-gifts-feature__badge strong,.info-gifts-feature__badge small,
.info-techniques-choice__badge span,.info-techniques-choice__badge strong,.info-techniques-choice__badge small,
.info-signage-feature__badge span,.info-signage-feature__badge strong,.info-signage-feature__badge small { display:block; }

.info-gifts-feature__badge span,
.info-techniques-choice__badge span,
.info-signage-feature__badge span { color:#bfe7ad; font-size:.55rem; font-weight:900; letter-spacing:.13em; }

.info-gifts-feature__badge strong,
.info-techniques-choice__badge strong,
.info-signage-feature__badge strong { margin-top:4px; font-size:.9rem; }

.info-gifts-feature__badge small,
.info-techniques-choice__badge small,
.info-signage-feature__badge small { margin-top:4px; color:rgba(255,255,255,.72); font-size:.62rem; }

.info-gifts-feature__content>p,
.info-techniques-choice__content>p,
.info-signage-feature__content>p {
    max-width:570px;
    margin:25px 0 28px;
    color:var(--text-soft);
    font-size:.94rem;
    line-height:1.68;
}

.info-gifts-feature__list,
.info-techniques-choice__list,
.info-signage-feature__list {
    display:grid;
    margin-bottom:30px;
    border-top:1px solid var(--line);
}

.info-gifts-feature__list>div,
.info-techniques-choice__list>div,
.info-signage-feature__list>div {
    display:grid;
    grid-template-columns:47px minmax(0,1fr);
    gap:12px;
    padding:17px 0;
    border-bottom:1px solid var(--line);
}

.info-gifts-feature__list>div>span,
.info-techniques-choice__list>div>span,
.info-signage-feature__list>div>span { color:var(--green); font-size:.62rem; font-weight:900; }

.info-gifts-feature__list strong,.info-gifts-feature__list small,
.info-techniques-choice__list strong,.info-techniques-choice__list small,
.info-signage-feature__list strong,.info-signage-feature__list small { display:block; }

.info-gifts-feature__list strong,
.info-techniques-choice__list strong,
.info-signage-feature__list strong { font-size:.84rem; }

.info-gifts-feature__list small,
.info-techniques-choice__list small,
.info-signage-feature__list small { margin-top:3px; color:var(--text-soft); font-size:.69rem; }

.info-gifts-process,
.info-techniques-process,
.info-signage-process { padding:96px 0 100px; }

.info-gifts-process__grid,
.info-techniques-process__grid,
.info-signage-process__grid {
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:14px;
}

@media(max-width:1180px){
    .info-gifts-hero__copy,.info-techniques-hero__copy,.info-signage-hero__copy{padding-right:45px}
    .info-gifts-feature__grid,.info-techniques-choice__grid,.info-signage-feature__grid{gap:55px}
    .info-gifts-process__grid,.info-techniques-process__grid,.info-signage-process__grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:860px){
    .info-gifts-hero__grid,.info-techniques-hero__grid,.info-signage-hero__grid{width:100%;min-height:0;grid-template-columns:1fr}
    .info-gifts-hero__copy,.info-techniques-hero__copy,.info-signage-hero__copy{width:calc(100% - 40px);margin-inline:auto;padding:54px 0 44px}
    .info-gifts-hero__copy h1,.info-techniques-hero__copy h1,.info-signage-hero__copy h1{font-size:clamp(3.25rem,13vw,4.9rem)}
    .info-gifts-hero__meta,.info-techniques-hero__meta,.info-signage-hero__meta{grid-template-columns:1fr 1fr}
    .info-gifts-hero__meta div:last-child,.info-techniques-hero__meta div:last-child,.info-signage-hero__meta div:last-child{grid-column:1/-1}
    .info-gifts-hero__visual,.info-gifts-hero__visual>img,.info-techniques-hero__visual,.info-techniques-hero__visual>img,.info-signage-hero__visual,.info-signage-hero__visual>img{min-height:440px;height:440px}
    .info-gifts-intro,.info-techniques-intro,.info-signage-intro{padding:70px 0}
    .info-gifts-intro__grid,.info-techniques-intro__grid,.info-signage-intro__grid{grid-template-columns:1fr;gap:15px}
    .info-gifts-intro__content,.info-techniques-intro__content,.info-signage-intro__content{padding-top:0}
    .info-gifts-options__heading,.info-gifts-process__heading,.info-techniques-methods__heading,.info-techniques-process__heading,.info-signage-options__heading,.info-signage-process__heading{grid-template-columns:1fr;gap:18px;margin-bottom:30px}
    .info-gifts-options__grid,.info-techniques-methods__grid,.info-signage-options__grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .info-gifts-feature,.info-techniques-choice,.info-signage-feature{padding:72px 0}
    .info-gifts-feature__grid,.info-techniques-choice__grid,.info-signage-feature__grid{grid-template-columns:1fr;gap:42px}
    .info-gifts-feature__visual,.info-gifts-feature__visual img,.info-techniques-choice__visual,.info-techniques-choice__visual img,.info-signage-feature__visual,.info-signage-feature__visual img{min-height:430px;height:430px}
}

@media(max-width:560px){
    .info-gifts-hero__copy,.info-techniques-hero__copy,.info-signage-hero__copy{width:calc(100% - 36px);padding:47px 0 40px}
    .info-gifts-hero__copy h1,.info-techniques-hero__copy h1,.info-signage-hero__copy h1{font-size:clamp(3rem,13.2vw,4rem)}
    .info-gifts-hero__actions,.info-techniques-hero__actions,.info-signage-hero__actions{display:grid;grid-template-columns:1fr}
    .info-gifts-hero__actions .classic-btn,.info-techniques-hero__actions .classic-btn,.info-signage-hero__actions .classic-btn{width:100%}
    .info-gifts-hero__meta,.info-techniques-hero__meta,.info-signage-hero__meta{grid-template-columns:1fr}
    .info-gifts-hero__meta div:last-child,.info-techniques-hero__meta div:last-child,.info-signage-hero__meta div:last-child{grid-column:auto}
    .info-gifts-hero__visual,.info-gifts-hero__visual>img,.info-techniques-hero__visual,.info-techniques-hero__visual>img,.info-signage-hero__visual,.info-signage-hero__visual>img{min-height:380px;height:380px}
    .info-gifts-hero__card,.info-techniques-hero__card,.info-signage-hero__card{right:18px;bottom:18px;width:calc(100% - 36px);padding:19px}
    .info-gifts-intro h2,.info-gifts-options__heading h2,.info-gifts-feature__content h2,.info-gifts-process__heading h2,
    .info-techniques-intro h2,.info-techniques-methods__heading h2,.info-techniques-choice__content h2,.info-techniques-process__heading h2,
    .info-signage-intro h2,.info-signage-options__heading h2,.info-signage-feature__content h2,.info-signage-process__heading h2{font-size:2.78rem}
    .info-gifts-options__grid,.info-techniques-methods__grid,.info-signage-options__grid,
    .info-gifts-process__grid,.info-techniques-process__grid,.info-signage-process__grid{grid-template-columns:1fr}
    .info-gifts-feature__visual,.info-gifts-feature__visual img,.info-techniques-choice__visual,.info-techniques-choice__visual img,.info-signage-feature__visual,.info-signage-feature__visual img{min-height:340px;height:340px}
}
.error-page{background:#fff}.error-hero{overflow:hidden;background:radial-gradient(circle at 85% 20%,rgba(61,165,28,.10),transparent 32%),#f7faf5;border-bottom:1px solid var(--line)}.error-hero__inner{display:grid;grid-template-columns:minmax(0,1.15fr) minmax(340px,.85fr);gap:clamp(48px,7vw,110px);align-items:center;min-height:680px;padding-top:clamp(72px,8vw,120px);padding-bottom:clamp(72px,8vw,120px)}.error-hero__copy{min-width:0}.error-hero__code{margin:22px 0 -12px;color:rgba(61,165,28,.11);font-family:"Manrope",Arial,sans-serif;font-size:clamp(7rem,15vw,13rem);font-weight:800;line-height:.82;letter-spacing:-.09em;user-select:none}.error-hero__copy h1{max-width:760px;margin:0;color:#0b0d0b;font-family:"Manrope",Arial,sans-serif;font-size:clamp(3.4rem,6.1vw,6.4rem);font-weight:800;line-height:.93;letter-spacing:-.065em}.error-hero__copy h1 span{color:var(--green)}.error-hero__copy>p{max-width:650px;margin:30px 0 0;color:#5e665d;font-size:1.05rem;line-height:1.75}.error-hero__actions{display:flex;flex-wrap:wrap;gap:12px;margin-top:34px}.error-card{padding:clamp(30px,4vw,48px);border:1px solid #dce4d9;border-radius:26px;background:rgba(255,255,255,.92);box-shadow:0 28px 70px rgba(31,54,34,.08)}.error-card h2{margin:14px 0 0;color:#0b0d0b;font-family:"Manrope",Arial,sans-serif;font-size:clamp(2rem,3vw,3rem);line-height:1.05;letter-spacing:-.045em}.error-card>p{margin:18px 0 28px;color:#697068;line-height:1.65}.error-card__links{display:grid;border-top:1px solid #e3e8e1}.error-card__links a{display:grid;grid-template-columns:minmax(0,1fr) 42px;gap:20px;align-items:center;padding:20px 0;border-bottom:1px solid #e3e8e1;color:#171a17;text-decoration:none}.error-card__links a span{display:grid;gap:4px}.error-card__links strong{font-family:"Manrope",Arial,sans-serif;font-size:1rem;font-weight:750}.error-card__links small{color:#767d75;font-size:.84rem;line-height:1.45}.error-card__links svg{display:block;width:40px;height:40px;padding:10px;border:1px solid #dce4d9;border-radius:50%;fill:none;stroke:var(--green);stroke-width:1.7;stroke-linecap:round;stroke-linejoin:round;transition:.2s}.error-card__links a:hover svg{border-color:var(--green);background:var(--green);stroke:#fff}.error-help{padding:clamp(76px,9vw,130px) 0;background:#fff}.error-help__inner{display:grid;grid-template-columns:1fr .8fr;gap:clamp(50px,9vw,150px);align-items:end}.error-help h2{margin:15px 0 0;color:#0b0d0b;font-family:"Manrope",Arial,sans-serif;font-size:clamp(2.7rem,5vw,5rem);line-height:.98;letter-spacing:-.055em}.error-help__inner>div:last-child p{max-width:540px;margin:0 0 28px;color:#646b63;font-size:1rem;line-height:1.75}@media(max-width:900px){.error-hero__inner{grid-template-columns:1fr;min-height:auto}.error-card{max-width:680px}.error-help__inner{grid-template-columns:1fr;gap:34px}}@media(max-width:560px){.error-hero__inner{gap:44px;padding-top:54px;padding-bottom:64px}.error-hero__code{margin-top:20px;font-size:clamp(6rem,31vw,8.2rem)}.error-hero__copy h1{font-size:clamp(2.8rem,12.5vw,4rem)}.error-hero__copy>p{margin-top:24px;font-size:.97rem;line-height:1.65}.error-hero__actions{display:grid}.error-hero__actions .classic-btn{width:100%;justify-content:center}.error-card{padding:26px 22px;border-radius:20px}.error-card__links a{grid-template-columns:minmax(0,1fr) 40px;gap:14px}.error-help{padding:70px 0}.error-help h2{font-size:clamp(2.55rem,11vw,3.6rem)}}

/* =========================================================
   DEFINITIEVE NAVBAR FIX - TEXTIELDRUK ZUTPHEN
   Desktop vanaf 861px - bewust als laatste override
   ========================================================= */

@media (min-width: 861px) {

    .site-header {
        position: relative !important;
        z-index: 1000 !important;
    }

    .site-header__inner {
        display: grid !important;
        grid-template-columns: auto minmax(0, 1fr) auto !important;
        align-items: center !important;
        gap: 30px !important;
        min-height: 82px !important;
    }

    .main-nav {
        position: static !important;
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        transform: none !important;
    }

    .mobile-nav__content {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
        gap: clamp(12px, 1.35vw, 26px) !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .main-nav__link {
        position: relative !important;
        display: inline-flex !important;
        width: auto !important;
        min-width: 0 !important;
        min-height: 0 !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 5px !important;
        margin: 0 !important;
        padding: 10px 0 !important;
        border: 0 !important;
        background: transparent !important;
        white-space: nowrap !important;
        font-family: var(--font-body) !important;
        font-size: .75rem !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        text-transform: uppercase !important;
    }

    .main-nav__dropdown {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        display: block !important;
        width: auto !important;
        min-width: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        z-index: auto !important;
    }

    .main-nav__toggle {
        cursor: pointer !important;
    }

    .main-nav__chevron {
        display: inline-block !important;
        margin: 0 !important;
        font-size: .9rem !important;
        line-height: 1 !important;
    }

    .dropdown-menu {
        position: absolute !important;
        top: calc(100% + 16px) !important;
        left: -18px !important;
        z-index: 1200 !important;
        display: grid !important;
        min-width: 230px !important;
        width: max-content !important;
        max-width: 320px !important;
        gap: 2px !important;
        margin: 0 !important;
        padding: 10px !important;
        border: 1px solid var(--line) !important;
        border-radius: 13px !important;
        background: #fff !important;
        box-shadow: var(--shadow) !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateY(8px) !important;
        transition: opacity .18s ease, transform .18s ease, visibility .18s ease !important;
    }

    .main-nav__dropdown:hover > .dropdown-menu,
    .main-nav__dropdown:focus-within > .dropdown-menu,
    .main-nav__dropdown.is-open > .dropdown-menu {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }

    .dropdown-menu a {
        display: block !important;
        width: 100% !important;
        padding: 10px 12px !important;
        border-radius: 8px !important;
        white-space: nowrap !important;
        font-size: .86rem !important;
        font-weight: 600 !important;
        line-height: 1.35 !important;
        text-transform: none !important;
    }

    .dropdown-menu a:hover {
        background: var(--green-soft) !important;
        color: var(--green-dark) !important;
    }

    .mobile-nav__top,
    .mobile-nav__actions,
    .mobile-menu-button,
    .mobile-nav__close {
        display: none !important;
    }

    .site-header__actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 12px !important;
        white-space: nowrap !important;
    }
}

@media (min-width: 861px) and (max-width: 1180px) {
    .site-header__inner {
        gap: 18px !important;
    }

    .mobile-nav__content {
        gap: 11px !important;
    }

    .main-nav__link {
        font-size: .69rem !important;
    }

    .header-cta {
        display: none !important;
    }
}

/* =========================================================
   HOMEPAGE BENEFITS - DESKTOP 5 KAARTEN
   Mobiele weergave blijft onder elkaar
   ========================================================= */

@media (min-width: 861px) {
    .classic-benefits__grid {
        display: grid !important;
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
        gap: 14px !important;
        align-items: stretch !important;
    }

    .classic-benefit {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        min-width: 0 !important;
        min-height: 230px !important;
        padding: 24px 22px !important;
        border: 1px solid var(--line) !important;
        border-radius: 18px !important;
        background: #fff !important;
        box-shadow: none !important;
        transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease !important;
    }

    .classic-benefit:hover {
        transform: translateY(-3px) !important;
        border-color: #cfe0c9 !important;
        box-shadow: 0 16px 35px rgba(23, 39, 27, .07) !important;
    }

    .classic-benefit__icon {
        display: grid !important;
        width: 52px !important;
        height: 52px !important;
        flex: 0 0 52px !important;
        place-items: center !important;
        margin: 0 0 28px !important;
        border: 1px solid #d9e7d4 !important;
        border-radius: 50% !important;
        background: #f0f7ed !important;
        color: var(--green-dark) !important;
    }

    .classic-benefit__icon svg {
        width: 24px !important;
        height: 24px !important;
        fill: none !important;
        stroke: currentColor !important;
        stroke-width: 1.6 !important;
        stroke-linecap: round !important;
        stroke-linejoin: round !important;
    }

    .classic-benefit__copy {
        display: block !important;
        min-width: 0 !important;
        padding: 0 !important;
    }

    .classic-benefit__copy strong,
    .classic-benefit__copy span {
        display: block !important;
    }

    .classic-benefit__copy strong {
        margin: 0 0 2px !important;
        font-family: var(--font-heading) !important;
        font-size: 1.08rem !important;
        line-height: 1.1 !important;
        letter-spacing: -.025em !important;
    }

    .classic-benefit__copy span {
        margin: 0 0 12px !important;
        font-family: var(--font-heading) !important;
        font-size: .96rem !important;
        font-weight: 700 !important;
        line-height: 1.15 !important;
    }

    .classic-benefit__copy small {
        display: block !important;
        margin: 0 !important;
        color: var(--muted) !important;
        font-size: .82rem !important;
        line-height: 1.5 !important;
    }

    .classic-benefit__arrow {
        display: none !important;
    }
}

/* Iets compacter op kleinere desktop/laptop */
@media (min-width: 861px) and (max-width: 1100px) {
    .classic-benefits__grid {
        gap: 10px !important;
    }

    .classic-benefit {
        min-height: 215px !important;
        padding: 20px 16px !important;
    }

    .classic-benefit__icon {
        margin-bottom: 22px !important;
    }

    .classic-benefit__copy strong {
        font-size: .98rem !important;
    }

    .classic-benefit__copy span {
        font-size: .88rem !important;
    }

    .classic-benefit__copy small {
        font-size: .75rem !important;
    }
}

/* =========================================================
   DRUKTECHNIEKEN HERO GELIJK AAN INFO BEDRIJFSKLEDING
   Desktop/tablet vanaf 821px - mobiel blijft ongewijzigd
   ========================================================= */

@media (min-width: 821px) {

    .info-printmethods-hero {
        padding: 0 !important;
        background:
            radial-gradient(circle at 14% 22%, rgba(61,165,28,.07), transparent 30%),
            #fff !important;
    }

    .info-printmethods-hero__grid {
        display: grid !important;
        min-height: 650px !important;
        grid-template-columns: minmax(0,.98fr) minmax(0,1.02fr) !important;
        gap: 0 !important;
        align-items: stretch !important;
    }

    .info-printmethods-hero__copy {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        min-width: 0 !important;
        padding: 78px 72px 72px 0 !important;
    }

    .info-printmethods-hero__copy h1 {
        max-width: 800px !important;
        margin: 0 !important;
        font-family: var(--font-heading) !important;
        font-size: clamp(4rem,5.35vw,6rem) !important;
        font-weight: 800 !important;
        line-height: .91 !important;
        letter-spacing: -.07em !important;
        color: var(--text) !important;
    }

    .info-printmethods-hero__copy h1 span {
        color: var(--green) !important;
    }

    .info-printmethods-hero__copy > p {
        max-width: 640px !important;
        margin: 28px 0 0 !important;
        color: var(--text-soft) !important;
        font-size: 1.02rem !important;
        line-height: 1.7 !important;
    }

    .info-printmethods-hero__actions {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
        margin-top: 30px !important;
    }

    .info-printmethods-hero__meta {
        display: grid !important;
        grid-template-columns: repeat(3,minmax(0,1fr)) !important;
        gap: 18px !important;
        margin-top: 38px !important;
        padding-top: 23px !important;
        border-top: 1px solid var(--line) !important;
    }

    .info-printmethods-hero__meta > div {
        display: grid !important;
        gap: 4px !important;
        padding: 0 !important;
        border-left: 0 !important;
    }

    .info-printmethods-hero__meta > div + div {
        padding-left: 0 !important;
        border-left: 0 !important;
    }

    .info-printmethods-hero__meta strong {
        margin: 0 !important;
        font-family: var(--font-body) !important;
        font-size: .8rem !important;
        font-weight: 800 !important;
        color: var(--text) !important;
    }

    .info-printmethods-hero__meta span {
        color: var(--text-soft) !important;
        font-size: .7rem !important;
        line-height: 1.4 !important;
    }

    .info-printmethods-hero__visual {
        position: relative !important;
        min-height: 650px !important;
        height: auto !important;
        overflow: hidden !important;
        border-radius: 0 !important;
        background: var(--bg-soft) !important;
    }

    .info-printmethods-hero__visual > img {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 650px !important;
        object-fit: cover !important;
        border-radius: 0 !important;
    }

    .info-printmethods-hero__card {
        position: absolute !important;
        z-index: 2 !important;
        right: 28px !important;
        bottom: 28px !important;
        width: min(310px,calc(100% - 56px)) !important;
        padding: 23px 24px !important;
        border-radius: 17px !important;
        background: rgba(255,255,255,.95) !important;
        box-shadow: 0 18px 42px rgba(15,31,18,.16) !important;
    }

    .info-printmethods-hero__card span {
        display: block !important;
        margin: 0 !important;
        color: var(--green) !important;
        font-size: .58rem !important;
        font-weight: 900 !important;
        letter-spacing: .14em !important;
    }

    .info-printmethods-hero__card strong {
        display: block !important;
        margin-top: 9px !important;
        font-family: var(--font-heading) !important;
        font-size: 1.35rem !important;
        font-weight: 800 !important;
        line-height: 1.08 !important;
        letter-spacing: -.04em !important;
    }

    .info-printmethods-hero__card small {
        display: block !important;
        margin-top: 9px !important;
        color: var(--text-soft) !important;
        font-size: .69rem !important;
        line-height: 1.45 !important;
    }
}

/* =========================================================
   HOMEPAGE BENEFITS - DESKTOP ASYMMETRISCH 3 + 2
   Overschrijft de eerdere desktop benefits-layout.
   Mobiel blijft ongewijzigd.
   ========================================================= */

@media (min-width: 861px) {

    .classic-benefits__grid {
        display: grid !important;
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
        gap: 16px !important;
        align-items: stretch !important;
    }

    /* Bovenste rij: grote kaart + twee compacte kaarten */
    .classic-benefit:nth-child(1) {
        grid-column: span 3 !important;
    }

    .classic-benefit:nth-child(2),
    .classic-benefit:nth-child(3) {
        grid-column: span 1.5 !important;
    }

    /* CSS Grid ondersteunt geen halve spans, daarom expliciet positioneren */
    .classic-benefit:nth-child(1) {
        grid-column: 1 / 4 !important;
    }

    .classic-benefit:nth-child(2) {
        grid-column: 4 / 5 !important;
    }

    .classic-benefit:nth-child(3) {
        grid-column: 5 / 7 !important;
    }

    /* Onderste rij: twee brede kaarten */
    .classic-benefit:nth-child(4) {
        grid-column: 1 / 4 !important;
    }

    .classic-benefit:nth-child(5) {
        grid-column: 4 / 7 !important;
    }

    .classic-benefit {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        min-width: 0 !important;
        min-height: 205px !important;
        padding: 26px 26px !important;
        border: 1px solid var(--line) !important;
        border-radius: 18px !important;
        background: #fff !important;
        box-shadow: none !important;
        transition:
            transform .2s ease,
            border-color .2s ease,
            box-shadow .2s ease !important;
    }

    .classic-benefit:nth-child(1) {
        min-height: 235px !important;
        padding: 30px !important;
        background:
            radial-gradient(circle at 90% 15%, rgba(61,165,28,.08), transparent 38%),
            #fff !important;
    }

    .classic-benefit:nth-child(4),
    .classic-benefit:nth-child(5) {
        min-height: 175px !important;
    }

    .classic-benefit:hover {
        transform: translateY(-3px) !important;
        border-color: #cfe0c9 !important;
        box-shadow: 0 16px 35px rgba(23,39,27,.07) !important;
    }

    .classic-benefit__icon {
        display: grid !important;
        width: 52px !important;
        height: 52px !important;
        flex: 0 0 52px !important;
        place-items: center !important;
        margin: 0 0 24px !important;
        border: 1px solid #d9e7d4 !important;
        border-radius: 50% !important;
        background: #f0f7ed !important;
        color: var(--green-dark) !important;
    }

    .classic-benefit:nth-child(1) .classic-benefit__icon {
        width: 58px !important;
        height: 58px !important;
        flex-basis: 58px !important;
    }

    .classic-benefit__icon svg {
        width: 24px !important;
        height: 24px !important;
        fill: none !important;
        stroke: currentColor !important;
        stroke-width: 1.6 !important;
        stroke-linecap: round !important;
        stroke-linejoin: round !important;
    }

    .classic-benefit__copy {
        display: block !important;
        min-width: 0 !important;
        padding: 0 !important;
    }

    .classic-benefit__copy strong,
    .classic-benefit__copy span,
    .classic-benefit__copy small {
        display: block !important;
    }

    .classic-benefit__copy strong {
        margin: 0 0 2px !important;
        font-family: var(--font-heading) !important;
        font-size: 1.08rem !important;
        line-height: 1.1 !important;
        letter-spacing: -.025em !important;
    }

    .classic-benefit:nth-child(1) .classic-benefit__copy strong {
        font-size: 1.3rem !important;
    }

    .classic-benefit__copy span {
        margin: 0 0 12px !important;
        font-family: var(--font-heading) !important;
        font-size: .96rem !important;
        font-weight: 700 !important;
        line-height: 1.15 !important;
    }

    .classic-benefit__copy small {
        max-width: 360px !important;
        margin: 0 !important;
        color: var(--muted) !important;
        font-size: .82rem !important;
        line-height: 1.5 !important;
    }

    .classic-benefit__arrow {
        display: none !important;
    }
}

/* Op kleinere laptops: nette 3 + 2 verdeling zonder te smalle kaart */
@media (min-width: 861px) and (max-width: 1100px) {
    .classic-benefits__grid {
        grid-template-columns: repeat(2, minmax(0,1fr)) !important;
        gap: 12px !important;
    }

    .classic-benefit:nth-child(1),
    .classic-benefit:nth-child(2),
    .classic-benefit:nth-child(3),
    .classic-benefit:nth-child(4) {
        grid-column: auto !important;
    }

    .classic-benefit:nth-child(5) {
        grid-column: 1 / -1 !important;
    }

    .classic-benefit,
    .classic-benefit:nth-child(1),
    .classic-benefit:nth-child(4),
    .classic-benefit:nth-child(5) {
        min-height: 190px !important;
        padding: 22px !important;
    }
}

/* =========================================================
   HOMEPAGE PREMIUM VOORDELEN - DESKTOP 3 + 2
   Correcte selectors voor de index:
   .classic-benefits-premium__grid / .classic-benefit-premium
   ========================================================= */

@media (min-width: 861px) {

    .classic-benefits-premium__grid {
        display: grid !important;
        grid-template-columns: repeat(12, minmax(0, 1fr)) !important;
        max-width: 1180px !important;
        gap: 16px !important;
        align-items: stretch !important;
    }

    /* Rij 1: groot + 2 compact */
    .classic-benefit-premium:nth-child(1) {
        grid-column: 1 / 7 !important;
    }

    .classic-benefit-premium:nth-child(2) {
        grid-column: 7 / 10 !important;
    }

    .classic-benefit-premium:nth-child(3) {
        grid-column: 10 / 13 !important;
    }

    /* Rij 2: twee brede kaarten */
    .classic-benefit-premium:nth-child(4) {
        grid-column: 1 / 7 !important;
    }

    .classic-benefit-premium:nth-child(5) {
        grid-column: 7 / 13 !important;
    }

    .classic-benefit-premium {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 0 !important;
        min-width: 0 !important;
        min-height: 205px !important;
        padding: 27px 26px !important;
        border: 1px solid rgba(38,59,42,.09) !important;
        border-radius: 20px !important;
        background: rgba(255,255,255,.97) !important;
        box-shadow: 0 10px 30px rgba(23,39,27,.045) !important;
        transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease !important;
    }

    .classic-benefit-premium:nth-child(1) {
        min-height: 235px !important;
        padding: 31px !important;
        background:
            radial-gradient(circle at 90% 15%, rgba(61,165,28,.09), transparent 38%),
            #fff !important;
    }

    .classic-benefit-premium:nth-child(4),
    .classic-benefit-premium:nth-child(5) {
        min-height: 175px !important;
    }

    .classic-benefit-premium:hover {
        transform: translateY(-3px) !important;
        border-color: #cbdcc4 !important;
        box-shadow: 0 18px 40px rgba(23,39,27,.075) !important;
    }

    .classic-benefit-premium__icon {
        display: grid !important;
        width: 54px !important;
        height: 54px !important;
        flex: 0 0 54px !important;
        place-items: center !important;
        margin: 0 0 25px !important;
        border: 1px solid #dce9d7 !important;
        border-radius: 50% !important;
        background: #f1f8ed !important;
        color: var(--green) !important;
    }

    .classic-benefit-premium:nth-child(1) .classic-benefit-premium__icon {
        width: 60px !important;
        height: 60px !important;
        flex-basis: 60px !important;
    }

    .classic-benefit-premium__icon svg {
        width: 25px !important;
        height: 25px !important;
        fill: none !important;
        stroke: currentColor !important;
        stroke-width: 1.8 !important;
        stroke-linecap: round !important;
        stroke-linejoin: round !important;
    }

    .classic-benefit-premium__text {
        display: flex !important;
        min-width: 0 !important;
        flex-direction: column !important;
    }

    .classic-benefit-premium__text strong {
        font-size: 1.18rem !important;
        line-height: 1.08 !important;
    }

    .classic-benefit-premium:nth-child(1) .classic-benefit-premium__text strong {
        font-size: 1.38rem !important;
    }

    .classic-benefit-premium__text > span {
        margin-top: 2px !important;
        font-size: .98rem !important;
        font-weight: 600 !important;
    }

    .classic-benefit-premium__text small {
        max-width: 420px !important;
        margin-top: 9px !important;
        font-size: .8rem !important;
        line-height: 1.5 !important;
    }

    .classic-benefit-premium__arrow {
        display: none !important;
    }
}

/* Kleinere laptops: 2 + 2 + 1 */
@media (min-width: 861px) and (max-width: 1100px) {
    .classic-benefits-premium__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px !important;
    }

    .classic-benefit-premium:nth-child(1),
    .classic-benefit-premium:nth-child(2),
    .classic-benefit-premium:nth-child(3),
    .classic-benefit-premium:nth-child(4) {
        grid-column: auto !important;
    }

    .classic-benefit-premium:nth-child(5) {
        grid-column: 1 / -1 !important;
    }

    .classic-benefit-premium,
    .classic-benefit-premium:nth-child(1),
    .classic-benefit-premium:nth-child(4),
    .classic-benefit-premium:nth-child(5) {
        min-height: 190px !important;
        padding: 22px !important;
    }
}

