/* ===== СБРОС И БАЗОВЫЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2d3436;
    background: #f8f9fa;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* ===== ШАПКА ===== */
header {
    background: linear-gradient(135deg, #D06E00 0%, #F49000 100%); /* ORANGE */
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
}

.logo span {
    color: #f0c040;
}

img.logo-img {
    width: 100px;
    height: auto;
}

.header-phone {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.header-phone a {
    color: #f0c040;
    text-decoration: none;
}

.header-email {
    color: #fff;
    font-weight: 600;
}

/* ===== ГЕРОЙ ===== */
.hero {
    background: linear-gradient(rgba(208, 110, 0, 0.85), rgba(244, 144, 0, 0.9)), /* ORANGE */
                url('images/hero-fishing.jpg') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, #f8f9fa);
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: #f0c040;
    color: #D06E00; /* ORANGE */
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 46px;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero h1 span {
    color: #f0c040;
}

.hero p {
    font-size: 20px;
    color: #f0d8b8; /* ORANGE — светлый тёплый */
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-primary {
    background: #fda324; /* ORANGE */
    color: #fff;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 25px rgba(244, 144, 0, 0.4);
}

.btn-primary:hover {
    background: #ffaa22;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(244, 144, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    padding: 18px 40px;
    border: 2px solid #F49000; /* ORANGE */
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #fda324; /* ORANGE */
    color: #fff;
}

.hero-price {
    color: #ffecb7;
    font-size: 20px;
    font-weight: 400;
}

.hero-price strong {
    font-size: 28px;
    text-decoration: line-through;
    color: #999;
    margin-right: 10px;
}

.hero-price .current-price {
    font-size: 42px;
    font-weight: 800;
}

/* ===== СЕКЦИЯ: ПРОБЛЕМА ===== */
.problem-section {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    color: #D06E00; /* ORANGE */
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.problem-card {
    background: #fff8f0; /* ORANGE — светлый фон */
    border-left: 5px solid #e74c3c;
    border-radius: 12px;
    padding: 30px;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-card .icon {
    font-size: 48px;
    margin-bottom: 15px;
}

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

.problem-card p {
    color: #555;
    font-size: 15px;
}

/* ===== СЕКЦИЯ: РЕШЕНИЕ ===== */
.solution-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #D06E00 0%, #F49000 100%); /* ORANGE */
    color: #fff;
}

.solution-section .section-title h2 {
    color: #fff;
}

.solution-section .section-title p {
    color: #fce8cc; /* ORANGE */
}

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

.solution-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.solution-card:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.solution-card .icon {
    font-size: 56px;
    margin-bottom: 20px;
}

.solution-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #f0c040;
}

.solution-card p {
    font-size: 14px;
    color: #fce8cc; /* ORANGE */
    line-height: 1.7;
}

/* ===== СЕКЦИЯ: КУРС (подробности) ===== */
.course-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.course-image-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

.course-image-wrapper img {
    max-width: 100%;
    height: auto;
    /* max-width: 100%; */
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.course-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 12px;
}

.detail-item .check-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #D06E00; /* ORANGE */
    color: #f0c040;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
}

.detail-item h4 {
    font-size: 16px;
    color: #D06E00; /* ORANGE */
    margin-bottom: 5px;
}

.detail-item p {
    font-size: 14px;
    color: #666;
}

/* ===== СЕКЦИЯ: ОТЗЫВЫ ===== */
.reviews-section {
    padding: 80px 0;
    background: #fff;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    border: 1px solid #eee;
}

.review-card::before {
    content: '"';
    font-size: 80px;
    color: #D06E00; /* ORANGE */
    opacity: 0.15;
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: Georgia, serif;
    line-height: 1;
}

.review-stars {
    color: #f0c040;
    font-size: 20px;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
    font-size: 15px;
}

.review-author {
    font-weight: 700;
    color: #D06E00; /* ORANGE */
}

.review-author span {
    font-weight: 400;
    color: #999;
    font-size: 13px;
}

/* ===== СЕКЦИЯ: ГАРАНТИЯ ===== */
.guarantee-section {
    padding: 80px 0;
    background: #fff;
}

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

.guarantee-card {
    text-align: center;
    padding: 30px;
    border-radius: 16px;
    background: #fff8f0; /* ORANGE — светлый тёплый фон */
    border: 1px solid #ffe0b2; /* ORANGE */
}

.guarantee-card .icon {
    font-size: 52px;
    margin-bottom: 15px;
}

.guarantee-card h3 {
    font-size: 18px;
    color: #D06E00; /* ORANGE */
    margin-bottom: 10px;
}

.guarantee-card p {
    color: #666;
    font-size: 14px;
}

/* Price section */
.price-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
    color: #fff;
}

.price-section .section-title h2 {
    color: #fff;
}

.price-section .section-title p {
    color: #aab;
}

.price-box {
    display: inline-block;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.15);
    border-radius: 24px;
    padding: 50px 60px;
    max-width: 500px;
    width: 100%;
    backdrop-filter: blur(10px);
}

.price-old {
    font-size: 22px;
    color: #888;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.price-current {
    font-size: 64px;
    font-weight: 900;
    color: #f0c040;
    line-height: 1;
    margin-bottom: 5px;
}

.price-current sup {
    font-size: 30px;
}

.price-subtitle {
    color: #aab;
    margin-bottom: 30px;
    font-size: 16px;
}

.btn-big {
    display: inline-block;
    background: #f0c040;
    color: #0b4d2b;
    padding: 20px 60px;
    border: none;
    border-radius: 50px;
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 30px rgba(240, 192, 64, 0.4);
    width: 100%;
    max-width: 380px;
}

.btn-big:hover {
    background: #ffd84d;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(240, 192, 64, 0.6);
}

.price-note {
    color: #777;
    font-size: 13px;
    margin-top: 15px;
}

/* ===== СЕКЦИЯ: Скриншоты ===== */
/* .course-screenshoot li.splide__slide { */
    /* display: flex; Делаем родительский блок гибким
    justify-content: center; /* Центрирует по горизонтали */
    /* align-items: center; */ */
/* } */
.course-screenshoot li.splide__slide img {
    max-width: 700px;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
}

/* ===== СЕКЦИЯ: FAQ ===== */
.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px 25px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    color: #D06E00; /* ORANGE */
    border: none;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #fff8f0; /* ORANGE */
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    transition: transform 0.3s;
}

