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

html {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --primary: #00d4ff;
    --secondary: #b74dff;
    --accent: #3b82f6;
    --dark: #0a0e27;
    --darker: #050816;
    --text: #ffffff;
    --text-light: #d0daf5;
    --bg-card: rgba(20, 25, 55, 0.6);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #0a0e1f;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('images/background-pattern.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    opacity: 0.15;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('particles.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 0;
    animation: floatParticles 60s linear infinite;
}

@keyframes floatParticles {
    0%, 100% { opacity: 0.6; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(-20px); }
}

/* Декоративные светящиеся шары */
.decorative-orb {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
    filter: blur(40px);
}

.decorative-orb-blue {
    top: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background-image: url('images/glow-orb-blue.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: floatOrb1 20s ease-in-out infinite;
}

.decorative-orb-purple {
    bottom: 15%;
    left: 8%;
    width: 450px;
    height: 450px;
    background-image: url('images/glow-orb-purple.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: floatOrb2 25s ease-in-out infinite;
}

.decorative-orb-blue-2 {
    top: 50%;
    left: 10%;
    width: 400px;
    height: 400px;
    background-image: url('images/glow-orb-blue.webp');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    animation: floatOrb3 30s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translate(-30px, 40px) scale(1.1);
        opacity: 0.4;
    }
    66% {
        transform: translate(20px, -30px) scale(0.9);
        opacity: 0.25;
    }
}

@keyframes floatOrb2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    40% {
        transform: translate(40px, -50px) scale(1.15);
        opacity: 0.35;
    }
    80% {
        transform: translate(-25px, 30px) scale(0.95);
        opacity: 0.28;
    }
}

@keyframes floatOrb3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.25;
    }
    50% {
        transform: translate(35px, 45px) scale(1.2);
        opacity: 0.35;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 1;
}

/* Шапка */
.header {
    position: sticky;
    top: 0;
    background: rgba(10, 14, 31, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 212, 255, 0.15);
    padding: 0.75rem 0;
}

/* Десктоп шапка */
.header-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

/* Мобильная шапка */
.header-mobile {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0.875rem 0;
}

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

.header-mobile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.social-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.social-mobile:active {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary);
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.logo-link:hover .logo-image {
    transform: scale(1.1);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    color: white;
    letter-spacing: 0.02em;
}

.logo-accent {
    color: var(--primary);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: white;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.social-link:hover {
    background: rgba(0, 212, 255, 0.2);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
}

.header-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

.btn-call {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #00d4ff, #b74dff);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    border: none;
    border-radius: 8px;
}

.btn-call:hover {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
    transform: translateY(-2px);
}

.btn-call:active {
    transform: translateY(0);
}

/* Мобильные кнопки */
.btn-mobile-login,
.btn-mobile-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.btn-mobile-login {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.btn-mobile-login:active {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.btn-mobile-call {
    background: linear-gradient(135deg, #00d4ff, #b74dff);
    color: white;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    border: none;
}

.btn-mobile-call:active {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

/* Основной контент */
.main {
    padding: 2rem 0;
}

.content-section .section-title {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.content-section .section-intro {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* Hero секция */
.hero-section {
    background: transparent;
    padding: 0;
    margin: 0;
    overflow: visible;
    position: relative;
}

.hero-section .container {
    max-width: 100%;
    margin: 0;
    padding: 5rem 60px 8rem;
}


/* Десктоп: две колонки */
.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content-wrapper .main-title {
    grid-column: 1;
    grid-row: 1;
}

.hero-content-wrapper .hero-image {
    grid-column: 2;
    grid-row: 1 / 5;
}

.hero-content-wrapper .main-subtitle {
    grid-column: 1;
    grid-row: 2;
}

.hero-content-wrapper .intro-block {
    grid-column: 1;
    grid-row: 3;
}

.hero-content-wrapper .cta-button {
    grid-column: 1;
    grid-row: 4;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background-image: url('images/hero-main.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 0 80px rgba(0, 212, 255, 0.5), 0 0 120px rgba(183, 77, 255, 0.3);
    position: relative;
    overflow: visible;
}

/* Пульсирующее свечение */
.hero-image-placeholder::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 212, 255, 0.1) 50%, transparent 100%);
    pointer-events: none;
    animation: pulse 3s ease-in-out infinite;
}

/* Вращающееся кольцо */
.hero-image-placeholder::after {
    content: '';
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: rgba(0, 212, 255, 0.6);
    border-right-color: rgba(183, 77, 255, 0.4);
    animation: rotate 4s linear infinite;
    pointer-events: none;
    filter: blur(1px);
}

/* Дополнительное энергетическое кольцо */
.hero-image {
    position: relative;
}

.hero-image::before,
.hero-image::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-image::before {
    inset: -5%;
    border: 1px solid rgba(0, 212, 255, 0.3);
    animation: energyRing1 3s ease-in-out infinite;
}

.hero-image::after {
    inset: -8%;
    border: 1px solid rgba(183, 77, 255, 0.2);
    animation: energyRing2 4s ease-in-out infinite 1s;
}


@keyframes pulse {
    0%, 100% { 
        opacity: 0.5; 
        transform: scale(1);
        box-shadow: 0 0 80px rgba(0, 212, 255, 0.5), 0 0 120px rgba(183, 77, 255, 0.3);
    }
    50% { 
        opacity: 1; 
        transform: scale(1.05);
        box-shadow: 0 0 100px rgba(0, 212, 255, 0.7), 0 0 150px rgba(183, 77, 255, 0.5);
    }
}

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

@keyframes energyRing1 {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.6;
    }
}

@keyframes energyRing2 {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.08) rotate(180deg);
        opacity: 0.5;
    }
}

/* Анимации комет */
@keyframes cometFly1 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    25% {
        transform: translate(200px, 200px);
        opacity: 1;
    }
    30% {
        opacity: 0;
    }
}

@keyframes cometFly2 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    25% {
        transform: translate(-180px, 180px);
        opacity: 1;
    }
    30% {
        opacity: 0;
    }
}

