/* =============================================
   PRIVY — Components: Buttons, Cards, Pricing
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 22px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: transform .25s var(--ease), box-shadow .3s var(--ease);
    width: 100%;
    min-height: 40px;
    position: relative;
    overflow: hidden;
}

.btn:active {
    transform: translateY(0) scale(.97);
    transition-duration: .1s;
}

.btn-primary {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 2px 12px rgba(168, 85, 247, .18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(168, 85, 247, .35), 0 4px 16px rgba(0, 0, 0, .3);
}

.btn-gold {
    background: var(--grad-gold);
    color: #111;
    box-shadow: 0 2px 12px rgba(251, 191, 36, .18);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 28px rgba(251, 191, 36, .40), 0 6px 22px rgba(251, 191, 36, .25);
}

/* Ripple on click */
.btn-primary::after,
.btn-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at center, rgba(255, 255, 255, .12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity .3s;
    pointer-events: none;
}

.btn-primary:active::after,
.btn-gold:active::after {
    opacity: 1;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: var(--grad);
    border-radius: 50px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 16px;
}

/* Scarcity */
.scarcity {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: rgba(239, 68, 68, .05);
    border: 1px solid rgba(239, 68, 68, .1);
    border-radius: 8px;
    font-size: 11px;
    color: var(--red);
    font-weight: 600;
}

/* Glass Card (universal mixin) */
.glass {
    background: var(--surface);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, .4),
        0 2px 8px rgba(0, 0, 0, .2),
        inset 0 1px 0 rgba(255, 255, 255, .05),
        inset 0 0 24px rgba(168, 85, 247, .015);
}

/* Model Cards — Compact & Premium */
.model-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .model-grid {
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    .model-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }
}

.model-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: rgba(12, 8, 24, 0.55);
    backdrop-filter: blur(32px) saturate(160%);
    -webkit-backdrop-filter: blur(32px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all .4s var(--ease);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    box-shadow:
        0 3px 18px rgba(0, 0, 0, 0.35),
        0 1px 3px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.model-card:hover {
    border-color: rgba(168, 85, 247, 0.16);
    box-shadow:
        0 12px 36px -6px rgba(168, 85, 247, .10),
        0 3px 12px rgba(0, 0, 0, .22),
        inset 0 1px 0 rgba(255, 255, 255, .05);
    transform: translateY(-4px);
}

/* Inner glow ring */
.model-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 16px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 2;
}

/* Hover gradient overlay */
.model-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0) 0%, rgba(168, 85, 247, .04) 50%, rgba(236, 72, 153, 0) 100%);
    opacity: 0;
    transition: opacity .4s var(--ease);
    pointer-events: none;
    z-index: 1;
}

.model-card:hover::after {
    opacity: 1;
}

/* Image — 3:4 ratio, visually dominant but not oversized */
.mc-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
}

/* Gradient divider at bottom of image */
.mc-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, .12), rgba(236, 72, 153, .08), transparent);
    z-index: 3;
}

.mc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s var(--ease-out);
}

.model-card:hover .mc-img-wrap img {
    transform: scale(1.06);
}

.mc-info {
    padding: 6px 8px 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    position: relative;
    z-index: 2;
}

.mc-name {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
    color: #fff;
    margin: 0;
    line-height: 1.15;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Rating + Tags Inline */
.mc-meta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}

.mc-rating {
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.mc-tag-inline {
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1;
}

.mc-tag-inline.vip {
    background: rgba(251, 191, 36, .12);
    color: var(--gold);
    border-color: rgba(251, 191, 36, .12);
}

.mc-tag-inline.excl {
    background: rgba(168, 85, 247, .12);
    color: var(--purple);
    border-color: rgba(168, 85, 247, .12);
}

.mc-tag-inline.new {
    background: rgba(34, 197, 94, .12);
    color: var(--green);
    border-color: rgba(34, 197, 94, .12);
}

/* Divider between meta and teaser */
.mc-divider {
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .06), transparent);
    margin: 2px 0;
}

