/* ============================================
   ChampionCamp - Design System CSS
   Serif Editorial Style + Brand Colors
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Source+Sans+3:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Brand Colors */
    --cc-yellow: #FFE114;
    --cc-yellow-dark: #E5CA00;
    --cc-yellow-light: #FFF176;
    --cc-teal: #00D7BD;
    --cc-teal-dark: #00B89E;
    --cc-teal-light: #4EECD6;
    --cc-blue: #00A4DC;
    --cc-blue-dark: #008BBB;
    --cc-blue-light: #4DC4ED;
    --cc-pink: #FD24A9;
    --cc-pink-dark: #D91A8F;
    --cc-pink-light: #FE6BC8;

    /* Design System Tokens */
    --background: #FAFAF8;
    --foreground: #1A1A1A;
    --muted: #F5F3F0;
    --muted-foreground: #6B6B6B;
    --accent: #FFE114;
    --accent-hover: #E5CA00;
    --accent-foreground: #1A1A1A;
    --border: #E8E4DF;
    --border-hover: #D1CCC4;
    --card: #FFFFFF;
    --ring: #FFE114;

    /* Typography */
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(26,26,26,0.04);
    --shadow-md: 0 4px 12px rgba(26,26,26,0.06);
    --shadow-lg: 0 8px 24px rgba(26,26,26,0.08);
    --shadow-xl: 0 16px 40px rgba(26,26,26,0.1);
    --shadow-accent: 0 4px 16px rgba(255,225,20,0.25);

    /* Spacing */
    --section-py: 5rem;
    --container-max: 72rem;
    --container-narrow: 64rem;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 72px;
}

body {
    font-family: var(--font-sans);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--foreground);
    background-color: var(--background);
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

/* Paper Texture Overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Ambient Glow */
body::after {
    content: '';
    position: fixed;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,225,20,0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--foreground);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; font-weight: 600; }

p { margin-bottom: 1rem; }

a {
    color: var(--cc-blue);
    text-decoration: none;
    transition: color 0.2s ease;
}
a:hover { color: var(--cc-blue-dark); }

/* Small Caps Label */
.small-caps {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Section Label with lines */
.section-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.section-label::before,
.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}
.section-label span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cc-blue);
    white-space: nowrap;
}

/* ==================== LAYOUT ==================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: var(--container-narrow);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-py) 0;
    position: relative;
}

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

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 248, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Only transparent when at top of page (not scrolled) */
.navbar.at-top {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
}

.navbar.scrolled {
    background: rgba(250, 250, 248, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--border);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none !important;
    flex-shrink: 0;
}

.navbar-logo img {
    height: 36px;
    width: auto;
    transition: transform 0.2s ease;
}

.navbar-logo:hover img {
    transform: scale(1.05);
}

.navbar-logo span {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    transition: color 0.3s ease;
}

/* White text only when at top (hero area) */
.navbar.at-top .navbar-logo span {
    color: #FFFFFF;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
}

.navbar-links li {
    position: relative;
}

.navbar-links a {
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--muted-foreground);
    transition: color 0.2s ease;
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    display: block;
    position: relative;
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--cc-pink);
    border-radius: 2px;
    transition: width 0.25s ease;
}

.navbar-links a:hover {
    color: var(--foreground);
}

.navbar-links a:hover::after {
    width: 16px;
}

/* White nav links only when at top */
.navbar.at-top .navbar-links a {
    color: rgba(255, 255, 255, 0.7);
}

.navbar.at-top .navbar-links a:hover {
    color: #FFFFFF;
}

.navbar.at-top .navbar-links a:hover::after {
    background: var(--cc-yellow);
}

/* CTA Button */
.navbar-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.25rem;
    background: var(--cc-yellow);
    color: var(--foreground) !important;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none !important;
    white-space: nowrap;
}

.navbar-cta:hover {
    background: var(--cc-yellow-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 225, 20, 0.3);
}

/* CTA when at top (hero area) */
.navbar.at-top .navbar-cta {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #FFFFFF !important;
}

.navbar.at-top .navbar-cta:hover {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    padding: 0.4rem;
    color: var(--foreground);
    transition: all 0.2s ease;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    background: var(--muted);
}

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

