/* Local Inter Font */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/assets/fonts/inter-500.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/assets/fonts/inter-600.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/assets/fonts/inter-700.woff2') format('woff2');
}
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/assets/fonts/inter-800.woff2') format('woff2');
}

:root {
    --bg-primary: #0a0a0b;
    --bg-secondary: #111113;
    --bg-tertiary: #18181b;
    --bg-card: rgba(24, 24, 27, 0.6);
    --bg-glass: rgba(255, 255, 255, 0.03);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --accent-primary: #8b5cf6;
    --accent-secondary: #a78bfa;
    --accent-tertiary: #c4b5fd;
    --accent-blue: #3987E5;
    --accent-purple: #8F79FA;
    --accent-orange: #FFA001;
    --gradient-primary: linear-gradient(135deg, #3987E5 0%, #8F79FA 50%, #FFA001 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(217, 70, 239, 0.15) 100%);
    --gradient-border: linear-gradient(135deg, rgba(139, 92, 246, 0.5) 0%, rgba(217, 70, 239, 0.5) 50%, rgba(249, 115, 22, 0.5) 100%);
    --glow-primary: 0 0 60px rgba(139, 92, 246, 0.3);
    --glow-subtle: 0 0 40px rgba(139, 92, 246, 0.15);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 35px 60px -15px rgba(0, 0, 0, 0.6);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Ambient Background */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.ambient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.ambient-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    animation: float-slow 20s ease-in-out infinite;
}

.ambient-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.25) 0%, transparent 70%);
    top: 50%;
    right: -150px;
    animation: float-slow 25s ease-in-out infinite reverse;
}

.ambient-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.2) 0%, transparent 70%);
    bottom: -100px;
    left: 30%;
    animation: float-slow 22s ease-in-out infinite;
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 24px;
    transition: var(--transition-base);
}

.nav.scrolled {
    background: rgba(10, 10, 11, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: white;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-base);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.nav-login {
    padding: 8px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    background: var(--bg-glass);
}

.nav-login:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-base);
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 11, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    padding: 100px 24px 40px;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-link {
    display: block;
    padding: 16px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    background: var(--bg-tertiary);
}

.mobile-menu-cta {
    margin-top: 16px;
    padding: 16px 24px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-align: center;
}

.mobile-menu-lang {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--border-subtle);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.mobile-menu-lang a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.mobile-menu-lang a:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.lang-dropdown-toggle:hover {
    background: var(--bg-tertiary);
    border-color: var(--border-light);
}

.lang-dropdown-toggle svg {
    width: 16px;
    height: 16px;
    transition: var(--transition-fast);
}

.lang-dropdown.open .lang-dropdown-toggle svg {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 160px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    z-index: 200;
    box-shadow: var(--shadow-lg);
    max-height: 70vh;
    overflow-y: auto;
}

.lang-dropdown.open .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.lang-dropdown-item:hover {
    background: var(--bg-glass);
    color: var(--text-primary);
}

.lang-dropdown-item.active {
    background: var(--gradient-subtle);
    color: var(--text-primary);
}

.lang-flag {
    font-size: 1.1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-glass);
    border: 1px solid var(--border-light);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.05;
    margin-bottom: 24px;
}

.hero-title-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.btn-secondary {
    background: var(--bg-glass);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Store Buttons */
.store-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition-base);
}

