/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary: #10b981;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --gray-lighter: #f1f5f9;
    --white: #ffffff;
    
    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-light);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--gray-light);
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
}

.logo-img {
    width: 300px;
    height: auto;
    object-fit: contain;
}

.logo-text {
    font-family: 'Inter', 'Space Grotesk', var(--font-sans);
    font-weight: 600;
    color: var(--dark);
    font-size: 2.32rem;
    line-height: 1.05;
    letter-spacing: 0.00em;
    word-spacing: 0.00em;
    display: inline-flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

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

.nav-actions {
    display: flex;
    gap: var(--spacing-sm);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
}

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

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

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
    display: none;
    padding: var(--spacing-lg) 0;
    border-top: 1px solid var(--gray-light);
    margin-top: var(--spacing-md);
}

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

.mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-lg) 0;
}

.mobile-nav-links li {
    margin: 0;
}

.mobile-nav-links a {
    display: block;
    padding: var(--spacing-md);
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.mobile-nav-links a:hover {
    background: var(--gray-lighter);
    color: var(--primary);
}

.mobile-signup-btn {
    width: 100%;
    text-align: center;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.btn-white {
    padding: 0.625rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.95rem;
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--dark);
}

.btn-secondary:hover {
    background: var(--gray-lighter);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--gray-light);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background: var(--gray-lighter);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    position: relative;
    padding: calc(70px + var(--spacing-3xl)) 0 var(--spacing-3xl);
    overflow: hidden;
    background: white;
}

.hero-background {
    display: none;
}

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

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary-light);
    top: -200px;
    right: -100px;
}

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

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

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

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

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

.hero-description {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--gray-light);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
}

.hero-image {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-phone-image {
    max-width: 60%;
    height: auto;
    animation: float 3s infinite ease-in-out;
}

/* Phone Mockup */
.phone-mock {
    width: 320px;
    background: linear-gradient(145deg, #0f172a, #1f2f50);
    border-radius: 32px;
    padding: 14px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    animation: float 3.5s ease-in-out infinite;
}

.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    width: 140px;
    height: 18px;
    background: #0f172a;
    border-radius: 0 0 14px 14px;
    transform: translateX(-50%);
    box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
    z-index: 2;
}

.phone-inner {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border-radius: 24px;
    padding: 22px 16px 18px;
    display: grid;
    gap: 12px;
}

.phone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.phone-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-logo img {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    padding: 4px;
}

.phone-label {
    color: #d9e7ff;
    font-weight: 800;
    line-height: 1.1;
}

.phone-sub {
    color: #9fb5d8;
    font-size: 0.9rem;
}

.phone-status {
    display: flex;
    gap: 4px;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    display: inline-block;
}

.phone-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 14px;
    color: #dfe9ff;
}

.phone-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.phone-card-label {
    color: #9fb5d8;
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.phone-card-title {
    font-weight: 800;
}

.phone-card-sub {
    color: #9fb5d8;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.progress-bar {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    overflow: hidden;
}

.progress-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #4da3da, #1b2c4a);
    border-radius: 999px;
}

.progress-bar.alt span {
    background: linear-gradient(90deg, #7fd3ff, #4da3da);
}

.phone-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.phone-mini-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 10px;
    color: #dfe9ff;
}

.phone-mini-label {
    color: #9fb5d8;
    font-size: 0.85rem;
}

.phone-mini-value {
    font-weight: 800;
    margin: 2px 0;
}

.phone-mini-sub {
    color: #9fb5d8;
    font-size: 0.85rem;
}

.phone-feed {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 10px;
    display: grid;
    gap: 10px;
}

.feed-item {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-between;
}

.feed-item > div {
    flex: 1;
}

.feed-avatar {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: #1b2c4a;
    color: #dfe9ff;
    display: grid;
    place-items: center;
    font-weight: 800;
}

.feed-avatar.alt {
    background: #4da3da;
    color: #0f172a;
}

.feed-title {
    font-weight: 700;
    color: #dfe9ff;
}

.feed-sub {
    color: #9fb5d8;
    font-size: 0.85rem;
}

.pill {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 4px 10px;
    font-weight: 700;
    font-size: 0.85rem;
}

.pill.success {
    background: rgba(76, 217, 100, 0.15);
    color: #9ef7b3;
}

.pill.neutral {
    background: rgba(255, 255, 255, 0.12);
    color: #dfe9ff;
}

/* Keep old dashboard mockup for backward compatibility */
.dashboard-mockup {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-light);
    animation: float 6s infinite ease-in-out;
}

.mockup-header {
    background: var(--gray-lighter);
    padding: var(--spacing-sm);
    border-bottom: 1px solid var(--gray-light);
}

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

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

.mockup-content {
    display: flex;
    height: 400px;
}

.mockup-sidebar {
    width: 80px;
    background: var(--gray-lighter);
    border-right: 1px solid var(--gray-light);
}

.mockup-main {
    flex: 1;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.mockup-card {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    height: 100%;
    opacity: 0.2;
}

.mockup-card:nth-child(2) {
    opacity: 0.15;
}

.mockup-card:nth-child(3) {
    opacity: 0.1;
}

/* App Screenshot Mockup */
.app-screenshot {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-light);
    animation: float 3s infinite ease-in-out;
    padding: 2rem;
    max-width: 600px;
}

