@font-face {
    font-family: 'Caveat';
    src: url('../fonts/caveat-600.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: block;
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* === Tokens === */
:root {
    --color-bg:       #ffffff;
    --color-dark:     #0d0d0d;
    --color-text:     #414141;
    --color-primary:  #26A6FF;
    --color-accent:   #FF821D;
    --color-muted:    #888888;
    --color-border:   #e8e8e8;
    --color-surface:  #f7f7f7;
    --color-surface2: #f0f4f8;

    --font-sans: 'Saira', system-ui, sans-serif;

    --max-width: 1260px;
    --gutter:    clamp(1.25rem, 5vw, 3rem);
    --section:   clamp(4.5rem, 9vw, 8rem);

    --radius-card: 14px;
    --radius-btn:  8px;
    --radius-hero: 20px;
}

/* === Base === */
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* =========================================================
   HEADER — always white
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem max(var(--gutter), calc((100vw - 1720px) / 2));
    background: #fff;
    border-bottom: 1px solid var(--color-border);
}

.site-header .main-navigation {
    justify-self: center;
}

.site-header .header-actions {
    justify-self: end;
}

.site-branding a,
.site-title {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--color-text);
    text-transform: uppercase;
}

.site-branding a:hover { color: var(--color-primary); }

.site-logo-link { display: flex; align-items: center; }
.site-logo { height: 36px; width: auto; display: block; }

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

.main-navigation a,
.nav-mega-toggle {
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-muted);
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0;
}

.main-navigation a::after,
.nav-mega-toggle::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--color-accent);
    transition: width 0.2s ease;
}

.main-navigation a:hover,
.nav-mega-toggle:hover,
.nav-mega-toggle[aria-expanded="true"] { color: var(--color-text); }

.main-navigation a:hover::after,
.nav-mega-toggle:hover::after,
.nav-mega-toggle[aria-expanded="true"]::after { width: 100%; }

.nav-chevron {
    transition: transform 0.2s;
    flex-shrink: 0;
}

.nav-mega-toggle[aria-expanded="true"] .nav-chevron { transform: rotate(180deg); }

/* Header actions (CTA + hamburger) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.78rem;
}

.header-google-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border: 1px solid transparent;
    border-radius: 999px;
    transition: border-color 0.2s, background 0.2s;
    cursor: pointer;
}

.header-google-badge:hover {
    border-color: #FBBC05;
    background: rgba(251,188,5,0.05);
}

.header-google-stars {
    display: flex;
    align-items: center;
    gap: 1px;
}

.header-google-count {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-muted);
    white-space: nowrap;
}

@media (max-width: 860px) {
    .header-google-badge { display: none; }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 4px;
    width: 32px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transform-origin: center;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.2s,
                width 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-toggle span:nth-child(1) { width: 24px; }
.nav-toggle span:nth-child(2) { width: 16px; }
.nav-toggle span:nth-child(3) { width: 20px; }

/* → cross */
.nav-toggle.open span:nth-child(1) { width: 22px; transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { width: 22px; transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   MEGA MENU
   ========================================================= */
.mega-menu {
    position: fixed;
    top: 57px;
    left: max(var(--gutter), calc((100vw - 1720px) / 2));
    right: max(var(--gutter), calc((100vw - 1720px) / 2));
    z-index: 99;
    background: #fff;
    border-radius: 0 0 var(--radius-hero) var(--radius-hero);
    box-shadow: 0 16px 48px rgba(0,0,0,0.13), 0 4px 14px rgba(0,0,0,0.07);
    display: none;
}

.mega-menu.open { display: block; }

.mega-inner {
    padding: 2rem 2rem 1.75rem var(--gutter);
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 1.5rem;
    align-items: stretch;
}

.mega-content {
    min-width: 0;
}

.mega-promo {
    position: relative;
    border-radius: var(--radius-hero);
    overflow: hidden;
    min-height: 180px;
}

.mega-promo-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-promo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 55%, transparent 100%);
}

.mega-promo-text {
    position: absolute;
    bottom: 1.25rem;
    left: 1.1rem;
    right: 1.1rem;
}

.mega-promo-tagline {
    font-size: 0.8rem;
    line-height: 1.45;
    color: rgba(255,255,255,0.88);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.mega-promo-phone-label {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 0.25rem;
}

.mega-promo-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.mega-promo-phone-number {
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.15s;
}

.mega-promo-phone-number:hover { color: var(--color-primary); }

.mega-promo-whatsapp {
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.15s;
}

.mega-promo-whatsapp:hover { color: #25D366; }

.mega-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 1.25rem;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: background 0.15s, border-color 0.15s;
    color: var(--color-text);
    text-decoration: none;
}

.mega-item:hover {
    background: var(--color-surface);
    border-color: var(--color-border);
}

.mega-item-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--color-surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: background 0.15s;
}

.mega-item:hover .mega-item-icon { background: rgba(38,166,255,0.12); }

.mega-item-img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border-radius: 6px;
}

.mega-item-title {
    font-size: 0.875rem;
    font-weight: 600;
    flex-grow: 1;
    line-height: 1.3;
}

.mega-item-arrow {
    color: var(--color-muted);
    opacity: 0;
    transition: opacity 0.15s, transform 0.15s;
    flex-shrink: 0;
}

.mega-item:hover .mega-item-arrow { opacity: 1; transform: translateX(2px); }

.mega-footer {
    border-top: 1px solid var(--color-border);
    padding-top: 1.25rem;
}

/* Backdrop */
.mega-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(0,0,0,0.15);
}

.mega-backdrop.open { display: block; }

/* =========================================================
   HERO — rounded card
   ========================================================= */
.hero-wrap {
    padding: 1.5rem max(var(--gutter), calc((100vw - 1720px) / 2)) 0;
}

.hero {
    position: relative;
    min-height: 520px;
    height: 72vh;
    max-height: 780px;
    border-radius: var(--radius-hero);
    overflow: hidden;
    background-color: #1a2a3a;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(120deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.68) 50%, rgba(0,0,0,0.42) 100%),
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(38,166,255,0.18) 0%, transparent 70%);
    border-radius: inherit;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: clamp(2.5rem, 5vw, 4rem);
    max-width: 660px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
}

/* .hero-eyebrow::before {
    content: '';
    display: block;
    width: 1.75rem;
    height: 2px;
    background: currentColor;
    flex-shrink: 0;
} */

.hero-headline {
    font-size: clamp(2rem, 4.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -0.03em;
    color: #fff;
    max-width: 16ch;
    margin-bottom: 1.1rem;
}

.hero-sub {
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    font-weight: 300;
    color: rgba(255,255,255,0.65);
    max-width: 44ch;
    line-height: 1.65;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.75rem;
    background: #fff;
    color: var(--color-text);
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn-hero-primary:hover { background: #f0f0f0; transform: translateY(-1px); }

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.75rem;
    background: transparent;
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--radius-btn);
    border: 1.5px solid rgba(255,255,255,0.45);
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}

.btn-hero-outline:hover { color: var(--color-primary); border-color: rgba(255,255,255,0.45); transform: translateY(-1px); }

.hero-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    padding: 0.8rem 0;
    text-decoration: underline;
    text-decoration-color: rgba(255,255,255,0.2);
    text-underline-offset: 3px;
    transition: color 0.2s, text-decoration-color 0.2s;
}

.hero-text-link:hover { color: #fff; text-decoration-color: rgba(255,255,255,0.5); }

.hero-trustline {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
}

/* =========================================================
   STATS / ABOUT
   ========================================================= */
.stats {
    padding: var(--section) 0;
}

.stats-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 8vw, 7rem);
    align-items: center;
}

.stats-headline {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.stats-body {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.75;
    max-width: 44ch;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stat-value {
    font-size: clamp(2.25rem, 4vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--color-text);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-muted);
    letter-spacing: 0.02em;
}

/* =========================================================
   BRAND STRIP
   ========================================================= */
.brands {
    padding: 0 0 var(--section);
    padding-bottom: 0;
}

.brands-bg {
    background-color: var(--color-dark);
    background-image:
        linear-gradient(rgba(0,0,0,0.42), rgba(0,0,0,0.85)),
        url('../images/wndw_bg_kozijnen.jpg');
    background-size: cover;
    background-position: center;
    padding: clamp(3rem, 6vw, 6rem) 0;
    position: relative;
}

.brands-header {
    text-align: center;
    margin-bottom: 3rem;
}

.brands-headline {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 0.5rem;
}

.brands-sub {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.45);
}

.brands-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 5rem);
    flex-wrap: wrap;
}

.brand-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.brand-logo-wrap:hover { opacity: 1; }

.brand-logo {
    height: 40px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.brand-logo--large { height: 56px; }

@media (max-width: 600px) {
    .brands-logos { gap: 2rem 3rem; }
    .brand-logo { height: 36px; }
}

/* =========================================================
   PRODUCTS
   ========================================================= */
.products {
    background: var(--color-surface);
    overflow: hidden;
    padding-top: clamp(2.5rem, 5vw, 4rem);
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.products-track-wrap {
    display: flex;
    align-items: stretch;
    min-height: 480px;
    position: relative;
    padding-left: max(var(--gutter), calc((100vw - var(--max-width)) / 2 + var(--gutter)));
}

.products-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 100%;
    background: linear-gradient(to right, transparent, var(--color-surface) 85%);
    pointer-events: none;
    z-index: 2;
}

.products-scroll-btn {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--color-text);
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, opacity 0.2s;
}

.products-scroll-btn:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: 0 6px 20px rgba(38,166,255,0.3);
}

.products-scroll-btn--prev {
    right: 80px;
}

.products-scroll-btn.at-end,
.products-scroll-btn.at-start { opacity: 0; pointer-events: none; }

/* Sticky title column */
.products-title-col {
    flex: 0 0 clamp(220px, 22vw, 300px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1.5rem, 3vw, 2.5rem) clamp(2.5rem, 5vw, 4rem) 0;
    background: var(--color-surface);
    position: sticky;
    left: 0;
    z-index: 2;
}

.products-headline {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.products-cta-btn { align-self: flex-start; margin-top: 0.5rem; }

/* Scrollable card track */
.products-grid {
    display: flex;
    align-items: stretch;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 2vw, 1.5rem) clamp(2.5rem, 5vw, 4rem) 0;
    flex: 1;
}

.products-grid::-webkit-scrollbar { display: none; }

/* Cards */
.product-card {
    flex: 0 0 clamp(230px, 20vw, 280px);
    height: 380px;
    margin-top: 0;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #fff;
    border: 1.5px solid #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0,0,0,0.15);
}

.product-card-body {
    padding: 1.25rem 1.25rem 0.75rem;
    flex-shrink: 0;
}

.product-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--color-text);
}

.product-card-img {
    flex: 1;
    overflow: hidden;
    margin: 0 0.75rem 0.75rem;
    border-radius: 12px;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-img img { transform: scale(1.05); }

.product-card-arrow {
    position: absolute;
    bottom: 1.25rem;
    right: 1.25rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.2s, transform 0.2s;
}

.product-card:hover .product-card-arrow { opacity: 1; transform: scale(1); }

/* =========================================================
   WHY WNDW
   ========================================================= */
.why {
    padding: var(--section) 0;
    background: var(--color-bg);
}

.why-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Video card */
.why-video-col {
    display: flex;
    justify-content: center;
}

.why-card {
    background: #111820;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    max-width: 380px;

}

.why-video-wrap {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

/* .why-video-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.2) 1px, transparent 1px);
    background-size: 5px 5px;
    pointer-events: none;
    z-index: 1;
} */

.why-video-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgb(38 166 255) 100%);
    pointer-events: none;
    z-index: 2;
}

.why-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-card-text {
    padding: 1.25rem 1.4rem 1.5rem;
    background: var(--color-primary);
}

.why-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.why-card-desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0;
}

.why-annotation {
	position: absolute;
    bottom: -2rem;
    right: -10rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    pointer-events: none;
}

