/**
 * TÜV SÜD Landing Page Styles
 * Built pixel-perfect from Figma design (file: 6mLpa7nx0MjwYefd0TY5Am)
 *
 * Font fallbacks:
 * - Abtera Light (300): not available, using Abtera Regular (400) with font-weight: 300
 * - TUV SUD Pro: self-hosted as TUVSUDPro
 */

/* ===== FONTS ===== */

/* TUVSUDPro — TÜV SÜD Pro corporate font, 7 weights × 2 styles */
@font-face {
    font-family: 'TUVSUDPro';
    src: url('../fonts/TUVSUDPro-Thin.woff2') format('woff2'), url('../fonts/TUVSUDPro-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TUVSUDPro';
    src: url('../fonts/TUVSUDPro-ThinItalic.woff2') format('woff2'), url('../fonts/TUVSUDPro-ThinItalic.woff') format('woff');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'TUVSUDPro';
    src: url('../fonts/TUVSUDPro-Air.woff2') format('woff2'), url('../fonts/TUVSUDPro-Air.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TUVSUDPro';
    src: url('../fonts/TUVSUDPro-AirItalic.woff2') format('woff2'), url('../fonts/TUVSUDPro-AirItalic.woff') format('woff');
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'TUVSUDPro';
    src: url('../fonts/TUVSUDPro-Light.woff2') format('woff2'), url('../fonts/TUVSUDPro-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TUVSUDPro';
    src: url('../fonts/TUVSUDPro-LightItalic.woff2') format('woff2'), url('../fonts/TUVSUDPro-LightItalic.woff') format('woff');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'TUVSUDPro';
    src: url('../fonts/TUVSUDPro-Regular.woff2') format('woff2'), url('../fonts/TUVSUDPro-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TUVSUDPro';
    src: url('../fonts/TUVSUDPro-RegularItalic.woff2') format('woff2'), url('../fonts/TUVSUDPro-RegularItalic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'TUVSUDPro';
    src: url('../fonts/TUVSUDPro-Medium.woff2') format('woff2'), url('../fonts/TUVSUDPro-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TUVSUDPro';
    src: url('../fonts/TUVSUDPro-MediumItalic.woff2') format('woff2'), url('../fonts/TUVSUDPro-MediumItalic.woff') format('woff');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'TUVSUDPro';
    src: url('../fonts/TUVSUDPro-Bold.woff2') format('woff2'), url('../fonts/TUVSUDPro-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TUVSUDPro';
    src: url('../fonts/TUVSUDPro-BoldItalic.woff2') format('woff2'), url('../fonts/TUVSUDPro-BoldItalic.woff') format('woff');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'TUVSUDPro';
    src: url('../fonts/TUVSUDPro-Black.woff2') format('woff2'), url('../fonts/TUVSUDPro-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'TUVSUDPro';
    src: url('../fonts/TUVSUDPro-BlackItalic.woff2') format('woff2'), url('../fonts/TUVSUDPro-BlackItalic.woff') format('woff');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}

/* ===== CSS VARIABLES ===== */
:root {
    --font-body: 'TUVSUDPro', 'DM Sans', sans-serif;
    --font-display: 'TUVSUDPro', 'Montserrat', sans-serif;
    --font-inter: 'Inter', sans-serif;

    --color-hero-bg: #0b253b;
    --color-blue: #0046ad;
    --color-dark-text: #070d3f;
    --color-green-cta: #68e8ab;
    --color-green-accent: #5cc376;
    --color-light-bg: #eaf0f7;
    --color-card-bg: #f6f4ef;
    --color-badge-bg: #bddaec;
    --color-border: #dadada;
    --color-footer-text: #111112;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-body); color: #000; width: 100%; }
h1, h2, h3, h4, h5, h6 { word-break: break-word; overflow-wrap: break-word; }
p, span, a, button, li {
    word-break: break-word;
    overflow-wrap: anywhere;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== MODULE: topbar — components/topbar.html ===== */
/* ===== TOP BAR (Desktop only) ===== */
.topbar {
    background-color: var(--color-hero-bg);
    height: 100px;
    display: flex;
    align-items: center;
}

.topbar__container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar__logo {
    width: 94px;
    height: 94px;
}

/* Phone wrapper: flex-column with phone number + hours */
.topbar__phone-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.topbar__phone {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    line-height: 33px;
    letter-spacing: 1.44px;
}

.topbar__phone:hover {
    opacity: 0.85;
}

.topbar__hours {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 0;
    line-height: 20px;
}

/* ===== MODULE: hero — components/hero.html ===== */
/* ===== HERO SECTION ===== */
.hero {
    background-color: var(--color-hero-bg);
    padding-bottom: 50px;
    position: relative;
}

.hero__container {
    max-width: 1060px;
    margin: 0 auto;
    padding: 50px 20px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.hero__content {
    max-width: 700px;
    padding-top: 0;
}

.hero__logo {
    width: 75px;
    height: 75px;
    margin-bottom: 30px;
    display: none; /* Hidden on desktop — logo is in topbar */
}

.hero__heading {
    color: #fff;
    line-height: 57px;
    margin-bottom: 19px;
}

.hero__heading-line1 {
    display: block;
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 700;
}

.hero__heading-line2 {
    display: block;
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 400;
}

.hero__subheading {
    font-family: var(--font-inter);
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    line-height: 26px;
    margin-bottom: 42px;
}

.hero__cta-text {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    line-height: 32px;
    margin-bottom: 16px;
}

/* Hero benefits list — green checkmark trust signals */
.hero__benefits {
    list-style: none;
    margin: 0 0 16px 0;
    padding: 0;
}

.hero__benefits li {
    position: relative;
    padding-left: 28px;
    color: #fff;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    line-height: 41px;
    margin-bottom: 0;
}

.hero__benefits li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2327ae60' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}

/* .hero__promise removed — replaced by trustpilot badge image */

/* ===== HERO FORM CARD ===== */
.hero__form-card {
    width: 334px;
    min-width: 334px;
    min-height: 470px;
    background: var(--color-blue);
    border-radius: 8px;
    padding: 22px 21px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hero__form-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.hero__form-subtitle {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.form-field {
    position: relative;
    margin-bottom: 12px;
}

/* Form field icon — positioned inside input on the right */
.form-field--has-icon {
    position: relative;
}

.form-field__icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-field--has-icon input {
    padding-right: 44px;
}

.form-field input {
    width: 100%;
    height: 46px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    padding: 0 12px 0 16px;
    font-family: var(--font-inter);
    font-size: 14px;
    color: #333;
    outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #999;
}

/* Textarea styling for message/notes field */
.form-field textarea,
.product-form-view__field textarea {
    width: 100%;
    height: 70px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    padding: 12px 16px;
    font-family: var(--font-inter);
    font-size: 14px;
    color: #333;
    outline: none;
    resize: none;
    box-sizing: border-box;
}

.form-privacy {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 12px 0 16px;
    cursor: pointer;
}

.form-privacy input[type="checkbox"] {
    width: 21px;
    height: 21px;
    min-width: 21px;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
}

.form-privacy input[type="checkbox"]:checked {
    background: #fff;
    border-color: var(--color-border);
}

.form-privacy input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: #333;
}

.form-privacy__text {
    font-family: var(--font-inter);
    font-size: 12px;
    font-weight: 400;
    color: #fff;
    line-height: 18px;
}

/* Contact notice subtitle under form title */
.form-contact-notice {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #68e8ab;
    margin: 0 0 12px;
}

.form-submit {
    width: 100%;
    height: 52px;
    background: var(--color-green-cta);
    border: 1px solid #52b37f;
    border-radius: 25px;
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 700;
    color: #0b253b;
    cursor: pointer;
    transition: opacity 0.2s;
}

.form-submit:hover {
    opacity: 0.9;
}

/* Form message */
#heroFormMessage {
    margin-top: 12px;
    font-family: var(--font-inter);
    font-size: 13px;
    border-radius: 5px;
    padding: 0;
    transition: all 0.3s;
}

#heroFormMessage.show {
    padding: 10px;
}

.message-success {
    background: rgba(104, 232, 171, 0.2);
    color: #fff;
}

.message-error {
    background: rgba(255, 100, 100, 0.2);
    color: #fff;
}

/* ===== TRUSTPILOT BAR ===== */
/*
 * Trustpilot bar: Two-row card layout
 * Row 1: Bold title text (full width)
 * Row 2: Stars | Reviews text | Trustpilot logo (right-aligned)
 *
 * HTML structure: .trustpilot-bar > [.title, .row2 > [.stars, .reviews, .logo]]
 */
.trustpilot-bar {
    max-width: 700px;
    width: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 16px 24px;
    margin: 40px auto 0;
}

/* Bottom row: trustpilot card (left) + promise text (right), overlapping hero boundary */
/* Figma: card is 96px tall; 60px in hero, 36px below hero = 37.5% overlap into white area */
/* The row is inside .hero. We want 36px of the card to be below the hero boundary. */
/* Trustpilot live widget container — normal flow inside hero__content */
.hero__trustpilot-widget {
    display: block;
    max-width: 488px;
    width: 100%;
    margin-top: 24px;
    border-radius: 8px;
}

/* Row 1: Title spanning full width */
.trustpilot-bar__title {
    font-family: var(--font-inter);
    font-size: 15px;
    font-weight: 700;
    color: #000;
    white-space: nowrap;
    margin-bottom: 8px;
}

/* Row 2: Stars + Reviews + Logo in a horizontal row */
.trustpilot-bar__row2 {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Stars: Row 2, left */
.trustpilot-bar__stars {
    width: 179px;
    height: 25px;
    flex-shrink: 0;
}

/* Reviews: Row 2, after stars */
.trustpilot-bar__reviews {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.trustpilot-bar__reviews strong {
    font-weight: 700;
}

/* Trustpilot logo: Row 2, pushed to far right */
.trustpilot-bar__logo {
    height: 24px;
    width: auto;
    flex-shrink: 0;
    margin-left: auto;
}

/* Hero trustpilot-bar__logo override removed — hero now uses PNG image */

/* ===== MODULE: stats-belt — components/stats-belt.html ===== */
/* ===== STATS BELT SECTION ===== */
.stats-belt {
    background-color: #00365f;
    padding: 20px 20px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.stats-belt__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

/* Brand section hidden on mobile by default */
.stats-belt__brand {
    display: none;
}

/* Stats wrapper for the 3 stat groups */
.stats-belt__stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    gap: 8px;
    flex-wrap: nowrap;
}

.stats-belt__item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 16px;
    min-width: 0;
    overflow-wrap: break-word;
}

/* Vertical dividers between stat items (mobile: thin white lines) */
.stats-belt__divider {
    display: block;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
    align-self: stretch;
    margin: 10px 0;
    flex-shrink: 0;
}

.stats-belt__number {
    font-family: var(--font-body);
    font-size: 31px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 0px;
}

.stats-belt__label {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
}

.stats-belt__sublabel {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
    margin-top: 2px;
}

/* ===== STATS BELT — DESKTOP LAYOUT (min-width: 901px) ===== */
@media (min-width: 901px) {
    .stats-belt {
        background-color: #F0F6FF;
        padding: 0;
        height: 130px;
    }

    .stats-belt__container {
        height: 100%;
        gap: 0;
    }

    /* Brand/Trustpilot left section */
    .stats-belt__brand {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        width: 48%;
        flex-shrink: 0;
        padding: 0 32px;
        gap: 4px;
    }

    .stats-belt__brand-name {
        font-family: var(--font-display);
        font-size: 26px;
        font-weight: 700;
        color: #000000;
        line-height: 1.2;
    }

    .stats-belt__stars-row {
        display: flex;
        align-items: flex-end;
        gap: 8px;
    }

    .stats-belt__brand-text {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    .stats-belt__trustpilot-stars {
        width: 120px;
        height: auto;
        flex-shrink: 0;
    }

    .stats-belt__review-count {
        font-family: var(--font-inter);
        font-size: 14px;
        font-weight: 700;
        color: #000000;
        line-height: 1.1;
    }

    .stats-belt__brand-tagline {
        font-family: var(--font-body);
        font-size: 13px;
        font-weight: 400;
        color: #000000;
        line-height: 1.1;
        white-space: nowrap;
    }

    /* Right stats section */
    .stats-belt__stats {
        flex: 1;
        justify-content: flex-start;
        gap: 0;
    }

    .stats-belt__item {
        flex: 1;
        padding: 0 16px;
        text-align: left;
        align-items: flex-start;
    }

    /* Vertical dividers — explicit 58px height per Figma */
    .stats-belt__divider {
        display: block;
        width: 1px;
        height: 58px;
        align-self: center;
        background-color: #000000;
        flex-shrink: 0;
    }

    .stats-belt__number {
        font-family: var(--font-body);
        font-size: 24px;
        font-weight: 700;
        color: #070D3F;
        line-height: 1.14;
        margin-bottom: 5px;
    }

    .stats-belt__label {
        font-size: 14px;
        color: #000000;
        line-height: 1.4;
    }

    .stats-belt__sublabel {
        font-size: 14px;
        color: #000000;
        line-height: 1.4;
        margin-top: 0;
    }
}

/* ===== MODULE: products — components/products.html ===== */
/* ===== PRODUCTS SECTION ===== */
.products {
    padding: 60px 0 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.products__header {
    text-align: center;
    max-width: 1059px;
    margin: 0 auto 59px;
    padding: 0 20px;
}

.products__heading {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    line-height: 34.2px;
    color: var(--color-dark-text);
    margin-bottom: 16px;
}

.products__description {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-align: center;
    line-height: 18.24px;
}

.products__tabs {
    display: flex;
    justify-content: space-between;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto 0;
}

.products__tab {
    flex: none;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    color: var(--color-dark-text);
    padding: 8px 16px;
    border-bottom: 3.6px solid transparent;
    border-radius: 0;
    transition: border-color 0.2s;
    background: none;
    cursor: pointer;
    text-align: center;
}

.products__tab--active {
    border-bottom-color: #0046AD;
}

.products__panels-wrapper {
    position: relative;
}

.products__panel {
    padding: 0 40px;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(10px);
    transition: opacity 300ms ease, transform 300ms ease, visibility 0s 300ms;
}

.products__panel--active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
    transition: opacity 300ms ease, transform 300ms ease, visibility 0s 0s;
}

.product-card {
    display: flex;
    background: #F6F4EF;
    border-radius: 8px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card__image-wrap {
    width: 339px;
    min-width: 339px;
    height: 503px;
    overflow: hidden;
}

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

.product-card__body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    background: #F6F4EF;
    min-height: 503px;
    box-sizing: border-box;
}

.product-card__badge {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 400;
    line-height: 26px;
    background: #BDDAEC;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
    width: fit-content;
}

.product-card__title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 27.36px;
    color: #000000;
    margin-bottom: 16px;
}

.product-card__text {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 18.24px;
    margin-bottom: 12px;
}

.product-card__text:last-of-type {
    margin-bottom: 24px;
}

/* Actions row: stats left, CTA right */
.product-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: auto;
}

.product-card__stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.product-card__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.2);
}

.product-card__stat {
    display: flex;
    flex-direction: column;
}

.product-card__stat-number {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 27.36px;
    color: #000000;
}

.product-card__stat-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    line-height: 15.96px;
    color: #000000;
}

.product-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #070D3F;
    color: #FFFFFF;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    padding: 14px 32px;
    border-radius: 8px;
    width: fit-content;
    white-space: nowrap;
    transition: opacity 0.2s;
}

.product-card__cta:hover {
    opacity: 0.9;
}

/* ===== MODULE: reviews — components/reviews.html ===== */
/* ===== REVIEWS SECTION ===== */
.reviews {
    padding: 60px 0 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews__heading {
    font-family: var(--font-body);
    font-size: 30px;
    font-weight: 700;
    color: var(--color-dark-text);
    text-align: center;
    margin-bottom: 40px;
}

/* .reviews__images and .reviews__image removed — replaced by Trustpilot Slider widget */

/* ===== MODULE: expert — components/expert.html ===== */
/* ===== EXPERT SECTION ===== */
.expert {
    background: var(--color-light-bg);
    padding: 80px 0;
}

.expert__container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0 80px;
}

.expert__logo {
    width: 75px;
    height: 75px;
    flex-shrink: 0;
}

.expert__content {
    flex: 1;
}

.expert__heading {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark-text);
    margin-bottom: 16px;
}

.expert__text {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin-bottom: 0;
}

.expert__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 262px;
    min-width: 262px;
    height: 50px;
    flex-shrink: 0;
    background: var(--color-hero-bg);
    color: #fff;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    transition: opacity 0.2s;
}

.expert__cta:hover {
    opacity: 0.85;
}

/* ===== MODULE: cta — components/cta.html ===== */
/* ===== CTA SECTION ===== */
.cta-section {
    background: #0046AD;
    padding: 120px 20px;
}

.cta-section__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cta-section__heading {
    font-family: var(--font-display);
    font-size: 33px;
    font-weight: 500;
    color: #FFFFFF;
    line-height: 32px;
    margin-bottom: 40px;
}

.cta-section__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 262px;
    height: 50px;
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.2s;
}

.cta-section__button:hover {
    background: #FFFFFF;
    color: #0046AD;
}

/* ===== MODULE: footer — components/footer.html ===== */
/* ===== FOOTER ===== */
.footer {
    background: #fff;
    padding: 80px 20px;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    padding: 0 80px;
}

.footer__heading {
    font-family: var(--font-inter);
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.footer__address {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-footer-text);
    line-height: 26px;
    margin-bottom: 8px;
}

.footer__phone {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-footer-text);
    line-height: 26px;
    margin-bottom: 4px;
}

.footer__hours {
    font-family: var(--font-inter);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-footer-text);
    line-height: 26px;
    margin-bottom: 24px;
}

.footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 262px;
    height: 50px;
    background: transparent;
    color: var(--color-blue);
    border: 1px solid var(--color-blue);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.2s;
}

