/* ===== ОБЩИЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    padding-top: 70px;
    overflow-x: hidden;
}

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

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2C3E50;
}

/* ===== НАВИГАЦИЯ ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

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

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logos {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-logo-img {
    height: 45px;
    width: auto;
    max-width: 75px;
    object-fit: contain;
    display: block;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-text span {
    color: #ffffff;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
    text-transform: uppercase;
}

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

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: 0.3s;
    position: relative;
    padding: 5px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #e94560;
    transition: 0.3s;
}

.nav-menu li a:hover {
    color: #e94560;
}

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

/* ===== КНОПКА ДЛЯ СЛАБОВИДЯЩИХ ===== */
.vision-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
    background: #ffffff;
    color: #222;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: .3s;
}

.vision-btn:hover {
    background: #e94560;
    color: #fff;
    border-color: #e94560;
}

.vision-btn.active {
    background: #e94560;
    color: #fff;
    border-color: #e94560;
}

.vision-icon {
    font-size: 18px;
}

.vision-text {
    white-space: nowrap;
}

/* ===== БУРГЕР-МЕНЮ ===== */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}



/* ===== ИНФО-БЛОК ===== */
.info-block {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    color: #ffffff;
    position: relative;
}

/* Декоративный фон */
.info-block::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.06), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.info-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
    position: relative;
    z-index: 1;
}


/* ============================================================
БЛОК С большим ТЕКСТОМ
   ============================================================ */

.text-block {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Декоративный фон */
.text-block::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -20%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.04), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.text-block::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.03), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.text-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

/* Заголовок */
.text-block-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    width: 100%;
}

.text-block-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #e94560, #ff6b8a, #e94560);
    border-radius: 4px;
    background-size: 200% auto;
    animation: shimmerLine 3s ease-in-out infinite;
}

@keyframes shimmerLine {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Контент с текстом */
.text-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 60px;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
    text-align: center; 
}

.text-content:hover {
    border-color: rgba(233, 69, 96, 0.15);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.text-content p {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #d0d0d0;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.text-content p:last-child {
    margin-bottom: 0;
}



/* ===== АДАПТИВНОСТЬ ===== */

@media (max-width: 992px) {
    .text-block {
        padding: 70px 0;
    }

    .text-block-title {
        font-size: 1.8rem;
    }

    .text-content {
        padding: 40px 35px;
    }

    .text-content p {
        font-size: 1rem;
        line-height: 1.9;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .text-block {
        padding: 60px 0;
    }

    .text-block-title {
        font-size: 1.6rem;
    }

    .text-block-title::after {
        width: 80px;
        bottom: -12px;
    }

    .text-content {
        padding: 30px 25px;
        border-radius: 16px;
    }

    .text-content p {
        font-size: 0.95rem;
        line-height: 1.8;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .text-block {
        padding: 40px 0;
    }

    .text-block-title {
        font-size: 1.6rem;
    }

    .text-block-title::after {
        width: 60px;
        height: 3px;
        bottom: -10px;
    }

    .text-content {
        padding: 20px 16px;
        border-radius: 12px;
    }

    .text-content p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 18px;
        text-align: center;
    }

    .text-content p::first-letter {
        font-size: 1.1rem;
    }
}



/* ===== КАРТИНКА ===== */
.info-image {
    flex: 0 0 45%;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
    transition: 0.4s ease;
}

.info-image:hover {
    transform: scale(1.02);
    box-shadow: 0 35px 90px rgba(233, 69, 96, 0.15);
}

.info-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: 0.6s ease;
}

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



/* ===== ТЕКСТОВЫЙ БЛОК ===== */
.info-content {
    flex: 1;
    max-width: 580px;
}

/* Заголовок */
.info-title {
    font-size: 1.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #ffffff;
    letter-spacing: 1px;
    position: relative;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e94560, #c73652);
    border-radius: 4px;
}

/* Блок с текстом */
.info-text-block {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 30px 35px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 35px;
    transition: 0.3s ease;
}

.info-text-block:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(233, 69, 96, 0.15);
}