@keyframes cometFly3 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    25% {
        transform: translate(150px, -150px);
        opacity: 1;
    }
    30% {
        opacity: 0;
    }
}

/* Энергетические волны */
.hero-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(0, 212, 255, 0.4);
    pointer-events: none;
    opacity: 0;
}

.hero-wave-1 {
    animation: waveExpand 4s ease-out infinite;
}

.hero-wave-2 {
    animation: waveExpand 4s ease-out infinite 2s;
}

@keyframes waveExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Орбитальные точки */
.hero-orbit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 15px #00d4ff;
    pointer-events: none;
}

.hero-orbit-dot-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: orbitPulse 2s ease-in-out infinite;
}

.hero-orbit-dot-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: orbitPulse 2s ease-in-out infinite 0.5s;
}

.hero-orbit-dot-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: orbitPulse 2s ease-in-out infinite 1s;
}

.hero-orbit-dot-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: orbitPulse 2s ease-in-out infinite 1.5s;
}

@keyframes orbitPulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 15px #00d4ff;
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.5);
        box-shadow: 0 0 25px #00d4ff, 0 0 40px #00d4ff;
    }
}

/* Кометы */
.hero-comet {
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #00d4ff 0%, #b74dff 50%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 15px #00d4ff, 0 0 30px #00d4ff;
    pointer-events: none;
    opacity: 0;
}

.hero-comet::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, #00d4ff, transparent);
    transform: translate(-50%, -50%) rotate(-45deg);
    filter: blur(1px);
}

.hero-comet-1 {
    top: 5%;
    left: 10%;
    animation: cometFly1 8s ease-in-out infinite;
}

.hero-comet-2 {
    top: 15%;
    right: 15%;
    animation: cometFly2 10s ease-in-out infinite 3s;
}

.hero-comet-3 {
    bottom: 20%;
    left: 20%;
    animation: cometFly3 12s ease-in-out infinite 6s;
}

/* Частицы */
.hero-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 10px #00d4ff, 0 0 20px #00d4ff;
    pointer-events: none;
}

.hero-particle-1 {
    top: 15%;
    left: 20%;
    animation: float1 5s ease-in-out infinite;
}

.hero-particle-2 {
    top: 60%;
    right: 25%;
    animation: float2 6s ease-in-out infinite 1s;
}

.hero-particle-3 {
    bottom: 20%;
    left: 30%;
    animation: float3 7s ease-in-out infinite 2s;
}

