/* ============================================================
   THEMA V2 — Sprint Template
   SUE Behavioural Design — nieuw thema-template (april 2026)

   Laad na sitewide-nav.css + voor-template.css (voor footer).
   Overrides conflict op basis van cascade volgorde.
   ============================================================ */

:root {
    --coral: #FF5A5F;
    --coral-light: #FFB7B9;
    --coral-lighter: #FFE5E5;
    --black: #1a1a1a;
    --dark-gray: #797979;
    --light-gray: #F2F2F2;
    --white: #FFFFFF;
    --green: #2E7D32;
    --card-radius: 12px;
    --btn-radius: 4px;
    --text: #2c2c2c;
    --text-muted: #888;
    --t2-max: 1100px;
}

/* ============================
   BASE
   ============================ */

*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin: 0;
}

img { display: block; max-width: 100%; }

.t2-container {
    max-width: var(--t2-max);
    margin: 0 auto;
    padding: 0 32px;
}

/* ============================
   TYPOGRAPHY UTILITIES
   ============================ */

.overline {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--coral);
    margin-bottom: 1rem;
}

.highlight {
    background: linear-gradient(180deg, transparent 55%, var(--coral-lighter) 55%);
    padding: 0 0.2rem;
}

/* ============================
   BUTTONS
   ============================ */

.t2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 14px 32px;
    border: none;
    border-radius: var(--btn-radius);
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}

.t2-btn-primary {
    background: var(--coral);
    color: var(--white);
}
.t2-btn-primary:hover {
    background: #e54e53;
    box-shadow: 0 4px 16px rgba(255, 90, 95, 0.3);
    transform: translateY(-1px);
}

.t2-btn-outline {
    background: transparent;
    color: var(--black);
    border: 1.5px solid rgba(0, 0, 0, 0.25);
}
.t2-btn-outline:hover {
    border-color: var(--black);
    color: var(--black);
}

.t2-btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
}
.t2-btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

/* ============================
   SCROLL FADE-IN
   ============================ */

.fade-in {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================
   HERO
   ============================ */

.thema-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 88vh;
    padding-top: 72px; /* compensate for fixed nav */
}

.thema-hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 64px 72px max(24px, calc((100vw - var(--t2-max)) / 2));
    background: var(--white);
}

.thema-hero-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--coral);
    margin-bottom: 1.25rem;
    display: block;
}

.thema-hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--black);
    margin: 0 0 1.5rem;
    max-width: 500px;
}

.thema-hero-sub {
    font-family: Georgia, serif;
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--dark-gray);
    max-width: 440px;
    margin-bottom: 2.5rem;
}

.thema-hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.thema-hero-photo {
    position: relative;
    overflow: hidden;
    background: #e8e8e8;
}

.thema-hero-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================
   RECOGNITION SECTION
   ============================ */

.recognition-section {
    background: var(--light-gray);
    padding: 96px 0;
}

.recognition-intro {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--dark-gray);
    margin-bottom: 2.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.recognition-intro strong {
    color: var(--black);
}

.recognition-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 4rem;
}

.recognition-item {
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    font-family: Georgia, serif;
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--black);
    line-height: 1.5;
    transition: color 0.2s;
    cursor: default;
}
.recognition-item:hover {
    color: var(--coral);
}

.recognition-num {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--coral);
    min-width: 1.75rem;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}

/* ============================
   CASES SECTION
   ============================ */

.cases-section {
    background: var(--white);
    padding: 96px 0;
}

.cases-header {
    margin-bottom: 3.5rem;
}

.cases-header h2 {
    font-family: Georgia, serif;
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
    font-weight: 400;
    color: var(--black);
    margin: 0.5rem 0 0.75rem;
    max-width: 560px;
    line-height: 1.25;
}

.cases-header p {
    font-family: Georgia, serif;
    font-size: 1.05rem;
    color: var(--dark-gray);
    max-width: 520px;
    line-height: 1.7;
    margin: 0;
}

.case-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.case-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
}

