
.hero-vortex {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0e17 0%, #11151f 100%);
    display: flex;
    align-items: center;
    position: relative;
    padding: 40px 0;
    border-radius: 16px;
}

.hero-core {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-head {
    font-size: 5.6rem;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 32px;
    color: #e6f0ff;
}

.neon-glow {
    background: linear-gradient(90deg, #00ff9d, #00d4ff);
    -webkit-text-fill-color: transparent;
}

.hero-sub {
    font-size: 1.65rem;
    color: #a3bffa;
    margin-bottom: 72px;
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.hero-action-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.action-pill {
    padding: 20px 60px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.4s ease;
}

.primary-pill {
    background: #00ff9d;
    color: #0a0e17;
    box-shadow: 0 12px 48px rgba(0,255,157,0.35);
}

.primary-pill:hover {
    background: #00e88c;
    transform: translateY(-6px);
    box-shadow: 0 24px 72px rgba(0,255,157,0.45);
}

.outline-pill {
    border: 2px solid #00d4ff;
    color: #00d4ff;
    background: transparent;
}

.outline-pill:hover {
    background: #00d4ff;
    color: #0a0e17;
}

/* Секции */
.zone-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    margin: 50px 0;
    font-size: 3.8rem;
    text-align: center;
    margin-bottom: 88px;
    background-color: #000;
    color: #fff;
    width: 70%;
}

/* Карточки */
/* .features-grid, .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 40px;
} */

.feature-cluster {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

.glass-pod {
    background: rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    padding: 56px 40px;
    border: 1px solid rgba(0,212,255,0.12);
    backdrop-filter: blur(16px);
    transition: all 0.4s ease;
}

.glass-pod:hover {
    transform: translateY(-16px);
    border-color: #00ff9d;
    box-shadow: 0 32px 96px rgba(0,255,157,0.18);
}

.neon-icon, .pod-icon{
    font-size: 5rem;
    margin-bottom: 32px;
    color: #00ff9d;
    display: flex;
    justify-content: center;
}

.why-cluster {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
}

/* CTA */
.final-cta {
    background: linear-gradient(135deg, #0a0e17 0%, #11151f 100%);
    padding: 160px 0;
    text-align: center;
    border-radius: 48px 48px 0 0;
}

.final-title {
    font-size: 4.2rem;
    margin-bottom: 32px;
    color: #e6f0ff;
}


.final-title p {
    margin: 6px 0;
        background: linear-gradient(135deg, #0a0e17 0%, #11151f 100%);
        width: 80%;
}

.final-subtitle {
    font-size: 1.6rem;
    color: #000000;
    margin-bottom: 56px;
    background: linear-gradient(90deg, #00ff9d, #00d4ff);
    width: 40%;
}

.huge {
    padding: 24px 72px;
    font-size: 1.6rem;
}