.footer__cta:hover {
    background: var(--color-blue);
    color: #fff;
}

/* ===== RESPONSIVE: 900px ===== */
@media (max-width: 900px) {
    .stats-belt__container {
        flex-wrap: wrap;
        gap: 32px 0;
    }

    .stats-belt__stats {
        flex-wrap: nowrap;
        gap: 0;
    }

    .stats-belt__item {
        flex: 1;
        border-right: none;
    }

    .stats-belt__item:nth-child(1),
    .stats-belt__item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        padding-bottom: 24px;
    }

    .topbar {
        /* Visible on mobile per Figma design */
    }

    .hero__logo {
        display: block;
    }
    body {
        margin: 0 auto;
        width: 100%;
    }

    /* Constrain all major containers to viewport */
    .hero__container,
    .products,
    .products__header,
    .products__tabs,
    .product-card,
    .reviews,
    .expert__container,
    .cta-section__container,
    .footer__container,
    .trustpilot-bar {
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero__container {
        flex-direction: column;
        padding: 48px 20px 0;
        align-items: center;
    }

    .hero__content {
        max-width: 100%;
        text-align: center;
    }

    .hero__logo {
        margin: 0 auto 24px;
    }

    .hero__heading-line1 {
        font-size: 34px;
    }

    .hero__heading-line2 {
        font-size: 30px;
    }

    .hero__heading {
        line-height: 42px;
    }

    .hero__subheading,
    .hero__cta-text {
        font-size: 18px;
        line-height: 1.4;
    }

    .hero__form-card {
        width: 100%;
        min-width: unset;
        max-width: 420px;
    }

    .form-field input,
    .form-submit {
        width: 100%;
    }

    .trustpilot-bar {
        width: 100%;
        max-width: 520px;
        margin: 30px auto 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Trustpilot widget: scale down on mobile */
    .hero__trustpilot-widget {
        max-width: 100%;
        margin: 16px auto 0;
    }

    /* === Benefits carousel: single-line rotating ticker on mobile === */
    .hero__benefits {
        position: relative;
        overflow: hidden;
        height: 32px;
        margin: 0 0 16px 0;
    }

    .hero__benefits li {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        opacity: 0;
        transform: translateX(100%);
        transition: transform 500ms ease, opacity 500ms ease;
        white-space: nowrap;
    }

    .hero__benefits li::before {
        position: static;
        display: inline-block;
        flex-shrink: 0;
        margin-right: 8px;
    }

    .hero__benefits li.carousel-active {
        opacity: 1;
        transform: translateX(0);
    }

    .hero__benefits li.carousel-exit {
        opacity: 0;
        transform: translateX(-100%);
    }

    .hero {
        padding-bottom: 30px;
    }

    .products {
        padding: 50px 16px;
        max-width: 100%;
    }

    .products__tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 0;
    }

    .products__panel {
        padding: 0;
        max-width: 420px;
        margin: 0 auto;
        width: 100%;
    }

    .product-card {
        flex-direction: column;
        max-width: 100%;
    }

    .product-card__image-wrap {
        width: 100%;
        min-width: unset;
        height: 300px;
    }

    .product-card__body {
        padding: 32px 20px;
    }

    .product-card__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .reviews {
        padding: 50px 20px;
    }

    .expert__container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 24px;
    }

    .cta-section__heading {
        font-size: 24px;
        line-height: 1.3;
    }

    .footer__container {
        padding: 0 24px;
    }

    .footer__cta {
        width: 100%;
        max-width: 262px;
    }

    .expert__cta {
        width: 100%;
        max-width: 262px;
        min-width: unset;
    }

    .hero,
    .products,
    .reviews,
    .expert,
    .cta-section,
    .footer {
        max-width: 420px !important;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding-left: 16px;
        padding-right: 16px;
        box-sizing: border-box;
    }

    /* Prevent nowrap text from overflowing narrow containers */
    .trustpilot-bar__title {
        white-space: normal;
    }

    .product-card__cta {
        white-space: normal;
        width: 100%;
        text-align: center;
    }

}

