/* Winkelhorst Installatie — design tokens (logo: blauw / lichtblauw / wit) */
:root {
    --color-cream: #f4f8fc;
    --color-cream-dark: #e3edf5;
    --color-cream-card: #fafcfe;
    --color-burgundy: #0f2847;
    --color-burgundy-soft: #2a4a6e;
    --color-text: #1a2e42;
    --color-text-muted: #5a7289;
    --color-orange: #0077c8;
    --color-orange-hover: #0060a8;
    --color-orange-light: #e8f4fc;
    --color-green: #b8dff0;
    --color-green-dark: #0094d4;
    --color-white: #ffffff;
    --color-dark: #0a1628;
    --color-accent: #5bc4eb;

    --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-serif: 'Source Serif 4', Georgia, serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-pill: 999px;

    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 8px 32px rgba(10, 22, 40, 0.1);
    --shadow-lg: 0 16px 48px rgba(10, 22, 40, 0.14);

    --container: 1200px;
    --header-height: 72px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

/* Utility bar */
.utility-bar {
    background: var(--color-cream-card);
    border-bottom: 1px solid rgba(15, 40, 71, 0.06);
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.utility-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 40px;
    flex-wrap: wrap;
}

.audience-toggle {
    display: flex;
    background: var(--color-cream-dark);
    border-radius: var(--radius-pill);
    padding: 3px;
}

.audience-toggle__btn {
    padding: 0.25rem 0.875rem;
    border-radius: var(--radius-pill);
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: background 0.2s, color 0.2s;
}

.audience-toggle__btn.is-active {
    background: var(--color-orange-light);
    color: var(--color-burgundy);
}

.utility-bar__trust {
    display: none;
}

@media (min-width: 768px) {
    .utility-bar__trust {
        display: block;
    }
}

.trust-badge__stars {
    color: var(--color-green-dark);
    letter-spacing: 1px;
    margin-right: 0.25rem;
}

.utility-bar__links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.utility-bar__links a:hover,
.secondary-links a:hover {
    color: var(--color-burgundy);
}

.secondary-links {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-left: auto;
}

.utility-bar__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 600;
    color: var(--color-text);
    flex-shrink: 0;
}

/* Header */
.site-header {
    position: relative;
    z-index: 100;
}

.site-header--hero {
    position: absolute;
    top: calc(0.75rem + 40px);
    left: 0;
    right: 0;
    z-index: 100;
    pointer-events: none;
}

.site-header--hero .site-header__inner,
.site-header--hero .menu-toggle {
    pointer-events: auto;
}

.site-header--page {
    background: var(--color-cream-card);
    border-bottom: 1px solid rgba(15, 40, 71, 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: var(--header-height);
}

.site-header--hero .site-header__inner {
    position: absolute;
    inset-inline: 0;
    top: 0;
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
    color: var(--color-white);
}

.logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
}

.logo__img {
    display: block;
    height: 36px;
    width: auto;
    max-width: min(210px, 52vw);
    object-fit: contain;
}

.logo--footer .logo__img {
    height: 32px;
    max-width: 200px;
}

.main-nav {
    display: none;
    gap: 0.25rem;
}

@media (min-width: 900px) {
    .main-nav {
        display: flex;
    }
}

.main-nav__link {
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-pill);
    transition: background 0.2s;
}

.site-header--hero .main-nav__link:hover,
.site-header--hero .main-nav__link.is-active {
    background: rgba(255, 255, 255, 0.12);
}

.site-header--page .main-nav__link:hover,
.site-header--page .main-nav__link.is-active {
    background: var(--color-cream-dark);
    color: var(--color-burgundy);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.site-header--page .menu-toggle {
    background: var(--color-cream-dark);
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
    border-radius: 1px;
}

@media (min-width: 900px) {
    .menu-toggle {
        display: none;
    }

    .site-header__actions .btn--sm {
        display: inline-flex;
    }
}

@media (max-width: 899px) {
    .site-header__actions .btn--sm {
        display: none;
    }

    body.menu-open .site-header {
        display: none;
    }
}

.mobile-menu {
    position: fixed;
    inset: 0;
    top: 0;
    background: var(--color-cream-card);
    z-index: 200;
    padding: 1rem 0 2rem;
    overflow-y: auto;
}

.mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
    min-height: 56px;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(15, 40, 71, 0.08);
}

.mobile-menu__top .logo {
    flex: 1;
    min-width: 0;
}

