/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Цветовая палитра */
    --primary: #0f172a;       /* Глубокий темный (почти черный) */
    --accent: #2563eb;        /* Технологичный синий */
    --accent-hover: #1d4ed8;
    --secondary: #10b981;     /* Зеленый (успех/аналитика) */
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    
    /* Шрифты */
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Oswald', sans-serif;
    
    /* Отступы и размеры */
    --container-width: 1200px;
    --radius: 12px;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

/* =========================================
   2. UTILITIES & LAYOUT
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.small-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    border: 2px solid var(--accent);
}

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

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid rgba(15, 23, 42, 0.2);
}

.btn-outline:hover {
    border-color: var(--primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* =========================================
   3. HEADER & TOP BAR
   ========================================= */
.top-bar {
    background-color: var(--primary);
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

.top-links a {
    color: rgba(255,255,255,0.8);
    margin-left: 20px;
}

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

.main-header {
    background: white;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

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

.desktop-nav ul {
    display: flex;
    gap: 30px;
}

.desktop-nav a {
    font-weight: 500;
    color: var(--text-dark);
}

.desktop-nav a:hover { color: var(--accent); }

.header-cta {
    display: flex;
    gap: 15px;
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero-section {
    padding: 100px 0 80px;
    background: radial-gradient(circle at top right, #f1f5f9, #fff);
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    animation: float 6s ease-in-out infinite;
    max-width: 100%;
}

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

.badge-new {
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-section h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--primary);
}

.hero-section p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

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

.hero-disclaimer {
    font-size: 12px;
    color: #94a3b8;
}

/* =========================================
   5. TRUST STRIP & FEATURES
   ========================================= */
.trust-strip {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.trust-strip p {
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    color: #64748b;
    font-weight: 700;
    font-size: 18px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

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

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--primary);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* =========================================
   6. SPLIT SECTIONS (Football/Winter)
   ========================================= */
.split-section {
    padding: 100px 0;
}

.bg-light { background-color: var(--bg-light); }

.flex-row {
    display: flex;
    align-items: center;
    gap: 60px;
}

.reverse-layout {
    flex-direction: row-reverse;
}

.text-col { flex: 1; }
.img-col { flex: 1; }

.img-col img {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.category-tag {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.text-col h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary);
}

.check-list {
    margin: 30px 0;
}

.check-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
}

.check-list li::before {
    content: '\f00c'; /* FontAwesome check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.link-arrow {
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.link-arrow:hover { gap: 12px; }

/* =========================================
   7. HOW IT WORKS & TESTIMONIALS
   ========================================= */
.app-showcase {
    background: var(--primary);
    color: white;
}

.app-showcase .section-header h2 { color: white; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(255,255,255,0.1);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.step h4 { font-size: 20px; margin-bottom: 10px; }
.step p { font-size: 15px; color: rgba(255,255,255,0.7); }

.mockup-center img {
    max-width: 800px;
    margin: 0 auto;
}

.testimonials { background: var(--bg-light); }

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}

.stars { color: #f59e0b; margin-bottom: 15px; }

.author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author span {
    font-weight: 600;
    font-size: 14px;
}

/* =========================================
   8. FAQ & FOOTER
   ========================================= */
.faq-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
}

.faq-item h3 { font-size: 18px; margin-bottom: 10px; cursor: pointer; }
.faq-item p { color: var(--text-light); }

.main-footer {
    background: #0b0f19;
    color: #94a3b8;
    padding: 80px 0 30px;
    font-size: 14px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

.logo-white {
    color: white;
    font-family: var(--font-heading);
    font-size: 24px;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

.footer-nav h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-nav ul li { margin-bottom: 10px; }
.footer-nav a:hover { color: white; }

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

.disclaimer-text {
    margin-top: 20px;
    font-size: 11px;
    color: #475569;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

/* =========================================
   9. RESPONSIVE (MOBILE)
   ========================================= */
@media (max-width: 1024px) {
    .hero-section h1 { font-size: 42px; }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; } /* Просто скрываем меню для простоты на моб */
    
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

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

    .hero-image img { margin-top: 40px; }

    .flex-row, .reverse-layout {
        flex-direction: column;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-header h2 { font-size: 32px; }
}
/* =========================================
   10. LEAD FORM STYLES (NEW)
   ========================================= */

.hero-bullets {
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
}

.hero-bullets li {
    margin-bottom: 10px;
    font-size: 16px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-bullets li i {
    color: var(--secondary);
}

/* Обертка формы */
.hero-form-wrapper {
    flex: 1;
    max-width: 450px;
    width: 100%;
}

.form-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(0,0,0,0.05);
}

.form-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--primary);
}

.form-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Поля ввода */
.input-group {
    position: relative;
    margin-bottom: 15px;
}

.input-group label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    z-index: 10;
}

.input-group input {
    width: 100%;
    padding: 14px 14px 14px 45px; /* Отступ слева под иконку */
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: 0.3s;
    outline: none;
    background: #f8fafc;
}

.input-group input:focus {
    border-color: var(--accent);
    background: white;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 18px;
    margin-top: 10px;
}

.form-footer {
    text-align: center;
    font-size: 11px !important;
    margin-top: 15px !important;
    margin-bottom: 0 !important;
    color: #cbd5e1 !important;
}

/* Адаптив для формы */
@media (max-width: 768px) {
    .hero-form-wrapper {
        margin-top: 30px;
    }
    
    .hero-bullets {
        display: none; /* Скрываем буллиты на мобилке для компактности */
    }
}

/* =========================================
   11. SPORTS GRID & PRICING STYLES
   ========================================= */

/* Sports Grid */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.sport-card {
    background: white;
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: 0.3s;
}

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

.sport-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 20px;
}

.sport-card h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary);
}

.league-list {
    text-align: left;
    padding-left: 0;
    font-size: 14px;
    color: var(--text-light);
}

.league-list li {
    margin-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.league-list img {
    width: 16px;
    height: auto;
    border-radius: 2px;
}

/* Pricing Table */
.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center; /* Центрируем по вертикали, чтобы Pro выделялся */
    margin-top: 50px;
}

.pricing-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Стили для PRO тарифа */
.pricing-card.popular {
    background: var(--accent);
    color: white;
    transform: scale(1.05);
    border: none;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.2);
    z-index: 2;
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.plan-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: #94a3b8;
    font-family: var(--font-main);
}

.pricing-card.popular .price span { color: rgba(255,255,255,0.7); }

.old-price {
    text-decoration: line-through;
    color: #ef4444; /* Красный для зачеркнутой цены */
    font-size: 24px;
    margin-right: 10px;
}

.pricing-card.popular .old-price { color: rgba(255,255,255,0.5); }

.plan-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

.pricing-card hr {
    border: 0;
    border-top: 1px solid #e2e8f0;
    margin: 20px 0;
}

.plan-features {
    text-align: left;
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li i { color: var(--secondary); }
.pricing-card.popular .plan-features li i { color: #4ade80; } /* Светло-зеленый на синем */

.plan-features li.disabled {
    color: #cbd5e1;
    text-decoration: line-through;
}

.plan-features li.disabled i { color: #cbd5e1; }

.btn-white {
    background: white;
    color: var(--accent);
    border: 2px solid white;
}

.btn-white:hover {
    background: transparent;
    color: white;
}

/* Адаптив для цен */
@media (max-width: 900px) {
    .pricing-card.popular {
        transform: scale(1); /* Убираем увеличение на мобилке */
        order: -1; /* Ставим популярный тариф первым */
    }
}