/**
 * Premium Design System
 * Inspired by high-end portfolio aesthetics
 */

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Colors - High contrast */
    --black: #0a0a0a;
    --white: #fafafa;
    --accent: #C6FF00;
    --accent-dim: rgba(198, 255, 0, 0.15);
    --gray: #666;
    --gray-light: #999;
    --gray-dark: #333;
    --border: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-display: 'Inter', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

    /* Sizing */
    --container: min(1400px, 90vw);
    --container-wide: min(1600px, 95vw);

    /* Timing */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration: 0.8s;
    --duration-fast: 0.4s;
}

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

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

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

img, video {
    max-width: 100%;
    display: block;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--white);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.15s var(--ease), width 0.3s var(--ease), height 0.3s var(--ease);
}

.cursor.hovering {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
}

.cursor-label {
    position: fixed;
    top: 0;
    left: 0;
    padding: 8px 16px;
    background: var(--white);
    color: var(--black);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 100px;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.cursor-label.visible {
    opacity: 1;
    transform: scale(1);
}

@media (max-width: 1024px) {
    .cursor, .cursor-label { display: none; }
    body { cursor: auto; }
}

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

.container-wide {
    width: var(--container-wide);
    margin: 0 auto;
}

.section {
    padding: clamp(80px, 15vh, 160px) 0;
}

.section-sm {
    padding: clamp(40px, 8vh, 80px) 0;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 24px 0;
}

.nav-inner {
    width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 48px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    opacity: 0.7;
    transition: opacity var(--duration-fast) var(--ease);
}

.nav-links a:hover {
    opacity: 1;
}

.nav-cta {
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    background: var(--accent);
    color: var(--black);
    border-radius: 100px;
    transition: opacity 0.2s ease;
}

.nav-cta:hover {
    opacity: 0.9;
}

/* Mobile nav */
.nav-toggle {
    display: none;
    width: 32px;
    height: 24px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.nav-toggle span {
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease);
}

@media (max-width: 768px) {
    .nav {
        mix-blend-mode: normal;
        background: transparent;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 98;
    }

    .nav-links::before {
        content: '';
        position: absolute;
        inset: 0;
        background: #0a0a0a;
        z-index: -1;
    }

    .nav-links.active {
        display: flex;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-links li {
        list-style: none;
    }

    .nav-links a {
        font-size: 28px;
        font-weight: 600;
        opacity: 1;
        color: var(--white);
    }

    .nav-toggle {
        display: flex;
        z-index: 101;
        position: relative;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    .nav-cta { display: none; }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 120px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--black) 0%, rgba(10, 10, 10, 0.8) 30%, rgba(10, 10, 10, 0.4) 100%);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: grayscale(30%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 32px;
}

.hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 10vw, 140px);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 40px;
    max-width: 80%;
}

.hero-title .accent {
    color: var(--accent);
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 400;
    color: var(--gray-light);
    max-width: 500px;
    line-height: 1.6;
    margin-bottom: 48px;
}

.hero-ctas {
    display: flex;
    gap: 24px;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: var(--accent);
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-primary .icon {
    transition: transform 0.2s ease;
}

.btn-primary:hover .icon {
    transform: translateX(4px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 40px;
    background: transparent;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid var(--border);
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

/* Hero Stats */
.hero-stats {
    position: absolute;
    right: 3%;
    top: 35%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 5;
}

.stat-item {
    text-align: right;
}

.stat-value {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 800;
    line-height: 1;
    color: var(--accent);
}

.stat-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 6px;
}

@media (max-width: 1024px) {
    .hero-stats {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: flex-start;
        gap: 48px;
        margin-top: 48px;
        padding-top: 32px;
        border-top: 1px solid var(--border);
    }
    .stat-item { text-align: left; }
    .stat-value { font-size: clamp(32px, 5vw, 48px); }
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
    padding: 14px 0;
    background: var(--accent);
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 48px;
    animation: marquee 25s linear infinite;
    width: max-content;
}

.marquee-item {
    display: flex;
    align-items: center;
    gap: 48px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--black);
    white-space: nowrap;
}

.marquee-item::after {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--black);
    border-radius: 50%;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   TEXT REVEAL STYLES
   ============================================ */
.reveal-text {
    overflow: hidden;
}

.reveal-text .char,
.reveal-text .word,
.reveal-text .line {
    display: inline-block;
}

.split-parent {
    overflow: hidden;
}

.split-child {
    display: inline-block;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    margin-bottom: clamp(48px, 8vh, 96px);
}

.section-number {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--accent);
    margin-bottom: 24px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: clamp(16px, 1.5vw, 20px);
    color: var(--gray-light);
    max-width: 600px;
    margin-top: 24px;
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--black);
}

