/* ===== CSS variables ===== */
:root {
    --bg0: #050505;
    --bg1: #0b0b0c;
    --card: rgba(255,255,255,.04);
    --card2: rgba(255,255,255,.06);
    --text: rgba(255,255,255,.95);
    --muted: rgba(255,255,255,.70);
    --gold: #d4af37;
    --gold2: #f5dd8a;
    --stroke: rgba(212,175,55,.22);
    --stroke2: rgba(255,255,255,.10);
    --shadow: 0 22px 60px rgba(0,0,0,.55);
    --radius-xl: 26px;
    --radius-lg: 20px;
}

html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: radial-gradient(900px 520px at 15% -10%, rgba(212,175,55,.14), transparent 55%),
                radial-gradient(900px 520px at 85% 0%, rgba(212,175,55,.08), transparent 55%),
                linear-gradient(180deg, var(--bg0), var(--bg1));
    color: var(--text);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
* { color-scheme: dark; }
a { color: rgba(255,255,255,.92); }
a:hover { color: #fff; }
.text-secondary { color: var(--muted) !important; }
.hr-soft { border-color: rgba(255,255,255,.10); }
section[id] { scroll-margin-top: 90px; }
.text-gold { color: var(--gold) !important; }
.text-gold-shine {
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% auto;
    animation: shine 3s linear infinite;
    font-weight: 800;
    display: inline-block;
}
@keyframes shine { to { background-position: 200% center; } }

/* Skip link */
.skip-link {
    position: absolute; left: -999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
    left: 1rem; top: 1rem; width: auto; height: auto; padding: .6rem .8rem;
    border-radius: .8rem; background: #fff; color: #000; z-index: 9999;
}

/* Navbar */
.nav-glass {
    background: rgba(5,5,5,.72);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212,175,55,.12);
}
.navbar .nav-link { color: rgba(255,255,255,.82); }
.navbar .nav-link:hover { color: #fff; }
.navbar .nav-link.active {
    color: #fff;
    position: relative;
}
.navbar .nav-link.active::after {
    content: "";
    position: absolute;
    left: .25rem; right: .25rem; bottom: .25rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 999px;
}
.offcanvas { background: rgba(5,5,5,.96) !important; }

/* Sections */
.section { padding: 88px 0; }
.section-title { letter-spacing: -0.02em; }
.title-underline {
    width: 90px; height: 3px; margin: 10px auto 0;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 999px; opacity: .9;
}
.glass {
    background: var(--card);
    border: 1px solid var(--stroke2);
    border-radius: var(--radius-lg);
}
.glass-2 {
    background: var(--card2);
    border: 1px solid var(--stroke);
    border-radius: var(--radius-lg);
}

/* Hero */
.hero { padding: 96px 0 56px; }
.hero-card {
    background: radial-gradient(700px 320px at 20% 0%, rgba(212,175,55,.16), transparent 55%),
                linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
    border: 1px solid rgba(212,175,55,.18);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0,0,0,.45);
}
.hero-chip {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .45rem .75rem; border-radius: 999px;
    background: rgba(212,175,55,.12);
    border: 1px solid rgba(212,175,55,.24);
    color: #fff; font-weight: 900;
}
.hero-media {
    position: relative; border-radius: 24px; overflow: hidden;
    border: 1px solid rgba(212,175,55,.25);
    background: rgba(0,0,0,.35);
    box-shadow: var(--shadow);
}
.hero-media::before {
    content: "";
    position: absolute; inset: -2px;
    background: linear-gradient(135deg, rgba(212,175,55,.45), transparent 45%, rgba(212,175,55,.18));
    opacity: .45;
    pointer-events: none;
}
.hero-media img { width: 100%; height: auto; display: block; transform: scale(1.03); filter: contrast(1.05) saturate(1.05); }

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    border: 0;
    color: #0b0b0c !important;
    font-weight: 900;
}
.btn-primary:hover { filter: brightness(1.04); color: #0b0b0c !important; }
.btn-outline-light {
    border-color: rgba(212,175,55,.42) !important;
    color: #fff !important;
}
.btn-outline-light:hover {
    background: rgba(212,175,55,.14) !important;
    border-color: rgba(212,175,55,.65) !important;
}

/* Pricing cards */
.pricing-card { position: relative; }
.pricing-offer { border-color: rgba(212,175,55,.30) !important; box-shadow: 0 18px 60px rgba(0,0,0,.35); }
.badge-soft {
    background: rgba(212,175,55,.14);
    border: 1px solid rgba(212,175,55,.24);
    color: #fff;
}

/* Accordion */
.accordion-button { color: #fff !important; box-shadow: none !important; }
.accordion-button::after { filter: invert(1); opacity: .85; }
.accordion-button:not(.collapsed) { background: rgba(212,175,55,.08) !important; color: #fff !important; }
.accordion-item { border-color: rgba(255,255,255,.08) !important; }

/* Forms */
.form-control, .form-select {
    color: #fff !important;
    background: rgba(0,0,0,.18) !important;
    border-color: rgba(255,255,255,.18) !important;
}
.form-control::placeholder { color: rgba(255,255,255,.55); }
.form-control:focus, .form-select:focus {
    border-color: rgba(212,175,55,.55) !important;
    box-shadow: 0 0 0 .18rem rgba(212,175,55,.12) !important;
}

/* Reviews marquee */
.reviews-marquee {
    overflow: hidden; position: relative; padding: 16px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.reviews-track {
    display: flex !important; flex-wrap: nowrap !important; gap: 14px;
    width: max-content; will-change: transform;
    animation: reviews-scroll 38s linear infinite;
}
.reviews-marquee:hover .reviews-track { animation-play-state: paused; }
.review-card {
    flex: 0 0 auto; width: 340px; min-width: 340px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 18px; padding: 16px;
}
@keyframes reviews-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Downloads */
.download-card { overflow: hidden; }
.download-img {
    border-radius: 18px; overflow: hidden;
    border: 1px solid rgba(212,175,55,.18);
    background: rgba(0,0,0,.25);
}
.download-img img {
    width: 100%; height: 170px; object-fit: cover; display: block;
    filter: contrast(1.05) saturate(1.05);
}
/* Additional download styles from inline CSS */
#downloads .app-card .thumb {
    width: 100%; height: 180px; object-fit: cover; display: block;
    border-bottom: 1px solid rgba(15,23,42,0.9);
}
#downloads .btn-download {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 45%, #f97316 100%);
    color: #050505; font-weight: 700; border: none; letter-spacing: 0.06em;
    box-shadow: 0 15px 35px rgba(245,158,11,0.55);
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
#downloads .btn-download:hover {
    color: #020617; transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(245,158,11,0.75); filter: brightness(1.05);
}
#downloads .btn-download:active {
    transform: translateY(0); box-shadow: 0 8px 20px rgba(245,158,11,0.55);
}
#downloads .meta-mini { font-size: 0.8rem; color: #9ca3af; }
#downloads .download-meta {
    margin-top: 0.85rem; padding-top: 0.75rem;
    border-top: 1px solid rgba(148,163,184,0.35);
    display: flex; flex-direction: column; gap: 0.4rem;
}
#downloads .download-meta-item {
    display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
}
#downloads .download-label {
    text-transform: uppercase; letter-spacing: 0.08em;
    font-size: 0.7rem; color: #9ca3af;
}
#downloads .download-value { color: #e5e7eb; font-size: 0.8rem; }
#downloads .code-pill {
    padding: 0.25rem 0.7rem; border-radius: 999px;
    background: radial-gradient(circle at top left, rgba(15,23,42,0.9), rgba(15,23,42,0.85));
    border: 1px solid rgba(248,250,252,0.16);
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.78rem; color: #f9fafb;
}
#downloads .copy-btn {
    border: 1px solid rgba(148,163,184,0.6); background: transparent; color: #e5e7eb;
    border-radius: 999px; padding: 0.25rem 0.9rem; font-size: 0.75rem;
    display: inline-flex; align-items: center; gap: 0.3rem;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
