* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f8f8;
}

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

/* ШИРОКИЙ ФОН - правильное решение */
.wide-bg {
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    padding: 50px 0;
    background-attachment: local;
}

/* Если нужен действительно широкий фон, используйте псевдоэлемент */
.wide-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: -9999px;
    right: -9999px;
    bottom: 0;
    z-index: -1;
    background: inherit;
}

.lessons-bg {
    background: rgba(34, 197, 94, 0.08);
}

.bonuses-bg {
    background: rgba(239, 68, 68, 0.08);
}

.science-bg {
    background: rgba(249, 115, 22, 0.08);
}

.pricing-bg {
    background: rgba(6, 182, 212, 0.08);
}

/* Hero Section */
.hero {
    background: rgba(59, 130, 246, 0.08);
    padding: 50px 0;
    text-align: center;
}

.hero-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-placeholder {
    background: #fff;
    border: 2px dashed #ddd;
    border-radius: 15px;
    padding: 40px;
    margin: 30px auto;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-content {
    text-align: center;
    color: #666;
}

.video-content svg {
    color: #33808d;
    margin-bottom: 15px;
}

/* Кнопка под видео */
/* Стили для кнопки под видео */
.btn-video {
    display: inline-block;
    background: linear-gradient(135deg, #d82e4d 0%, #c71e42 100%);
    color: white;
    border: none;
    padding: 18px 32px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 18px rgba(216, 46, 77, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: inherit;
    min-height: 54px;
    position: relative;
    overflow: hidden;
}

.btn-video:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(216, 46, 77, 0.5);
    background: linear-gradient(135deg, #e63454 0%, #d82e4d 100%);
}

.btn-video:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(216, 46, 77, 0.3);
}

.btn-video:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(216, 46, 77, 0.3);
}

/* Анимация блеска */
.btn-video::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
} /* ✅ ДОБАВЛЕНА ПРАВИЛЬНАЯ ЗАКРЫВАЮЩАЯ СКОБКА */

.btn-video:hover::before {
    left: 100%;
}

.btn-video:hover::before {
    left: 100%;
}
/* Таймер */
.timer-display {
    font-size: 18px;
    font-weight: bold;
    color: #d82e4d;
    margin-top: 15px;
}

/* Content Sections */
.content-section {
    padding: 50px 0;
}

.large-text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.highlight-text {
    background: rgba(245, 158, 11, 0.08);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    text-align: center;
    font-size: 18px;
}

h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #1a1a1a;
    text-align: center;
}

/* Problems Grid */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.problem-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.problem-card h3 {
    color: #d82e4d;
    margin-bottom: 10px;
    font-size: 18px;
}

.problem {
    font-weight: 600;
    margin-bottom: 15px;
}

.solution {
    color: #33808d;
    font-style: italic;
}

/* Lessons Grid */
.lessons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.lesson-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    position: relative;
}

.lesson-number {
    position: absolute;
    top: -15px;
    left: 25px;
    background: #33808d;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.lesson-card h3 {
    margin: 10px 0 20px;
    color: #1a1a1a;
    font-size: 20px;
}

.lesson-card ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.lesson-card li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.lesson-result {
    background: rgba(59, 130, 246, 0.08);
    padding: 15px;
    border-radius: 8px;
    font-size: 14px;
}

/* Bonuses Grid */
.bonuses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.bonus-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.bonus-card h3 {
    color: #33808d;
    margin-bottom: 15px;
    font-size: 18px;
}

/* Audience Section */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.audience-item {
    background: rgba(147, 51, 234, 0.08);
    padding: 15px;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
}

/* Benefits Section */
.benefits-content {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.benefits-list {
    margin: 20px 0;
    padding-left: 20px;
}

.benefits-list li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.benefits-conclusion {
    background: rgba(236, 72, 153, 0.08);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    /* Убираем тени для чистого вида */
}

.testimonial-stars {
    color: #fbb400;
    font-size: 20px;
    margin-bottom: 10px;
    display: block;
}

.testimonial-header {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: #1a1a1a;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    color: #666;
}

/* Pricing Section */
.pricing-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    max-width: 500px;
    margin: 0 auto;
    border: 2px solid #33808d;
    position: relative;
}

.pricing-breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.price-original {
    color: #999;
    text-decoration: line-through;
}

.price-original.total {
    font-weight: bold;
    font-size: 18px;
}

.price-total {
    border-bottom: 2px solid #33808d;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.price-crossed {
    color: #d82e4d;
    text-decoration: line-through;
    font-size: 20px;
}

.price-final {
    background: rgba(34, 197, 94, 0.08);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin: 20px 0;
}

.price-free {
    color: #33808d;
    font-size: 32px;
    font-weight: bold;
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #d82e4d;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    transform: rotate(15deg);
}

/* CTA Section */
.cta-section {
    padding: 50px 0;
    text-align: center;
    background: rgba(59, 130, 246, 0.08);
}

.cta-button {
    background: linear-gradient(135deg, #33808d 0%, #29747f 100%);
    color: white;
    border: none;
    padding: 20px 40px;
    font-size: 20px;
    font-weight: bold;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.cta-note {
    margin-top: 20px;
    color: #d82e4d;
    font-weight: 600;
    font-size: 16px;
}

/* Contacts Section */
.contacts-section {
    padding: 50px 0;
    background: #fff;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f8f8;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.contact-icon {
    font-size: 32px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #33808d;
    border-radius: 50%;
}

.contact-info h3 {
    margin-bottom: 5px;
    color: #1a1a1a;
    font-size: 16px;
}

.contact-info a {
    color: #33808d;
    text-decoration: none;
    font-weight: 500;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .problems-grid,
    .lessons-grid,
    .bonuses-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-button {
        padding: 16px 24px;
        font-size: 16px;
    }
    
    .discount-badge {
        position: static;
        transform: none;
        margin-bottom: 15px;
        display: inline-block;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .wide-bg {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
}/* Стили для встроенного видео */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    height: 450px;
    margin: 0 auto 2rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    background: #000;
}

.sp-embed-player {
    width: 100%;
    height: 100%;
    position: relative;
}

.sp-embed-player iframe {
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .video-container {
        height: 250px;
        margin: 0 auto 1rem;
        border-radius: 15px;
    }
}

@media (max-width: 480px) {
    .video-container {
        height: 200px;
        border-radius: 12px;
    }
}