.store-btn:hover {
    background: var(--bg-card);
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.store-btn-icon {
    width: 28px;
    height: 28px;
}

.store-btn-text {
    text-align: left;
}

.store-btn-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.store-btn-store {
    font-size: 1rem;
    font-weight: 600;
}

/* iPhone Coverflow */
.coverflow-container {
    position: relative;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
    padding-bottom: 40px;
    perspective: 1200px;
}

.iphone-frame {
    position: absolute;
    width: 280px;
    height: 570px;
    background: linear-gradient(145deg, #2a2a2e 0%, #1a1a1d 100%);
    border-radius: 54px;
    padding: 10px;
    box-sizing: border-box;
    box-shadow:
        var(--shadow-xl),
        inset 0 1px 1px rgba(255, 255, 255, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.iphone-screen-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: 44px;
    overflow: hidden;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
}

.iphone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 32px;
    background-color: #000;
    border-radius: 16px;
    z-index: 3;
}

.iphone-center {
    transform: scale(1.08);
    z-index: 3;
    box-shadow:
        var(--shadow-xl),
        var(--glow-primary),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* Start position: phones close together */
.iphone-left {
    transform: translateX(-120px) scale(0.92) rotateY(8deg);
    z-index: 1;
    opacity: 0.8;
}

.iphone-right {
    transform: translateX(120px) scale(0.92) rotateY(-8deg);
    z-index: 1;
    opacity: 0.8;
}

/* Live Stats Section */
.stats-section {
    padding: 80px 0;
    position: relative;
}

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

.stat-card {
    text-align: center;
    padding: 32px 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Features Section */
.features {
    padding: 40px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-label {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gradient-subtle);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-secondary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.feature-card {
    position: relative;
    padding: 40px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-border);
    opacity: 0;
    transition: var(--transition-base);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: var(--glow-subtle);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-subtle);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-secondary);
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.feature-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    margin-top: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* B2C Features - Detailed */
.b2c-features {
    padding: 40px 0;
    background: var(--bg-secondary);
}

.b2c-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
}

.b2c-feature:nth-child(even) {
    direction: rtl;
}

.b2c-feature:nth-child(even) > * {
    direction: ltr;
}

.b2c-feature-content {
    max-width: 500px;
}

.b2c-feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    box-shadow: var(--glow-subtle);
}

.b2c-feature-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.b2c-feature h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.b2c-feature p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.b2c-feature-list {
    list-style: none;
}

.b2c-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.b2c-feature-list li svg {
    width: 20px;
    height: 20px;
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 2px;
}

.b2c-feature-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.b2c-feature-image {
    width: 100%;
    max-width: 400px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* Coaches Section */
.coaches-section {
    padding: 40px 0;
    background: var(--bg-secondary);
}

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

.coach-feature-card {
    padding: 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
    border-top: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.coach-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-purple), var(--accent-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coach-feature-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-light);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.1);
}

.coach-feature-card:hover::before {
    opacity: 1;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    font-size: 0.8rem;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
}

.platform-badge svg {
    width: 14px;
    height: 14px;
}

.app-store-buttons {
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    background: var(--bg-glass);
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition-base);
}

.app-store-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-light);
    transform: translateY(-2px);
}

.app-store-btn svg {
    width: 18px;
    height: 18px;
}

.coach-feature-card.coach-feature-large {
    grid-column: span 1;
    display: flex;
    flex-direction: column;
}

.coach-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.coach-feature-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.coach-icon-pink {
    background: linear-gradient(135deg, #ec4899 0%, #d946ef 100%);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.coach-icon-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.coach-icon-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.coach-icon-cyan {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}

.coach-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.coach-feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.coach-feature-list {
    list-style: none;
    margin-top: 20px;
}

.coach-feature-list li {
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.coach-feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

/* iPad Showcase */
.ipad-showcase {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
}

.ipad-showcase-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.ipad-showcase-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.ipad-showcase-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.showcase-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.showcase-feature svg {
    width: 18px;
    height: 18px;
    color: #22c55e;
    flex-shrink: 0;
}

/* Studios Section */
.studios-section {
    padding: 40px 0;
}

.studios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.studio-card {
    padding: 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
    position: relative;
}

.studio-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.studio-card-featured {
    grid-row: span 2;
    background: var(--gradient-subtle);
    border-color: rgba(139, 92, 246, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.studio-card-featured:hover {
    border-color: rgba(139, 92, 246, 0.4);
}

.studio-card-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 12px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.studio-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.studio-card-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.studio-icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.studio-icon-pink {
    background: linear-gradient(135deg, #ec4899 0%, #d946ef 100%);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.studio-icon-green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.studio-icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.studio-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.studio-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.studio-feature-list {
    list-style: none;
    margin-top: 24px;
}

.studio-feature-list li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-subtle);
}

.studio-feature-list li:last-child {
    border-bottom: none;
}

.studio-feature-list li::before {
    content: '✓';
    color: #22c55e;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 40px 0;
    background: var(--bg-secondary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
}

.testimonial-card {
    padding: 32px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.testimonial-featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--gradient-subtle);
    border-color: rgba(139, 92, 246, 0.2);
}

.testimonial-featured:hover {
    border-color: rgba(139, 92, 246, 0.4);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-rating svg {
    width: 18px;
    height: 18px;
    color: #fbbf24;
}

.testimonial-card blockquote {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-featured blockquote {
    font-size: 1.25rem;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-info strong {
    font-size: 0.95rem;
    font-weight: 600;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Pricing Section */
.pricing-section {
    padding: 40px 0;
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-grid-4 {
    display: flex;
    gap: 16px;
    max-width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-top: 30px;
    padding-bottom: 10px;
}

.pricing-grid-4::-webkit-scrollbar {
    height: 6px;
}

.pricing-grid-4::-webkit-scrollbar-track {
    background: var(--bg-glass);
    border-radius: 3px;
}

.pricing-grid-4::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 3px;
}

.pricing-grid-4 .pricing-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
}

.pricing-card {
    padding: 28px 24px;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.pricing-card-featured {
    background: var(--gradient-subtle);
    border-color: rgba(139, 92, 246, 0.3);
}

.pricing-card-featured:hover {
    border-color: rgba(139, 92, 246, 0.5);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.pricing-subtitle {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-subtle);
}

.price-amount {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -2px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.pricing-features li svg {
    width: 16px;
    height: 16px;
    color: #22c55e;
    flex-shrink: 0;
}

.pricing-cta {
    display: block;
    width: 100%;
    padding: 16px 24px;
    text-align: center;
    font-weight: 600;
    font-size: 1rem;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
    text-decoration: none;
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.pricing-cta-secondary {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-primary);
    box-shadow: none;
}

.pricing-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-purple);
    box-shadow: none;
}

.pricing-feature-disabled {
    opacity: 0.5;
}

.pricing-feature-disabled svg {
    color: var(--text-muted) !important;
}

.pricing-enterprise {
    margin-top: 40px;
    padding: 40px 48px;
    background: var(--gradient-subtle);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.pricing-enterprise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple), var(--accent-orange));
}

.pricing-enterprise:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.15);
}

.pricing-enterprise-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.pricing-enterprise-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-enterprise-text p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    max-width: 600px;
    line-height: 1.7;
}

.pricing-enterprise .pricing-cta {
    flex-shrink: 0;
    width: auto;
    padding: 14px 32px;
}

/* FAQ Section */
.faq-section {
    padding: 40px 0;
    background: var(--bg-secondary);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-base);
}

.faq-item:hover {
    border-color: var(--border-light);
}

.faq-item.active {
    border-color: rgba(139, 92, 246, 0.3);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    transition: var(--transition-base);
}

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

.faq-question span {
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--accent-purple);
}

