/* ==========================================================================
   CSS VARIABLES - CUSTOM THEMATIC LABELS (Theme: LIGHT)
   No forbidden names (--primary, --secondary, --accent, --light, --dark) used.
   ========================================================================== */
:root {
    --active-sitting-bg-canvas: #faf8f5;   /* Warm off-white/cream */
    --active-sitting-panel-light: #ffffff; /* Pure white */
    --active-sitting-brand-teal: #1e5a44;  /* Forest health teal */
    --active-sitting-brand-teal-hover: #133a2c;
    --active-sitting-text-dark: #121815;   /* Dark charcoal */
    --active-sitting-text-muted: #4e5852;  /* Softer grey-green */
    --active-sitting-accent-cork: #d1a153; /* Warm gold/cork accent */
    --active-sitting-accent-soft-green: #e9f2ee; /* Light soft green for backgrounds */
    
    --font-heading-raleway: 'Raleway', sans-serif;
    --font-text-poppins: 'Poppins', sans-serif;
    
    --joint-radius-soft: 16px;
    --joint-shadow-raised-box: 0 8px 30px rgba(0, 0, 0, 0.05);
    --joint-shadow-subtle: 0 2px 10px rgba(0, 0, 0, 0.03);
}

/* ==========================================================================
   FONTS IMPORT
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Raleway:wght@700;800;900&display=swap');

/* ==========================================================================
   BASE & RESET STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--active-sitting-bg-canvas);
    color: var(--active-sitting-text-dark);
}

body.active-sitting-body {
    font-family: var(--font-text-poppins);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scroll-driven progress animation in header */
@keyframes progress-grow {
    to { width: 100%; }
}
.scroll-navigation-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: var(--active-sitting-accent-cork);
    z-index: 10000;
    animation: progress-grow linear;
    animation-timeline: scroll();
}