/* White hamburger only when at top */
.navbar.at-top .mobile-menu-btn {
    border-color: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
}

.navbar.at-top .mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Panel */
.mobile-menu {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    z-index: 999;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    max-height: calc(100vh - 64px);
}

.mobile-menu.active {
    display: block;
    animation: menuSlideIn 0.3s ease;
}

.mobile-menu__links {
    padding: 0.5rem 0;
}

.mobile-menu__links a {
    display: block;
    padding: 0.875rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 500;
    color: var(--foreground);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-menu__links a:last-child {
    border-bottom: none;
}

.mobile-menu__links a:hover,
.mobile-menu__links a:active {
    color: var(--cc-pink);
    background: rgba(253, 36, 169, 0.04);
}

.mobile-menu__cta {
    padding: 0.75rem 1.5rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-menu__cta .btn-primary {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.875rem;
    font-size: 0.95rem;
}

@keyframes menuSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==================== HERO SLIDER ==================== */
.hero-slider {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Slides Container */
.hero-slider__slides {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slider__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1.2s ease-in-out, transform 8s ease-out;
    will-change: opacity, transform;
}

.hero-slider__slide.active {
    opacity: 1;
    transform: scale(1);
    animation: heroKenBurns 8s ease-out forwards;
}

@keyframes heroKenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* Overlay */
.hero-slider__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 12, 0.82) 0%,
        rgba(10, 10, 12, 0.65) 40%,
        rgba(10, 10, 12, 0.45) 70%,
        rgba(10, 10, 12, 0.35) 100%
    );
}

.hero-slider__overlay::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, rgba(10,10,12,0.9) 0%, transparent 100%);
}

/* Content */
.hero-slider__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-slider__grid {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 200px);
}

.hero-slider__text {
    max-width: 720px;
}

/* Badge Base */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--cc-pink);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* Badge Override for Slider */
.hero-slider .hero-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--cc-pink);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    margin-bottom: 1.5rem;
    display: inline-flex;
    animation: badgeFadeIn 0.8s ease-out 0.3s both;
}

.hero-slider .hero-badge span {
    color: var(--cc-pink-light);
}

@keyframes badgeFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Title */
.hero-slider__title {
    font-family: var(--font-serif) !important;
    font-size: clamp(2.75rem, 6vw, 4.5rem) !important;
    font-weight: 700 !important;
    line-height: 1.08 !important;
    color: #FFFFFF !important;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    animation: titleSlideUp 1s ease-out 0.5s both;
}

.hero-slider__title .highlight {
    color: var(--cc-yellow);
    position: relative;
    display: inline-block;
}

.hero-slider__title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--cc-yellow);
    opacity: 0.35;
    border-radius: 3px;
    z-index: -1;
}

@keyframes titleSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Description */
.hero-slider__desc {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin-bottom: 2.5rem;
    animation: descFadeIn 1s ease-out 0.7s both;
}

@keyframes descFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Actions */
.hero-slider__actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: actionsFadeIn 1s ease-out 0.9s both;
}

@keyframes actionsFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-hero {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(253, 36, 169, 0.35);
}

.btn-hero:hover {
    box-shadow: 0 6px 30px rgba(253, 36, 169, 0.5);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.1rem 2rem;
    color: white !important;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    text-decoration: none !important;
    min-height: 44px;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.5);
    color: white !important;
    transform: translateY(-2px);
}

/* Stats */
.hero-slider__stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    animation: statsFadeIn 1s ease-out 1.1s both;
    max-width: fit-content;
}

@keyframes statsFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-stat__number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--cc-yellow);
    line-height: 1;
}

.hero-stat__label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.35rem;
}

.hero-stat__divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

/* Slide Indicators */
.hero-slider__indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-slider__dot.active {
    background: var(--cc-yellow);
    border-color: var(--cc-yellow);
    transform: scale(1.25);
    box-shadow: 0 0 12px rgba(255, 225, 20, 0.5);
}

.hero-slider__dot:hover:not(.active) {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.hero-slider__scroll {
    position: absolute;
    bottom: 36px;
    right: 40px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-slider__scroll span {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    writing-mode: vertical-rl;
}

.hero-slider__scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5) 0%, transparent 100%);
    position: relative;
}

