/* ========================================== */
/* KOMPASS WEBSITE STYLESHEET                */
/* Version: 2.1 - Reorganized & Optimized    */
/* Pure CSS - No preprocessor required       */
/* ========================================== */

/* ========================================== */
/* COMPONENT INDEX - Quick Navigation        */
/* ========================================== */
/*
SECTION 1: CSS RESET (line ~75)
SECTION 2: DESIGN TOKENS (line ~85)
SECTION 3: BASE STYLES (line ~235)
SECTION 4: GLOBAL LAYOUT (line ~270)

═══ GLOBAL COMPONENTS ═══
SECTION 5: BUTTONS (line ~300)
SECTION 6: CARDS (line ~345)
SECTION 7: ICON CIRCLES (line ~420)
SECTION 8: STEP NUMBERS (line ~440)

═══ COMPOSITE COMPONENTS ═══
SECTION 9: NAVBAR (line ~465)
SECTION 10: HERO SECTIONS (line ~685)
SECTION 11: SECTION HEADERS (line ~815)
SECTION 12: FOOTER (line ~870)

═══ PAGE-SPECIFIC COMPONENTS ═══
SECTION 13: HOME - APPROACH SECTION (line ~1035)
SECTION 14: HOME - ASSESSMENT CTA (line ~1160)
SECTION 15: SOLUTIONS PAGE (line ~1320)
SECTION 16: APPROACH PAGE (line ~1515)
SECTION 17: ABOUT PAGE (line ~1740)
SECTION 18: CONTACT PAGE (line ~2065)
SECTION 19: ASSESSMENT PAGE (line ~2240)
SECTION 20: QUESTIONNAIRE PAGE (line ~2480)
SECTION 21: ASSESSMENT COMPLETE PAGE (line ~2935)
SECTION 22: ASSESSMENT RESULTS PAGE (line ~3175)
SECTION 23: BOOK A CALL PAGE (line ~3740)
SECTION 24: SESSION CONFIRMED PAGE (line ~3845)
SECTION 25: FAQ PAGE (line ~3970)
SECTION 26: PRIVACY POLICY PAGE (line ~4130)
SECTION 27: TERMS OF SERVICE PAGE (line ~4405)
SECTION 28: COOKIE TABLES (line ~4665)
SECTION 29: PRINT STYLES (line ~4750)
*/

/* ========================================== */
/* DESKTOP GUTTER REMOVAL CONVENTION         */
/* ========================================== */
/* When removing side gutters at desktop:    */
/*   ALWAYS use: padding-inline: 0;          */
/*   NEVER use:  padding: 0 0 X;             */
/*                                           */
/* padding-inline only affects left/right,   */
/* so vertical spacing is never overwritten. */
/* ========================================== */

/* ═══════════════════════════════════════ */
/* SECTION 1: CSS RESET                    */
/* ═══════════════════════════════════════ */

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

/* ═══════════════════════════════════════ */
/* SECTION 2: DESIGN TOKENS                */
/* ═══════════════════════════════════════ */

:root {
    /* =========================== */
    /* COLORS                      */
    /* =========================== */
    --color-dark: #1E293B;
    --color-text-secondary: #56606F;
    --color-accent: #FA8972;
    --color-accent-hover: rgba(250, 137, 114, 0.1);
    --color-accent-selected: rgba(250, 137, 114, 0.2);
    --color-light-bg: #EFF1F3;
    --color-white: #FFFFFF;
    --color-border: #E2E8F0;
    --color-divider: #56606F;

    /* =========================== */
    /* TYPOGRAPHY - FONTS          */
    /* =========================== */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Monda', Georgia, serif;

    /* =========================== */
    /* TYPOGRAPHY - SIZES (MOBILE) */
    /* =========================== */
    --text-hero: 42px;
    --text-hero-line: 48px;
    --text-hero-letter: -0.84px;

    --text-h2: 40px;
    --text-h2-line: 46px;
    --text-h2-letter: -0.8px;

    --text-h3: 24px;
    --text-h3-line: 30px;
    --text-h3-letter: -0.48px;

    --text-intro: 30px;
    --text-intro-line: 1.2;

    --text-body: 16px;
    --text-body-line: 22px;

    --text-body-lg: 18px;
    --text-body-lg-line: 24px;

    --text-sm: 14px;

    /* =========================== */
    /* FONT WEIGHTS                */
    /* =========================== */
    --weight-light: 300;
    --weight-regular: 400;
    --weight-medium: 500;
    --weight-semibold: 600;

    /* =========================== */
    /* SPACING SCALE               */
    /* =========================== */
    --space-4: 4px;
    --space-8: 8px;
    --space-10: 10px;
    --space-12: 12px;
    --space-14: 14px;
    --space-16: 16px;
    --space-20: 20px;
    --space-24: 24px;
    --space-30: 30px;
    --space-32: 32px;
    --space-36: 36px;
    --space-40: 40px;
    --space-48: 48px;
    --space-56: 56px;
    --space-64: 64px;
    --space-80: 80px;
    --space-96: 96px;

    /* =========================== */
    /* LAYOUT                      */
    /* =========================== */
    --container-max: 1200px;
    --container-narrow: 708px;
    --container-full: 1440px;
    --gutter: 30px;

    /* =========================== */
    /* BORDERS & RADIUS            */
    /* =========================== */
    --radius-card: 20px 0 20px 0;
    --radius-btn: 10px 0 10px 0;
    --radius-circle: 50%;
    --radius-pill: 9999px;
    --border-1: 1px;
    --border-2: 2px;

    /* =========================== */
    /* TRANSITIONS                 */
    /* =========================== */
    --ease-fast: 0.2s ease;
    --ease-normal: 0.3s ease;

    /* =========================== */
    /* SHADOWS                     */
    /* =========================== */
    --shadow-btn: 0 4px 12px rgba(250, 137, 114, 0.3);

    /* =========================== */
    /* COMPONENT SIZES             */
    /* =========================== */
    --navbar-h: 80px;
    --navbar-h-desktop: 115px;
    --logo-h: 50px;
    --logo-h-desktop: 74px;
    --btn-h: 50px;
    --btn-h-desktop: 60px;
    --circle: 50px;
    --circle-sm: 36px;
}

/* Tablet Tokens (768px+) */
@media (min-width: 768px) {
    :root {
        --text-hero: 68px;
        --text-hero-line: 74px;
        --text-hero-letter: -1.36px;
        --text-h2: 40px;
        --text-h2-line: 46px;
    }
}

/* Desktop Tokens (1024px+) */
@media (min-width: 1024px) {
    :root {
        --text-hero: 88px;
        --text-hero-line: 94px;
        --text-hero-letter: -1.76px;
    }
}

/* ═══════════════════════════════════════ */
/* SECTION 3: BASE STYLES                  */
/* ═══════════════════════════════════════ */

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    font-weight: var(--weight-regular);
    color: var(--color-dark);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity var(--ease-fast);
}

a:hover {
    opacity: 0.7;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ═══════════════════════════════════════ */
/* SECTION 4: GLOBAL LAYOUT                */
/* ═══════════════════════════════════════ */

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}

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

.section {
    padding: var(--space-64) var(--gutter);
}

/* ═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════ */
/* GLOBAL COMPONENTS                               */
/* ═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════ */
/* SECTION 5: BUTTONS                      */
/* ═══════════════════════════════════════ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-16) var(--space-20);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    letter-spacing: 1.6px;
    white-space: nowrap;
    transition: all var(--ease-normal);
    height: var(--btn-h);
    border: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-dark);
    border-radius: var(--radius-btn);
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: var(--shadow-btn);
}

/* Tablet+ */
@media (min-width: 768px) {
    .btn {
        padding: var(--space-24);
        font-size: var(--text-body);
        height: var(--btn-h-desktop);
    }
}

/* ═══════════════════════════════════════ */
/* SECTION 6: CARDS                        */
/* ═══════════════════════════════════════ */

.cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-30);
}

