/* ══════════════════════════════════════════════════════════
   PREMIUM PAGE — Gold-accented premium aesthetic
   ══════════════════════════════════════════════════════════ */

/* ── HERO PREMIUM ── */
.premiumPage .hero {
    border-top: 3px solid #c39223;
}

.premiumPage .hero .badge {
    background: rgba(195, 146, 35, .12);
    border: 1px solid rgba(195, 146, 35, .3);
    color: #c39223;
}

.premiumPage .hero h2 span {
    background: linear-gradient(170deg, #e8b830, #c39223);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.premiumPage .hero p {
    max-width: 560px;
}

/* ── STATS BIG (highlight numbers) ── */
.statsBigRow {
    display: flex;
    gap: 10px;
    padding: 0 7px;
    flex-wrap: wrap;
}

.statsBig {
    flex: 1 1 calc(33.3% - 10px);
    min-width: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 22px 10px 18px;
    background: var(--bgBox);
    border-radius: 14px;
    animation: fadeUp .5s ease both;
    animation-delay: .06s;
}

.statsBig .bigNum {
    font-size: 1.8em;
    font-weight: 800;
    background: linear-gradient(170deg, #e8b830, #c39223);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 6px;
}

.statsBig .bigLabel {
    font-size: .72em;
    font-weight: 600;
    color: var(--color-icon);
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ── BENEFITS LIST ── */
.benefitsCard {
    margin: 0 7px;
    padding: 24px 20px;
    background: var(--bgBox);
    border-radius: 14px;
    font-size: .82em;
    line-height: 1.7;
    animation: fadeUp .5s ease both;
    animation-delay: .12s;
}

.benefitsCard h3 {
    font-size: 1.05em;
    margin-bottom: 14px;
    color: #c39223;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefitsCard:last-child h3 {
    color: var(--colorBody);
}

.benefitsList {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefitsList li {
    padding: 10px 0;
    border-bottom: 1px solid var(--borderColorSubheader);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--colorBody);
    opacity: .9;
}

.benefitsList li:last-child {
    border-bottom: none;
}

.benefitsList li i.bx {
    color: var(--green);
    font-size: 1.2em;
    flex-shrink: 0;
    margin-top: 3px;
}

/* ── DELIVERY CARD ── */
.deliveryRow {
    display: flex;
    gap: 10px;
    padding: 0 7px;
    flex-wrap: wrap;
    animation: fadeUp .5s ease both;
    animation-delay: .18s;
}

.deliveryCard {
    flex: 1 1 calc(50% - 10px);
    min-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 14px 20px;
    background: var(--bgBox);
    border-radius: 14px;
    gap: 8px;
    border: 1px solid transparent;
    transition: transform .2s, box-shadow .2s;
}

.deliveryCard:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
    border-color: var(--green);
}

.deliveryCard .iconWrap {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    font-size: 1.5em;
}

.deliveryCard .iconWrap.telegram {
    background: rgba(59, 130, 246, .12);
    color: #3b82f6;
}

.deliveryCard .iconWrap.site {
    background: rgba(45, 208, 157, .12);
    color: #2dd09d;
}

.deliveryCard .dcTitle {
    font-weight: 700;
    font-size: .88em;
    color: var(--colorBody);
}

.deliveryCard .dcDesc {
    font-size: .75em;
    color: var(--color-icon);
    line-height: 1.5;
}

/* ── PREMIUM CTA BUTTONS ── */
.premiumPage .ctaRow .ctaPrimary {
    background: linear-gradient(135deg, #e8b830, #c39223);
    color: #fff;
}

.premiumPage .ctaRow .ctaSecondary {
    background: linear-gradient(170deg, #f5f5f5, #d7d7d7);
    color: #636363;
}

/* ── FINAL CTA SECTION ── */
.finalCtaCard {
    margin: 0 7px;
    padding: 30px 20px;
    background: var(--bgBox);
    border-radius: 14px;
    text-align: center;
    animation: fadeUp .5s ease both;
    animation-delay: .22s;
}

.finalCtaCard h3 {
    font-size: 1.1em;
    margin-bottom: 8px;
    color: #c39223;
}

.finalCtaCard p {
    font-size: .82em;
    color: var(--color-icon);
    margin-bottom: 18px;
    line-height: 1.6;
}

.finalCtaCard .ctaRow {
    padding: 0;
    justify-content: center;
}

/* ── RESPONSIVE ── */
@media (min-width: 600px) {
    .statsBig .bigNum {
        font-size: 2.2em;
    }

    .statsBig .bigLabel {
        font-size: .78em;
    }
}

.btnCtt.wpp {
    background: linear-gradient(135deg, #25d366, #128c48);
    font-weight: bold;
    color: #fff;
}

.btnCtt.tgram {
    background: linear-gradient(135deg, #0088cc, #005f99);
    font-weight: bold;
    color: #fff;

}