/*
Theme Name: Shcheglov School Theme
Theme URI: https://shcheglov.school/
Author: Shcheglov School
Description: Кастомная тема для акселератора Shcheglov School (для подростков и взрослых).
Version: 1.0.0
Text Domain: shcheglov-school
*/

/* ==========================================================================
   1. FONTS & VARIABLES
   ========================================================================== */

/* Google Font: Inter Tight (Connected in index.html) */
:root {
    --primary-blue: #4D03FA;
    --primary-blue-hover: #3C02C7;
    --accent-green: #EDFB97;
    --text-white: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.85);
    --bg-dark-overlay: rgba(0, 0, 0, 0.45);
    --font-main: 'Inter Tight', -apple-system, sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Base Color Palette */
    --bg-body: #0c0f17;
    --bg-white: #ffffff;
    --bg-light-section: #F2F2F2;
    --bg-dark-section: #17191A;
    --bg-dark-card: #17171A;

    --text-dark: #17171A;
    --text-dark-muted: rgba(23, 23, 26, 0.7);
    --text-dark-muted-heavy: rgba(23, 23, 26, 0.8);

    --border-light: rgba(17, 17, 19, 0.1);
    --border-white: rgba(255, 255, 255, 0.1);

    /* Layout Dimensions */
    --container-padding-desktop: 32px;
    --container-padding-mobile: 16px;

    /* Responsive Typography (Desktop defaults) */
    --font-size-title-xl: 72px;
    /* Large banner titles */
    --font-size-hero-title: 72px;
    /* Hero card title */
    --font-size-section-title: 42px;
    /* Section headers */
    --font-size-card-title: 42px;
    /* Card/item titles */
    --font-size-case-title: 42px;
    /* Case study title */
    --font-size-community-title: 42px;
    /* Community section title */
    --font-size-accordion-title: 42px;
    /* Accordion title size */
    --font-size-accordion-price: 42px;
    /* Accordion price size */
    --font-size-team-card-name: 42px;
    /* Team card name size */
    --font-size-module-name: 32px;
    /* Module name font size */
    --font-size-module-desc: 22px;
    /* Module description font size */
    --font-size-start-step-title: 28px;
    /* Start info step title font size */
    --font-size-start-info-desc: 18px;
    /* Start info description size */
    --font-size-badge: 18px;
    /* Section Badges */

    --font-size-body-lg: 20px;
    /* Large body/features text */
    --font-size-body-md: 18px;
    /* Intermediate body texts */
    --font-size-body-sm: 16px;
    /* Standard descriptions/body text */
    --font-size-body-xs: 14px;
    /* Smaller text/mobile descriptions */
}


/* ==========================================================================
   2. RESET & BASE
   ========================================================================== */

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

html,
body {
    width: 100%;
    height: 100%;
    font-family: var(--font-main);
    background-color: var(--bg-body);
    color: var(--text-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ==========================================================================
   3. HERO SECTION LAYOUT
   ========================================================================== */

.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

body.audience-teenagers .hero-section {
    background-image: url('images/teenager/image 1.png');
}

body.audience-adults .hero-section {
    background-image: url('images/adult/image 19.png');
}

body.audience-adults .accordion-title {
    max-width: 490px;
}

/* Gradient Overlay to ensure premium look and maximum text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

/* ==========================================================================
   4. HEADER STYLES
   ========================================================================== */

.header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px var(--container-padding-desktop);
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
}

.logo a {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
}

/* Audience Toggle Container */
.audience-toggle {
    display: flex;
    background: var(--bg-dark-card);
    padding: 3px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.toggle-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 8px 14px;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition-smooth);
}

.toggle-btn:hover {
    color: var(--text-white);
}

.toggle-btn.active {
    background-color: var(--text-white);
    color: #17171A;
    font-weight: 500;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Language Button */
.lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    border-radius: 4px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    color: var(--text-white);
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition-smooth);
    padding: 0;
    line-height: 1;
}

.lang-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--text-white);
}

/* CTA Consultation Button */
.cta-btn {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 4px 4px 4px 20px;
    background-color: var(--primary-blue);
    color: var(--text-white);
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    gap: 14px;
    transition: var(--transition-smooth);
}

.cta-btn>span:first-child {
    line-height: 1;
}

.cta-btn:hover {
    background-color: var(--primary-blue-hover);
}

.cta-btn:hover .arrow-wrapper svg {
    transform: translateX(2px);
}

.arrow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--text-white);
    border-radius: 2px;
    color: var(--primary-blue);
    transition: var(--transition-smooth);
}

.arrow-wrapper svg {
    transition: transform 0.2s ease;
}

/* ==========================================================================
   5. HERO MAIN CONTENT
   ========================================================================== */

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px var(--container-padding-desktop) 84px var(--container-padding-desktop);
    max-width: 1440px;
    margin: 0 auto;
    width: 100%;
    flex-grow: 1;
    display: flex;
    align-items: flex-end;
}

/* Card Layout Redesign */
.hero-card {
    position: relative;
    width: 100%;
    background-color: var(--bg-white);
    color: var(--text-dark);
    border-radius: 32px;
    box-shadow: 0px 24px 64px rgba(0, 0, 0, 0.15);
    padding: 64px 48px;
    display: grid;
    grid-template-columns: 5fr 5fr;
    align-items: center;
    gap: 48px;
    overflow: visible;
}

.hero-card::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 41%;
    width: 110px;
    height: 55px;
    background-image: url('images/image 17.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(-15deg);
    z-index: 10;
    pointer-events: none;
}

.hero-card-left {
    display: flex;
    flex-direction: column;
}

.hero-card-title {
    font-family: var(--font-main);
    font-size: var(--font-size-hero-title);
    font-weight: 600;
    line-height: 1.05;
    color: var(--text-dark);
    text-transform: none;
}

.hero-card-right {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.hero-feature-item-wide {
    grid-column: span 3;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.hero-feature-item-wide .hero-feature-text {
    max-width: none;
}

.hero-feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--accent-green);
    color: #17171A;
    border-radius: 6px;
    flex-shrink: 0;
}

.hero-feature-icon-wrapper svg {
    display: block;
}

.hero-feature-text {
    font-family: var(--font-main);
    font-size: var(--font-size-body-lg);
    line-height: 1.35;
    font-weight: 400;
    color: var(--text-dark);
    max-width: 198px;
}

/* ==========================================================================
   6. TICKER MARQUEE STYLES
   ========================================================================== */

.ticker-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    background-color: var(--accent-green);
    height: 60px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: flex;
    width: max-content;
    animation: marquee-animation 30s linear infinite;
}

.ticker-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.ticker-content span {
    font-family: var(--font-main);
    font-size: var(--font-size-body-lg);
    font-weight: 400;
    color: var(--text-dark);
    text-transform: uppercase;
}

.ticker-bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #17171A;
    margin: 0 40px;
    flex-shrink: 0;
}

@keyframes marquee-animation {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* ==========================================================================
   6.5. FEATURES SECTION (SECTION 2)
   ========================================================================== */

.features-section {
    background-color: var(--bg-light-section);
    color: var(--text-dark);
    width: 100%;
    padding: 100px 0;
}

.features-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
    display: grid;
    grid-template-columns: 555px 672px;
    justify-content: space-between;
    align-items: stretch;
}

/* LEFT COLUMN */
.features-left {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.features-badge {
    font-family: var(--font-main);
    font-size: var(--font-size-badge);
    font-weight: 450;
    margin-bottom: 190px;
    color: var(--text-dark);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.features-main-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
}

.features-main-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* RIGHT COLUMN */
.features-right {
    display: flex;
    flex-direction: column;
    padding-top: 44px;
    height: 100%;
    min-height: 0;
}

.features-title {
    font-size: var(--font-size-section-title);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 28px;
    max-width: 600px;
}

.features-description {
    font-size: var(--font-size-body-sm);
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-dark-muted);
    margin-bottom: 20px;
    max-width: 480px;
}

/* Bottom row: sub-image below text */
.features-bottom-row {
    display: flex;
    width: 100%;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 32px;
    margin-top: auto;
    padding-top: 24px;
}

.features-footnote {
    font-size: 13px;
    line-height: 1.55;
    color: rgba(23, 23, 26, 0.7);
    max-width: 280px;
    flex-shrink: 0;
}