.mobile-menu__top .logo__img {
    height: 34px;
    max-width: min(190px, calc(100vw - 6rem));
}

.mobile-menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: none;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    background: var(--color-cream-dark);
    color: var(--color-burgundy);
    flex-shrink: 0;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.mobile-menu__close:hover {
    background: var(--color-orange-light);
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
}

.mobile-menu__nav a {
    display: block;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: var(--radius-md);
}

.mobile-menu__nav a:hover {
    background: var(--color-cream-dark);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: var(--radius-sm);
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn--primary {
    background: var(--color-orange);
    color: var(--color-white);
    box-shadow: 0 4px 16px rgba(0, 119, 200, 0.35);
}

.btn--primary:hover {
    background: var(--color-orange-hover);
}

.btn--outline {
    border: 1.5px solid var(--color-burgundy);
    color: var(--color-burgundy);
    background: transparent;
}

.btn--outline:hover {
    background: var(--color-burgundy);
    color: var(--color-white);
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn--sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn--block {
    width: 100%;
}

/* Hero */
.hero {
    padding: 0.75rem 1rem 0;
}

.hero__frame {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: clamp(520px, 85vh, 720px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 20, 18, 0.45) 0%,
        rgba(26, 20, 18, 0.65) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    padding: calc(var(--header-height) + 3rem) 1.5rem 4.5rem;
    max-width: 720px;
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.1875rem);
    opacity: 0.92;
    margin-bottom: 2rem;
    line-height: 1.55;
}

.hero__trust {
    display: none;
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.88);
}

.hero__trust .trust-badge__stars {
    color: var(--color-accent);
    letter-spacing: 0.5px;
}

@media (min-width: 900px) {
    .hero__trust {
        display: block;
    }
}

.hero__cta {
    margin-top: 0.5rem;
}

/* Utility bar inside hero banner */
.hero__frame .utility-bar--hero {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3;
    background: transparent;
    border-bottom: none;
    color: rgba(255, 255, 255, 0.88);
}

.hero__frame .utility-bar--hero .utility-bar__inner {
    min-height: 40px;
    padding-block: 0.75rem;
}

.hero__bottom-links {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    justify-content: center;
    padding: 1rem 1.5rem 1.25rem;
}

.hero__bottom-links .secondary-links {
    margin-left: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.88);
}

.hero__bottom-links .secondary-links a:hover {
    color: var(--color-white);
}

.hero__bottom-links .secondary-links__phone {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 600;
}

.hero__frame .utility-bar--hero .logo {
    flex-shrink: 0;
}

.hero__frame .utility-bar--hero .logo__img {
    height: 28px;
    max-width: min(180px, 42vw);
}

.site-header--hero .audience-toggle {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.14);
}

.site-header--hero .audience-toggle__btn {
    color: rgba(255, 255, 255, 0.78);
}

.site-header--hero .audience-toggle__btn.is-active {
    background: rgba(255, 255, 255, 0.24);
    color: var(--color-white);
}

@media (max-width: 899px) {
    .hero {
        padding: 0.75rem 0.75rem 0;
    }

    .hero__frame {
        min-height: clamp(460px, 82vh, 620px);
    }

    .hero__frame .utility-bar--hero .utility-bar__inner {
        padding-inline: 1rem;
    }

    .hero__frame .utility-bar--hero .logo__img {
        height: 26px;
        max-width: min(160px, 38vw);
    }

    .hero__bottom-links {
        padding: 0.875rem 1rem 1rem;
    }

    .hero__bottom-links .secondary-links {
        gap: 0.875rem;
        font-size: 0.75rem;
    }

    .hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 5.5rem 1.25rem 4rem;
    }

    .hero__title {
        order: 1;
    }

    .hero__subtitle {
        order: 2;
    }

    .hero__trust {
        order: 3;
        display: block;
        margin-bottom: 1rem;
        font-size: 0.8125rem;
        color: rgba(255, 255, 255, 0.88);
    }

    .hero__cta {
        order: 4;
    }

    .hero__trust .trust-badge__stars {
        font-size: 0.625rem;
    }

    .site-header--hero {
        top: calc(0.75rem + 3.25rem);
        left: 1.75rem;
        right: 1.75rem;
    }

    .site-header--hero .site-header__inner {
        position: relative;
        inset: auto;
        width: 100%;
        max-width: none;
        margin-inline: 0;
        min-height: 56px;
        padding-inline: 0;
    }

    .site-header--hero .audience-toggle {
        flex: 0 0 auto;
        width: fit-content;
    }

    .site-header--hero .audience-toggle__btn {
        padding: 0.3125rem 0.75rem;
        font-size: 0.75rem;
    }

    .site-header--hero .site-header__actions {
        flex-shrink: 0;
    }

    .hero__title {
        font-size: clamp(1.625rem, 7.5vw, 2.125rem);
        margin-bottom: 0.875rem;
    }

    .hero__subtitle {
        font-size: 0.9375rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .hero__cta {
        width: 100%;
        max-width: 320px;
        padding: 0.9375rem 1.5rem;
        font-size: 0.9375rem;
        white-space: normal;
        text-align: center;
    }

    .utility-bar:not(.utility-bar--hero) .secondary-links {
        display: none;
    }

    .utility-bar:not(.utility-bar--hero) .utility-bar__inner {
        flex-wrap: nowrap;
        gap: 0.75rem;
    }

    .utility-bar:not(.utility-bar--hero) .utility-bar__phone {
        font-size: 0.75rem;
    }

    .utility-bar:not(.utility-bar--hero) .audience-toggle__btn {
        padding: 0.25rem 0.625rem;
        font-size: 0.75rem;
    }
}