.why-annotation-arrow {
    width: 90px;
    filter: invert(55%) sepia(90%) saturate(500%) hue-rotate(185deg) brightness(105%);
    display: block;
    transform: scaleX(-1);
}

.why-annotation-text {
    font-family: 'Caveat', cursive;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
    display: block;
    transform: rotate(-20deg);
    transform-origin: left top;
    margin-left: 0.5rem;
    margin-top: 20px;
}

/* Content */
.why-headline {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: var(--color-text);
    margin: 0.75rem 0 1rem;
    line-height: 1.2;
}

.why-sub {
    font-size: 0.95rem;
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.why-usps {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.5rem;
}

.why-usp {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
}

.why-usp-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

@media (max-width: 860px) {
    .why-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .why-usps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .why-usps {
        grid-template-columns: 1fr;
    }
}

/* =========================================================
   PROCESS — liquid glass
   ========================================================= */
.process {
    padding: var(--section) 0;
    background: var(--color-surface2);
    position: relative;
}

.process-orb { display: none; }

.process-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.process-header-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.process-label {
    letter-spacing: 0.12em;
}

.process-headline-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: space-between;
}

.process-headline {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--color-text);
}

.process-intro-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.process-intro {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.75;
    max-width: 44ch;
}

.process-ctas {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: clamp(2rem, 4vw, 3rem);
}

.process-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-muted);
    transition: color 0.2s, gap 0.2s;
}

.process-cta-link:hover {
    color: var(--color-text);
    gap: 0.6rem;
}

.process-cta-pdf {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-muted);
    border: 1px solid var(--color-border);
    border-radius: 6px;
    padding: 0.3rem 0.7rem;
    transition: color 0.2s, border-color 0.2s, background 0.2s;
    text-decoration: none;
}

.process-cta-pdf:hover {
    color: var(--color-primary);
    border-color: rgba(38,166,255,0.4);
    background: rgba(38,166,255,0.05);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    align-items: stretch;
    position: relative;
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.75rem 1.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;

    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow:
        0 2px 8px rgba(0,0,0,0.04),
        0 8px 24px rgba(0,0,0,0.06);
}

.step-num {
    position: absolute;
    top: -0.15em;
    right: 0.5rem;
    font-size: 7rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(38,166,255,0.07);
    font-family: var(--font-sans);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.step-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    background: var(--color-surface2);
    border: 1px solid var(--color-border);
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: var(--color-text);
    position: relative;
    z-index: 1;
}

.step-text {
    font-size: 0.825rem;
    color: var(--color-muted);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* =========================================================
   USP BAR
   ========================================================= */
.usps-bar {
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 1.4rem var(--gutter);
}

.usps-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem 2.5rem;
    flex-wrap: wrap;
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--color-text);
}

.usp-item svg { color: var(--color-primary); flex-shrink: 0; }

.usp-sep { color: var(--color-border); font-size: 1rem; }

/* =========================================================
   PROJECTS PREVIEW
   ========================================================= */
/* ── USP Bar ─────────────────────────────────── */
.usp-bar {
    background: var(--color-primary);
    padding: 0;
}

.usp-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing);
}

.usp-bar-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    white-space: nowrap;
}

.usp-bar-icon {
    color: rgba(255,255,255,0.75);
    flex-shrink: 0;
    display: flex;
}

.usp-bar-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #fff;
}

.usp-bar-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    flex-shrink: 0;
}

@media (max-width: 640px) {
    .usp-bar-inner {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .usp-bar-inner::-webkit-scrollbar { display: none; }
}

/* ── Projects ─────────────────────────────────── */
.projects-preview {
    padding: var(--section) 0;
}

.projects-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
    flex-wrap: wrap;
}

.projects-headline {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.15;
    margin-bottom: 0.6rem;
}

.projects-intro {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.7;
    max-width: 50ch;
}

.projects-header-cta { flex-shrink: 0; }

.projects-grid {
    column-count: 3;
    column-gap: 1rem;
}

.project-card {
    break-inside: avoid;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--color-bg);
    margin-bottom: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    transition: box-shadow 0.25s, transform 0.25s;
}

.project-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}

.project-img {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

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

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

.project-card--large .project-img { aspect-ratio: 4/3; }

/* Cycling images */
.project-img--cycle { background: #1a2a3a; }

.project-cycle-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.project-cycle-img.active { opacity: 1; }

.project-cycle-btn {
    position: absolute;
    top: 50%;
    right: 0.75rem;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    z-index: 2;
}

.project-cycle-btn:hover {
    background: rgba(38,166,255,0.7);
    transform: translateY(-50%) scale(1.08);
}

.project-img-counter {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 0.25rem 0.65rem;
    z-index: 2;
}

.project-img--placeholder {
    background: linear-gradient(135deg, #dde6ef 0%, #c8d5e0 100%);
}

.project-info { padding: 1.1rem 1.25rem; }

.project-tag {
    display: inline-block;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.4rem;
}

.project-info h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 0.25rem; letter-spacing: -0.01em; }
.project-info p { font-size: 0.78rem; color: var(--color-muted); }

.project-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-muted);
    transition: color 0.2s, gap 0.2s;
}

.project-card:hover .project-read-more {
    color: var(--color-primary);
    gap: 0.55rem;
}

/* =========================================================
   REVIEWS
   ========================================================= */
/* =========================================================
   REVIEWS
   ========================================================= */

.reviews {
    padding: var(--section) 0;
    background: #fff;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

/* Header */
.reviews-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
    flex-wrap: wrap;
}

.reviews-header-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reviews-headline {
    font-size: clamp(1.6rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

/* Rating block */
.reviews-rating-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    flex-shrink: 0;
}

.reviews-rating-score {
    font-size: 2.75rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--color-text);
}

.reviews-rating-right {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.reviews-stars {
    display: flex;
    gap: 2px;
    color: #F5A623;
}

.reviews-rating-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: var(--color-muted);
}

/* Slider */
.reviews-slider-wrap {
    overflow: hidden;
    cursor: grab;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.reviews-slider-wrap:active { cursor: grabbing; }

.reviews-slider {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    animation: reviews-scroll 32s linear infinite;
    padding: 0.5rem 0 1rem;
}

.reviews-slider:hover { animation-play-state: paused; }

@keyframes reviews-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Cards */
.review-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-top: 3px solid var(--card-accent, var(--color-primary));
    border-radius: var(--radius-card);
    padding: 1.5rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 0 0 340px;
    width: 340px;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.review-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: -0.1rem;
    right: 1.25rem;
    font-size: 6rem;
    line-height: 1;
    color: var(--card-accent, var(--color-primary));
    opacity: 0.08;
    font-family: Georgia, serif;
    pointer-events: none;
}

.review-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-stars { display: flex; gap: 2px; color: #F5A623; }

.review-google-logo { flex-shrink: 0; }

.review-text {
    font-size: 0.88rem;
    line-height: 1.75;
    color: var(--color-text);
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}

.review-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    font-family: var(--font-sans);
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.review-name { font-size: 0.85rem; font-weight: 700; color: var(--color-text); }
.review-date { font-size: 0.72rem; color: var(--color-muted); }

.reviews-google-logo { flex-shrink: 0; }

/* =========================================================
   PARTNERSHIP CTA
   ========================================================= */

/* =========================================================
   FAQ
   ========================================================= */
.faq {
    padding: var(--section) 0;
    background: var(--color-bg);
}

.faq-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: clamp(3rem, 6vw, 6rem);
    align-items: start;
}

.faq-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: sticky;
    top: calc(57px + 2rem);
}

.faq-headline {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--color-text);
}

.faq-sub {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.65;
}

.faq-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-primary);
    margin-top: 0.25rem;
    transition: gap 0.2s;
}

.faq-contact-link:hover { gap: 0.6rem; }

.faq-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--color-border);
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: left;
    transition: color 0.2s;
}

.faq-question:hover { color: var(--color-primary); }

.faq-icon {
    flex-shrink: 0;
    color: var(--color-muted);
    transition: transform 0.3s ease;
}

.faq-item--open .faq-icon { transform: rotate(180deg); }
.faq-item--open .faq-question { color: var(--color-primary); }

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding-bottom: 0;
}

.faq-item--open .faq-answer {
    max-height: 600px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.75;
}

@media (max-width: 768px) {
    .faq-inner { grid-template-columns: 1fr; }
    .faq-header { position: static; }
}
.partnership {
    padding: clamp(3.5rem, 7vw, 6rem) 0;
    background-color: #1e2328;
    background-image: url('https://wndw.nl/wp-content/uploads/2024/09/IMG_5357.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 0 0 32px 32px;
    overflow: hidden;
    z-index: 1;
}

.partnership::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 20, 28, 0.80);
}

.partnership .section-wrap {
    position: relative;
    z-index: 1;
}

.partnership-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.partnership-headline {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.partnership-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    max-width: 44ch;
    line-height: 1.65;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: #fff;
    position: relative;
    z-index: 0;
    margin-top: -50px;
    padding-top: 50px;
}

.footer-main {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3.5rem);
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
}

/* Brand col */
.footer-logo-link { display: inline-flex; margin-bottom: 1.5rem; }
.footer-logo { height: 68px; width: auto; }

.footer-address {
    font-size: 0.85rem;
    color: rgba(0,0,0,0.45);
    line-height: 1.7;
    font-style: normal;
    margin-bottom: 1.25rem;
}

.footer-contact-list { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: rgba(0,0,0,0.55);
}

.footer-contact-list svg { color: var(--color-primary); flex-shrink: 0; }
.footer-contact-list a { color: rgba(0,0,0,0.7); transition: color 0.2s; }
.footer-contact-list a:hover { color: #414141; }

/* Nav cols */
.footer-col-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(0,0,0,0.35);
    margin-bottom: 1.25rem;
}

.footer-col--newsletter .footer-col-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    color: #0d1520;
    line-height: 1.35;
    margin-bottom: 0.6rem;
}

.footer-nav { display: flex; flex-direction: column; }

.footer-nav li {
    border-bottom: 1px solid rgba(0,0,0,0.07);
}

.footer-nav a {
    display: block;
    font-size: 0.85rem;
    color: rgba(0,0,0,0.5);
    padding: 0.5rem 0;
    transition: color 0.2s, transform 0.2s;
}

