:root {
    --primary: #D35400;;
    --dark-text: #333;
    --light-text: #666;
    --accent: #ff3d00;
}


body, .hero, .advantages, .testimonials, .footer {
    background-color: #fdfdfd; /* или любой единый цвет */
}


.hero {
    padding: 4rem 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-image {
    flex: 1;
}


/* .landing-intro {
    position: relative;
    height: 100vh;
    background: no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: white;
    padding: 0 2rem;
}

.landing-content {
    max-width: 600px;
}

.landing-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.landing-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.landing-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    border-radius: 30px;
    margin-top: 1rem;
    transition: background-color 0.3s, color 0.3s;
}

.landing-button:hover {
    background: white;
    color: black;
} */

.cta-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #ff7b00, var(--accent));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 61, 0, 0.4);
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--accent), #ff7b00);
    box-shadow: 0 6px 15px rgba(255, 61, 0, 0.6);
    transform: translateY(-2px);
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-text);
}



.features, .description, .benefits, .pricing {
    padding: 4rem 0;
}

.description {
    padding: 2rem 0;
    text-align: center;
}
.description-text {
    font-size: 1.2rem;
    color: var(--dark-text);
}

.features {
    padding: 4rem 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}
.feature-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-text);
}
.advantages, .about {
    padding: 4rem 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.advantage-item h3 {
    font-size: 1.5rem;
}

.advantage-item span {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.about-columns {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 250px;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.benefit-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent);
}
.benefit-title {
    font-weight: bold;
    color: var(--dark-text);
}
.benefit-text {
    color: var(--light-text);
}

.price-card {
    padding: 2rem;
    background: white;
    border-radius: 10px;
    border: 2px solid #eee;
    text-align: center;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin: 1rem 0;
}

.youtube-section {
    text-align: center;
    color: #eee;
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.youtube-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Затемнение фона */
}
youtube-section {
    text-align: center;
    color: var(--light-text);
    padding: 6rem 0;
}
.video-container {
    position: relative;
    max-width: 800px;
    margin: auto;
    padding: 10px;
    background: rgba(255, 255, 255, 0.3); /* Сделал фон чуть более заметным */
    border-radius: 15px;
    backdrop-filter: blur(5px); /* Немного уменьшил размытие */
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5); /* Затемнённая тень */
    border: 3px solid rgba(0, 0, 0, 0.2); /* Тёмная обводка */
}


.video-container iframe {
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

.video-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.watch-button {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--accent);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(255, 61, 0, 0.4);
    transition: all 0.3s ease-in-out;
    margin-top: 1.5rem;
}

.watch-button:hover {
    background: #ff7b00;
    box-shadow: 0 6px 15px rgba(255, 61, 0, 0.6);
    transform: translateY(-2px);
}
.testimonials {
    text-align: center;
    padding: 4rem 0;
}

.testimonials-slider {
    max-width: 80%;
    margin: auto;
    display: flex;
    gap: 2rem;
    overflow-x: auto; /* Горизонтальная прокрутка, если отзывов много */
    scroll-snap-type: x mandatory;
    padding-bottom: 2rem;
}

.testimonial-card {
    flex: 0 0 300px; /* Фиксированная ширина карточек */
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    scroll-snap-align: center;
    transition: transform 0.3s ease-in-out;
}

.testimonial-card:hover {
    transform: translateY(-5px); /* Лёгкий подъем при наведении */
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
    position: relative;
}

.testimonial-text::before, 
.testimonial-text::after {
    content: "“"; /* Кавычки */
    font-size: 2rem;
    color: var(--primary);
}

.testimonial-author {
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 10px;
    color: var(--dark-text);
}

.testimonial-role {
    font-size: 0.9rem;
    color: var(--light-text);
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-top: 1rem;
    border: 2px solid var(--primary);
}


.swiper-button-next, .swiper-button-prev {
    color: #000;
}

.footer {
    color: #333;
    padding: 3rem 0;
    text-align: center;
    border-top: 2px solid #D35400
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    text-align: left;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #5C5C5C;
    border-bottom: 2px solid #D35400;
    padding-bottom: 0.5rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section ul {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: #5C5C5C;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #B89D96;
}

/* .social-icons {
    display: flex;
    gap: 1rem;
    justify-content: start;
    margin-top: 1rem;
}

.social-icon {
    color: #5C5C5C;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #D35400;
    transform: scale(1.1);
} */

.footer-copy {
    margin-top: 2rem;
    font-size: 0.85rem;
    opacity: 0.7;
    text-align: center;
}


/* Добавляем цвет для определенных заголовков */
.advantages-grid .advantage-item:nth-child(1) h3 span,
.advantages-grid .advantage-item:nth-child(3) h3 span,
.about .about-text h3 {
    color: #D35400;
}


@media (max-width: 768px) {
    .hero-content, .benefits-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
    }
    .video-container iframe {
        height: 300px;
    }
}