/* Sections */
.section {
    padding: clamp(3rem, 6vw, 5rem) 0;
}

.section--alt {
    background: var(--color-cream-card);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin-inline: auto;
    margin-bottom: 3rem;
}

.section-header--left {
    text-align: left;
    margin-inline: 0;
}

.section-header__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-burgundy);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.section-header__lead {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Product explorer */
.product-explorer {
    display: grid;
    gap: 2rem;
    align-items: stretch;
    min-width: 0;
}

.home-intro .container {
    width: min(100% - 2rem, 1280px);
    min-width: 0;
}

@media (min-width: 900px) {
    .product-explorer {
        grid-template-columns: 1fr 1.2fr;
        gap: 2.5rem;
    }
}

.product-explorer__panel {
    background: var(--color-cream-card);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(15, 40, 71, 0.06);
    min-width: 0;
    max-width: 100%;
}

@media (max-width: 899px) {
    .product-explorer__panel {
        padding: 1.25rem;
        overflow: hidden;
    }
}

@media (min-width: 900px) {
    .product-explorer__panel {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
}

.product-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.375rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(15, 40, 71, 0.08);
    flex-shrink: 0;
}

@media (max-width: 899px) {
    .product-tabs {
        justify-content: flex-start;
        gap: 0.375rem;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        overscroll-behavior-x: contain;
    }

    .product-tabs::-webkit-scrollbar {
        display: none;
    }
}

.product-panel:not([hidden]) {
    display: block;
}

@media (min-width: 900px) {
    .product-panel:not([hidden]) {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .product-explorer__visual {
        aspect-ratio: 16 / 10;
    }

    .house-visual {
        height: 100%;
    }
}

.product-tabs__btn {
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-muted);
    transition: background 0.2s, color 0.2s;
}

@media (max-width: 899px) {
    .product-tabs__btn {
        flex: 0 0 auto;
        padding: 0.4375rem 0.5rem;
        font-size: 0.6875rem;
        line-height: 1.2;
        text-align: center;
        white-space: nowrap;
    }
}

.product-tabs__btn.is-active {
    background: var(--color-green);
    color: var(--color-burgundy);
}

.product-tabs__btn:hover:not(.is-active) {
    background: var(--color-cream-dark);
}

.product-panel__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-burgundy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-panel__text {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.65;
}

.product-panel__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-burgundy);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.product-panel__link:hover {
    color: var(--color-orange);
}

.product-panel__link svg {
    flex-shrink: 0;
}

.product-explorer__visual {
    position: relative;
    min-width: 0;
    max-width: 100%;
}

.house-visual {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

@media (max-width: 899px) {
    .house-visual {
        aspect-ratio: 16 / 10;
    }
}

.house-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.house-hotspot {
    position: absolute;
    transform: translate(-50%, -50%);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-white);
    padding: 0.375rem 0.875rem 0.375rem 0.5rem;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-sm);
    font-size: 0.8125rem;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
}

.house-hotspot:hover {
    transform: translate(-50%, -50%) scale(1.04);
    box-shadow: var(--shadow-md);
}

.house-hotspot__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-orange);
    flex-shrink: 0;
}