.footer-nav a:hover { color: #0d1520; transform: translateX(4px); }

/* Newsletter */
.footer-newsletter-sub {
    font-size: 0.82rem;
    color: rgba(0,0,0,0.45);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.newsletter-field-wrap {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.newsletter-field-wrap input[type="email"] {
    flex: 1;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: var(--radius-btn);
    color: #0d1520;
    font-size: 0.85rem;
    padding: 0.65rem 1rem;
    width: auto;
    transition: border-color 0.2s;
}

.newsletter-field-wrap input[type="email"]::placeholder { color: rgba(0,0,0,0.3); }
.newsletter-field-wrap input[type="email"]:focus { border-color: var(--color-primary); outline: none; }

/* Google Reviews */
.footer-reviews { margin-bottom: 1.5rem; }

.footer-google-badge {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-google-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-google-img {
    width: 70px;
    height: auto;
}

.footer-google-text {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.google-rating-score {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d1520;
}

.google-rating-label {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.4);
}

.google-stars {
    display: flex;
    align-items: center;
    gap: 2px;
}

.google-review-count {
    font-size: 0.75rem;
    color: rgba(0,0,0,0.4);
    margin-left: 0.4rem;
}

/* Social */
.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social-label {
    font-size: 0.78rem;
    color: rgba(0,0,0,0.35);
    white-space: nowrap;
}

.footer-social-links { display: flex; gap: 0.5rem; }

.social-link {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.45);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.social-link:hover { background: var(--color-primary); color: #fff; border-color: var(--color-primary); }
.social-link:hover .yt-triangle { fill: rgba(255,255,255,0.4); }

/* Bottom bar */
.footer-bottom {
    background: rgba(0,0,0,0.04);
    padding: 1.1rem 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(0,0,0,0.35);
    gap: 1rem;
    flex-wrap: wrap;
}

.dev-credit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.dev-credit:hover { opacity: 1; }

.dev-credit-by {
    font-size: 0.7rem;
    color: rgba(0,0,0,0.3);
    letter-spacing: 0.02em;
}

.dev-credit-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: rgba(0,0,0,0.5);
    background: rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 0.2rem 0.65rem;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

@keyframes t-drop {
    0%   { transform: translateY(0);    opacity: 1; }
    20%  { transform: translateY(0);    opacity: 0; }
    21%  { transform: translateY(-100%); opacity: 0; }
    100% { transform: translateY(0);    opacity: 1; }
}

.dev-credit-t-wrap {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    height: 1.1em;
    line-height: 1.1;
    position: relative;
    top: -1px;
}

.dev-credit-t {
    display: inline-block;
    transition: color 0.2s;
}

.dev-credit:hover .dev-credit-badge {
    color: var(--color-primary);
    border-color: rgba(38,166,255,0.35);
    background: rgba(38,166,255,0.06);
}

.dev-credit:hover .dev-credit-t {
    animation: t-drop 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
    color: var(--color-primary);
}

.dev-credit-dot { color: var(--color-primary); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--color-primary); color: #fff; box-shadow: 0 4px 14px rgba(38,166,255,0.25); }
.btn-primary:hover { background: #0e92e8; color: #fff; box-shadow: 0 6px 20px rgba(38,166,255,0.35); }

.btn-accent { background: var(--color-accent); color: #fff; box-shadow: 0 4px 14px rgba(255,130,29,0.2); }
.btn-accent:hover { background: #e8711a; color: #fff; }

.btn-ghost { background: transparent; color: var(--color-text); border: 1.5px solid var(--color-border); }
.btn-ghost:hover { border-color: var(--color-text); color: var(--color-text); }

.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-outline-white:hover { border-color: #fff; color: #fff; }

/* =========================================================
   CTA BAND
   ========================================================= */
.cta-band {
    padding: var(--section) 0;
    background: var(--color-bg);
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    min-height: 480px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}

.cta-card-left {
    background: #0d1520;
    padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
}

.cta-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--color-primary);
    text-transform: uppercase;
}

.cta-headline {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.cta-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    max-width: 42ch;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.75rem;
    background: #fff;
    color: #0d1520;
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius-btn);
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.btn-white:hover { background: #e8f4ff; transform: translateY(-1px); }

.cta-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

.cta-text-link:hover { color: #fff; }

.cta-card-right {
    position: relative;
    overflow: hidden;
}

.cta-card-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.cta-channels {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0;
    background: transparent;
    padding: 2rem 0 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 2.5rem;
}

.cta-channel {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 1.5rem 0.75rem 0;
}

.cta-channel-divider {
    width: 1px;
    background: rgba(255,255,255,0.08);
    align-self: stretch;
    margin: 0.5rem 0;
}

.cta-channel-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(38,166,255,0.1);
    border: 1px solid rgba(38,166,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    margin-top: 0.1rem;
}

.cta-channel-body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cta-channel-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-sans);
}

.cta-channel-desc {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.55;
}

.cta-channel-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-primary);
    transition: gap 0.2s;
    margin-top: 0.15rem;
}

.cta-channel-link:hover { gap: 0.55rem; }

/* === Forms === */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-btn);
    width: 100%;
    transition: border-color 0.2s;
    outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--color-primary); }

/* =========================================================
   SECTION SHARED
   ========================================================= */
.section-wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 var(--gutter); }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.85rem;
}

.section-label::before {
    content: '';
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--color-accent);
    flex-shrink: 0;
}

/* Scroll reveal — no animation */
.reveal, .reveal.visible { opacity: 1; transform: none; }

/* =========================================================
   INNER PAGES
   ========================================================= */
.page-canvas {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: clamp(3rem, 7vw, 5rem) var(--gutter) var(--section);
}

.entry-title { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 1.5rem; }
.entry-meta { font-size: 0.8rem; color: var(--color-muted); margin-bottom: 2.5rem; display: flex; gap: 1rem; }
.entry-content { max-width: 72ch; }
.entry-content p { margin-bottom: 1.25rem; }
.entry-content h2 { font-size: 1.5rem; font-weight: 700; margin: 2rem 0 1rem; letter-spacing: -0.02em; }
.entry-content h3 { font-size: 1.2rem; font-weight: 700; margin: 1.75rem 0 0.75rem; }
.entry-content a { color: var(--color-primary); border-bottom: 1px solid currentColor; }
.post-navigation { display: flex; justify-content: space-between; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--color-border); font-size: 0.875rem; font-weight: 600; }
.read-more { display: inline-block; margin-top: 1rem; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-primary); border-bottom: 2px solid var(--color-primary); padding-bottom: 2px; }
/* =========================================================
   OVER WNDW PAGE
   ========================================================= */

/* Hero */
.over-hero-wrap {
    padding: 1.5rem max(var(--gutter), calc((100vw - 1720px) / 2)) 0;
}

.over-hero-card {
    position: relative;
    border-radius: var(--radius-hero);
    border-bottom-left-radius: 0;
    overflow: hidden;
    height: clamp(360px, 52vw, 560px);
    background: #1a2a3a;
}

.over-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.over-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(125deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.2) 100%);
    border-radius: inherit;
}

.over-hero-content {
    position: absolute;
    bottom: clamp(2rem, 4vw, 3.5rem);
    left: clamp(1.75rem, 4vw, 3.5rem);
    right: 38%;
    z-index: 1;
}

.over-hero-headline {
    font-size: clamp(1.75rem, 3.8vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #fff;
    margin-bottom: 0.9rem;
}

.over-hero-sub {
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    color: rgba(255,255,255,0.78);
    line-height: 1.6;
    max-width: 44ch;
}

.over-hero-footer {
    padding: 0;
    margin-top: -1.75rem;
    position: relative;
    z-index: 2;
}

.over-hero-cta-bg {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: #fff;
    border-radius: 0 var(--radius-hero) 0 0;
    padding: 1.75rem 2.75rem 0.45rem var(--gutter);
}

.over-hero-cta-bg::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 0;
    width: var(--radius-hero);
    height: var(--radius-hero);
    background: radial-gradient(
        circle at 100% 0%,
        transparent var(--radius-hero),
        #fff var(--radius-hero)
    );
    pointer-events: none;
}


.over-hero-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.9rem 2.25rem;
    background: #111;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: 10px;
}

.over-hero-cta:hover {
    background: #414141;
}

/* Over WNDW page — footer inside card so the image extends full height */
.over-wndw-hero-wrap .over-hero-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    margin-top: 0;
}

.over-wndw-hero-wrap .over-hero-content {
    bottom: clamp(7rem, 12vw, 9.5rem);
}

.over-wndw-hero-wrap .over-hero-cta-bg::after,
.projecten-hero-wrap .over-hero-cta-bg::after,
.producten-hero-wrap .over-hero-cta-bg::after,
.product-hero-wrap .over-hero-cta-bg::after,
.contact-hero-wrap .over-hero-cta-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 100%;
    width: var(--radius-hero);
    height: var(--radius-hero);
    background: radial-gradient(
        circle at 100% 0%,
        transparent var(--radius-hero),
        #fff var(--radius-hero)
    );
    pointer-events: none;
}

/* About */
.over-about {
    padding: clamp(5rem, 9vw, 8rem) 0;
}

.over-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 7vw, 8rem);
    align-items: start;
}

.over-about-heading {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 1.1rem;
    color: var(--color-text);
}

.over-about-body {
    font-size: 0.95rem;
    line-height: 1.72;
    color: #444;
    max-width: 46ch;
    margin-bottom: 2.5rem;
}

.over-about-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.over-partner-link {
    cursor: pointer;
}

.over-partner-logo {
    height: 26px;
    width: auto;
    filter: grayscale(1) opacity(0.55);
    transition: filter 0.2s;
}

.over-partner-link:hover .over-partner-logo {
    filter: grayscale(0) opacity(1);
}

.over-about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem 3rem;
}

.over-stat {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

/* USPs */
.over-usps {
    background: var(--color-surface2);
    padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.over-usps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.over-usp-card {
    background: #fff;
    border-radius: var(--radius-card);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.over-usp-icon {
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.over-usp-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text);
    line-height: 1.2;
}

.over-usp-sub {
    font-size: 0.82rem;
    color: var(--color-muted);
    line-height: 1.5;
}

@media (max-width: 860px) {
    .over-usps-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .over-usps-grid { grid-template-columns: 1fr; }
}

.over-stat-num {
    font-size: clamp(2.4rem, 4.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--color-text);
}

.over-stat-label {
    font-size: 0.8rem;
    color: var(--color-muted);
    line-height: 1.45;
    max-width: 18ch;
}

/* Services */
.over-services {
    padding-bottom: clamp(5rem, 9vw, 8rem);
}

.over-services-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.over-services-title {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.over-services-nav {
    display: flex;
    gap: 0.6rem;
}

.over-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--color-border);
    background: #fff;
    color: var(--color-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
    flex-shrink: 0;
}

.over-nav-btn:hover,
.over-nav-btn--active {
    background: var(--color-text);
    border-color: var(--color-text);
    color: #fff;
}

.over-nav-btn:active { transform: scale(0.94); }

.over-services-track-wrap {
    overflow: hidden;
}

.over-services-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.over-services-track::-webkit-scrollbar { display: none; }

.over-service-card {
    scroll-snap-align: start;
    min-width: 0;
}

.over-service-img-wrap {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    margin-bottom: 1.1rem;
    aspect-ratio: 4/3;
}

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

.over-service-card:hover .over-service-img { transform: scale(1.04); }

.over-service-num {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #fff;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    line-height: 1;
}

.over-service-title {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
    color: var(--color-text);
}

.over-service-desc {
    font-size: 0.82rem;
    color: var(--color-muted);
    line-height: 1.55;
    max-width: 32ch;
}

/* Team */
.over-team {
    padding: clamp(5rem, 9vw, 8rem) 0;
}

.over-team-header {
    margin-bottom: 2.75rem;
}

.over-team-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-muted);
    margin-bottom: 0.9rem;
}

.over-team-eyebrow::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-text);
    flex-shrink: 0;
}

.over-team-heading {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.over-team-sub {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.6;
    max-width: 52ch;
}

.over-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.over-team-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--color-surface);
}

.over-team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.over-team-card:hover .over-team-photo { transform: scale(1.04); }

.over-team-info {
    position: absolute;
    bottom: 0.85rem;
    left: 0.85rem;
    right: 0.85rem;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.over-team-name {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--color-text);
    line-height: 1.2;
    margin-bottom: 0.2rem;
}

.over-team-role {
    display: block;
    font-size: 0.76rem;
    color: var(--color-muted);
    line-height: 1;
}

.over-team-linkedin {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--color-text);
    border-radius: 7px;
    color: #fff;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
}

.over-team-linkedin:hover {
    background: #0077b5;
    transform: scale(1.08);
}

/* Over page — responsive */
@media (max-width: 860px) {
    .over-hero-content { right: 5%; }
    .over-about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .over-about-stats { grid-template-columns: 1fr 1fr; }
    .over-services-track { grid-template-columns: repeat(4, 70vw); }
    .over-team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .over-stat-num { font-size: 2.2rem; }
    .over-services-track { grid-template-columns: repeat(4, 80vw); }
    .over-team-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .over-team-info { padding: 0.65rem 0.75rem; }
    .over-team-name { font-size: 0.8rem; }
}

/* =========================================================
   404 PAGE
   ========================================================= */
.page-404-hero {
    position: relative;
    min-height: calc(100vh - 57px);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://wndw.nl/wp-content/uploads/2024/09/home1-e1693430415945.jpg');
    background-size: cover;
    background-position: center;
    background-color: #1a2a3a;
    text-align: center;
    padding: 4rem var(--gutter);
}

.page-404-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.7) 100%
    );
}