.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;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* iPad Section */
.ipad-section {
    padding: 40px 0;
    perspective: 2000px;
}

.ipad-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

.ipad-mockup {
    width: 100%;
    max-width: 420px;
    padding: 12px;
    background: linear-gradient(145deg, #2a2a2e 0%, #1a1a1d 100%);
    border-radius: var(--radius-xl);
    box-shadow:
        var(--shadow-xl),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.ipad-screen-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: #000;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.ipad-screen-container::after {
    content: '';
    position: absolute;
    top: -2%;
    left: -10%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 40%);
    transform: rotate(20deg);
    z-index: 4;
    pointer-events: none;
}

.ipad-mockup img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0;
}

/* Newsletter Section */
.newsletter-section {
    padding: 40px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-content {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-section h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.newsletter-section > .container > .newsletter-content > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

#mc_embed_signup {
    background: transparent !important;
    width: 100% !important;
}

#mc_embed_signup h2,
#mc_embed_signup .mc-field-group label,
#mc_embed_signup .indicates-required {
    display: none !important;
}

#mc_embed_signup input.email {
    padding: 18px 24px !important;
    border-radius: var(--radius-lg) !important;
    border: 1px solid var(--border-light) !important;
    background: var(--bg-glass) !important;
    color: var(--text-primary) !important;
    font-size: 1rem !important;
    width: 100% !important;
    box-sizing: border-box;
    margin-bottom: 16px;
    height: auto !important;
    backdrop-filter: blur(10px);
    font-family: 'Inter', sans-serif !important;
}

#mc_embed_signup input.email:focus {
    outline: none;
    border-color: var(--accent-primary) !important;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

#mc_embed_signup input.email::placeholder {
    color: var(--text-muted) !important;
}

#mc_embed_signup .button {
    padding: 18px 32px !important;
    border: none !important;
    border-radius: var(--radius-lg) !important;
    background: var(--gradient-primary) !important;
    color: white !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: var(--transition-base) !important;
    height: auto !important;
    width: 100% !important;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif !important;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

#mc_embed_signup .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

#mc_embed_signup .mc-field-group,
#mc_embed_signup .clear.foot {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#mc_embed_signup .brandingLogo {
    display: none !important;
}

.platforms {
    margin-top: 24px;
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.platforms svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-subtle);
    background: var(--bg-secondary);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 32px;
    width: auto;
}

.footer-tagline {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
}

.footer-social svg {
    width: 18px;
    height: 18px;
}

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