.house-hotspot.is-active .house-hotspot__dot {
    background: var(--color-green-dark);
}

@media (max-width: 899px) {
    .house-hotspot {
        font-size: 0.6875rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        padding: 0.21875rem 0.5625rem 0.21875rem 0.375rem;
        gap: 0.3rem;
        box-shadow: 0 1px 5px rgba(26, 20, 18, 0.1);
    }

    .house-hotspot__dot {
        width: 6px;
        height: 6px;
    }

    .house-hotspot[data-hotspot="warmtepomp"] {
        left: 16% !important;
    }
}

/* Benefits */
.benefit-panel {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 40, 71, 0.08);
    box-shadow: var(--shadow-sm);
    margin-bottom: 3rem;
    overflow: hidden;
}

.benefit-list {
    list-style: none;
    display: grid;
    gap: 0;
}

@media (min-width: 768px) {
    .benefit-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

.benefit-item {
    display: flex;
    gap: 1.125rem;
    padding: 1.75rem 1.5rem;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .benefit-item {
        flex-direction: column;
        padding: 2rem 1.75rem;
    }

    .benefit-item:not(:last-child) {
        border-right: 1px solid rgba(61, 36, 36, 0.08);
    }
}

@media (max-width: 767px) {
    .benefit-item:not(:last-child) {
        border-bottom: 1px solid rgba(15, 40, 71, 0.08);
    }
}

.benefit-item__icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: var(--radius-sm);
    background: var(--color-orange-light);
    color: var(--color-orange);
}

.benefit-item__content h3 {
    font-family: var(--font-serif);
    font-size: 1.1875rem;
    font-weight: 600;
    color: var(--color-burgundy);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.benefit-item__content p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* CTA banner */
.cta-banner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--color-burgundy);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

@media (min-width: 768px) {
    .cta-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 2.5rem 3rem;
    }
}

.cta-banner h3 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    margin-bottom: 0.375rem;
}

.cta-banner p {
    opacity: 0.85;
    font-size: 0.9375rem;
}

.cta-banner .btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

/* Product cards */
.product-cards {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .product-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card {
    display: block;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(15, 40, 71, 0.06);
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.product-card--featured {
    border-color: var(--color-orange);
    border-width: 2px;
}

.product-card__image {
    height: 180px;
    background-size: cover;
    background-position: center;
}

.product-card__body {
    padding: 1.5rem;
}

.product-card__badge {
    display: inline-block;
    background: var(--color-orange-light);
    color: var(--color-orange-hover);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.25rem 0.625rem;
    border-radius: var(--radius-pill);
    margin-bottom: 0.5rem;
}

.product-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-burgundy);
    margin-bottom: 0.5rem;
}

.product-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 0.75rem;
    line-height: 1.55;
}

.product-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-orange);
}

/* Page hero (product pages) */
.page-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: flex-end;
    margin-bottom: 0;
}

.page-hero__media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 20, 18, 0.3) 0%, rgba(26, 20, 18, 0.75) 100%);
}

.page-hero__content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    padding: calc(var(--header-height) + 2rem) 0 3rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: underline;
}

.page-hero__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    max-width: 640px;
}

.page-hero__intro {
    font-size: 1.0625rem;
    opacity: 0.9;
    max-width: 560px;
    margin-bottom: 1.5rem;
    line-height: 1.55;
}

/* Page header (inner pages) */
.page-header {
    padding-top: 2rem;
    padding-bottom: 1rem;
}

.page-header__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--color-burgundy);
    margin-bottom: 0.5rem;
}

.page-header__lead {
    font-size: 1.0625rem;
    color: var(--color-text-muted);
    max-width: 560px;
    margin-bottom: 1.5rem;
}

/* Content grid */
.content-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 900px) {
    .content-grid {
        grid-template-columns: 1fr 320px;
    }
}

.content-main h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-burgundy);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-burgundy);
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.content-main p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    line-height: 1.65;
}

.check-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.625rem;
    color: var(--color-text-muted);
}

.check-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45em;
    width: 8px;
    height: 8px;
    background: var(--color-green-dark);
    border-radius: 50%;
}

.info-box {
    background: var(--color-green);
    background: color-mix(in srgb, var(--color-green) 40%, var(--color-cream-card));
    border-radius: var(--radius-md);
    padding: 1.25rem;
    font-size: 0.9375rem;
    color: var(--color-burgundy-soft);
    line-height: 1.55;
}