.card {
    background-color: var(--color-light-bg);
    border-radius: var(--radius-card);
    padding: var(--space-32) var(--space-40) var(--space-36);
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.card-title {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    line-height: var(--text-h3-line);
    letter-spacing: var(--text-h3-letter);
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
}

.card-text {
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    color: var(--color-text-secondary);
}

/* Tablet - Still single column */
@media (min-width: 768px) {
    .card {
        padding: var(--space-32) var(--space-40) var(--space-36);
    }
}

/* Desktop - 3 columns */
@media (min-width: 1024px) {
    .cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ═══════════════════════════════════════ */
/* SECTION 7: ICON CIRCLES                 */
/* ═══════════════════════════════════════ */

.icon-circle {
    width: var(--circle-sm);
    height: var(--circle-sm);
    min-width: var(--circle-sm);
    border: var(--border-2) solid var(--color-accent);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════ */
/* SECTION 8: STEP NUMBERS                 */
/* ═══════════════════════════════════════ */

.step-number {
    width: var(--circle);
    height: var(--circle);
    border-radius: var(--radius-circle);
    border: var(--border-2) solid var(--color-accent);
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: var(--weight-light);
    color: var(--color-accent);
    line-height: 38px;
}

/* ═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════ */
/* COMPOSITE COMPONENTS                            */
/* ═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════ */
/* SECTION 9: NAVBAR                       */
/* ═══════════════════════════════════════ */

.navbar {
    position: relative;
    z-index: 100;
    background-color: transparent;
    border-bottom: var(--border-1) solid var(--color-dark);
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: var(--space-24);
    padding: var(--gutter);
}

.logo {
    display: flex;
}

.logo img {
    height: var(--logo-h-desktop);
    width: auto;
}

.nav-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: var(--space-24);
    width: 100%;
}

.nav-links {
    display: none;
    gap: var(--space-8);
}

.nav-link {
    padding: var(--space-8);
    font-size: var(--text-body);
    font-weight: var(--weight-medium);
    color: var(--color-dark);
    white-space: nowrap;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-24);
    width: 100%;
    flex-direction: column;
}

.nav-actions .btn {
    width: 100%;
}

/* Hamburger Menu Button */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    display: block;
    width: 36px;
    height: 3px;
    background-color: var(--color-dark);
    border-radius: 2px;
    transition: all var(--ease-normal);
}

.hamburger-line:nth-child(1) {
    margin-bottom: 8px;
}

.hamburger-line:nth-child(2) {
    margin-bottom: 8px;
}

/* Hamburger active state (X) */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: var(--space-8);
    padding: 0 var(--gutter) var(--gutter);
    background-color: var(--color-white);
    border-bottom: var(--border-1) solid var(--color-dark);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-link {
    padding: var(--space-12) 0;
    font-size: var(--text-body);
    font-weight: var(--weight-medium);
    color: var(--color-dark);
    border-bottom: var(--border-1) solid var(--color-border);
}

.mobile-menu-link:last-child {
    border-bottom: none;
}

/* Tablet (768px) */
@media (min-width: 768px) {
    .navbar-container {
        flex-direction: row;
        justify-content: space-between;
        height: var(--navbar-h-desktop);
        padding: var(--space-20) var(--gutter);
    }

    .nav-content {
        flex-direction: row;
        width: auto;
        flex: 1;
        justify-content: flex-end;
    }

    .nav-actions {
        flex-direction: row;
        width: auto;
    }

    .nav-actions .btn {
        width: auto;
    }

    .mobile-menu {
        padding: var(--space-24) var(--gutter);
    }
}

/* Desktop (1024px) - Show nav links, hide hamburger */
@media (min-width: 1024px) {
    .navbar-container {
        flex-wrap: nowrap;
    }

    .nav-content {
        flex-wrap: nowrap;
    }

    .nav-links {
        display: flex;
    }

    .hamburger {
        display: none;
    }

    .mobile-menu {
        display: none !important;
    }
}

/* ═══════════════════════════════════════ */
/* SECTION 10: HERO SECTIONS               */
/* ═══════════════════════════════════════ */

/* Hero - With Background Image */
.hero {
    position: relative;
    margin-top: calc(-1 * var(--navbar-h));
    padding: calc(var(--navbar-h) + var(--space-56)) var(--gutter) var(--space-64);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-background img,
.hero-background video {
    position: absolute;
    top: -6.34%;
    left: 0;
    width: 100%;
    height: 112.68%;
    max-width: none;
}

.hero-container {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-32);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-hero);
    line-height: var(--text-hero-line);
    letter-spacing: var(--text-hero-letter);
    font-weight: var(--weight-medium);
    color: var(--color-dark);
    max-width: 100%;
}

.hero-subtitle {
    font-size: var(--text-intro);
    line-height: var(--text-intro-line);
    font-weight: var(--weight-regular);
    color: var(--color-dark);
    max-width: 100%;
}

/* Tablet (768px) */
@media (min-width: 768px) {
    .hero {
        margin-top: calc(-1 * var(--navbar-h-desktop));
        padding: calc(var(--navbar-h-desktop) + var(--space-80)) var(--gutter) var(--space-96);
    }

    .hero-title {
        font-weight: var(--weight-regular);
        max-width: 100%;
    }
}

/* Desktop (1024px) */
@media (min-width: 1024px) {
    .hero-title {
        max-width: 816px;
    }

    .hero-subtitle {
        max-width: 600px;
    }
}

/* Hero Simple (no background) */
.hero-simple {
    background: none;
    background-color: var(--color-white);
    margin-top: 0; /* Reset inherited negative margin from .hero */
    padding: var(--space-80) var(--gutter) var(--space-96);
}

.hero-simple .hero-container {
    gap: var(--space-30);
}

.hero-simple .hero-title {
    max-width: 100%;
}

.hero-simple .hero-subtitle {
    max-width: 900px;
    color: var(--color-text-secondary);
}

/* Full-width button on mobile for hero-simple */
.hero-simple .btn {
    width: 100%;
}

@media (min-width: 768px) {
    .hero-simple {
        padding: var(--space-80) var(--gutter) var(--space-96);
    }

    .hero-simple .hero-container {
        gap: var(--space-32);
    }

    .hero-simple .btn {
        width: auto;
    }
}

@media (min-width: 1024px) {
    .hero-simple {
        padding: var(--space-80) var(--gutter) var(--space-96);
    }
}

/* ═══════════════════════════════════════ */
/* SECTION 11: SECTION HEADERS             */
/* ═══════════════════════════════════════ */

.section-header {
    margin-bottom: var(--space-64);
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-h2);
    line-height: var(--text-h2-line);
    letter-spacing: var(--text-h2-letter);
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
    margin-bottom: var(--space-24);
}

.section-intro {
    font-size: var(--text-intro);
    line-height: var(--text-intro-line);
    font-weight: var(--weight-regular);
    color: var(--color-dark);
    margin-bottom: var(--space-24);
}

.section-description {
    font-size: var(--text-body-lg);
    line-height: var(--text-body-lg-line);
    color: var(--color-text-secondary);
}

/* ═══════════════════════════════════════ */
/* SECTION 12: FOOTER                      */
/* ═══════════════════════════════════════ */

.footer {
    background-color: var(--color-dark);
    color: var(--color-white);
    padding: var(--space-64) var(--gutter) 0;
}

.footer-container {
    max-width: var(--container-full);
    margin: 0 auto;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-48);
    margin-bottom: var(--space-48);
}

.footer-section {
    flex: 1;
}

.footer-logo {
    margin-bottom: var(--space-32);
}

.footer-logo img {
    height: 60px;
    width: auto;
}

.footer-connect {
    margin-bottom: var(--space-16);
}

.footer-connect h4 {
    font-size: var(--text-body);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-16);
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-contact-details {
    font-size: var(--text-body);
    line-height: 1.8;
}

.footer-contact-details p {
    margin: 0 0 var(--space-8) 0;
}

.footer-contact-details strong {
    font-weight: var(--weight-semibold);
}

.footer-contact-details a {
    color: var(--color-white);
    text-decoration: underline;
}

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

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-8);
}

.footer-nav-primary {
    margin-bottom: 0;
}

.footer-nav-secondary {
    margin-bottom: 0;
}

.footer-nav a {
    padding: var(--space-8) var(--space-8) var(--space-8) 0;
    font-size: var(--text-body);
    font-weight: var(--weight-medium);
    color: var(--color-white);
}

.footer-statement {
}

.footer-statement p {
    font-size: 30px;
    line-height: 1.2;
    font-weight: var(--weight-regular);
}

.footer-copyright {
    border-top: var(--border-1) solid var(--color-white);
    padding: var(--space-48) 0;
    text-align: center;
}

.footer-copyright p {
    font-size: var(--text-body);
    line-height: 1.4;
}

/* Tablet+ */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        gap: 187px;
        justify-content: space-between;
    }

    .footer-logo img {
        height: 73px;
    }

    .footer-statement p {
        font-size: 30px;
    }

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

    .footer-statement {
        margin-top: auto;
    }
}

@media (min-width: 1440px) {
    .footer-content {
        gap: 182px;
    }
}

/* ═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════ */
/* PAGE-SPECIFIC COMPONENTS                        */
/* ═══════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════ */
/* SECTION 13: HOME - APPROACH SECTION     */
/* ═══════════════════════════════════════ */

.approach-section {
    background-color: var(--color-white);
}

.approach-header-spacing {
    margin-bottom: var(--space-56);
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-48);
}

.approach-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
}

.approach-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.approach-item-header {
    display: flex;
    gap: var(--space-16);
    align-items: center;
}

.approach-title {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    line-height: var(--text-h3-line);
    letter-spacing: var(--text-h3-letter);
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
    flex: 1;
}

.approach-text {
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    color: var(--color-text-secondary);
}

.divider {
    width: 100%;
    height: var(--border-1);
    background-color: var(--color-divider);
}

.approach-image {
    width: 100%;
}

.approach-image img {
    width: 100%;
    height: 248px;
    object-fit: cover;
}

/* Tablet (768px) - Image below text, taller */
@media (min-width: 768px) {
    .approach-image img {
        height: 699px;
    }
}