.hero-slider__scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 3px;
    height: 12px;
    background: var(--cc-yellow);
    border-radius: 3px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@keyframes scrollDot {
    0% { top: 0; opacity: 1; }
    100% { top: 38px; opacity: 0; }
}

/* Hero Responsive */
@media (max-width: 768px) {
    .hero-slider {
        min-height: 100svh;
    }

    .hero-slider__content {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .hero-slider__grid {
        min-height: calc(100svh - 200px);
    }

    .hero-slider__title {
        font-size: clamp(2rem, 8vw, 3rem) !important;
        margin-bottom: 1rem;
    }

    .hero-slider__desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-slider__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }

    .btn-hero,
    .btn-hero-secondary {
        justify-content: center;
        text-align: center;
    }

    .hero-slider__stats {
        gap: 1.25rem;
        padding: 1rem 1.25rem;
        max-width: 100%;
        justify-content: center;
    }

    .hero-stat__number {
        font-size: 1.35rem;
    }

    .hero-stat__label {
        font-size: 0.65rem;
    }

    .hero-slider__scroll {
        display: none;
    }

    .hero-slider__indicators {
        bottom: 24px;
    }

    .hero-slider__overlay {
        background: linear-gradient(
            180deg,
            rgba(10, 10, 12, 0.75) 0%,
            rgba(10, 10, 12, 0.55) 40%,
            rgba(10, 10, 12, 0.7) 100%
        );
    }
}

/* ==================== BUTTONS ==================== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: var(--cc-yellow);
    color: var(--foreground);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
    touch-action: manipulation;
    min-height: 44px;
    text-decoration: none;
}

.btn-primary:hover {
    background: var(--cc-yellow-dark);
    box-shadow: var(--shadow-accent);
    transform: translateY(-2px);
    color: var(--foreground);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--foreground);
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid var(--foreground);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    touch-action: manipulation;
    min-height: 44px;
    text-decoration: none;
}

.btn-secondary:hover {
    background: var(--muted);
    border-color: var(--cc-blue);
    color: var(--cc-blue);
}

.btn-pink {
    background: var(--cc-pink);
    color: white;
}

.btn-pink:hover {
    background: var(--cc-pink-dark);
    box-shadow: 0 4px 16px rgba(253,36,169,0.25);
    color: white;
}

/* ==================== CARDS ==================== */
.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--border-hover);
}

.card-accent-top {
    border-top: 3px solid var(--cc-yellow);
}

.card-accent-teal {
    border-top: 3px solid var(--cc-teal);
}

.card-accent-blue {
    border-top: 3px solid var(--cc-blue);
}

.card-accent-pink {
    border-top: 3px solid var(--cc-pink);
}

/* ==================== PROBLEM SECTION ==================== */
.section-problems {
    background: var(--foreground);
    color: var(--background);
}

.section-problems h2 {
    color: var(--background);
}

.section-problems .section-label span {
    color: var(--cc-yellow);
}

.section-problems .section-label::before,
.section-problems .section-label::after {
    background: rgba(255,255,255,0.15);
}

.problem-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    font-size: 0.975rem;
    color: rgba(255,255,255,0.85);
    transition: all 0.2s ease;
}

.problem-list li:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
}

.problem-list li::before {
    content: '×';
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253,36,169,0.15);
    color: var(--cc-pink);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.875rem;
}

.problem-closing {
    text-align: center;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.problem-closing p {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--cc-pink-light);
}

/* ==================== IMPACT SECTION ==================== */
.section-impact {
    background: linear-gradient(160deg, #0D0D0F 0%, #1A1A2E 50%, #16213E 100%);
    color: var(--background);
    position: relative;
    overflow: hidden;
}

.section-impact::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253,36,169,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.section-impact::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,164,220,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.section-impact .section-label span {
    color: var(--cc-pink);
}

.section-impact .section-label::before,
.section-impact .section-label::after {
    background: rgba(255,255,255,0.1);
}

.impact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.impact-header h2 {
    color: #FFFFFF;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 0.75rem;
}

.impact-subtitle {
    color: rgba(255,255,255,0.5);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.impact-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.impact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cc-pink), var(--cc-pink-light));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.impact-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(253, 36, 169, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(253, 36, 169, 0.1);
}