.screenshot-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-lighter);
}

.screenshot-title h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.screenshot-title p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.screenshot-section {
    margin-bottom: 2rem;
}

.screenshot-section:last-child {
    margin-bottom: 0;
}

.screenshot-section h4 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.coaches-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.coach-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: var(--gray-lighter);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.coach-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.coach-card .avatar {
    margin-bottom: 0.75rem;
}

.coach-card span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
}

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

.player-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.75rem 0.5rem;
    background: var(--white);
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    cursor: pointer;
}

.player-card:hover {
    background: var(--gray-lighter);
    transform: translateY(-2px);
}

.player-card.active {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
}

.player-card .avatar {
    margin-bottom: 0.5rem;
}

.player-card span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.2;
}

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

/* For Who Section */
.for-who {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-lighter);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.section-description {
    font-size: 1.125rem;
    color: var(--gray);
}

.two-column-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    transition: var(--transition);
}

.card-elevated {
    box-shadow: var(--shadow-md);
}

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

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.guardian-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: var(--white);
}

.admin-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.feature-card > p {
    color: var(--gray);
    margin-bottom: var(--spacing-lg);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--dark);
}

.feature-list svg {
    color: var(--secondary);
    flex-shrink: 0;
}

/* All Sports Section */
.all-sports-section {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.03), rgba(139, 92, 246, 0.03));
}

.sports-content {
    max-width: 900px;
    margin: 0 auto;
}

.sports-text h3 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.sports-text h3:first-child {
    margin-top: 0;
}

.sports-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.sports-list {
    display: grid;
    gap: 1.25rem;
    margin: 2rem 0;
}

.sport-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.sport-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.sport-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.sport-item span {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.sport-item strong {
    color: var(--text-primary);
}

.sports-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: var(--radius-xl);
    margin-top: 2.5rem;
    color: white !important;
}

.sports-highlight svg {
    flex-shrink: 0;
    color: white !important;
}

.sports-highlight strong {
    display: block;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white !important;
}

.sports-highlight p {
    color: white !important;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Features Section */
.features {
    padding: var(--spacing-3xl) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.feature-item {
    text-align: center;
    padding: var(--spacing-lg);
    transition: var(--transition);
    border-radius: var(--radius-xl);
}

.feature-item:hover {
    background: var(--gray-lighter);
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.feature-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.feature-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* Booking Section */
.booking {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-lighter);
}

.booking .section-header {
    margin-bottom: var(--spacing-xl);
}

.booking-embed {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.booking-embed iframe {
    display: block;
    width: 100%;
    height: 600px;
    border: 0;
}

/* Pricing Section */
.pricing {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, var(--gray-lighter) 0%, #ffffff 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    justify-items: center;
}

.pricing-card {
    background: #ffffff;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    max-width: 420px;
    width: 100%;
    text-align: center;
}

.pricing-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin: var(--spacing-sm) 0;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--gray);
}

.pricing-list {
    list-style: none;
    text-align: left;
    color: var(--gray);
    margin: 0 0 var(--spacing-lg);
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.pricing-list li {
    position: relative;
    padding-left: 1.4rem;
    line-height: 1.6;
}

.pricing-list li::before {
    content: '•';
    color: var(--primary);
    position: absolute;
    left: 0.2rem;
    top: 0;
}

/* CTA Section */
.cta {
    padding: var(--spacing-3xl) 0;
    background: #4da3da;
    color: #ffffff;
}

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

.cta h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.cta-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

.cta .btn-primary {
    background: #1b2c4a;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta .btn-primary:hover {
    background: #152338;
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--gray-light);
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.footer-logo .logo-img {
    width: 300px;
    height: auto;
    padding: 10px;
    border-radius: 8px;
}

.footer-description {
    color: var(--gray);
    line-height: 1.7;
}

.footer-column h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer-column a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
}

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

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

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    color: var(--gray);
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--white);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-2xl);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
    z-index: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--gray-lighter);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray);
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    background: var(--gray-light);
    color: var(--dark);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: var(--spacing-xl);
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.modal-header p {
    color: var(--gray);
    font-size: 1rem;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

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

.form-group label {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-sans);
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group select {
    cursor: pointer;
}

.form-actions {
    margin-top: var(--spacing-md);
}

.form-actions button {
    width: 100%;
}

/* Form validation states */
.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}

.form-group input:valid,
.form-group select:valid {
    border-color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-image {
        display: flex;
        justify-content: center;
    }
    
    .hero-phone-image {
        max-width: 80%;
    }
    
    .app-screenshot {
        padding: 1.5rem;
    }
    
    .coaches-grid {
        grid-template-columns: 1fr;
    }
    
    .players-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .two-column-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta h2 {
        font-size: 1.75rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero {
        padding: calc(70px + var(--spacing-xl)) 0 var(--spacing-xl);
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .app-screenshot {
        padding: 1rem;
    }
    
    .screenshot-title h3 {
        font-size: 1.25rem;
    }
    
    .players-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .player-card span {
        font-size: 0.75rem;
    }
    
    .modal-content {
        padding: var(--spacing-lg);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
}