.info-text-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: #ccc;
    margin-bottom: 18px;
}

.info-text-block p:last-child {
    margin-bottom: 0;
}




/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 1024px) {
    .info-wrapper {
        gap: 50px;
    }
    
    .info-image {
        flex: 0 0 42%;
    }
    
    .info-img {
        height: 420px;
    }
    
    .info-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .info-block {
        padding: 60px 0;
    }
    
    .info-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .info-image {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .info-img {
        height: 300px;
    }
    
    .info-content {
        max-width: 100%;
        text-align: center;
    }
    
    .info-title {
        font-size: 1.8rem;
    }
    
    .info-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .info-text-block {
        padding: 25px 20px;
        text-align: left;
    }
    
    .info-text-block p {
        font-size: 0.95rem;
    }
    
    .info-btn {
        width: 100%;
        text-align: center;
        padding: 16px 30px;
    }
}

@media (max-width: 480px) {
    .info-block {
        padding: 40px 0;
    }
    
    .info-img {
        height: 220px;
    }
    
    .info-title {
        font-size: 1.4rem;
    }
    
    .info-text-block {
        padding: 20px 16px;
    }
    
    .info-text-block p {
        font-size: 0.9rem;
    }
}



/* ============================================================
ШАПКА
   ============================================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0a;
    overflow: hidden;
    padding: 120px 0 80px;
}

/* ---- ФОН С ЧАСТИЦАМИ ---- */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(233, 69, 96, 0.4);
    border-radius: 50%;
    animation: floatParticle 15s infinite linear;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; top: 60%; animation-delay: 2s; }
.particle:nth-child(3) { left: 40%; top: 10%; animation-delay: 4s; }
.particle:nth-child(4) { left: 55%; top: 70%; animation-delay: 6s; }
.particle:nth-child(5) { left: 70%; top: 30%; animation-delay: 8s; }
.particle:nth-child(6) { left: 85%; top: 80%; animation-delay: 10s; }
.particle:nth-child(7) { left: 15%; top: 90%; animation-delay: 12s; }
.particle:nth-child(8) { left: 90%; top: 15%; animation-delay: 14s; }

@keyframes floatParticle {
    0% { transform: translateY(0) scale(1); opacity: 0.4; }
    50% { transform: translateY(-80px) scale(2); opacity: 1; }
    100% { transform: translateY(0) scale(1); opacity: 0.4; }
}

/* ---- ДЕКОРАТИВНЫЕ ЛИНИИ ---- */
.hero-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(233, 69, 96, 0.15), transparent);
    height: 1px;
    width: 200%;
    left: -50%;
}

.line-1 { top: 20%; animation: slideLine 12s infinite linear; }
.line-2 { top: 50%; animation: slideLine 18s infinite linear reverse; }
.line-3 { top: 80%; animation: slideLine 14s infinite linear; }

@keyframes slideLine {
    0% { transform: translateX(-30%); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(30%); opacity: 0; }
}

/* ---- КОНТЕНТ ---- */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* Бейдж */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 24px;
    background: rgba(233, 69, 96, 0.1);
    border: 1px solid rgba(233, 69, 96, 0.2);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #e94560;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease forwards;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #e94560;
    border-radius: 50%;
    display: inline-block;
    animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.5); }
}

/* Заголовок */
.hero-title {
    font-size: 4.2rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 25px;
    color: #ffffff;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.title-line {
    display: block;
}