.sidebar-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid rgba(15, 40, 71, 0.06);
    margin-bottom: 1rem;
}

.sidebar-card--muted {
    background: var(--color-cream-card);
}

.sidebar-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-burgundy);
    margin-bottom: 0.75rem;
}

.sidebar-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
    line-height: 1.55;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 0.375rem;
}

.sidebar-links a {
    font-size: 0.9375rem;
    color: var(--color-orange);
    font-weight: 500;
}

.sidebar-links a:hover {
    text-decoration: underline;
}

.sidebar-phone a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-burgundy);
}

.sidebar-hours {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* Contact */
.contact-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid rgba(15, 40, 71, 0.06);
    margin-bottom: 1rem;
}

.contact-card--highlight {
    background: color-mix(in srgb, var(--color-orange-light) 60%, var(--color-white));
    border-color: rgba(0, 119, 200, 0.2);
}

.contact-card h2 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.contact-card__value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-burgundy);
}

.contact-card__value a:hover {
    color: var(--color-orange);
}

.contact-card__meta {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.contact-card--highlight p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.contact-card__cta {
    margin-top: 1rem;
}

.contact-form-placeholder h2 {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    color: var(--color-burgundy);
    margin-bottom: 0.5rem;
}

.contact-form-placeholder__note {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.form-row {
    margin-bottom: 1rem;
}

.form-row label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.375rem;
    color: var(--color-burgundy-soft);
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--color-cream-dark);
    border-radius: var(--radius-sm);
    font: inherit;
    background: var(--color-cream-card);
    opacity: 0.7;
}

/* FAQ */
.faq-layout {
    display: grid;
    gap: 3rem;
}

@media (min-width: 900px) {
    .faq-layout {
        grid-template-columns: 1fr 300px;
    }
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 40, 71, 0.06);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-item summary {
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    color: var(--color-burgundy);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-orange);
    transition: transform 0.2s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* News */
.news-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid rgba(15, 40, 71, 0.06);
    transition: box-shadow 0.2s;
}

.news-card:hover {
    box-shadow: var(--shadow-sm);
}

.news-card time {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

.news-card h2 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--color-burgundy);
    margin: 0.5rem 0;
    line-height: 1.35;
}

.news-card p {
    font-size: 0.9375rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin-bottom: 0.75rem;
}

.news-card__link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-orange);
}

/* Footer */
.site-footer {
    background: var(--color-burgundy);
    color: rgba(255, 255, 255, 0.85);
    padding-top: 3rem;
    margin-top: 2rem;
}

.site-footer__grid {
    display: grid;
    gap: 2rem;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    .site-footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.logo--footer {
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.site-footer__tagline {
    font-size: 0.9375rem;
    opacity: 0.75;
    line-height: 1.55;
    max-width: 280px;
}

.site-footer__heading {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.site-footer__links {
    list-style: none;
}

.site-footer__links li {
    margin-bottom: 0.5rem;
}

.site-footer__links a {
    font-size: 0.9375rem;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.site-footer__links a:hover {
    opacity: 1;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.25rem 0;
    font-size: 0.8125rem;
    opacity: 0.6;
}

/* Bespaarcalculator */
.savings-calc .container {
    width: min(100% - 2rem, 1320px);
}

.savings-calc__layout {
    display: grid;
    gap: 1.5rem;
    align-items: stretch;
}

.savings-calc__bridge {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

.savings-calc__bridge-line {
    flex: 1;
    height: 1px;
    background: rgba(15, 40, 71, 0.1);
}

.savings-calc__bridge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: var(--color-orange);
    color: var(--color-white);
    flex-shrink: 0;
}

@media (min-width: 900px) {
    .savings-calc__layout {
        grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
        gap: 1.5rem 2rem;
        align-items: center;
        max-width: 1180px;
        margin-inline: auto;
    }

    .savings-calc__panel--inputs {
        justify-self: start;
        width: 100%;
        max-width: 420px;
    }

    .savings-calc__panel--results {
        justify-self: end;
        width: 100%;
        max-width: 460px;
    }

    .savings-calc__bridge {
        display: flex;
        flex-direction: row;
        padding: 0;
        background: transparent;
        align-self: center;
    }

    .savings-calc__bridge-line {
        width: 2.5rem;
        flex: none;
    }

    .savings-calc__bridge-icon svg {
        transform: rotate(-90deg);
    }

    .savings-calc__step {
        font-family: var(--font-serif);
        font-size: 1.25rem;
        font-weight: 700;
        text-transform: none;
        letter-spacing: -0.01em;
        color: var(--color-burgundy);
        margin-bottom: 1.25rem;
    }

    .savings-calc__panel--results {
        padding: 1.75rem 1.625rem;
    }
}

.savings-calc__panel {
    background: var(--color-cream-card);
    border: 1px solid rgba(15, 40, 71, 0.08);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.savings-calc__panel--results {
    background: var(--color-white);
}

.savings-calc__step {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-orange);
    margin-bottom: 1.25rem;
}

.savings-calc__field {
    margin-bottom: 1.5rem;
}

.savings-calc__field:last-child {
    margin-bottom: 0;
}

.savings-calc__field-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.625rem;
}

.savings-calc__field label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-text);
}

.savings-calc__value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-orange);
    white-space: nowrap;
}