.impact-card:hover::before {
    opacity: 1;
}

.impact-card__number {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(253, 36, 169, 0.1);
    border-radius: 50%;
    font-size: 1.75rem;
}

.impact-card__text {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 0;
}

.impact-quote {
    position: relative;
    z-index: 1;
}

.impact-quote__inner {
    background: linear-gradient(135deg, rgba(253,36,169,0.08) 0%, rgba(0,164,220,0.08) 100%);
    border: 1px solid rgba(253, 36, 169, 0.2);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.impact-quote__inner::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-family: var(--font-serif);
    font-size: 8rem;
    color: rgba(253, 36, 169, 0.1);
    line-height: 1;
}

.impact-quote__line1 {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.impact-quote__line2 {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    line-height: 1.5;
    color: var(--cc-yellow);
    font-weight: 600;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .impact-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .impact-card {
        padding: 1.5rem 1rem;
    }
    .impact-quote__inner {
        padding: 2rem 1.5rem;
    }
}

/* ==================== ABOUT SECTION ==================== */
.section-about {
    background: var(--background);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.about-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--muted);
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.about-features li::before {
    content: '✦';
    color: var(--cc-teal);
    font-size: 1rem;
}

.about-visual {
    position: relative;
}

.about-visual-card {
    background: linear-gradient(135deg, var(--cc-teal) 0%, var(--cc-blue) 100%);
    border-radius: 16px;
    padding: 3rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
}

.about-visual-card h3 {
    font-size: 3rem;
    color: white;
    margin-bottom: 0.5rem;
}

.about-method {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--muted);
    border-left: 3px solid var(--cc-teal);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: var(--muted-foreground);
}

/* ==================== BENEFITS SECTION ==================== */
.section-benefits {
    background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
}

.benefits-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-header h2 {
    margin-bottom: 0.5rem;
}

.benefits-subtitle {
    color: var(--muted-foreground);
    font-size: 1.1rem;
    margin-bottom: 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 0;
}

.benefit-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cc-teal), var(--cc-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: var(--cc-teal);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card__img {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.benefit-card:hover .benefit-card__img img {
    transform: scale(1.12);
}

.benefit-card__title {
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--foreground);
    line-height: 1.4;
    margin: 0;
}

.benefits-cta {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.benefits-cta p {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .benefit-card {
        padding: 1.5rem 1rem;
    }
    .benefit-card__img {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .benefit-card {
        display: flex;
        text-align: left;
        padding: 1.25rem;
        gap: 1rem;
    }
    .benefit-card__img {
        width: 56px;
        height: 56px;
        margin: 0;
        flex-shrink: 0;
    }
    .benefit-card__content {
        display: flex;
        align-items: center;
    }
}

/* ==================== ACTIVITIES SECTION ==================== */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.activity-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cc-yellow), var(--cc-teal), var(--cc-blue), var(--cc-pink));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.activity-card:hover::before {
    opacity: 1;
}

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

.activity-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    border-radius: 16px;
    font-size: 1.75rem;
}

.activity-card:nth-child(1) .activity-icon { background: rgba(255,225,20,0.12); }
.activity-card:nth-child(2) .activity-icon { background: rgba(0,215,189,0.12); }
.activity-card:nth-child(3) .activity-icon { background: rgba(253,36,169,0.12); }
.activity-card:nth-child(4) .activity-icon { background: rgba(0,164,220,0.12); }
.activity-card:nth-child(5) .activity-icon { background: rgba(255,225,20,0.12); }
.activity-card:nth-child(6) .activity-icon { background: rgba(0,215,189,0.12); }

.activity-card h4 {
    font-family: var(--font-serif);
    margin-bottom: 0.5rem;
}

.activity-card p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ==================== GALLERY SECTION ==================== */
.section-gallery {
    background: var(--foreground);
    color: var(--background);
}

.section-gallery h2 {
    color: var(--background);
}

.section-gallery .section-label span {
    color: var(--cc-teal);
}