.page-404-content {
    position: relative;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.page-404-code {
    font-size: clamp(6rem, 18vw, 12rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1;
    color: rgba(255,255,255,0.12);
    display: block;
    margin-bottom: -1rem;
}

.page-404-headline {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    color: #fff;
    line-height: 1.2;
}

.page-404-sub {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    max-width: 44ch;
    margin-bottom: 0.5rem;
}

.page-404-support {
    padding: var(--section) 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
}

.support-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: clamp(3rem, 7vw, 6rem);
    align-items: center;
}

.support-headline {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
    margin-bottom: 0.85rem;
}

.support-body {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.75;
    max-width: 40ch;
}

.support-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.support-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
    color: var(--color-text);
}

.support-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 6px 24px rgba(38,166,255,0.1);
    transform: translateY(-2px);
}

.support-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--color-surface2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    flex-shrink: 0;
    transition: background 0.2s;
}

.support-card:hover .support-card-icon { background: rgba(38,166,255,0.12); }

.support-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex-grow: 1;
}

.support-card-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.support-card-value {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.support-card-note {
    font-size: 0.775rem;
    color: var(--color-muted);
}

.support-card-arrow {
    color: var(--color-muted);
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
}

.support-card:hover .support-card-arrow { color: var(--color-primary); transform: translateX(3px); }

@media (max-width: 700px) {
    .support-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .page-404-code { font-size: clamp(5rem, 25vw, 8rem); }
}


/* =========================================================
   PRODUCTEN PAGE
   ========================================================= */

.producten-header {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
}

.producten-header-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: end;
}

.producten-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-top: 0.5rem;
}

.producten-intro {
    font-size: 1rem;
    color: var(--color-muted);
    line-height: 1.7;
    max-width: 44ch;
    align-self: end;
    padding-bottom: 0.25rem;
}

/* Grid — wide banner cards with glass panel on left */
.producten-grid-section {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
}

.producten-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.producten-card {
    position: relative;
    display: block;
    border-radius: var(--radius-card);
    overflow: hidden;
    aspect-ratio: 16 / 6;
    min-height: 320px;
    background: var(--color-dark);
    color: #fff;
    isolation: isolate;
}

.producten-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    z-index: 0;
}

.producten-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0) 50%
    );
    z-index: 1;
    pointer-events: none;
}

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

.producten-card-panel {
    position: absolute;
    top: clamp(1rem, 1.8vw, 1.5rem);
    bottom: clamp(1rem, 1.8vw, 1.5rem);
    left: clamp(1rem, 2vw, 1.75rem);
    width: clamp(300px, 36%, 440px);
    z-index: 2;
    display: flex;
    align-items: center;

    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.78) 0%,
        rgba(255, 255, 255, 0.55) 100%
    );
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 12px;
    box-shadow:
        0 10px 30px -10px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: background 0.3s ease, transform 0.3s ease;
}

.producten-card:hover .producten-card-panel {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.62) 100%
    );
}

.producten-card-panel-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: clamp(1.25rem, 2vw, 1.75rem) clamp(1.35rem, 2.2vw, 1.85rem);
    width: 100%;
}

.producten-card-main {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    color: inherit;
    text-decoration: none;
}

/* Card with sub-cards — taller card, wider panel */
.producten-card.has-subs {
    aspect-ratio: 16 / 8;
    min-height: 500px;
}

.producten-card.has-subs .producten-card-panel {
    width: clamp(340px, 46%, 560px);
}

.producten-card-title {
    font-size: clamp(1.15rem, 1.7vw, 1.4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--color-text);
}

.producten-card-desc {
    font-size: 0.85rem;
    color: rgba(65, 65, 65, 0.78);
    line-height: 1.55;
}

.producten-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.35rem;
    align-self: flex-start;
    padding: 0.55rem 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: var(--color-primary);
    border-radius: var(--radius-btn);
    transition: background 0.2s, gap 0.2s, transform 0.2s;
}

.producten-card:hover .producten-card-cta {
    gap: 0.7rem;
    background: #1a8fe0;
}

/* Sub-cards (e.g. Kunststof / Aluminium ramen) — live inside the glass panel */
.producten-subs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.producten-sub {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    color: inherit;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.producten-sub:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: var(--color-primary);
    transform: translateY(-1px);
}

.producten-sub-title {
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.25;
    color: var(--color-text);
}

.producten-sub-desc {
    font-size: 0.76rem;
    color: rgba(65, 65, 65, 0.72);
    line-height: 1.5;
}

.producten-sub-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.25rem;
    align-self: flex-start;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-primary);
    transition: gap 0.2s ease;
}

.producten-sub:hover .producten-sub-cta {
    gap: 0.55rem;
}

/* Onderscheid */
.producten-onderscheid {
    padding: clamp(4rem, 7vw, 6rem) 0;
    background: var(--color-surface);
}

.producten-onderscheid-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 6vw, 7rem);
    align-items: center;
}

.producten-onderscheid-heading {
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin-top: 0.5rem;
}

.producten-onderscheid-body {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.72;
    margin-bottom: 1.75rem;
    max-width: 48ch;
}

/* Producten responsive */
@media (max-width: 860px) {
    .producten-header-inner { grid-template-columns: 1fr; gap: 1rem; }
    .producten-card { aspect-ratio: 16 / 7; }
    .producten-card-panel { width: clamp(220px, 50%, 320px); }
    .producten-card.has-subs { aspect-ratio: auto; min-height: 540px; }
    .producten-card.has-subs .producten-subs { grid-template-columns: 1fr; }
    .producten-onderscheid-inner { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
    .producten-grid { gap: 0.85rem; }
    .producten-subs { grid-template-columns: 1fr; gap: 0.6rem; }
    .producten-card { aspect-ratio: 4 / 5; min-height: 360px; }
    .producten-card.has-subs { aspect-ratio: auto; min-height: 640px; }
    .producten-card-panel {
        top: auto;
        bottom: 0.85rem;
        left: 0.85rem;
        right: 0.85rem;
        width: auto;
        transform: none;
    }
    .producten-card.has-subs .producten-card-panel { width: auto; }
    .producten-card::after {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 40%,
            rgba(0, 0, 0, 0.35) 100%
        );
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
}

@media (max-width: 900px) {
    .stats-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .process-steps { grid-template-columns: 1fr 1fr; }
    .process-header { flex-direction: column; align-items: flex-start; }
    .projects-grid { column-count: 2; }
    .reviews-header { flex-direction: column; align-items: flex-start; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .footer-col--brand { grid-column: 1 / -1; }
    .footer-col--newsletter { grid-column: 1 / -1; }
    .partnership-inner { flex-direction: column; align-items: flex-start; }
    .cta-card { grid-template-columns: 1fr; }
    .cta-card-right { min-height: 260px; }
    .cta-channels { grid-template-columns: 1fr 1fr; gap: 1rem; }
    .cta-channel-divider { display: none; }
    .cta-channel { padding-right: 0; }
}

@media (max-width: 768px) {
    .mega-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile nav backdrop (always in DOM, toggled via opacity) */
.mobile-nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    top: 57px;
    background: rgba(0,0,0,0.45);
    z-index: 104;
    opacity: 0;
    transition: opacity 0.32s ease;
}
.mobile-nav-backdrop.open { opacity: 1; }

@keyframes nav-slide-in {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 600px) {
    .mobile-nav-backdrop { display: none !important; }

    .nav-toggle { display: flex; }

    .site-header { grid-template-columns: 1fr auto; }

    /* Hide nav from grid — it's position:fixed so it won't affect layout */
    .main-navigation {
        display: none;
        position: fixed;
        top: 57px;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        background: #fff;
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 0;
        z-index: 105;
        box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    }
    .main-navigation.open {
        display: flex;
        animation: nav-slide-in 0.22s ease both;
    }

    /* Nav list */
    .main-navigation ul {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        list-style: none;
        margin: 0;
        padding: 1rem 0 2rem;
        gap: 0;
    }
    .main-navigation li {
        border-bottom: 1px solid var(--color-border);
        margin: 0;
        padding: 0;
    }
    .main-navigation li:first-child { border-top: 1px solid var(--color-border); }
    .main-navigation a,
    .nav-mega-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--color-text);
        padding: 1rem 1.25rem;
        letter-spacing: 0.02em;
        text-transform: none;
        background: none;
        border: none;
        cursor: pointer;
        font-family: var(--font-sans);
    }
    .main-navigation a::after,
    .nav-mega-toggle::after { display: none; }
    .main-navigation a:hover,
    .nav-mega-toggle:hover { color: var(--color-primary); background: rgba(38,166,255,0.04); }

    /* Mega menu on mobile — inline below Producten item */
    .mega-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        border-top: 1px solid var(--color-border);
        background: var(--color-surface);
    }
    .mega-menu.open { display: block; }
    .mega-inner { padding: 0.75rem 1.25rem 1rem; }
    .mega-label { display: none; }
    .mega-grid { grid-template-columns: 1fr 1fr; gap: 0.35rem; }
    .mega-item { padding: 0.6rem 0.5rem; font-size: 0.78rem; }
    .mega-item-arrow { display: none; }
    .mega-footer { padding: 0.75rem 0 0; }
    .mega-backdrop { display: none !important; }

    .header-actions .btn-primary { display: none; }
    .hero-wrap { padding: 1rem var(--gutter) 0; }
    .hero { min-height: 480px; height: 80vmax; border-radius: 14px; }
    .hero-actions { flex-direction: column; align-items: flex-start; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }

    .projects-grid { column-count: 1; }
    .reviews-rating-block { width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .footer-col--brand, .footer-col--newsletter { grid-column: auto; }
    .footer-bottom-inner { flex-direction: column; gap: 0.35rem; text-align: center; }
    .projects-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 400px) {
    .products-title-col { flex: 0 0 180px; }
    .product-card { flex: 0 0 200px; }
    .process-steps { grid-template-columns: 1fr; }
}

/* =========================================================
   PRODUCT HERO — extra elements
   ========================================================= */
.product-hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.product-hero-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: color 0.2s, gap 0.2s;
}

.product-hero-link:hover {
    color: #fff;
    gap: 0.7rem;
}

/* =========================================================
   PRODUCT INTRO
   ========================================================= */
.product-intro-section {
    padding: var(--section) 0;
}

.product-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-intro-heading {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin: 0.5rem 0 1.25rem;
}

.product-intro-body {
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.product-intro-body + .btn {
    margin-top: 0.75rem;
}

.product-intro-chips {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.product-intro-chip {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 1.1rem 1.25rem;
}

.product-intro-chip-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(38,166,255,0.1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.product-intro-chip strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

.product-intro-chip p {
    font-size: 0.82rem;
    color: var(--color-muted);
    line-height: 1.45;
    margin: 0;
}

/* =========================================================
   PRODUCT VARIANTS
   ========================================================= */
.product-variants-section {
    padding: var(--section) 0;
    background: var(--color-surface);
}

.product-variants-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: end;
    margin-bottom: 3rem;
}

.product-variants-heading {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin-top: 0.5rem;
}

.product-variants-intro {
    color: var(--color-muted);
    line-height: 1.65;
    padding-bottom: 0.25rem;
}

.product-variants-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.variant-card {
    background: #fff;
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
}

.variant-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.variant-card-img-wrap {
    position: relative;
    aspect-ratio: 3/2;
    overflow: hidden;
}

.variant-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

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

.variant-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 20px;
}

.variant-card-body {
    padding: 1.25rem;
}

.variant-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
}

.variant-card-desc {
    font-size: 0.83rem;
    color: var(--color-muted);
    line-height: 1.55;
    margin-bottom: 1rem;
}

.variant-card-specs {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.variant-card-specs li {
    font-size: 0.78rem;
    color: var(--color-text);
    padding-left: 1rem;
    position: relative;
}

.variant-card-specs li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-primary);
}

/* =========================================================
   PRODUCT SPECS — annotated image
   ========================================================= */
.product-specs-section {
    padding: var(--section) 0;
}

.product-specs-header {
    text-align: center;
    margin-bottom: 4rem;
}

.product-specs-heading {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin-top: 0.5rem;
}

.product-specs-annotated {
    display: grid;
    grid-template-columns: 1fr 420px 1fr;
    gap: 0 2.5rem;
    align-items: center;
}