/* Description — 2 lines max */
.mc-teaser {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 95%;
}

/* Compact CTA */
.mc-btn {
    margin-top: 3px;
    padding: 6px 14px;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 6px;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s var(--ease);
    width: auto;
    min-width: 72px;
    line-height: 1;
}

.model-card:hover .mc-btn {
    background: var(--purple);
    border-color: var(--purple);
    color: #fff;
    box-shadow: 0 4px 14px rgba(168, 85, 247, 0.3);
    transform: translateY(-1px);
}

/* Counters */
.counters {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: wrap;
    padding: 24px 0;
}

.counter-item {
    text-align: center;
}

.counter-value {
    font-size: 28px;
    font-weight: 800;
    color: var(--gold);
    font-variant-numeric: tabular-nums;
}

.counter-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-muted);
    margin-top: 2px;
}

/* Steps */
.steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--surface);
    backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.step-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    flex-shrink: 0;
    color: #fff;
}

.step-num.gold {
    background: var(--grad-gold);
    color: #111;
}

.step-text h3 {
    font-size: 15px;
    margin-bottom: 2px;
}

.step-text p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Value Props */
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .value-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background: var(--surface);
    backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 14px;
    text-align: center;
    transition: transform .25s var(--ease);
}

.value-card:hover {
    transform: translateY(-2px);
}

.value-icon {
    font-size: 26px;
    margin-bottom: 8px;
}

.value-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.value-desc {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Testimonials */
.test-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.t-card {
    background: var(--surface);
    backdrop-filter: blur(18px);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 18px;
    transition: transform .25s var(--ease);
}

.t-card:hover {
    transform: translateY(-2px);
}

.t-stars {
    color: var(--gold);
    font-size: 12px;
    margin-bottom: 6px;
}

.t-text {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 8px;
}

.t-author {
    font-size: 11px;
    font-weight: 600;
    color: var(--purple);
}

/* CTA Block */
.cta-block {
    background: var(--surface-elevated);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
    border: 1px solid rgba(168, 85, 247, .1);
    border-radius: var(--radius-lg);
    padding: 35px 20px;
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 8px 32px rgba(168, 85, 247, .08),
        0 2px 8px rgba(0, 0, 0, .2),
        inset 0 1px 0 rgba(255, 255, 255, .05),
        inset 0 0 40px rgba(168, 85, 247, .02);
}

.cta-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(255, 255, 255, .025) 0%, transparent 100%);
    pointer-events: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* Guarantee */
.guarantee {
    text-align: center;
    padding: 18px;
    background: rgba(34, 197, 94, .035);
    border: 1px solid rgba(34, 197, 94, .08);
    border-radius: var(--radius);
    max-width: 560px;
    margin: 0 auto;
}

/* Button Overrides for Pricing */
.p-card .btn {
    width: 100%;
    margin-top: auto;
    padding: 14px 20px;
    font-size: 14px;
    letter-spacing: .08em;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 300ms ease;
}

.p-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
}

.p-card.gold .btn:hover {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

/* Pricing */
.pricing-section {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
    position: relative;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        align-items: start;
    }

    .pricing-grid::before,
    .pricing-grid::after {
        content: '';
        position: absolute;
        top: 10%;
        width: 1px;
        height: 80%;
        background: linear-gradient(180deg, transparent, rgba(168, 85, 247, .12), rgba(236, 72, 153, .08), transparent);
        z-index: 3;
        pointer-events: none;
    }

    .pricing-grid::before {
        left: 33.33%;
    }

    .pricing-grid::after {
        left: 66.66%;
    }
}

.p-card {
    position: relative;
    background: var(--surface);
    backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-sat));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 300ms ease, box-shadow 300ms ease, border-color 300ms ease;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, .32),
        0 1px 4px rgba(0, 0, 0, .15),
        inset 0 1px 0 rgba(255, 255, 255, .06),
        inset 0 0 20px rgba(168, 85, 247, .015);
    overflow: hidden;
}