.footer-column h3 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 0;
    transition: var(--transition-fast);
}

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

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

.footer-copyright {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.language-switcher {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.language-switcher a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    font-size: 0.85rem;
    border: 1px solid transparent;
}

.language-switcher a:hover {
    color: var(--text-primary);
    background: var(--bg-glass);
    border-color: var(--border-subtle);
}

.language-switcher a.lang-active {
    color: var(--text-primary);
    background: var(--bg-tertiary);
    border-color: var(--border-light);
}

/* Cookie Modal */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.cookie-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal {
    background: var(--bg-secondary);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 40px;
    width: 90%;
    max-width: 800px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    text-align: left;
    transform: scale(0.95) translateY(20px);
    transition: var(--transition-base);
}

.cookie-overlay.show .cookie-modal {
    transform: scale(1) translateY(0);
}

.cookie-modal h3 {
    margin-top: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.cookie-modal p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.cookie-modal a {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.cookie-options .option {
    margin-bottom: 16px;
}

.cookie-options label {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.cookie-options input[type="checkbox"] {
    display: none;
}

.cookie-options .checkmark {
    width: 22px;
    height: 22px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    margin-right: 14px;
    position: relative;
    transition: var(--transition-fast);
}

.cookie-options input[type="checkbox"]:checked + .checkmark {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.cookie-options input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%) rotate(45deg);
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
}

.cookie-options .option-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.cookie-options .option-description {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.cookie-buttons {
    grid-column: 1 / -1;
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.cookie-btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-base);
    font-family: 'Inter', sans-serif;
}

.cookie-btn-accept {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

.cookie-btn-save,
.cookie-btn-decline {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
}

.cookie-btn-save:hover,
.cookie-btn-decline:hover {
    background: var(--bg-card);
    border-color: var(--border-light);
}

/* Splash Placeholder */
.splash-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
    color: var(--text-primary);
    padding: 20px;
    box-sizing: border-box;
}

.splash-logo {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.splash-loader-bg {
    width: 60%;
    height: 6px;
    margin-top: 16px;
    background-color: var(--bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
}

.splash-loader-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
}

/* Responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .b2c-feature {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .b2c-feature:nth-child(even) {
        direction: ltr;
    }

    .b2c-feature-content {
        max-width: 100%;
    }

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

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

    .coach-feature-card.coach-feature-large {
        grid-column: span 1;
    }

    .ipad-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }

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

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

    .testimonial-featured {
        grid-column: span 2;
        grid-row: span 1;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }

    .pricing-grid-4 {
        justify-content: flex-start;
    }

    .pricing-grid-4 .pricing-card {
        flex: 0 0 240px;
    }

    .pricing-enterprise-content {
        flex-direction: column;
        text-align: center;
    }
}

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

    .nav-mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero h1 {
        letter-spacing: -1px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .store-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }

    .coverflow-container {
        height: 480px;
    }

    .iphone-frame {
        width: 220px;
        height: 448px;
        border-radius: 44px;
    }

    .iphone-screen-container {
        border-radius: 36px;
    }

    .iphone-notch {
        width: 80px;
        height: 26px;
        border-radius: 13px;
    }

    .iphone-left {
        transform: translateX(-140px) scale(0.85) rotateY(15deg);
    }

    .iphone-right {
        transform: translateX(140px) scale(0.85) rotateY(-15deg);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .ipad-container {
        flex-direction: column;
        gap: 24px;
    }

    .ipad-mockup {
        width: 90%;
        max-width: 400px;
    }

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

    .coach-feature-card.coach-feature-large {
        grid-column: span 1;
    }

    .ipad-showcase {
        padding: 24px;
    }

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

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

    .testimonial-featured {
        grid-column: span 1;
    }

    .cookie-modal {
        grid-template-columns: 1fr;
        padding: 24px;
        gap: 24px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        text-align: left;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .pricing-grid-4 .pricing-card {
        flex: 0 0 220px;
    }

    .pricing-enterprise {
        padding: 24px;
    }

    .pricing-enterprise-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .coverflow-container {
        height: 420px;
    }

    .iphone-frame {
        width: 180px;
        height: 367px;
        border-radius: 36px;
    }

    .iphone-screen-container {
        border-radius: 28px;
    }

    .iphone-left {
        transform: translateX(-110px) scale(0.8) rotateY(15deg);
    }

    .iphone-right {
        transform: translateX(110px) scale(0.8) rotateY(-15deg);
    }

    .section-header {
        margin-bottom: 32px;
    }

    .feature-card {
        padding: 28px;
    }
}