.title-line.highlight {
    background: linear-gradient(135deg, #e94560, #ff6b8a, #e94560);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 3s ease-in-out infinite;
}

@keyframes shimmerText {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* Подзаголовок */
.hero-subtitle {
    font-size: 1.15rem;
    color: #aaaaaa;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-weight: 300;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

/* ---- КНОПКА ---- */
.hero-btn-wrapper {
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #e94560, #c73652);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 0 30px rgba(233, 69, 96, 0.2);
}

.hero-btn .btn-glow {
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    background: linear-gradient(135deg, #e94560, #ff6b8a, #e94560);
    background-size: 300% 300%;
    z-index: -1;
    animation: glowPulse 2s ease-in-out infinite;
    filter: blur(8px);
    opacity: 0.6;
}

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

.hero-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(233, 69, 96, 0.5);
}

.hero-btn:active {
    transform: scale(0.97);
}

.hero-btn .btn-text {
    position: relative;
    z-index: 1;
}

.hero-btn .btn-icon {
    position: relative;
    z-index: 1;
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.hero-btn:hover .btn-icon {
    transform: translateX(8px) rotate(-45deg);
}

/* ---- СКРОЛЛ-ИНДИКАТОР ---- */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.6rem;
    letter-spacing: 3px;
    font-weight: 600;
    animation: bounceDown 2s ease-in-out infinite;
    z-index: 2;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-wheel {
    width: 3px;
    height: 10px;
    background: #e94560;
    border-radius: 3px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(16px); opacity: 0; }
}

@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(5px); }
}

/* ---- АНИМАЦИЯ ПОЯВЛЕНИЯ ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   АДАПТИВНОСТЬ ДЛЯ ШАПКИ
   ============================================================ */

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 10px;
    }
    
    .hero-btn {
        padding: 15px 30px;
        font-size: 0.85rem;
        gap: 10px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-badge {
        font-size: 0.6rem;
        padding: 6px 16px;
        gap: 8px;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-btn {
        padding: 14px 25px;
        font-size: 0.75rem;
        gap: 8px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}





/* ===== ПРЕИМУЩЕСТВА ===== */
.advantages {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: #e94560;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.advantage-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: 0.3s;
    position: relative;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.advantage-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(0,0,0,0.05);
    line-height: 1;
}

.advantage-item h3 {
    font-size: 1.5rem;
    color: #2C3E50;
    margin-bottom: 10px;
}

.advantage-item p {
    color: #666;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #e94560;
    margin-top: 10px;
}

/* ===== ПОДГОТОВКА ===== */
.about-program {
    padding: 80px 0;
    background: #0a0a0a;
    color: #ffffff;
}

.program-header {
    text-align: center;
    margin-bottom: 60px;
}

.program-header h2 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 4px;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 10px;
}

video{
    width:100%;
    height:auto;
}

.program-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.program-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #bbb;
}

.program-image {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 40px;
}

.program-photo {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.program-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
    cursor: default;
}

.program-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}



.program-item h3 {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.4;
}

/* ===== ВИДЕО ===== */
.video-section {
    padding: 80px 0;
    background: #0a0a0a;
    color: #ffffff;
}

.video-description {
    text-align: center;
    font-size: 1.1rem;
    color: #bbb;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}





/* ===== НОВОСТНЫЕ ПАБЛИКИ ===== */
.news-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.news-header {
    text-align: center;
    margin-bottom: 50px;
}

/* ===== ФИКС РАЗМЕРА ИКОНОК ===== */
.news-icon-img {
    width: 56px !important;
    height: 56px !important;
    object-fit: contain;
    display: block;
    margin: 0 auto 12px;
}

.news-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #e94560;
    background: rgba(233, 69, 96, 0.08);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 12px;
    border: 1px solid rgba(233, 69, 96, 0.12);
}

.news-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #1a1a2e;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.news-subtitle {
    font-size: 1rem;
    color: #888;
    font-weight: 300;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.news-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px 16px;
    text-align: center;
    text-decoration: none;
    border: 1px solid #eee;
    transition: 0.3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.news-card:hover {
    transform: translateY(-8px);
    border-color: #e94560;
    box-shadow: 0 12px 40px rgba(233,69,96,0.10);
}

.news-icon-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 14px;
    transition: 0.3s;
}

.news-card:hover .news-icon-img {
    transform: scale(1.08);
}

.news-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
}

