/* Сброс стилей и базовые настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Плавные переходы для всех элементов */
html {
    scroll-behavior: smooth;
}

*, *::before, *::after {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Дополнительные плавные эффекты */
.animate-in {
    animation: slideInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

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

/* Улучшенные hover эффекты */
.step, .result-card, .problem-item, .guarantee-item, .audience-card {
    will-change: transform;
}

.step:hover, .result-card:hover, .problem-item:hover, .guarantee-item:hover, .audience-card:hover {
    transform: translateY(-10px) scale(1.03);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    animation: fadeIn 0.8s ease-out;
}

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

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

/* Шапка */
.header {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-bottom: 1px solid #e3f2fd;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from { 
        opacity: 0; 
        transform: translateY(-100%); 
    }
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

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

.logo h1 {
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 24px;
    font-weight: bold;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { 
        background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }
    50% { 
        background: linear-gradient(135deg, #42a5f5 0%, #66bb6a 100%);
        -webkit-background-clip: text;
        background-clip: text;
    }
}

.phone {
    color: #1565c0;
    font-weight: 600;
    font-size: 16px;
}

/* Главный экран */
.hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 50%, #e8f5e8 100%);
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(33, 150, 243, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(135deg, #1565c0 0%, #388e3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

.hero-benefits {
    margin-bottom: 40px;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.benefit-icon {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin-right: 15px;
    width: 20px;
    text-align: center;
}

.cta-button {
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(25, 118, 210, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #42a5f5 0%, #66bb6a 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover::before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(25, 118, 210, 0.4);
}

/* Иллюстрация красоты */
.beauty-placeholder {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    background: linear-gradient(135deg, #e1f5fe 0%, #f3e5f5 50%, #e8f5e8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(33, 150, 243, 0.15);
    border: 2px solid rgba(33, 150, 243, 0.2);
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        box-shadow: 0 15px 35px rgba(33, 150, 243, 0.15);
    }
    50% { 
        transform: scale(1.05) rotate(1deg);
        box-shadow: 0 20px 45px rgba(33, 150, 243, 0.25);
    }
}

.face-silhouette {
    width: 300px;
    height: 350px;
    background: linear-gradient(180deg, #81c784 0%, #64b5f6 100%);
    border-radius: 150px 150px 100px 100px;
    position: relative;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3);
}

.face-silhouette::before {
    content: '';
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: #2d3436;
    border-radius: 50%;
    box-shadow: 80px 0 0 #2d3436;
}

.face-silhouette::after {
    content: '';
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 30px;
    background: #7f8c8d;
    border-radius: 0 0 40px 40px;
}

/* Удалены sparkles для строгого дизайна */

/* Секции */
.section-title {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 50%, #66bb6a 100%);
    border-radius: 2px;
}

/* О курсе */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.about-list {
    list-style: none;
}

.about-list li {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.about-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 18px;
}

.about-stats {
    display: grid;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
    border: 1px solid #bbdefb;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.15);
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-text {
    color: #666;
    font-size: 14px;
}

/* Программа курса */
.program {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3e5f5 0%, #e8f5e8 100%);
}

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

.step {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e3f2fd;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
}

.step h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 20px;
}

.step p {
    color: #666;
    line-height: 1.6;
}

/* Результаты */
.results {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f3e5f5 100%);
}

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

.result-card {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e3f2fd;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.1);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.result-icon {
    font-size: 20px;
    font-weight: bold;
    color: white;
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.result-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 22px;
}

.result-card p {
    color: #666;
    line-height: 1.6;
}

/* Форма */
.contact-form {
    padding: 80px 0;
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form .section-title {
    color: white;
}

.contact-form .section-title::after {
    background: white;
}

.form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form input,
.form textarea {
    width: 100%;
    padding: 18px 25px;
    border: 1px solid #e5e5e5;
    border-radius: 4px;
    font-size: 16px;
    background: white;
    color: #333;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.form textarea {
    border-radius: 4px;
    resize: vertical;
    min-height: 100px;
}

.form input::placeholder,
.form textarea::placeholder {
    color: #999;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    position: relative;
    overflow: hidden;
}

.submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.submit-button:hover::before {
    left: 0;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.form-note {
    text-align: center;
    color: #ddd;
    font-size: 14px;
    margin-top: 20px;
}

/* Контакты */
.contacts {
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contacts::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(33, 150, 243, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.contact-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(33, 150, 243, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    animation: float 6s ease-in-out infinite;
}

.contact-card:nth-child(2) {
    animation-delay: -2s;
}

.contact-card:nth-child(3) {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.contact-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 15px 40px rgba(33, 150, 243, 0.25);
}

.contact-icon {
    font-size: 14px;
    font-weight: 600;
    color: #1976d2;
    background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
    padding: 10px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
    letter-spacing: 1px;
    border: 1px solid rgba(25, 118, 210, 0.2);
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.contact-card h3 {
    font-size: 24px;
    color: #1565c0;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-card p {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 500;
}

.contact-card a {
    color: #1976d2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #42a5f5;
}

.contact-card span {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.consultation-banner {
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 50%, #66bb6a 100%);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: -200% 0; }
    50% { background-position: 200% 0; }
}

.consultation-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: slide 2s infinite;
}

@keyframes slide {
    0% { left: -100%; }
    100% { left: 100%; }
}

.consultation-banner h3 {
    font-size: 28px;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.consultation-banner p {
    font-size: 18px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.consultation-button {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 35px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.consultation-button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Футер */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: #ecf0f1;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ecf0f1;
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .program-steps {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .beauty-placeholder {
        width: 300px;
        height: 300px;
    }
    
    .face-silhouette {
        width: 200px;
        height: 250px;
    }
    
    .nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px;
    }
    
    .consultation-banner {
        padding: 30px 20px;
    }
    
    .consultation-banner h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .container {
        padding: 0 15px;
    }
}

/* Новые блоки */

/* Программа по неделям */
.weekly-program {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f5e8 100%);
}

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

.week-card {
    background: linear-gradient(135deg, #ffffff 0%, #f3e5f5 100%);
    border: 1px solid #e3f2fd;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(33, 150, 243, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.week-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 50%, #66bb6a 100%);
}

.week-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(33, 150, 243, 0.15);
}

.week-number {
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(25, 118, 210, 0.3);
}

.week-card h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 22px;
    font-weight: 600;
}

.week-content {
    margin-bottom: 25px;
}

.day-item {
    display: flex;
    margin-bottom: 15px;
    align-items: flex-start;
    gap: 10px;
}

.day {
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    min-width: 80px;
    text-align: center;
}

.day-item span:last-child {
    color: #555;
    line-height: 1.5;
    flex: 1;
}

.week-result {
    background: linear-gradient(135deg, #ab47bc 0%, #8e24aa 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 3px 12px rgba(171, 71, 188, 0.2);
}

/* Timeline */
.program-timeline {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e3f2fd;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.1);
}

.program-timeline h3 {
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    font-size: 24px;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #1976d2 0%, #42a5f5 50%, #66bb6a 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.timeline-point {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #1976d2 0%, #42a5f5 100%);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(25, 118, 210, 0.3);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    background: linear-gradient(135deg, #ffffff 0%, #f3e5f5 100%);
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid #e3f2fd;
    flex: 1;
    box-shadow: 0 3px 10px rgba(33, 150, 243, 0.1);
}

.timeline-week {
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    color: white;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 10px;
}

.timeline-change {
    color: #2c3e50;
    font-weight: 500;
    line-height: 1.5;
}

/* Проблемы и решения */
.problems {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #f3e5f5 100%);
}

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

.problem-item {
    padding: 30px;
    border: 1px solid #e3f2fd;
    border-radius: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(33, 150, 243, 0.1);
}

.problem-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.problem-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 20px;
}

.problem-item p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.solution {
    background: linear-gradient(135deg, #66bb6a 0%, #4caf50 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 3px 8px rgba(76, 175, 80, 0.2);
}

/* Научный подход */
.science {
    padding: 80px 0;
    background: #f8f9fa;
}

.science-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.science-text h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 24px;
}

.science-text p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
    font-size: 16px;
}

.science-facts {
    display: grid;
    gap: 20px;
}

.fact {
    padding: 20px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.fact h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 16px;
}

.fact p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

.molecular-structure {
    background: #ecf0f1;
    border-radius: 8px;
    padding: 40px;
    border: 1px solid #bdc3c7;
}

.molecule-diagram {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.molecule-layer {
    padding: 15px 20px;
    border-radius: 4px;
    text-align: center;
    font-weight: 600;
    color: white;
}

.layer-1 {
    background: #34495e;
}

.layer-2 {
    background: #2c3e50;
}

.layer-3 {
    background: #1a252f;
}

/* Целевая аудитория */
.target-audience {
    padding: 80px 0;
    background: #ffffff;
}

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

.audience-card {
    background: #f8f9fa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.age-range {
    background: #2c3e50;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 20px;
}

.audience-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 20px;
}

.audience-card ul {
    list-style: none;
    text-align: left;
}

.audience-card li {
    color: #666;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.audience-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: bold;
}

/* Противопоказания */
.contraindications {
    padding: 80px 0;
    background: #f1f3f5;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.warning-box h3 {
    color: #856404;
    margin: 0;
    font-size: 18px;
}

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

.contra-column {
    background: white;
    padding: 30px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.contra-column h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 18px;
}

.contra-column ul {
    list-style: none;
}

.contra-column li {
    color: #666;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.contra-column li::before {
    content: '!';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 16px;
    font-weight: bold;
}

/* Гарантии */
.guarantees {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #e8f5e8 100%);
}

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

.guarantee-item {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #e3f2fd;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.1);
}

.guarantee-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ab47bc 0%, #8e24aa 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(171, 71, 188, 0.3);
}

.guarantee-item h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 20px;
}

.guarantee-item p {
    color: #666;
    line-height: 1.6;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border-bottom: 1px solid #e5e5e5;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    font-size: 20px;
    font-weight: bold;
}

.faq-answer {
    padding: 25px 30px;
    color: #666;
    line-height: 1.6;
    background: white;
    display: none;
    transition: all 0.3s ease;
}

/* Адаптивность для новых блоков */
@media (max-width: 768px) {
    .science-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contraindications-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .molecular-structure {
        padding: 20px;
    }
    
    .faq-question,
    .faq-answer {
        padding: 20px;
    }
    
    /* Программа по неделям - мобильная версия */
    .weeks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .week-card {
        padding: 25px 20px;
    }
    
    .program-timeline {
        padding: 30px 20px;
    }
    
    .timeline-container::before {
        left: 15px;
    }
    
    .timeline-item {
        gap: 20px;
    }
    
    .timeline-content {
        padding: 15px 20px;
    }
    
    .day-item {
        flex-direction: column;
        gap: 8px;
    }
    
    .day {
        align-self: flex-start;
        min-width: auto;
    }
} 