/* ========================================
   RITMO ÓPTIMO - LANDING PAGE STYLES
   VC-Grade Design System
   ======================================== */

/* CSS Variables */
:root {
    /* Colors - Enhanced palette */
    --color-primary: #FF6B35;
    --color-primary-dark: #E85A2B;
    --color-primary-light: #FF8F6B;
    --color-secondary: #0F0F23;
    --color-accent: #00D9A5;
    --color-accent-light: #5FF5D4;
    --color-background: #FFFFFF;
    --color-surface: #F8FAFC;
    --color-surface-dark: #EEF2F6;
    --color-text: #0F0F23;
    --color-text-secondary: #475569;
    --color-text-light: #94A3B8;
    --color-border: #E2E8F0;
    --color-error: #EF4444;
    --color-success: #10B981;
    --color-warning: #F59E0B;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2.25rem;
    --font-size-4xl: 3rem;
    --font-size-5xl: 4rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.875rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* Shadows - More dynamic and softer */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 12px 24px rgba(15, 23, 42, 0.08), 0 4px 8px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 24px 48px rgba(15, 23, 42, 0.12), 0 8px 16px rgba(15, 23, 42, 0.06);
    --shadow-primary: 0 10px 15px -3px rgba(255, 107, 53, 0.3), 0 4px 6px -2px rgba(255, 107, 53, 0.1);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Container */
    --container-max: 1240px;
    --container-padding: 2rem;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-background);
    position: relative;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-secondary);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

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

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

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

input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
}

/* ========================================
   COOKIE BANNER
   ======================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-secondary);
    color: white;
    padding: var(--space-4);
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.cookie-content a {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-3);
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
}

.cookie-accept {
    background: var(--color-primary);
    color: white;
}

.cookie-accept:hover {
    background: var(--color-primary-dark);
}

.cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 1000;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    padding: var(--space-2) 0;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 800;
    font-size: var(--font-size-lg);
    color: var(--color-secondary);
}

.logo-video {
    height: 190px;
    /* Reduced to half size */
    /* Slightly adjusted to fit new crop */
    width: auto;
    display: block;
    mix-blend-mode: multiply;
    /* Ensuring transparency on white */
    filter: brightness(1.05) contrast(1.05);
    /* Optimization for video clarity */
    margin: -50px 0;
    pointer-events: none;
    border-radius: var(--radius-sm);
}

.nav-links {
    display: none;
    gap: var(--space-6);
}

.nav-links a {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-primary);
}

.nav-cta {
    display: none;
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-sm);
    font-weight: 600;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-cta {
        display: inline-block;
    }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    padding-top: 140px;
    padding-bottom: var(--space-20);
    background: transparent;
    position: relative;
}

/* Background Animated Blobs - Fixed and Global */
.blob {
    position: fixed;
    border-radius: var(--radius-full);
    filter: blur(100px);
    z-index: 0;
    pointer-events: none;
    will-change: transform;
    opacity: 0.8;
}

.blob-1 {
    top: -15%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.45) 0%, transparent 75%);
    animation: blob-float-1 25s infinite alternate ease-in-out;
}

.blob-2 {
    bottom: -15%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 217, 165, 0.35) 0%, transparent 75%);
    animation: blob-float-2 30s infinite alternate-reverse ease-in-out;
}

.blob-3 {
    top: 30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 143, 107, 0.25) 0%, transparent 75%);
    animation: blob-float-1 22s infinite alternate-reverse ease-in-out;
}

.blob-4 {
    top: 60%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 217, 165, 0.15) 0%, transparent 75%);
    animation: blob-float-2 28s infinite alternate ease-in-out;
}

@keyframes blob-float-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(250px, 200px) scale(1.4);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

@keyframes blob-float-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-250px, -150px) scale(1.3);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}