.specs-annotations {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
    gap: 1.5rem;
}

.spec-annotation {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.specs-annotations--left .spec-annotation {
    flex-direction: row;
    text-align: right;
}

.specs-annotations--right .spec-annotation {
    flex-direction: row;
    text-align: left;
}

.spec-annotation-body {
    flex: 1;
}

.spec-annotation-title {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
}

.spec-annotation-text {
    font-size: 0.78rem;
    color: var(--color-muted);
    line-height: 1.45;
    margin-top: 0.25rem;
}

.spec-annotation-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0;
}

.spec-annotation-line {
    width: 40px;
    height: 1px;
    background: var(--color-primary);
    opacity: 0.35;
    flex-shrink: 0;
}

/* Center: image with dots */
.specs-image-wrap {
    position: relative;
    align-self: stretch;
    display: flex;
    align-items: center;
}

.specs-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-card);
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

.spec-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    border: 2.5px solid #fff;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px rgba(38,166,255,0.18), 0 2px 10px rgba(0,0,0,0.18);
    cursor: default;
    z-index: 2;
    letter-spacing: 0;
}

/* =========================================================
   PRODUCT PROJECTS
   ========================================================= */
.product-projects-section {
    padding: var(--section) 0;
    background: var(--color-surface);
}

.product-projects-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.product-projects-heading {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin-top: 0.5rem;
}

.product-projects-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 1.25rem;
    align-items: stretch;
}

.product-project-card {
    border-radius: var(--radius-card);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-project-img-wrap {
    position: relative;
    overflow: hidden;
    flex: 1;
    min-height: 280px;
}

.product-projects-grid .product-project-card:first-child .product-project-img-wrap {
    min-height: 380px;
}

.product-project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-project-card:hover .product-project-img {
    transform: scale(1.04);
}

.product-project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 55%);
}

.product-project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.product-project-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0.2rem;
}

.product-project-location {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.65);
}

.product-project-stat {
    text-align: right;
    flex-shrink: 0;
}

.product-project-count {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.product-project-unit {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.65);
    text-transform: lowercase;
}

/* =========================================================
   PRODUCT WHY
   ========================================================= */
.product-why-section {
    padding: var(--section) 0;
}

.product-why-header {
    text-align: center;
    margin-bottom: 3rem;
}

.product-why-heading {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin-top: 0.5rem;
}

.product-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.product-why-card {
    background: var(--color-surface2);
    border-radius: var(--radius-card);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border: 1px solid transparent;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.product-why-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 32px rgba(38,166,255,0.08);
}

.product-why-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(38,166,255,0.12);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.product-why-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.product-why-body {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   PRODUCT CTA
   ========================================================= */
.product-cta-section {
    padding: var(--section) 0;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.product-cta-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(38,166,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.product-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.section-label--light {
    color: var(--color-primary);
}

.product-cta-heading {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    color: #fff;
    margin: 0.5rem 0 1.25rem;
}

.product-cta-body {
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.product-cta-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.product-cta-btn {
    background: var(--color-primary);
    color: #fff;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-btn);
    font-weight: 700;
    font-size: 0.9rem;
    transition: background 0.2s, transform 0.2s;
}

.product-cta-btn:hover {
    background: #0f8fe0;
    transform: translateY(-1px);
}

.product-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    font-weight: 600;
    transition: color 0.2s;
}

.product-cta-secondary:hover {
    color: #fff;
}

.product-cta-review {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2.5rem;
}

.product-cta-quote {
    margin: 0;
}

.product-cta-quote p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.product-cta-quote footer {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.product-cta-quote strong {
    font-size: 0.9rem;
    color: #fff;
    font-style: normal;
}

.product-cta-quote span {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    font-style: normal;
}

.product-cta-stars {
    display: flex;
    gap: 0.15rem;
    margin-top: 0.5rem;
}

/* =========================================================
   RESPONSIVE — product pages
   ========================================================= */
@media (max-width: 1024px) {
    .product-specs-annotated {
        grid-template-columns: 1fr 320px 1fr;
        gap: 0 1.5rem;
    }

    .product-variants-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .product-projects-grid .product-project-card:last-child {
        grid-column: span 2;
    }

    .product-cta-inner {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .product-intro-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

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

    .product-specs-annotated {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .specs-image-wrap {
        order: -1;
    }

    .specs-annotations--left .spec-annotation,
    .specs-annotations--right .spec-annotation {
        flex-direction: row;
        text-align: left;
    }

    .spec-annotation-line { display: none; }

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

    .product-projects-grid .product-project-card:last-child {
        grid-column: span 1;
    }

    .product-projects-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .product-cta-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .product-cta-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
   PROJECTEN — filter bar
   ========================================================= */
.projecten-filter-wrap {
    position: sticky;
    top: 65px;
    z-index: 50;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    padding: 1rem 0;
}

.projecten-filter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.projecten-filter-selects {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    flex-wrap: nowrap;
}

.filter-select-wrap {
    position: relative;
    flex: 1;
    min-width: 0;
}

.filter-select {
    font-family: var(--font-sans);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-muted);
    background: var(--color-surface);
    border: 1.5px solid var(--color-border);
    border-radius: 8px;
    padding: 0.5rem 2rem 0.5rem 0.85rem;
    width: 100%;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.filter-select.has-value {
    color: var(--color-text);
    border-color: var(--color-primary);
    background: rgba(38,166,255,0.06);
}

.filter-select:hover {
    border-color: #ccc;
}

.filter-select:focus {
    border-color: var(--color-primary);
}

.filter-select-arrow {
    position: absolute;
    right: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-muted);
    pointer-events: none;
}

.filter-reset {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, color 0.15s;
}

.filter-reset.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.projecten-filter-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.15rem;
    flex-shrink: 0;
    padding-top: 0.5rem;
}

.projecten-count-header {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--color-muted);
    white-space: nowrap;
}

.projecten-count-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text);
    white-space: nowrap;
}

.projecten-count {
    color: var(--color-text);
}

.filter-reset {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-muted);
    background: none;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0;
    transition: color 0.15s, opacity 0.2s;
}

.filter-reset:hover {
    color: var(--color-text);
}

/* =========================================================
   PROJECTEN — grid
   ========================================================= */
.projecten-grid-section {
    padding: var(--section) 0;
}

.projecten-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.projecten-card-wrap {
    transition: opacity 0.3s, transform 0.3s;
}

.projecten-card-wrap--featured {
    grid-column: span 2;
}

.projecten-card-wrap.is-hidden {
    display: none;
}

.projecten-card {
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--color-border);
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}

.projecten-card:hover {
    box-shadow: 0 16px 48px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.projecten-card-img-wrap {
    position: relative;
    overflow: hidden;
}

/* Featured card gets taller image */
.projecten-card-wrap--featured .projecten-card-img-wrap {
    aspect-ratio: 16/9;
}

.projecten-card-wrap:not(.projecten-card-wrap--featured) .projecten-card-img-wrap {
    aspect-ratio: 4/3;
}

.projecten-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.projecten-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.25) 0%, transparent 50%);
    pointer-events: none;
}

.projecten-card-tags {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.projecten-tag {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    padding: 0.2rem 0.55rem;
}

.projecten-card-body {
    padding: 1.25rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.projecten-card-meta {
    font-size: 0.75rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.projecten-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--color-text);
}

.projecten-card-wrap--featured .projecten-card-title {
    font-size: 1.3rem;
}

.projecten-card-desc {
    font-size: 0.83rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin-top: 0.2rem;
    flex: 1;
}

.projecten-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 0.75rem;
    transition: gap 0.2s;
}

.projecten-card-link:hover {
    gap: 0.65rem;
}

/* No results message */
.projecten-no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--color-muted);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

/* =========================================================
   PROJECTEN — CTA section
   ========================================================= */
.projecten-cta-section {
    padding: var(--section) 0;
    background: var(--color-surface);
}

.projecten-cta-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.projecten-cta-heading {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.15;
    margin: 0.5rem 0 1rem;
}

.projecten-cta-body {
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.projecten-cta-images {
    position: relative;
}

.projecten-cta-img-stack {
    position: relative;
    height: 400px;
}

.projecten-cta-img {
    position: absolute;
    width: 75%;
    height: 85%;
    object-fit: cover;
    border-radius: var(--radius-card);
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.projecten-cta-img--back {
    top: 0;
    right: 0;
    z-index: 1;
}

.projecten-cta-img--front {
    bottom: 0;
    left: 0;
    z-index: 2;
    border: 4px solid #fff;
}

/* =========================================================
   RESPONSIVE — projecten
   ========================================================= */
@media (max-width: 1024px) {
    .projecten-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projecten-card-wrap--featured {
        grid-column: span 2;
    }

    .projecten-cta-inner {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .projecten-filter-wrap {
        position: static;
    }

    .projecten-filter-inner {
        flex-direction: column;
        gap: 1rem;
    }

    .projecten-filter-meta {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .projecten-filter-groups {
        gap: 1rem;
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 0.25rem;
    }

    .filter-group {
        flex-shrink: 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 0.4rem;
    }

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

    .projecten-card-wrap--featured {
        grid-column: span 1;
    }

    .projecten-cta-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .projecten-cta-img-stack {
        height: 280px;
    }
}

/* =========================================================
   OFFERTE — hero + form
   ========================================================= */
.offerte-hero-wrap .over-hero-card {
    min-height: 420px;
}

.offerte-hero-wrap .over-hero-img {
    object-position: center 30%;
}

.offerte-hero-wrap .over-hero-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    margin-top: 0;
}

.offerte-hero-wrap .over-hero-content {
    bottom: clamp(7rem, 12vw, 9.5rem);
}

.offerte-hero-usps {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.offerte-hero-usp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
}

.offerte-hero-usp svg {
    color: var(--color-primary);
    flex-shrink: 0;
}

/* Section layout */
.offerte-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--color-bg);
}

.offerte-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Aside */
.offerte-aside-card {
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-hero);
    padding: 2rem;
    position: sticky;
    top: 120px;
}

.offerte-aside-heading {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.offerte-usp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.offerte-usp-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.offerte-usp-icon {
    width: 28px;
    height: 28px;
    background: rgba(38,166,255,0.1);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.offerte-usp-item strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.15rem;
}

.offerte-usp-item p {
    font-size: 0.82rem;
    color: var(--color-muted);
    margin: 0;
    line-height: 1.4;
}

.offerte-aside-contact {
    border-top: 1.5px solid var(--color-border);
    padding-top: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.offerte-aside-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0;
}

.offerte-aside-tel,
.offerte-aside-wa {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.2s;
}

.offerte-aside-tel:hover { color: var(--color-primary); }

.offerte-aside-wa { color: #25d366; }
.offerte-aside-wa:hover { color: #1da851; }

/* Form card */
.offerte-form-card {
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-hero);
    padding: 2.5rem;
}

.offerte-form-header {
    margin-bottom: 2rem;
}

.offerte-form-heading {
    font-size: clamp(1.3rem, 2.5vw, 1.6rem);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.offerte-form-sub {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin: 0;
}

/* Gravity Forms reset inside offerte */
.offerte-gform-wrap .gform_wrapper {
    margin: 0;
}

.offerte-gform-wrap .gform_fields {
    display: grid;
    gap: 1.25rem;
}

.offerte-gform-wrap .gfield {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.offerte-gform-wrap .gfield_label,
.offerte-gform-wrap .gform-field-label,
.offerte-gform-wrap .gfield_label_before_complex {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--color-text);
    margin-bottom: 0;
    padding-bottom: 0;
}

.offerte-gform-wrap .gfield_required {
    color: var(--color-primary);
}

.offerte-gform-wrap .gform_wrapper input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]):not([type="button"]):not([type="image"]):not([type="file"]),
.offerte-gform-wrap .gform_wrapper textarea,
.offerte-gform-wrap .gform_wrapper select {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text);
    background: #f7f8fa;
    border: 1.5px solid var(--color-border) !important;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    width: 100%;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
}