/* Scroll Fade In Animation on Viewport Entry */
@keyframes view-fade-in {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-on-viewport {
    animation: view-fade-in linear both;
    animation-timeline: view();
    animation-range: entry 10% entry 40%;
}

@media(max-width: 768px) {
    .animate-on-viewport {
        animation: none; /* Disable on mobile for smoother scrolling */
    }
}

/* ==========================================================================
   SHARED LAYOUT ELEMENTS
   ========================================================================== */
.ergonomic-shell {
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

/* Announcement Bar style */
.promo-announcement-strip {
    background-color: var(--active-sitting-brand-teal);
    color: var(--active-sitting-panel-light);
    font-family: var(--font-heading-raleway);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 10px 0;
    text-align: center;
}
.promo-announcement-strip .ergonomic-shell {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.promo-direct-link {
    color: var(--active-sitting-accent-cork);
    text-decoration: underline;
    transition: color 0.3s;
}
.promo-direct-link:hover {
    color: var(--active-sitting-panel-light);
}

/* ==========================================================================
   HEADER & NAVIGATION (Preset B: Light Split style)
   ========================================================================== */
.joint-main-header {
    background-color: var(--active-sitting-panel-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: var(--joint-shadow-subtle);
    transition: box-shadow 0.3s;
}
/* CSS Shadow scroll trick via focus-within or structural simulation */
.joint-main-header:focus-within {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.joint-header-inside {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.joint-brand-identity {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--active-sitting-brand-teal);
}
.joint-brand-svg {
    width: 28px;
    height: 28px;
}
.joint-brand-name {
    font-family: var(--font-heading-raleway);
    font-weight: 900;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: var(--active-sitting-text-dark);
}

/* Desktop Navigation */
.joint-nav-navigation {
    display: flex;
    align-items: center;
    gap: 32px;
}
.joint-nav-anchor {
    font-family: var(--font-heading-raleway);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--active-sitting-text-muted);
    transition: color 0.3s, border-color 0.3s;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
}
.joint-nav-anchor:hover, 
.joint-nav-anchor.active-page-link {
    color: var(--active-sitting-brand-teal);
    border-bottom: 2px solid var(--active-sitting-brand-teal);
}

/* Hamburger toggle logic (CSS ONLY) */
.joint-menu-checkbox {
    display: none;
}
.joint-hamburger-button {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}
.joint-hamburger-button span {
    width: 25px;
    height: 3px;
    background-color: var(--active-sitting-text-dark);
    border-radius: 3px;
    transition: 0.3s ease;
}

@media(max-width: 768px) {
    .joint-hamburger-button {
        display: flex;
    }
    .joint-nav-navigation {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--active-sitting-panel-light);
        padding: 24px;
        border-bottom: 1px solid rgba(0,0,0,0.08);
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    .joint-menu-checkbox:checked ~ .joint-nav-navigation {
        display: flex;
    }
    .joint-menu-checkbox:checked ~ .joint-hamburger-button span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .joint-menu-checkbox:checked ~ .joint-hamburger-button span:nth-child(2) {
        opacity: 0;
    }
    .joint-menu-checkbox:checked ~ .joint-hamburger-button span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* ==========================================================================
   BUTTONS & ACTIONS
   ========================================================================== */
.motion-action-trigger {
    display: inline-block;
    background-color: var(--active-sitting-brand-teal);
    color: var(--active-sitting-panel-light);
    font-family: var(--font-heading-raleway);
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: var(--joint-radius-soft);
    border: none;
    cursor: pointer;
    box-shadow: var(--joint-shadow-raised-box);
    transition: background-color 0.3s, transform 0.2s, box-shadow 0.2s;
}
.motion-action-trigger:hover {
    background-color: var(--active-sitting-brand-teal-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(30, 90, 68, 0.2);
}
.motion-action-trigger.state-light-contrast {
    background-color: var(--active-sitting-panel-light);
    color: var(--active-sitting-brand-teal);
}
.motion-action-trigger.state-light-contrast:hover {
    background-color: var(--active-sitting-bg-canvas);
    color: var(--active-sitting-brand-teal-hover);
}
.motion-action-trigger.state-full-width {
    width: 100%;
    text-align: center;
}

/* ==========================================================================
   INDEX HERO (Preset B: Split-screen)
   ========================================================================== */
.sitting-split-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    min-height: 80vh;
    background-color: var(--active-sitting-accent-soft-green);
}
.split-hero-text {
    padding: 8dvh 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.split-hero-headline {
    font-family: var(--font-heading-raleway);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--active-sitting-brand-teal);
    margin-bottom: 24px;
    text-transform: uppercase;
}
.split-hero-lead {
    font-size: 1.1rem;
    color: var(--active-sitting-text-muted);
    margin-bottom: 36px;
    max-width: 600px;
}
.split-hero-image-pane {
    position: relative;
    overflow: hidden;
}
.split-hero-img-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width: 991px) {
    .sitting-split-hero {
        grid-template-columns: 1fr;
    }
    .split-hero-text {
        padding: 50px 24px;
    }
    .split-hero-image-pane {
        height: 350px;
    }
}

/* ==========================================================================
   JOURNAL CONTENT BLOCK (Preset B requirement)
   ========================================================================== */
.journal-editorial-section {
    padding: 10dvh 0;
    background-color: var(--active-sitting-panel-light);
}
.journal-panoramic-view {
    width: 100%;
    height: 45vh;
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.journal-editorial-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}
.journal-column-card {
    border-top: 3px solid var(--active-sitting-accent-cork);
    padding-top: 24px;
}
.journal-column-title {
    font-family: var(--font-heading-raleway);
    font-weight: 800;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: var(--active-sitting-text-dark);
    margin-bottom: 16px;
}
.journal-column-description {
    font-size: 0.95rem;
    color: var(--active-sitting-text-muted);
}

@media(max-width: 768px) {
    .journal-editorial-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   FEATURES (Preset B requirement: Masonry columns)
   ========================================================================== */
.anatomy-masonry-deck {
    padding: 10dvh 0;
    background-color: var(--active-sitting-bg-canvas);
}
.masonry-section-title {
    font-family: var(--font-heading-raleway);
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    color: var(--active-sitting-text-dark);
    margin-bottom: 12px;
}
.masonry-section-subtitle {
    font-size: 1.1rem;
    color: var(--active-sitting-text-muted);
    text-align: center;
    margin-bottom: 60px;
}
.masonry-deck-container {
    column-count: 2;
    column-gap: 24px;
}
.masonry-deck-item {
    background-color: var(--active-sitting-panel-light);
    border-radius: var(--joint-radius-soft);
    padding: 32px;
    margin-bottom: 24px;
    break-inside: avoid;
    box-shadow: var(--joint-shadow-subtle);
    transition: transform 0.3s, box-shadow 0.3s;
}
.masonry-deck-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--joint-shadow-raised-box);
}

/* Varying heights */
.height-variant-tall {
    padding-bottom: 50px;
}
.height-variant-short {
    padding-bottom: 25px;
}

.masonry-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}
.masonry-card-svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: var(--active-sitting-accent-cork);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.masonry-card-title {
    font-family: var(--font-heading-raleway);
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--active-sitting-brand-teal);
}
.masonry-card-body {
    font-size: 0.95rem;
    color: var(--active-sitting-text-muted);
}

@media(max-width: 768px) {
    .masonry-deck-container {
        column-count: 1;
    }
}

/* ==========================================================================
   HOW IT WORKS (Preset B: Horizontal path track)
   ========================================================================== */
.spine-flex-track {
    padding: 10dvh 0;
    background-color: var(--active-sitting-panel-light);
    border-top: 1px solid rgba(0,0,0,0.05);
}
.track-section-title {
    font-family: var(--font-heading-raleway);
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    color: var(--active-sitting-text-dark);
    margin-bottom: 60px;
}
.track-horizontal-line {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 30px;
    flex-wrap: nowrap;
}
/* Connector line */
.track-horizontal-line::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    width: 80%;
    height: 2px;
    border-top: 2px dashed var(--active-sitting-accent-cork);
    z-index: 1;
}