.testimonial-large {
    max-width: 1000px;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
}

.testimonial-quote .highlight {
    color: var(--accent);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}

.testimonial-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dim) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    color: var(--black);
}

.testimonial-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-info span {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

/* Testimonial Grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 80px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    transition: all var(--duration) var(--ease);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.testimonial-card-quote {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-light);
    margin-bottom: 32px;
}

@media (max-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   IMAGE SHOWCASE
   ============================================ */
.image-showcase {
    padding: 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: 400px;
    gap: 4px;
}

.showcase-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease), filter 0.6s var(--ease);
    filter: grayscale(20%);
}

.showcase-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.showcase-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 32px;
    transition: background 0.4s var(--ease);
}

.showcase-item:hover .showcase-overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.8) 100%);
}

.showcase-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.4s var(--ease);
}

.showcase-item:hover .showcase-label {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 1024px) {
    .showcase-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 250px 250px;
    }
    .showcase-large {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 200px);
    }
    .showcase-large {
        grid-column: span 1;
    }
    .showcase-label {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ============================================
   ABOUT / COACH SECTION
   ============================================ */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 8vw, 120px);
    align-items: center;
}

.about-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 24px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease);
    border-radius: inherit;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--black) 0%, transparent 50%);
    border-radius: inherit;
}

.about-content {
    max-width: 560px;
}

.about-name {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.about-title {
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 40px;
}

.about-bio {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-light);
}

.about-bio p {
    margin-bottom: 24px;
}

.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--border);
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .about-image {
        max-width: 400px;
    }
}

/* ============================================
   SERVICES
   ============================================ */

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 100px;
    color: var(--gray-light);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease);
}

.service-tab i {
    font-size: 16px;
}

.service-tab:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-tab.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--black);
}

/* Tab Content */
.services-grid.tab-content {
    display: none;
}

.services-grid.tab-content.active {
    display: grid;
}

/* Service Icon (for programs) */
.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border-radius: 16px;
    margin-bottom: 24px;
}

.service-icon i {
    font-size: 24px;
    color: var(--accent);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 48px 40px;
    transition: all var(--duration) var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration) var(--ease);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(198, 255, 0, 0.08) 0%, rgba(198, 255, 0, 0.02) 100%);
    border-color: rgba(198, 255, 0, 0.2);
}

.service-card.featured::before {
    transform: scaleX(1);
}

.service-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 12px;
    background: var(--accent);
    color: var(--black);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
}

.service-name {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 24px;
}

.service-price .amount {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
}

.service-price .period {
    font-size: 14px;
    color: var(--gray);
}

.service-desc {
    font-size: 15px;
    color: var(--gray-light);
    line-height: 1.6;
    margin-bottom: 32px;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--white);
}

.service-features li::before {
    content: '→';
    color: var(--accent);
    font-weight: 600;
}

.service-cta {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--duration-fast) var(--ease);
    text-align: center;
    display: block;
}

.service-cta:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

.service-card.featured .service-cta {
    background: var(--accent);
    color: var(--black);
    border-color: var(--accent);
}

.service-card.featured .service-cta:hover {
    background: var(--white);
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }
}

/* ============================================
   METHODOLOGY
   ============================================ */
.method-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.method-item {
    position: relative;
}

.method-number {
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.03);
    position: absolute;
    top: -20px;
    left: -10px;
    z-index: 0;
}

.method-content {
    position: relative;
    z-index: 1;
}

.method-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-dim);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--accent);
    font-size: 24px;
}

.method-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.method-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-light);
}

.method-outcome {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

@media (max-width: 1024px) {
    .method-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 640px) {
    .method-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FAQ
   ============================================ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(48px, 8vw, 120px);
}

.faq-intro {
    position: sticky;
    top: 120px;
    align-self: start;
}

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

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

.faq-question {
    padding: 32px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    transition: color var(--duration-fast) var(--ease);
}

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

.faq-icon {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--duration-fast) var(--ease);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration) var(--ease);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: 32px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-light);
    max-width: 600px;
}

@media (max-width: 1024px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-intro {
        position: static;
    }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: linear-gradient(180deg, var(--black) 0%, rgba(198, 255, 0, 0.03) 100%);
    text-align: center;
    padding: clamp(100px, 20vh, 200px) 0;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--gray-light);
    margin-bottom: 48px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    border-top: 1px solid var(--border);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 64px;
}

.footer-brand p {
    color: var(--gray);
    font-size: 15px;
    margin-top: 20px;
    max-width: 300px;
    line-height: 1.7;
}