/* ===== RESPONSIVE: 480px (small mobile) ===== */
@media (max-width: 480px) {
    .stats-belt {
        padding: 32px 16px;
    }

    .stats-belt__container {
        flex-direction: column;
        gap: 24px;
    }

    .stats-belt__stats {
        flex-wrap: nowrap;
        gap: 0;
    }

    .stats-belt__item {
        flex: 1;
        border-right: none;
        border-bottom: none;
        padding-bottom: 0;
    }

    .stats-belt__item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .stats-belt__item:nth-child(1),
    .stats-belt__item:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .stats-belt__number {
        font-size: 36px;
    }

    .hero__container {
        padding: 40px 16px 0;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__heading-line1 {
        font-size: 30px;
    }

    .hero__heading-line2 {
        font-size: 28px;
        display: none;
    }

    .hero__heading {
        line-height: 38px;
    }

    .hero__subheading {
        font-size: 17px;
    }

    .hero__cta-text {
        font-size: 17px;
    }

    .hero__form-card {
        padding: 24px 20px 20px;
        width: 100%;
        min-width: unset;
        max-width: 100%;
    }

    .form-field input,
    .form-submit {
        width: 100%;
        max-width: 100%;
    }

    .trustpilot-bar {
        max-width: 100%;
        padding: 12px 16px;
    }

    .trustpilot-bar__title {
        white-space: normal;
        font-size: 13px;
    }

    .trustpilot-bar__row2 {
        flex-wrap: wrap;
    }

    .products {
        padding: 40px 16px;
    }

    .products__tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 0;
    }

    .products__tab {
        font-size: 18px;
    }

    .products__panel {
        padding: 0;
    }

    .product-card {
        flex-direction: column;
        max-width: 100%;
    }

    .product-card__body {
        padding: 24px 16px;
    }

    .product-card__image-wrap {
        width: 100%;
        min-width: unset;
        height: 250px;
    }

    .product-card__actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .product-card__cta {
        white-space: normal;
        text-align: center;
        width: 100%;
        padding: 14px 20px;
    }

    .reviews {
        padding: 40px 16px;
    }

    .expert__container {
        padding: 0 16px;
    }

    .expert__cta {
        width: 100%;
        max-width: 100%;
        min-width: unset;
    }

    .cta-section {
        padding: 60px 16px;
    }

    .cta-section__heading {
        font-size: 22px;
        line-height: 1.3;
    }

    .cta-section__button {
        width: 100%;
        min-width: unset;
        max-width: 262px;
    }

    .footer__container {
        padding: 0 16px;
    }

    .footer__cta {
        width: 100%;
        max-width: 100%;
    }
}