.features-sub-image {
    width: 310px;
    height: 207px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.features-sub-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.desktop-only {
    display: inline;
}

/* ==========================================================================
   7. MODULES BANNER (SECTION 3 HEADER)
   ========================================================================== */

.modules-banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-white);
    padding: 4px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.modules-banner-inner {
    position: relative;
    width: 100%;
    flex-grow: 1;
    background-image: url('images/block-3.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 80px;
    box-sizing: border-box;
    overflow: hidden;
}

.modules-banner-watermark {
    position: absolute;
    top: -30px;
    left: -20px;
    font-size: 240px;
    font-weight: 400;
    line-height: 0.8;
    color: var(--accent-green);
    filter: blur(8px);
    opacity: 0.75;
    pointer-events: none;
    text-transform: lowercase;
    font-family: var(--font-main);
    z-index: 2;
    user-select: none;
    -webkit-user-select: none;
}

.modules-banner-card {
    position: relative;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 24px;
    transform: rotate(-3deg);
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    margin-bottom: -15px;
}

.modules-banner-card::before {
    content: "";
    position: absolute;
    top: -48px;
    left: 50%;
    transform: translateX(-50%) rotate(6deg);
    width: 100px;
    height: 94px;
    background-image: url('images/image 21.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
    pointer-events: none;
}

.modules-banner-title {
    position: relative;
    z-index: 2;
    font-size: var(--font-size-title-xl);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-dark);
    text-align: center;
    text-transform: uppercase;
}

/* ==========================================================================
   8. MODULES SECTION (SECTION 3)
   ========================================================================== */

.modules-section {
    background-color: var(--bg-light-section);
    color: var(--text-dark);
    width: 100%;
    padding: 0 0 100px 0;
}

.modules-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.modules-title {
    font-size: var(--font-size-section-title);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-dark);
}

.modules-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: 80px;
    row-gap: 60px;
}

.module-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.module-number {
    font-family: var(--font-main);
    font-size: var(--font-size-module-name);
    font-weight: 500;
    color: var(--text-dark);
    opacity: 0.1;
    line-height: 1.2;
    flex-shrink: 0;
}

.module-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.module-name {
    font-size: var(--font-size-module-name);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

.module-desc {
    font-size: var(--font-size-module-desc);
    font-weight: 400;
    line-height: 1.35;
    color: var(--text-dark-muted-heavy);
    max-width: 600px;
}

/* ==========================================================================
   10. FOUR STEPS SECTION (SECTION 5)
   ========================================================================== */

.steps-section {
    background-color: var(--bg-light-section);
    width: 100%;
    padding: 100px 0;
}

.steps-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
}

.steps-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 64px;
}

.steps-badge {
    font-family: var(--font-main);
    font-size: var(--font-size-badge);
    font-weight: 450;
    color: var(--text-dark);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    padding-top: 10px;
}

.steps-title {
    font-size: var(--font-size-section-title);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-dark);
    max-width: 600px;
    text-align: left;
}

.steps-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px;
}

.step-card {
    background-color: var(--bg-white);
    border-radius: 14px;
    padding: 48px;
    display: flex;
    flex-direction: column;
    aspect-ratio: 1 / 1;
    max-width: 672px;
    width: 100%;
    justify-self: center;
}

.step-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.step-card-title {
    font-size: var(--font-size-card-title);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-dark);
    max-width: 85%;
}

.step-card-num {
    font-family: var(--font-main);
    font-size: var(--font-size-card-title);
    font-weight: 600;
    color: rgba(23, 23, 26, 0.24);
    line-height: 0.8;
}

.step-card-body {
    margin-bottom: 32px;
}

.step-card-body p {
    font-size: var(--font-size-body-sm);
    line-height: 1.5;
    color: var(--text-dark-muted);
    font-weight: 400;
}

.step-card-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step-benefit-title {
    font-size: var(--font-size-body-sm);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.step-card-footer p {
    font-size: var(--font-size-body-sm);
    line-height: 1.55;
    color: var(--text-dark-muted);
}

.step-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-benefit-list li {
    font-size: var(--font-size-body-sm);
    line-height: 1.55;
    color: var(--text-dark-muted);
    position: relative;
    padding-left: 18px;
}

.step-benefit-list li::before {
    content: "■";
    position: absolute;
    left: 0;
    top: 0px;
    color: var(--primary-blue);
    font-size: 12px;
}

/* ==========================================================================
   8. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Large Tablets & Small Laptops (under 1200px) */
@media (max-width: 1199px) {
    :root {
        --font-size-hero-title: 64px;
        --font-size-title-xl: 60px;
        --font-size-accordion-title: 32px;
        --font-size-accordion-price: 32px;
        --font-size-start-step-title: 24px;
        --font-size-start-info-desc: 16px;
        --font-size-team-card-name: 28px;
        --font-size-card-title: 32px;
    }

    .header {
        padding: 20px var(--container-padding-desktop);
    }

    .hero-content {
        padding: 40px var(--container-padding-desktop) 60px var(--container-padding-desktop);
    }

    .hero-card {
        padding: 48px var(--container-padding-desktop);
        gap: 36px;
    }

    .hero-features-grid {
        gap: 20px;
    }

    .features-section {
        padding: 80px 0;
    }

    .features-container {
        padding: 0 var(--container-padding-desktop);
        grid-template-columns: 420px 480px;
        justify-content: space-between;
    }

    .features-sub-image {
        width: 260px;
        height: 173px;
    }

    .modules-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        column-gap: 40px;
    }

    .modules-banner-watermark {
        font-size: 180px;
        top: -20px;
        left: -15px;
    }

    .modules-banner-card {
        padding: 24px;
        border-radius: 20px;
    }

    .modules-banner-card::before {
        width: 80px;
        height: 40px;
        top: -18px;
    }

    .steps-container {
        padding: 0 var(--container-padding-desktop);
    }

    .steps-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 24px;
    }

    .step-card {
        padding: 32px;
        aspect-ratio: auto;
        min-height: auto;
    }
}