.case-card:nth-child(even) .case-photo { order: 2; }
.case-card:nth-child(even) .case-content { order: 1; }

.case-photo {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    background: var(--light-gray);
}

.case-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}
.case-card:hover .case-photo img {
    transform: scale(1.04);
}

.case-content {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

.case-sector {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--coral);
    margin-bottom: 0.75rem;
}

.case-content h3 {
    font-family: Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--black);
    margin: 0 0 1rem;
    line-height: 1.4;
}

.case-content p {
    font-family: Georgia, serif;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--dark-gray);
    margin: 0 0 1.5rem;
}

.case-result {
    background: #f8f8f8;
    border-left: 3px solid var(--coral);
    padding: 0.9rem 1.25rem;
    border-radius: 0 8px 8px 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--black);
    line-height: 1.5;
}

/* ============================
   SPRINT SECTION
   ============================ */

.sprint-section {
    background: #faf6f1;
    padding: 96px 0;
}

.sprint-section .sprint-header {
    margin-bottom: 3rem;
}

.sprint-section .sprint-header h2 {
    font-family: Georgia, serif;
    font-size: clamp(1.7rem, 2.8vw, 2.2rem);
    font-weight: 400;
    color: var(--black);
    margin: 0.5rem 0 0.75rem;
    line-height: 1.25;
    max-width: 560px;
}

.sprint-section .sprint-header p {
    font-family: Georgia, serif;
    font-size: 1.05rem;
    color: var(--dark-gray);
    max-width: 520px;
    line-height: 1.7;
    margin: 0;
}

.sprint-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.sprint-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    position: relative;
}

.sprint-card--primary {
    border-color: var(--coral);
    border-width: 2px;
}

.sprint-card-badge {
    position: absolute;
    top: -13px;
    left: 2rem;
    background: var(--coral);
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 20px;
}

.sprint-card-type {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--coral);
    margin-bottom: 0.5rem;
}

.sprint-card h3 {
    font-family: Georgia, serif;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--black);
    margin: 0 0 1rem;
    line-height: 1.35;
}

.sprint-card p {
    font-family: Georgia, serif;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.sprint-card-meta {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.sprint-card-meta-item {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--dark-gray);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.sprint-card-meta-item::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--coral);
    flex-shrink: 0;
    position: relative;
    top: -2px;
}

.sprint-card-price {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

/* ============================
   QUOTE SECTION
   ============================ */

.quote-section {
    background: var(--white);
    padding: 96px 0;
}

.quote-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 32px;
    text-align: center;
}

.quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 0.5;
    color: var(--coral-lighter);
    display: block;
    margin-bottom: 1.5rem;
}

.quote-text {
    font-family: Georgia, serif;
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    font-weight: 400;
    color: var(--black);
    line-height: 1.55;
    margin: 0 0 2rem;
}

.quote-attr strong {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.2rem;
}

.quote-attr span {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--dark-gray);
}

/* ============================
   FAQ
   ============================ */

.thema-faq {
    background: #f8f8f8;
    padding: 96px 0;
}

.faq-inner {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 32px;
}

.faq-inner .faq-header {
    margin-bottom: 2.5rem;
}

.faq-inner .faq-header h2 {
    font-family: Georgia, serif;
    font-size: clamp(1.5rem, 2.2vw, 1.9rem);
    font-weight: 400;
    color: var(--black);
    margin: 0.5rem 0 0;
}

.thema-faq .faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
}

.thema-faq .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.4rem 0;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    line-height: 1.4;
}

.thema-faq .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--coral);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.thema-faq .faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.thema-faq .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.thema-faq .faq-item.open .faq-answer {
    max-height: 500px;
}

.thema-faq .faq-answer-inner {
    padding: 0 0 1.5rem;
    font-family: Georgia, serif;
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--dark-gray);
}

/* ============================
   CLOSING CTA
   ============================ */

.thema-closing {
    background: var(--black);
    padding: 96px 0;
    text-align: center;
}