.p-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, .08);
    border-color: var(--border-glow);
}

.p-card.featured {
    border-color: rgba(168, 85, 247, .35);
    background: rgba(168, 85, 247, .06);
    box-shadow: 0 8px 32px rgba(168, 85, 247, .25), 0 2px 8px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .08), inset 0 0 28px rgba(168, 85, 247, .08);
}

.p-card.gold {
    background: rgba(251, 191, 36, .03);
    border-color: rgba(251, 191, 36, .12);
}

/* Shimmer sweep on hover */
.p-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .03), transparent);
    z-index: 1;
    pointer-events: none;
}

.p-card:hover::before {
    animation: unlockSweep .8s var(--ease-out) forwards;
}

/* Gradient glow on hover */
.p-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0) 0%, rgba(168, 85, 247, .06) 50%, rgba(236, 72, 153, 0) 100%);
    opacity: 0;
    transition: opacity .4s var(--ease);
    pointer-events: none;
    z-index: 0;
}

.p-card:hover::after {
    opacity: 1;
}

@media (min-width: 768px) {
    .p-card {
        border-radius: 0;
        border-right: none;
    }

    .p-card:first-child {
        border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    }

    .p-card:last-child {
        border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
        border-right: 1px solid var(--border);
    }

    .p-card.featured {
        transform: scale(1.02);
        z-index: 2;
        border-radius: var(--radius-lg);
        border-right: 1px solid rgba(168, 85, 247, .28);
    }

    .p-card.featured:hover {
        transform: scale(1.02) translateY(-5px);
    }
}





.p-name {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-style: italic;
    margin-bottom: 6px;
    color: #fff;
}

.p-original-value {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
    font-weight: 500;
}

.p-value-alert {
    color: #ff3b3b;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-shadow: 0 0 12px rgba(255, 59, 59, 0.4);
}

.p-original-value s {
    color: rgba(255, 255, 255, 0.4);
}

.p-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 2px;
}

.p-price {
    font-size: 40px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1.1;
}

.p-discount-badge {
    background: #ff3b3b;
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(255, 59, 59, 0.4);
}

.p-daily-price {
    font-size: 13px;
    color: #22c55e;
    font-weight: 800;
    margin-bottom: 2px;
    letter-spacing: 0.02em;
}

.p-period {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Gradient divider above features */
.p-divider {
    width: 70%;
    height: 1px;
    margin: 0 auto 14px;
    background: linear-gradient(90deg, transparent, rgba(168, 85, 247, .14), transparent);
}

.p-features {
    margin-bottom: 16px;
}

.p-features li {
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .035);
    font-size: 14px;
    color: rgba(255, 255, 255, .82);
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.45;
    width: 100%;
}

.p-features li:last-child {
    border-bottom: none;
}

.feat-yes {
    color: var(--green);
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.feat-no {
    color: rgba(255, 255, 255, .10);
    font-weight: 700;
    font-size: 13px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.feat-no+span {
    color: rgba(255, 255, 255, .22);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, .06);
}

.p-anchor-text {
    font-size: 13px;
    color: var(--gold);
    margin-top: 14px;
    font-weight: 700;
}

/* Trust micro-copy under CTA */
.p-micro-copy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    flex-wrap: wrap;
}