/* Small Tablets (under 992px) */
@media (max-width: 991px) {
    :root {
        --font-size-hero-title: 48px;
        --font-size-title-xl: 48px;
        --font-size-section-title: 38px;
        --font-size-card-title: 28px;
        --font-size-case-title: 26px;
        --font-size-accordion-title: 24px;
        --font-size-accordion-price: 24px;
        --font-size-community-title: 32px;
    }

    .header {
        padding: 20px var(--container-padding-desktop);
    }

    .hero-content {
        padding: 30px var(--container-padding-desktop) 50px var(--container-padding-desktop);
    }

    .hero-card {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 28px;
    }

    .hero-card::before {
        width: 90px;
        height: 45px;
        top: -36px;
        left: 45%;
    }

    .hero-card-title {
        line-height: 1.05;
    }

    .hero-features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .features-section {
        padding: 70px 0;
    }

    .features-container {
        padding: 0 var(--container-padding-desktop);
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-badge {
        margin-bottom: 24px;
    }

    .features-right {
        padding-top: 0;
    }

    .features-title {
        margin-bottom: 20px;
    }

    .features-bottom-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
        margin-top: 32px;
        padding-top: 0;
    }

    .features-footnote {
        max-width: 100%;
    }

    .features-sub-image {
        width: 100%;
        height: 240px;
        object-fit: cover;
        border-radius: 8px;
    }

    .desktop-only {
        display: none;
    }

    .modules-container {
        gap: 40px;
    }

    .modules-grid {
        grid-template-columns: 1fr;
        row-gap: 40px;
    }

    .modules-section {
        padding-bottom: 70px;
    }

    .modules-banner {
        min-height: 380px;
    }

    .modules-banner-inner {
        padding-bottom: 40px;
    }

    .modules-banner-watermark {
        font-size: 120px;
        top: -10px;
        left: -10px;
    }

    .steps-header {
        flex-direction: column;
        gap: 16px;
        margin-bottom: 48px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .step-card {
        max-width: 100%;
        aspect-ratio: auto;
        min-height: auto;
    }

    .step-card-header {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 12px;
    }

    .step-card-num {
        font-size: 48px;
        margin-bottom: 8px;
    }

    .step-card-title {
        max-width: 100%;
    }
}

/* Mobile Devices (under 768px) */
@media (max-width: 767px) {
    :root {
        --font-size-hero-title: 28px;
        --font-size-title-xl: 32px;
        --font-size-section-title: 34px;
        --font-size-card-title: 24px;
        --font-size-case-title: 22px;
        --font-size-community-title: 26px;
        --font-size-start-step-title: 20px;
        --font-size-module-name: 22px;
        --font-size-module-desc: 16px;
        --font-size-body-lg: 16px;
        --font-size-accordion-title: 32px;
        --font-size-accordion-price: 32px;

        --container-padding-desktop: var(--container-padding-mobile);
    }

    /* Unified Mobile Container Paddings */
    .features-container,
    .modules-container,
    .cases-wrapper,
    .steps-container,
    .community-container,
    .pricing-container,
    .consultations-container,
    .start-info-container,
    .team-container,
    .manifesto-container,
    .footer-container {
        padding-left: var(--container-padding-mobile) !important;
        padding-right: var(--container-padding-mobile) !important;
    }

    .header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 16px 16px;
        z-index: 1100;
    }

    .logo a {
        font-size: 0;
    }

    .logo a::before {
        content: "SC.";
        font-size: 24px;
        font-weight: 700;
        color: var(--text-white);
    }

    .audience-toggle {
        display: flex !important;
        position: fixed;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        background-color: rgba(23, 23, 26, 0.85);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
        border-radius: 8px;
        padding: 4px;
        width: max-content;
    }

    .header-actions {
        display: flex;
        gap: 8px;
        width: auto;
    }

    .cta-btn {
        flex-grow: 0;
        justify-content: center;
    }

    .hero-content {
        padding: 20px var(--container-padding-mobile) 20px var(--container-padding-mobile);
    }

    .hero-card {
        padding: 40px 20px 32px 20px;
        gap: 2px;
        border-radius: 20px;
    }

    .hero-card::before {
        width: 80px;
        height: 40px;
        top: -24px;
        left: auto;
        right: 32px;
        transform: rotate(-15deg);
    }

    .hero-card-title {
        line-height: 1.05;
    }

    .hero-features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-feature-item {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .hero-feature-item-wide {
        grid-column: span 1;
        gap: 16px;
    }

    /* Match vertical order in mobile design */
    .hero-features-grid .hero-feature-item:nth-child(1) {
        order: 2;
    }

    .hero-features-grid .hero-feature-item:nth-child(2) {
        order: 1;
    }

    .hero-features-grid .hero-feature-item:nth-child(3) {
        order: 3;
    }

    .hero-features-grid .hero-feature-item:nth-child(4) {
        order: 4;
    }

    .hero-feature-text {
        max-width: none;
    }

    .ticker-wrapper {
        height: 50px;
    }

    .ticker-bullet {
        margin: 0 24px;
        width: 6px;
        height: 6px;
    }

    .features-section {
        padding: 60px 0;
    }

    .features-container {
        padding: 0 32px;
    }

    .features-title {
        margin-bottom: 20px;
    }

    .modules-section {
        padding-bottom: 60px;
    }

    .modules-container {
        padding: 0 var(--container-padding-mobile);
        gap: 32px;
    }

    .modules-grid {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    .module-item {
        gap: 16px;
        padding: 16px 0;
    }

    .module-number {
        font-size: 24px;
    }

    .modules-banner-watermark {
        font-size: 80px;
        top: -5px;
        left: -5px;
        filter: blur(4px);
    }

    .modules-banner-card {
        padding: 20px;
        border-radius: 16px;
    }

    .modules-banner-card::before {
        width: 60px;
        height: 30px;
        top: -14px;
    }

    .steps-section {
        padding: 60px 0;
    }

    .steps-container {
        padding: 0 var(--container-padding-mobile);
    }

    .step-card {
        padding: 24px;
    }

    .step-card-num {
        font-size: 36px;
    }
}

/* Very Small Mobile Devices (under 400px) */
@media (max-width: 399px) {
    .hero-card-title {
        font-size: 2.2rem;
    }

    .toggle-btn {
        padding: 8px 10px;
        font-size: 13px;
    }
}

/* ==========================================================================
   9. CASES SLIDER SECTION (SECTION 4)
   ========================================================================== */

.cases-section {
    position: relative;
    background-color: var(--bg-light-section);
    width: 100%;
    padding: 0 0 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cases-decor {
    position: absolute;
    top: 10%;
    left: 88%;
    transform: translate(-50%, -50%);
    width: 748px;
    height: 389px;
    z-index: 0;
    pointer-events: none;
}

.cases-decor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cases-wrapper {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
    position: relative;
    z-index: 1;
}

/* ─── Stacked Cards Decor (Right Side) ─── */
.cases-wrapper::before,
.cases-wrapper::after {
    content: "";
    position: absolute;
    background: var(--bg-white);
    border-radius: 8px;
    z-index: -1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Middle card in stack */
.cases-wrapper::before {
    top: 24px;
    bottom: 24px;
    right: 17px;
    width: 100px;
}

/* Back card in stack */
.cases-wrapper::after {
    top: 48px;
    bottom: 48px;
    right: 2px;
    width: 100px;
}

/* Animation state when slider moves */
.cases-wrapper.sliding::before {
    transform: translateX(-8px) scale(0.98);
}

.cases-wrapper.sliding::after {
    transform: translateX(-16px) scale(0.96);
}

/* Viewport: clips to show one card at a time */
.cases-slider-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    z-index: 2;
}

/* Track: holds all cards side by side, transitions on slide */
.cases-slider-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Individual card: exactly the width of the viewport */
.case-card {
    flex: 0 0 100%;
    width: 100%;
}

/* Inner card layout: white card, exact 1240×630 proportion */
.case-card-inner {
    background: var(--bg-white);
    border-radius: 8px;
    width: 100%;
    min-height: 630px;
    display: grid;
    grid-template-columns: 1fr 380px;
    overflow: hidden;
    position: relative;
}

/* ─── LEFT: Text Content ─── */
.case-content {
    display: flex;
    flex-direction: column;
    padding: 48px 48px 40px 52px;
    color: var(--text-dark);
    min-height: 630px;
}

/* Counter: "01/04" */
.case-counter {
    margin-bottom: 20px;
    line-height: 1;
}

.case-num {
    font-family: var(--font-main);
    font-size: 32px;
    font-weight: 500;
    color: var(--text-dark);
}

.case-total {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-dark);
}

/* Case heading */
.case-title {
    font-size: var(--font-size-case-title);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Body paragraphs */
.case-body {
    flex: 1;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.case-body p {
    font-size: var(--font-size-body-sm);
    line-height: 1.65;
    color: var(--text-dark-muted);
    font-weight: 400;
}

.case-author {
    font-size: var(--font-size-body-sm);
    line-height: 1.65;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 16px;
    display: block;
}

/* Footer: year + nav buttons */
.case-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 32px;
}

.case-year {
    font-size: var(--font-size-body-sm);
    font-weight: 600;
    color: var(--text-dark);
}

/* Navigation container */
.case-nav {
    display: flex;
    gap: 8px;
    position: absolute;
    bottom: 40px;
    right: 48px;
    z-index: 10;
}

/* Arrow buttons */
.case-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 6px;
    background-color: var(--primary-blue);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.22s ease, transform 0.15s ease;
    flex-shrink: 0;
}

.case-btn svg {
    width: 20px;
    height: 20px;
}

.case-btn:hover {
    background-color: var(--primary-blue-hover);
    transform: scale(1.06);
}

.case-btn:active {
    transform: scale(0.96);
}

/* ─── RIGHT: Photo ─── */
.case-photo {
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
    padding: 48px 48px 112px 0;
    margin-bottom: 74px;
    box-sizing: border-box;
}

.case-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
}

.case-expand-btn {
    display: none;
}

/* ─── Responsive ─── */
@media (max-width: 1279px) {
    :root {
        --font-size-case-title: 28px;
    }

    .cases-wrapper {
        padding: 0 var(--container-padding-desktop);
    }

    .case-card-inner {
        grid-template-columns: 1fr 320px;
        min-height: 580px;
    }

    .case-content {
        padding: 40px 40px 36px 44px;
        min-height: 580px;
    }

    .case-title {
        font-size: var(--font-size-case-title);
    }
}

@media (max-width: 991px) {
    .cases-section {
        padding: 60px 0 80px;
    }

    .cases-wrapper {
        padding: 0 24px;
    }

    .case-card-inner {
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding: 24px;
    }

    .case-content {
        display: contents;
    }

    .case-counter {
        order: 1;
        margin-bottom: 12px;
    }

    .case-photo {
        order: 2;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        border-radius: 8px;
        overflow: hidden;
        margin-bottom: 24px;
        padding: 0;
    }

    .case-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .case-title {
        order: 3;
        font-size: var(--font-size-case-title);
        margin-bottom: 16px;
        line-height: 1.25;
    }

    .case-body {
        order: 4;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 12px;
    }

    /* Collapse long case description by default on mobile */
    .case-body p:nth-child(n+2) {
        display: none;
    }

    .case-card.expanded .case-body p:nth-child(n+2) {
        display: block;
    }

    .case-expand-btn {
        order: 5;
        display: inline-block;
        color: var(--primary-blue);
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        border: none;
        background: none;
        padding: 0;
        text-align: left;
        margin-bottom: 24px;
        width: fit-content;
        transition: color 0.2s ease;
    }

    .case-expand-btn:hover {
        color: var(--primary-blue-hover);
        text-decoration: underline;
    }

    .case-footer {
        order: 6;
        margin-top: 0;
        border-top: 1px solid rgba(17, 17, 19, 0.1);
        padding-top: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .case-nav {
        position: static;
    }
}

@media (max-width: 767px) {
    .cases-section {
        padding: 10px 0 10px;
    }

    .cases-decor {
        width: 100%;
        height: auto;
        max-width: 480px;
        top: 6%;
        left: 40%;
    }

    .cases-wrapper {
        padding: 0 16px;
    }

    .cases-wrapper::before,
    .cases-wrapper::after {
        display: none;
    }

    .cases-slider-viewport {
        box-shadow: none;
    }

    .case-card-inner {
        padding: 20px;
    }

    .case-title {
        font-size: var(--font-size-case-title);
        margin-bottom: 14px;
    }

    .case-body p {
        font-size: 13px;
        line-height: 1.6;
    }

    .case-expand-btn {
        margin-bottom: 20px;
        font-size: 14px;
    }

    .case-btn {
        width: 42px;
        height: 42px;
    }

    .case-photo {
        margin-bottom: 20px;
    }
}

/* ==========================================================================
   12. PRICING & FORMATS SECTION (SECTION 6)
   ========================================================================== */

.pricing-section {
    background-color: var(--bg-dark-section);
    color: #ffffff;
    width: 100%;
    padding: 100px 0;
}

.pricing-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
}

.pricing-header {
    display: grid;
    grid-template-columns: 555px 672px;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 80px;
}

.pricing-badge {
    font-family: var(--font-main);
    font-size: var(--font-size-badge);
    font-weight: 450;
    color: #ffffff;
    text-transform: uppercase;
}

.pricing-main-title {
    font-size: var(--font-size-section-title);
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 28px;
}

.pricing-main-description {
    font-size: var(--font-size-body-sm);
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 20px;
    max-width: 540px;
}

/* Accordion Styling */
.pricing-accordion-list {
    border-top: 1px solid var(--bg-light-section);
}

.accordion-item {
    border-bottom: 1px solid var(--bg-light-section);
}

.accordion-item-header {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    align-items: center;
    padding: 32px 0;
    padding-bottom: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.accordion-num {
    font-family: var(--font-main);
    font-size: var(--font-size-badge);
    font-weight: 450;
    color: #ffffff;
}

.accordion-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 48px;
}

.accordion-title {
    font-size: var(--font-size-accordion-title);
    font-weight: 600;
    color: #ffffff;
}

.accordion-price {
    font-size: var(--font-size-accordion-price);
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Toggle Plus/Minus Button */
.accordion-toggle-btn {
    width: 64px;
    height: 64px;
    background-color: var(--primary-blue);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: background-color 0.25s ease;
}

.accordion-item:hover .accordion-toggle-btn {
    background-color: var(--primary-blue-hover);
}

.toggle-icon {
    position: relative;
    width: 20px;
    height: 20px;
    display: inline-block;
}

.toggle-icon svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease;
}

.toggle-icon .icon-minus {
    opacity: 0;
}

.toggle-icon .icon-plus {
    opacity: 1;
}

/* Open State Accordion */
.accordion-item.active .toggle-icon .icon-minus {
    opacity: 1;
}

.accordion-item.active .toggle-icon .icon-plus {
    opacity: 0;
}

/* Expandable Body (CSS Grid transition) */
.accordion-item-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, visibility 0.35s ease;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
}