.track-step-node {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.track-node-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--active-sitting-panel-light);
    border: 3px solid var(--active-sitting-text-muted);
    color: var(--active-sitting-text-muted);
    font-family: var(--font-heading-raleway);
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-bottom: 20px;
}
.track-step-node.state-active .track-node-circle {
    background-color: var(--active-sitting-brand-teal);
    border-color: var(--active-sitting-brand-teal);
    color: var(--active-sitting-panel-light);
    box-shadow: 0 0 15px rgba(30, 90, 68, 0.3);
}

.track-node-label {
    font-family: var(--font-heading-raleway);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--active-sitting-text-dark);
    margin-bottom: 8px;
}
.track-node-info {
    font-size: 0.9rem;
    color: var(--active-sitting-text-muted);
    max-width: 250px;
}

@media(max-width: 768px) {
    .track-horizontal-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    .track-horizontal-line::before {
        display: none;
    }
    .track-step-node {
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }
    .track-node-circle {
        margin-bottom: 0;
        flex-shrink: 0;
    }
}

/* ==========================================================================
   CTA STRIP (Preset B style)
   ========================================================================== */
.ergonomic-billboard-accent {
    background-color: var(--active-sitting-brand-teal);
    color: var(--active-sitting-panel-light);
    padding: 8dvh 0;
}
.billboard-content-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.billboard-big-text {
    font-family: var(--font-heading-raleway);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.25;
    flex: 1.2;
}
.billboard-button-wrapper {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
}

@media(max-width: 900px) {
    .billboard-content-split {
        flex-direction: column;
        text-align: center;
    }
    .billboard-button-wrapper {
        justify-content: center;
        width: 100%;
    }
}

