*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background-color: #141414;
    color: #e5e5e5;
    font-family: 'Inter', 'Noto Sans', 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
}

:root {
    --accent: #e50914;
    --accent-strong: #ff1a26;
    --surface: #1a1a1a;
    --surface-strong: #222;
    --text-muted: #b3b3b3;
}


/* ==============================
   PACKAGE CTA (HOME HERO)
   - Must NEVER overlay/cover hero poster
   - Stay in normal document flow inside .hero-content
   ============================== */
.hero .package-cta {
    margin: 14px 0 16px;
    max-width: 640px;
    width: 100%;
}

.hero .package-banner {
    max-width: 640px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(229,9,20,.22) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.35) 100%);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 14px 34px rgba(0,0,0,.42);
    backdrop-filter: blur(10px);
}

.hero .package-banner__content {
    min-width: 0;
}

.hero .package-banner__title {
    font-weight: 900;
    font-size: 16px;
    letter-spacing: .2px;
    color: #fff;
    margin-bottom: 4px;
}

.hero .package-banner__desc {
    color: rgba(255,255,255,.82);
    font-size: 13px;
    line-height: 1.35;
}

.hero .package-banner__actions {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.hero .package-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-weight: 800;
    font-size: 14px;
    background: linear-gradient(90deg, #e50914 0%, #ff3d2e 100%);
    box-shadow: 0 10px 22px rgba(229,9,20,.28);
    border: 1px solid rgba(255,255,255,.10);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    white-space: nowrap;
}

.hero .package-banner__btn {
    margin-left: auto;
}

.hero .package-banner__btn:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 16px 30px rgba(229,9,20,.34);
    filter: brightness(1.05);
}

.hero .package-banner__btn--active {
    background: linear-gradient(90deg, #1f1f1f 0%, #111 100%);
    box-shadow: 0 10px 22px rgba(0,0,0,.35);
    border-color: rgba(255,255,255,.18);
}

.hero .package-banner__btn--active i { color: #f5c542; }

@media (max-width: 768px) {
    .hero .package-banner {
        max-width: 100%;
        padding: 12px 12px;
    }
    .hero .package-banner__title { font-size: 15px; }
    .hero .package-banner__desc { font-size: 12px; }
    .hero .package-banner__btn {
        padding: 9px 12px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero .package-cta { margin: 12px 0 14px; }
    .hero .package-banner__desc { display: none; }
}

/* ------------------------------
   NAVBAR
   ------------------------------ */
.plans-navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 0 5%;
    height: 68px;
    background: linear-gradient(to bottom, #000 0%, rgba(0,0,0,.85) 100%);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.plans-logo {
    font-size: 26px;
    font-weight: 900;
    color: #e50914;
    text-decoration: none;
    letter-spacing: -1px;
    flex-shrink: 0;
}

.plans-nav-links {
    display: flex;
    list-style: none;
    gap: 24px;
}

.plans-nav-links a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 14px;
    transition: color .2s;
}

.plans-nav-links a:hover,
.plans-nav-links a.active {
    color: #fff;
}

.plans-nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.plans-guest-actions { display: flex; gap: 12px; }

.btn-nav-login {
    padding: 6px 20px;
    background: #e50914;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s;
}

.btn-nav-login:hover { background: #c40812; }

/* ------------------------------
   HERO (LIST PAGE)
   ------------------------------ */
.plans-hero {
    padding: 72px 5% 56px;
    text-align: center;
    background: radial-gradient(ellipse at 50% 0%, rgba(229,9,20,.15) 0%, transparent 70%);
}

.plans-hero h1 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}

.plans-hero p {
    font-size: 18px;
    color: #b3b3b3;
    margin-bottom: 24px;
}

.plans-hero-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
}

.plans-hero-badges span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #e5e5e5;
    background: rgba(255,255,255,.08);
    padding: 6px 16px;
    border-radius: 20px;
}

.plans-hero-badges span i { color: #46d369; }

/* ------------------------------
   LAYOUT / CONTAINER
   ------------------------------ */
.plans-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 80px;
}

/* ------------------------------
   EMPTY STATE
   ------------------------------ */
.plans-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    gap: 16px;
    color: #737373;
}

.plans-empty-icon {
    font-size: 64px;
    color: #404040;
}

.plans-empty p {
    font-size: 22px;
    color: #b3b3b3;
}

.plans-empty span { font-size: 15px; }

/* ------------------------------
   PLAN CARDS GRID
   ------------------------------ */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.plan-card {
    position: relative;
    background: #1f1f1f;
    border: 1px solid #333;
    border-radius: 18px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}

.plan-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 18px 46px rgba(0,0,0,.55);
    border-color: rgba(229, 9, 20, .5);
}