.offerte-gform-wrap .gform_wrapper input::placeholder,
.offerte-gform-wrap .gform_wrapper textarea::placeholder {
    color: #aaa;
}

.offerte-gform-wrap .gform_wrapper input:hover,
.offerte-gform-wrap .gform_wrapper textarea:hover,
.offerte-gform-wrap .gform_wrapper select:hover {
    border-color: #ccc !important;
}

.offerte-gform-wrap .gform_wrapper input:focus,
.offerte-gform-wrap .gform_wrapper textarea:focus,
.offerte-gform-wrap .gform_wrapper select:focus {
    border-color: var(--color-primary) !important;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(38,166,255,0.12) !important;
}

.offerte-gform-wrap select {
    color: #aaa;
    cursor: pointer;
}

.offerte-gform-wrap select.has-value {
    color: var(--color-text);
}

.offerte-gform-wrap select option:not([value=""]) {
    color: var(--color-text);
}

/* Consent / checkbox field */
.offerte-gform-wrap .gfield--type-consent,
.offerte-gform-wrap .gfield--type-checkbox {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0.25rem 0;
}

.offerte-gform-wrap .ginput_container_consent,
.offerte-gform-wrap .ginput_container_checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.offerte-gform-wrap .ginput_container_consent input[type="checkbox"],
.offerte-gform-wrap .ginput_container_checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1.5px solid var(--color-border);
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    margin-top: 2px;
    padding: 0;
}

.offerte-gform-wrap .ginput_container_consent input[type="checkbox"]:hover,
.offerte-gform-wrap .ginput_container_checkbox input[type="checkbox"]:hover {
    border-color: var(--color-primary);
}

.offerte-gform-wrap .ginput_container_consent input[type="checkbox"]:checked,
.offerte-gform-wrap .ginput_container_checkbox input[type="checkbox"]:checked {
    background: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(38,166,255,0.3);
}

.offerte-gform-wrap .ginput_container_consent input[type="checkbox"]::after,
.offerte-gform-wrap .ginput_container_checkbox input[type="checkbox"]::after {
    content: '';
    display: block;
    width: 9px;
    height: 6px;
    border-left: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    transform: rotate(-45deg) translateY(-1px);
    opacity: 0;
    transition: opacity 0.15s;
}

.offerte-gform-wrap .ginput_container_consent input[type="checkbox"]:checked::after,
.offerte-gform-wrap .ginput_container_checkbox input[type="checkbox"]:checked::after {
    opacity: 1;
}

.offerte-gform-wrap .gfield_consent_label,
.offerte-gform-wrap .gform-field-label--type-sub {
    font-size: 0.78rem;
    color: var(--color-muted);
    line-height: 1.5;
    cursor: pointer;
}

.offerte-gform-wrap .gfield_consent_label a,
.offerte-gform-wrap .gform-field-label--type-sub a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Chosen.js custom select — GF enhanced dropdown */
.offerte-gform-wrap .chosen-container-single .chosen-single {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text);
    background: #f7f8fa !important;
    border: 1.5px solid var(--color-border) !important;
    border-radius: 10px !important;
    padding: 0.75rem 1rem;
    height: auto;
    line-height: 1.5;
    box-shadow: none !important;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.offerte-gform-wrap .chosen-container-single .chosen-single:hover {
    border-color: #ccc !important;
}

.offerte-gform-wrap .chosen-container-active .chosen-single {
    border-color: var(--color-primary) !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(38,166,255,0.12) !important;
}

/* Single consistent arrow — hide Chosen's extra arrow elements */
.offerte-gform-wrap .chosen-container-single .chosen-single div {
    width: 2rem;
    top: 50%;
    transform: translateY(-50%);
    right: 0.25rem;
}

.offerte-gform-wrap .chosen-container-single .chosen-single div b {
    background-image: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offerte-gform-wrap .chosen-container-single .chosen-single div b::after {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23888' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.offerte-gform-wrap .chosen-drop {
    border: 1.5px solid var(--color-border) !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08) !important;
    margin-top: 4px;
    overflow: hidden;
}

.offerte-gform-wrap .chosen-results li.highlighted {
    background: var(--color-primary) !important;
}

.offerte-gform-wrap textarea {
    min-height: 130px;
    resize: vertical;
    line-height: 1.6;
}

.offerte-gform-wrap .gform_footer,
.offerte-gform-wrap .gform_page_footer {
    margin-top: 0.5rem;
}

.offerte-gform-wrap .gform_footer input[type="submit"],
.offerte-gform-wrap .gform_footer button[type="submit"],
.offerte-gform-wrap .gform_button,
.offerte-gform-wrap .gform-button,
.offerte-gform-wrap button.gform_button,
.offerte-gform-wrap input.gform_button,
.offerte-gform-wrap .gform_footer .button,
.offerte-gform-wrap input.button,
.offerte-gform-wrap button.button {
    font-family: var(--font-sans) !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    background: var(--color-primary) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 1rem 1.75rem !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s !important;
    box-shadow: 0 4px 16px rgba(38,166,255,0.28) !important;
    letter-spacing: 0.01em !important;
    margin-top: 0.25rem !important;
    text-shadow: none !important;
    height: auto !important;
    line-height: 1.5 !important;
}

.offerte-gform-wrap .gform_footer input[type="submit"]:hover,
.offerte-gform-wrap .gform_footer button[type="submit"]:hover,
.offerte-gform-wrap .gform_button:hover,
.offerte-gform-wrap .gform-button:hover,
.offerte-gform-wrap button.gform_button:hover,
.offerte-gform-wrap input.gform_button:hover,
.offerte-gform-wrap .gform_footer .button:hover,
.offerte-gform-wrap input.button:hover,
.offerte-gform-wrap button.button:hover {
    background: #0e92e8 !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(38,166,255,0.38) !important;
    gap: 0.9rem;
}

.offerte-gform-wrap .gform_footer input[type="submit"]:active,
.offerte-gform-wrap .gform_footer button[type="submit"]:active,
.offerte-gform-wrap .gform_button:active,
.offerte-gform-wrap .gform-button:active,
.offerte-gform-wrap button.gform_button:active,
.offerte-gform-wrap input.gform_button:active,
.offerte-gform-wrap .gform_footer .button:active,
.offerte-gform-wrap input.button:active,
.offerte-gform-wrap button.button:active {
    transform: translateY(0);
}

.offerte-gform-wrap .gform_confirmation_message {
    background: rgba(38,166,255,0.08);
    border: 1.5px solid var(--color-primary);
    border-radius: 10px;
    padding: 1.5rem;
    color: var(--color-text);
    font-weight: 600;
    text-align: center;
}

/* =========================================================
   OFFERTE — reviews section
   ========================================================= */
.offerte-reviews-section {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--color-surface);
    border-top: 1px solid var(--color-border);
}

.offerte-reviews-inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
}

.offerte-reviews-header {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.offerte-reviews-heading {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--color-text);
    margin: 0;
}

.offerte-reviews-sub {
    font-size: 0.9rem;
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0;
}

.offerte-reviews-btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

.offerte-reviews-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.offerte-review-card {
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-hero);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.offerte-review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-border);
}

.offerte-review-stars {
    display: flex;
    gap: 2px;
}

.offerte-review-text {
    font-size: 0.88rem;
    line-height: 1.65;
    color: var(--color-text);
    margin: 0;
    font-style: italic;
    flex: 1;
}

.offerte-review-author {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    border-top: 1px solid var(--color-border);
    padding-top: 0.85rem;
}

.offerte-review-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text);
}

.offerte-review-role {
    font-size: 0.78rem;
    color: var(--color-muted);
}

@media (max-width: 860px) {
    .offerte-reviews-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .offerte-reviews-header {
        position: static;
    }

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

@media (max-width: 900px) {
    .offerte-inner {
        grid-template-columns: 1fr;
    }

    .offerte-aside-card {
        position: static;
    }

    .offerte-hero-usps {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}

@media (max-width: 600px) {
    .offerte-form-card {
        padding: 1.5rem 1.25rem;
    }
}

/* =========================================================
   CONTACT — hero variant
   ========================================================= */
.contact-hero-wrap .over-hero-card {
    min-height: 480px;
    border-bottom-left-radius: var(--radius-hero);
    border-bottom-right-radius: 0;
}

.contact-hero-wrap .over-hero-img {
    object-position: bottom;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 20%, rgba(38,166,255,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 80%, rgba(255,130,29,0.08) 0%, transparent 60%),
        linear-gradient(135deg, #0d1622 0%, #111b2e 50%, #0d1a2a 100%);
    z-index: 0;
}

.contact-hero-wrap .over-hero-content {
    bottom: clamp(7rem, 12vw, 9.5rem);
    z-index: 2;
}

.section-label--hero {
    color: var(--color-primary);
    opacity: 1;
    margin-bottom: 0.75rem;
    display: block;
}

.contact-hero-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.contact-hero-scroll {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.2s, gap 0.2s;
}

.contact-hero-scroll:hover {
    color: #fff;
    gap: 0.6rem;
}

/* Stats strip — right side */
.contact-hero-wrap .over-hero-footer {
    position: absolute;
    bottom: 0;
    right: 0;
    left: auto;
    z-index: 2;
    margin-top: 0;
}

.contact-hero-wrap .over-hero-cta-bg {
    border-radius: var(--radius-hero) 0 0 0;
}

/* Mirror ::before to top-right of cta-bg */
.contact-hero-wrap .over-hero-cta-bg::before {
    left: auto;
    right: 0;
    background: radial-gradient(
        circle at 0% 0%,
        transparent var(--radius-hero),
        #fff var(--radius-hero)
    );
}

/* Mirror ::after to bottom-left of cta-bg */
.contact-hero-wrap .over-hero-cta-bg::after {
    left: auto;
    right: 100%;
    background: radial-gradient(
        circle at 0% 0%,
        transparent var(--radius-hero),
        #fff var(--radius-hero)
    );
}



/* Projecten, producten, product-detail — same footer-inside-card design */
.projecten-hero-wrap {
    padding-bottom: 2.5rem;
}

.projecten-hero-wrap .over-hero-footer,
.producten-hero-wrap .over-hero-footer,
.product-hero-wrap .over-hero-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    margin-top: 0;
}

.projecten-hero-wrap .over-hero-content,
.producten-hero-wrap .over-hero-content,
.product-hero-wrap .over-hero-content {
    bottom: clamp(7rem, 12vw, 9.5rem);
}

.contact-hero-stats {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.contact-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.contact-hero-stat-num {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-text);
    line-height: 1.2;
}

.contact-hero-stat-label {
    font-size: 0.75rem;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 600;
}

.contact-hero-stat-sep {
    width: 1px;
    height: 36px;
    background: var(--color-border);
    flex-shrink: 0;
}

/* =========================================================
   CONTACT — main section (info + form)
   ========================================================= */
.contact-main-section {
    padding: var(--section) 0;
}

.contact-main-inner {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: start;
}

/* ── Info column ── */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-top {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info-heading {
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.25;
    margin-top: 0.25rem;
}

.contact-info-intro {
    font-size: 0.88rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-info-item:first-child {
    border-top: 1px solid var(--color-border);
}

.contact-info-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--color-surface2);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.contact-info-body {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-info-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--color-muted);
}

.contact-info-value {
    font-size: 0.92rem;
    color: var(--color-text);
    font-style: normal;
    line-height: 1.5;
    font-weight: 500;
}

.contact-info-link {
    color: var(--color-primary);
    font-weight: 600;
    transition: opacity 0.15s;
}

.contact-info-link:hover { opacity: 0.8; }

.contact-info-hours {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.contact-info-hours span {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.contact-info-hours strong {
    color: var(--color-text);
    font-weight: 600;
}

.contact-info-appt {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 0.25rem;
    transition: opacity 0.15s;
}

.contact-info-appt:hover { opacity: 0.8; }

/* Map */
.contact-map {
    border-radius: var(--radius-card);
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.contact-map-inner {
    height: 200px;
}

.contact-map-inner iframe {
    display: block;
    filter: grayscale(20%) contrast(0.95);
    transition: filter 0.3s;
}

.contact-map:hover .contact-map-inner iframe {
    filter: grayscale(0) contrast(1);
}

/* ── Form column ── */
.contact-form-wrap {
    position: sticky;
    top: calc(65px + 1.5rem);
}

.contact-form-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 48px rgba(0,0,0,0.07);
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-heading {
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.25;
}

.contact-form-sub {
    font-size: 0.87rem;
    color: var(--color-muted);
    margin-top: 0.5rem;
    line-height: 1.55;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Form field */
.contact-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.contact-field-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--color-text);
}

.contact-field-label span {
    color: var(--color-primary);
}

.contact-field-input {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1.5px solid var(--color-border);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    width: 100%;
    outline: none;
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.contact-field-input::placeholder {
    color: #aaa;
}

.contact-field-input:hover {
    border-color: #ccc;
}

.contact-field-input:focus {
    border-color: var(--color-primary);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(38,166,255,0.12);
}

.contact-field-input:not(select):invalid:not(:placeholder-shown) {
    border-color: #ff4d4f;
}

.contact-field-textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

/* Custom select */
.contact-field-select-wrap {
    position: relative;
}

.contact-field-select {
    cursor: pointer;
    padding-right: 2.5rem;
    color: #aaa;
}

.contact-field-select.has-value,
.contact-field-select option:not([value=""]) {
    color: var(--color-text);
}

.contact-select-arrow {
    position: absolute;
    right: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-muted);
    pointer-events: none;
}

/* Submit button */
.contact-submit {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    background: var(--color-primary);
    border: none;
    border-radius: 10px;
    padding: 1rem 1.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s, gap 0.2s;
    box-shadow: 0 4px 16px rgba(38,166,255,0.28);
    margin-top: 0.25rem;
}

.contact-submit:hover {
    background: #0e92e8;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(38,166,255,0.38);
    gap: 0.9rem;
}

.contact-submit:active {
    transform: translateY(0);
}

.contact-form-disclaimer {
    font-size: 0.75rem;
    color: var(--color-muted);
    text-align: center;
    line-height: 1.5;
}

.contact-form-disclaimer a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* =========================================================
   CONTACT — direct section
   ========================================================= */
.contact-direct-section {
    padding: var(--section) 0;
    background: var(--color-dark);
    position: relative;
    overflow: hidden;
}

.contact-direct-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(38,166,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.contact-direct-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: center;
}

.contact-direct-heading {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.2;
    color: #fff;
    margin-top: 0.5rem;
}

.contact-direct-section .section-label {
    color: var(--color-primary);
}

.contact-direct-channels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
    color: inherit;
}

.contact-channel:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.16);
    transform: translateX(4px);
}

.contact-channel-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(38,166,255,0.15);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-channel-icon--whatsapp {
    background: rgba(37,211,102,0.12);
    color: #25d366;
}

.contact-channel-body {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
}

.contact-channel-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: rgba(255,255,255,0.45);
}

