* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f2f8f2;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100vw;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    overflow-x: hidden;
}

.section {
    padding: 2.5rem 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background: transparent;
}

/* Единый стиль для всех заголовков секций */
.section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 0.75rem;
    color: #0f172a;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    color: #64748b;
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Единый стиль для бейджей секций */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    text-align: center;
}

/* Контейнер для центрирования бейджей */
.section-badge-wrapper {
    text-align: center;
    width: 100%;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.05); 
    }
}

/* Адаптив для мобильных */
@media (max-width: 767px) {
    .section {
        padding: 2rem 0;
    }
    
    .section-title {
        font-size: 1.65rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
    }
    
    .section-badge {
        font-size: 11px;
        padding: 7px 20px;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 1.5rem 0;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .section-badge {
        font-size: 10px;
        padding: 6px 18px;
        margin-bottom: 16px;
    }
}

@keyframes modalSlide {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