.p-micro-copy span {
    font-size: 9.5px;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.p-scarcity {
    margin-top: 16px;
    font-size: 11px;
    color: var(--pink);
    font-weight: 600;
    padding: 6px 14px;
    background: rgba(236, 72, 153, .1);
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.p-scarcity strong {
    color: #fff;
}

/* Social proof counter in pricing */
.p-social-proof {
    margin-top: 16px;
    font-size: 11px;
    color: rgba(255, 255, 255, .6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: 500;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #22c55e;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: rgba(34, 197, 94, 0.4);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: livePulse 2s infinite ease-out;
}

@keyframes livePulse {
    0% {
        transform: translate(-50%, -50%) scale(0.2);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Mobile Overrides */
@media (min-width: 992px) {
    .p-card.featured {
        transform: scale(1.05);
        z-index: 2;
    }

    .p-card.featured:hover {
        transform: scale(1.05) translateY(-8px);
    }
}

/* Mobile Overrides */
@media (max-width: 767px) {
    .mc-info {
        padding: 8px 10px 10px;
    }

    .mc-name {
        font-size: 13px;
    }

    .mc-teaser {
        font-size: 9px;
    }

    .mc-meta-row {
        gap: 4px;
    }

    .mc-rating {
        font-size: 9px;
    }

    .mc-tag-inline {
        font-size: 7px;
        padding: 2px 5px;
    }

    .mc-btn {
        padding: 6px 10px;
        font-size: 8px;
        min-width: 60px;
    }

    .model-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding-bottom: 20px;
    }

    .p-card {
        padding: 18px 14px;
        width: 100%;
    }

    .p-price {
        font-size: 32px;
    }

    .pricing-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .p-name {
        font-size: 16px;
    }

    .p-price {
        font-size: 28px;
    }

    .p-period {
        margin-bottom: 8px;
    }

    .p-features li {
        padding: 5px 0;
        font-size: 11px;
    }

    .btn {
        padding: 13px 22px;
        font-size: 11px;
        min-height: 48px;
    }

    .counters {
        gap: 20px;
    }

    .counter-value {
        font-size: 24px;
    }

    .cta-block {
        padding: 28px 16px;
    }

    .value-card {
        padding: 18px 10px;
    }

    .value-icon {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .value-title {
        font-size: 13px;
    }

    .value-desc {
        font-size: 10px;
    }
}

@media (max-width: 380px) {
    .model-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .mc-name {
        font-size: 12px;
    }

    .p-price {
        font-size: 24px;
    }
}

/* ===== PRICING CONVERSION ELEMENTS ===== */

/* Tier label (small text) */
.p-tier {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: rgba(255, 255, 255, .45);
    font-weight: 700;
    margin-bottom: 4px;
    margin-top: 8px;
}

/* Top badge shared */
.p-top-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 14px;
    border-radius: 0 0 8px 8px;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    z-index: 5;
    white-space: nowrap;
    max-width: calc(100% - 24px);
    overflow: hidden;
    text-overflow: ellipsis;
}

.p-most-chosen {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 2px 10px rgba(168, 85, 247, .25);
}

.p-best-value {
    background: var(--grad-gold);
    color: #111;
    box-shadow: 0 2px 10px rgba(251, 191, 36, .25);
}

/* Animated arrow pointing down */
.p-arrow-down {
    display: inline-block;
    animation: arrowBounce 1.5s ease-in-out infinite;
    margin-left: 2px;
}

@keyframes arrowBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(3px);
    }
}

/* Scarcity line in pricing */
.p-scarcity {
    font-size: 10px;
    color: var(--red);
    font-weight: 600;
    margin-top: 8px;
    opacity: 0.85;
    text-align: center;
}

.p-scarcity strong {
    color: #fff;
}

/* Inner radial highlight on pricing cards */
.p-card::after {
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.035) 0%, transparent 55%),
        linear-gradient(135deg, rgba(168, 85, 247, 0) 0%, rgba(168, 85, 247, .06) 50%, rgba(236, 72, 153, 0) 100%);
}

/* ===== ANIMATED UNDERLINE UTILITY ===== */
.underline-reveal {
    position: relative;
    display: inline;
}

.underline-reveal::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad);
    border-radius: 1px;
    transition: width 0.5s var(--ease-out);
}

.underline-reveal.active::after,
.reveal.active .underline-reveal::after {
    width: 100%;
}