.section-gallery .section-label::before,
.section-gallery .section-label::after {
    background: rgba(255,255,255,0.1);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.4) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.lightbox-nav:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ==================== TESTIMONIALS ==================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 0.5rem;
    left: 1.25rem;
    font-family: var(--font-serif);
    font-size: 4rem;
    color: var(--cc-yellow);
    opacity: 0.4;
    line-height: 1;
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    color: var(--foreground);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cc-yellow), var(--cc-teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.testimonial-author-info h5 {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
}

.testimonial-author-info p {
    font-size: 0.8rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ==================== TRAINERS ==================== */
.trainers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.trainer-card {
    text-align: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
}

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

.trainer-photo {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid var(--border);
    transition: border-color 0.3s ease;
}

.trainer-card:hover .trainer-photo {
    border-color: var(--cc-yellow);
}

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

.trainer-card h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.trainer-card .trainer-title {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cc-blue);
    margin-bottom: 0.75rem;
}

.trainer-card .trainer-bio {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* ==================== PRICING SECTION ==================== */
.section-pricing {
    background: linear-gradient(135deg, var(--muted) 0%, var(--background) 100%);
}

.pricing-card {
    max-width: 560px;
    margin: 2rem auto 0;
    background: var(--card);
    border: 2px solid var(--cc-yellow);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--cc-yellow), var(--cc-teal), var(--cc-blue), var(--cc-pink));
}

.pricing-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--cc-pink);
    color: white;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.pricing-normal {
    font-size: 1rem;
    color: var(--muted-foreground);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.pricing-amount {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--foreground);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.pricing-amount small {
    font-size: 1.25rem;
    font-weight: 400;
}

.pricing-included {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    padding: 1.5rem;
    background: var(--muted);
    border-radius: 10px;
}

.pricing-included li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    font-size: 0.95rem;
}

.pricing-included li::before {
    content: '✔';
    flex-shrink: 0;
    color: var(--cc-teal);
    font-weight: 700;
}

.pricing-included li + li {
    border-top: 1px solid var(--border);
}

/* Seat Counter */
.seat-counter {
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(253,36,169,0.04);
    border: 1px solid rgba(253,36,169,0.15);
    border-radius: 12px;
    text-align: center;
}

.seat-counter-number {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: var(--cc-pink);
    line-height: 1;
}

.seat-counter-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted-foreground);
    margin-top: 0.25rem;
}

/* Guarantee */
.guarantee-box {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(0,215,189,0.05);
    border: 1px solid rgba(0,215,189,0.2);
    border-radius: 12px;
    text-align: center;
}

.guarantee-box h4 {
    font-family: var(--font-serif);
    color: var(--cc-teal-dark);
    margin-bottom: 0.5rem;
}

.guarantee-box p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
    margin-bottom: 0;
}

/* ==================== FORM SECTION ==================== */
.section-form {
    background: var(--foreground);
    color: var(--background);
}

.section-form h2 {
    color: var(--background);
}

.section-form .section-label span {
    color: var(--cc-yellow);
}

.section-form .section-label::before,
.section-form .section-label::after {
    background: rgba(255,255,255,0.1);
}

.form-container {
    max-width: 520px;
    margin: 2rem auto 0;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select {
    width: 100%;
    height: 48px;
    padding: 0 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    color: white;
    font-family: var(--font-sans);
    font-size: 1rem;
    transition: all 0.2s ease;
    outline: none;
}

.form-group input::placeholder {
    color: rgba(255,255,255,0.35);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--cc-yellow);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 3px rgba(255,225,20,0.1);
}

.form-group input.error {
    border-color: var(--cc-pink);
    box-shadow: 0 0 0 3px rgba(253,36,169,0.1);
}

.form-error-text {
    font-size: 0.8rem;
    color: var(--cc-pink-light);
    margin-top: 0.375rem;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem;
    margin-top: 0.5rem;
}

/* Form success/error messages */
.form-message {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(0,215,189,0.1);
    border: 1px solid rgba(0,215,189,0.3);
    color: var(--cc-teal-light);
}

.form-message.error {
    display: block;
    background: rgba(253,36,169,0.1);
    border: 1px solid rgba(253,36,169,0.3);
    color: var(--cc-pink-light);
}