.thema-closing-inner {
    max-width: var(--t2-max);
    margin: 0 auto;
    padding: 0 32px;
}

.thema-closing h2 {
    font-family: Georgia, serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--white);
    margin: 0.5rem auto 1rem;
    max-width: 580px;
    line-height: 1.25;
}

.thema-closing p {
    font-family: Georgia, serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 auto 2.5rem;
    max-width: 460px;
    line-height: 1.7;
}

.thema-closing-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

/* ============================
   STICKY BAR
   ============================ */

.thema-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 0.85rem 2rem;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.07);
}

.thema-sticky.visible {
    transform: translateY(0);
}

.thema-sticky-inner {
    max-width: var(--t2-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.thema-sticky-text {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--black);
}

.thema-sticky-text span {
    font-weight: 400;
    color: var(--dark-gray);
}

/* ============================
   RESPONSIVE — 900px
   ============================ */

@media (max-width: 900px) {
    .thema-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .thema-hero-text {
        padding: 60px 24px 48px;
        max-width: none;
    }

    .thema-hero h1 {
        max-width: none;
    }

    .thema-hero-sub {
        max-width: none;
    }

    .thema-hero-photo {
        min-height: 280px;
        position: relative;
    }

    .thema-hero-photo img {
        position: relative;
        inset: auto;
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    .case-card {
        grid-template-columns: 1fr;
    }

    .case-card:nth-child(even) .case-photo,
    .case-card:nth-child(even) .case-content {
        order: 0;
    }

    .case-photo {
        min-height: 240px;
    }

    .case-content {
        padding: 2rem;
    }

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

    .thema-sticky-inner {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
}

/* ============================
   RESPONSIVE — 600px
   ============================ */

@media (max-width: 600px) {
    .recognition-section,
    .cases-section,
    .sprint-section,
    .quote-section,
    .thema-faq,
    .thema-closing {
        padding: 64px 0;
    }

    .thema-hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }

    .thema-hero-ctas .t2-btn {
        width: 100%;
        justify-content: center;
    }

    .recognition-list {
        grid-template-columns: 1fr;
    }
    .recognition-item {
        font-size: 1rem;
        gap: 1rem;
    }

    .case-content {
        padding: 1.5rem;
    }

    .sprint-card {
        padding: 1.75rem;
    }

    .quote-text {
        font-size: 1.2rem;
    }

    .thema-closing h2 {
        font-size: 1.6rem;
    }

    .thema-closing-ctas {
        flex-direction: column;
        align-items: center;
    }

    .thema-closing-ctas .t2-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   THEMA V2 — DTG-stijl uitbreidingen (mei 2026)
   Full-bleed hero, case feature, drie product-tiers, big quote
   ============================================================ */

/* ============================
   FULL-BLEED HERO
   ============================ */

.thema-hero-fullbleed {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: flex-end;
    padding-top: 72px;
    overflow: hidden;
}

.thema-hero-fullbleed-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.thema-hero-fullbleed-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.thema-hero-fullbleed-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.45) 45%,
        rgba(0, 0, 0, 0.15) 100%
    );
}

.thema-hero-fullbleed-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--t2-max);
    margin: 0 auto;
    padding: 80px 32px 96px;
}

.thema-hero-fullbleed-content .thema-hero-label {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.25rem;
}

