﻿h1.gradient-text {
    all: unset;
    display: block;
    background: linear-gradient(135deg, #6a11ff, #ff6a88);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: inherit;
}

.hero-title-main {
    font-size: 3.2rem;
    font-weight: 800;
}

.hero-title-sub {
    font-size: 1.8rem;
    font-weight: 600;
}

body {
    background-color: #0a0a0f;
    color: #e0e0e0;
    font-family: 'Segoe UI', 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 70px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header h2 {
        font-size: 2.4rem;
        font-weight: 700;
        margin-bottom: 14px;
        background: linear-gradient(135deg, #ffffff 0%, #a0a0ff 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.accent-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #6a11ff, #ff6a88);
    margin: 0 auto;
    border-radius: 2px;
}

/* ========== HERO ========== */
.hero-section {
    padding: 50px 0 50px;
    background: radial-gradient(circle at 10% 20%, rgba(106,17,255,0.08) 0%, rgba(0,0,0,0) 70%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 280px;
}

.price-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
  
.old-price {
    font-size: 1.1rem;
    text-decoration: line-through;
    color: #777;
} 
 
.new-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ff6a88;
    background: rgba(255,106,136,0.1);
    padding: 6px 18px;
    border-radius: 30px;
}

.subtitle {
    font-size: 1.15rem;
    line-height: 1.55;
    color: #c0c0c0;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    align-items: center;
}

.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #9090a0;
}

    .hero-trust span {
        display: flex;
        align-items: center;
        gap: 4px;
    }

.btn-primary, .btn-secondary, .btn-demo {
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: linear-gradient(135deg, #6a11ff, #ff6a88);
    color: white;
    box-shadow: 0 4px 15px rgba(106,17,255,0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(106,17,255,0.4);
    }

.btn-secondary {
    background: transparent;
    color: #ff6a88;
    border: 1px solid #ff6a88;
}

    .btn-secondary:hover {
        background: rgba(255,106,136,0.1);
        transform: translateY(-2px);
    }

.btn-demo {
    background: transparent;
    color: #ff6a88;
    border: 2px solid #ff6a88;
    font-weight: 600;
}

    .btn-demo:hover {
        background: rgba(255,106,136,0.15);
        transform: translateY(-2px);
    }

.btn-primary.large {
    padding: 18px 48px;
    font-size: 1.2rem;
}

/* ========== HERO VISUAL ========== */
.hero-visual {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-svg-small {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 0 6px rgba(106,17,255,0.4));
}

.hero-image {
    width: 100%;
    max-width: 320px;
    height: auto;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 30px -15px rgba(106,17,255,0.2);
}

/* ========== COMPARISON ========== */
.comparison-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.comparison-card {
    flex: 1;
    min-width: 280px;
    background: rgba(20,20,30,0.5);
    border-radius: 24px;
    padding: 30px 28px;
    border: 1px solid rgba(255,255,255,0.05);
}

    .comparison-card.highlight {
        border-color: rgba(106,17,255,0.3);
        background: rgba(106,17,255,0.05);
        box-shadow: 0 0 30px rgba(106,17,255,0.1);
    }

    .comparison-card h3 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .comparison-card ul {
        list-style: none;
        padding: 0;
    }

    .comparison-card li {
        padding: 10px 0;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        color: #c0c0c0;
    }

.price-highlight {
    color: #ff6a88;
    font-weight: 700;
}

/* ========== AUDIENCE (4 специализации) ========== */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.audience-card {
    background: rgba(20,20,30,0.5);
    border-radius: 24px;
    padding: 32px 28px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .audience-card:hover {
        transform: translateY(-5px);
        border-color: rgba(106,17,255,0.2);
    }

.audience-icon {
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .audience-icon svg {
        width: 64px;
        height: 64px;
        filter: drop-shadow(0 0 6px rgba(106,17,255,0.3));
    }

.audience-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #fff;
}

.audience-card p {
    color: #b0b0b0;
    line-height: 1.5;
    margin-bottom: 16px;
}

.audience-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    width: 100%;
    margin-bottom: 20px;
}

.audience-card li {
    padding: 6px 0;
    color: #c0c0c0;
    font-size: 0.95rem;
}

    .audience-card li::before {
        content: "✓ ";
        color: #6a11ff;
    }

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: rgba(20,20,30,0.5);
    border-radius: 20px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.05);
}

.testimonial-text {
    font-style: italic;
    color: #d0d0e0;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: #fff;
}

.author-role {
    font-size: 0.85rem;
    color: #9090a0;
}

.learning-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.learning-svg-small {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 0 5px rgba(255,106,136,0.4));
}

.learning-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 15px 25px -10px rgba(106,17,255,0.2);
}

/* ========== STEPS ========== */
.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 220px;
    text-align: center;
    background: rgba(20,20,30,0.4);
    border-radius: 20px;
    padding: 30px 24px;
    border: 1px solid rgba(255,255,255,0.04);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6a11ff, #ff6a88);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 18px;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
}

.step-card p {
    color: #b0b0b0;
    line-height: 1.5;
}

/* ========== CTA ========== */
.cta-section {
    padding: 60px 0;
}

.cta-card {
    background: linear-gradient(135deg, rgba(106,17,255,0.15), rgba(255,106,136,0.15));
    border-radius: 40px;
    padding: 55px 40px;
    text-align: center;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.08);
}

    .cta-card h2 {
        font-size: 2.2rem;
        margin-bottom: 14px;
        color: #fff;
    }

    .cta-card p {
        font-size: 1.1rem;
        margin-bottom: 30px;
        color: #ccc;
    }

.cta-note {
    font-size: 0.9rem !important;
    color: #888 !important;
    margin-top: 18px !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 30px;
    }

    .hero-title-main {
        font-size: 2.2rem;
    }

    .hero-title-sub {
        font-size: 1.3rem;
    }

    .section {
        padding: 50px 0;
    } 
     
    .section-header h2 {
        font-size: 1.8rem;
    } 

    .hero-content {
        flex-direction: column;
        gap: 30px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .comparison-grid,
    .steps-grid {
        flex-direction: column;
    }

    .hero-svg-small {
        width: 70px;
        height: 70px;
    }

    .hero-image,
    .learning-image {
        max-width: 280px;
    }
}

/* Источник методик в hero */
.hero-coach-source {
    margin-top: 20px;
    background: rgba(106, 17, 255, 0.08);
    border-left: 3px solid #6a11ff;
    padding: 12px 18px;
    border-radius: 12px;
    color: #d0d0ff;
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 520px;
}

    .hero-coach-source .highlight-source {
        color: #ff6a88;
        font-weight: 600;
    }

/* Секция уникальных возможностей */
.features-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(20,20,30,0.5);
    border-radius: 24px;
    padding: 28px 24px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-4px);
        border-color: rgba(106,17,255,0.25);
    }

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}
 
.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-card p {
    color: #b0b0b0;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Адаптив */
@media (max-width: 768px) {
    .hero-coach-source {
        max-width: 100%;
        font-size: 0.9rem;
    }

    .feature-card {
        padding: 20px 16px;
    }
}