/* ==================== FAQ SECTION ==================== */
.faq-list {
    max-width: 700px;
    margin: 2rem auto 0;
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--foreground);
    touch-action: manipulation;
    min-height: 44px;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--cc-blue);
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 1rem;
    color: var(--muted-foreground);
    transition: all 0.2s ease;
}

.faq-item.active .faq-icon {
    background: var(--cc-yellow);
    border-color: var(--cc-yellow);
    color: var(--foreground);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.25rem;
}

.faq-answer p {
    color: var(--muted-foreground);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ==================== CLOSING SECTION ==================== */
/* ==================== CLOSING CTA SECTION ==================== */
.closing-cta {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
    text-align: center;
}

.closing-cta__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(2px);
    transform: scale(1.05);
}

.closing-cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 14, 0.92) 0%,
        rgba(10, 10, 14, 0.85) 40%,
        rgba(10, 10, 14, 0.92) 100%
    );
    z-index: 1;
}

.closing-cta__content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    margin: 0 auto;
}

/* Quote Mark */
.closing-cta__quote-mark {
    font-family: var(--font-serif);
    font-size: 6rem;
    line-height: 0.6;
    color: rgba(253, 36, 169, 0.2);
    margin-bottom: 1rem;
}

/* Pre-title */
.closing-cta__pretitle {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 2rem;
}

/* Lines */
.closing-cta__lines {
    margin-bottom: 2.5rem;
}

.closing-cta__line {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
}

.closing-cta__line--accent {
    color: var(--cc-pink);
    font-weight: 600;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
}

/* Divider */
.closing-cta__divider {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--cc-pink), var(--cc-yellow));
    margin: 0 auto 2.5rem;
    border-radius: 3px;
}

/* Message */
.closing-cta__message {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.closing-cta__decision {
    font-family: var(--font-sans);
    font-size: 1.15rem;
    font-weight: 700;
    color: #FFFFFF;
    letter-spacing: 0.02em;
    margin-bottom: 2.5rem;
}

/* Actions */
.closing-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.btn-closing {
    padding: 1.25rem 3.5rem;
    font-size: 1.15rem;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(253, 36, 169, 0.4);
    transition: all 0.3s ease;
}

.btn-closing:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(253, 36, 169, 0.55);
}

/* Seats Chip */
.closing-cta__seats {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.closing-cta__seat-dot {
    width: 8px;
    height: 8px;
    background: var(--cc-teal);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@media (max-width: 768px) {
    .closing-cta {
        padding: 5rem 0;
    }
    .closing-cta__quote-mark {
        font-size: 4rem;
    }
    .btn-closing {
        padding: 1rem 2.5rem;
        font-size: 1rem;
        width: 100%;
    }
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--foreground);
    color: rgba(255,255,255,0.6);
    padding: 3rem 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer-logo span {
    font-family: var(--font-serif);
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.footer-copyright {
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--cc-yellow);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== RESPONSIVE ==================== */

/* Tablet */
@media (max-width: 1024px) {
    :root {
        --section-py: 4rem;
    }

    .navbar-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding-top: 8rem;
        padding-bottom: 4rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .impact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

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

    .trainers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

/* Mobile */
@media (max-width: 640px) {
    :root {
        --section-py: 3rem;
    }

    .container, .container-narrow {
        padding: 0 1rem;
    }

    .hero {
        padding-top: 7rem;
        padding-bottom: 3rem;
    }

    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.5rem; }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

    .problem-list {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

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

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

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .trainers-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trainer-photo {
        width: 120px;
        height: 120px;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .pricing-amount {
        font-size: 2.5rem;
    }

    .closing-lines p {
        font-size: 1.25rem;
    }

    .closing-lines p.emphasis {
        font-size: 1.5rem;
    }

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

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar-inner {
        height: 64px;
    }

    .navbar-logo img {
        height: 32px;
    }

    html {
        scroll-padding-top: 64px;
    }
}

/* ==================== LOADING SPINNER ==================== */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(26,26,26,0.2);
    border-top-color: var(--foreground);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.btn-loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-loading .spinner {
    margin-right: 0.5rem;
}
