/* CSS Design System - UK Soccer Leagues Sales Page */

:root {
    /* Color Palette - Pitch Dark Theme (Default) */
    --bg-main: hsl(222, 47%, 11%);
    --bg-surface: hsl(223, 47%, 16%);
    --bg-surface-glass: hsla(223, 47%, 16%, 0.7);
    --border-color: hsl(223, 47%, 24%);
    
    --text-main: hsl(210, 40%, 98%);
    --text-muted: hsl(215, 20%, 65%);
    --text-inverse: hsl(222, 47%, 11%);

    /* Brand Pitch Emeralds */
    --primary: hsl(142, 72%, 29%);
    --primary-hover: hsl(142, 76%, 36%);
    --primary-glow: hsla(142, 72%, 29%, 0.4);
    
    --accent: hsl(142, 70%, 45%);
    --accent-hover: hsl(142, 75%, 50%);
    --accent-glow: hsla(142, 70%, 45%, 0.3);
    
    --secondary: hsl(217, 32%, 17%);
    --secondary-hover: hsl(217, 32%, 22%);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);

    --border-radius-sm: 6px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Light Theme Variables */
body.light-theme {
    --bg-main: hsl(210, 40%, 98%);
    --bg-surface: hsl(0, 0%, 100%);
    --bg-surface-glass: rgba(255, 255, 255, 0.8);
    --border-color: hsl(214, 32%, 91%);
    
    --text-main: hsl(222, 47%, 11%);
    --text-muted: hsl(215, 16%, 47%);
    --text-inverse: hsl(210, 40%, 98%);

    --primary: hsl(142, 72%, 29%);
    --primary-hover: hsl(142, 76%, 36%);
    --primary-glow: hsla(142, 72%, 29%, 0.2);
    
    --accent: hsl(142, 69%, 36%);
    --accent-hover: hsl(142, 72%, 29%);
    --accent-glow: hsla(142, 69%, 36%, 0.2);
    
    --secondary: hsl(213, 27%, 84%);
    --secondary-hover: hsl(213, 27%, 78%);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 32px rgba(0, 0, 0, 0.12);
}

/* Global Reset & Base Styling */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color var(--transition-smooth), color var(--transition-smooth);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 0.5em;
}

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

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

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

.text-center { text-align: center; }
.mt-2 { margin-top: 12px; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    padding: 12px 24px;
    cursor: pointer;
    border: none;
    transition: transform 0.1s ease, background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.btn:active {
    transform: scale(0.98);
}

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

.btn-primary:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 0 15px var(--primary-glow);
}

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

.btn-accent:hover {
    background-color: var(--accent-hover);
    box-shadow: 0 0 15px var(--accent-glow);
}

.btn-secondary {
    background-color: var(--secondary);
    color: var(--text-main);
}

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

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 1.1rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--bg-surface-glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: var(--bg-surface-glass);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border-color);
    z-index: 100;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo h1 {
    margin-left: 15px;
    margin-bottom: 5px;
}

.logo-img {
    height: 42px;
    width: auto;
    display: block;
    transition: transform var(--transition-fast);
}

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

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-muted);
}

.main-nav a:hover {
    color: var(--text-main);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.theme-toggle-btn {
    background: none;
    border: 1px solid var(--border-color);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast);
}

.theme-toggle-btn:hover {
    background-color: var(--secondary);
}

/* Hero Section */
.hero-section {
    padding-top: 140px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-glow) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: var(--secondary);
    color: var(--accent);
    border-radius: 50px;
    margin-bottom: 24px;
}

.badge-outline {
    background-color: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-main) 60%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

/* Hero Preview Card Visual */
.hero-preview-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.preview-header {
    background: rgba(0,0,0,0.15);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.preview-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 6px;
}

.dot-red { background: #ff5f56; }
.dot-yellow { background: #ffbd2e; }
.dot-green { background: #27c93f; }

.preview-title {
    font-size: 0.8rem;
    font-family: 'Outfit', sans-serif;
    color: var(--text-muted);
    margin-left: 12px;
}

.preview-body {
    padding: 24px;
}

.preview-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.stat-box {
    background-color: rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: var(--border-radius-sm);
    display: flex;
    flex-direction: column;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent);
}

.preview-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feed-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
}

.feed-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feed-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.feed-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    font-size: 0.8rem;
}

.feed-details span {
    color: var(--text-muted);
}

.feed-time {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

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

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

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

.feature-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    padding: 32px;
    border-radius: var(--border-radius-md);
    transition: transform var(--transition-smooth), border-color var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    background-color: var(--secondary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Demo Section */
.demo-section {
    padding: 80px 0;
    background-color: rgba(0,0,0,0.1);
    border-top: 1px solid var(--border-color);
}

.demo-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    align-items: stretch;
}

.demo-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
}