/* Desktop (1024px) - Side by side layout */
@media (min-width: 1024px) {
    .approach-content {
        flex-direction: row;
        align-items: stretch;
    }

    .approach-list {
        flex: 1;
    }

    .approach-image {
        flex: 1;
        min-width: 500px;
    }

    .approach-image img {
        height: 100%;
    }
}

/* ═══════════════════════════════════════ */
/* SECTION 14: HOME - ASSESSMENT CTA       */
/* ═══════════════════════════════════════ */

.assessment-section {
    background-color: var(--color-white);
    padding: 0 var(--gutter) var(--space-64);
}

.assessment-content {
    display: flex;
    flex-direction: column;
    gap: 42px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.assessment-hero {
    background-color: var(--color-dark);
    background-image: url('../images/photos/assessment-bg-mobile.png');
    background-size: cover;
    background-position: right bottom;
    background-repeat: no-repeat;
    min-height: 280px;
    display: flex;
    align-items: flex-start;
    width: 100%;
    position: relative;
}

.assessment-hero-overlay {
    padding: var(--space-30);
    max-width: 512px;
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
    align-items: flex-start;
    position: relative;
    min-height: 280px;
}

.assessment-hero-overlay .btn {
    margin-top: var(--space-10);
}

.assessment-title {
    font-family: var(--font-heading);
    font-size: var(--text-h2);
    line-height: var(--text-h2-line);
    letter-spacing: var(--text-h2-letter);
    font-weight: var(--weight-semibold);
    color: var(--color-white);
}

.assessment-subtitle {
    font-size: var(--text-body-lg);
    line-height: var(--text-body-lg-line);
    color: var(--color-white);
}


/* Assessment steps - single column with arrows at all breakpoints */
.assessment-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.step-card {
    background-color: var(--color-light-bg);
    border-radius: var(--radius-card);
    padding: var(--space-20) var(--space-30);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-10);
    width: 100%;
}

.step-title {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    line-height: var(--text-h3-line);
    letter-spacing: var(--text-h3-letter);
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
    text-align: center;
    text-transform: uppercase;
}

.step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 47px;
}

/* Tablet: larger hero */
@media (min-width: 768px) {
    .assessment-hero {
        background-image: url('../images/photos/assessment-bg-tablet.png');
        background-size: cover;
        background-position: right bottom;
        min-height: 400px;
    }

    .assessment-title {
        font-size: 40px;
        line-height: 46px;
    }

    .assessment-subtitle {
        font-size: 24px;
        line-height: 36px;
    }
}

/* Desktop - Assessment section side-by-side */
@media (min-width: 1024px) {
    .assessment-section {
        padding-inline: 0;
    }

    .assessment-content {
        flex-direction: row;
        gap: 42px;
        align-items: stretch;
    }

    .assessment-hero {
        background-image: url('../images/photos/assessment-bg-desktop.png');
        background-size: cover;
        background-position: center bottom;
        flex: 1;
        min-height: 500px;
        width: auto;
    }

    .assessment-hero-overlay {
        max-width: 100%;
    }

    .assessment-steps {
        flex: 1;
        max-width: 570px;
    }
}

/* ═══════════════════════════════════════ */
/* SECTION 15: SOLUTIONS PAGE              */
/* ═══════════════════════════════════════ */

.solution-section {
    padding: var(--space-64) var(--gutter);
}

.solution-white {
    background-color: var(--color-white);
}

.solution-tinted {
    background-color: var(--color-light-bg);
}

.solution-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-32);
    max-width: var(--container-max);
    margin: 0 auto;
    flex-wrap: wrap;
}

.solution-icon {
    width: 140px;
    height: 147px;
    flex-shrink: 0;
}

.solution-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.solution-icon-placeholder {
    background-color: #E3E3E3;
    border-radius: var(--radius-card);
    overflow: hidden;
}

.solution-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.solution-title {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    line-height: var(--text-h3-line);
    letter-spacing: var(--text-h3-letter);
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
    margin-bottom: var(--space-16);
}

.solution-intro {
    font-size: var(--text-body-lg);
    line-height: var(--text-body-lg-line);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-24);
}

.solution-subheading {
    font-size: var(--text-body-lg);
    line-height: var(--text-body-lg-line);
    font-weight: var(--weight-semibold);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-16);
}

.solution-list {
    list-style-position: outside;
    padding-left: var(--space-24);
    margin: 0;
}

.solution-list li {
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
}

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

.solution-divider {
    width: 100%;
    height: var(--border-1);
    background-color: var(--color-divider);
    margin: var(--space-24) 0;
}

.solution-outcome {
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    color: var(--color-text-secondary);
    margin-top: var(--space-8);
}

/* Tablet+ */
@media (min-width: 768px) {
    .solution-content {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
    }
}

@media (min-width: 1024px) {
    .solution-section {
        padding: var(--space-64) 0;
    }
}

/* ═══════════════════════════════════════ */
/* SECTION 16: APPROACH PAGE               */
/* ═══════════════════════════════════════ */

.approach-page-section {
    background-color: var(--color-white);
    padding: var(--space-56) var(--gutter) var(--space-64);
}

.approach-page-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-64);
    max-width: var(--container-max);
    margin: 0 auto;
}

.approach-page-left {
    display: contents;
}

.approach-page-hero {
    display: flex;
    flex-direction: column;
    gap: var(--space-32);
    align-items: flex-start;
    order: 1;
}

.approach-page-title {
    font-family: var(--font-heading);
    font-size: var(--text-hero);
    line-height: var(--text-hero-line);
    letter-spacing: var(--text-hero-letter);
    font-weight: var(--weight-medium);
    color: var(--color-dark);
}

.approach-page-intro {
    font-size: var(--text-intro);
    line-height: 36px;
    font-weight: var(--weight-regular);
    color: var(--color-text-secondary);
}

.approach-page-image {
    width: 100%;
    order: 3;
}

.approach-page-image img {
    width: 100%;
    height: 299px;
    object-fit: cover;
}

.approach-page-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 315px;
    padding: 0;
    margin: 0 auto;
    order: 2;
}

.approach-step-card {
    background-color: var(--color-light-bg);
    border-radius: var(--radius-card);
    padding: var(--space-20) var(--space-30);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--space-10);
    width: 100%;
}

.approach-step-card .step-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--space-10);
    padding: var(--space-10) 0;
    width: 100%;
}

.approach-step-card .step-title {
    text-align: center;
}

.approach-step-card .step-description {
    font-size: var(--text-body);
    line-height: 1.4;
    font-weight: var(--weight-regular);
    color: var(--color-text-secondary);
    text-align: left;
}

/* Tablet+ */
@media (min-width: 768px) {
    .approach-page-section {
        padding: var(--space-64) var(--gutter) var(--space-64);
    }

    .approach-page-title {
        font-weight: var(--weight-regular);
    }

    .approach-page-content {
        gap: var(--space-64);
    }

    .approach-page-steps {
        max-width: 100%;
    }

    .approach-page-image img {
        height: 543.5px;
    }
}

@media (min-width: 1024px) {
    .approach-page-section {
        padding: var(--space-64) var(--gutter);
    }

    .approach-page-content {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: stretch;
        gap: var(--space-48);
    }

    .approach-page-left {
        display: flex;
        flex-direction: column;
        gap: 165px;
        flex: 1 0 0;
        min-width: 0;
        order: unset;
    }

    .approach-page-intro {
        color: var(--color-dark);
    }

    .approach-page-hero {
        order: unset;
    }

    .approach-page-image {
        flex: 1;
        min-height: 0;
        order: unset;
    }

    .approach-page-image img {
        height: 100%;
        object-position: center bottom;
    }

    .approach-page-steps {
        width: 577px;
        flex-shrink: 0;
        order: unset;
    }
}

/* ═══════════════════════════════════════ */
/* SECTION 17: ABOUT PAGE                  */
/* ═══════════════════════════════════════ */

.about-page-section {
    background-color: var(--color-white);
}

.about-page-content {
    display: flex;
    flex-direction: column;
    max-width: var(--container-full);
    margin: 0 auto;
}

/* Mobile: Center title, medium weight, 96px bottom padding */
.about-page-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-80) var(--gutter) var(--space-96);
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

.about-page-title {
    font-family: var(--font-heading);
    font-size: var(--text-hero);
    line-height: var(--text-hero-line);
    letter-spacing: var(--text-hero-letter);
    font-weight: var(--weight-medium);
    color: var(--color-dark);
    max-width: var(--container-max);
    width: 100%;
    text-align: center;
}

.about-page-founder {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 var(--gutter) var(--space-64);
}

/* Mobile: 64px gap between image and text */
.about-page-founder-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-64);
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    max-width: var(--container-max);
}

/* Mobile: 315px × 324px image */
.about-page-founder-image {
    width: 315px;
    max-width: 100%;
}

.about-page-founder-image img {
    width: 100%;
    height: 324px;
    object-fit: cover;
}

.about-page-founder-text {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-page-founder-text-inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
    width: 100%;
}