.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    gap: var(--space-10);
    position: relative;
    z-index: 1;
}

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 0.8fr 1.2fr;
        /* Give more space to video */
        align-items: center;
    }
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    /* Mobile-first approach: Relative positioning for natural flow */
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12) 0%, rgba(255, 143, 107, 0.12) 100%);
    color: var(--color-primary-dark);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-4);
    border: 1px solid rgba(255, 107, 53, 0.2);
    animation: pulse-badge 2s ease-in-out infinite;
    z-index: 10;
}

@media (min-width: 992px) {
    .hero-badge {
        position: absolute;
        /* Absolute only on desktop */
        right: var(--container-padding);
        top: 0;
        margin-bottom: 0;
    }
}


@keyframes pulse-badge {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.hero-title {
    font-size: clamp(2.75rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-secondary);
    margin-bottom: var(--space-6);
    letter-spacing: -0.03em;
}

.hero-title span {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, #FF9F1C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 2px;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.hero-subtitle strong {
    color: var(--color-text);
}

.hero-benefits {
    list-style: none;
    margin-bottom: var(--space-8);
}

.hero-benefits li {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: var(--font-size-base);
}

.benefit-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent);
    color: white;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 700;
    flex-shrink: 0;
}

/* Hero Form */
.hero-form {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 10px 15px -3px rgba(0, 0, 0, 0.08),
        0 20px 25px -5px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text);
}

.form-group input,
.form-group select {
    padding: var(--space-3) var(--space-4);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    transition: all var(--transition-fast);
    background: white;
    width: 100%;
}

.form-group input:hover,
.form-group select:hover {
    border-color: var(--color-text-light);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.12);
    transform: translateY(-1px);
}

.form-group input::placeholder {
    color: var(--color-text-light);
}

/* RGPD Consent */
.rgpd-consent {
    margin: var(--space-4) 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    cursor: pointer;
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.checkbox-label input:checked+.checkmark {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.checkbox-label input:checked+.checkmark::after {
    content: '✓';
    color: white;
    font-size: 11px;
    font-weight: 700;
}

.checkbox-label.required .checkmark {
    border-color: var(--color-primary);
}

.consent-text a {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Primary Button */
.btn-primary {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-6);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    border-radius: var(--radius-lg);
    font-size: var(--font-size-lg);
    font-weight: 700;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-primary);
    position: relative;
    overflow: hidden;
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 50%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 15px 30px -5px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

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

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(6px);
}

.btn-large {
    padding: var(--space-5) var(--space-8);
    font-size: var(--font-size-xl);
}

.form-trust {
    text-align: center;
    margin-top: var(--space-4);
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
}

.trust-icon {
    margin-right: var(--space-1);
}

/* Success Message */
.success-message {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.success-icon {
    font-size: var(--font-size-5xl);
    margin-bottom: var(--space-4);
}

.success-message h3 {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--space-3);
}

.success-message p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2);
}

.success-note {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

/* Hero Visual */
.hero-visual {
    display: block;
    /* Show on mobile too */
    width: 100%;
    margin-top: var(--space-8);
    height: 500px;
    /* Fixed height for mobile */
}

@media (min-width: 768px) {
    .hero-visual {
        height: 600px;
    }
}

.hero-image-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 100%;
    /* Fill the grid cell height */
    width: 100%;
}

.hero-image {
    width: 100%;
    height: 100%;
    /* Ensure it fills the container */
    display: block;
    border-radius: var(--radius-xl);
    object-fit: cover;
}

.hero-image-placeholder {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--color-surface-dark) 0%, var(--color-surface) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.placeholder-icon {
    font-size: var(--font-size-5xl);
}

.placeholder-text {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
}

.stats-overlay {
    position: absolute;
    bottom: var(--space-4);
    left: var(--space-4);
    right: var(--space-4);
    display: flex;
    gap: var(--space-4);
}

.stat-item {
    background: white;
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--color-primary);
}

