/* ========================================
   CSS RESET & VARIABLES
   ======================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #515A2B;
    --primary-light: #6B7540;
    --primary-dark: #3A4120;
    --primary-muted: #515A2B1A;
    --cream: #FAF8F3;
    --warm-white: #FFFEF9;
    --sand: #F0EBE0;
    --text: #2C2C2C;
    --text-light: #5A5A5A;
    --text-muted: #8A8A8A;
    --accent: #C4A35A;
    --accent-light: #D4B86A;
    --accent-dark: #A8893E;
    --border: #E0DCD4;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --font-display: 'Cormorant', Georgia, serif;
    --font-body: 'Jost', -apple-system, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--warm-white);
    line-height: 1.7;
    font-weight: 400;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.3rem); }

.label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
}

/* ========================================
   UTILITY
   ======================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: 800px;
}

.text-center { text-align: center; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ========================================
   ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
    justify-content: center;
    line-height: 1.4;
}

.btn--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(81, 90, 43, 0.3);
}

.btn--primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(81, 90, 43, 0.35);
}

.btn--accent {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 4px 16px rgba(196, 163, 90, 0.3);
}

.btn--accent:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196, 163, 90, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: #fff;
}

.btn--large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

.btn__arrow {
    transition: transform var(--transition);
}

.btn:hover .btn__arrow {
    transform: translateX(4px);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(255, 254, 249, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
    padding: 10px 0;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    height: 44px;
    transition: opacity var(--transition);
}

.nav__logo:hover {
    opacity: 0.8;
}

.nav .btn {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.nav:not(.scrolled) .btn--primary {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.3);
}

.nav:not(.scrolled) .btn--primary:hover {
    background: rgba(255,255,255,0.25);
}

.nav.scrolled .btn--primary {
    background: var(--primary);
    box-shadow: 0 4px 16px rgba(81, 90, 43, 0.3);
}

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-dark);
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(58, 65, 32, 0.88) 0%,
        rgba(58, 65, 32, 0.65) 50%,
        rgba(58, 65, 32, 0.4) 100%
    );
    z-index: 2;
}

.hero__inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 140px 0 80px;
}

.hero__content {
    position: relative;
}

.hero__video {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    aspect-ratio: 16/9;
}

.hero__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 900px) {
    .hero__inner {
        grid-template-columns: 1fr;
        padding: 80px 0 40px;
    }

    .hero__video {
        max-width: 540px;
    }
}

.hero__label {
    display: inline-block;
    background: rgba(196, 163, 90, 0.2);
    border: 1px solid rgba(196, 163, 90, 0.4);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 28px;
}

.hero h1 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.hero h1 em {
    font-style: italic;
    color: var(--accent-light);
}

.hero__subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero__cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 48px;
}

.hero__hint {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero__trust-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: 0.7;
}

/* ========================================
   SOCIAL PROOF BAR
   ======================================== */
.proof-bar {
    background: var(--primary);
    padding: 28px 0;
    overflow: hidden;
}

.proof-bar__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.proof-bar__item {
    text-align: center;
    color: #fff;
}

.proof-bar__number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-light);
}

.proof-bar__text {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.8;
    margin-top: 4px;
}

.proof-bar__divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

/* ========================================
   PROBLEM SECTION
   ======================================== */
.problem {
    padding: 100px 0;
    background: var(--cream);
}