/* ===== АДАПТИВ ===== */
@media (max-width: 768px) {
    .news-section { padding: 50px 0; }
    .news-header h2 { font-size: 2rem; }
    .news-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .news-card { padding: 20px 12px; }
    .news-icon-img { width: 50px; height: 50px; }
    .news-card h3 { font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .news-section { padding: 30px 0; }
    .news-header h2 { font-size: 1.5rem; }
    .news-grid { gap: 10px; padding: 0 4px; }
    .news-card { padding: 16px 8px; border-radius: 12px; }
    .news-icon-img { width: 40px; height: 40px; margin-bottom: 8px; }
    .news-card h3 { font-size: 0.7rem; }
}





/* ===== ДОБРОВОЛЬЦЫ ===== */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

/* Анимированный фон */
.services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(233, 69, 96, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(233, 69, 96, 0.03) 0%, transparent 50%);
    animation: servicesBg 20s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes servicesBg {
    0% { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(5%, 5%) rotate(5deg); }
}

/* Верхняя часть */
.services-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.services-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #e94560;
    background: rgba(233, 69, 96, 0.1);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 15px;
    border: 1px solid rgba(233, 69, 96, 0.15);
    animation: pulseTag 2s ease-in-out infinite;
}

@keyframes pulseTag {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #ffffff, #e94560, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

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

.services-subtitle {
    font-size: 1.1rem;
    color: #999;
    font-weight: 300;
    letter-spacing: 1px;
}

/* ===== КАРТОЧКИ ===== */
.services-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: default;
}

/* Гламурное свечение */
.service-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(233, 69, 96, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.service-card:hover .service-glow {
    opacity: 1;
}

/* Градиентная рамка при наведении */
.service-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px;
    background: linear-gradient(135deg, transparent 0%, rgba(233, 69, 96, 0.4) 50%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(233, 69, 96, 0.2);
    box-shadow: 0 30px 80px rgba(233, 69, 96, 0.15);
}

/* ===== КАРТИНКА СВЕРХУ ===== */
.service-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card:hover .service-img {
    transform: scale(1.1);
}

/* Оверлей на картинке */
.service-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px 25px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-image-overlay {
    opacity: 1;
}

.overlay-text {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ===== ТЕКСТ СНИЗУ ===== */
.service-text {
    padding: 25px 30px 30px;
    position: relative;
    z-index: 1;
}

.service-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #ccc;
    transition: color 0.3s ease;
    margin: 0;
}

.service-card:hover .service-text p {
    color: #ffffff;
}

/* ===== КНОПКА ===== */
.services-footer {
    text-align: center;
    position: relative;
    z-index: 1;
}

.btn-services {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #e94560, #c73652);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 5px 30px rgba(233, 69, 96, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
    animation: btnShine 3s ease-in-out infinite;
}

@keyframes btnShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.btn-services:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 50px rgba(233, 69, 96, 0.5);
    background: linear-gradient(135deg, #ff5a7a, #d43a52);
}

.btn-services:active {
    transform: scale(0.97);
}

.btn-services svg {
    transition: transform 0.3s ease;
}

.btn-services:hover svg {
    transform: translateX(8px);
}

/* ===== АДАПТИВ ===== */
@media (max-width: 992px) {
    .services-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .services-header h2 {
        font-size: 2.5rem;
    }
    
    .service-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .services {
        padding: 60px 0;
    }
    
    .services-header h2 {
        font-size: 2rem;
    }
    
    .services-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card:hover {
        transform: translateY(-8px) scale(1.01);
    }
    
    .service-image-wrapper {
        height: 200px;
    }
    
    .service-text {
        padding: 20px 25px 25px;
    }
    
    .service-text p {
        font-size: 0.95rem;
    }
    
    .btn-services {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-header h2 {
        font-size: 1.6rem;
    }
    
    .services-tag {
        font-size: 0.7rem;
        padding: 6px 18px;
    }
    
    .services-subtitle {
        font-size: 0.95rem;
    }
    
    .service-image-wrapper {
        height: 170px;
    }
    
    .service-text {
        padding: 18px 20px 22px;
    }
    
    .service-text p {
        font-size: 0.9rem;
    }
    
    .overlay-text {
        font-size: 0.75rem;
        letter-spacing: 3px;
    }
}


/* ===== КОНТАКТЫ ===== */
.contacts {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid #f0f0f0;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.contact-item {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 18px;
    transition: .3s;
    border: 1px solid #ececec;
    box-shadow: 0 8px 25px rgba(0,0,0,.06);
}

.contact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
    border-color: #e94560;
}

.contact-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.contact-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* ===== КАРТИНКИ ПЕРЕД ФУТЕРОМ ===== */
.bottom-image {
    padding: 20px 0;
    background: #ffffff;
}

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

/* ЛЕВАЯ ЧАСТЬ (круглая картинка) */
.bottom-right {
    flex-shrink: 0;
}

.bottom-img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    display: block;
    transition: 0.3s;
}