.footer-section h4 {
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 24px;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-section a {
    font-size: 15px;
    color: var(--gray-light);
    transition: color var(--duration-fast) var(--ease);
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--gray);
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand p {
        max-width: 100%;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
}

/* ============================================
   PAGE TRANSITION
   ============================================ */
.page-transition {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    display: flex;
}

.page-transition-column {
    flex: 1;
    background: var(--accent);
    transform: scaleY(0);
    transform-origin: bottom;
}

/* ============================================
   LOADING SCREEN
   ============================================ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.loader-text {
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
}

.loader-progress {
    width: 200px;
    height: 2px;
    background: var(--border);
    margin-top: 24px;
    overflow: hidden;
}

.loader-bar {
    height: 100%;
    background: var(--accent);
    width: 0%;
    transition: width 0.1s linear;
}

/* ============================================
   UTILITIES
   ============================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.text-accent {
    color: var(--accent);
}

.bg-dark {
    background: var(--black);
}

.bg-darker {
    background: #050505;
}

/* ============================================
   ANIMATION SYSTEM
   ============================================ */

/* Hero elements start hidden (animated in by JS after loader) */
.hero-eyebrow,
.hero-title,
.hero-subtitle,
.hero-ctas,
.hero-stats {
    opacity: 0;
    transform: translateY(30px);
}

/* Scroll-reveal elements - start in normal state, animate when .revealed is added */
.section-header,
.testimonial-large,
.testimonial-card,
.showcase-item,
.about-content,
.about-image,
.service-tabs,
.service-card,
.method-card,
.faq-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Revealed state */
.section-header.revealed,
.testimonial-large.revealed,
.testimonial-card.revealed,
.showcase-item.revealed,
.about-content.revealed,
.about-image.revealed,
.service-tabs.revealed,
.service-card.revealed,
.method-card.revealed,
.faq-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Showcase items get a slight scale effect too */
.showcase-item {
    transform: translateY(20px) scale(0.98);
}

.showcase-item.revealed {
    transform: translateY(0) scale(1);
}

/* Reduced motion - skip animations */
@media (prefers-reduced-motion: reduce) {
    .hero-eyebrow,
    .hero-title,
    .hero-subtitle,
    .hero-ctas,
    .hero-stats,
    .section-header,
    .testimonial-large,
    .testimonial-card,
    .showcase-item,
    .about-content,
    .about-image,
    .service-tabs,
    .service-card,
    .method-card,
    .faq-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Mobile base adjustments */
@media (max-width: 768px) {
    .section {
        padding: clamp(60px, 10vh, 100px) 0;
    }

    /* Mobile Hero - Enhanced */
    .hero {
        min-height: 100svh;
        padding: 100px 0 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero-bg {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
        opacity: 0.3;
    }

    .hero-bg::after {
        background: linear-gradient(180deg, var(--black) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.9) 100%);
    }

    .hero-content {
        display: flex;
        flex-direction: column;
    }

    .hero-eyebrow {
        font-size: 10px;
        letter-spacing: 0.12em;
        margin-bottom: 24px;
    }

    .hero-eyebrow::before {
        width: 24px;
    }

    .hero-title {
        font-size: clamp(36px, 11vw, 56px);
        line-height: 1;
        letter-spacing: -0.02em;
        margin-bottom: 20px;
        max-width: 100%;
    }

    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
        color: var(--gray-light);
        margin-bottom: 32px;
        max-width: 100%;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 48px;
    }

    .btn-primary, .btn-outline {
        justify-content: center;
        padding: 18px 32px;
        font-size: 14px;
    }

    .hero-stats {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: flex-start;
        gap: 40px;
        margin-top: auto;
        padding-top: 32px;
        border-top: 1px solid var(--border);
    }

    .stat-item {
        text-align: left;
    }

    .stat-value {
        font-size: 32px;
    }

    .stat-label {
        font-size: 9px;
        margin-top: 4px;
    }

    /* Marquee mobile */
    .marquee {
        padding: 12px 0;
    }

    .marquee-item {
        font-size: 12px;
        gap: 32px;
    }

    .marquee-track {
        gap: 32px;
    }

    /* Service tabs mobile */
    .service-tabs {
        gap: 6px;
        margin-bottom: 32px;
    }

    .service-tab {
        padding: 10px 16px;
        font-size: 12px;
        gap: 6px;
    }

    .service-tab i {
        font-size: 14px;
    }

    .service-tab span {
        display: none;
    }

    .service-tab.active span {
        display: inline;
    }

    /* Services grid mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 32px 24px;
    }

    .service-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .service-icon i {
        font-size: 20px;
    }
}
