/* Base Styles */
:root {
    --primary-color: #F8C4B4;
    --primary-dark: #E5B1A2;
    --secondary-color: #F5EBE0;
    --accent-color: #DBA39A;
    --accent-dark: #C7938A;
    --text-color: #555555;
    --text-dark: #333333;
    --text-light: #777777;
    --bg-color: #FEFCF3;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --soft-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--accent-color));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
}

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

h1, h2, h3, h4, h5, h6 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    height: 4px;
    width: 60px;
    background: var(--gradient);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

h3 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius-sm);
}

section {
    padding: 120px 0;
    position: relative;
}

section:nth-child(odd) {
    background-color: var(--white);
}

.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--soft-shadow);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.primary-btn {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow);
}

.primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(219, 163, 154, 0.3);
}

.secondary-btn {
    background-color: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--secondary-color);
}

.secondary-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    padding-bottom: 0;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.05;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 150px;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, var(--bg-color), transparent);
    z-index: 1;
}

.hero h1 {
    margin-bottom: 25px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.slogan {
    font-size: 1.6rem;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 400;
    opacity: 0.9;
}

.hero-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--text-dark);
}

.hero-feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"%3E%3Cpath fill="%23FEFCF3" fill-opacity="1" d="M0,192L48,186.7C96,181,192,171,288,149.3C384,128,480,96,576,106.7C672,117,768,171,864,186.7C960,203,1056,181,1152,160C1248,139,1344,117,1392,106.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"%3E%3C/path%3E%3C/svg%3E');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* About Section */
.about {
    background-color: var(--white);
    overflow: hidden;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.2;
    z-index: 1;
}

.about-image img {
    border-radius: var(--border-radius);
    transform: scale(1);
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.highlight {
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--accent-color);
    padding: 15px 0;
    margin-top: 20px;
    border-left: 3px solid var(--accent-color);
    padding-left: 15px;
    line-height: 1.5;
}

/* Program Section - Updated */
.program {
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.program::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(100px, -100px);
}

.program-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.3rem;
    color: var(--accent-color);
    font-weight: 500;
    line-height: 1.6;
}

.modules {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.module {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    border-top: 5px solid var(--module-color, var(--primary-color));
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.module:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.module h3 {
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.module-list {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 25px;
}

.module-list li {
    padding: 12px 0;
    position: relative;
    padding-left: 30px;
    border-bottom: 1px dashed rgba(0,0,0,0.05);
}

.module-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}

.practice {
    margin-top: 20px;
    padding: 20px;
    border-radius: var(--border-radius-sm);
    background-color: var(--secondary-color);
    font-weight: 500;
}

/* Benefits Section - Updated */
.benefits {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.benefits::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: var(--gradient);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(-50px, 50px);
}

.benefits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 70px;
}

.benefit {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    background-color: var(--white);
    transition: var(--transition);
    box-shadow: var(--soft-shadow);
    border: 1px solid rgba(0,0,0,0.02);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient);
    opacity: 0.1;
    transition: var(--transition);
    z-index: -1;
}

.benefit:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.benefit:hover::before {
    height: 100%;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    position: relative;
    z-index: 1;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: var(--transition);
}

.benefit:hover .benefit-icon::after {
    background: var(--primary-color);
    width: 80px;
    height: 80px;
}

.benefit h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: var(--transition);
}

.benefit:hover h3 {
    color: var(--accent-dark);
}

.bonus-section {
    background: var(--gradient);
    padding: 50px;
    border-radius: var(--border-radius);
    color: var(--white);
    text-align: center;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.bonus-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transform: translate(50px, -50px);
}

.bonus-section h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.bonus-section p {
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.pricing::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 500px;
    height: 500px;
    background: var(--gradient);
    opacity: 0.03;
    border-radius: 50%;
    transform: translateY(-50%);
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.plan {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 50px 40px;
    box-shadow: var(--soft-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0,0,0,0.02);
}

.plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--gradient);
    opacity: 0.02;
    transition: var(--transition);
}

.plan:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow);
}

.plan:hover::before {
    height: 100%;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-description {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-light);
    font-size: 1.05rem;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 10px;
    margin-bottom: 5px;
}

.plan-features {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    padding: 12px 0;
    position: relative;
    padding-left: 30px;
    font-size: 1rem;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--accent-color);
    font-weight: bold;
}

.plan-features li:last-child {
    border-bottom: none;
}

