/* ===================================
   ПЕРЕМЕННЫЕ И БАЗОВЫЕ СТИЛИ
   =================================== */
:root {
    --primary: #C44569;
    --primary-dark: #8B5A9E;
    --primary-light: #9B59B6;
    --bg-gradient: linear-gradient(135deg, #fff5f7 0%, #f3e7f9 50%, #e8f4f8 100%);
    --card-bg: #ffffff;
    --card-gradient: linear-gradient(135deg, #fff5f7 0%, #f8f0fa 100%);
    --text-dark: #333333;
    --text-light: #666666;
    --text-muted: #888888;
    --border-color: #f0e6f5;
    --shadow-sm: 0 2px 8px rgba(196, 69, 105, 0.08);
    --shadow-md: 0 4px 16px rgba(196, 69, 105, 0.12);
    --shadow-lg: 0 10px 40px rgba(196, 69, 105, 0.15);
    --radius: 20px;
    --radius-sm: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-gradient);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===================================
   ФИКСИРОВАННАЯ КНОПКА ДЛЯ МОБИЛЬНЫХ
   =================================== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px 20px;
    background: white;
    box-shadow: 0 -4px 20px rgba(196, 69, 105, 0.15);
    z-index: 1000;
}

.mobile-cta .btn-primary {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* ===================================
   КНОПКИ
   =================================== */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #C44569, #8B5A9E);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(196, 69, 105, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 69, 105, 0.4);
    border-color: var(--primary);
}

.btn-primary.btn-large {
    padding: 20px 50px;
    font-size: 1.2rem;
}

.btn-secondary {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* ===================================
   БЛОК 1: HERO
   =================================== */
.hero-block {
    text-align: center;
    padding: 80px 20px 60px;
    background: var(--card-gradient);
    border-radius: 0 0 var(--radius) var(--radius);
    margin-bottom: 40px;
}

.hero-badge {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.hero-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #C44569, #8B5A9E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.6;
}

.hero-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ===================================
   ОБЩИЕ СТИЛИ СЕКЦИЙ
   =================================== */
.section {
    padding: 60px 0;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #C44569, #8B5A9E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.section-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    margin: 30px 0;
    font-weight: 600;
}

.section-cta {
    text-align: center;
    margin-top: 40px;
}

/* ===================================
   БЛОК 2: БОЛИ
   =================================== */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.pain-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.pain-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.pain-card p {
    color: var(--text-light);
    line-height: 1.5;
}

/* ===================================
   БЛОК 3: ШАГИ
   =================================== */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.step-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #C44569, #8B5A9E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===================================
   БЛОК 4: СФЕРЫ
   =================================== */
.spheres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.sphere-card {
    background: var(--card-gradient);
    padding: 25px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.sphere-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.sphere-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.sphere-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.sphere-card p {
    color: var(--text-light);
    line-height: 1.5;
}

/* ===================================
   БЛОК 5: ПРЕИМУЩЕСТВА
   =================================== */
.benefits-list {
    list-style: none;
    max-width: 700px;
    margin: 40px auto;
}

.benefits-list li {
    background: var(--card-bg);
    padding: 20px 25px;
    margin-bottom: 15px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    font-size: 1.05rem;
    color: var(--text-dark);
    border-left: 4px solid var(--primary);
}

.benefits-note {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    margin: 30px 0;
    font-style: italic;
}

/* ===================================
   БЛОК 6: БОНУСЫ
   =================================== */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.bonus-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 2px dashed var(--primary);
    transition: all 0.3s ease;
}

.bonus-card:hover {
    border-style: solid;
    transform: translateY(-3px);
}

.bonus-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.bonus-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.bonus-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.bonus-details {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

/* ===================================
   БЛОК 7: ПОЛНАЯ ИГРА
   =================================== */
.full-game-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    margin-top: 30px;
}

.game-format {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.format-item {
    text-align: center;
}

.format-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.format-value {
    display: block;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.game-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===================================
   БЛОК 8: СПЕЦИАЛИСТЫ
   =================================== */
.specialists-block {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 50px 40px;
    box-shadow: var(--shadow-sm);
}

.specialists-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ===================================
   БЛОК 9: АВТОРЫ
   =================================== */
.authors-block {
    background: var(--card-gradient);
    border-radius: var(--radius);
    padding: 50px 40px;
}

.authors-info {
    max-width: 600px;
    margin: 30px auto 0;
}

.authors-info p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.authors-info strong {
    color: var(--primary);
}

/* ===================================
   БЛОК 10: ФИНАЛЬНЫЙ CTA
   =================================== */
.final-cta-block {
    background: linear-gradient(135deg, #C44569, #8B5A9E);
    padding: 80px 20px;
    text-align: center;
    color: white;
    border-radius: var(--radius);
    margin: 40px 0;
}

.final-cta-block h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: white;
    -webkit-text-fill-color: white;
}

.final-cta-block p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.final-cta-block .btn-primary {
    background: white;
    color: var(--primary);
}

.final-cta-block .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.final-note {
    margin-top: 20px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===================================
   ФУТЕР
   =================================== */
.kamerton-footer {
    background: var(--card-bg);
    padding: 40px 20px;
    text-align: center;
    border-radius: var(--radius) var(--radius) 0 0;
    margin-top: 60px;
}

.kamerton-footer p {
    color: var(--text-muted);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.footer-links a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 700px;
    margin: 20px auto 0;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ===================================
   АДАПТИВНОСТЬ
   =================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .pain-grid,
    .steps-grid,
    .spheres-grid,
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .mobile-cta {
        display: block;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .btn-primary.btn-large {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    .final-cta-block h2 {
        font-size: 1.6rem;
    }
    
    .game-buttons,
    .specialists-buttons {
        flex-direction: column;
    }
    
    .game-buttons .btn-primary,
    .game-buttons .btn-secondary,
    .specialists-buttons .btn-outline {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-block {
        padding: 50px 15px 40px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .full-game-card,
    .specialists-block,
    .authors-block {
        padding: 30px 20px;
    }
}
/* Подпись о согласии на первом экране */
.hero-consent-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}