.about-page-founder-title {
    font-family: var(--font-heading);
    font-size: var(--text-h2);
    line-height: var(--text-h2-line);
    letter-spacing: -0.8px;
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
}

.about-page-founder-bio {
    display: flex;
    flex-direction: column;
}

.about-page-founder-bio p {
    font-size: var(--text-body);
    line-height: 1.5;
    font-weight: var(--weight-regular);
    color: var(--color-text-secondary);
    margin: 0 0 var(--space-24) 0;
}

.about-page-founder-bio p:last-child {
    margin-bottom: 0;
}

.about-page-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-56) var(--gutter) 0;
}

/* Mobile: Full width quote, no max-width */
.about-page-quote-text {
    font-family: var(--font-primary);
    font-size: var(--text-intro);
    line-height: 36px;
    font-style: italic;
    font-weight: var(--weight-regular);
    color: var(--color-accent);
    width: 100%;
    text-align: center;
    margin: 0;
}

/* Mobile: 30px gap between cards */
.about-page-cards {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    padding: 0 var(--gutter) var(--space-64);
    gap: var(--space-30);
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

.about-page-cards .card {
    flex: 1 1 240px;
    min-width: 240px;
}

.about-page-cards .card-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
    min-width: 160px;
}

.about-page-cards .card-text p {
    margin: 0 0 var(--space-16) 0;
}

.about-page-cards .card-text p:last-child {
    margin-bottom: 0;
}

.about-page-cards .card-text ul {
    margin: 0;
    padding-left: var(--space-24);
}

.about-page-cards .card-text li {
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    color: var(--color-text-secondary);
}

/* Tablet: Center title, 708x726 image, 64px gap, 508px quote width */
@media (min-width: 768px) {
    .about-page-hero {
        padding: var(--space-80) var(--gutter) var(--space-80);
    }

    .about-page-title {
        font-weight: var(--weight-regular);
    }

    .about-page-founder-image {
        width: 708px;
    }

    .about-page-founder-image img {
        height: 726px;
    }

    .about-page-founder-title {
        font-size: 40px;
        line-height: 46px;
    }

    .about-page-founder-bio p {
        font-size: var(--text-body-lg);
        line-height: var(--text-body-lg-line);
    }

    .about-page-quote-text {
        max-width: 508px;
    }

    .about-page-cards {
        gap: var(--space-30);
        flex-direction: column;
    }

    .about-page-cards .card {
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
    }
}

/* Desktop: Left-align title, 96px bottom padding, 600x622 image, 48px gap, 708px quote width */
@media (min-width: 1024px) {
    .about-page-hero {
        align-items: flex-start;
        padding: var(--space-80) 0 var(--space-96);
    }

    .about-page-title {
        text-align: left;
    }

    .about-page-founder {
        padding-inline: 0;
    }

    .about-page-founder-inner {
        flex-direction: row;
        gap: var(--space-48);
    }

    .about-page-founder-image {
        flex: 0 0 600px;
        width: 600px;
    }

    .about-page-founder-image img {
        height: 622px;
    }

    .about-page-founder-text {
        min-width: 0;
    }

    .about-page-quote-text {
        max-width: var(--container-narrow);
    }

    .about-page-cards {
        padding-inline: 0;
        flex-direction: row;
    }

    .about-page-cards .card {
        flex: 1 1 0;
        width: auto;
        min-width: 240px;
    }
}

/* ═══════════════════════════════════════ */
/* SECTION 18: CONTACT PAGE                */
/* ═══════════════════════════════════════ */

.contact-page-section {
    background-color: var(--color-white);
}

.contact-page-content {
    max-width: var(--container-full);
    margin: 0 auto;
}

.contact-page-hero {
    padding: var(--space-80) var(--gutter) var(--space-80);
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-32);
}

.contact-page-title {
    font-family: var(--font-heading);
    font-size: var(--text-hero);
    line-height: var(--text-hero-line);
    letter-spacing: var(--text-hero-letter);
    font-weight: var(--weight-medium);  /* Mobile: 500 per Figma */
    color: var(--color-dark);
}

.contact-page-subtitle {
    font-size: var(--text-intro);
    line-height: var(--text-intro-line);
    font-weight: var(--weight-regular);
    color: var(--color-dark);
    width: 100%;
}

.contact-page-container {
    padding: 0 var(--gutter) var(--space-64);
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-32);
}

.contact-card {
    background-color: var(--color-light-bg);
    border-radius: var(--radius-card);
    padding: var(--space-20);  /* Mobile: 20px per Figma */
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
    width: 100%;
}

.contact-card-section {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.contact-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    line-height: var(--text-h3-line);
    letter-spacing: var(--text-h3-letter);
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
}

.contact-card-address {
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    color: var(--color-text-secondary);
}

.contact-card-address p {
    margin: 0;
}

.contact-card-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-linkedin-link {
    display: inline-flex;
    margin-bottom: var(--space-8);
}

.contact-card-details p {
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    color: var(--color-text-secondary);
    margin: 0;
}

.contact-card-details strong {
    font-weight: var(--weight-semibold);
}

.contact-card-details a {
    color: var(--color-text-secondary);
    text-decoration: underline;
}

.contact-page-image {
    width: 100%;
    overflow: hidden;
}

.contact-page-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Tablet */
@media (min-width: 768px) {
    .contact-page-title {
        font-weight: var(--weight-regular);  /* Tablet+: 400 per Figma */
    }

    .contact-card {
        padding: var(--space-40);  /* Tablet+: 40px per Figma */
    }

    .contact-page-container {
        gap: var(--space-48);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .contact-page-hero {
        padding-inline: 0;
    }

    .contact-page-container {
        padding-inline: 0;
        flex-direction: row;
        align-items: stretch;
    }

    .contact-card {
        width: 354px;
        flex-shrink: 0;
    }

    .contact-page-image {
        flex: 1;
        min-width: 0;
    }

    .contact-page-image img {
        height: 100%;
    }
}

/* ═══════════════════════════════════════ */
/* SECTION 19: ASSESSMENT PAGE             */
/* ═══════════════════════════════════════ */

.assessment-page-section {
    background-color: var(--color-white);
}

.assessment-page-content {
    max-width: var(--container-full);
    margin: 0 auto;
}

.assessment-page-hero {
    padding: var(--space-80) var(--gutter) var(--space-96);
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-32);
    text-align: center;
}

.assessment-page-title {
    font-family: var(--font-heading);
    font-size: var(--text-hero);
    line-height: var(--text-hero-line);
    letter-spacing: var(--text-hero-letter);
    font-weight: var(--weight-medium);
    color: var(--color-dark);
}

.assessment-page-subtitle {
    font-size: var(--text-intro);
    line-height: var(--text-intro-line);
    font-weight: var(--weight-regular);
    color: var(--color-dark);
    max-width: 900px;
}

.assessment-cards-container {
    padding: 0 var(--gutter) var(--space-64);
    display: flex;
    justify-content: center;
}

.assessment-cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
    max-width: var(--container-narrow);
    width: 100%;
    position: relative;
}

.assessment-card {
    display: flex;
    flex-direction: column;
    gap: var(--space-16);
}

.assessment-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    line-height: var(--text-h3-line);
    letter-spacing: var(--text-h3-letter);
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
    text-align: center;
    text-transform: uppercase;
}

.assessment-card-text {
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    color: var(--color-text-secondary);
}

.assessment-card-text p {
    margin: 0 0 var(--space-16) 0;
}

.assessment-card-text ul {
    margin: 0;
    padding-left: var(--space-24);
}

.assessment-card-text li {
    margin-bottom: var(--space-8);
}

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

.assessment-divider {
    display: block;
    width: 315px;
    height: 1px;
    background-color: var(--color-divider);
    margin: 0 auto;
}

.assessment-how-container {
    padding: 0 var(--gutter) var(--space-64);
    display: flex;
    justify-content: center;
}

.assessment-how-panel {
    background-color: var(--color-light-bg);
    padding: var(--space-32) var(--space-30) var(--space-40);
    max-width: var(--container-narrow);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-24);
}

.assessment-how-title {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    line-height: var(--text-h3-line);
    letter-spacing: var(--text-h3-letter);
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
    text-align: center;
    text-transform: uppercase;
}

.assessment-steps-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-32);
    width: 100%;
    padding-bottom: var(--space-12);
}

.assessment-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-16);
    text-align: center;
}

.assessment-step-number {
    width: var(--circle);
    height: var(--circle);
    border-radius: var(--radius-circle);
    border: var(--border-2) solid var(--color-dark);
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: var(--weight-light);
    color: var(--color-dark);
    line-height: 38px;
}

.assessment-step-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

.assessment-step-title {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    line-height: var(--text-h3-line);
    letter-spacing: var(--text-h3-letter);
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
}

.assessment-step-text {
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    color: var(--color-text-secondary);
}

