.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    backdrop-filter: blur(16px);
    background: rgba(5, 6, 10, 0.6);
    border-bottom: 1px solid var(--border);
}

.navbar__logo {
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

/* ─── Hero ────────────────────────────────────────────────────────────────── */

.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    overflow: hidden;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.hero__eyebrow {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    border: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.hero__title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff, var(--accent-2) 60%, var(--accent-1));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.hero__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Секции ──────────────────────────────────────────────────────────────── */

.section {
    max-width: 1080px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section__heading {
    text-align: center;
    margin-bottom: 48px;
}

.section__title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
}

.section__subtitle {
    color: var(--text-muted);
    max-width: 560px;
    margin: 12px auto 0;
}

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

.feature-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 92, 255, 0.4);
}

.feature-card__icon {
    font-size: 1.8rem;
    margin-bottom: 12px;
}

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

.pricing-card {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    text-align: center;
}

.pricing-card--featured {
    border-color: var(--accent-1);
    box-shadow: var(--shadow-glow);
}

.pricing-card__price {
    font-size: 2rem;
    font-weight: 800;
    margin: 12px 0 20px;
}

.pricing-card__price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    border-top: 1px solid var(--border);
}
