.pkg-redesign-wrapper {
    padding: 40px 0 80px;
    background-color: #f7fbff;
    font-family: 'SolaimanLipi', sans-serif;
}

/* User Status Component */
.user-status-card {
    max-width: 650px;
    margin: 0 auto 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 19, 110, 0.1);
    overflow: hidden;
}
.us-header {
    background: linear-gradient(135deg, #fdecef 0%, #f9e5de 100%);
    padding: 18px 24px;
    text-align: center;
}
.us-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #880e4f;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.us-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px 24px;
    gap: 20px;
}
.us-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}
.us-icon {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: #fff0f5;
    color: #c8134e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(226, 19, 110, 0.1);
}
.us-icon.us-green {
    background: #e8f5e9;
    color: #2e7d32;
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.1);
}
.us-info span {
    display: block;
    font-size: 13px;
    color: #718096;
    margin-bottom: 2px;
}
.us-info strong {
    display: block;
    font-size: 17px;
    color: #2d3748;
    font-weight: 700;
}

.us-stat--with-action {
    flex-wrap: wrap;
    row-gap: 10px;
}
.us-history-btn {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 700;
    background: #fdecef;
    border: 1px solid rgba(200, 19, 78, 0.15);
    border-radius: 10px;
    padding: 8px 12px;
    white-space: nowrap;
    transition: background .15s ease, color .15s ease;
}
.pkg-redesign-wrapper .us-history-btn,
.pkg-redesign-wrapper .us-history-btn:hover,
.pkg-redesign-wrapper .us-history-btn:focus {
    color: #c8134e !important;
    text-decoration: none !important;
}
.us-history-btn:hover {
    background: #c8134e;
}
.pkg-redesign-wrapper .us-history-btn:hover {
    color: #fff !important;
}

@media(max-width: 576px) {
    .us-body { grid-template-columns: 1fr; gap: 15px; }
    .us-history-btn { margin-left: 0; width: 100%; justify-content: center; }
}

/* Header Section */
.modern-header-section {
    text-align: center;
    margin-bottom: 50px;
}
.badge-premium {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #fa2e83 0%, #f76b5c 100%);
    color: white;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: 0 4px 15px rgba(226, 19, 110, 0.3);
}
.modern-header-section .title {
    font-size: 36px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 12px;
    line-height: 1.3;
}
.modern-header-section .title span {
    color: #c8134e;
}
.modern-header-section .subtitle {
    font-size: 16px;
    color: #4a5568;
    max-width: 600px;
    margin: 0 auto;
}

/* Pricing Grid */
.modern-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

@media(max-width: 991px) {
    .modern-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media(max-width: 767px) {
    .modern-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

/* Card General */
.m-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 24px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #edf2f7;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.m-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.mc-top {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 2px dashed #edf2f7;
    margin-bottom: 20px;
}
.mc-title {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}
.mc-save-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 5px 12px;
    border-radius: 999px;
    background: #fff5f7;
    border: 1px solid #fed7e2;
    color: #be185d;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
}
.mc-price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    color: #1a202c;
}
.mc-price .currency {
    font-size: 24px;
    font-weight: 600;
    margin-top: 5px;
    margin-right: 4px;
}
.mc-price .amount {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}
.mc-price-caption {
    margin-top: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}
.mc-regular-price {
    margin-top: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 700;
}
.mc-regular-price del {
    color: #334155;
    text-decoration-thickness: 2px;
}

.mc-body {
    flex: 1;
}
.mc-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.mc-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 12px;
}
.mc-features li i {
    font-size: 20px;
    color: #38a169;
}