.plan-card--featured {
    border-color: rgba(229, 9, 20, .75);
    background: linear-gradient(145deg, #1f1f1f 0%, #2a1015 100%);
    transform: scale(1.03);
    box-shadow: 0 10px 34px rgba(229,9,20,.25);
}

.plan-card--featured:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 20px 50px rgba(229,9,20,.35);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #e50914;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.plan-card--selected {
    border-color: rgba(229, 9, 20, .75);
    box-shadow: 0 16px 40px rgba(229, 9, 20, .25);
}

.plan-badge--selected {
    background: #f5c542;
    color: #1a1a1a;
}

.plan-card__header { text-align: center; }

.plan-card__name {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.plan-card__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.plan-card__price-amount {
    font-size: 32px;
    font-weight: 900;
    color: #e50914;
}

.plan-card__price-period {
    font-size: 14px;
    color: #737373;
}

.plan-card__features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.plan-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #b3b3b3;
}

.plan-card__features li i {
    color: #e50914;
    width: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.plan-card__features li strong { color: #fff; }

.plan-card__btn {
    display: block;
    text-align: center;
    padding: 12px 14px;
    background: linear-gradient(90deg, #e50914 0%, #ff3d2e 100%);
    border: none;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    transition: transform .2s, box-shadow .2s, filter .2s;
    box-shadow: 0 10px 22px rgba(229,9,20,.25);
}

.plan-card__btn--current {
    background: #1f1f1f;
    color: #46d369;
    border: 1px solid rgba(70, 211, 105, .4);
    cursor: default;
    pointer-events: none;
    box-shadow: none;
}

.plan-card__btn:hover,
.plan-card--featured .plan-card__btn {
    transform: translateY(-2px) scale(1.01);
    filter: brightness(1.05);
}

.plan-card--featured .plan-card__btn:hover {
    filter: brightness(1.1);
}

.plans-grid-skeleton {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 64px;
}

.plan-card--skeleton {
    height: 340px;
    background: linear-gradient(110deg, #1b1b1b 8%, #2a2a2a 18%, #1b1b1b 33%);
    border-radius: 18px;
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.4s ease infinite;
    border: 1px solid #262626;
}

@keyframes skeleton-shimmer {
    to { background-position-x: -200%; }
}

/* ------------------------------
   COMPARE TABLE
   ------------------------------ */
.plans-compare-section { margin-top: 16px; }

.plans-compare-section h2 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.plans-compare-table-wrapper {
    overflow-x: auto;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

.plans-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
}

.plans-compare-table th,
.plans-compare-table td {
    padding: 14px 20px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid #2a2a2a;
}

.plans-compare-table th {
    background: #1a1a1a;
    color: #fff;
    font-weight: 700;
}

.plans-compare-table td:first-child {
    text-align: left;
    color: #b3b3b3;
}

.plans-compare-table td { color: #e5e5e5; }

.plans-compare-table tr:last-child td { border-bottom: none; }

.plans-compare-table tr:nth-child(even) td { background: rgba(255,255,255,.02); }

.compare-check { color: #46d369; font-size: 16px; }

/* ------------------------------
   FOOTER
   ------------------------------ */
.plans-footer {
    text-align: center;
    padding: 20px 5%;
    border-top: 1px solid #222;
    color: #555;
    font-size: 13px;
}

/* ============================================================
   DETAIL PAGE
   ============================================================ */
.plans-breadcrumb {
    padding: 20px 5%;
    border-bottom: 1px solid #222;
}

.plans-breadcrumb a {
    color: #b3b3b3;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
}

.plans-breadcrumb a:hover { color: #fff; }

.plans-error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 80px 20px;
    gap: 16px;
}

.plans-error-icon { font-size: 56px; color: #e50914; }

.plans-error-container h2 { font-size: 22px; color: #b3b3b3; }

.btn-back-plans {
    margin-top: 8px;
    padding: 10px 28px;
    background: #e50914;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: background .2s;
}

.btn-back-plans:hover { background: #c40812; }

.plan-detail-container {
    max-width: 1100px;
    margin: 48px auto;
    padding: 0 5% 80px;
}

.plan-checkout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 28px;
}

.plan-checkout__left,
.plan-checkout__right {
    min-width: 0;
}

.plan-detail-card {
    background: linear-gradient(145deg, #1f1f1f 0%, #2a1015 100%);
    border: 1px solid rgba(229,9,20,.6);
    border-radius: 20px;
    padding: 44px 38px;
    box-shadow: 0 18px 52px rgba(229,9,20,.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 26px;
}

.plan-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229,9,20,.15);
    border: 1px solid rgba(229,9,20,.4);
    color: #e50914;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.plan-detail-name {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
}

.plan-detail-price-block {
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.plan-detail-price {
    font-size: 52px;
    font-weight: 900;
    color: #e50914;
}

.plan-detail-period {
    font-size: 18px;
    color: #737373;
}

.plan-detail-desc {
    font-size: 16px;
    color: #b3b3b3;
    line-height: 1.6;
    max-width: 480px;
}

.plan-detail-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
}

.plan-spec-item {
    background: rgba(255,255,255,.05);
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.plan-spec-icon { font-size: 22px; color: #e50914; }

.plan-spec-label { font-size: 12px; color: #737373; text-transform: uppercase; letter-spacing: .5px; }

.plan-spec-value { font-size: 18px; font-weight: 700; color: #fff; }

.plan-detail-benefits {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.plan-detail-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #b3b3b3;
}

.plan-detail-benefits li i { color: #46d369; font-size: 16px; flex-shrink: 0; }

.plan-detail-active-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(70, 211, 105, .1);
    border: 1px solid rgba(70, 211, 105, .3);
    border-radius: 8px;
    color: #46d369;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    justify-content: center;
}

.checkout-panel {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 18px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 16px 44px rgba(0,0,0,.45);
}

.checkout-title {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
}

.checkout-summary {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 14px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkout-summary__name {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
}

.checkout-summary__price {
    font-size: 26px;
    font-weight: 900;
    color: #e50914;
}

.checkout-summary__meta {
    font-size: 13px;
    color: #b3b3b3;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-method {
    display: block;
    cursor: pointer;
}

.payment-method input {
    display: none;
}

.payment-method__content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid #2a2a2a;
    background: #141414;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.payment-method__icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(229,9,20,.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e50914;
    font-size: 18px;
}

.payment-method__title {
    font-weight: 700;
    color: #fff;
    display: block;
}

.payment-method__desc {
    font-size: 12px;
    color: #9ca3af;
}

.payment-method input:checked + .payment-method__content {
    border-color: rgba(229,9,20,.7);
    box-shadow: 0 10px 24px rgba(229,9,20,.25);
    transform: translateY(-1px);
}

.checkout-status {
    display: none;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 14px;
}

.checkout-status.is-visible { display: flex; gap: 8px; align-items: flex-start; }

.checkout-status--success {
    background: rgba(70, 211, 105, .12);
    border: 1px solid rgba(70, 211, 105, .4);
    color: #46d369;
}

.checkout-status--error {
    background: rgba(229, 9, 20, .12);
    border: 1px solid rgba(229, 9, 20, .35);
    color: #e50914;
}

.purchase-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 15px;
    text-align: center;
    width: 100%;
}

.purchase-result i { font-size: 22px; }

.purchase-result--success {
    background: rgba(70, 211, 105, .12);
    border: 1px solid rgba(70, 211, 105, .35);
    color: #46d369;
}

.purchase-result--error {
    background: rgba(229, 9, 20, .12);
    border: 1px solid rgba(229, 9, 20, .35);
    color: #e50914;
}

.btn-purchase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(90deg, #e50914 0%, #ff3d2e 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
    text-decoration: none;
    transition: transform .2s, box-shadow .2s, filter .2s;
    box-shadow: 0 12px 26px rgba(229,9,20,.25);
}

.btn-purchase:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.01);
    filter: brightness(1.05);
}

.btn-purchase:disabled {
    opacity: .6;
    cursor: not-allowed;
    box-shadow: none;
}

.btn-purchase--guest {
    background: #2a2a2a;
    color: #e5e5e5;
    box-shadow: none;
}

.btn-purchase--guest:hover {
    background: #3a3a3a !important;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 999px;
    background: transparent;
    border: 1px solid rgba(255,255,255,.2);
    color: #e5e5e5;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.btn-secondary:hover { border-color: rgba(255,255,255,.4); }

.payment-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 10, .75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(2px);
}

.payment-overlay.is-visible { display: flex; }

.payment-overlay__card {
    background: #1f1f1f;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 26px 32px;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
}

.payment-overlay__card i { color: #e50914; font-size: 22px; }

.toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    min-width: 260px;
    max-width: 320px;
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,.45);
    color: #fff;
    display: none;
    gap: 10px;
    z-index: 9999;
}

.toast.is-visible { display: flex; }

.toast--error { border-color: rgba(229,9,20,.5); }

.toast i { color: #e50914; font-size: 18px; }

.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal.is-visible { display: flex; }

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.75);
}

.modal__content {
    position: relative;
    background: #1b1b1b;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 28px;
    max-width: 420px;
    width: 92%;
    text-align: center;
    box-shadow: 0 18px 50px rgba(0,0,0,.55);
}

.modal__icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(229,9,20,.12);
    margin: 0 auto 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #e50914;
    font-size: 22px;
}

.modal__actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.payment-result {
    max-width: 860px;
    margin: 40px auto;
    padding: 0 5%;
}

.payment-result__card {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,.5);
}

.payment-result__status {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.payment-result__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.payment-result__icon--success { background: rgba(70, 211, 105, .18); color: #46d369; }

.payment-result__icon--fail { background: rgba(229, 9, 20, .18); color: #e50914; }

.payment-result__title { font-size: 24px; font-weight: 800; color: #fff; }

.payment-result__message { color: #b3b3b3; line-height: 1.6; margin-top: 6px; }

.payment-result__grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 10px 18px;
    margin-top: 18px;
}

.payment-result__label { font-weight: 700; color: #e5e5e5; }

.payment-result__actions {
    margin-top: 22px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.plan-detail-guarantee {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding: 20px;
    border-top: 1px solid #222;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #737373;
    font-size: 13px;
}

.guarantee-item i { color: #555; font-size: 16px; }

/* ============================================================
   CTA (BANNER + FLOATING BUTTON)
   ============================================================ */

.pkg-float-wrapper {
    position: fixed;
    bottom: 32px;
    right: 28px;
    z-index: 999;
}

.pkg-float-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(0,0,0,.45);
    transition: transform .2s, box-shadow .2s, background .2s;
    position: relative;
    --tooltip-opacity: 0;
}

.pkg-float-btn:hover {
    transform: scale(1.07) translateY(-2px);
    box-shadow: 0 10px 32px rgba(0,0,0,.55);
    --tooltip-opacity: 1;
}

.pkg-float-btn::before {
    content: attr(data-tooltip);
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: rgba(20,20,20,.92);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: var(--tooltip-opacity);
    pointer-events: none;
    transition: opacity .2s;
    border: 1px solid rgba(255,255,255,.1);
}

.pkg-float-btn--cta {
    background: linear-gradient(135deg, #e50914 0%, #b20710 100%);
    color: #fff;
    animation: pkg-pulse 2.4s ease-in-out infinite;
}

.pkg-float-btn--cta:hover {
    background: linear-gradient(135deg, #ff1a26 0%, #c40812 100%);
    animation: none;
}

@keyframes pkg-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(229,9,20,.45); }
    50%       { box-shadow: 0 6px 32px rgba(229,9,20,.8), 0 0 0 8px rgba(229,9,20,.12); }
}

.pkg-float-btn--active {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffd700;
    border: 1px solid rgba(255,215,0,.35);
}

.pkg-float-btn--active:hover {
    background: linear-gradient(135deg, #222244 0%, #1e2d52 100%);
    border-color: rgba(255,215,0,.6);
}

.pkg-float-btn--active .pkg-float-icon { color: #ffd700; }

.pkg-float-icon {
    font-size: 18px;
    line-height: 1;
    flex-shrink: 0;
}

@media (max-width: 600px) {
    .pkg-float-btn {
        padding: 14px;
        border-radius: 50%;
        gap: 0;
    }
    .pkg-float-label { display: none; }
    .pkg-float-wrapper { bottom: 24px; right: 20px; }
}

.package-banner {
    margin: 18px 0 22px;
    padding: 14px 18px;
    border-radius: 14px;
    background: linear-gradient(120deg, rgba(229,9,20,.22), rgba(20,20,20,.8));
    border: 1px solid rgba(255,255,255,.08);
    box-shadow: 0 10px 28px rgba(0,0,0,.45);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.package-banner__title {
    font-weight: 800;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.package-banner__desc {
    color: #e5e5e5;
    font-size: 14px;
    margin-top: 4px;
}

.package-banner__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(135deg, #e50914 0%, #b20710 100%);
    box-shadow: 0 8px 22px rgba(229,9,20,.35);
    transition: transform .2s, box-shadow .2s, background .2s;
}

.package-banner__btn:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 12px 30px rgba(229,9,20,.5);
    background: linear-gradient(135deg, #ff1a26 0%, #c40812 100%);
}

.package-banner__btn--active {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffd700;
    border: 1px solid rgba(255,215,0,.35);
    box-shadow: 0 8px 22px rgba(0,0,0,.5);
}

@media (max-width: 820px) {
    .package-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .package-banner {
        padding: 12px 14px;
    }
    .package-banner__title {
        font-size: 16px;
    }
    .package-banner__btn {
        padding: 9px 14px;
        font-size: 14px;
    }
}

@media (max-width: 900px) {
    .plan-checkout { grid-template-columns: 1fr; }
    .plan-detail-container { max-width: 760px; }
}

@media (max-width: 640px) {
    .plans-nav-links { display: none; }
    .plans-grid { grid-template-columns: 1fr; }
    .plan-card--featured { transform: none; }
    .plan-detail-card { padding: 32px 20px; }
    .plan-detail-specs { grid-template-columns: 1fr 1fr; }
    .plan-detail-price { font-size: 40px; }
    .payment-result__grid { grid-template-columns: 1fr; }
}