.thema-hero-fullbleed-content h1 {
    font-family: Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--white);
    max-width: 820px;
    margin: 0 0 1.5rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.thema-hero-fullbleed-content .thema-hero-sub {
    font-family: 'Open Sans', sans-serif;
    font-size: clamp(0.9rem, 1.3vw, 1.05rem);
    font-weight: 500;
    line-height: 1.7;
    color: var(--white);
    max-width: 580px;
    margin: 0 0 2.25rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.thema-hero-fullbleed-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

/* ============================
   CASE FEATURE — 60/40 groot
   ============================ */

.case-feature {
    display: grid;
    grid-template-columns: 1.65fr 1fr;
    min-height: 580px;
}

.case-feature-photo {
    position: relative;
    overflow: hidden;
    background: var(--light-gray);
}

.case-feature-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.case-feature:hover .case-feature-photo img {
    transform: scale(1.03);
}

.case-feature-content {
    background: #faf6f1;
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.case-feature-client {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.case-feature-client-name {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--dark-gray);
}

.case-feature-sector {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.72rem;
    color: var(--coral);
    font-weight: 600;
}

.case-feature-content h2 {
    font-family: Georgia, serif;
    font-size: clamp(1.3rem, 2vw, 1.65rem);
    font-weight: 400;
    color: var(--black);
    line-height: 1.4;
    margin: 0 0 1.25rem;
}

.case-feature-content p {
    font-family: Georgia, serif;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--dark-gray);
    margin: 0 0 1.5rem;
}

.case-feature-quote {
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--coral);
    background: var(--light-gray);
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--black);
}
.case-feature-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--dark-gray);
    letter-spacing: 0.03em;
}

.case-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--coral);
    padding: 0.5rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* ============================
   PRODUCT TIERS — 3 kolommen
   ============================ */

.producten-section {
    background: var(--white);
    padding: 100px 0;
}

.producten-header {
    margin-bottom: 3rem;
}

.producten-header h2 {
    font-family: Georgia, serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--black);
    margin: 0.5rem 0 0.75rem;
    max-width: 600px;
    line-height: 1.25;
}

.producten-header p {
    font-family: Georgia, serif;
    font-size: 1.05rem;
    color: var(--dark-gray);
    max-width: 520px;
    line-height: 1.7;
    margin: 0;
}

.product-tier-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    overflow: visible;
    margin-top: 20px; /* ruimte voor badge */
}

/* border-radius op hoekkaarten zodat de grid-rand goed afrondt zonder overflow:hidden */
.product-tier:first-child {
    border-radius: 14px 0 0 14px;
}
.product-tier:last-child {
    border-radius: 0 14px 14px 0;
}

.product-tier {
    padding: 2.75rem;
    display: flex;
    flex-direction: column;
    border-right: 1.5px solid rgba(0, 0, 0, 0.08);
    position: relative;
    background: var(--white);
    transition: background 0.2s;
}

.product-tier:last-child {
    border-right: none;
}

.product-tier--featured {
    background: #faf6f1;
}

.product-tier-badge {
    position: absolute;
    top: -13px;
    left: 2rem;
    background: var(--coral);
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 14px;
    border-radius: 20px;
}

.product-tier-type {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--coral);
    margin-bottom: 0.5rem;
}

.product-tier h3 {
    font-family: Georgia, serif;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--black);
    margin: 0 0 1rem;
    line-height: 1.3;
}

.product-tier-tagline {
    font-family: Georgia, serif;
    font-size: 0.95rem;
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.65;
    margin: 0 0 1.5rem;
    flex-grow: 1;
}

.product-tier-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding-top: 1.25rem;
}

.product-tier-includes li {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--dark-gray);
    padding: 0.3rem 0;
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    line-height: 1.45;
}

.product-tier-includes li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--coral);
    flex-shrink: 0;
    position: relative;
    top: -1px;
}

/* 4-stappen proces in de Sprint card */
.product-tier-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding-top: 1.25rem;
    counter-reset: step-counter;
}

.product-tier-steps li {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--dark-gray);
    padding: 0.55rem 0 0.55rem 2.1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    line-height: 1.45;
    counter-increment: step-counter;
}

.product-tier-steps li:last-child {
    border-bottom: none;
}

.product-tier-steps li::before {
    content: counter(step-counter);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--coral);
    background: var(--coral-lighter);
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0.55rem;
}

.product-tier-steps .step-label {
    display: block;
    font-weight: 700;
    color: var(--black);
    font-size: 0.75rem;
    margin-bottom: 0.1rem;
}

.product-tier-steps .step-desc {
    display: block;
    line-height: 1.5;
}

.product-tier-price {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.25rem;
}