.recommended {
    border: none;
    transform: scale(1.05);
    z-index: 10;
    box-shadow: var(--shadow);
    background: linear-gradient(to bottom, var(--white), var(--white)), var(--gradient);
    background-origin: padding-box, border-box;
    background-repeat: no-repeat;
    border: 2px solid transparent;
}

.recommended:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient);
    color: var(--white);
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1;
}

.pricing-note {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--soft-shadow);
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.pricing-note::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--gradient);
    opacity: 0.05;
    z-index: -1;
}

.pricing-note p {
    margin-bottom: 0;
    color: var(--text-dark);
}

/* Testimonials */
.testimonials {
    background-color: #fff;
    padding: 80px 0;
    overflow: hidden;
}

.testimonial-container {
    margin-top: 30px;
    position: relative;
    max-width: 100%;
}

.testimonial {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonial.active {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateY(0);
}

.testimonial-image-wrapper {
    width: 100%;
    margin-bottom: 20px;
}

.testimonial-image {
    position: relative;
    width: 100%;
    padding-bottom: 75%; /* 4:3 aspect ratio вместо 16:9 */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.testimonial:hover .testimonial-image img {
    transform: scale(1.05);
}

.testimonial-content {
    width: 100%;
    padding: 20px;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
    color: #333;
}

.testimonial-author {
    font-weight: 600;
    color: #FF9500;
    font-style: normal !important;
}

.testimonial-controls {
    text-align: center;
    margin-bottom: 40px;
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #FF9500;
    color: white;
    border: none;
    margin: 0 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: #e68600;
    transform: scale(1.1);
}

/* Media queries for responsive design */
@media (min-width: 768px) {
    .testimonial.active {
        flex-direction: row;
        align-items: flex-start;
    }
    
    .testimonial-image-wrapper {
        width: 40%; /* Уменьшаем ширину обертки изображения */
        max-width: 350px;
        margin-bottom: 0;
        margin-right: 30px;
    }
    
    .testimonial-image {
        padding-bottom: 125%; /* Увеличиваем высоту для более вертикального, прямоугольного вида */
    }
    
    .testimonial-content {
        width: 60%; /* Увеличиваем ширину контента */
        padding: 0 0 0 20px;
    }
    
    .testimonial-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    section {
        overflow-x: hidden;
    }
    
    .hero, .about, .program, .benefits, .pricing, .testimonials, .faq, .cta, footer {
        max-width: 100vw;
    }
    
    .logo {
        max-width: 80px; /* Немного больше в начале */
    }
    
    .logo img {
        width: 100%;
        height: auto;
    }
    
    .main-header.scrolled .logo {
        max-width: 60px; /* Меньше при прокрутке */
    }
    
    .header-inner {
        padding: 10px 0; /* Уменьшенные отступы в шапке */
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-header {
        padding: 10px 0;
    }
    
    .main-nav {
        display: none; /* Скрываем основное меню на мобильных, так как есть мобильное меню */
    }
    
    .header-btn {
        margin-top: 10px;
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .testimonial-image-wrapper {
        text-align: center;
        margin: 0 auto 10px;
        width: 100%;
    }
    
    .testimonial-image {
        width: 140px; /* Шире для десктопов и планшетов */
        height: 120px; /* Оставляем ту же высоту */
        border-radius: 8px;
        padding-bottom: 0;
        overflow: hidden;
    }
    
    .testimonial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
    
    .testimonial-content {
        text-align: center;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .logo {
        max-width: 70px; /* Немного больше в начале */
    }
    
    .main-header.scrolled .logo {
        max-width: 50px; /* Меньше при прокрутке */
    }
    
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .testimonial-image {
        width: 120px; /* Шире для мобильных */
        height: 100px; /* Оставляем ту же высоту */
        margin: 0 auto 10px;
        border-radius: 8px;
        padding-bottom: 0;
        position: relative;
        overflow: hidden;
    }
    
    .testimonial-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }
    
    .testimonial {
        padding: 15px 10px;
    }
}

/* Специфичные стили для очень высоких устройств (iPhone Pro Max) */
@media (max-width: 430px) and (min-height: 900px) {
    .logo {
        max-width: 65px; /* Немного больше в начале */
    }
    
    .main-header.scrolled .logo {
        max-width: 45px; /* Еще меньше при прокрутке */
    }
    
    .testimonial-image {
        width: 120px; /* Шире для iPhone Pro Max */
        height: 100px; /* Оставляем ту же высоту */
        border-radius: 8px; /* Убираем круглые фото, оставляем скругленные углы */
    }
}

/* FAQ Section */
.faq {
    background-color: var(--white);
    position: relative;
}

.faq::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--gradient);
    opacity: 0.03;
    border-radius: 50%;
    transform: translate(100px, 100px);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--soft-shadow);
    background-color: var(--white);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    position: relative;
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    padding: 0 25px;
}

.faq-question.active + .faq-answer {
    max-height: 1000px;
    padding: 0 25px 25px;
}

/* CTA Section */
.cta {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0.7;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.cta h2::after {
    background: var(--white);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
}

footer p {
    margin-bottom: 0;
    opacity: 0.8;
}

/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .testimonial-container {
        grid-template-columns: 1fr;
    }
    
    .main-nav {
        display: none;
    }
    
    .header-btn {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    section {
        padding: 80px 0;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0;
    }
    
    .modules {
        grid-template-columns: 1fr;
    }
    
    .pricing-plans {
        grid-template-columns: 1fr;
    }
    
    .recommended {
        transform: scale(1);
    }
    
    .recommended:hover {
        transform: translateY(-10px);
    }
    
    .testimonial-container {
        gap: 30px;
    }
    
    .counters {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .program-tabs {
        gap: 10px;
    }
    
    .program-tab {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .slogan {
        font-size: 1.2rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .testimonial {
        flex-direction: column;
    }

    .bonus-section {
        padding: 30px;
    }

    .module {
        padding: 30px;
    }

    .pricing-note {
        padding: 20px;
    }
    
    .counters {
        grid-template-columns: 1fr;
    }
    
    .hero-feature {
        justify-content: center;
    }
}

/* Header styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background-color: transparent;
}

.main-header.scrolled {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 12px 0;
}

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

.logo {
    max-width: 150px;
    transition: var(--transition);
}

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

.main-header.scrolled .logo {
    max-width: 120px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
    transition: var(--transition);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--accent-color);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
}

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

.about-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.about-feature-text h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.about-feature-text p {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: var(--text-light);
}

/* Program tabs */
.program-tabs {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.program-tab {
    padding: 15px 25px;
    background-color: var(--white);
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--soft-shadow);
    color: var(--text-dark);
}

.program-tab:hover {
    background-color: var(--secondary-color);
}

.program-tab.active {
    background: var(--gradient);
    color: var(--white);
    box-shadow: var(--shadow);
}

.program-content {
    margin-bottom: 40px;
}

.program-week {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.program-week.active {
    display: block;
}

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

/* Counter section */
.counter-section {
    padding: 80px 0;
    background: var(--gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.counter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z" fill="rgba(255,255,255,0.1)" fill-rule="evenodd"/%3E%3C/svg%3E');
    opacity: 0.4;
}

.counters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.counter {
    position: relative;
    z-index: 1;
}

.counter-value {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

.counter-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Benefits updates */
.bonus-btn {
    margin-top: 20px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid var(--white);
}

.bonus-btn:hover {
    background-color: var(--white);
    color: var(--accent-color);
}

/* CTA Section updates */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.cta-info {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-info strong {
    font-weight: 700;
}

/* Footer updates */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--gradient);
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contacts li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contacts li i {
    color: var(--primary-color);
}

.footer-logo {
    margin-bottom: 20px;
    max-width: 150px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-form input {
    padding: 12px 15px;
    border-radius: 5px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.footer-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-form button {
    width: 100%;
    margin-top: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
    .logo {
        max-width: 80px; /* Немного больше в начале */
    }
    
    .logo img {
        width: 100%;
        height: auto;
    }
    
    .main-header.scrolled .logo {
        max-width: 60px; /* Меньше при прокрутке */
    }
    
    .header-inner {
        padding: 10px 0; /* Уменьшенные отступы в шапке */
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-header {
        padding: 10px 0;
    }
    
    .main-nav {
        display: none; /* Скрываем основное меню на мобильных, так как есть мобильное меню */
    }
    
    .header-btn {
        margin-top: 10px;
        padding: 8px 15px;
        font-size: 14px;
    }
}

/* Extra small devices */
@media (max-width: 576px) {
    .logo {
        max-width: 70px; /* Немного больше в начале */
    }
    
    .main-header.scrolled .logo {
        max-width: 50px; /* Меньше при прокрутке */
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Рекомендации по изображениям для README */
/* 
Для отзывов:
- Рекомендуемое соотношение сторон: 3:4 (портрет)
- Фокус фото должен быть на лице
- Размер: минимум 600px по высоте для лучшего качества
- Формат: JPEG или WebP для лучшей совместимости и сжатия
*/ 