.problem__header {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.problem__header h2 {
    margin-top: 16px;
    color: var(--primary-dark);
}

.problem__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.problem__card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.problem__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.problem__icon {
    width: 48px;
    height: 48px;
    background: var(--primary-muted);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem__icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.problem__card h4 {
    margin-bottom: 10px;
    color: var(--primary-dark);
}

.problem__card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* ========================================
   SOLUTION / BENEFITS
   ======================================== */
.solution {
    padding: 100px 0;
    background: var(--warm-white);
}

.solution__header {
    max-width: 700px;
    margin: 0 auto 64px;
    text-align: center;
}

.solution__header h2 {
    margin-top: 16px;
}

.solution__header p {
    margin-top: 16px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.solution__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.benefit-card {
    text-align: center;
    padding: 44px 28px;
    border-radius: var(--radius-lg);
    background: var(--cream);
    border: 1px solid transparent;
    transition: all var(--transition);
}

.benefit-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card__icon svg {
    width: 28px;
    height: 28px;
    color: #fff;
}

.benefit-card h4 {
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========================================
   TRAINER SECTION
   ======================================== */
.trainer {
    padding: 100px 0;
    background: var(--primary-dark);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.trainer::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196,163,90,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.trainer__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.trainer__image-wrap {
    position: relative;
}

.trainer__image-wrap::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    right: 12px;
    bottom: 12px;
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    opacity: 0.3;
}

.trainer__image {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

.trainer__content {
    position: relative;
    z-index: 1;
}

.trainer__content h2 {
    margin-top: 16px;
    margin-bottom: 24px;
}

.trainer__content p {
    color: rgba(255,255,255,0.75);
    font-size: 1.02rem;
    margin-bottom: 16px;
    line-height: 1.75;
}

.trainer__credentials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

.credential {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.credential__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: rgba(196, 163, 90, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential__icon svg {
    width: 20px;
    height: 20px;
    color: var(--accent-light);
}

.credential__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-light);
    margin-bottom: 2px;
}

.credential__text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

/* ========================================
   COURSE CONTENTS
   ======================================== */
.modules {
    padding: 100px 0;
    background: var(--cream);
}

.modules__header {
    max-width: 700px;
    margin: 0 auto 64px;
    text-align: center;
}

.modules__header h2 {
    margin-top: 16px;
}

.modules__header p {
    margin-top: 16px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.modules__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.module-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--border);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: all var(--transition);
}

.module-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.module-card__number {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
}

.module-card h4 {
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.module-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ========================================
   GALLERY
   ======================================== */
.gallery {
    padding: 80px 0;
    background: var(--cream);
    overflow: hidden;
}

.gallery__header {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
}

.gallery__header h2 {
    margin-top: 16px;
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 280px;
    gap: 12px;
}

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: default;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

.gallery__item--wide {
    grid-column: span 2;
}

.gallery__caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 20px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(8px);
    transition: all var(--transition);
}

.gallery__item:hover .gallery__caption {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(3, 220px);
    }

    .gallery__item--wide {
        grid-column: span 1;
    }

    .gallery {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 220px);
    }
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
    padding: 100px 0;
    background: var(--warm-white);
}

.testimonials__header {
    max-width: 700px;
    margin: 0 auto 64px;
    text-align: center;
}

.testimonials__header h2 {
    margin-top: 16px;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.testimonial-card__body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.testimonial-card__stars svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    fill: var(--accent);
}

.testimonial-card__quote {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 20px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.testimonial-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
}

.testimonial-card__name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.testimonial-card__detail {
    font-size: 0.8rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonials {
        padding: 72px 0;
    }
}

/* ========================================
   PRICING / OFFER
   ======================================== */
.pricing {
    padding: 100px 0;
    background: var(--warm-white);
}

.pricing__header {
    max-width: 700px;
    margin: 0 auto 48px;
    text-align: center;
}

.pricing__header h2 {
    margin-top: 16px;
}

.pricing__card {
    max-width: 720px;
    margin: 0 auto;
    background: var(--warm-white);
    border-radius: var(--radius-xl);
    border: 2px solid var(--primary);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pricing__card-header {
    background: var(--primary);
    padding: 36px 44px;
    color: #fff;
    text-align: center;
}

.pricing__card-header h3 {
    color: #fff;
    font-size: 1.6rem;
}

.pricing__card-header p {
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

.pricing__card-body {
    padding: 44px;
}

.pricing__price-row {
    text-align: center;
    margin-bottom: 36px;
}

.pricing__anchor {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.pricing__anchor s {
    color: var(--text-muted);
}

.pricing__price {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.pricing__price-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 8px;
}

.pricing__features {
    list-style: none;
    margin-bottom: 36px;
}

.pricing__features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.98rem;
    color: var(--text);
}

.pricing__features li:last-child {
    border-bottom: none;
}

.pricing__check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.pricing__check svg {
    width: 12px;
    height: 12px;
    color: #fff;
}

.pricing__cta {
    text-align: center;
}

.pricing__cta .btn {
    width: 100%;
    max-width: 400px;
}

.pricing__guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.pricing__guarantee svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: 100px 0;
    background: var(--cream);
}

.faq__header {
    max-width: 700px;
    margin: 0 auto 56px;
    text-align: center;
}

.faq__header h2 {
    margin-top: 16px;
}

.faq__list {
    max-width: 720px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid var(--border);
}

.faq__question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: color var(--transition);
}

.faq__question:hover {
    color: var(--primary);
}

.faq__chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--text-muted);
}

.faq__item.open .faq__chevron {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__answer-inner {
    padding-bottom: 24px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq__item.open .faq__answer {
    max-height: 300px;
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
    padding: 100px 0;
    background: var(--primary-dark);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(196,163,90,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta__content {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.final-cta h2 {
    margin-top: 16px;
    margin-bottom: 20px;
}

.final-cta p {
    color: rgba(255,255,255,0.75);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
}

.final-cta .btn {
    margin-bottom: 16px;
}

.final-cta__hint {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: #1A1C10;
    padding: 48px 0;
    color: rgba(255,255,255,0.5);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer__logo {
    height: 32px;
    opacity: 0.6;
}

.footer__links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.footer__links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: rgba(255,255,255,0.8);
}

.footer__social {
    display: flex;
    gap: 16px;
}

.footer__social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.footer__social a:hover {
    border-color: var(--accent);
    background: rgba(196,163,90,0.1);
}

.footer__social svg {
    width: 16px;
    height: 16px;
    color: rgba(255,255,255,0.6);
}

.footer__bottom {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
    font-size: 0.8rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .trainer__grid {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .problem__grid,
    .solution__grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .trainer__image-wrap {
        max-width: 400px;
        margin: 0 auto;
    }

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

    .hero__content {
        padding: 0;
    }

    .proof-bar__inner {
        gap: 24px;
    }

    .proof-bar__divider {
        display: none;
    }

    .proof-bar__item {
        flex: 1;
        min-width: 100px;
    }

    .pricing__card-body {
        padding: 28px;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .problem,
    .solution,
    .modules,
    .pricing,
    .faq,
    .final-cta,
    .trainer {
        padding: 72px 0;
    }
}

@media (max-width: 480px) {
    .hero__trust {
        gap: 16px;
    }

    .hero__trust-item {
        font-size: 0.78rem;
    }

    .hero__cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn--large {
        padding: 16px 36px;
        font-size: 1rem;
        width: 100%;
    }

    .pricing__price {
        font-size: 2.8rem;
    }
}