.product-tier-price-note {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--dark-gray);
    margin-top: 0.2rem;
}

/* ============================
   BIG QUOTE
   ============================ */

.big-quote-section {
    background: var(--white);
    padding: 120px 0;
}

.big-quote-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 32px;
}

.big-quote-mark {
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 0.6;
    color: var(--coral);
    display: block;
    margin-bottom: 2rem;
    opacity: 0.7;
}

.big-quote-text {
    font-family: Georgia, serif;
    font-size: clamp(1.85rem, 3.8vw, 3rem);
    font-weight: 400;
    color: var(--black);
    line-height: 1.35;
    margin: 0 0 2.5rem;
}

.big-quote-attr {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.big-quote-attr-photo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: #eee;
}

.big-quote-attr-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.big-quote-attr-text strong {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.2rem;
}

.big-quote-attr-text span {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--dark-gray);
}

/* ============================
   RESPONSIVE — DTG uitbreidingen
   ============================ */

@media (max-width: 900px) {
    .thema-hero-fullbleed-content h1 {
        font-size: 2.2rem;
    }

    .case-feature {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .case-feature-photo {
        min-height: 280px;
        position: relative;
    }

    .case-feature-photo img {
        position: relative;
        inset: auto;
        width: 100%;
        height: 280px;
        object-fit: cover;
    }

    .case-feature-content {
        padding: 2.5rem 2rem;
    }

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

    .product-tier {
        border-right: none;
        border-bottom: 1.5px solid rgba(0, 0, 0, 0.08);
    }

    .product-tier:last-child {
        border-bottom: none;
    }

    .big-quote-text {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    .thema-hero-fullbleed {
        min-height: 85vh;
    }

    .thema-hero-fullbleed-content h1 {
        font-size: 1.85rem;
    }

    .thema-hero-fullbleed-ctas {
        flex-direction: column;
    }

    .thema-hero-fullbleed-ctas .t2-btn {
        width: 100%;
        justify-content: center;
    }

    .case-feature-content {
        padding: 2rem 1.5rem;
    }

    .product-tier {
        padding: 2rem;
    }

    .big-quote-text {
        font-size: 1.4rem;
    }
}

/* ════════════════════════════════════════════════════════════════
   BD LENS SECTION — Accordion met Influence Framework
   Achtergrond: #f5f5f3 (bg-framework per DESIGN.md)
   ════════════════════════════════════════════════════════════════ */

.bd-lens {
    background: #f5f5f3;
    padding: 5rem 2rem;
}

.bd-lens-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 440px 1fr;
    gap: 5rem;
    align-items: start;
}

.bd-lens-left {
    position: sticky;
    top: 2rem;
}

/* .overline global class handles label styling */
.bd-lens-left h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 0;
}

.bd-lens-photo {
    margin-top: 1.25rem;
    border-radius: var(--card-radius);
    overflow: hidden;
}

.bd-lens-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.bd-lens-caption {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-top: 0.85rem;
}

.bd-lens-item {
    border-top: 1px solid rgba(0,0,0,0.08);
    cursor: pointer;
}

.bd-lens-item:last-child {
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.bd-lens-trigger {
    display: grid;
    grid-template-columns: 36px 1fr 24px;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 0;
    user-select: none;
}

.bd-lens-num {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--coral);
}

.bd-lens-question {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--black);
    transition: color 0.2s ease;
}

.bd-lens-item.open .bd-lens-question {
    color: var(--coral);
}

.bd-lens-if-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--coral);
    white-space: nowrap;
}

.bd-lens-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
    font-family: 'Open Sans', sans-serif;
}

.bd-lens-item.open .bd-lens-icon {
    background: var(--coral);
    border-color: var(--coral);
}

.bd-lens-icon::before {
    content: '+';
    font-size: 0.85rem;
    color: #666;
    font-weight: 300;
    line-height: 1;
}

.bd-lens-item.open .bd-lens-icon::before {
    content: '−';
    color: white;
}