.contact-channel-value {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.contact-channel-hint {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
}

.contact-channel-arrow {
    color: rgba(255,255,255,0.3);
    flex-shrink: 0;
    transition: color 0.2s, transform 0.2s;
}

.contact-channel:hover .contact-channel-arrow {
    color: rgba(255,255,255,0.7);
    transform: translateX(3px);
}

/* =========================================================
   RESPONSIVE — contact
   ========================================================= */
@media (max-width: 1024px) {
    .contact-main-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrap {
        position: static;
    }

    .contact-direct-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .contact-hero-stats {
        gap: 1.5rem;
    }

    .contact-hero-stat-num {
        font-size: 1rem;
    }

    .contact-form-card {
        padding: 1.75rem 1.25rem;
    }

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

    .contact-hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

/* =========================================================
   SHOWROOM POPUP
   ========================================================= */
.showroom-popup {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 3vw, 2rem);
}

.showroom-popup.is-open {
    display: flex;
    animation: showroom-fade 0.2s ease-out;
}

.showroom-popup-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.62);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.showroom-popup-dialog {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    max-width: 980px;
    max-height: 92vh;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.45);
    animation: showroom-rise 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.showroom-popup-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
}

.showroom-popup-close:hover {
    background: var(--color-text);
    color: #fff;
    transform: rotate(90deg);
}

.showroom-popup-form-col {
    padding: clamp(1.75rem, 3.2vw, 2.5rem);
    overflow-y: auto;
}

.showroom-popup-kicker {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.showroom-popup-title {
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: 0.75rem;
}

.showroom-popup-intro {
    font-size: 0.92rem;
    color: rgba(65, 65, 65, 0.78);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.showroom-popup-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.showroom-popup-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.showroom-popup-field-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.showroom-popup-form input[type="text"],
.showroom-popup-form input[type="tel"],
.showroom-popup-form input[type="email"],
.showroom-popup-form input[type="datetime-local"] {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--color-text);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-btn);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.showroom-popup-form input::placeholder {
    color: rgba(65, 65, 65, 0.45);
}

.showroom-popup-form input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(38, 166, 255, 0.18);
}

.showroom-popup-form input[type="text"]:invalid:not(:placeholder-shown),
.showroom-popup-form input[type="tel"]:invalid:not(:placeholder-shown),
.showroom-popup-form input[type="email"]:invalid:not(:placeholder-shown) {
    border-color: #e07070;
}

.showroom-popup-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    margin-top: 0.4rem;
    padding: 0.95rem 1.25rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--color-accent);
    border: none;
    border-radius: var(--radius-btn);
    cursor: pointer;
    transition: background 0.2s, gap 0.2s, transform 0.2s;
}

.showroom-popup-submit:hover {
    background: #e67212;
    gap: 0.8rem;
}

.showroom-popup-submit:disabled {
    opacity: 0.6;
    cursor: wait;
}

.showroom-popup-thanks {
    margin-top: 0.5rem;
    padding: 0.85rem 1rem;
    font-size: 0.88rem;
    color: #1d6d3a;
    background: #e8f7ee;
    border: 1px solid #bfe5cb;
    border-radius: var(--radius-btn);
}

.showroom-popup-image-col {
    position: relative;
    overflow: hidden;
    background: var(--color-dark);
}

.showroom-popup-image-col img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showroom-popup-image-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.5rem;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.showroom-popup-image-label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.showroom-popup-image-addr {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.35;
}

@keyframes showroom-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes showroom-rise {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Body scroll lock when popup is open */
body.showroom-popup-open {
    overflow: hidden;
}

@media (max-width: 760px) {
    .showroom-popup-dialog {
        grid-template-columns: 1fr;
        max-height: 94vh;
    }
    .showroom-popup-image-col {
        order: -1;
        min-height: 180px;
        max-height: 28vh;
    }
}

/* Visually hidden helper (if not already defined) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================================
   BLOG
   ========================================================= */

/* --- Hero kicker (reuses over-hero-* styling otherwise) --- */
.blog-hero-kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.9rem;
}

.blog-hero-wrap .over-hero-content { right: 32%; }

/* --- Grid section --- */
.blog-grid-section {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(4rem, 8vw, 7rem);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(1.25rem, 2vw, 1.75rem);
}

/* --- Blog card --- */
.blog-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(38, 166, 255, 0.4);
    box-shadow: 0 20px 40px -22px rgba(0, 0, 0, 0.25);
}

.blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.blog-card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--color-surface2);
}

.blog-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(38, 166, 255, 0.35);
    background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-surface2) 100%);
}

.blog-card-tag {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 1;
    padding: 0.32rem 0.7rem;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 999px;
}

.blog-card-body {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.25rem 1.35rem 1.4rem;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.74rem;
    color: var(--color-muted);
    letter-spacing: 0.02em;
}

.blog-card-meta-dot { opacity: 0.5; }

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--color-text);
}

.blog-card-excerpt {
    font-size: 0.88rem;
    color: rgba(65, 65, 65, 0.78);
    line-height: 1.6;
    flex: 1;
}

.blog-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.4rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
    transition: gap 0.2s ease;
    align-self: flex-start;
}

.blog-card:hover .blog-card-cta { gap: 0.65rem; }

/* --- Pagination --- */
.blog-pagination {
    margin-top: clamp(2.5rem, 4vw, 3.5rem);
    display: flex;
    justify-content: center;
}

.blog-pagination .nav-links {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.7rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-btn);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.blog-pagination .page-numbers:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.blog-pagination .page-numbers.current {
    background: var(--color-text);
    color: #fff;
    border-color: var(--color-text);
}

.blog-pagination .page-numbers.dots {
    border: none;
    background: transparent;
}

/* --- Empty state --- */
.blog-none {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.blog-none-inner {
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.5rem, 3vw, 2rem);
    background: var(--color-surface);
    border-radius: var(--radius-card);
    border: 1px solid var(--color-border);
}

.blog-none-title {
    font-size: clamp(1.4rem, 2.4vw, 1.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--color-text);
    margin-bottom: 0.85rem;
}

.blog-none-text {
    font-size: 0.95rem;
    color: rgba(65, 65, 65, 0.72);
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.blog-none-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.75rem 1.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--color-primary);
    border-radius: var(--radius-btn);
    transition: gap 0.2s, background 0.2s;
}

.blog-none-cta:hover {
    background: #1a8fe0;
    gap: 0.6rem;
}

/* --- Single article --- */
.blog-single { padding-bottom: clamp(3rem, 6vw, 5rem); }

.blog-single-hero {
    position: relative;
    padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem);
    color: var(--color-text);
    background: var(--color-surface);
    margin-bottom: clamp(2rem, 5vw, 4rem);
    overflow: hidden;
    isolation: isolate;
}

.blog-single-hero.has-image {
    color: #fff;
    background: var(--color-dark);
    padding: clamp(5rem, 12vw, 9rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}

.blog-single-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.blog-single-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(13, 13, 13, 0.55) 0%,
        rgba(13, 13, 13, 0.78) 100%
    );
    z-index: -1;
}

.blog-single-hero-inner {
    max-width: 760px;
}

.blog-single-kicker {
    display: inline-block;
    padding: 0.32rem 0.85rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(38, 166, 255, 0.12);
    border: 1px solid rgba(38, 166, 255, 0.25);
    border-radius: 999px;
    margin-bottom: 1.25rem;
    transition: background 0.2s, border-color 0.2s;
}

.blog-single-hero.has-image .blog-single-kicker {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.blog-single-kicker:hover {
    background: rgba(38, 166, 255, 0.2);
}

.blog-single-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.4rem;
}

.blog-single-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.55rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.blog-single-hero:not(.has-image) .blog-single-meta {
    color: var(--color-muted);
}

.blog-single-meta-dot { opacity: 0.6; }

.blog-single-author {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-single-avatar {
    border-radius: 999px;
    width: 28px;
    height: 28px;
}

.blog-single-body {
    max-width: 760px;
    margin: 0 auto;
}

.blog-single-body .entry-content {
    font-size: 1.02rem;
    line-height: 1.78;
    color: var(--color-text);
}

.blog-single-body .entry-content > * + * { margin-top: 1.15rem; }

.blog-single-body .entry-content h2,
.blog-single-body .entry-content h3,
.blog-single-body .entry-content h4 {
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: var(--color-text);
    margin-top: 2.5rem;
}

.blog-single-body .entry-content h2 { font-size: clamp(1.4rem, 2.2vw, 1.75rem); }
.blog-single-body .entry-content h3 { font-size: clamp(1.2rem, 1.8vw, 1.4rem); }
.blog-single-body .entry-content h4 { font-size: 1.1rem; }

.blog-single-body .entry-content a {
    color: var(--color-primary);
    border-bottom: 1px solid rgba(38, 166, 255, 0.35);
    transition: border-color 0.2s, color 0.2s;
}

.blog-single-body .entry-content a:hover {
    color: var(--color-text);
    border-bottom-color: var(--color-text);
}

.blog-single-body .entry-content img,
.blog-single-body .entry-content figure {
    border-radius: var(--radius-card);
    overflow: hidden;
    margin: 2rem 0;
}

.blog-single-body .entry-content blockquote {
    margin: 2rem 0;
    padding: 1.25rem 1.5rem;
    background: var(--color-surface);
    border-left: 3px solid var(--color-primary);
    border-radius: 0 var(--radius-card) var(--radius-card) 0;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-text);
}