.accordion-item.active .accordion-item-body {
    grid-template-rows: 1fr;
    opacity: 1;
    visibility: visible;
}

.accordion-item-body-inner {
    min-height: 0;
    overflow: hidden;
    padding-left: 160px;
    /* Align content with titles */
    padding-bottom: 32px;
}

/* Table Style */
.pricing-table-wrapper {
    margin-bottom: 32px;
    max-width: 800px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.pricing-table th {
    font-size: var(--font-size-body-sm);
    font-weight: 450;
    color: rgba(255, 255, 255, 0.7);
    padding-bottom: 12px;
}

.pricing-table td {
    font-size: var(--font-size-body-sm);
    padding: 16px 0;
    color: #ffffff;
}

.accordion-description-text {
    max-width: 720px;
    margin-bottom: 32px;
}

.accordion-description-text p {
    font-size: var(--font-size-body-sm);
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 16px;
}

.accordion-description-text p:last-child {
    margin-bottom: 0;
}

/* Benefits list */
.accordion-benefit-section {
    max-width: 720px;
}

.benefit-title {
    font-size: var(--font-size-body-sm);
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-list li {
    font-size: var(--font-size-body-sm);
    line-height: 1.55;
    color: #ffffff;
    position: relative;
    padding-left: 20px;
}

.benefit-list li::before {
    content: "■";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-green);
    font-size: 12px;
}

/* Alternative Payment Scheme styling */
.alternative-payment {
    color: #4F5051;
}

.alternative-payment .benefit-title {
    color: #4F5051;
}

.alternative-payment .alt-payment-intro {
    font-size: 16px;
    color: #4F5051;
    margin-bottom: 8px;
}

.alternative-payment .benefit-list li {
    color: #4F5051;
}

.alternative-payment .benefit-list li::before {
    color: #4F5051;
}

.alternative-payment .alt-payment-note {
    font-size: 14px;
    color: #4F5051;
    font-style: italic;
}

.alternative-payment .alt-payment-note:first-of-type {
    margin-bottom: 4px;
}

/* Responsive Overrides for Section 6 */
@media (max-width: 1199px) {
    .pricing-header {
        grid-template-columns: 420px 480px;
    }

    .accordion-item-header {
        grid-template-columns: 100px 1fr auto;
    }

    .accordion-item-body-inner {
        padding-left: 100px;
    }


}

@media (max-width: 991px) {
    .pricing-header {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .accordion-item-header {
        grid-template-columns: 60px 1fr auto;
        padding: 24px 0;
    }

    .accordion-item-body-inner {
        padding-left: 60px;
        padding-bottom: 24px;
    }



    .accordion-header-content {
        padding-right: 24px;
    }
}

@media (max-width: 767px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-main-title {
        margin-bottom: 20px;
    }

    .pricing-section .accordion-num {
        display: none;
    }

    .accordion-item-header {
        grid-template-columns: 1fr auto;
        padding: 24px 0 16px 0;
        align-items: start;
    }

    .accordion-item-body-inner {
        padding-left: 0;
        padding-bottom: 24px;
    }

    .accordion-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .accordion-price {
        font-size: var(--font-size-accordion-price);
        color: #ffffff;
        font-weight: 600;
    }

    .pricing-table-wrapper {
        max-width: 100%;
        margin-bottom: 24px;
    }

    .pricing-table {
        display: grid;
        grid-template-columns: 1fr 1fr;
        row-gap: 16px;
        column-gap: 20px;
        width: 100%;
    }

    .pricing-table thead,
    .pricing-table tbody,
    .pricing-table tr {
        display: contents;
    }

    /* Table columns ordering and spanning */
    .pricing-table th:nth-child(1) {
        order: 1;
        grid-column: 1;
    }

    .pricing-table th:nth-child(2) {
        order: 2;
        grid-column: 2;
    }

    .pricing-table th:nth-child(3) {
        order: 9;
        grid-column: span 2;
        margin-top: 16px;
    }

    /* Row 1 cells */
    .pricing-table tbody tr:nth-child(1) td:nth-child(1) {
        order: 3;
    }

    .pricing-table tbody tr:nth-child(1) td:nth-child(2) {
        order: 4;
    }

    .pricing-table tbody tr:nth-child(1) td:nth-child(3) {
        order: 10;
        grid-column: span 2;
    }

    /* Row 2 cells */
    .pricing-table tbody tr:nth-child(2) td:nth-child(1) {
        order: 5;
    }

    .pricing-table tbody tr:nth-child(2) td:nth-child(2) {
        order: 6;
    }

    .pricing-table tbody tr:nth-child(2) td:nth-child(3) {
        order: 11;
        grid-column: span 2;
    }

    /* Row 3 cells */
    .pricing-table tbody tr:nth-child(3) td:nth-child(1) {
        order: 7;
    }

    .pricing-table tbody tr:nth-child(3) td:nth-child(2) {
        order: 8;
    }

    .pricing-table tbody tr:nth-child(3) td:nth-child(3) {
        order: 12;
        grid-column: span 2;
    }

    .pricing-table th,
    .pricing-table td {
        border: none !important;
        padding: 0 !important;
        font-size: 15px;
        line-height: 1.4;
    }
}

/* ==========================================================================
   13. COMMUNITY & CLUB SECTION (SECTION 7)
   ========================================================================== */

.community-section {
    background-color: var(--bg-light-section);
    color: var(--text-dark);
    width: 100%;
    padding-bottom: 100px;
}

.community-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
    display: grid;
    grid-template-columns: 640px 672px;
    justify-content: space-between;
    align-items: start;
}

/* Left Column */
.community-left {
    display: flex;
    flex-direction: column;
}

.community-badge {
    font-family: var(--font-main);
    font-size: var(--font-size-badge);
    font-weight: 450;
    margin-bottom: 120px;
    color: var(--text-dark);
    text-transform: uppercase;
}

.community-stats {
    display: flex;
    flex-direction: column;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}

.stat-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: end;
    padding: 32px 0;
    border-top: 1px solid var(--border-light);
}