.savings-calc__range {
    width: 100%;
    accent-color: var(--color-orange);
    cursor: pointer;
}

.savings-calc__select {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(15, 40, 71, 0.12);
    border-radius: var(--radius-sm);
    background: var(--color-white);
    font: inherit;
    color: var(--color-text);
}

.savings-calc__panel--results {
    background: var(--color-white);
    display: flex;
    flex-direction: column;
}

.savings-calc__hero {
    text-align: center;
    padding: 1.375rem 1.25rem;
    margin-bottom: 1.125rem;
    background: linear-gradient(145deg, var(--color-burgundy) 0%, #1a3d66 100%);
    border-radius: var(--radius-md);
    color: var(--color-white);
}

.savings-calc__hero-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0.5rem;
}

.savings-calc__hero-value {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 6vw, 2.75rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.05;
    margin-bottom: 0.375rem;
}

.savings-calc__hero-monthly {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-burgundy);
    background: var(--color-accent);
    padding: 0.3125rem 0.75rem;
    border-radius: var(--radius-pill);
}

.savings-calc__metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem;
    margin-bottom: 1.125rem;
}

.savings-calc__metric {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.875rem 0.75rem;
    background: var(--color-cream);
    border: 1px solid rgba(15, 40, 71, 0.06);
    border-radius: var(--radius-sm);
}

.savings-calc__metric--wide {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.savings-calc__metric-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    line-height: 1.3;
}

.savings-calc__metric-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-burgundy);
    line-height: 1.2;
}

.savings-calc__metric--wide .savings-calc__metric-value {
    text-align: right;
}

.savings-calc__summary {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--color-text-muted);
    margin-bottom: 1.125rem;
    padding: 0;
    background: transparent;
}

.savings-calc__cta {
    width: 100%;
    margin-top: auto;
}

@media (min-width: 480px) {
    .savings-calc__cta {
        width: auto;
    }
}

@media (max-width: 899px) {
    .savings-calc__layout {
        gap: 0;
        background: var(--color-white);
        border: 1px solid rgba(15, 40, 71, 0.08);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        overflow: hidden;
    }

    .savings-calc__panel {
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 1.25rem 1.125rem;
    }

    .savings-calc__panel--inputs {
        background: var(--color-cream-card);
        padding-bottom: 1rem;
    }

    .savings-calc__bridge {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0 1.125rem;
        background: var(--color-cream-card);
    }

    .savings-calc__bridge-line {
        flex: 1;
        height: 1px;
        background: rgba(15, 40, 71, 0.1);
    }

    .savings-calc__bridge-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        background: var(--color-orange);
        color: var(--color-white);
        flex-shrink: 0;
    }

    .savings-calc__panel--results {
        background: var(--color-white);
        padding-top: 1rem;
    }

    .savings-calc__metrics {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .savings-calc__metric {
        padding: 0.75rem 0.625rem;
    }

    .savings-calc__metric-value {
        font-size: 0.9375rem;
    }

    .savings-calc__summary {
        margin-bottom: 1rem;
    }

    .savings-calc__cta {
        width: 100%;
    }
}

/* Product vergelijker */
.product-compare__table-wrap {
    background: var(--color-white);
    border: 1px solid rgba(15, 40, 71, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.product-compare__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.product-compare__table thead {
    background: var(--color-cream);
}

.product-compare__table th,
.product-compare__table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid rgba(15, 40, 71, 0.08);
}

.product-compare__table th {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-burgundy);
}