/* Tablet+ */
@media (min-width: 768px) {
    .assessment-page-title {
        font-weight: var(--weight-regular);
    }

    .assessment-cards {
        flex-direction: row;
        gap: var(--space-30);
        align-items: flex-start;
    }

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

    .assessment-divider {
        width: 1px;
        height: auto;
        align-self: stretch;
        flex-shrink: 0;
        margin: 0;
    }
}

@media (min-width: 1024px) {
    .assessment-page-hero {
        padding-inline: 0;
    }

    .assessment-cards-container {
        padding-inline: 0;
    }

    .assessment-how-container {
        padding-inline: 0;
    }
}

/* ═══════════════════════════════════════ */
/* SECTION 20: QUESTIONNAIRE PAGE          */
/* ═══════════════════════════════════════ */

.questionnaire-page-section {
    background-color: var(--color-white);
}

.questionnaire-page-content {
    max-width: var(--container-full);
    margin: 0 auto;
}

.questionnaire-hero {
    padding: var(--space-80) var(--gutter) var(--space-96);
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.questionnaire-hero-title {
    font-family: var(--font-heading);
    font-size: var(--text-hero);
    line-height: var(--text-hero-line);
    letter-spacing: var(--text-hero-letter);
    font-weight: var(--weight-medium);
    color: var(--color-dark);
    max-width: var(--container-max);
}

.questionnaire-section-header {
    padding: 0 var(--gutter) var(--space-56);
    max-width: var(--container-narrow);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
    text-align: center;
}

.questionnaire-section-title {
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 38px;
    letter-spacing: -0.64px;
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
}

/* Tablet */
@media (min-width: 768px) {
    .questionnaire-hero-title {
        font-weight: var(--weight-regular);
    }
}

.questionnaire-section-intro {
    font-size: var(--text-body);
    line-height: var(--text-body-lg-line);
    font-weight: var(--weight-regular);
    color: var(--color-text-secondary);
}

.questionnaire-progress {
    min-height: 115px;
    padding: var(--space-20) var(--space-10);
    display: flex;
    align-items: center;
    justify-content: center;
}

.questionnaire-progress-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-20);
    max-width: var(--container-narrow);
    width: 100%;
    justify-content: center;
}

/* Tablet+: Single line, larger gap */
@media (min-width: 768px) {
    .questionnaire-progress {
        height: 115px;
        padding: 0 var(--space-10);
    }

    .questionnaire-progress-inner {
        flex-wrap: nowrap;
        gap: var(--space-24);
    }
}

.progress-status {
    font-size: var(--text-body);
    font-weight: var(--weight-semibold);
    line-height: var(--text-body-line);
    color: var(--color-dark);
    white-space: nowrap;
}

.progress-bar {
    flex: 1;
    height: 11px;
    background-color: var(--color-light-bg);
    border-radius: var(--radius-pill);
    position: relative;
    overflow: hidden;
}

/* Tablet+ - 12px height */
@media (min-width: 768px) {
    .progress-bar {
        height: var(--space-12);
    }
}

.progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--color-accent);
    border-radius: var(--radius-pill);
    transition: width var(--ease-normal);
}

.progress-percentage {
    font-size: var(--text-body);
    font-weight: var(--weight-semibold);
    line-height: var(--text-body-line);
    color: var(--color-dark);
}

.questionnaire-panel-container {
    padding: 0 var(--gutter) var(--space-64);
    display: flex;
    justify-content: center;
}

.questionnaire-panel {
    background-color: var(--color-light-bg);
    padding: var(--space-30);
    max-width: var(--container-narrow);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-30);
}

.question-block {
    background-color: var(--color-white);
    border-radius: var(--radius-card);
    padding: var(--space-20);
    display: flex;
    flex-direction: column;
    gap: var(--space-20);
}

.question-text {
    font-size: var(--text-body);
    font-weight: var(--weight-semibold);
    line-height: var(--text-body-line);
    color: var(--color-dark);
}

.choice-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-20);
}

/* Mobile: Question 2 buttons stack vertically and go full width */
.choice-buttons-fixed {
    flex-direction: column;
}

.choice-buttons-fixed .choice-btn-fixed {
    width: 100%;
}

/* Tablet+: Question 2 buttons wrap horizontally */
@media (min-width: 768px) {
    .choice-buttons-fixed {
        flex-direction: row;
    }

    .choice-buttons-fixed .choice-btn-fixed {
        width: auto;
    }
}

.choice-btn {
    background-color: var(--color-white);
    border: var(--border-2) solid var(--color-accent);
    border-radius: var(--radius-btn);
    padding: var(--space-14);
    font-family: var(--font-primary);
    font-size: var(--text-body);
    font-weight: var(--weight-semibold);
    line-height: var(--text-body-line);
    color: var(--color-dark);
    cursor: pointer;
    transition: background-color var(--ease-fast);
}

.choice-btn:hover {
    background-color: var(--color-accent-hover);
}

.choice-btn-selected {
    background-color: var(--color-accent-selected);
}

.choice-btn-fixed {
    min-width: 133px;
    text-align: center;
}

/* Mobile: Some choice buttons go full width */
@media (max-width: 767px) {
    .choice-btn {
        min-width: 215px;
    }
}

.category-heading {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
    text-align: left;
}

.category-title {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    line-height: var(--text-h3-line);
    letter-spacing: var(--text-h3-letter);
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
    text-transform: uppercase;
}

.category-number {
    margin-right: var(--space-8);
}

.category-description {
    font-size: var(--text-body);
    line-height: var(--text-body-lg-line);
    font-weight: var(--weight-regular);
    color: var(--color-text-secondary);
}

.rating-circles {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-20);
}

.rating-circle {
    width: var(--circle);
    height: var(--circle);
    border-radius: var(--radius-circle);
    border: var(--border-2) solid var(--color-accent);
    background-color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: var(--weight-light);
    line-height: 38px;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--ease-fast);
    padding: 18px;
}

/* Mobile: Some rating circles have 30px font size for specific questions */
@media (max-width: 767px) {
    .rating-circle {
        font-size: 30px;
    }
}

.rating-circle:hover {
    background-color: var(--color-accent-hover);
}

.rating-circle-selected {
    background-color: var(--color-accent-selected);
}

.questionnaire-complete-container {
    padding: 0 var(--gutter) var(--space-64);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.questionnaire-complete-panel {
    background-color: var(--color-accent);
    border: var(--border-2) solid var(--color-accent);
    padding: var(--space-30);
    max-width: var(--container-narrow);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-30);
}

.complete-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-16);
    text-align: center;
}