.mc-offer {
    background: #fff5f7;
    border: 1px solid #fed7e2;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.mc-offer .icon-box {
    background: #c8134e;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}
.mc-offer p {
    margin: 0;
    font-size: 13px;
    color: #4a5568;
    line-height: 1.5;
}
.mc-approval-note {
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: #f8fafc;
    color: #475569;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.mc-approval-note i {
    font-size: 17px;
    line-height: 1.2;
    color: #64748b;
}
.mc-approval-note.is-active {
    background: #ecfdf5;
    color: #047857;
}
.mc-approval-note.is-active i {
    color: #059669;
}

.mc-btn {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

/* Variables for specific cards */
.basic-card {
    border-top: 6px solid #4fd1c5;
}
.btn-basic {
    background: #e6fffa;
    color: #319795;
}
.basic-card:hover .btn-basic {
    background: #4fd1c5;
    color: white;
}

/* Most-popular highlight — follows whichever card carries the badge (now the
   basic card), so it's decoupled from a fixed variant. */
.m-card.popular {
    border-color: #c8134e;
    border-top-color: #c8134e;
    box-shadow: 0 18px 50px rgba(226, 19, 110, 0.18);
    transform: scale(1.05);
    z-index: 2;
}
.m-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}
@media (max-width: 991px) {
    .m-card.popular { transform: none; }
    .m-card.popular:hover { transform: translateY(-10px); }
}
.m-card.popular .mc-price .amount,
.m-card.popular .mc-price .currency {
    color: #c8134e;
}
/* Popular card's CTA always uses the brand gradient, regardless of its variant. */
.m-card.popular .mc-btn {
    background: linear-gradient(135deg, #fa2e83 0%, #f76b5c 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(226, 19, 110, 0.3);
}
.m-card.popular .mc-btn:hover {
    box-shadow: 0 8px 25px rgba(226, 19, 110, 0.4);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fa2e83 0%, #f76b5c 100%);
    color: white;
    padding: 6px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .2px;
    box-shadow: 0 6px 16px rgba(226, 19, 110, 0.35);
    white-space: nowrap;
}

/* Standard (middle) — a normal variant now, with a warm amber accent. */
.standard-card {
    border-top: 6px solid #f59e0b;
}
.btn-standard {
    background: #fffaf0;
    color: #b45309;
}
.standard-card:hover .btn-standard {
    background: #f59e0b;
    color: #fff;
}

/* Honor reduced-motion: drop hover lifts/transitions, keep the popular card's
   resting scale so the hierarchy is still readable. */
@media (prefers-reduced-motion: reduce) {
    .m-card, .mc-btn { transition: none; }
    .m-card:hover { transform: none; }
    .m-card.popular:hover { transform: scale(1.05); }
}

.premium-card {
    border-top: 6px solid #c8134e;
}
.btn-premium {
    background: #ebf4ff;
    color: #c8134e;
}
.premium-card:hover .btn-premium {
    background: #c8134e;
    color: white;
}

/* VIP Service Section */
.vip-service-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}
.vip-card {
    background: #1a1c29;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    color: white;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}
.vip-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="%23222538" width="100" height="100"/><circle cx="50" cy="50" r="2" fill="%23ffd700" opacity="0.3"/></svg>') repeat;
    opacity: 0.8;
}
.z-index-1 {
    z-index: 1;
}
.vip-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}
.vip-title {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}
.vip-subtitle {
    color: #cbd5e0;
    font-size: 16px;
}
.btn-vip {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    color: #000;
    font-size: 18px;
    padding: 16px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}
.btn-vip:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.vip-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
}
.vf-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    width: calc(50% - 10px);
}
.vf-item.wide {
    width: 100%;
}
@media(max-width: 767px) {
    .vf-item { width: 100%; }
    .vip-card { padding: 30px 20px; }
}
.vf-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}
.vf-item h4 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
}
.vf-item p {
    color: #a0aec0;
    font-size: 13px;
    margin: 0;
    line-height: 1.4;
}

/* Policy & Payment info */
.info-sections-wrapper {
    max-width: 650px;
    margin: 0 auto;
}

.pkg-payment-info-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff5f7;
    border: 1px dashed #fed7e2;
    border-radius: 16px;
    padding: 16px 20px;
}
.pkg-payment-info__icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    flex-shrink: 0;
}
.pkg-payment-info__icon img {
    width: 34px;
}
.pkg-payment-info-box strong {
    display: block;
    color: #2d3748;
    font-size: 15px;
    margin-bottom: 2px;
}
.pkg-payment-info-box p {
    margin: 0;
    color: #718096;
    font-size: 13px;
}
.pkg-payment-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}
.pkg-payment-icons img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: block;
}