/* ==========================================================================
   EXPERT PAGE SPECIFICS
   ========================================================================== */
.expert-bio-split {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    min-height: 70vh;
}
.expert-bio-image-pane {
    background-size: cover;
    background-position: center;
}
.expert-bio-text-pane {
    padding: 8dvh 10%;
    background-color: var(--active-sitting-accent-soft-green);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.expert-headline-main {
    font-family: var(--font-heading-raleway);
    font-size: 2.4rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--active-sitting-brand-teal);
    margin-bottom: 10px;
}
.expert-subtitle-specialty {
    font-family: var(--font-heading-raleway);
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--active-sitting-accent-cork);
    margin-bottom: 24px;
}
.expert-paragraph {
    font-size: 1rem;
    color: var(--active-sitting-text-muted);
    margin-bottom: 20px;
}

@media(max-width: 900px) {
    .expert-bio-split {
        grid-template-columns: 1fr;
    }
    .expert-bio-image-pane {
        height: 350px;
    }
    .expert-bio-text-pane {
        padding: 40px 24px;
    }
}

/* Horizontal Stats Bar */
.stat-horizontal-bar {
    background-color: var(--active-sitting-panel-light);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 40px 0;
}
.stat-horizontal-inside {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.single-stat-block {
    text-align: center;
    flex: 1;
    min-width: 180px;
}
.stat-big-number {
    display: block;
    font-family: var(--font-heading-raleway);
    font-size: 3rem;
    font-weight: 900;
    color: var(--active-sitting-accent-cork);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-label-text {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--active-sitting-text-muted);
}

/* Accordion details (Preset B: All open by default) */
.ergonomic-accordions {
    padding: 10dvh 0;
    background-color: var(--active-sitting-bg-canvas);
}
.accordion-main-title {
    font-family: var(--font-heading-raleway);
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    color: var(--active-sitting-text-dark);
    margin-bottom: 12px;
}
.accordion-main-intro {
    font-size: 1.1rem;
    color: var(--active-sitting-text-muted);
    text-align: center;
    margin-bottom: 48px;
}
.accordion-blocks-stack {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.expert-accordion-block {
    background-color: var(--active-sitting-panel-light);
    border-radius: var(--joint-radius-soft);
    overflow: hidden;
    box-shadow: var(--joint-shadow-subtle);
}
.expert-accordion-header {
    padding: 24px;
    font-family: var(--font-heading-raleway);
    font-weight: 800;
    font-size: 1.15rem;
    text-transform: uppercase;
    color: var(--active-sitting-brand-teal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; /* Hide default triangle */
}
.expert-accordion-header::-webkit-details-marker {
    display: none; /* Webkit support */
}
.accordion-arrow-svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s;
}
.expert-accordion-block[open] .accordion-arrow-svg {
    transform: rotate(180deg);
}
.expert-accordion-body {
    padding: 0 24px 24px;
    border-top: 1px solid rgba(0,0,0,0.03);
    padding-top: 16px;
    font-size: 0.95rem;
    color: var(--active-sitting-text-muted);
}

/* ==========================================================================
   RESERVE PAGE SPECIFICS (Preset B: 2 Columns shell)
   ========================================================================== */
.reserve-split-shell {
    padding: 10dvh 0;
    background-color: var(--active-sitting-bg-canvas);
}
.reserve-split-inside {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
}

.reserve-main-headline {
    font-family: var(--font-heading-raleway);
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--active-sitting-brand-teal);
    margin-bottom: 20px;
}
.reserve-lead-text {
    font-size: 1.05rem;
    color: var(--active-sitting-text-muted);
    margin-bottom: 40px;
}

.reserve-benefit-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.reserve-benefit-card {
    background-color: var(--active-sitting-panel-light);
    border-radius: var(--joint-radius-soft);
    padding: 32px;
    box-shadow: var(--joint-shadow-subtle);
}
.reserve-card-icon-title {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}
.reserve-benefit-svg {
    width: 28px;
    height: 28px;
    stroke: var(--active-sitting-accent-cork);
    stroke-width: 2;
    fill: none;
}
.reserve-benefit-title {
    font-family: var(--font-heading-raleway);
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--active-sitting-text-dark);
}