.stat-label {
    font-size: var(--font-size-xs);
    color: var(--color-text-secondary);
    text-transform: uppercase;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .hero-container {
        grid-template-columns: 0.8fr 1.2fr;
        /* Consistent with other media query */
        align-items: stretch;
        /* Stretch to match height of text column */
    }

    .hero-visual {
        display: block;
        height: calc(100% - 140px);
        /* Start lower, aligned with 'Mejora en 14 días' */
        align-self: end;
    }

    .hero-title {
        font-size: var(--font-size-5xl);
    }
}

/* ========================================
   SECTIONS COMMON
   ======================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-title {
    font-size: clamp(2.25rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--color-secondary);
    text-align: center;
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.section-title span {
    background: linear-gradient(135deg, var(--color-primary) 0%, #FF9F1C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-10);
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.includes,
.for-whom,
.how-it-works,
.coaches,
.social-proof,
.faq,
.footer {
    background: transparent !important;
    position: relative;
    z-index: 1;
}

.steps-grid {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step-card {
    text-align: center;
    padding: var(--space-10);
    background: white;
    border-radius: var(--radius-xl);
    position: relative;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all var(--transition-base);
}

.step-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-primary-light);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: white;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-base);
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: var(--space-4);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    transition: transform var(--transition-base);
}

.step-card:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
}

.step-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--space-3);
}

.step-card p {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ========================================
   INCLUDES
   ======================================== */
.includes {
    padding: var(--space-20) 0;
    background: var(--color-surface);
}

.includes-grid {
    display: grid;
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .includes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.include-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-5);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: all var(--transition-fast);
}

.include-item:hover {
    border-color: rgba(255, 107, 53, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.include-check {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: white;
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 217, 165, 0.3);
}

.include-text {
    font-size: var(--font-size-base);
    color: var(--color-text);
    line-height: 1.5;
}

/* ========================================
   COACHES
   ======================================== */
.coaches {
    padding: var(--space-20) 0;
    background: white;
}

.coaches-grid {
    display: grid;
    gap: var(--space-6);
    margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
    .coaches-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.coach-card {
    text-align: center;
    padding: var(--space-10);
    background: white;
    border-radius: var(--radius-xl);
    position: relative;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all var(--transition-base);
}

.coach-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-accent-light);
}

.coach-photo {
    margin-bottom: var(--space-4);
    position: relative;
}

.coach-image {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    border-radius: var(--radius-full);
    object-fit: cover;
    border: 4px solid white;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.15),
        0 0 0 4px rgba(255, 107, 53, 0.1);
    transition: all var(--transition-base);
}

.coach-card:hover .coach-image {
    transform: scale(1.05);
    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.2),
        0 0 0 6px rgba(255, 107, 53, 0.15);
}

.photo-placeholder {
    width: 140px;
    height: 140px;
    margin: 0 auto;
    background: var(--color-surface-dark);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-4xl);
}

.coach-badge {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #E55A2B 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.coach-badge svg {
    width: 22px;
    height: 22px;
    color: white;
}

.coach-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--space-1);
}

.coach-title {
    font-size: var(--font-size-sm);
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.coach-bio {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: 1.5;
}

.coaches-note {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    font-style: italic;
}

/* ========================================
   FOR WHOM
   ======================================== */
.for-whom {
    padding: var(--space-20) 0;
    background: var(--color-surface);
}

.audience-grid {
    display: grid;
    gap: var(--space-6);
}

@media (min-width: 768px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.audience-card {
    background: white;
    padding: var(--space-10);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all var(--transition-base);
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.audience-card.featured {
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-primary);
    transform: scale(1.03);
}

.most-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
}

.audience-icon {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-3);
}

.audience-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: var(--space-3);
}

.audience-card>p {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
    line-height: 1.5;
}

.audience-card ul {
    list-style: none;
}

.audience-card li {
    font-size: var(--font-size-sm);
    color: var(--color-text);
    padding: var(--space-2) 0;
    border-bottom: 1px solid var(--color-border);
}

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

.audience-card li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: 700;
    margin-right: var(--space-2);
}