#downloads .download-meta-item .copy-btn { margin-left: auto; }
#downloads .copy-btn:hover {
    background: rgba(148,163,184,0.2); color: #f9fafb;
    border-color: rgba(248,250,252,0.75); transform: translateY(-1px);
}

/* Reseller table */
.table-credits { border-color: rgba(255,255,255,.10) !important; }
.table-credits th, .table-credits td {
    color: rgba(255,255,255,.92) !important;
    border-color: rgba(255,255,255,.08) !important;
}
.table-credits thead th { color: rgba(255,255,255,.75) !important; }

/* Footer & WhatsApp FAB */
.footer { background: rgba(0,0,0,.18); border-top: 1px solid rgba(212,175,55,.12); }
.wa-fab {
    position: fixed; right: 18px; bottom: 18px;
    width: 58px; height: 58px; border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; color: #fff !important;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 14px 36px rgba(0,0,0,.45);
    z-index: 9999;
}
.wa-fab i { font-size: 1.45rem; }
.wa-fab::after {
    content: "";
    position: absolute; inset: -8px;
    border-radius: 26px;
    border: 1px solid rgba(34,197,94,.35);
    animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
    0% { transform: scale(.92); opacity: .0; }
    20% { opacity: .6; }
    100% { transform: scale(1.14); opacity: 0; }
}