.faq-question.active::after {
    content: '−';
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    background: #fffaf5; /* ORANGE */
}

.faq-answer.open {
    padding: 20px 25px;
    max-height: 300px;
}

/* ===== ФИНАЛЬНЫЙ CTA ===== */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(208, 110, 0, 0.9), rgba(208, 110, 0, 0.95)), /* ORANGE */
                url('images/final-cta-bg.jpg') center/cover no-repeat;
    text-align: center;
    color: #fff;
}

.final-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.final-cta h2 span {
    color: #f0c040;
}

.final-cta p {
    font-size: 18px;
    color: #fce8cc; /* ORANGE */
    max-width: 600px;
    margin: 0 auto 35px;
}

.timer {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.timer-block {
    background: rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 15px 25px;
    min-width: 80px;
}

.timer-block .number {
    font-size: 36px;
    font-weight: 900;
    color: #f0c040;
}

.timer-block .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fce8cc; /* ORANGE */
}

/* ===== ФУТЕР ===== */
footer {
    background: #2a1a0a; /* ORANGE — тёмный тёплый вместо холодного */
    color: #999;
    padding: 40px 0 30px;
}

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

.footer-col h4 {
    color: #F49000; /* ORANGE */
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #999;
    line-height: 2;
    display: block;
}

.footer-col a:hover {
    color: #F49000; /* ORANGE */
}

.footer-bottom {
    border-top: 1px solid #443320; /* ORANGE */
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: #777;
}

/* Стили для модального окна */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-window {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 500px;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    background: linear-gradient(135deg, #D06E00 0%, #F49000 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
}

.close-btn {
    font-size: 28px;
    cursor: pointer;
    color: white;
    line-height: 1;
}

.close-btn:hover {
    color: #f0c040;
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: #F49000;
    box-shadow: 0 0 0 2px rgba(244, 144, 0, 0.2);
}

.btn-submit {
    background: #fda324;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #ffaa22;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 144, 0, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-price .current-price {
        font-size: 32px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .price-box {
        padding: 30px 25px;
        display: inline-block;
        background: rgba(255,255,255,0.08);
        border: 2px solid rgba(255,255,255,0.15);
        border-radius: 24px;
        padding: 50px 60px;
        max-width: 500px;
        width: 100%;
        backdrop-filter: blur(10px);
    }

    .price-current {
        font-size: 48px;
    }

    .btn-big {
        padding: 16px 40px;
        font-size: 18px;
    }

    .course-details {
        grid-template-columns: 1fr;
    }

    .timer {
        gap: 10px;
    }

    .final-cta h2 {
        font-size: 28px;
    }

    .header-phone {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}

/* ===== АНИМАЦИИ ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== СТИЛИ ДЛЯ GLIDER СЛАЙДЕРА ===== */
.glider-contain {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.glider {
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.glider::-webkit-scrollbar {
    display: none;
}

.glider-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glider-slide img {
    max-width: 500px;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.glider-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    list-style: none;
}

.glider-dot {
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    width: 12px;
    height: 12px;
    padding: 0;
    border: none;
    cursor: pointer;
    outline: none;
}

.glider-dot.active {
    background: #0b4d2b;
}

.glider-prev, .glider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(11, 77, 43, 0.8);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 2;
    font-size: 18px;
    transition: background 0.3s;
}

.glider-prev:hover, .glider-next:hover {
    background: rgba(11, 77, 43, 1);
}

.glider-prev {
    left: -60px;
}

.glider-next {
    right: -60px;
}