.hero-particle-4 {
    top: 40%;
    right: 15%;
    animation: float1 5.5s ease-in-out infinite 1.5s;
}

.hero-particle-5 {
    top: 70%;
    left: 45%;
    animation: float2 6.5s ease-in-out infinite 2.5s;
}

.hero-particle-6 {
    top: 30%;
    left: 60%;
    animation: float3 5s ease-in-out infinite 3s;
}

/* Электрические всплески */
.hero-spark {
    position: absolute;
    width: 2px;
    height: 20px;
    background: linear-gradient(to bottom, #00d4ff, transparent);
    pointer-events: none;
    opacity: 0;
}

.hero-spark-1 {
    top: 25%;
    left: 35%;
    animation: spark 3s ease-in-out infinite;
}

.hero-spark-2 {
    top: 55%;
    right: 30%;
    transform: rotate(45deg);
    animation: spark 3s ease-in-out infinite 1s;
}

.hero-spark-3 {
    bottom: 30%;
    left: 40%;
    transform: rotate(-30deg);
    animation: spark 3s ease-in-out infinite 2s;
}

.hero-spark-4 {
    top: 45%;
    left: 25%;
    transform: rotate(60deg);
    animation: spark 3s ease-in-out infinite 2.5s;
}

/* Анимации частиц */
@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(10px, -15px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(-5px, -25px) scale(0.8);
        opacity: 0.5;
    }
    75% {
        transform: translate(-15px, -10px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    33% {
        transform: translate(-12px, 18px) scale(1.3);
        opacity: 1;
    }
    66% {
        transform: translate(8px, -12px) scale(0.9);
        opacity: 0.6;
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    30% {
        transform: translate(15px, 10px) scale(1.1);
        opacity: 0.9;
    }
    60% {
        transform: translate(-10px, 20px) scale(1.2);
        opacity: 1;
    }
}

/* Анимация электрических всплесков */
@keyframes spark {
    0%, 90%, 100% {
        opacity: 0;
        transform: scaleY(0);
    }
    10% {
        opacity: 1;
        transform: scaleY(1);
    }
    15% {
        opacity: 0.8;
        transform: scaleY(0.8);
    }
    20% {
        opacity: 0;
        transform: scaleY(0);
    }
}

.placeholder-text {
    display: none;
}

.main-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
}

.main-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.65;
    font-weight: 400;
}

.intro-block {
    background: rgba(20, 25, 55, 0.4);
    padding: 1.75rem 2rem;
    margin-bottom: 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.intro-block p {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.75;
}

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

.intro-block strong {
    font-weight: 700;
    color: #fff;
}

/* CTA кнопки — неоновый стиль */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 50%, #b74dff 100%);
    color: #fff;
    padding: 1.1rem 2.25rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(0, 212, 255, 0.6), 0 0 20px rgba(183, 77, 255, 0.4), 0 8px 25px rgba(0, 0, 0, 0.35);
    border-color: rgba(0, 212, 255, 0.9);
}

.cta-button.secondary {
    background: linear-gradient(135deg, #00d4ff 0%, #00a8cc 50%, #b74dff 100%);
    color: #fff;
    border: 1px solid rgba(0, 212, 255, 0.6);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4), 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-button.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(0, 212, 255, 0.6), 0 0 20px rgba(183, 77, 255, 0.4), 0 8px 25px rgba(0, 0, 0, 0.35);
    border-color: rgba(0, 212, 255, 0.9);
}

/* Отступы вокруг кнопки в герое: верх в 3 раза меньше, низ в 2 раза больше */
.hero-content-wrapper .cta-button {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.content-section .cta-button,
.content-section .program-btn {
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.content-section .cta-button.secondary {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.program-body .program-btn {
    margin-top: 1.25rem;
}

/* Карточки преимуществ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.benefit-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(183, 77, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

.benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.benefit-image .placeholder-text {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
}


/* Списки */
.check-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.check-list li {
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    background: rgba(20, 25, 55, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.check-list li:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.check-list li strong {
    color: white;
    font-weight: 600;
}

/* Секция «Для взрослых» — без блочного списка, текст и одна строка про сертификат */
.adults-section .section-intro {
    max-width: 720px;
    margin-bottom: 1rem;
}

.adults-cert {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 1rem 0 2rem;
    padding-left: 1rem;
    border-left: 3px solid var(--primary);
}

/* Информационные карточки - компактно */
.info-cards {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-card-item {
    background: rgba(20, 25, 55, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    border-radius: 12px;
}

.info-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.info-icon {
    display: none;
}

.info-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

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

/* Почему мы - компактно */
.reasons-list {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.reason-item {
    display: flex;
    gap: 1.5rem;
    background: rgba(20, 25, 55, 0.6);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    border-radius: 12px;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.reason-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4ff, #b74dff);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.reason-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.reason-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Карточки программ - компактнее */
.program-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.program-card {
    background: rgba(20, 25, 55, 0.6);
    backdrop-filter: blur(10px);
    overflow: hidden;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.program-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    border-color: rgba(0, 212, 255, 0.5);
}

.program-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(183, 77, 255, 0.1));
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.program-header {
    padding: 1.5rem;
    background: rgba(15, 20, 45, 0.8);
}

.program-age {
    display: inline-block;
    background: rgba(0, 212, 255, 0.15);
    color: var(--primary);
    padding: 0.4rem 0.85rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 6px;
}

.program-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.program-desc {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9rem;
}

.program-body {
    padding: 1.5rem;
    background: rgba(15, 20, 40, 0.5);
}

.program-body h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.25rem 0 0.75rem;
    color: white;
}

.program-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.program-body ul li {
    padding-left: 1rem;
    margin-bottom: 1rem;
    position: relative;
    line-height: 1.7;
    color: var(--text-light);
    font-size: 1rem;
}

.program-result {
    background: rgba(0, 212, 255, 0.1);
    color: white;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    border-left: 3px solid var(--primary);
    font-size: 0.95rem;
    border-radius: 6px;
}

.program-result strong {
    color: var(--primary);
    font-weight: 600;
}

.program-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(135deg, #00d4ff, #b74dff);
    color: white;
    padding: 1rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
    border: none;
    border-radius: 8px;
}

.program-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.6);
}

.program-btn:active {
    transform: translateY(0);
}

/* Программа для взрослых — одна карточка */
.program-cards-adults {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-left: 0;
    margin-right: auto;
}

/* Блок цен */
.pricing-section {
    background: transparent;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.pricing-card {
    background: rgba(20, 25, 55, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: rgba(0, 212, 255, 0.5);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.25);
}

.pricing-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.pricing-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.pricing-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.pricing-period {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0.5rem 0 1.5rem;
}

.pricing-card .program-btn {
    margin-top: 0;
    margin-bottom: 0;
}

/* Документы */
.pages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.page-card {
    background: rgba(20, 25, 55, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 2rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00d4ff, #b74dff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.card-icon svg {
    width: 32px;
    height: 32px;
}

.page-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.page-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Контакты */
.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    background: rgba(20, 25, 55, 0.6);
    backdrop-filter: blur(10px);
    padding: 1.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    border-radius: 12px;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.contact-icon {
    display: none;
}

.contact-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.9rem;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-item a:hover {
    color: white;
}

.contacts-cta {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    font-weight: 600;
}

/* Highlight текст */
.highlight-text {
    color: white;
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 2rem 0;
}

/* Certificate badge */
.certificate-badge {
    display: block;
    padding: 1.25rem 1.5rem;
    background: rgba(0, 212, 255, 0.1);
    border-left: 3px solid var(--primary);
    color: white;
    font-weight: 400;
    margin: 2rem 0;
    border-radius: 8px;
    line-height: 1.7;
    font-size: 1rem;
}

/* Блог */
.blog-section {
    background: transparent;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: rgba(20, 25, 55, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4);
    border-color: rgba(0, 212, 255, 0.5);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(183, 77, 255, 0.1));
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.blog-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #00d4ff, #b74dff);
    color: white;
    padding: 0.4rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-read-more {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-read-more {
    transform: translateX(5px);
}

.blog-cta {
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
}

.blog-cta .cta-button {
    margin-top: 0;
    margin-bottom: 0;
}

/* Хлебные крошки */
.breadcrumbs {
    padding: 2rem 0 1rem;
    font-size: 0.9rem;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin-left: 0.5rem;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--primary);
}

.breadcrumbs li:last-child span {
    color: white;
}

/* Статья блога */
.blog-article {
    max-width: 800px;
    margin: 0 auto 4rem;
    padding: 0 15px; /* Добавлены отступы по краям */
}

.article-header {
    margin-bottom: 3rem;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.article-category {
    background: linear-gradient(135deg, #00d4ff, #b74dff);
    color: white;
    padding: 0.4rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-date {
    color: var(--text-light);
}

.article-reading-time {
    color: var(--text-light);
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin-bottom: 1.5rem;
}

.article-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-light);
}

.article-featured-image {
    margin: 0 0 3rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-featured-image figcaption {
    padding: 1rem;
    background: rgba(20, 25, 55, 0.6);
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
}

/* Оглавление */
.article-toc {
    background: rgba(20, 25, 55, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 3rem;
}

.article-toc h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.article-toc ul {
    list-style: none;
    padding: 0;
}

.article-toc li {
    margin-bottom: 0.5rem;
}

.article-toc a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-toc a:hover {
    color: var(--primary);
}

/* Контент статьи */
.article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
}

.article-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin: 2.5rem 0 1.5rem;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: white;
    margin: 2rem 0 1rem;
    line-height: 1.3;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.75rem;
}

.article-content strong {
    color: white;
    font-weight: 600;
}

.article-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.article-content a:hover {
    color: white;
}

.article-quote {
    background: rgba(0, 212, 255, 0.1);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.article-quote p {
    font-size: 1.15rem;
    font-style: italic;
    color: white;
    margin-bottom: 0.5rem;
}

.article-quote cite {
    color: var(--text-light);
    font-size: 0.95rem;
}

.article-image {
    margin: 2.5rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.article-image figcaption {
    padding: 1rem;
    background: rgba(20, 25, 55, 0.6);
    color: var(--text-light);
    font-size: 0.9rem;
    text-align: center;
}

.article-highlight {
    background: rgba(20, 25, 55, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.article-highlight h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0 0 1rem 0;
}

.article-highlight p {
    margin-bottom: 0;
}

.article-conclusion {
    background: rgba(20, 25, 55, 0.6);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 3rem;
}

/* Футер статьи */
.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 2rem;
}

.tags-label {
    color: var(--text-light);
    font-weight: 600;
}

.article-tag {
    background: rgba(20, 25, 55, 0.8);
    color: var(--text-light);
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.article-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary);
    border-color: var(--primary);
}

.article-share {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
}

.share-label {
    color: var(--text-light);
    font-weight: 600;
}

.share-button {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(20, 25, 55, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.share-button:hover {
    background: rgba(0, 212, 255, 0.2);
    color: var(--primary);
    border-color: var(--primary);
}

.article-cta {
    background: rgba(20, 25, 55, 0.8);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.article-cta h3 {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1rem;
}

.article-cta p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.related-articles {
    margin-top: 4rem;
}

/* Футер */
.footer {
    background: rgba(10, 14, 31, 0.95);
    backdrop-filter: blur(20px);
    margin-top: 0;
    padding: 2rem 0 1.25rem;
    border-top: 1px solid rgba(0, 212, 255, 0.15);
}

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

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.footer-section p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.footer-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-light);
    font-size: 0.8rem;
}

/* Cookie popup */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    max-width: 500px;
    width: calc(100% - 2rem);
    background: rgba(10, 14, 31, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    z-index: 10000;
    padding: 1.25rem;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translate(-50%, 30px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* На мобильных баннер позиционируется через left/right, без translateX — иначе уезжает влево */
@keyframes slideInMobile {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cookie-icon {
    font-size: 2.5rem;
}

.cookie-text h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.cookie-text p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-light);
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-text a:hover {
    color: white;
}

.cookie-btn {
    background: linear-gradient(135deg, #00d4ff, #b74dff);
    color: white;
    border: none;
    padding: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    border-radius: 8px;
    width: 100%;
}

.cookie-btn:hover {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.7);
    transform: translateY(-2px);
}

.cookie-btn:active {
    transform: scale(0.98);
}

/* МОБИЛЬНАЯ ВЕРСИЯ - WOW ЭФФЕКТЫ */
@media (max-width: 768px) {
    /* Убираем горизонтальный скролл */
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .container {
        padding: 0 0px;
        width: 100%;
        max-width: 100%;
    }

    /* В шапке — отступы слева и справа 12px */
    .header .container {
        padding: 0 12px;
    }

    .main {
        padding-top: 130px;
        overflow-x: hidden;
    }

    /* Шапка зафиксирована на мобильных */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 1000;
    }

    .hero-section .container {
        padding: 1.5rem 12px 2rem;
        width: 100%;
        max-width: 100%;
    }

    .content-section .container {
        padding: 2rem 12px;
        width: 100%;
        max-width: 100%;
    }
    
    .blog-article {
        padding: 0 12px;
    }

    /* Меньше лагов: отключаем тяжёлые декорации и анимации на мобильных */
    .decorative-orb {
        display: none;
    }

    body::after {
        animation: none;
        opacity: 0.4;
    }

    /* Мобильная шапка */
    .header-desktop {
        display: none;
    }

    .header-mobile {
        display: flex;
    }

    .logo-image {
        width: 32px;
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.35rem;
    }

    /* Hero — градиент на всю ширину, планета и кольца не в «квадрате», без обрезки */
    .hero-section {
        padding: 0;
        overflow-x: hidden;
        background: linear-gradient(180deg, rgba(10, 15, 30, 0.97) 0%, rgba(30, 20, 50, 0.95) 40%, rgba(15, 25, 45, 0.98) 100%);
    }

    .hero-image {
        overflow: visible;
    }

    .hero-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        max-width: 100%;
        overflow: visible;
    }

    .hero-content-wrapper .main-title {
        order: 1;
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        padding-right: 0;
        width: 100%;
        max-width: 100%;
    }

    /* Планета и кольца — без квадратного контейнера, круг и анимация видны полностью */
    .hero-content-wrapper .hero-image {
        order: 2;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }

    .hero-image-placeholder {
        width: min(280px, 85vw);
        height: auto;
        aspect-ratio: 1;
        margin: 0 auto;
        border-radius: 50%;
        background-image: url('images/hero-main.webp');
        background-size: cover;
        background-position: center;
        overflow: visible;
        box-shadow: 0 0 80px rgba(0, 212, 255, 0.5), 0 0 120px rgba(183, 77, 255, 0.35);
    }

    .hero-content-wrapper .main-subtitle,
    .hero-content-wrapper .intro-block {
        width: 100%;
        max-width: 100%;
    }

    .intro-block {
        width: 100%;
        max-width: 100%;
    }

    .hero-content-wrapper .main-subtitle {
        order: 3;
    }

    .hero-content-wrapper .intro-block {
        order: 4;
    }

    .hero-content-wrapper .cta-button {
        order: 5;
        width: 100%;
        justify-content: center;
    }

    .main-title {
        font-size: 1.75rem;
        text-align: left;
        width: 100%;
    }

    .main-subtitle {
        font-size: 1rem;
        text-align: left;
    }

    .intro-block {
        padding: 1.25rem;
    }

    .intro-block p {
        font-size: 0.9rem;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        /* Tap эффект для мобильных */
        -webkit-tap-highlight-color: transparent;
    }

    .cta-button:active {
        transform: scale(0.98);
    }

    /* Секции - на всю ширину, без переполнения */
    .content-section {
        padding: 0;
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .content-section .section-intro,
    .content-section .section-title {
        max-width: 100%;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-intro {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    /* Карточки - одна колонка */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .benefit-image {
        height: 140px;
    }

.benefit-content {
    padding: 2rem;
}

    .benefit-card h3 {
        font-size: 1.25rem;
    }

    .benefit-card p {
        font-size: 0.9rem;
    }

    /* Списки */
    .check-list li {
        padding: 0.875rem 1.25rem 0.875rem 3rem;
        font-size: 0.9rem;
    }

    .check-list li:before {
        width: 24px;
        height: 24px;
        left: 0.875rem;
        font-size: 0.8rem;
    }

    /* Highlight */
    .highlight-text {
        padding: 1.25rem;
        font-size: 0.95rem;
    }

    .certificate-badge {
        padding: 1rem;
        font-size: 0.9rem;
    }

    /* Info карточки */
    .info-card-item {
        flex-direction: column;
        padding: 1.75rem;
        gap: 1rem;
        text-align: center;
    }

    .info-icon {
        font-size: 2.5rem;
    }

    .info-content h3 {
        font-size: 1.15rem;
    }

    .info-content p {
        font-size: 0.9rem;
    }

    /* Причины */
    .reason-item {
        flex-direction: column;
        padding: 1.75rem;
        gap: 1rem;
        text-align: center;
    }

    .reason-number {
        width: 45px;
        height: 45px;
        font-size: 1.35rem;
        margin: 0 auto;
    }

    .reason-content h3 {
        font-size: 1.15rem;
    }

    .reason-content p {
        font-size: 0.9rem;
    }

    /* Программы */
    .program-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .program-cards-adults {
        max-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-amount {
        font-size: 2rem;
    }

    .program-header {
        padding: 1.75rem 1.5rem 1.25rem;
    }

    .program-card h3 {
        font-size: 1.35rem;
    }

    .program-desc {
        font-size: 0.9rem;
    }

    .program-body {
        padding: 1.5rem;
    }

    .program-body h4 {
        font-size: 1rem;
        margin: 1.25rem 0 0.875rem;
    }

    .program-body ul li {
        font-size: 0.85rem;
        padding-left: 1.75rem;
    }

    .program-result {
        font-size: 0.85rem;
    }

    .program-btn {
        font-size: 0.95rem;
    }

    /* Документы */
    .pages-grid {
        grid-template-columns: 1fr;
    }

    .page-card {
        padding: 1.75rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon svg {
        width: 28px;
        height: 28px;
    }

    .page-card h3 {
        font-size: 1.15rem;
    }

    .page-card p {
        font-size: 0.85rem;
    }

    /* Контакты */
    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.75rem;
    }

    .contact-icon {
        font-size: 2.25rem;
    }

    .contact-item h3 {
        font-size: 1.05rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    .contacts-cta {
        font-size: 0.95rem;
    }

    /* Футер */
    .footer {
        padding: 2.5rem 0 1.25rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-section p {
        font-size: 0.85rem;
    }

    /* Cookie popup — без translateX, чтобы не уезжал влево за экран */
    .cookie-consent {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        padding: 1.75rem;
        transform: none;
        animation: slideInMobile 0.5s ease-out;
    }

    .cookie-text h3 {
        font-size: 1.05rem;
    }

    .cookie-text p {
        font-size: 0.85rem;
    }

    .cookie-btn {
        width: 100%;
        padding: 0.875rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content-wrapper {
        padding: 1.75rem 1.25rem;
    }

    .main-title {
        font-size: 1.5rem;
    }

    .main-subtitle {
        font-size: 0.95rem;
    }

    .content-section {
        padding: 1.75rem 1.25rem;
    }

    .section-title {
        font-size: 1.35rem;
    }
}

/* Banner Summer Camp */
.banner-link {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    background: #0a0e1f;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-decoration: none;
}
.banner-link:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 212, 255, 0.4);
}
.banner-bg {
    width: 100%;
}
.banner-bg img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10,14,31,0.95) 0%, rgba(10,14,31,0.6) 60%, transparent 100%);
    padding: 3rem 2.5rem 2.5rem;
    text-align: left;
}
.banner-content h2 {
    color: #fff;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 0.5rem;
    font-weight: 700;
}
.banner-content p {
    color: #d0daf5;
    font-size: 1.1rem;
    margin: 0;
    max-width: 600px;
    line-height: 1.5;
}
.banner-content .cta-button {
    margin-top: 1.25rem;
    display: inline-flex;
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .banner-link {
        display: flex;
        flex-direction: column;
    }
    .banner-bg img {
        height: auto;
        max-height: none;
        object-fit: contain;
        width: 100%;
    }
    .banner-content {
        position: relative;
        background: linear-gradient(to top, rgba(10,14,31,1) 0%, rgba(10,14,31,0.9) 100%);
        padding: 2rem 1.25rem 1.5rem;
        margin-top: -2rem;
    }
    .banner-content h2 {
        font-size: 1.35rem;
    }
    .banner-content p {
        font-size: 0.9rem;
    }
    .banner-content .cta-button {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
}