/* ===== RESPONSIVE: 375px ===== */
@media (max-width: 375px) {
    html, body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Override the 900px breakpoint's 420px !important */
    .hero,
    .products,
    .reviews,
    .expert,
    .cta-section,
    .footer {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
        box-sizing: border-box !important;
    }

    .hero__container {
        padding: 40px 16px 0;
    }

    .hero__container {
        padding: 32px 16px 0;
        width: 100%;
        max-width: 100%;
    }

    .hero__content {
        width: 100%;
        max-width: 100%;
    }

    .hero__heading-line1 {
        font-size: 24px;
    }

    .hero__heading-line2 {
        font-size: 22px;
    }

    .hero__heading {
        line-height: 30px;
    }

    .hero__subheading {
        font-size: 14px;
    }

    .hero__cta-text {
        font-size: 14px;
    }

    /* .hero__promise removed */

    .products {
        padding: 40px 12px;
    }

    .products__heading {
        font-size: 22px;
    }

    .reviews__heading {
        font-size: 20px;
        padding: 0 4px;
    }

    .expert__heading {
        font-size: 18px;
    }

    .products__tabs {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        max-width: 100%;
    }

    .products__tab {
        font-size: 16px;
        white-space: normal;
        word-wrap: break-word;
    }

    .products__panel {
        padding: 0;
    }

    .product-card {
        max-width: 100%;
    }

    .product-card__body {
        padding: 20px 12px;
    }

    .product-card__title {
        font-size: 20px;
        word-wrap: break-word;
    }

    .product-card__cta {
        width: 100%;
        white-space: normal;
        text-align: center;
    }

    .reviews {
        padding: 40px 12px;
    }

    .cta-section {
        padding: 60px 12px;
    }

    .cta-section__heading {
        font-size: 16px;
    }

    .cta-section__button {
        width: 100%;
        min-width: unset;
        max-width: 262px;
    }

    .expert__container {
        padding: 0 12px;
    }

    .expert__text {
        font-size: 13px;
    }

    .trustpilot-bar {
        width: 100%;
        max-width: 100%;
        padding: 12px 12px;
        box-sizing: border-box;
    }

    .trustpilot-bar__title {
        font-size: 12px;
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }

    .trustpilot-bar__row2 {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .trustpilot-bar__logo {
        margin-left: 0;
    }

    .trustpilot-bar__reviews {
        font-size: 14px;
    }

    .footer__container {
        padding: 0 12px;
    }
}

/* ===== SOMMERHUSPAKKE IMAGE FLIP ===== */
.product-card--image-left {
    flex-direction: row;
}
.product-card--image-left .product-card__image-wrap {
    border-radius: 8px 0 0 8px;
    order: -1;
}
.product-card--image-left .product-card__image {
    border-radius: 8px 0 0 8px;
}

/* ===== PRODUCT INLINE FORM VIEW ===== */
.product-form-view {
    display: none;
    background: #F6F4EF;
    border-radius: 8px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
}
.product-form-view.product-form-view--active {
    display: block;
    animation: formReveal 0.3s ease-out;
}
@keyframes formReveal {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.product-form-view__indicator {
    width: 60px;
    height: 5px;
    background: #5CC376;
    border-radius: 67px;
    margin: 0 auto;
    position: relative;
    top: -2px;
}
.product-form-view__content {
    display: flex;
    gap: 24px;
    padding: 32px 40px 40px;
}
.product-form-view__left {
    flex: 1 1 55%;
}
.product-form-view__right {
    flex: 0 0 35%;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 28px 24px;
}
.product-form-view__header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}
.product-form-view__avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.product-form-view__title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    line-height: 25px;
    color: #000;
    margin-bottom: 4px;
}
.product-form-view__subtitle {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #000;
}
.product-form-view__steps {
    display: flex;
    flex-direction: column;
    gap: 17px;
    margin-bottom: 24px;
}
.product-form-view__step {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    border: 1px solid #CCCCCC;
    border-radius: 50px;
    padding: 8px 20px 8px 8px;
}
.product-form-view__step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 49px;
    height: 49px;
    min-width: 49px;
    border: 3px solid #5CC376;
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: #000;
    background: #FFFFFF;
}
.product-form-view__step-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
    color: #000;
}
.product-form-view__guarantee {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 400;
    line-height: 16px;
    color: #000;
}
.product-form-view__field {
    margin-bottom: 12px;
}
.product-form-view__field label {
    display: block;
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    color: #000;
    margin-bottom: 4px;
}
.product-form-view__field input,
.product-form-view__field textarea {
    width: 100%;
    box-sizing: border-box;
    background: #FFFFFF;
    border: 1px solid #DADADA;
    border-radius: 5px;
    padding: 10px 12px;
    font-family: var(--font-display);
    font-size: 14px;
    color: #000;
}
.product-form-view__field textarea {
    resize: vertical;
}
.product-form-view__privacy {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 16px 0;
    font-family: var(--font-inter);
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    color: #000;
    cursor: pointer;
}
.product-form-view__privacy input[type="checkbox"] {
    margin-top: 2px;
    flex-shrink: 0;
}
.product-form-view__submit {
    width: 100%;
    background: #68E8AB;
    color: #070D3F;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    border: none;
    border-radius: 38px;
    padding: 14px;
    cursor: pointer;
    transition: opacity 0.2s;
}
.product-form-view__submit:hover {
    opacity: 0.9;
}
.product-form-view__form-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    line-height: 26px;
    color: #000;
    margin-bottom: 4px;
}
.product-form-view__form-subtitle {
    font-family: var(--font-inter);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #000;
    margin-bottom: 20px;
}
.product-form-view__input-wrap {
    position: relative;
}
.product-form-view__input-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.product-form-view__input-wrap input {
    padding-left: 36px;
}
#productFormMessage {
    margin-top: 12px;
}

/* Mobile responsive for form view */
@media (max-width: 768px) {
    .product-form-view__content {
        flex-direction: column;
        padding: 24px 16px 32px;
    }
    .product-form-view__left,
    .product-form-view__right {
        flex: 1 1 100%;
    }
    .product-card--image-left {
        flex-direction: column;
    }
    .product-card--image-left .product-card__image-wrap {
        border-radius: 8px 8px 0 0;
        order: 0;
    }
}