/* ========================================
   SOCIAL PROOF
   ======================================== */
.social-proof {
    padding: var(--space-20) 0;
    background: white;
}

.logos-grid {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: var(--space-10);
    padding: var(--space-6) 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.logos-track {
    display: flex;
    gap: var(--space-10);
    animation: scroll-logos 30s linear infinite;
    width: max-content;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.logo-item {
    flex-shrink: 0;
    padding: var(--space-6) var(--space-10);
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 80px;
    transition: all var(--transition-base);
}

.logo-item:hover {
    transform: scale(1.05);
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-md);
}

.logo-placeholder {
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    font-weight: 500;
}

.logos-note {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: var(--space-10);
}

.testimonials {
    display: grid;
    gap: var(--space-6);
    max-width: 800px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .testimonials {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-card {
    background: var(--color-surface);
    padding: var(--space-6);
    border-radius: var(--radius-xl);
}

.testimonial-stars {
    color: var(--color-warning);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-3);
}

.testimonial-text {
    font-size: var(--font-size-base);
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: var(--space-4);
    font-style: italic;
}

.testimonial-author {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    font-weight: 500;
}

.testimonials-note {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--color-text-light);
    font-style: italic;
    margin-top: var(--space-6);
}

/* ========================================
   FAQ
   ======================================== */
.faq {
    padding: var(--space-20) 0;
    background: var(--color-surface);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-4);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--color-primary-light);
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-6) var(--space-8);
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--color-secondary);
    text-align: left;
    transition: all var(--transition-fast);
    background: white;
}

.faq-question:hover {
    background: #FFFAF8;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    transition: transform var(--transition-base);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFF0EB;
    border-radius: var(--radius-full);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--color-primary);
    color: white;
}

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

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

.faq-answer p {
    padding: 0 var(--space-8) var(--space-6);
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, #1a1a3e 50%, #0d0d26 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(255, 107, 53, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(0, 217, 165, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta h2 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: var(--space-3);
}

.final-cta p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-6);
}

.final-cta .btn-primary {
    max-width: 420px;
    margin: 0 auto;
    font-size: var(--font-size-xl);
    padding: var(--space-5) var(--space-8);
}

.cta-trust {
    margin-top: var(--space-4);
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.7);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    padding: var(--space-16) 0 var(--space-8);
    background: linear-gradient(135deg, var(--color-secondary) 0%, #0a0a1a 100%);
    color: white;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
}

.footer-grid {
    display: grid;
    gap: var(--space-8);
    margin-bottom: var(--space-10);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand .logo {
    margin-bottom: var(--space-4);
    color: white;
}

.footer-brand p {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--space-2);
}

.footer-links a {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    padding-top: var(--space-6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.5);
}

.footer-note {
    margin-top: var(--space-2);
}

/* ========================================
   MODALS
   ======================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
    backdrop-filter: blur(4px);
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    background: white;
    border-radius: var(--radius-xl);
    z-index: 201;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--color-border);
}

.modal-header h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-secondary);
}

.modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    color: var(--color-text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--color-surface);
    color: var(--color-text);
}

.modal-content {
    padding: var(--space-6);
    overflow-y: auto;
}

.modal-content p {
    margin-bottom: var(--space-4);
    font-size: var(--font-size-base);
    color: var(--color-text);
    line-height: 1.6;
}

.modal-content strong {
    color: var(--color-secondary);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger delays */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}

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

/* Loading State */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--color-border);
    border-top-color: var(--color-primary);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
}

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

/* Error State */
.form-group.error input,
.form-group.error select {
    border-color: var(--color-error);
}

.error-message {
    font-size: var(--font-size-sm);
    color: var(--color-error);
    margin-top: var(--space-1);
}

/* Focus Visible */
:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Print Styles */
@media print {

    .navbar,
    .cookie-banner,
    .final-cta,
    .footer {
        display: none;
    }

    .hero {
        padding-top: 0;
    }
}