.demo-card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-card-header h4 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.step-indicator {
    background-color: var(--secondary);
    color: var(--accent);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-indicator {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-indicator::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #f59e0b;
}

.status-indicator.ready::before {
    background-color: var(--accent);
}

.demo-card-body {
    padding: 24px;
    flex-grow: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-control {
    background-color: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 10px 14px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: var(--accent);
    outline: none;
}

.score-inputs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.score-box {
    width: 60px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
}

.demo-divider {
    border: 0;
    border-top: 1px solid var(--border-color);
    margin: 20px 0;
}

.match-events-section h5 {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.event-row {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.sm-control {
    flex-grow: 1;
    padding: 6px 12px;
    font-size: 0.85rem;
}

.event-badge {
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 4px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.badge-goal { background-color: rgba(16, 185, 129, 0.15); color: var(--accent); }
.badge-motm { background-color: rgba(245, 158, 11, 0.15); color: #f59e0b; }
.badge-card { background-color: rgba(239, 68, 68, 0.15); color: #ef4444; }

/* Report Output Display */
.report-display {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.placeholder-report {
    text-align: center;
    color: var(--text-muted);
    padding: 40px;
}

.placeholder-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--border-color);
}

.ai-match-report {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeIn 0.4s ease;
}

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

.ai-report-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 14px;
}

.ai-report-header h3 {
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 6px;
}

.ai-report-header .sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.ai-report-body p {
    font-size: 0.95rem;
    margin-bottom: 12px;
    text-align: justify;
}

.ai-report-footer {
    background: rgba(0,0,0,0.15);
    padding: 12px;
    border-radius: var(--border-radius-sm);
    font-size: 0.85rem;
}

/* Compare Section */
.compare-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
    box-shadow: var(--shadow-md);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.comparison-table th {
    background-color: var(--bg-surface);
    padding: 20px 24px;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--bg-surface);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.feature-title {
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

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

.negative {
    color: var(--text-muted);
}

/* Club Promo Section */
.club-promo-section {
    padding: 100px 0;
    background-color: rgba(16, 185, 129, 0.03);
    border-top: 1px solid var(--border-color);
    overflow: hidden;
}

.club-promo-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 64px;
    align-items: center;
}

.promo-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.promo-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.promo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.promo-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
}

.promo-list li i {
    color: var(--accent);
}

.price-callout {
    background-color: var(--secondary);
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
}

.price-callout .price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
}

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

/* Phone Mockup Rendering */
.phone-mockup-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 570px;
    background-color: #000;
    border: 12px solid #1f2937;
    border-radius: 40px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background-color: var(--bg-main);
    display: flex;
    flex-direction: column;
    color: var(--text-main);
}

.phone-header {
    height: 30px;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    color: var(--text-muted);
    background-color: var(--bg-surface);
}

.phone-camera {
    width: 60px;
    height: 15px;
    background-color: #000;
    border-radius: 0 0 10px 10px;
}

.phone-content {
    flex-grow: 1;
    padding: 14px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.club-site-logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.club-site-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1508098682722-e99c43a406b2?auto=format&fit=crop&q=80&w=200') no-repeat center/cover;
    height: 110px;
    border-radius: var(--border-radius-sm);
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.club-site-hero h3 {
    font-size: 0.9rem;
    margin-bottom: 2px;
    color: white;
}

.post-date {
    font-size: 0.65rem;
    color: #a1a1aa;
}

.club-site-body h4 {
    font-size: 0.8rem;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.mini-table {
    width: 100%;
    font-size: 0.7rem;
    border-collapse: collapse;
}

.mini-table th {
    text-align: left;
    color: var(--text-muted);
    padding: 4px;
    border-bottom: 1px solid var(--border-color);
}

.mini-table td {
    padding: 6px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.highlight-row td {
    font-weight: 700;
    color: var(--accent);
}

.btn-micro {
    font-family: 'Outfit', sans-serif;
    font-size: 0.65rem;
    background-color: var(--secondary);
    padding: 4px 8px;
    border-radius: 4px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
}

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

.pricing-card {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
}

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

.pricing-card-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
    margin-bottom: 24px;
}

.pricing-card-header h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.pricing-card-header p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.price-display {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-main);
    margin-top: 16px;
}

.price-display span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    flex-grow: 1;
}

.pricing-card-body ul li {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card-body ul li i {
    color: var(--accent);
}

.setup-note {
    display: block;
    text-align: center;
    margin-top: 12px;
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    border-top: 1px solid var(--border-color);
    background-color: rgba(0,0,0,0.05);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.method-item i {
    width: 44px;
    height: 44px;
    border-radius: var(--border-radius-sm);
    background-color: var(--secondary);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.method-item div {
    display: flex;
    flex-direction: column;
}

.method-item span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-form-panel {
    padding: 40px;
}

.contact-form-panel h3 {
    margin-bottom: 24px;
}

.contact-form-panel .form-group {
    margin-bottom: 16px;
}

.alert-success {
    background-color: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--accent);
    color: var(--text-main);
    padding: 16px;
    border-radius: var(--border-radius-sm);
    margin-top: 16px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Footer */
.main-footer {
    background-color: rgba(0,0,0,0.2);
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

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

}

/* AI Match Return Wizard Styles */
.ai-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border-radius: 20px;
    padding: 0.2rem 0.65rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(99,102,241,0.4);
    margin-right: 0.5rem;
}

.wizard-step {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeIn var(--transition-fast) ease;
}

.wiz-step-title {
    font-size: 1.15rem;
    color: var(--accent);
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.font-bold {
    font-weight: 700;
}

.row-group {
    display: flex;
    gap: 16px;
}

.checkbox-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    cursor: pointer;
}

.ref-summary-display {
    text-align: right;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--accent);
    margin-top: -8px;
}

.stats-scroll-area {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 8px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px;
    background-color: rgba(0,0,0,0.15);
}

.squad-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
}

.squad-row:last-child {
    border-bottom: none;
}

.player-name {
    font-weight: 600;
    font-size: 0.9rem;
    flex-grow: 1;
}

.goal-input-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.motm-label {
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.review-panel {
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 16px;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-row {
    display: flex;
    justify-content: space-between;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.review-row:last-child {
    border-bottom: none;
}

.review-label {
    color: var(--text-muted);
}

.review-value {
    font-weight: 600;
}

.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.6rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .demo-container {
        grid-template-columns: 1fr;
    }
    
    .club-promo-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}