.complete-checkmark {
    width: var(--circle);
    height: var(--circle);
    border-radius: var(--radius-circle);
    border: var(--border-2) solid var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.complete-title {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    line-height: var(--text-h3-line);
    letter-spacing: var(--text-h3-letter);
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
    text-transform: uppercase;
}

.complete-description {
    font-size: var(--text-body);
    line-height: var(--text-body-lg-line);
    font-weight: var(--weight-regular);
    color: var(--color-dark);
}

.complete-score-block {
    background-color: var(--color-white);
    border-radius: var(--radius-card);
    padding: var(--space-20);
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

.complete-score {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    line-height: var(--text-h3-line);
    letter-spacing: var(--text-h3-letter);
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
}

.complete-score-text {
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    font-weight: var(--weight-regular);
    color: var(--color-dark);
}

.questionnaire-pagination {
    display: flex;
    justify-content: space-between;
    max-width: var(--container-narrow);
    width: 100%;
    padding-top: var(--space-40);
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    padding: var(--space-8);
    font-family: var(--font-primary);
    font-size: var(--text-body);
    font-weight: var(--weight-regular);
    line-height: var(--text-body-line);
    color: var(--color-dark);
    cursor: pointer;
    transition: opacity var(--ease-fast);
    background: none;
    border: none;
}

.pagination-btn:hover {
    opacity: 0.7;
}

.pagination-prev {
    padding-left: 0;
}

.pagination-next {
    padding-right: 0;
}

/* Tablet+ */
@media (min-width: 768px) {
    .questionnaire-section-title {
        font-size: 32px;
    }

    .questionnaire-section-intro {
        font-size: var(--text-body-lg);
    }

    .complete-description {
        font-size: var(--text-body-lg);
    }

    .category-description {
        font-size: var(--text-body-lg);
    }

    .questionnaire-complete-panel {
        border-radius: var(--radius-card);
    }
}

@media (min-width: 1024px) {
    .questionnaire-hero {
        padding-inline: 0;
    }

    .questionnaire-section-header {
        padding-inline: 0;
    }

    .questionnaire-panel-container {
        padding-inline: 0;
    }

    .questionnaire-complete-container {
        padding-inline: 0;
    }
}

/* ═══════════════════════════════════════ */
/* SECTION 21: ASSESSMENT COMPLETE PAGE    */
/* ═══════════════════════════════════════ */

.complete-page-section {
    background-color: var(--color-white);
}

.complete-page-content {
    max-width: var(--container-full);
    margin: 0 auto;
}

/* Hero */
.complete-page-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-32);
    padding: var(--space-80) var(--gutter) var(--space-96);
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.complete-page-title {
    font-family: var(--font-heading);
    font-size: var(--text-hero);
    line-height: var(--text-hero-line);
    letter-spacing: var(--text-hero-letter);
    font-weight: var(--weight-medium);
    color: var(--color-dark);
    max-width: var(--container-max);
}

.complete-page-checkmark {
    width: var(--circle);
    height: var(--circle);
    border-radius: var(--radius-circle);
    border: var(--border-2) solid var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.complete-page-checkmark img {
    width: 48px;
    height: 48px;
}

.complete-page-subtitle {
    font-size: var(--text-intro);
    line-height: 36px;
    font-weight: var(--weight-regular);
    color: var(--color-text-secondary);
    max-width: var(--container-max);
}

/* Assessment Includes Panel */
.complete-panel-container {
    padding: 0 var(--gutter) var(--space-64);
    display: flex;
    justify-content: center;
}

.complete-panel {
    background-color: var(--color-accent);
    padding: var(--space-30);
    max-width: var(--container-narrow);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-30);
}

.complete-panel-title {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    line-height: var(--text-h3-line);
    letter-spacing: var(--text-h3-letter);
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
    text-align: center;
    text-transform: uppercase;
    margin: 0;
}

.complete-panel-card {
    background-color: var(--color-white);
    border-radius: var(--radius-card);
    padding: var(--space-20);
    display: flex;
    flex-direction: column;
    gap: var(--space-20);
}

.complete-bullet-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.complete-bullet-circle {
    width: var(--circle-sm);
    height: var(--circle-sm);
    min-width: var(--circle-sm);
    border-radius: var(--radius-circle);
    border: var(--border-2) solid var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.complete-bullet-circle img {
    width: 48px;
    height: 48px;
}

.complete-bullet-text {
    flex: 1;
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    font-weight: var(--weight-regular);
    color: var(--color-dark);
    margin: 0;
}

.complete-bullet-text strong {
    font-weight: var(--weight-semibold);
}

.complete-bullet-text span {
    color: var(--color-text-secondary);
}

.complete-panel-note {
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    font-weight: var(--weight-regular);
    color: var(--color-text-secondary);
    margin: 0;
}

/* Form Section */
.complete-form-container {
    padding: 0 var(--gutter) var(--space-64);
    display: flex;
    justify-content: center;
}

.complete-form {
    max-width: var(--container-narrow);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-30);
    align-items: center;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
    width: 100%;
}

.form-label {
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    font-weight: var(--weight-regular);
    color: var(--color-dark);
}

.form-input {
    width: 100%;
    min-width: 240px;
    padding: var(--space-12) var(--space-16);
    font-family: var(--font-primary);
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    font-weight: var(--weight-regular);
    color: var(--color-dark);
    background-color: var(--color-white);
    border: var(--border-1) solid var(--color-text-secondary);
    border-radius: 8px;
    outline: none;
    transition: border-color var(--ease-fast);
}

.form-input::placeholder {
    color: var(--color-text-secondary);
}

.form-input:focus {
    border-color: var(--color-dark);
}

.form-textarea {
    width: 100%;
    min-width: 240px;
    min-height: 80px;
    padding: var(--space-12) var(--space-16);
    font-family: var(--font-primary);
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    font-weight: var(--weight-regular);
    color: var(--color-dark);
    background-color: var(--color-white);
    border: var(--border-1) solid var(--color-text-secondary);
    border-radius: 8px;
    outline: none;
    resize: vertical;
    transition: border-color var(--ease-fast);
}

.form-textarea::placeholder {
    color: var(--color-text-secondary);
}

.form-textarea:focus {
    border-color: var(--color-dark);
}

.form-privacy-note {
    font-size: 12px;
    line-height: 18px;
    font-style: italic;
    font-weight: var(--weight-regular);
    color: var(--color-text-secondary);
    margin: 0;
    width: 100%;
}

.form-privacy-note a {
    color: var(--color-text-secondary);
    text-decoration: underline;
}

.form-privacy-note a:hover {
    opacity: 1;
    color: var(--color-dark);
}

/* Tablet+ */
@media (min-width: 768px) {
    .complete-page-title {
        font-weight: var(--weight-regular);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .complete-page-hero {
        padding-inline: 0;
    }
}

/* ═══════════════════════════════════════ */
/* SECTION 22: ASSESSMENT RESULTS PAGE     */
/* ═══════════════════════════════════════ */

.results-page-section {
    background-color: var(--color-white);
}

.results-page-content {
    max-width: var(--container-full);
    margin: 0 auto;
}

/* Hero */
.results-page-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-80);
    padding: var(--space-80) var(--gutter) var(--space-96);
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.results-page-title {
    font-family: var(--font-heading);
    font-size: var(--text-hero);
    line-height: var(--text-hero-line);
    letter-spacing: var(--text-hero-letter);
    font-weight: var(--weight-regular);
    color: var(--color-dark);
    max-width: var(--container-max);
}

/* Combined Assessment Container (Score + Summary) */
.results-assessment-container {
    padding: 0 var(--gutter) var(--space-64);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-30);
}

.results-score-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-30);
    padding: 0 var(--space-30) var(--space-30);
    width: 100%;
    max-width: var(--container-narrow);
}

.results-score-circle {
    width: 145px;
    height: 145px;
    border-radius: var(--radius-circle);
    border: 2px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.results-score-value {
    font-family: var(--font-heading);
    font-size: 40px;
    line-height: 46px;
    letter-spacing: -0.8px;
    font-weight: var(--weight-regular);
    color: var(--color-dark);
}

.results-score-label {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    line-height: var(--text-h3-line);
    letter-spacing: var(--text-h3-letter);
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
}

/* Summary Panel */
.results-panel {
    background-color: var(--color-light-bg);
    padding: var(--space-30);
    max-width: var(--container-narrow);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-30);
    align-items: center;
}

.results-panel-title {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    line-height: var(--text-h3-line);
    letter-spacing: var(--text-h3-letter);
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
    text-align: center;
    text-transform: uppercase;
    margin: 0;
}

.results-summary-card {
    background-color: var(--color-white);
    border-radius: var(--radius-card);
    padding: var(--space-20);
    display: flex;
    flex-direction: column;
    gap: var(--space-20);
    width: 100%;
}

.results-summary-title {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    line-height: var(--text-h3-line);
    letter-spacing: var(--text-h3-letter);
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
}

.results-summary-text {
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    color: var(--color-text-secondary);
    margin: 0;
}

.results-summary-text strong {
    font-weight: var(--weight-semibold);
}

/* Framework Section */
.results-framework-container {
    padding: 0 var(--gutter) var(--space-64);
    display: flex;
    justify-content: center;
}

.results-framework-panel {
    background-color: var(--color-light-bg);
    padding: var(--space-30);
    max-width: var(--container-narrow);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-30);
    align-items: center;
}

/* Progress Bar */
.results-progress-container {
    padding: var(--space-12) 0 var(--space-20);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-10);
}

.results-progress-bar {
    width: 100%;
    height: var(--space-12);
    background-color: var(--color-white);
    border-radius: var(--radius-pill);
    position: relative;
    overflow: hidden;
}

.results-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: var(--color-accent);
    border-radius: var(--radius-pill);
}

.results-progress-status {
    font-size: var(--text-body);
    font-weight: var(--weight-semibold);
    line-height: var(--text-body-line);
    color: var(--color-dark);
    text-align: center;
}

/* Framework Boxes */
.results-framework-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-30);
    justify-content: center;
    padding-bottom: var(--space-30);
    width: 100%;
}

.results-framework-box {
    background-color: var(--color-white);
    border-radius: var(--radius-card);
    padding: var(--space-20);
    width: 147px;
    height: 148px;
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

.results-framework-box-active {
    border: 2px solid var(--color-accent);
}

.results-framework-box-label {
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    color: var(--color-text-secondary);
}

.results-framework-box-divider {
    width: 100%;
    height: 1px;
    background-color: var(--color-border);
}

.results-framework-box-score {
    display: flex;
    align-items: center;
    gap: var(--space-10);
}

.results-score-dot {
    width: 14px;
    height: 14px;
    border-radius: var(--radius-circle);
    flex-shrink: 0;
}

.results-score-dot-green {
    background-color: #36D98F;
}

.results-score-dot-blue {
    background-color: #57C1DE;
}

.results-score-dot-yellow {
    background-color: #FFDB0C;
}

.results-score-dot-orange {
    background-color: #FA8972;
}

.results-score-dot-red {
    background-color: #EA5658;
}

.results-framework-box-range {
    font-family: var(--font-heading);
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    letter-spacing: -0.32px;
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
}

/* Factors Section */
.results-factors-title {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    line-height: var(--text-h3-line);
    letter-spacing: var(--text-h3-letter);
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
    text-align: center;
    text-transform: uppercase;
}

.results-factors-card {
    background-color: var(--color-white);
    border-radius: var(--radius-card);
    padding: var(--space-20);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
}

.results-factor-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

.results-factor-title {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    line-height: var(--text-h3-line);
    letter-spacing: var(--text-h3-letter);
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
}

.results-factor-content {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-20);
    align-items: center;
}

