/*Адаптировано*/
.kids-hero {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(30, 30, 30, 0.92) 100%);
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.kids-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 94, 0, 0.1) 0%, transparent 50%);
}
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--neon);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 94, 0, 0.5);
}
.hero-subtitle {
    font-size: 1.3rem;
    color: #cfcfcf;
    margin-bottom: 40px;
    font-weight: 300;
}
.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-feature {
    background: rgba(255, 94, 0, 0.15);
    color: var(--neon);
    padding: 12px 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 94, 0, 0.3);
    backdrop-filter: blur(10px);
    font-weight: 600;
}

/* ---------- ABOUT ---------- */
.kids-about {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(25, 25, 25, 0.98) 100%);
}
.about-container h2 {
    color: var(--ink);
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
.about-card {
    background: rgba(17, 17, 17, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--neon);
    box-shadow: 0 10px 30px rgba(255, 94, 0, 0.2);
}
.about-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}
.about-card h3 {
    color: var(--neon);
    margin-bottom: 15px;
    font-size: 1.3rem;
}
.about-card p {
    color: #cfcfcf;
    line-height: 1.6;
}

/* ---------- BENEFITS ---------- */
.kids-benefits {
    padding: 80px 20px;
    background: rgba(15, 15, 15, 0.95);
}
.benefits-container h2 {
    color: var(--ink);
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}
.benefit {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(17, 17, 17, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}
.benefit-content h3 {
    color: var(--neon);
    margin-bottom: 10px;
    font-size: 1.2rem;
}
.benefit-content p {
    color: #cfcfcf;
    line-height: 1.6;
}

/* ---------- STAGES ---------- */
.kids-stages {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95) 0%, rgba(25, 25, 25, 0.98) 100%);
}
.stages-container h2 {
    color: var(--ink);
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}
.stages-list {
    max-width: 800px;
    margin: 0 auto;
}
.stage {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
    padding: 25px;
    background: rgba(17, 17, 17, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}
.stage:hover {
    border-color: var(--neon);
    transform: translateX(5px);
}
.stage-number {
    width: 50px;
    height: 50px;
    background: var(--neon);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
}
.stage-content h3 {
    color: var(--neon);
    margin-bottom: 8px;
    font-size: 1.2rem;
}
.stage-content p {
    color: #cfcfcf;
    line-height: 1.6;
}

/* ---------- АДАПТИВ ---------- */
@media (max-width: 992px) {
    .hero-content h1 { font-size: 3rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .benefits-grid { gap: 30px; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.4rem; }
    .hero-features { flex-direction: column; align-items: center; }
    .stage { flex-direction: column; text-align: center; gap: 15px; }
    .benefit { flex-direction: column; text-align: center; align-items: center; }
    .about-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .kids-hero { padding: 70px 15px; }
    .hero-content h1 { font-size: 1.9rem; }
    .hero-subtitle { font-size: 1rem; margin-bottom: 25px; }
    .hero-feature { padding: 10px 18px; font-size: 0.9rem; }
    .about-container h2,
    .benefits-container h2,
    .stages-container h2 { font-size: 1.7rem; margin-bottom: 35px; }
    .about-card, .benefit, .stage { padding: 18px; }
    .about-card h3, .benefit-content h3, .stage-content h3 { font-size: 1rem; }
    .about-card p, .benefit-content p, .stage-content p { font-size: 0.9rem; }
    .stage-number { width: 42px; height: 42px; font-size: 1.1rem; }
}