/* ============================================
   SCLUBBER LANDING PAGE - MODERN STYLES
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary: #8b5cf6;
    --accent: #06b6d4;

    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --gray-950: #030712;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-hero: linear-gradient(135deg, #0f0f23 0%, #1a1a3e 50%, #0f0f23 100%);
    --gradient-card: linear-gradient(180deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.02) 100%);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1280px;

    /* Animation */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* 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-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--gray-50);
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-base);
}

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

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* Utility Classes */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hidden-svg {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    padding: 12px 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: white;
    transition: var(--transition-base);
}

.navbar.scrolled .nav-logo {
    color: var(--gray-900);
}

.logo-icon {
    width: 36px;
    height: 36px;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.navbar.scrolled .nav-links a {
    color: var(--gray-600);
}

.nav-links a:hover {
    color: white;
}

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

.nav-btn-secondary {
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    font-weight: 600;
}

.nav-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .nav-btn-secondary {
    border-color: var(--gray-300);
    color: var(--gray-700);
}

.navbar.scrolled .nav-btn-secondary:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

.nav-btn-primary {
    padding: 10px 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: white !important;
}

.nav-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition-base);
}

.navbar.scrolled .nav-toggle span {
    background: var(--gray-800);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(99, 102, 241, 0.3), transparent),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(139, 92, 246, 0.2), transparent),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(6, 182, 212, 0.15), transparent);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero-orbs {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

.hero-container {
    position: relative;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    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-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-primary);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: var(--radius-lg);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.stat-value {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-light);
}