/* Reveal animations */
.reveal { opacity: 1; transform: none; }
html.reveal-on .reveal {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity .6s ease, transform .6s ease;
}
html.reveal-on .reveal.is-visible { opacity: 1; transform: none; }

/* Modals */
.modal-dark {
    background: rgba(5,5,5,.96);
    color: rgba(255,255,255,.95);
    border: 1px solid rgba(212,175,55,.18);
    border-radius: 20px;
}
.modal-dark .modal-header { background: rgba(255,255,255,.02); }
.wizard-stepper { position: relative; }
.wizard-progress {
    height: 6px; background: rgba(255,255,255,.08);
    border-radius: 999px; overflow: hidden;
}
.wizard-progress span {
    display: block; height: 100%; width: 0%;
    background: linear-gradient(90deg, rgba(212,175,55,.35), rgba(212,175,55,.95));
}
.wizard-dots {
    display: flex; justify-content: space-between; margin-top: 10px;
}
.wizard-dots .dot {
    width: 10px; height: 10px; border-radius: 50%;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(212,175,55,.18);
}
.wizard-dots .dot.active {
    background: rgba(212,175,55,.95);
    box-shadow: 0 0 0 6px rgba(212,175,55,.12);
}
.wizard-list .wizard-item {
    background: transparent; border-color: rgba(255,255,255,.08);
    color: #fff; padding: 14px 12px;
}
.wizard-list .wizard-item:hover { background: rgba(212,175,55,.06); }
.wizard-radio { width: 18px; height: 18px; }
.wizard-choice.active {
    border-color: rgba(212,175,55,.75) !important;
    background: rgba(212,175,55,.14) !important;
}
.modal-pro {
    position: relative; overflow: hidden;
}
.modal-pro::before {
    content: "";
    position: absolute; inset: 0;
    background: radial-gradient(900px 520px at 12% 0%, rgba(212,175,55,.18), transparent 55%),
                radial-gradient(900px 520px at 88% 0%, rgba(212,175,55,.12), transparent 55%),
                linear-gradient(180deg, rgba(0,0,0,.75), rgba(0,0,0,.92));
    background-size: cover; background-position: center;
    filter: saturate(1.05) contrast(1.05); transform: scale(1.02); z-index: 0;
}
.modal-pro::after {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.85)); z-index: 0;
}
.modal-pro > * { position: relative; z-index: 1; }
.modal-pro .modal-header { background: rgba(255,255,255,.02); border-bottom: 1px solid rgba(255,255,255,.08) !important; }