.blog-single-body .entry-content ul,
.blog-single-body .entry-content ol {
    padding-left: 1.25rem;
}

.blog-single-body .entry-content ul { list-style: disc; }
.blog-single-body .entry-content ol { list-style: decimal; }

.blog-single-body .entry-content li + li { margin-top: 0.4rem; }

.blog-single-body .entry-content code {
    padding: 0.15rem 0.4rem;
    background: var(--color-surface2);
    border-radius: 4px;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    font-size: 0.88em;
}

.blog-single-body .entry-content pre {
    padding: 1.25rem;
    background: var(--color-dark);
    color: #f5f5f5;
    border-radius: var(--radius-card);
    overflow-x: auto;
}

.blog-single-body .entry-content pre code {
    background: transparent;
    padding: 0;
    color: inherit;
}

.blog-single-tags {
    margin-top: 2.5rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-single-tags-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.blog-single-tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.blog-single-tag-list a {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.78rem;
    color: var(--color-text);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 999px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.blog-single-tag-list a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

/* --- Related posts --- */
.blog-related {
    padding: clamp(3rem, 6vw, 5rem) 0;
    background: var(--color-surface);
    margin-top: clamp(3rem, 6vw, 5rem);
}

.blog-related-head {
    margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}

.blog-related-kicker {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.blog-related-title {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--color-text);
}

/* --- Post nav (prev/next) --- */
.blog-post-nav {
    padding: clamp(2rem, 4vw, 3rem) 0 0;
}

.blog-post-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.blog-post-nav-link {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.1rem 1.35rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    color: inherit;
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.blog-post-nav-link:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.blog-post-nav-next { text-align: right; align-items: flex-end; }

.blog-post-nav-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.blog-post-nav-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    line-height: 1.35;
}

.blog-comments {
    padding-top: clamp(2.5rem, 5vw, 4rem);
}

/* --- Blog responsive --- */
@media (max-width: 1000px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-hero-wrap .over-hero-content { right: 20%; }
}

@media (max-width: 640px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-hero-wrap .over-hero-content { right: 1.5rem; }
    .blog-post-nav-grid { grid-template-columns: 1fr; }
    .blog-post-nav-next { text-align: left; align-items: flex-start; }
}

/* =========================================================
   KUNSTSTOF RAMEN PAGE
   ========================================================= */

/* Hero uses the shared .over-hero-* structure — no overrides needed */

/* --- Intro --- */
.kunststof-intro {
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
    background: var(--color-bg);
}

.kunststof-intro-inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
}

.kunststof-intro-head { display: flex; flex-direction: column; gap: 0.85rem; }

.kunststof-intro-heading {
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.18;
    color: var(--color-text);
}

.kunststof-intro-body {
    font-size: 0.95rem;
    color: rgba(65, 65, 65, 0.78);
    line-height: 1.72;
    max-width: 64ch;
}

.kunststof-intro-jump {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.kunststof-jump-chip {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    aspect-ratio: 3 / 4;
    background: linear-gradient(160deg, rgba(220,234,248,0.72) 0%, rgba(235,245,255,0.65) 100%);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.75);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 16px rgba(100, 150, 220, 0.1), inset 0 1px 0 rgba(255,255,255,0.9);
}

.kunststof-jump-chip:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px -12px rgba(38, 100, 200, 0.22);
}

.kunststof-jump-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2% 2% 22%;
    transition: transform 0.4s ease;
    filter: drop-shadow(0 12px 32px rgba(20, 60, 140, 0.22));
}

.kunststof-jump-chip:hover .kunststof-jump-img {
    transform: scale(1.06) translateY(-3%);
}

.kunststof-jump-chip:first-child .kunststof-jump-img {
    padding: 8% 8% 26%;
}

.kunststof-jump-glass {
    position: relative;
    z-index: 2;
    margin: 0 0.65rem 0.65rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.kunststof-jump-brand {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.kunststof-jump-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

@media (max-width: 700px) {
    .kunststof-intro-jump { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 380px) {
    .kunststof-intro-jump { grid-template-columns: 1fr 1fr; }
}

/* --- Systems --- */
.kunststof-systems {
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 7rem);
    background: var(--color-bg);
}

.kunststof-system {
    border-top: 1px solid var(--color-border);
    padding: clamp(3rem, 6vw, 5rem) 0;
    scroll-margin-top: 100px;
}

.kunststof-system:first-child { border-top: none; padding-top: 0; }

.kunststof-system-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.kunststof-system-brand {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.kunststof-system-name {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.05;
    color: var(--color-text);
}

.kunststof-system-profile {
    display: inline-block;
    margin-top: 0.4rem;
    padding: 0.4rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    background: var(--color-dark);
    border-radius: 6px;
}

.kunststof-system-body {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
}

.kunststof-system-desc {
    color: var(--color-text);
}

.kunststof-system-desc-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.kunststof-system-desc p {
    font-size: 0.95rem;
    line-height: 1.72;
    color: var(--color-muted);
}

.kunststof-system-desc p + p { margin-top: 1rem; }

.kunststof-system-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.7rem;
}

.kunststof-spec {
    aspect-ratio: 1;
    padding: 1rem 0.9rem 0.85rem;
    background: var(--color-dark);
    color: #fff;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition: transform 0.2s ease;
}

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

.kunststof-spec--accent {
    background: var(--color-primary);
}

.kunststof-spec-value {
    font-size: clamp(1.4rem, 2.6vw, 1.9rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.kunststof-spec-label {
    font-size: 0.66rem;
    line-height: 1.35;
    color: rgba(255, 255, 255, 0.78);
    letter-spacing: 0.02em;
}

/* --- Responsive --- */
@media (max-width: 900px) {
    .kunststof-intro-inner { grid-template-columns: 1fr; }
    .kunststof-system-body { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
    .kunststof-system-specs { grid-template-columns: repeat(2, 1fr); }
    .kunststof-spec { aspect-ratio: 1.1; }
}

/* =========================================================
   KUNSTSTOF ANNOTATED DIAGRAM (Schüco Living NL)
   ========================================================= */
.ksys-diagram {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    grid-template-areas: "left visual right";
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.ksys-diagram-visual {
    position: relative;
    aspect-ratio: 1;
    background: transparent;
}

.ksys-diagram-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6%;
    box-sizing: border-box;
}

/* --- Annotations: each dot+line is independently moveable via top / left --- */
.ksys-annot {
    position: absolute;
    left: 0;
    right: 0;
    height: 0;
    pointer-events: none;
}

.ksys-annot-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(38, 166, 255, 0.22);
    transform: translate(-50%, -50%);
}

.ksys-annot-line {
    position: absolute;
    top: 0;
    right: 0;
    height: 1.5px;
    background: var(--color-primary);
    transform: translateY(-50%);
}

/* Annotation 1 — triple glazing */
.ksys-annot--1              { top: 29%; }
.ksys-annot--1 .ksys-annot-dot  { left: 60%; }
.ksys-annot--1 .ksys-annot-line { left: 60%; }

/* Annotation 2 — 6-kamer profiel */
.ksys-annot--2              { top: 34%; }
.ksys-annot--2 .ksys-annot-dot  { left: 46%; }
.ksys-annot--2 .ksys-annot-line { left: 46%; }

/* Annotation 3 — EPDM afdichting */
.ksys-annot--3              { top: 52%; }
.ksys-annot--3 .ksys-annot-dot  { left: 37%; }
.ksys-annot--3 .ksys-annot-line { left: 37%; }

/* Annotation 4 — 120 mm inbouwdiepte */
.ksys-annot--4              { top: 70%; }
.ksys-annot--4 .ksys-annot-dot  { left: 42%; }
.ksys-annot--4 .ksys-annot-line { left: 42%; }

/* --goes-left modifier: line runs from left edge to the dot instead of dot to right edge */
.ksys-annot--goes-left .ksys-annot-line {
    left: 0;
}

/* Each left-going annotation needs its own right value = 100% minus its dot's left */
.ksys-annot--2.ksys-annot--goes-left .ksys-annot-line { right: calc(100% - 46%); }
.ksys-annot--4.ksys-annot--goes-left .ksys-annot-line { right: calc(100% - 42%); }

.ksys-diagram-labels {
    position: relative;
    background: transparent;
}

/* Left column — text right-aligned, connector dot on the right */
.ksys-diagram-labels--left {
    grid-area: left;
    text-align: right;
}

.ksys-diagram-labels--left .ksys-diagram-label {
    padding-left: 0;
    padding-right: 1.5rem;
}

.ksys-diagram-labels--left .ksys-diagram-label::before {
    left: auto;
    right: 0;
}

/* Right column */
.ksys-diagram-labels--right {
    grid-area: right;
}

/* Visual column */
.ksys-diagram-visual {
    grid-area: visual;
}

.ksys-diagram-label {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--ly);
    transform: translateY(-50%);
    padding: 0 clamp(1.25rem, 2.5vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.ksys-diagram-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(38, 166, 255, 0.18);
}

.ksys-diagram-label strong {
    display: block;
    font-size: clamp(0.82rem, 1.1vw, 0.92rem);
    font-weight: 700;
    color: var(--color-text);
    line-height: 1.3;
}

.ksys-diagram-label span {
    font-size: clamp(0.74rem, 0.95vw, 0.82rem);
    color: var(--color-muted);
    line-height: 1.45;
}

@media (max-width: 900px) {
    .ksys-diagram {
        grid-template-columns: 1fr;
        grid-template-areas:
            "visual"
            "left"
            "right";
    }
    .ksys-diagram-visual { max-height: 380px; }
    .ksys-annot { display: none; } /* hide SVG annotations when stacked */
    .ksys-diagram-labels {
        position: static;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        text-align: left;
    }
    .ksys-diagram-label {
        position: static;
        transform: none;
        padding-left: 1.5rem;
        padding-right: 0;
    }
    .ksys-diagram-label::before {
        left: 0;
        right: auto;
        top: 0.35rem;
        transform: none;
    }
}

/* =========================================================
   KUNSTSTOF GALLERY
   ========================================================= */
.kunststof-gallery {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: var(--color-bg);
}

.kunststof-gallery-head {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    max-width: 600px;
}

.kunststof-gallery-title {
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--color-text);
}

.kunststof-gallery-sub {
    font-size: 1rem;
    color: var(--color-muted);
    line-height: 1.6;
}

.kunststof-gallery-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.75rem;
}

.kunststof-gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    background: #e8f0f8;
}

.kunststof-gallery-item--featured {
    grid-row: 1 / 3;
}

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

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

.kunststof-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.kunststof-gallery-item:hover .kunststof-gallery-caption {
    opacity: 1;
}

@media (max-width: 700px) {
    .kunststof-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .kunststof-gallery-item--featured {
        grid-column: 1 / -1;
        grid-row: auto;
    }
}

/* =========================================================
   KUNSTSTOF REVIEWS
   ========================================================= */
.kunststof-reviews {
    padding: clamp(4rem, 8vw, 7rem) 0;
    background: #f5f8fc;
}

.kunststof-reviews-head {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
    text-align: center;
    align-items: center;
}

.kunststof-reviews-title {
    font-size: clamp(1.75rem, 3.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--color-text);
}

.kunststof-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.kunststof-review-card {
    background: #fff;
    border-radius: 14px;
    padding: clamp(1.5rem, 2.5vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
}

.kunststof-review-stars {
    display: flex;
    gap: 2px;
}

.kunststof-review-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--color-text);
    flex: 1;
}

.kunststof-review-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
}

.kunststof-review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kunststof-review-author strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--color-text);
}

.kunststof-review-author span {
    font-size: 0.78rem;
    color: var(--color-muted);
}

@media (max-width: 800px) {
    .kunststof-reviews-grid { grid-template-columns: 1fr; }
}