/* Some small utilities */
.pkg-redesign-wrapper .text-primary { color: #c8134e !important; }
.pkg-redesign-wrapper .text-danger { color: #e53e3e !important; }

/* VIP inquiry modal */
.vip-modal__content {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.vip-modal__header {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    border-bottom: none;
    padding: 20px 25px;
}

.vip-modal__title {
    font-family: 'SolaimanLipi', sans-serif;
    font-size: 22px;
}

.vip-modal__body {
    font-family: 'SolaimanLipi', sans-serif;
    padding: 25px;
}

.vip-modal__intro {
    font-size: 15px;
}

.vip-modal__label {
    color: #2d3748;
}

.vip-modal__input {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 15px;
}

.vip-modal__textarea {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 15px;
    resize: none;
}

.vip-modal__footer {
    border-top: 1px solid #edf2f7;
    padding: 20px 25px;
    background: #f8fafc;
    font-family: 'SolaimanLipi', sans-serif;
}

.vip-modal__btn-cancel {
    border-radius: 10px;
    font-weight: 600;
}

.vip-modal__btn-submit {
    background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%);
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

/* Payment method modal */
.pay-modal__content {
    border: none;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(226, 19, 110, 0.18);
}

.pay-modal__header {
    background: linear-gradient(135deg, #fa2e83 0%, #f76b5c 100%);
    border: none;
    padding: 22px 24px;
    color: #fff;
    align-items: flex-start;
}

.pay-modal__title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pay-modal__subtitle {
    font-size: 14px;
    opacity: 0.92;
}

.pay-modal__dot {
    margin: 0 6px;
}

.pay-modal__body {
    padding: 22px 24px 10px;
    background: #fff;
}

.pay-modal__footer {
    border-top: 1px solid #edf2f7;
    padding: 16px 24px 22px;
    background: #f8fafc;
    gap: 10px;
}

.pay-modal__btn-cancel {
    border-radius: 12px;
    font-weight: 600;
    padding: 12px 20px;
}

.pay-modal__btn-pay {
    border: none;
    border-radius: 12px;
    padding: 12px 22px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #fa2e83 0%, #f76b5c 100%);
    box-shadow: 0 4px 15px rgba(226, 19, 110, 0.28);
}

.pay-modal__btn-pay:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(226, 19, 110, 0.34);
}

.pay-modal__guest-alert {
    text-align: center;
    padding: 28px 16px;
    background: #fff5f7;
    border: 1px dashed #fed7e2;
    border-radius: 16px;
}

.pay-modal__guest-alert i {
    font-size: 36px;
    color: #c8134e;
    margin-bottom: 10px;
}

.pay-option {
    width: 100%;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    background: #fff;
    padding: 16px;
    margin-bottom: 14px;
    text-align: left;
    position: relative;
    transition: all 0.25s ease;
    cursor: pointer;
}

.pay-option:last-child {
    margin-bottom: 0;
}

.pay-option:hover,
.pay-option.active {
    border-color: #c8134e;
    box-shadow: 0 8px 24px rgba(226, 19, 110, 0.12);
}

.pay-option--bkash.active {
    background: linear-gradient(135deg, #fff5f8 0%, #fff 100%);
}

.pay-option--others.active {
    background: linear-gradient(135deg, #fdf0f4 0%, #fff 100%);
}

.pay-option__main {
    display: flex;
    align-items: center;
    gap: 14px;
}

.pay-option__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
}

.pay-option__icon--bkash {
    background: #fff0f5;
    overflow: hidden;
}

.pay-option__logo {
    width: 38px;
    height: auto;
}

.pay-option__fallback {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #c8134e;
    font-size: 18px;
}

.pay-option__icon--cards {
    background: linear-gradient(135deg, #fa2e83 0%, #f76b5c 100%);
    color: #fff;
}

.pay-option__text strong {
    display: block;
    font-size: 17px;
    color: #1a202c;
    margin-bottom: 2px;
}

.pay-option__text span {
    display: block;
    font-size: 13px;
    color: #718096;
}

.pay-option__tick {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 22px;
    color: #c8134e;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.pay-option.active .pay-option__tick {
    opacity: 1;
}

.pay-brands {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    padding-left: 66px;
}

.pay-brand {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
}

.pay-brand--nagad {
    background: #fff4e8;
    color: #e65100;
    border-color: #ffcc80;
}

.pay-brand--visa {
    background: #e8f1fb;
    color: #1a4f9c;
    border-color: #90caf9;
}

.pay-brand--master {
    background: #fff0f0;
    color: #c62828;
    border-color: #ef9a9a;
}

.pay-brand--amex {
    background: #e8f4fd;
    color: #0277bd;
    border-color: #81d4fa;
}

.pay-brand--rocket {
    background: #f3e8ff;
    color: #6a1b9a;
    border-color: #ce93d8;
}

@media (max-width: 575px) {
    .pay-brands {
        padding-left: 0;
    }

    .pay-modal__header,
    .pay-modal__body,
    .pay-modal__footer {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* ───────── Homepage Featured (paid) card ───────── */
.featured-promo {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.featured-promo__card {
    position: relative;
    background: #fff;
    border: 1px solid #fbd5e5;
    border-radius: 22px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 18px 44px rgba(226, 19, 110, 0.10);
    overflow: hidden;
}
.featured-promo__card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 5px;
    background: linear-gradient(135deg, #2a123d 0%, #4a2356 50%, #c8134e 100%);
}
.featured-promo__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff0f6;
    color: #c8134e;
    font-weight: 800;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
}
.featured-promo__badge i { font-size: 15px; }
.featured-promo__title {
    color: #1a1a2e;
    font-size: clamp(20px, 3.2vw, 26px);
    font-weight: 800;
    margin: 0 0 8px;
    text-wrap: balance;
}
.featured-promo__desc {
    color: #475569;
    font-size: 15px;
    line-height: 1.65;
    max-width: 560px;
    margin: 0 auto 20px;
}
.featured-promo__live {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf5;
    color: #067647;
    border: 1px solid #abefc6;
    border-radius: 12px;
    padding: 10px 16px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 16px;
}
.featured-promo__plans {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    max-width: 460px;
    margin: 0 auto;
}
.featured-promo__plans .package-purchase-form { margin: 0; }
.featured-promo__plan {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 12px;
    border-radius: 16px;
    border: 2px solid #fbd5e5;
    background: #fff;
    color: #c8134e;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.featured-promo__plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(226, 19, 110, 0.22);
    background: #fff5f9;
}
.featured-promo__plan:active { transform: translateY(0); }
.featured-promo__plan:focus-visible { outline: 2px solid #c8134e; outline-offset: 2px; }
.featured-promo__plan-days { font-size: 15px; font-weight: 700; }
.featured-promo__plan-price { font-size: 24px; font-weight: 900; line-height: 1.1; }
.featured-promo__plan--accent {
    border-color: transparent;
    color: #fff;
    background: linear-gradient(135deg, #fa2e83 0%, #f76b5c 100%);
}
.featured-promo__plan--accent:hover {
    background: linear-gradient(135deg, #d11a59 0%, #fa2e83 100%);
}
.featured-promo__login {
    text-decoration: none;
    flex-direction: row;
    gap: 8px;
    max-width: 320px;
    margin: 0 auto;
    font-size: 16px;
    font-weight: 800;
}
.featured-promo__note {
    color: #64748b;
    font-size: 13.5px;
    margin: 16px 0 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.featured-promo__locked {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff8ed;
    color: #b45309;
    border: 1px solid #fde68a;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 14px;
}
@media (max-width: 575.98px) {
    .featured-promo__card { padding: 24px 16px; border-radius: 18px; }
    .featured-promo__plan-price { font-size: 22px; }
}
@media (prefers-reduced-motion: reduce) {
    .featured-promo__plan { transition: none; }
    .featured-promo__plan:hover { transform: none; }
}