/* Media banners (custom) */
#media-banners .media-marquee { overflow-x: auto; padding-bottom: 0.25rem; }
#media-banners .media-track { display: flex; gap: 1rem; }
#media-banners .media-item {
    min-width: 220px; max-width: 260px; border-radius: 999px; padding: 0.6rem 1rem;
    background: radial-gradient(circle at top left, rgba(245,158,11,0.16), transparent 55%),
                radial-gradient(circle at bottom right, rgba(15,23,42,0.9), transparent 65%),
                rgba(15,23,42,0.98);
    border: 1px solid rgba(148,163,184,0.45);
    box-shadow: 0 10px 26px rgba(0,0,0,0.6);
    display: flex; flex-direction: column; justify-content: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
#media-banners .media-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.85);
    border-color: var(--gold);
}
#media-banners .media-item-body { display: flex; flex-direction: column; gap: 0.15rem; }
#media-banners .media-item-title {
    font-size: 0.82rem; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
#media-banners .media-item-meta { font-size: 0.72rem; color: #9ca3af; }

/* Mobile menu */
@media (max-width: 991.98px) {
    #mobileMenu .offcanvas-header { border-bottom: 1px solid rgba(148,163,184,0.35); }
    #mobileMenu .offcanvas-title {
        font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
        font-size: 0.78rem; color: #9ca3af;
    }
    .mobile-menu-brand { display: flex; align-items: center; gap: 0.6rem; }
    .mobile-menu-chip {
        font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em;
        color: #9ca3af;
    }
    .mobile-menu-heading { font-size: 1.05rem; font-weight: 600; }
    .mobile-menu-sub { font-size: 0.78rem; color: #9ca3af; }
    .mobile-menu-nav { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
    .mobile-menu-link {
        display: flex; align-items: center; justify-content: space-between;
        padding: 0.7rem 0.85rem; border-radius: 0.9rem;
        border: 1px solid rgba(148,163,184,0.4);
        background: radial-gradient(circle at top left, rgba(148,163,184,0.16), transparent 55%),
                    radial-gradient(circle at bottom right, rgba(15,23,42,0.85), transparent 65%),
                    rgba(15,23,42,0.96);
        color: #e5e7eb; text-decoration: none; font-size: 0.86rem;
        transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    }
    .mobile-menu-link span { display: flex; align-items: center; gap: 0.5rem; }
    .mobile-menu-link small { font-size: 0.7rem; color: #9ca3af; }
    .mobile-menu-link i { font-size: 1rem; color: #fbbf24; }
    .mobile-menu-link:hover {
        border-color: var(--gold); transform: translateY(-1px);
        box-shadow: 0 14px 32px rgba(0,0,0,0.9);
    }
    .mobile-menu-cta {
        margin-top: 1.25rem; padding: 0.85rem 0.9rem; border-radius: 1rem;
        border: 1px solid rgba(248,250,252,0.12);
        background: radial-gradient(circle at top left, rgba(245,158,11,0.18), transparent 55%),
                    radial-gradient(circle at bottom right, rgba(15,23,42,0.95), transparent 65%),
                    rgba(15,23,42,0.98);
    }
    .mobile-menu-cta-title { font-size: 0.9rem; font-weight: 600; }
    .mobile-menu-cta-text { font-size: 0.78rem; color: #d1d5db; }
    .mobile-menu-cta-actions { display: flex; gap: 0.5rem; margin-top: 0.8rem; }
    .mobile-menu-cta-actions .btn { font-size: 0.82rem; }
    .mobile-menu-footer { margin-top: 1rem; font-size: 0.68rem; color: #6b7280; }
}

/* Responsive wizard */
@media (max-width: 575.98px) {
    .wizard-actions { flex-direction: column; align-items: stretch; gap: 10px; }
    .wizard-actions > button { width: 100%; }
    .wizard-actions .d-flex { width: 100%; flex-direction: column; }
    .wizard-actions .d-flex .btn { width: 100%; }
    .wizard-stepper {
        position: sticky; top: 0; z-index: 3;
        background: rgba(5,5,5,.92); padding: 10px 0;
        backdrop-filter: blur(10px);
    }
    .modal-body { padding-bottom: 20px; }
}

#topNav {
    padding: 8px 0;
    min-height: 60px;
}

.navbar-brand {
    padding: 0;
}

.navbar-nav .nav-link {
    padding: 8px 14px;
}

.hero {
    padding: 60px 0 56px !important;
}

section[id] {
    scroll-margin-top: 70px !important;
}

/* =============================================== */
/* === ELITE 8K CHECKOUT – PREMIUM STYLING (ADDED) === */
/* =============================================== */

/* Targets the checkout modal and keeps only name, email, phone visible */

/* Modal background & container */
#subscribeModal .modal-content {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 215, 0, 0.1) inset;
    color: #fff;
    transition: all 0.3s ease;
}

/* Modal header */
#subscribeModal .modal-header {
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
    padding: 1.5rem 1.5rem 1rem;
}

#subscribeModal .modal-header .fw-semibold {
    font-size: 1.5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #fff 0%, #ffd966 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#subscribeModal .modal-header .small {
    color: #aaa !important;
    font-size: 0.9rem;
}

#subscribeModal .btn-close-white {
    filter: brightness(0) invert(1) drop-shadow(0 0 2px gold);
    opacity: 0.8;
    transition: opacity 0.2s, transform 0.2s;
}

