:root {
    --ink: #1c1c1c;
    --gold: #C6B069;
    --soft-gold: #e6d8a5;
    --bg-light: #faf9f5;
    --lavender: #e9e6f7;
    --radius: 14px;
}

h1, h2, h3 {
    line-height: 1.25;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.container.narrow { max-width: 760px; }
.center { text-align: center; }
.mt-2 { margin-top: 2rem; }

/* ============================================================
   SECTION 1 — INTRO
   ============================================================ */

.intro {
    padding: 4rem 20px 3rem;
    text-align: center;
}

.intro__title {
    font-size: clamp(1.8rem, 5vw, 2.6rem);
    margin-bottom: 1.2rem;
}

.intro__text {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    opacity: 0.85;
    margin: 0 auto;
    max-width: 600px;
}

.intro__actions {
    margin-top: 2rem;
}

.link-btn {
    font-weight: 500;
    color: var(--ink);
    padding-bottom: 3px;
    margin: 0 1rem;
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    transition: opacity 0.25s;
    text-align: center;
}

.link-btn:hover { opacity: 0.6; }

.subtle-link { font-size: 0.95rem; opacity: 0.7; }
.subtle-link:hover { opacity: 1; }

@media (min-width: 768px) {
    .intro {
        padding: 7rem 0 5rem;
    }
}

/* ============================================================
   SECTION 2 — QUOTE / TESTIMONIALS
   Mobile: stacked → lg: side by side
   ============================================================ */

.section-quote {
    padding: 3rem 20px 4rem;
    background: var(--bg-light);
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.quote-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem 0;
}

.quote-text h2 {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    margin-bottom: 1.5rem;
}

.quote-text p {
    opacity: 0.85;
    margin: 0 0 1rem;
    text-align: center;
    line-height: 1.7;
}

.quote-text p:last-of-type { margin-bottom: 2rem; }
.quote-text .link-btn { margin: 0; }

@media (min-width: 1024px) {
    .section-quote {
        padding: 3rem 2rem 5rem;
    }

    .quote-grid {
        grid-template-columns: 1fr 1.3fr;
        padding: 0 2rem;
    }

    .quote-text {
        padding-top: 4rem;
        padding-bottom: 3rem;
        min-height: 500px;
    }
}

/* ── Testimonial carousel ── */
.testimonial-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
    cursor: grab;
}

.testimonial-carousel.is-dragging {
    cursor: grabbing;
    user-select: none;
    -webkit-user-select: none;
}

/* Gradient fades hidden on mobile — arrows overlay instead */
.testimonial-carousel::before,
.testimonial-carousel::after {
    display: none;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none;
}

.testimonial-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-light), transparent);
}

.testimonial-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-light), transparent);
}

.testimonial-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
    transform: translateX(0);
}

/* Mobile: full-width cards, arrows overlay on card edges */
.testimonial-slide {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 0;
    padding: 2.5rem 16px 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 1.2rem;
    background: url("../images/two_tress_in_forest.fa3a52c5d199.jpg") center/cover;
    border-radius: var(--radius);
    box-sizing: border-box;
    position: relative;
}