.reserve-bullet-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.reserve-bullet-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--active-sitting-text-muted);
}
.bullet-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--active-sitting-brand-teal);
    flex-shrink: 0;
}

/* Form Container Style */
.interactive-form-container {
    background-color: var(--active-sitting-panel-light);
    border-radius: var(--joint-radius-soft);
    padding: 40px;
    box-shadow: var(--joint-shadow-raised-box);
    border-top: 4px solid var(--active-sitting-brand-teal);
}
.form-title-head {
    font-family: var(--font-heading-raleway);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--active-sitting-brand-teal);
    margin-bottom: 8px;
}
.form-subtitle-text {
    font-size: 0.9rem;
    color: var(--active-sitting-text-muted);
    margin-bottom: 30px;
}

.active-sitting-html-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.form-input-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--active-sitting-text-dark);
}
.form-input-element, 
.form-textarea-element {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: var(--joint-radius-soft);
    font-family: var(--font-text-poppins);
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-input-element:focus, 
.form-textarea-element:focus {
    outline: none;
    border-color: var(--active-sitting-brand-teal);
    box-shadow: 0 0 10px rgba(30, 90, 68, 0.1);
}
.form-textarea-element {
    height: 100px;
    resize: vertical;
}

.form-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.form-checkbox-element {
    margin-top: 4px;
}
.form-checkbox-label {
    font-size: 0.8rem;
    color: var(--active-sitting-text-muted);
    line-height: 1.4;
}
.form-inline-link {
    color: var(--active-sitting-brand-teal);
    text-decoration: underline;
}

.form-support-contacts {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
    text-align: center;
}
.support-text {
    font-size: 0.85rem;
    color: var(--active-sitting-text-muted);
}
.support-email-link {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--active-sitting-brand-teal);
    text-decoration: none;
}