.bd-lens-body {
    display: none;
    padding: 0 0 1.25rem 2.25rem;
    font-size: 0.93rem;
    line-height: 1.75;
    color: var(--dark-gray);
}

.bd-lens-item.open .bd-lens-body {
    display: block;
}

@media (max-width: 860px) {
    .bd-lens-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .bd-lens-left {
        position: static;
    }
}


/* ════════════════════════════════════════════════════════════════
   STACKED PRODUCT BLOCKS — Variant A (editorial rows)
   Achtergrond: wit — alterneert correct na bd-lens (warm)
   ════════════════════════════════════════════════════════════════ */

.va-wrap {
    background: var(--white);
}

.va-header {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5rem 2rem 3.5rem;
}

/* .overline global class handles the label */
.va-header h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--black);
    max-width: 640px;
    margin-bottom: 1rem;
}

.va-header p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark-gray);
    max-width: 560px;
}

.va-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

.va-product.reverse { direction: rtl; }
.va-product.reverse > * { direction: ltr; }

.va-photo { overflow: hidden; }
.va-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.va-photo:hover img { transform: scale(1.03); }

.va-content {
    padding: 4rem 4rem 4rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--white);
}

/* Featured: lichtgrijs met koraal linksborder (bg-framework + coral accent) */
.va-product.featured .va-content {
    background: #f5f5f3;
    border-left: 4px solid var(--coral);
}

.va-badge {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    background: var(--coral);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 50px;
    margin-bottom: 1.25rem;
    width: fit-content;
}

.va-tag {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.va-title {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 1rem;
}

.va-tagline {
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 1.75rem;
}

.va-steps {
    list-style: none;
    margin-bottom: 2rem;
    counter-reset: step;
}

.va-steps li {
    display: flex;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--dark-gray);
    counter-increment: step;
}

.va-steps li::before {
    content: counter(step);
    min-width: 1.4rem;
    height: 1.4rem;
    background: var(--coral-lighter);
    color: var(--coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.step-l { display: block; font-weight: 600; color: var(--black); font-size: 0.88rem; }
.step-d { display: block; font-size: 0.85rem; color: var(--dark-gray); }

.va-includes {
    list-style: none;
    margin-bottom: 2rem;
}
.va-includes li {
    padding: 0.4rem 0 0.4rem 1.25rem;
    position: relative;
    font-size: 0.9rem;
    color: var(--dark-gray);
    line-height: 1.5;
}
.va-includes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--coral);
    font-size: 0.8rem;
}

.va-price {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 0.3rem;
}

.va-price-note {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 1.75rem;
}

@media (max-width: 800px) {
    .va-product { grid-template-columns: 1fr; min-height: auto; }
    .va-product.reverse { direction: ltr; }
    .va-photo { height: 280px; }
    .va-content { padding: 2.5rem 1.5rem; }
    .va-header { padding: 3rem 1.5rem 2rem; }
}


/* ════════════════════════════════════════════════════════════════
   CONTACT BLOCK — Marjan Krom + Calendly
   ════════════════════════════════════════════════════════════════ */

.contact-block {
    display: grid;
    grid-template-columns: 380px 1fr;
    min-height: 520px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

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

.contact-person img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.contact-person-info {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, transparent 100%);
    padding: 2rem 1.75rem 1.75rem;
    color: white;
    font-family: 'Open Sans', sans-serif;
}

.contact-person-info strong {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.contact-person-info span {
    display: block;
    font-size: 0.82rem;
    opacity: 0.82;
    margin-bottom: 1rem;
}

.contact-person-info a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 0.35rem;
    opacity: 0.88;
}

.contact-person-info a:hover { opacity: 1; text-decoration: underline; }

.contact-calendly {
    background: var(--white);
    padding: 4rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Overline class handles the label — use it in HTML */
.contact-calendly-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1rem;
}

.contact-calendly h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.contact-calendly p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    max-width: 480px;
}

.calendly-placeholder {
    background: #f5f5f3;
    border: 2px dashed rgba(0,0,0,0.10);
    border-radius: var(--card-radius);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
}