#subscribeModal .btn-close-white:hover {
    opacity: 1;
    transform: rotate(90deg);
}

/* Wizard progress bar */
.wizard-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.wizard-progress span {
    display: block;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ffd966, #ffaa00, #ffd966);
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    border-radius: 2px;
    transition: width 0.3s ease;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Wizard dots */
.wizard-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.5rem;
}

.wizard-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s;
    cursor: default;
}

.wizard-dots .dot.active {
    background: #ffd966;
    box-shadow: 0 0 10px #ffaa00;
    transform: scale(1.2);
}

/* Step titles */
.wiz-step h5 {
    font-size: 1.3rem;
    font-weight: 600;
    background: linear-gradient(135deg, #fff, #ffd966);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.wiz-step .badge-soft {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd966;
    font-weight: 500;
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Form fields – only name, email, phone (step 5) */
.wiz-step[data-step="5"] .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.wiz-step[data-step="5"] .col-md-6 {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 240px;
}

.wiz-step[data-step="5"] .form-label {
    color: #ffd966;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
}

.wiz-step[data-step="5"] .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 16px;
    padding: 0.9rem 1.2rem;
    color: #fff;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.wiz-step[data-step="5"] .form-control:focus {
    border-color: #ffd966;
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2), 0 8px 12px rgba(0,0,0,0.2);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.wiz-step[data-step="5"] .form-control::placeholder {
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Review step (step 7) – if kept */
.wiz-step[data-step="7"] .glass {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(8px);
    padding: 1.5rem;
}

.wiz-step[data-step="7"] .text-secondary {
    color: #aaa !important;
}

.wiz-step[data-step="7"] .fw-semibold {
    color: #ffd966;
    font-size: 1.1rem;
}

/* Navigation buttons */
.wizard-actions {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
    padding-top: 1.5rem;
}

#wizNext, #wizSubmit {
    background: linear-gradient(135deg, #ffd966, #ffaa00);
    border: none;
    color: #000;
    font-weight: 600;
    padding: 0.8rem 2rem;
    border-radius: 40px;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 8px 16px rgba(255, 170, 0, 0.3);
    text-transform: uppercase;
    font-size: 0.9rem;
}

#wizNext:hover, #wizSubmit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 170, 0, 0.5);
    background: linear-gradient(135deg, #ffd966, #ffaa00);
    filter: brightness(1.1);
}

#wizNext:active, #wizSubmit:active {
    transform: translateY(1px);
    box-shadow: 0 4px 8px rgba(255, 170, 0, 0.4);
}

/* Responsive tweaks */
@media (max-width: 576px) {
    #subscribeModal .modal-content {
        border-radius: 16px;
    }
    .wiz-step[data-step="5"] .col-md-6 {
        flex: 1 1 100%;
    }
    #wizNext, #wizSubmit {
        width: 100%;
    }
}


.package-card,
.device-option{
width:100%;
margin-bottom:12px;
}

.wizard-next{
width:100%;
padding:16px;
font-size:16px;
}

/* Ensure device container is always visible */
#subscribeModal .glass-2 {
    display: block !important;
}