.stat-number {
    font-size: 130px;
    font-weight: 600;
    line-height: 0.9;
    color: var(--text-dark);
}

.stat-text {
    font-size: var(--font-size-body-sm);
    line-height: 1.45;
    font-weight: 600;
    color: var(--text-dark);
    max-width: 290px;
}

.community-notice {
    display: flex;
    align-items: center;
    background-color: var(--accent-green);
    padding: 24px;
    gap: 24px;
    margin-top: 32px;
}

.community-notice-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.community-notice-text {
    font-family: var(--font-main);
    font-size: 18px;
    line-height: 1.5;
    color: rgba(23, 23, 26);
    font-weight: 600;
}

/* Right Column */
.community-right {
    display: flex;
    flex-direction: column;
}

.community-title {
    font-size: var(--font-size-community-title);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.community-right-description {
    font-size: var(--font-size-body-sm);
    line-height: 1.6;
    color: var(--text-dark-muted);
    margin-bottom: 32px;
    max-width: 520px;
}

.asterisk-blue {
    color: var(--primary-blue);
    font-weight: bold;
}

.community-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    aspect-ratio: 672 / 560;
}

.community-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.community-footnote {
    font-size: 16px;
    line-height: 1.5;
    color: #17171A;
    font-weight: 500;
    max-width: 600px;
}

/* Responsive Overrides */
@media (max-width: 1199px) {
    .community-container {
        grid-template-columns: 420px 480px;
    }

    .stat-number {
        font-size: 90px;
    }

    .stat-item {
        gap: 32px;
        padding: 24px 0;
    }

    .community-badge {
        margin-bottom: 80px;
    }
}

@media (max-width: 991px) {
    .community-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .community-left,
    .community-right {
        display: contents;
    }

    .community-badge {
        order: 1;
        margin-bottom: 12px;
    }

    .community-title {
        order: 2;
        font-size: var(--font-size-community-title);
        margin-bottom: 20px;
    }

    .community-right-description {
        order: 3;
        margin-bottom: 24px;
    }

    .community-stats {
        order: 4;
        margin-bottom: 24px;
    }

    .community-image {
        order: 6;
        margin-bottom: 24px;
    }

    .community-notice {
        order: 7;
        margin-bottom: 20px;
        padding: 20px;
        gap: 16px;
    }

    .community-notice-text {
        font-size: 16px;
    }

    .community-footnote {
        order: 8;
    }
}

@media (max-width: 767px) {
    .community-container {
        gap: 24px;
    }

    .community-section {
        padding: 60px 0;
        padding-top: 0;
    }

    .community-title {
        font-size: var(--font-size-section-title);
        margin-bottom: 16px;
    }

    .stat-number {
        font-size: 80px;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 20px 0;
    }

    .community-image {
        aspect-ratio: 16 / 10;
        margin-bottom: 20px;
    }

    .community-notice {
        padding: 16px;
        gap: 12px;
        margin: 0;
    }

    .community-notice-text {
        font-size: 14px;
    }
}

/* ==========================================================================
   14. SECOND FORMAT & ONE-OFF CONSULTATIONS (SECTION 8)
   ========================================================================== */

.consultations-section {
    background-color: var(--bg-dark-section);
    color: #ffffff;
    width: 100%;
    padding: 60px 0;
}

.consultations-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
    display: grid;
    grid-template-columns: 555px 672px;
    justify-content: space-between;
    align-items: start;
}

/* Left Column */
.consultations-left {
    display: flex;
    flex-direction: column;
}

.consultations-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    aspect-ratio: 1 / 1;
}

.consultations-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.consultations-left-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.consultations-description {
    font-size: var(--font-size-body-sm);
    line-height: 1.6;
    color: #ffffff;
    font-weight: 400;
    max-width: 500px;
}

/* Right Column */
.consultations-right {
    display: flex;
    flex-direction: column;
}

.consultations-title {
    font-size: var(--font-size-section-title);
    font-weight: 600;
    line-height: 1.1;
    color: #ffffff;
    margin-bottom: 28px;
}

.consultations-intro {
    font-size: var(--font-size-body-sm);
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 28px;
    max-width: 540px;
}

.consultations-benefit-list {
    margin-bottom: 40px;
    max-width: 600px;
}

.consultations-table-wrapper {
    margin-bottom: 48px;
    max-width: 600px;
}

.consultations-table th {
    padding-bottom: 12px;
}

.consultations-table td {
    padding: 16px 0;
}

.consultations-sub-image-wrapper {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: auto;
}

.consultations-sub-image {
    width: 310px;
    height: 207px;
    border-radius: 8px;
    overflow: hidden;
}

.consultations-sub-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Responsive Overrides */
@media (max-width: 1199px) {
    .consultations-container {
        grid-template-columns: 420px 480px;
    }

    .consultations-sub-image {
        width: 260px;
        height: 173px;
    }
}

@media (max-width: 991px) {
    .consultations-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .consultations-left,
    .consultations-right {
        display: contents;
    }

    .consultations-title {
        order: 1;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .consultations-intro {
        order: 2;
        margin-bottom: 20px;
    }

    .consultations-benefit-list {
        order: 3;
        margin-bottom: 24px;
    }

    .consultations-table-wrapper {
        order: 4;
        margin-bottom: 32px;
    }

    .consultations-image-wrapper {
        order: 5;
        margin-bottom: 24px;
        aspect-ratio: 1.6 / 1;
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
    }

    .consultations-left-text {
        order: 6;
        margin-bottom: 32px;
    }

    .consultations-sub-image-wrapper {
        order: 7;
        justify-content: flex-start;
        margin-top: 0;
        width: 100%;
    }

    .consultations-sub-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1.6 / 1;
        border-radius: 8px;
        overflow: hidden;
    }
}