@media (max-width: 800px) {
    .contact-block { grid-template-columns: 1fr; }
    .contact-person { height: 300px; }
    .contact-calendly { padding: 2rem 1.5rem; }
}

/* ════════════════════════════════════════════════════════════════
   BD THREE — Drie-koloms uitleg sectie
   Vervangt BD Lens accordion. Achtergrond: #f5f5f3 (bg-framework)
   ════════════════════════════════════════════════════════════════ */

.bd-three {
    background: #f5f5f3;
    padding: 7rem 2rem;
}

.bd-three-inner {
    max-width: 1100px;
    margin: 0 auto;
}

/* Header: centrale vraag als display-headline */
.bd-three-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 4.5rem;
}

.bd-three-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 1.5rem;
}

.bd-three-eyebrow::before,
.bd-three-eyebrow::after {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: var(--coral);
    opacity: 0.45;
}

.bd-three-question {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.bd-three-intro {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--dark-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Drie kaarten */
.bd-three-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.bd-three-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 2.25rem 2rem 2.5rem;
}

.bd-three-num {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--coral);
    opacity: 0.18;
    line-height: 1;
    margin-bottom: 1.25rem;
}

.bd-three-card h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.45;
    color: var(--black);
    margin-bottom: 1rem;
}

.bd-three-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

@media (max-width: 860px) {
    .bd-three-cards { grid-template-columns: 1fr; }
    .bd-three-question { font-size: 1.8rem; }
}

/* ════════════════════════════════════════════════════════════════
   WHY SUE — Drie quote-kaarten + klantenlogo's
   Achtergrond: #f5f5f3 — alterneert correct na witte sprint-sectie
   ════════════════════════════════════════════════════════════════ */

.why-sue {
    background: #f5f5f3;
    padding: 7rem 2rem;
}
.why-sue-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.why-sue-header {
    text-align: center;
    margin-bottom: 4rem;
}
.why-sue-header h2 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 400;
    line-height: 1.3;
    color: var(--black);
    margin-top: 0.5rem;
}

/* Quote-kaarten */
.why-sue-quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}
.why-sue-card {
    background: var(--white);
    border-radius: var(--card-radius);
    padding: 2rem 1.75rem 2.25rem;
    display: flex;
    flex-direction: column;
}
.why-sue-card-mark {
    font-family: Georgia, serif;
    font-size: 2.5rem;
    line-height: 0.8;
    color: var(--coral);
    opacity: 0.35;
    margin-bottom: 1rem;
    display: block;
}
.why-sue-card-text {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--black);
    flex: 1;
    margin-bottom: 1.5rem;
}
.why-sue-card-attr {
    border-top: 1px solid rgba(0,0,0,0.08);
    padding-top: 1rem;
}
.why-sue-card-attr strong {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.83rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.2rem;
}
.why-sue-card-attr span {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.78rem;
    color: var(--dark-gray);
}
.why-sue-card.placeholder {
    background: rgba(255,255,255,0.45);
    border: 2px dashed rgba(0,0,0,0.1);
    align-items: center;
    justify-content: center;
    min-height: 200px;
    text-align: center;
}
.why-sue-card.placeholder p {
    font-family: 'Open Sans', sans-serif;
    font-size: 0.82rem;
    color: var(--dark-gray);
    opacity: 0.6;
}

/* Logo-rij */
.why-sue-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.why-sue-logo {
    height: 26px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.4;
    transition: opacity 0.2s ease;
}
.why-sue-logo:hover { opacity: 0.65; }

@media (max-width: 860px) {
    .why-sue-quotes { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════
   CONTACT SECTION — Standalone Marjan-block (was in va-wrap)
   Achtergrond: wit — na warme why-sue sectie
   ════════════════════════════════════════════════════════════════ */

.contact-section {
    background: var(--white);
    padding: 0 2rem 1rem;
}
.contact-section > .contact-block {
    max-width: 1100px;
    margin: 0 auto;
}