.bottom-img:hover {
    opacity: 0.8;
}

/* ПРАВАЯ ЧАСТЬ (прямоугольная картинка + текст) */
.bottom-left-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.bottom-extra {
    flex-shrink: 0;
}

.bottom-img-extra {
    max-width: 120px;
    height: auto;
    border-radius: 8px;
    display: block;
    transition: 0.3s;
}

.bottom-img-extra:hover {
    opacity: 0.8;
}

.bottom-text p {
    font-size: 0.85rem;
    color: #555;
    margin-bottom: 2px;
    line-height: 1.3;
}

.bottom-text p:last-child {
    margin-bottom: 0;
}

.bottom-link {
    text-decoration: none;
    color: inherit;
}

.bottom-link:hover p {
    color: #e94560;
}



/* ===== ФУТЕР ===== */
footer {
    background: #1a1a2e;
    color: #aaa;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logos {
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-logo-img {
    height: 35px;
    width: auto;
    max-width: 60px;
    object-fit: contain;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-org {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-org-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1px;
    line-height: 1.3;
}

.footer-right {
    text-align: right;
}

.footer-copy span {
    font-size: 0.85rem;
    color: #666;
    letter-spacing: 0.3px;
}

/* ============================================================
   АДАПТИВНОСТЬ
   ============================================================ */

@media (max-width: 992px) {
    .container {
        max-width: 100%;
        padding: 0 25px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero h1:last-of-type {
        font-size: 2.2rem;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .program-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .services-content {
        grid-template-columns: 1fr;
    }

    .contacts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    body {
        padding-top: 65px;
    }
    
    .container {
        padding: 0 16px;
        max-width: 100%;
        overflow: hidden;
    }
    
    .navbar {
        padding: 10px 0;
        width: 100%;
        left: 0;
        right: 0;
    }
    
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        gap: 6px;
        flex-wrap: nowrap;
    }
    
    .nav-logo-link {
        gap: 5px;
        flex-shrink: 0;
    }
    
    .nav-logos {
        gap: 3px;
        flex-shrink: 0;
    }
    
    .nav-logo-img {
        height: 30px;
        max-width: 45px;
        flex-shrink: 0;
    }
    
    .nav-logo-text {
        display: none;
    }
    
    .vision-btn {
        width: 34px;
        height: 34px;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        flex-shrink: 0;
        font-size: 13px;
        border-width: 2px;
        margin: 0;
        min-width: 34px;
    }
    
    .vision-text {
        display: none;
    }
    
    .vision-icon {
        margin: 0;
        font-size: 15px;
    }
    
    .nav-toggle {
        display: flex;
        flex-shrink: 0;
        padding: 4px;
    }
    
    .nav-toggle span {
        width: 22px;
        height: 2.5px;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a1a2e;
        flex-direction: column;
        gap: 0;
        transform: translateY(-150%);
        transition: .3s;
        max-width: 100%;
        overflow-x: hidden;
        padding: 0;
        margin: 0;
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, .08);
        list-style: none;
        width: 100%;
    }
    
    .nav-menu li a {
        display: block;
        padding: 14px 20px;
        font-size: 0.9rem;
        width: 100%;
        box-sizing: border-box;
    }
    
    .hero {
        padding: 90px 0 70px;
        min-height: auto;
    }
    
    .hero h4 {
        font-size: .9rem;
        letter-spacing: 2px;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero h1:last-of-type {
        font-size: 1.5rem;
    }
    
    .hero .subtitle {
        font-size: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        padding: 14px 30px;
        font-size: 0.95rem;
    }
    
    .advantages-grid,
    .program-grid,
    .services-content {
        grid-template-columns: 1fr;
    }
    
    .advantage-item {
        padding: 30px 22px;
    }
    
    .program-header h1 {
        font-size: 2rem;
    }
    
    .program-item {
        padding: 25px;
    }
    
    .contacts-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .footer-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-left {
        flex-direction: column;
    }
    
    .footer-right {
        text-align: center;
    }
    
    .bottom-image {
        padding: 30px 15px;
    }
    
    .bottom-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .bottom-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .bottom-img {
        width: 170px;
        max-width: 100%;
        height: auto;
    }
    
    .bottom-left-group {
        width: 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .bottom-img-extra {
        width: 90px;
        height: auto;
    }
    
    .bottom-text {
        max-width: 320px;
    }
    
    .bottom-text p {
        margin: 0;
        font-size: 14px;
        line-height: 1.6;
        color: #444;
    }
    
    .video-wrapper iframe {
        height: 300px;
    }
    
    .info-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .info-image {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .info-img {
        height: 300px;
    }
    
    .info-content {
        max-width: 100%;
        text-align: center;
    }
    
    .info-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .info-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .info-paragraph {
        text-align: left;
        padding: 14px 16px;
    }
    
    .info-paragraph:hover {
        transform: translateX(0);
    }
    
    .info-badge {
        bottom: 20px;
        left: 20px;
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .info-badge span:first-child {
        font-size: 1.2rem;
    }
    
    .info-btn {
        width: 100%;
        text-align: center;
        padding: 16px 30px;
    }
    
    .service-card {
        max-width: 100%;
    }
    
    .service-image-wrapper {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 80px 0 60px;
    }

    .hero h1 {
        font-size: 1.7rem;
    }

    .hero h1:last-of-type {
        font-size: 1.3rem;
    }

    .hero .subtitle {
        font-size: .95rem;
    }

    .btn {
        padding: 15px;
        font-size: .95rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .program-header h1 {
        font-size: 1.7rem;
    }

    .program-description {
        font-size: .95rem;
    }

    .advantage-item {
        padding: 25px 18px;
    }

    .price {
        font-size: 1.5rem;
    }

    .contact-number {
        font-size: .95rem;
    }

    .footer-org-name {
        font-size: .8rem;
    }

    .bottom-img {
        width: 140px;
    }

    .bottom-img-extra {
        width: 75px;
    }

    .bottom-text p {
        font-size: 13px;
    }

    .video-wrapper iframe {
        height: 200px;
    }

    .vision-btn {
        width: 36px;
        height: 36px;
    }

    .vision-icon {
        font-size: 16px;
    }
}

/* ===== РЕЖИМ ДЛЯ СЛАБОВИДЯЩИХ ===== */
.vision-btn.active {
    background: #4f46e5;
    color: #fff;
}

html.vision-mode {
    font-size: 18px;
}

@media (max-width: 768px) {
    html.vision-mode {
        font-size: 17px;
    }
}

/* ==========================
   NEWS FROM STRAPI
========================== */

.news {
    padding: 80px 0;
}

.news-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}


.news-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}


.news-content {
    padding: 20px;
}


.news-content h3 {
    margin-bottom: 10px;
}


.news-date {
    color: gray;
    font-size: 14px;
}


/* Планшет */

@media(max-width:900px){

    .news-container{
        grid-template-columns: repeat(2,1fr);
    }

}


/* Телефон */

@media(max-width:600px){

    .news-container{
        grid-template-columns:1fr;
    }

}