.testimonial-header {
    background: white;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-header h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-header p {
    margin: 0.2rem 0 0;
    font-size: 0.88rem;
    opacity: 0.7;
}

/* Logo: in-flow on mobile so it isn't clipped by overflow:hidden */
.testimonial-logo {
    width: 44px;
    height: 44px;
    position: static;
    bottom: auto;
    left: auto;
    transform: none;
    z-index: 2;
    border-radius: 50%;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    display: block;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
}

.testimonial-card p {
    margin: 0 0 1rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

.testimonial-card p:last-child { margin-bottom: 0; }

/* Per-person logo colours */
.testimonial-slide:nth-child(1) .testimonial-logo { background: #EB9A99; }
.testimonial-slide:nth-child(2) .testimonial-logo { background: #EBC38B; }
.testimonial-slide:nth-child(3) .testimonial-logo { background: #EBE871; }
.testimonial-slide:nth-child(4) .testimonial-logo { background: #C4EAC4; }
.testimonial-slide:nth-child(5) .testimonial-logo { background: #B6EAE9; }
.testimonial-slide:nth-child(6) .testimonial-logo { background: #A8C3E9; }
.testimonial-slide:nth-child(7) .testimonial-logo { background: #C3B7E6; }

/* Arrows overlay on card edges — same pattern as neurochild author banner */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: #fff;
    transition: background 0.25s, transform 0.25s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.testimonial-nav:hover {
    background: rgba(180, 140, 20, 0.95);
    transform: translateY(-50%) scale(1.08);
}

.testimonial-nav.prev { left: 6px; }
.testimonial-nav.next { right: 6px; }

.testimonial-dots {
    text-align: center;
    margin-top: 1.5rem;
}

.testimonial-dots div {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-dots .active { background: var(--gold); }

/* md+ : side-gap layout, gradient fades, larger buttons */
@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        display: block;
        width: 60px;
    }

    .testimonial-slide {
        min-width: calc(100% - 100px);
        max-width: calc(100% - 100px);
        padding: 4rem 2rem 3rem;
        min-height: 500px;
        gap: 2rem;
        justify-content: center;
    }

    .testimonial-logo {
        position: absolute;
        bottom: -25px;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        padding: 8px;
        margin: 0;
    }

    .testimonial-card {
        margin-bottom: 1.5rem;
    }

    .testimonial-nav {
        width: 46px;
        height: 46px;
        font-size: 1.5rem;
        background: white;
        border: 2px solid var(--gold);
        color: var(--ink);
        backdrop-filter: none;
    }

    .testimonial-nav:hover {
        background: var(--gold);
        color: var(--ink);
    }

    .testimonial-nav.prev { left: 6px; }
    .testimonial-nav.next { right: 6px; }
}

/* ============================================================
   SECTION DIVIDER
   ============================================================ */

.section-divider {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
    margin: -40px 0;
}

.section-divider__line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #d4af37 40%, #d4af37 60%, transparent);
}

.section-divider__icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    padding: 16px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid #d4af37;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
    margin: 0 2rem;
}

.section-divider--line-only { margin: -1px 0; }

/* ============================================================
   SECTION 3 — LEAD TEXT
   ============================================================ */

.section-text {
    padding: 4rem 20px;
    text-align: center;
    background: #f9f7f2;
}

.lead {
    font-size: clamp(1.1rem, 2.2vw, 1.6rem);
    font-weight: 600;
    line-height: 1.75;
    color: #1a1a1a;
    margin-bottom: 1.6rem;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .section-text {
        padding: 6rem 2rem;
    }
}

/* ============================================================
   SECTION 4 — AUDIENCE CARDS
   Mobile: 1 col → md: 2 col → lg: 3 col
   ============================================================ */

.audience {
    padding: 4rem 20px;
}

.audience__header {
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: center;
}

.audience__header h2 {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    margin-bottom: 1rem;
}

.audience__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: stretch;
    max-width: 1400px;
    margin: 0 auto;
}

.card {
    background: white;
    padding: 3.5rem 1.5rem 2rem;
    border: 1px solid #eee;
    border-radius: var(--radius);
    transition: box-shadow 0.3s, border 0.3s;
    position: relative;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card h3 { text-align: center; }

.card:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.card-icon {
    position: absolute;
    top: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 2px solid var(--gold);
    border-radius: 50%;
    padding: 0.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.card > p {
    text-align: center;
    font-size: 0.95rem;
    opacity: 0.75;
    margin-bottom: 2rem;
    padding: 0.5rem 1rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.card ul {
    padding: 0;
    list-style: none;
    width: 100%;
    margin: 0;
    text-align: left;
}

.card li {
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.card li:last-child { margin-bottom: 0; }

.dot-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
    transition: transform 0.2s ease, filter 0.2s ease;
}

.card li span { flex: 1; min-width: 0; }

.card a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1.5px solid var(--gold);
    transition: opacity 0.2s;
    font-weight: 500;
}

.card a:hover { opacity: 0.7; }

@media (min-width: 768px) {
    .audience {
        padding: 6rem 20px;
    }

    .audience__header {
        margin-bottom: 3rem;
    }

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

@media (min-width: 1024px) {
    .audience {
        padding: 6rem 0;
    }

    .audience__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .card {
        padding: 4rem 2.5rem 2.5rem;
        margin-top: 2rem;
    }
}

/* ============================================================
   SECTION 5 — PARTNERS / COMMUNITY
   Mobile: stacked → lg: side by side
   ============================================================ */

.partners {
    background: #f6f4ed;
    border-top: 3px solid #d4af37;
    padding: 4rem 20px;
}

.partners .container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.partners__label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d4af37;
    margin: 0 0 10px;
}

.partners__heading {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--dark);
    margin: 0 0 1.5rem;
    line-height: 1.15;
}

.partners__content p {
    margin-bottom: 1.3rem;
}

.partners__actions {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.partners__cta {
    display: inline-block;
    padding: 14px 24px;
    background: #d4af37;
    color: #fff;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.25s ease;
}

.partners__cta:hover,
.partners__cta:focus {
    background: #b8942d;
}

.partners__img {
    width: 100%;
}

.partners__img img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

@media (min-width: 1024px) {
    .partners {
        padding: 6rem 0;
    }

    .partners .container {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .partners__content p {
        max-width: 550px;
    }

    .partners__img {
        flex: 0 0 480px;
        width: 480px;
    }

    .partners__img img {
        height: 480px;
        max-height: unset;
    }
}

/* Partners section: left-align heading at desktop */
@media (min-width: 1024px) {
    .partners__heading {
        text-align: left;
    }
}


/* ============================================================
   PARTNERS LOGO SCROLL
   ============================================================ */

@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); }
}

.partners-logos {
    background: #fff;
    border-top: 1px solid #e7e7e9;
    border-bottom: 1px solid #e7e7e9;
    padding: 2rem 0;
}

.client-slider {
    height: 120px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.client-slider::before,
.client-slider::after {
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 120px;
    position: absolute;
    width: 100px;
    z-index: 2;
}

.client-slider::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

.client-slider::before {
    left: 0;
    top: 0;
}

.client-slider .client-slide-track {
    animation: scroll 36s linear infinite;
    display: flex;
    width: calc(360px * 18);
}

.client-slider .client-slide {
    height: 120px;
    width: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 30px;
    box-sizing: border-box;
}

.client-slider .client-slide img {
    width: 220px;
    height: 64px;
    object-fit: contain;
    transition: transform 0.3s;
}

.client-slider .client-slide:hover img { transform: scale(1.08); }

.client-slider .client-slide--findex {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
}

.client-slider:hover .client-slide-track {
    animation-play-state: paused;
}

@media (min-width: 768px) {
    .client-slider::before,
    .client-slider::after {
        width: 200px;
    }
}

/* ============================================================
   THEME HEADING
   ============================================================ */

.theme-heading {
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--dark);
    text-align: center;
    margin-bottom: 1.5rem;
}

.video-hero__subtitle.video-hero__subtitle--small {
    font-size: clamp(0.8rem, 1.8vw, 0.95rem);
    color: rgba(255, 255, 255, 0.75);
    margin-top: -1rem;
}

/* ============================================================
   TABLE OF CONTENTS
   Hidden on mobile, shown at lg+
   ============================================================ */

.toc-nav {
    display: none;
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 200;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10), 0 1px 4px rgba(0, 0, 0, 0.06);
    flex-direction: column;
    gap: 2px;
    min-width: 130px;
}

@media (min-width: 1100px) {
    .toc-nav {
        display: flex;
    }
}

.toc-nav__title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #b8942d;
    padding: 0 8px 8px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 4px;
}

.toc-dot {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 7px 8px;
    border-radius: 8px;
    border-left: 2px solid transparent;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    color: #6a6a6a;
    outline-offset: 3px;
}

.toc-dot:hover {
    background: rgba(212, 175, 55, 0.08);
    color: #2c2c25;
}

.toc-dot:focus-visible {
    outline: 2px solid #d4af37;
    background: rgba(212, 175, 55, 0.08);
}

.toc-dot.active {
    border-left-color: #d4af37;
    color: #2c2c25;
    background: rgba(212, 175, 55, 0.06);
}

.toc-dot__pip {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    background: transparent;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.toc-dot:hover .toc-dot__pip {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.35);
}

.toc-dot.active .toc-dot__pip {
    background: #d4af37;
    border-color: #d4af37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.toc-dot__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.toc-dot.active .toc-dot__label { font-weight: 700; }

/* ============================================================
   SECTION 3B — FIVE FINDINGS
   ============================================================ */

.findings-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--soft, #faf9f5);
}

.findings-section .lead { text-align: center; margin-bottom: 2.5rem; }

.findings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 3rem;
}

@media (min-width: 480px) { .findings-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .findings-grid { grid-template-columns: repeat(5, 1fr); } }

.finding-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border, #e7e7e9);
    border-top: 3px solid var(--gold, #d4af37);
    gap: 0.5rem;
}

.finding-card__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 2px 10px;
    border-radius: 20px;
}

.finding-card__label--more { background: rgba(212,175,55,0.15); color: #8a6c00; }
.finding-card__label--less { background: rgba(168,58,42,0.1); color: #a83a2a; }

.finding-card__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark, #2c2c25);
}

.findings-table {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border, #e7e7e9);
    margin-bottom: 3rem;
}

.findings-table__row {
    display: grid;
    grid-template-columns: 1fr;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border, #e7e7e9);
    gap: 0.5rem;
}

.findings-table__row:last-child { border-bottom: none; }
.findings-table__row:nth-child(odd) { background: #fff; }
.findings-table__row:nth-child(even) { background: var(--soft, #faf9f5); }

@media (min-width: 768px) {
    .findings-table__row {
        grid-template-columns: 220px 1fr;
        align-items: center;
        gap: 1.5rem;
    }
}

.findings-table__term {
    font-weight: 700;
    color: var(--dark, #2c2c25);
    font-size: 0.95rem;
}

.findings-table__def {
    color: var(--muted, #6e6d7a);
    font-size: 0.95rem;
    line-height: 1.6;
}

.findings-quote {
    text-align: center;
    font-size: clamp(1.2rem, 3vw, 1.7rem);
    font-weight: 600;
    color: var(--dark, #2c2c25);
    font-style: italic;
    padding: 2rem clamp(2rem, 8vw, 6rem);
    margin: 0;
    position: relative;
}

.findings-quote::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--gold, #d4af37);
    position: absolute;
    top: -0.5rem;
    left: clamp(0.5rem, 4vw, 2rem);
    line-height: 1;
    font-style: normal;
    opacity: 0.6;
}

/* ============================================================
   SECTION 3C — WELLBEING BLUEPRINT
   ============================================================ */

.blueprint-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: #fff;
}

.blueprint-section__heading {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    color: var(--dark, #2c2c25);
    margin-bottom: 1.5rem;
}

.blueprint-section > .container > p {
    color: var(--muted, #6e6d7a);
    line-height: 1.8;
    margin-bottom: 1rem;
    max-width: 800px;
}

.wellbeing-table {
    margin-top: 2.5rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border, #e7e7e9);
}

.wellbeing-table__header {
    display: none;
}

@media (min-width: 768px) {
    .wellbeing-table__header {
        display: grid;
        grid-template-columns: 220px 1fr;
        background: var(--dark, #2c2c25);
        color: #fff;
        padding: 0.875rem 1.5rem;
        font-weight: 700;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }
}

.wellbeing-table__row {
    display: grid;
    grid-template-columns: 1fr;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    gap: 0.5rem;
}

.wellbeing-table__row:last-child { border-bottom: none; }

@media (min-width: 768px) {
    .wellbeing-table__row {
        grid-template-columns: 220px 1fr;
        align-items: center;
        gap: 1.5rem;
    }
}

.wellbeing-table__row--mental  { background: #fff0f3; }
.wellbeing-table__row--personal{ background: #fff4ee; }
.wellbeing-table__row--home    { background: #fffbeb; }
.wellbeing-table__row--social  { background: #f0faf0; }
.wellbeing-table__row--org     { background: #f0faf9; }
.wellbeing-table__row--eco     { background: #f0f4ff; }
.wellbeing-table__row--global  { background: #f5f0ff; }

.wellbeing-table__domain {
    font-weight: 700;
    color: var(--dark, #2c2c25);
    font-size: 0.95rem;
}

.wellbeing-table__dims {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.wellbeing-table__dims span {
    background: rgba(255,255,255,0.7);
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 0.875rem;
    color: var(--dark, #2c2c25);
}

/* ============================================================
   SECTION 3D — DIAGNOSING DIGITAL
   ============================================================ */

.data-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: var(--soft, #faf9f5);
}

.data-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 768px) {
    .data-split { flex-direction: row; align-items: center; gap: 4rem; }
    .data-split__img  { flex: 0 0 380px; }
    .data-split__text { flex: 1; }
}

.data-split__img img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.data-split__caption {
    font-size: 0.85rem;
    color: var(--muted, #6e6d7a);
    line-height: 1.6;
    margin-top: 1rem;
    font-style: italic;
}

.data-split__text h2 {
    font-size: clamp(1.4rem, 3.5vw, 2rem);
    color: var(--dark, #2c2c25);
    margin-bottom: 1rem;
}

.data-split__text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark, #2c2c25);
    margin: 1.5rem 0 0.5rem;
}

.data-split__text p {
    color: var(--muted, #6e6d7a);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}