.product-compare__table tbody tr:last-child td {
    border-bottom: none;
}

.product-compare__table tbody tr:hover {
    background: rgba(232, 244, 252, 0.45);
}

.product-compare__table td strong {
    color: var(--color-burgundy);
}

.product-compare__benefit {
    color: var(--color-orange);
    font-weight: 600;
}

.product-compare__suitable {
    color: var(--color-green-dark);
    font-weight: 600;
}

@media (max-width: 699px) {
    .product-compare__table thead {
        display: none;
    }

    .product-compare__table {
        display: block;
    }

    .product-compare__table tbody {
        display: flex;
        flex-direction: column;
    }

    .product-compare__table tr {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 0.5rem;
        padding: 1rem 0.875rem;
        border-bottom: 1px solid rgba(15, 40, 71, 0.08);
        align-items: start;
    }

    .product-compare__table tr:last-child {
        border-bottom: none;
    }

    .product-compare__table td {
        display: block;
        padding: 0;
        border: none;
        font-size: 0.75rem;
        line-height: 1.35;
        min-width: 0;
    }

    .product-compare__table td::before {
        content: attr(data-label);
        display: block;
        font-size: 0.5625rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        margin-bottom: 0.25rem;
        line-height: 1.2;
    }

    .product-compare__product::before {
        color: var(--color-text-muted);
    }

    .product-compare__product strong {
        font-size: 0.8125rem;
        display: block;
    }

    .product-compare__benefit::before {
        color: var(--color-orange);
    }

    .product-compare__benefit {
        color: var(--color-orange);
    }

    .product-compare__suitable::before {
        color: var(--color-green-dark);
    }

    .product-compare__suitable {
        color: var(--color-green-dark);
    }
}

/* Klantenkaart */
.klantenkaart__layout {
    position: relative;
    overflow: hidden;
    min-height: clamp(380px, 52vw, 520px);
    display: flex;
    align-items: center;
}

.klantenkaart .container {
    width: min(100% - 1rem, 1400px);
}

.klantenkaart__visual {
    position: absolute;
    inset: 0;
    z-index: 0;
    margin: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.klantenkaart__visual picture {
    display: block;
    width: 100%;
    height: 100%;
}

.klantenkaart__img {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: right center;
}

.klantenkaart__content {
    position: relative;
    z-index: 1;
    max-width: min(100%, 28rem);
    padding: 2rem 0;
}

.klantenkaart__content::before {
    content: '';
    position: absolute;
    inset: -1.5rem -1rem -1.5rem -3rem;
    background: linear-gradient(
        90deg,
        var(--color-cream) 0%,
        rgba(244, 248, 252, 0.96) 55%,
        rgba(244, 248, 252, 0.4) 80%,
        transparent 100%
    );
    z-index: -1;
    pointer-events: none;
}

.klantenkaart__points {
    list-style: none;
    margin: 0 0 1.5rem;
    display: grid;
    gap: 0.75rem;
}

.klantenkaart__points li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--color-text-muted);
    font-size: 0.9375rem;
}

.klantenkaart__points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-green-dark);
    font-weight: 700;
}

@media (min-width: 900px) {
    .klantenkaart__layout {
        min-height: clamp(420px, 38vw, 560px);
    }

    .klantenkaart__content {
        max-width: 26rem;
        padding: 2.5rem 0;
    }

    .klantenkaart__img {
        width: 72%;
        margin-left: auto;
        object-position: right center;
    }
}

@media (max-width: 899px) {
    .klantenkaart__layout {
        min-height: clamp(580px, 145vw, 760px);
        align-items: flex-start;
        padding-top: 1.5rem;
        padding-bottom: 1rem;
    }

    .klantenkaart__visual {
        top: 22%;
        left: -6%;
        right: -6%;
        bottom: -1.5rem;
        height: auto;
        align-items: flex-end;
        justify-content: center;
    }

    .klantenkaart__img {
        width: 128%;
        height: auto;
        object-fit: contain;
        object-position: center bottom;
    }

    .klantenkaart__content {
        max-width: 100%;
        padding: 0 0 1.5rem;
    }

    .klantenkaart__content::before {
        inset: -0.5rem -0.75rem auto -0.75rem;
        height: 38%;
        bottom: auto;
        background: linear-gradient(
            180deg,
            var(--color-cream) 0%,
            rgba(244, 248, 252, 0.82) 75%,
            transparent 100%
        );
    }
}