.stat-label {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

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

/* Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    position: relative;
    width: 280px;
    height: 580px;
    background: linear-gradient(180deg, #1a1a2e 0%, #16162a 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 50px 100px -20px rgba(0, 0, 0, 0.5),
        0 30px 60px -30px rgba(0, 0, 0, 0.5),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #0a0a14;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.phone-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.3), transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

/* App Preview Inside Phone */
.app-preview {
    padding: 48px 16px 16px;
    height: 100%;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.app-greeting {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.app-avatar {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.app-search {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 24px;
}

.app-search svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.5);
}

.app-search span {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
}

.app-section-title {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.app-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    margin-bottom: 10px;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    flex-shrink: 0;
}

.card-icon.tennis {
    background: linear-gradient(135deg, #10b981, #059669);
}

.card-icon.yoga {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.card-info {
    flex: 1;
    min-width: 0;
}

.card-title {
    color: white;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 2px;
}

.card-subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-bottom: 2px;
}

.card-time {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
}

.card-badge {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
    flex-shrink: 0;
}

.card-badge.confirmed {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
}

.card-badge.spots {
    background: rgba(99, 102, 241, 0.2);
    color: #818cf8;
}

.app-clubs {
    display: flex;
    gap: 16px;
    margin-top: 12px;
}

.club-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.club-avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.club-avatar.c1 { background: linear-gradient(135deg, #6366f1, #4f46e5); }
.club-avatar.c2 { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.club-avatar.c3 { background: linear-gradient(135deg, #ec4899, #db2777); }

.club-item span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 500;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    border-radius: var(--radius-lg);
    padding: 16px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.card-notification {
    top: 80px;
    left: -60px;
    animation-delay: 0s;
}

.card-weather {
    bottom: 120px;
    right: -40px;
    animation-delay: -3s;
}

.notif-icon {
    width: 40px;
    height: 40px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notif-icon svg {
    width: 20px;
    height: 20px;
    color: var(--success);
}

.notif-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
}

.notif-text {
    font-size: 12px;
    color: var(--gray-500);
}

.weather-icon {
    color: #f59e0b;
}

.weather-icon svg {
    width: 32px;
    height: 32px;
}

.weather-temp {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
}

.weather-label {
    font-size: 11px;
    color: var(--gray-500);
}

/* Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

.scroll-arrow {
    animation: bounce 2s ease-in-out infinite;
}

.scroll-arrow svg {
    width: 24px;
    height: 24px;
}

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

/* ============================================
   LOGOS SECTION
   ============================================ */

.logos-section {
    padding: 60px 0;
    background: white;
    border-bottom: 1px solid var(--gray-200);
    overflow: hidden;
}

.logos-title {
    text-align: center;
    color: var(--gray-500);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
}

.logos-track {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-slide {
    display: flex;
    gap: 64px;
    animation: slide 30s linear infinite;
}

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

.logo-item {
    flex-shrink: 0;
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-400);
    white-space: nowrap;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

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

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.7;
}

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

.feature-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.feature-card.feature-main {
    grid-column: span 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 48px;
    background: var(--gradient-card);
}

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

.feature-illustration {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-50));
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.discover-map {
    width: 100%;
    height: 100%;
    position: relative;
    background:
        linear-gradient(90deg, var(--gray-200) 1px, transparent 1px),
        linear-gradient(var(--gray-200) 1px, transparent 1px);
    background-size: 30px 30px;
}

.map-pin {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--primary);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

.map-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.pin-1 { top: 20%; left: 30%; }
.pin-2 { top: 50%; left: 60%; }
.pin-3 { top: 70%; left: 25%; }

.pin-pulse {
    position: absolute;
    inset: -10px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: pingPulse 2s ease-out infinite;
}

.pin-1 .pin-pulse { animation-delay: 0s; }
.pin-2 .pin-pulse { animation-delay: 0.7s; }
.pin-3 .pin-pulse { animation-delay: 1.4s; }

@keyframes pingPulse {
    0% { transform: scale(0.5); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

.map-route {
    position: absolute;
    top: 30%;
    left: 35%;
    width: 120px;
    height: 80px;
    border: 3px dashed var(--primary-light);
    border-radius: 50%;
    opacity: 0.5;
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.feature-icon.blue { background: rgba(6, 182, 212, 0.1); }
.feature-icon.blue svg { color: #06b6d4; }

.feature-icon.green { background: rgba(16, 185, 129, 0.1); }
.feature-icon.green svg { color: #10b981; }

.feature-icon.purple { background: rgba(139, 92, 246, 0.1); }
.feature-icon.purple svg { color: #8b5cf6; }

.feature-icon.orange { background: rgba(245, 158, 11, 0.1); }
.feature-icon.orange svg { color: #f59e0b; }

.feature-icon.pink { background: rgba(236, 72, 153, 0.1); }
.feature-icon.pink svg { color: #ec4899; }

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

.feature-description {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

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

.feature-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
    color: var(--gray-700);
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */

.how-section {
    padding: var(--section-padding) 0;
    background: white;
}

.steps-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.step-card {
    flex: 1;
    text-align: center;
    padding: 32px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 24px;
}

.step-visual {
    margin-bottom: 24px;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
}

.step-icon svg {
    width: 36px;
    height: 36px;
    color: white;
}

.step-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

.step-connector {
    flex-shrink: 0;
    width: 100px;
    height: 20px;
    margin-top: 140px;
}

.step-connector svg {
    width: 100%;
    height: 100%;
}

/* ============================================
   FOR CLUBS SECTION
   ============================================ */

.clubs-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, white 100%);
}

.clubs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.clubs-text .section-label {
    display: inline-block;
}

.clubs-text .section-title {
    text-align: left;
    margin-bottom: 16px;
}

.clubs-text .section-subtitle {
    text-align: left;
    margin-bottom: 40px;
}

.clubs-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.club-feature {
    display: flex;
    gap: 16px;
}

.cf-icon {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.cf-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.cf-content p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

.btn-arrow {
    width: 20px;
    height: 20px;
    transition: var(--transition-base);
}

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

/* Dashboard Mockup */
.clubs-visual {
    position: relative;
}

.dashboard-mockup {
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}

.dh-dots {
    display: flex;
    gap: 6px;
}

.dh-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
}

.dh-dots span:first-child { background: #ef4444; }
.dh-dots span:nth-child(2) { background: #f59e0b; }
.dh-dots span:nth-child(3) { background: #10b981; }

.dh-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
}

.dashboard-content {
    display: flex;
    min-height: 350px;
}

.dash-sidebar {
    width: 64px;
    background: var(--gray-50);
    border-right: 1px solid var(--gray-200);
    padding: 16px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.dash-nav-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--gray-400);
    transition: var(--transition-base);
}

.dash-nav-item svg {
    width: 20px;
    height: 20px;
}

.dash-nav-item.active {
    background: var(--primary);
    color: white;
}

.dash-main {
    flex: 1;
    padding: 24px;
}

.dash-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.dash-stat {
    background: var(--gray-50);
    padding: 20px;
    border-radius: var(--radius-md);
}

.ds-value {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.ds-label {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.ds-change {
    font-size: 12px;
    font-weight: 600;
}

.ds-change.positive {
    color: var(--success);
}

.dash-chart {
    background: var(--gray-50);
    padding: 20px;
    border-radius: var(--radius-md);
}

.chart-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 20px;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 120px;
    gap: 8px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    height: var(--height);
    position: relative;
    transition: var(--transition-base);
}

.chart-bar:hover {
    opacity: 0.8;
}

.chart-bar span {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: var(--gray-500);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: var(--section-padding) 0;
    background: white;
}

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

.testimonial-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: var(--transition-base);
}

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

.testimonial-card.featured {
    background: var(--gradient-hero);
    border-color: transparent;
}

.testimonial-card.featured .testimonial-text,
.testimonial-card.featured .author-name {
    color: white;
}

.testimonial-card.featured .author-title {
    color: rgba(255, 255, 255, 0.7);
}

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

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

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 24px;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 2px;
}

.author-title {
    font-size: 13px;
    color: var(--gray-500);
}

/* ============================================
   DOWNLOAD SECTION
   ============================================ */

.download-section {
    position: relative;
    padding: var(--section-padding) 0;
    overflow: hidden;
}

.download-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.download-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(99, 102, 241, 0.4), transparent),
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(139, 92, 246, 0.3), transparent);
}

.download-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.download-content {
    position: relative;
    text-align: center;
    color: white;
}

.download-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 52px);
    font-weight: 700;
    margin-bottom: 16px;
}

.download-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

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

.store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    background: white;
    border-radius: var(--radius-lg);
    color: var(--gray-900);
    transition: var(--transition-base);
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.store-icon {
    width: 32px;
    height: 32px;
}

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

.store-label {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
    line-height: 1.2;
}

.store-name {
    font-size: 18px;
    font-weight: 700;
}

.download-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.qr-code {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: var(--radius-md);
    padding: 10px;
}

.qr-code svg {
    width: 100%;
    height: 100%;
}

.download-qr span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--gray-950);
    padding: 80px 0 40px;
    color: white;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-tagline {
    color: var(--gray-400);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--primary);
}

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

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

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--gray-400);
    margin-bottom: 12px;
    transition: var(--transition-base);
}

.footer-column a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 14px;
    color: var(--gray-500);
}

.footer-locale {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-400);
}

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

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

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .floating-card {
        display: none;
    }

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

    .feature-card.feature-main {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }

    .clubs-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .clubs-text .section-title,
    .clubs-text .section-subtitle {
        text-align: center;
    }

    .clubs-features {
        max-width: 500px;
        margin: 0 auto 40px;
    }

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

    .clubs-text .btn {
        display: inline-flex;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        color: var(--gray-700);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .phone-frame {
        width: 240px;
        height: 500px;
    }

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

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

    .steps-container {
        flex-direction: column;
        align-items: center;
    }

    .step-connector {
        display: none;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

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

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

    .hero-badge {
        font-size: 12px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn-lg {
        padding: 14px 24px;
        font-size: 15px;
    }

    .phone-frame {
        width: 200px;
        height: 420px;
    }

    .section-title {
        font-size: 28px;
    }

    .feature-card {
        padding: 24px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .dashboard-mockup {
        display: none;
    }
}
