body {
    background: #0f1117;
    color: #f5f7fb;
}

.premium-page {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(119, 44, 232, 0.16), transparent 30%),
        radial-gradient(circle at 85% 12%, rgba(25, 195, 125, 0.12), transparent 24%),
        linear-gradient(180deg, #0f1117 0%, #10131c 100%);
}

.premium-hero {
    padding: clamp(1.5rem, 3vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(17, 20, 29, 0.78);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(14px);
}

.premium-kicker {
    color: #89f0be;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    font-size: 0.84rem;
}

.premium-title {
    max-width: 14ch;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    margin: 0;
}

.premium-lead {
    max-width: 62ch;
    color: #d2d8e5;
    font-size: 1.02rem;
    line-height: 1.7;
}

.premium-price-card,
.premium-panel,
.premium-footer {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    background: #171b25;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.premium-price-card {
    padding: 1.5rem;
}

.premium-price-card__label {
    color: #f5f7fb;
    font-weight: 800;
    font-size: 1.6rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.premium-price-card__subtitle {
    color: #ffb3b3;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.85rem;
}

.premium-price-card__copy {
    color: #d2d8e5;
    line-height: 1.65;
}

.premium-alert {
    border-radius: 16px;
}

.premium-panel {
    padding: 1.5rem;
}

.premium-section-title {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.premium-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.premium-feature {
    padding: 1rem;
    border-radius: 16px;
    background: #202532;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.premium-feature h3 {
    font-size: 0.98rem;
    margin-bottom: 0.45rem;
}

.premium-feature p,
.premium-form-lead,
.premium-footer__copy {
    color: #d2d8e5;
    font-size: 0.94rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.premium-form-lead {
    margin-bottom: 1rem;
}

.premium-form a {
    color: #89f0be;
}

.premium-form .form-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: #f5f7fb;
    margin-bottom: 0.45rem;
}

.premium-input {
    background: #10131c;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #f5f7fb;
    border-radius: 14px;
    min-height: 48px;
}

.premium-input::placeholder {
    color: rgba(245, 247, 251, 0.45);
}

.premium-input:focus {
    background: #10131c;
    color: #fff;
    border-color: rgba(137, 240, 190, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(137, 240, 190, 0.14);
}

.premium-textarea {
    min-height: 160px;
    resize: vertical;
}

.premium-btn {
    border-radius: 999px;
    font-weight: 700;
    padding: 0.85rem 1.2rem;
}

.premium-btn--primary {
    background: linear-gradient(135deg, #772ce8, #5bd7ff);
    color: #08101f;
    border: 0;
    box-shadow: 0 12px 30px rgba(119, 44, 232, 0.24);
}

.premium-btn--secondary {
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #f5f7fb;
    background: rgba(255, 255, 255, 0.04);
}

.premium-footer {
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.premium-footer__kicker {
    color: #89f0be;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 700;
}

@media (min-width: 992px) {
    .premium-footer {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (max-width: 991.98px) {
    .premium-title {
        max-width: none;
    }

    .premium-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .premium-hero,
    .premium-panel,
    .premium-price-card,
    .premium-footer {
        padding: 1rem;
    }
}