@media(max-width: 991px) {
    .reserve-split-inside {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* FAQ Accordion at the bottom of Reserve */
.preventive-faq-section {
    padding: 10dvh 0;
    background-color: var(--active-sitting-panel-light);
    border-top: 1px solid rgba(0,0,0,0.05);
}
.faq-main-headline {
    font-family: var(--font-heading-raleway);
    font-size: 2.2rem;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    color: var(--active-sitting-text-dark);
    margin-bottom: 48px;
}
.faq-accordion-stack {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.faq-accordion-item {
    background-color: var(--active-sitting-bg-canvas);
    border-radius: var(--joint-radius-soft);
    padding: 24px;
}
.faq-accordion-trigger {
    font-family: var(--font-heading-raleway);
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--active-sitting-brand-teal);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
.faq-accordion-trigger::-webkit-details-marker {
    display: none;
}
.faq-arrow-icon {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    transition: transform 0.3s;
}
.faq-accordion-item[open] .faq-arrow-icon {
    transform: rotate(180deg);
}
.faq-accordion-content {
    margin-top: 16px;
    font-size: 0.95rem;
    color: var(--active-sitting-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   GENERIC TEXT LAYOUT & PRIVACY POLICY
   ========================================================================== */
.text-document-layout {
    background-color: var(--active-sitting-bg-canvas);
}
.generic-text-shell {
    max-width: 800px;
    background-color: var(--active-sitting-panel-light);
    border-radius: var(--joint-radius-soft);
    padding: 60px;
    box-shadow: var(--joint-shadow-subtle);
}
.generic-text-shell h1 {
    font-family: var(--font-heading-raleway);
    font-size: 2.4rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--active-sitting-brand-teal);
    margin-bottom: 24px;
}
.generic-text-shell h2 {
    font-family: var(--font-heading-raleway);
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--active-sitting-text-dark);
    margin-top: 40px;
    margin-bottom: 16px;
}
.generic-text-shell p {
    font-size: 0.95rem;
    color: var(--active-sitting-text-muted);
    margin-bottom: 20px;
}
.document-separator {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin: 50px 0;
}

@media(max-width: 768px) {
    .generic-text-shell {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   THANK YOU PAGE STYLE
   ========================================================================== */
.thank-you-card-box {
    max-width: 650px;
    background-color: var(--active-sitting-panel-light);
    border-radius: var(--joint-radius-soft);
    padding: 50px;
    text-align: center;
    box-shadow: var(--joint-shadow-raised-box);
}
.thank-icon-holder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--active-sitting-accent-soft-green);
    color: var(--active-sitting-brand-teal);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}
.thank-check-svg {
    width: 40px;
    height: 40px;
}
.thank-headline {
    font-family: var(--font-heading-raleway);
    font-size: 2rem;
    font-weight: 950;
    text-transform: uppercase;
    color: var(--active-sitting-brand-teal);
    margin-bottom: 16px;
}
.thank-lead-text {
    font-size: 1.05rem;
    color: var(--active-sitting-text-muted);
    margin-bottom: 30px;
}
.thank-bonus-announcement {
    padding: 30px;
    border-radius: var(--joint-radius-soft);
    margin-bottom: 40px;
    text-align: left;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.05);
}
.bonus-title {
    font-family: var(--font-heading-raleway);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--active-sitting-brand-teal);
    margin-bottom: 8px;
}
.bonus-details {
    font-size: 0.9rem;
    color: var(--active-sitting-text-muted);
}

/* ==========================================================================
   FOOTER (Shared)
   ========================================================================== */
.joint-main-footer {
    background-color: var(--active-sitting-text-dark);
    color: #e2e8f0;
    padding: 60px 0;
    font-size: 0.9rem;
}
.joint-footer-inside {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.joint-footer-identity {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.joint-footer-identity .joint-brand-svg {
    stroke: var(--active-sitting-accent-cork);
}
.joint-footer-identity .joint-brand-name {
    color: #ffffff;
}

.joint-footer-disclaimer {
    max-width: 800px;
    text-align: center;
    color: #94a3b8;
    margin-bottom: 32px;
    line-height: 1.5;
}

.joint-footer-links {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.joint-footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s;
}
.joint-footer-links a:hover {
    color: var(--active-sitting-accent-cork);
}

.joint-footer-copyright {
    color: #64748b;
    font-size: 0.8rem;
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ========================================================================== */
.cookie-banner-overlay {
    position: fixed;
    bottom: 24px;
    right: 24px;
    left: 24px;
    z-index: 99999;
}
.cookie-banner-box {
    max-width: 600px;
    margin-left: auto;
    background-color: var(--active-sitting-panel-light);
    border-radius: var(--joint-radius-soft);
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border-left: 5px solid var(--active-sitting-accent-cork);
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.cookie-banner-text {
    font-size: 0.85rem;
    color: var(--active-sitting-text-muted);
}
.cookie-banner-buttons {
    display: flex;
    gap: 12px;
}
.cookie-action-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-family: var(--font-heading-raleway);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
}
.cookie-action-btn.accept-style {
    background-color: var(--active-sitting-brand-teal);
    color: var(--active-sitting-panel-light);
}
.cookie-action-btn.accept-style:hover {
    background-color: var(--active-sitting-brand-teal-hover);
}
.cookie-action-btn.decline-style {
    background-color: transparent;
    color: var(--active-sitting-text-muted);
}
.cookie-action-btn.decline-style:hover {
    background-color: rgba(0,0,0,0.05);
}