.results-factor-text {
    flex: 1;
    min-width: 200px;
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    color: var(--color-text-secondary);
    margin: 0;
}

.results-factor-score {
    display: flex;
    align-items: center;
    gap: var(--space-24);
}

.results-factor-points {
    font-family: var(--font-heading);
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    letter-spacing: -0.32px;
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
}

.results-factor-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-8);
    padding: var(--space-14);
    border-radius: var(--radius-btn);
    border: 2px solid;
    width: 137px;
}

.results-factor-badge-good {
    background-color: rgba(255, 219, 12, 0.3);
    border-color: #FFDB0C;
}

.results-factor-badge-strong {
    background-color: rgba(87, 193, 222, 0.3);
    border-color: #57C1DE;
}

.results-factor-badge-text {
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
}

.results-factor-divider {
    width: 100%;
    height: 1px;
    background-color: var(--color-border);
}

/* Recommendations Section */
.results-recommendations-container {
    padding: 0 var(--gutter) var(--space-64);
    display: flex;
    justify-content: center;
}

.results-recommendations-panel {
    background-color: var(--color-light-bg);
    padding: var(--space-32) var(--space-30) var(--space-40);
    max-width: var(--container-narrow);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-24);
    align-items: center;
}

.results-recommendations-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-32);
    width: 100%;
    padding-bottom: var(--space-12);
}

.results-recommendation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-16);
    text-align: center;
}

.results-recommendation-number {
    width: var(--circle);
    height: var(--circle);
    border-radius: var(--radius-circle);
    border: 2px solid var(--color-dark);
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: var(--weight-light);
    line-height: 38px;
    color: var(--color-dark);
}

.results-recommendation-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-10);
}

.results-recommendation-title {
    font-family: var(--font-heading);
    font-size: var(--text-h3);
    line-height: var(--text-h3-line);
    letter-spacing: var(--text-h3-letter);
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
}

.results-recommendation-text {
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    color: var(--color-text-secondary);
    margin: 0;
}

/* CTA Section */
.results-cta-container {
    padding: 0 var(--gutter) var(--space-64);
    display: flex;
    justify-content: center;
}

.results-cta-panel {
    max-width: var(--container-narrow);
    width: 100%;
    background-image: url('../images/photos/cta-bg-exact.png');
    background-size: cover;
    background-position: center;
    padding: var(--space-30);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-24);
    text-align: center;
}

.results-cta-title {
    font-family: var(--font-heading);
    font-size: 40px;
    line-height: 46px;
    letter-spacing: -0.8px;
    font-weight: var(--weight-semibold);
    color: var(--color-white);
}

.results-cta-text {
    font-size: 30px;
    line-height: 36px;
    color: var(--color-white);
    margin: 0;
}

.results-cta-button {
    padding-top: var(--space-10);
}

.results-cta-note {
    font-size: 12px;
    line-height: 18px;
    color: var(--color-white);
    margin: 0;
}

/* Desktop */
@media (min-width: 1024px) {
    .results-page-hero {
        padding-inline: 0;
    }

    .results-assessment-container {
        padding-inline: 0;
    }

    .results-framework-container {
        padding-inline: 0;
    }

    .results-recommendations-container {
        padding-inline: 0;
    }

    .results-cta-container {
        padding-inline: 0;
    }
}

/* ═══════════════════════════════════════ */
/* SECTION 23: BOOK A CALL PAGE            */
/* ═══════════════════════════════════════ */

.booking-page-section {
    background-color: var(--color-white);
}

.booking-page-content {
    max-width: var(--container-full);
    margin: 0 auto;
}

/* Hero - Figma: 80px gap, 96px bottom padding */
.booking-page-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-80);
    padding: var(--space-80) var(--gutter) var(--space-96);
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.booking-page-title {
    font-family: var(--font-heading);
    font-size: var(--text-hero);
    line-height: var(--text-hero-line);
    letter-spacing: var(--text-hero-letter);
    font-weight: var(--weight-regular);
    color: var(--color-dark);
    max-width: var(--container-max);
}

/* Booking Widget Container */
.booking-widget-container {
    padding: 0 var(--gutter) var(--space-64);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-30);
}

.booking-widget-panel {
    background-color: var(--color-light-bg);
    max-width: var(--container-narrow);
    width: 100%;
    min-height: 503px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Calendly embed styling */
.booking-widget-panel .calendly-inline-widget {
    width: 100%;
    min-height: 503px;
}

.booking-confidentiality-note {
    font-size: 12px;
    line-height: 18px;
    font-weight: var(--weight-regular);
    color: var(--color-text-secondary);
    text-align: center;
    max-width: var(--container-narrow);
    margin: 0;
}

/* Desktop */
@media (min-width: 1024px) {
    .booking-page-hero {
        padding-inline: 0;
    }

    .booking-widget-container {
        padding-inline: 0;
    }
}

/* ═══════════════════════════════════════ */
/* SECTION 24: SESSION CONFIRMED PAGE      */
/* ═══════════════════════════════════════ */

.confirmed-page-section {
    background-color: var(--color-white);
}

.confirmed-page-content {
    max-width: var(--container-full);
    margin: 0 auto;
}

/* Hero - Mobile: gap 56px, padding 56px/64px, medium weight title */
.confirmed-page-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-56);
    padding: var(--space-56) var(--gutter) var(--space-64);
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

/* Mobile: 42px, medium (500) */
.confirmed-page-title {
    font-family: var(--font-heading);
    font-size: var(--text-hero);
    line-height: var(--text-hero-line);
    letter-spacing: var(--text-hero-letter);
    font-weight: var(--weight-medium);
    color: var(--color-dark);
    max-width: var(--container-max);
}

.confirmed-checkmark {
    width: var(--circle);
    height: var(--circle);
    border-radius: var(--radius-circle);
    border: var(--border-2) solid var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.confirmed-checkmark img {
    width: 48px;
    height: 48px;
}

.confirmed-subtitle {
    font-size: 24px;
    line-height: 30px;
    font-weight: var(--weight-regular);
    color: var(--color-text-secondary);
    max-width: var(--container-max);
}

/* Mobile: Full-width button */
.confirmed-page-hero .btn {
    width: 100%;
}

.confirmed-help-text {
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    font-weight: var(--weight-regular);
    color: var(--color-text-secondary);
    margin: 0;
}

.confirmed-help-text a {
    color: var(--color-text-secondary);
    text-decoration: underline;
}

.confirmed-help-text a:hover {
    opacity: 1;
    color: var(--color-dark);
}

/* Tablet (768px+): gap 80px, padding 80px/96px, regular weight title */
@media (min-width: 768px) {
    .confirmed-page-hero {
        gap: var(--space-80);
        padding: var(--space-80) var(--gutter) var(--space-96);
    }

    .confirmed-page-title {
        font-weight: var(--weight-regular);
    }

    .confirmed-page-hero .btn {
        width: auto;
    }
}

/* Desktop (1024px+): remove horizontal padding */
@media (min-width: 1024px) {
    .confirmed-page-hero {
        padding-inline: 0;
    }
}

/* ═══════════════════════════════════════ */
/* SECTION 25: FAQ PAGE                    */
/* ═══════════════════════════════════════ */

.faq-page-section {
    background-color: var(--color-white);
}

.faq-page-content {
    max-width: var(--container-full);
    margin: 0 auto;
}

/* Hero */
.faq-page-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-32);
    padding: var(--space-80) var(--gutter) var(--space-96);
    max-width: var(--container-max);
    margin: 0 auto;
    text-align: center;
}

.faq-page-title {
    font-family: var(--font-heading);
    font-size: var(--text-hero);
    line-height: var(--text-hero-line);
    letter-spacing: var(--text-hero-letter);
    font-weight: var(--weight-medium);  /* Mobile: 500 per Figma */
    color: var(--color-dark);
    max-width: var(--container-max);
}

.faq-page-subtitle {
    font-size: 30px;
    line-height: 36px;
    font-weight: var(--weight-regular);
    color: var(--color-text-secondary);
    max-width: var(--container-max);
}

/* Accordion Container */
.faq-accordion-container {
    padding: 0 var(--gutter) var(--space-64);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: var(--space-30);
    max-width: var(--container-max);
    width: 100%;
}

/* Accordion Item - Figma: closed = gray bg, open = border */
.faq-accordion-item {
    background-color: var(--color-light-bg);
    border-radius: 20px 0 20px 0;
    padding: 20px;
}

.faq-accordion-item.active {
    background-color: transparent;
    border: var(--border-1) solid var(--color-text-secondary);
}

/* Accordion Header */
.faq-accordion-header {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 0;
}

.faq-accordion-title {
    flex: 1;
    font-family: var(--font-heading);
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.36px;
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
    margin: 0;
}

.faq-accordion-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-accordion-item.active .faq-accordion-icon {
    transform: rotate(180deg);
}

/* Accordion Content */
.faq-accordion-content {
    display: none;
    padding-top: 8px;
}