@media (max-width: 767px) {
    .consultations-section {
        padding: 60px 0;
    }

    .consultations-description,
    .consultations-intro {
        font-size: var(--font-size-body-xs);
        line-height: 1.5;
    }

    /* Transform consultations table into 2 columns on mobile */
    .consultations-table {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        row-gap: 12px;
        border: none;
    }

    .consultations-table thead,
    .consultations-table tbody,
    .consultations-table tr {
        display: contents;
    }

    .consultations-table th:nth-child(1) {
        grid-row: 1;
        grid-column: 1;
        padding-bottom: 8px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .consultations-table th:nth-child(2) {
        grid-row: 1;
        grid-column: 2;
        padding-bottom: 8px;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .consultations-table th:nth-child(3) {
        grid-row: 4;
        grid-column: 1 / span 2;
        padding-top: 24px;
        padding-bottom: 8px;
        font-size: 16px;
        font-weight: 600;
        color: #ffffff;
        text-align: left;
        border-bottom: none;
    }

    .consultations-table tbody tr:nth-child(1) td:nth-child(1) {
        grid-row: 2;
        grid-column: 1;
        padding: 8px 0;
        border-bottom: none;
    }

    .consultations-table tbody tr:nth-child(1) td:nth-child(2) {
        grid-row: 2;
        grid-column: 2;
        padding: 8px 0;
        border-bottom: none;
    }

    .consultations-table tbody tr:nth-child(1) td:nth-child(3) {
        grid-row: 5;
        grid-column: 1 / span 2;
        padding: 8px 0;
        border-bottom: none;
        font-size: 16px;
        font-weight: 600;
    }

    .consultations-table tbody tr:nth-child(2) td:nth-child(1) {
        grid-row: 3;
        grid-column: 1;
        padding: 8px 0;
        border-bottom: none;
    }

    .consultations-table tbody tr:nth-child(2) td:nth-child(2) {
        grid-row: 3;
        grid-column: 2;
        padding: 8px 0;
        border-bottom: none;
    }

    .consultations-table tbody tr:nth-child(2) td:nth-child(3) {
        grid-row: 6;
        grid-column: 1 / span 2;
        padding: 8px 0;
        border-bottom: none;
        font-size: 16px;
        font-weight: 600;
    }
}

/* ==========================================================================
   15. START BANNER SECTION (SECTION 9)
   ========================================================================== */

.start-banner {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-white);
    padding: 4px;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}

.start-banner-inner {
    position: relative;
    width: 100%;
    flex-grow: 1;
    background-image: url('images/teenager/image 9.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 80px;
    box-sizing: border-box;
    overflow: hidden;
}

.start-banner-watermark {
    position: absolute;
    top: -30px;
    left: -20px;
    font-size: 240px;
    font-weight: 400;
    line-height: 0.8;
    color: var(--accent-green);
    filter: blur(8px);
    opacity: 0.75;
    pointer-events: none;
    text-transform: lowercase;
    font-family: var(--font-main);
    z-index: 2;
    user-select: none;
    -webkit-user-select: none;
}

.start-banner-card {
    position: relative;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 24px;
    transform: rotate(-3deg);
    display: inline-block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    margin-bottom: -15px;
}

.start-banner-card::before {
    content: "";
    position: absolute;
    top: -74px;
    left: 50%;
    transform: translateX(-50%) rotate(3deg);
    width: 100px;
    height: 94px;
    background-image: url('images/image 20.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
    pointer-events: none;
}

.start-banner-title {
    position: relative;
    z-index: 2;
    font-size: var(--font-size-title-xl);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-dark);
    text-align: center;
}

/* Responsive Overrides for Start Banner */
@media (max-width: 1199px) {
    .start-banner-title {
        font-size: 60px;
    }

    .start-banner-watermark {
        font-size: 180px;
        top: -20px;
        left: -15px;
    }

    .start-banner-card {
        padding: 24px;
        border-radius: 20px;
    }

    .start-banner-card::before {
        width: 80px;
        height: 75px;
        top: -38px;
    }
}

@media (max-width: 991px) {
    .start-banner {
        min-height: 380px;
    }

    .start-banner-inner {
        padding-bottom: 40px;
    }

    .start-banner-title {
        font-size: 48px;
    }

    .start-banner-watermark {
        font-size: 120px;
        top: -10px;
        left: -10px;
    }
}

@media (max-width: 767px) {
    .start-banner-title {
        font-size: 32px;
    }

    .start-banner-watermark {
        font-size: 80px;
        top: -5px;
        left: -5px;
        filter: blur(4px);
    }

    .start-banner-card {
        padding: 20px;
        border-radius: 16px;
    }

    .start-banner-card::before {
        width: 60px;
        height: 56px;
        top: -28px;
    }
}

/* ==========================================================================
   16. START INFO CONTENT SECTION (SECTION 10)
   ========================================================================== */

.start-info-section {
    background-color: var(--bg-light-section);
    color: var(--text-dark);
    width: 100%;
    padding: 100px 0;
}

.start-info-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
    display: grid;
    grid-template-columns: 555px 672px;
    grid-template-rows: auto auto;
    justify-content: space-between;
    align-items: start;
    row-gap: 60px;
}

/* Row 1: Badge & Text */
.start-info-left-top {
    display: flex;
    align-items: flex-start;
}

.start-info-badge {
    font-family: var(--font-main);
    font-size: var(--font-size-badge);
    font-weight: 450;
    color: var(--text-dark);
    text-transform: uppercase;
}

.start-info-right-top {
    display: flex;
    flex-direction: column;
}

.start-info-title {
    font-size: var(--font-size-section-title);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.start-info-description {
    font-size: var(--font-size-start-info-desc);
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-dark-muted-heavy);
    margin-bottom: 20px;
    max-width: 480px;
}

.start-info-notice {
    display: flex;
    align-items: center;
    background-color: var(--accent-green);
    padding: 24px;
    gap: 24px;
    margin-top: 32px;
}

.start-info-notice-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.start-info-notice-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.start-info-notice-title {
    font-family: var(--font-main);
    font-size: var(--font-size-body-lg);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.start-info-notice-text {
    font-family: var(--font-main);
    font-size: var(--font-size-body-md);
    line-height: 1.5;
    color: var(--text-dark-muted-heavy);
    font-weight: 400;
}

/* Row 2: Steps List & Image */
.start-info-left-bottom {
    align-self: center;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.start-info-steps {
    display: flex;
    flex-direction: column;
}

.start-info-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    padding: 36px 0;
    border-top: 1px solid var(--border-light);
    align-items: start;
}

.start-info-step-num {
    font-family: var(--font-main);
    font-size: var(--font-size-badge);
    font-weight: 450;
    color: var(--text-dark);
    padding-top: 4px;
}

.start-info-step-content {
    display: flex;
    flex-direction: column;
}

.start-info-step-title {
    font-size: var(--font-size-start-step-title);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.start-info-step-desc {
    font-size: var(--font-size-body-sm);
    line-height: 1.5;
    color: var(--text-dark-muted);
    font-weight: 400;
}

.start-step-cta-btn {
    margin-top: 24px;
    align-self: flex-start;
}

.start-info-right-bottom {
    display: flex;
    width: 100%;
}

.start-info-image-wrapper {
    width: 100%;
    aspect-ratio: 672 / 500;
    border-radius: 12px;
    overflow: hidden;
}

.start-info-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Responsive Overrides */
@media (max-width: 1199px) {
    .start-info-container {
        grid-template-columns: 420px 480px;
        row-gap: 50px;
    }

    .start-info-step {
        grid-template-columns: 60px 1fr;
        padding: 30px 0;
    }

    .start-info-image-wrapper {
        aspect-ratio: 480 / 380;
    }

    .start-info-notice {
        padding: 24px;
        gap: 20px;
    }

    .start-info-notice-title {
        font-size: 18px;
    }

    .start-info-notice-text {
        font-size: 16px;
    }
}

@media (max-width: 991px) {
    .start-info-section {
        padding: 70px 0;
    }

    .start-info-container {
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    .start-info-left-top,
    .start-info-right-top,
    .start-info-left-bottom,
    .start-info-right-bottom {
        display: contents;
    }

    .start-info-badge {
        order: 1;
    }

    .start-info-text-block {
        order: 2;
    }

    .start-info-left-bottom {
        align-self: stretch;
    }

    .start-info-title {
        font-size: var(--font-size-section-title);
        margin-bottom: 20px;
    }

    .start-info-image-wrapper {
        order: 3;
        aspect-ratio: 16 / 10;
        width: 100%;
        border-radius: 12px;
        overflow: hidden;
    }

    .start-info-steps {
        order: 4;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .start-info-section {
        padding: 60px 0;
    }

    .start-info-step {
        grid-template-columns: 40px 1fr;
        gap: 16px;
        padding: 20px 0;
    }

    .start-info-step-desc {
        font-size: var(--font-size-body-xs);
    }

    .start-info-notice {
        padding: 20px;
        gap: 16px;
        margin-top: 24px;
    }

    .start-info-notice-title {
        font-size: 16px;
    }

    .start-info-notice-text {
        font-size: 14px;
    }
}

/* ==========================================================================
   17. WHO LEADS / TEAM SECTION (SECTION 8.5)
   ========================================================================== */

.team-section {
    background-color: var(--bg-light-section);
    color: var(--text-dark);
    width: 100%;
    padding: 100px 0;
    overflow: hidden;
}

.team-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
}

.team-header {
    display: grid;
    grid-template-columns: 555px 672px;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 60px;
}

.team-header-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.team-badge {
    font-family: var(--font-main);
    font-size: var(--font-size-badge);
    font-weight: 450;
    color: var(--text-dark);
    text-transform: uppercase;
}

.team-nav {
    display: flex;
    gap: 8px;
}

.team-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 6px;
    background-color: var(--primary-blue);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.22s ease, transform 0.15s ease;
    flex-shrink: 0;
}

.team-nav-btn:hover {
    background-color: var(--primary-blue-hover);
    transform: scale(1.06);
}

.team-nav-btn:active {
    transform: scale(0.96);
}

.team-header-right {
    display: flex;
    flex-direction: column;
}

.team-main-title {
    font-size: var(--font-size-section-title);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.team-main-description {
    font-size: var(--font-size-body-sm);
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-dark-muted);
    max-width: 555px;
}

/* Slider viewport and track */
.team-slider-viewport {
    width: auto;
    margin-left: calc(-1 * var(--container-padding-desktop));
    margin-right: calc(-1 * var(--container-padding-desktop));
    padding-left: var(--container-padding-desktop);
    padding-right: var(--container-padding-desktop);
    overflow: visible;
}

.team-slider-track {
    display: flex;
    gap: 32px;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Individual Card */
.team-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    padding: 48px;
    min-height: 420px;
    width: 790px;
    flex: 0 0 790px;
    display: grid;
    grid-template-columns: 284px 1fr;
    gap: 32px;
}

.team-card-image-wrapper {
    width: 284px;
    height: 190px;
    border-radius: 4px;
    overflow: hidden;
}

.team-card-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.team-card-content {
    display: flex;
    flex-direction: column;
}

.team-card-name {
    font-size: var(--font-size-team-card-name);
    font-weight: 600;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.team-card-role {
    font-size: var(--font-size-body-sm);
    font-weight: 400;
    color: var(--text-dark-muted);
    margin-bottom: 16px;
}

.team-card-divider {
    width: 100%;
    height: 1px;
    background-color: var(--border-light);
    margin-bottom: 20px;
}

.team-card-bio {
    font-size: var(--font-size-body-sm);
    line-height: 1.6;
    color: var(--text-dark-muted);
    font-weight: 400;
    margin-bottom: 28px;
}

/* Call-to-action Button inside Card */
.team-cta-btn {
    display: inline-flex;
    align-items: center;
    height: 40px;
    padding: 4px 4px 4px 20px;
    background-color: #ffffff;
    color: #17171A;
    border: 1.5px solid var(--primary-blue);
    border-radius: 4px;
    font-size: 17px;
    font-weight: 500;
    gap: 14px;
    transition: var(--transition-smooth);
    width: fit-content;
    margin-top: auto;
}

.team-cta-btn>span:first-child {
    line-height: 1;
}

.team-cta-btn:hover {
    background-color: rgba(27, 86, 224, 0.05);
}

.team-cta-arrow-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: var(--primary-blue);
    border-radius: 2px;
    color: #ffffff;
    transition: var(--transition-smooth);
}

.team-cta-btn:hover .team-cta-arrow-wrapper svg {
    transform: translateX(2px);
}

.team-cta-arrow-wrapper svg {
    transition: transform 0.2s ease;
}

/* Responsive Overrides */
@media (max-width: 1439px) {
    .team-slider-viewport {
        overflow: hidden;
    }
}

@media (max-width: 1199px) {
    .team-header {
        grid-template-columns: 420px 480px;
        margin-bottom: 48px;
    }

    .team-card {
        width: 600px;
        flex: 0 0 600px;
        padding: 36px;
        grid-template-columns: 170px 1fr;
        gap: 24px;
    }

    .team-card-image-wrapper {
        width: 170px;
        height: 220px;
    }
}

@media (max-width: 991px) {
    .team-section {
        padding: 70px 0;
    }

    .team-header {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }

    .team-header-left,
    .team-header-right {
        display: contents;
    }

    .team-badge {
        order: 1;
    }

    .team-main-title {
        order: 2;
        margin-bottom: 12px;
    }

    .team-main-description {
        order: 3;
        margin-bottom: 24px;
    }

    .team-nav {
        order: 4;
        display: flex !important;
        gap: 8px;
        margin-bottom: 24px;
    }

    .team-slider-viewport {
        overflow: hidden;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
    }

    .team-slider-track {
        display: flex;
        flex-direction: row;
        gap: 0;
    }

    .team-card {
        width: 100%;
        flex: 0 0 100%;
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .team-section {
        padding: 60px 0;
    }

    .team-card {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 20px;
    }

    .team-card-image-wrapper {
        width: 100%;
        height: auto;
        max-width: 100%;
        aspect-ratio: 1.25 / 1;
        border-radius: 12px;
        margin: 0 0 12px 0;
    }

    .team-card-content {
        align-items: flex-start;
        text-align: left;
    }

    .team-card-role {
        margin-bottom: 12px;
    }

    .team-card-divider {
        margin-bottom: 16px;
    }

    .team-card-bio {
        margin-bottom: 20px;
    }
}

/* ==========================================================================
   18. MANIFESTO / QUOTE SECTION (SECTION 11)
   ========================================================================== */

.manifesto-section {
    background-color: var(--bg-light-section);
    color: var(--text-dark);
    width: 100%;
    padding: 100px 0;
}

.manifesto-container {
    width: 100%;
    max-width: 910px;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.manifesto-quote-icon {
    margin-bottom: 40px;
}

.manifesto-quote-icon svg {
    display: block;
}

.manifesto-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 100%;
}

.manifesto-content p {
    font-size: var(--font-size-body-lg);
    line-height: 1.6;
    font-weight: 400;
    color: var(--text-dark);
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .manifesto-section {
        padding: 70px 0;
    }

    .manifesto-content {
        gap: 24px;
    }

    .manifesto-content p {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .manifesto-section {
        padding: 60px 0;
    }

    .manifesto-container {
        padding: 0 16px;
    }

    .manifesto-quote-icon {
        margin-bottom: 24px;
    }

    .manifesto-content {
        gap: 20px;
    }

    .manifesto-content p {
        font-size: 16px;
        line-height: 1.5;
    }
}

/* ==========================================================================
   19. SECOND PRODUCT TICKER & FOOTER (SECTION 12 & FOOTER)
   ========================================================================== */

.product-ticker-section {
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 60px 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.product-ticker-heading {
    font-size: var(--font-size-start-step-title);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.product-ticker-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.product-ticker-track {
    display: flex;
    width: max-content;
    animation: marquee-animation 25s linear infinite;
}

.product-ticker-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
}

.product-ticker-content span {
    font-family: var(--font-main);
    font-size: 120px;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    line-height: 1;
}

.product-ticker-bullet {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: var(--text-dark);
    margin: 0 48px;
    flex-shrink: 0;
    border-radius: 2px;
}

.product-ticker-action {
    display: flex;
    justify-content: center;
    width: 100%;
}

.product-plus-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 4px;
    background-color: var(--primary-blue);
    color: #ffffff;
    border: none;
    cursor: pointer;
    transition: background-color 0.22s ease, transform 0.15s ease;
}

.product-plus-btn:hover {
    background-color: var(--primary-blue-hover);
    transform: scale(1.06);
}

.product-plus-btn:active {
    transform: scale(0.96);
}

/* Footer Section */
.footer-section {
    background-color: var(--bg-dark-card);
    color: #ffffff;
    width: 100%;
    padding: 45px 0;
}

.footer-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.footer-logo a {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
}

.footer-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #2B2D2E;
    border-radius: 8px;
    color: #ffffff;
    transition: var(--transition-smooth);
}

.footer-social-link:hover {
    background-color: var(--primary-blue);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer-copyright {
    display: flex;
    justify-content: flex-end;
    font-size: var(--font-size-body-sm);
    color: #ffffff;
    font-weight: 400;
}

/* Responsive Overrides */
@media (max-width: 1199px) {
    .product-ticker-content span {
        font-size: 80px;
    }

    .product-ticker-bullet {
        width: 18px;
        height: 18px;
        margin: 0 36px;
    }
}

@media (max-width: 991px) {
    .product-ticker-section {
        padding: 50px 0;
    }

    .product-ticker-heading {
        margin-bottom: 30px;
    }

    .product-ticker-content span {
        font-size: 60px;
    }

    .product-ticker-bullet {
        width: 14px;
        height: 14px;
        margin: 0 28px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        row-gap: 24px;
        justify-items: center;
    }

    .footer-logo,
    .footer-copyright {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .product-ticker-section {
        padding: 40px 0;
    }

    .product-ticker-content span {
        font-size: 40px;
    }

    .product-ticker-bullet {
        width: 10px;
        height: 10px;
        margin: 0 20px;
    }

    .footer-container {
        padding: 0 16px;
    }
}

/* ==========================================================================
   17. ADULTS PAGE SPECIFIC STYLES
   ========================================================================== */

/* Hero adults subtext card */
.hero-card-right-adults {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    height: 100%;
}

.hero-adults-subtext {
    font-family: var(--font-main);
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

@media (min-width: 1200px) {
    body.audience-adults .hero-card {
        grid-template-columns: 1.25fr 1fr;
        gap: 2px;
    }

    body.audience-adults .hero-card-title {
        white-space: nowrap;
    }

    body.audience-adults .hero-adults-subtext {
        font-size: 22px;
        max-width: 580px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    body.audience-adults .hero-card {
        grid-template-columns: 1.25fr 1fr;
        gap: 40px;
    }

    body.audience-adults .hero-card-title {
        font-size: 54px;
        white-space: nowrap;
    }

    body.audience-adults .hero-adults-subtext {
        font-size: 18px;
        max-width: 480px;
    }
}

@media (max-width: 991px) {
    .hero-card-right-adults {
        padding: 24px 0 0 0;
    }

    body.audience-adults .hero-adults-subtext {
        font-size: 20px;
        max-width: 100%;
        text-align: left;
    }

    body.audience-adults .hero-card-title {
        text-align: center;
    }
}

/* Blue bullet points list */
.blue-bullet-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.blue-bullet-list li {
    position: relative;
    padding-left: 28px;
    font-size: 20px;
    line-height: 1.5;
    color: var(--text-dark);
    font-weight: 500;
}

.blue-bullet-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-blue);
    /* #4D03FA */
    border-radius: 0;
    /* square bullets */
}

@media (max-width: 767px) {
    .blue-bullet-list li {
        font-size: 16px;
        padding-left: 20px;
    }

    .blue-bullet-list li::before {
        top: 7px;
        width: 6px;
        height: 6px;
    }

    .hero-card {
        align-items: flex-start;
    }

    .hero-card-left {
        align-items: flex-start;
    }
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-white);
    color: var(--text-dark);
    width: 100%;
    padding: 100px 0;
}

.faq-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
    display: grid;
    grid-template-columns: 350px 1fr;
    justify-content: space-between;
    align-items: start;
}

.faq-left {
    display: flex;
    flex-direction: column;
}

.faq-badge {
    font-family: var(--font-main);
    font-size: var(--font-size-badge);
    font-weight: 450;
    color: var(--text-dark);
    text-transform: uppercase;
}

.faq-right {
    display: flex;
    flex-direction: column;
    max-width: 760px;
}

.faq-title {
    font-size: var(--font-size-section-title);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.faq-intro {
    font-size: var(--font-size-body-sm);
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.faq-details {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 600;
    margin: 24px 0 32px 0;
    color: var(--text-dark);
}

.faq-cta-btn {
    align-self: flex-start;
}

@media (max-width: 991px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .faq-left,
    .faq-right {
        display: contents;
    }

    .faq-badge {
        order: 1;
        margin-bottom: 12px;
    }

    .faq-title {
        order: 2;
        margin-bottom: 20px;
    }

    .faq-intro {
        order: 3;
        margin-bottom: 20px;
    }

    .faq-right .blue-bullet-list {
        order: 4;
        margin-bottom: 24px;
    }

    .faq-details {
        order: 5;
        margin-bottom: 24px;
        font-size: 18px;
    }

    .faq-cta-btn {
        order: 6;
    }
}

@media (max-width: 767px) {
    .faq-details {
        font-size: 16px;
    }
}

/* Goal & Result Section (ЦЕЛЬ И РЕЗУЛЬТАТ) */
.result-section {
    background-color: var(--accent-green);
    /* #EDFB97 */
    padding: 80px 0;
    width: 100%;
    position: relative;
}

.result-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--container-padding-desktop);
}

.result-badge-wrapper {
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.result-badge {
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 16px 32px;
    border-radius: 16px;
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    white-space: nowrap;
}

/* Pin image on top of result badge */
.result-badge::before {
    content: "";
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%) rotate(3deg);
    width: 80px;
    height: 40px;
    background-image: url('images/image 17.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 12;
    pointer-events: none;
}

.result-card-content {
    display: grid;
    grid-template-columns: 555px 1fr;
    gap: 60px;
    align-items: center;
}

.result-photo {
    width: 555px;
    height: 555px;
    border-radius: 24px;
    overflow: hidden;
    flex-shrink: 0;
}

.result-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.result-text-block {
    display: flex;
    flex-direction: column;
}

.result-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.result-description {
    font-size: 18px;
    line-height: 1.5;
    color: rgba(23, 23, 26, 0.8);
    margin-bottom: 32px;
    max-width: 680px;
}

.result-signature-wrapper {
    display: flex;
    justify-content: flex-start;
}

.result-signature {
    opacity: 0.95;
    width: auto;
    height: auto;
    max-width: 250px;
}

@media (max-width: 1199px) {
    .result-card-content {
        grid-template-columns: 450px 1fr;
        gap: 40px;
    }

    .result-photo {
        width: 450px;
        height: 450px;
    }

    .result-title {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .result-section {
        padding: 50px 0;
    }

    .result-card-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .result-photo {
        width: 100%;
        max-width: 555px;
        height: auto;
        aspect-ratio: 1 / 1;
        margin: 0 auto;
    }

    .result-title {
        font-size: 32px;
        text-align: center;
    }

    .result-description {
        font-size: 16px;
        text-align: center;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .result-signature-wrapper {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .result-badge {
        font-size: 16px;
        padding: 12px 24px;
    }

    .result-badge::before {
        width: 60px;
        height: 30px;
        top: -24px;
    }

    .result-badge-wrapper {
        top: -20px;
    }

    .result-photo {
        width: 100%;
        max-width: 320px;
        aspect-ratio: 1 / 1;
    }

    .result-title {
        font-size: 24px;
    }
}

/* Fix double bullets when lists are outputted by ACF Wysiwyg or overridden by the theme */
.benefit-list,
.benefit-list ul,
.benefit-list li,
.step-benefit-list,
.step-benefit-list ul,
.step-benefit-list li,
.blue-bullet-list,
.blue-bullet-list ul,
.blue-bullet-list li {
    list-style: none !important;
    list-style-type: none !important;
}