.faq-accordion-item.active .faq-accordion-content {
    display: block;
}

.faq-accordion-content p {
    font-size: var(--text-body);
    line-height: var(--text-body-line);
    color: var(--color-text-secondary);
    margin: 0 0 8px 0;
}

.faq-accordion-content p:last-child {
    margin-bottom: 0;
}

.faq-accordion-content strong {
    font-weight: var(--weight-semibold);
}

/* Mobile - Figma: 56px hero gap, 64px bottom padding */
@media (max-width: 767px) {
    .faq-page-hero {
        gap: var(--space-32);
        padding-top: var(--space-56);
        padding-bottom: var(--space-64);
    }
}

/* Tablet - Figma: font-weight changes to 400 */
@media (min-width: 768px) {
    .faq-page-title {
        font-weight: var(--weight-regular);  /* Tablet+: 400 per Figma */
    }

    .faq-page-hero {
        padding-top: var(--space-80);
        padding-bottom: var(--space-96);
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .faq-page-hero {
        padding-inline: 0;
    }

    .faq-accordion-container {
        padding-inline: 0;
    }
}

/* ═══════════════════════════════════════ */
/* SECTION 26: PRIVACY POLICY PAGE         */
/* ═══════════════════════════════════════ */

/* Privacy Policy Section */
.privacy-policy-section {
    background-color: var(--color-white);
}

.privacy-policy-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Privacy Policy Hero */
.privacy-policy-hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 80px 0 96px;
    width: 100%;
}

.privacy-policy-title {
    font-family: var(--font-heading);
    font-size: var(--text-hero);  /* Mobile: 42px */
    line-height: var(--text-hero-line);
    letter-spacing: var(--text-hero-letter);
    font-weight: var(--weight-medium);  /* Mobile: 500 per Figma */
    color: var(--color-dark);
    margin: 0;
    width: 100%;
}

.privacy-policy-subtitle {
    font-size: var(--text-intro);  /* 30px per Figma Privacy Policy */
    line-height: var(--text-intro-line);  /* 36px */
    color: var(--color-text-secondary);
    margin: 0;
    width: 100%;
}

.policy-updated {
    font-size: 24px;  /* Per Figma Cookie Policy */
    line-height: 30px;
    color: var(--color-text-secondary);
    margin: 0;
    width: 100%;
}

/* Privacy Policy Container */
.privacy-policy-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding: 0 0 64px;
    width: 100%;
    background-color: var(--color-white);
}

/* Privacy Policy Block */
.privacy-policy-block {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
}

/* Privacy Policy Section Item */
.privacy-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: stretch;
    align-items: stretch;
    gap: 48px;
    width: 100%;
}

.privacy-section-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.privacy-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.privacy-section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.48px;
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
    margin: 0;
}

.privacy-section-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.privacy-section-body p {
    font-size: 16px;
    line-height: 22px;
    color: var(--color-text-secondary);
    margin: 0;
}

.privacy-section-body a {
    color: var(--color-text-secondary);
    text-decoration: underline;
}

.privacy-section-body strong {
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
}

.privacy-list {
    list-style: disc;
    padding-left: 24px;
    margin: 10px 0;
}

.privacy-list li {
    font-size: 16px;
    line-height: 22px;
    color: var(--color-text-secondary);
    margin-bottom: 0;
}

.privacy-list li strong {
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
}

.privacy-list a {
    color: var(--color-text-secondary);
    text-decoration: underline;
}

/* Sub-sections within a policy section */
.privacy-subsection-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
    margin: 0;
}

/* Divider */
.privacy-divider {
    width: 100%;
    height: 1px;
    background-color: #56606F;
    margin-top: 10px;
}

/* Contact Box */
.privacy-contact-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    width: 100%;
}

.privacy-contact-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 24px;
    background-color: var(--color-light-bg);
    padding: 32px 20px 36px;  /* Mobile: 20px horizontal per Figma */
    border-radius: var(--radius-card);
}

.privacy-contact-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 628px;
}

.privacy-contact-title {
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.48px;
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
    margin: 0;
}

.privacy-contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.privacy-contact-details p {
    font-size: 16px;
    line-height: 22px;
    color: var(--color-text-secondary);
    margin: 0;
}

.privacy-contact-details a {
    color: var(--color-text-secondary);
    text-decoration: underline;
}

.privacy-contact-details strong {
    font-weight: var(--weight-semibold);
}

/* Tablet */
@media (min-width: 768px) {
    .privacy-policy-title {
        font-weight: var(--weight-regular);  /* Tablet+: 400 per Figma */
    }

    .privacy-contact-box {
        padding: 32px 40px 36px;  /* Tablet+: 40px horizontal */
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .privacy-policy-content {
        padding: 0;
    }
}

/* ═══════════════════════════════════════ */
/* SECTION 27: TERMS OF SERVICE PAGE       */
/* ═══════════════════════════════════════ */

/* Terms Section */
.terms-section {
    background-color: var(--color-white);
}

.terms-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Terms Hero */
.terms-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 80px 30px 96px;
    max-width: 1200px;
    width: 100%;
}

.terms-title {
    font-family: var(--font-heading);
    font-size: var(--text-hero);
    line-height: var(--text-hero-line);
    letter-spacing: var(--text-hero-letter);
    font-weight: var(--weight-medium);
    color: var(--color-dark);
    margin: 0;
    width: 100%;
}

.terms-updated {
    font-size: 24px;
    line-height: 30px;
    color: var(--color-dark);
    margin: 0;
    width: 100%;
}

/* Terms Container */
.terms-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 30px 64px;
    width: 100%;
    background-color: var(--color-white);
}

/* Terms Block */
.terms-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 1200px;
    width: 100%;
}

/* Terms Section Item */
.terms-section-item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: stretch;
    align-items: stretch;
    gap: 48px;
    width: 100%;
}

.terms-section-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.terms-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.terms-section-title {
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.48px;
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
    margin: 0;
}

.terms-section-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.terms-section-body p {
    font-size: 16px;
    line-height: 22px;
    color: var(--color-text-secondary);
    margin: 0;
}

.terms-section-body a {
    color: var(--color-text-secondary);
    text-decoration: underline;
}

.terms-section-body strong {
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
}

/* Sub-sections within a terms section */
.terms-subsection-title {
    font-size: 16px;
    line-height: 22px;
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
    margin: 0;
}

/* Divider */
.terms-divider {
    width: 100%;
    height: 1px;
    background-color: #56606F;
    margin-top: 10px;
}

/* Contact Box */
.terms-contact-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 1200px;
    width: 100%;
}

.terms-contact-box {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    background-color: #EFF1F3;
    padding: 32px 20px 36px;
    border-radius: 20px 0 20px 0;
}

.terms-contact-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 536px;
}

.terms-contact-title {
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 30px;
    letter-spacing: -0.48px;
    font-weight: var(--weight-semibold);
    color: var(--color-dark);
    margin: 0;
}

.terms-contact-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.terms-contact-details p {
    font-size: 16px;
    line-height: 22px;
    color: var(--color-text-secondary);
    margin: 0;
}

.terms-contact-details a {
    color: var(--color-text-secondary);
    text-decoration: underline;
}

.terms-contact-details strong {
    font-weight: var(--weight-semibold);
}

/* Tablet */
@media (min-width: 768px) {
    .terms-title {
        font-weight: var(--weight-regular);
    }

    .terms-contact-box {
        padding: 32px 40px 36px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .terms-hero {
        padding-inline: 0;
    }

    .terms-container {
        padding-inline: 0;
    }
}

/* ═══════════════════════════════════════ */
/* SECTION 28: COOKIE TABLES               */
/* ═══════════════════════════════════════ */

.cookie-table {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.cookie-table-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 0;
    background-color: var(--color-dark);
}

.cookie-table-header .cookie-table-row {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;
    gap: 60px;
    padding: 0 20px;
    width: 100%;
}

.cookie-table-header .cookie-table-cell {
    flex: 1;
    font-family: var(--font-primary);
    font-size: 12px;
    line-height: 18px;
    font-weight: var(--weight-semibold);
    color: var(--color-white);
}

.cookie-table-body {
    display: flex;
    flex-direction: column;
    width: 100%;
    background-color: var(--color-white);
}

.cookie-table-body .cookie-table-row {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    align-items: stretch;
    gap: 60px;
    padding: 20px;
    width: 100%;
    border-top: 1px solid var(--color-text-secondary);
}

.cookie-table-body .cookie-table-row:first-child {
    border-top: none;
}

.cookie-table-body .cookie-table-cell {
    flex: 1;
    font-family: var(--font-primary);
    font-size: 12px;
    line-height: 18px;
    font-weight: var(--weight-regular);
    color: var(--color-text-secondary);
}

/* ═══════════════════════════════════════ */
/* SECTION 29: PRINT STYLES                */
/* ═══════════════════════════════════════ */

@media print {
    .navbar,
    .btn,
    .footer-nav {
        display: none;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    a {
        text-decoration: underline;
    }

    .hero {
        background: none;
        padding: 20pt 0;
    }
}
