:root {
    --bg-dark: #05050a;
    --primary: #f97316;
    --success: #10b981;
    --danger: #ef4444;
    --text-muted: #94a3b8;
    --border-light: rgba(255,255,255,0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; font-family: 'Outfit', sans-serif; background: var(--bg-dark); color: white; }

/* Display Utilities */
.mobile-only { display: none !important; }
.desktop-only { display: block !important; }

/* NAV */
.navbar { position: fixed; top: 0; left: 0; right: 0; padding: 1rem 1.5rem; z-index: 100; background: rgba(5,5,10,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border-light); display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.4rem; font-weight: 900; letter-spacing: -1px; text-decoration: none; color: white; }
.logo span { color: var(--primary); }
.secure-badge { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 0.4rem; }

/* LAYOUT */
.page { padding-top: 70px; min-height: 100vh; }
.container { max-width: 1080px; margin: 0 auto; padding: 3rem 1.5rem; }
.grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 4rem; align-items: start; }

/* LEFT: OFFER PANEL */
.offer-panel {}
.badge { display: inline-block; background: rgba(249,115,22,0.15); border: 1px solid rgba(249,115,22,0.4); color: #fdba74; border-radius: 50px; padding: 0.35rem 1rem; font-size: 0.75rem; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 1.5rem; }
.price-block { margin-bottom: 1.5rem; }
.price-main { font-size: 3.5rem; font-weight: 900; line-height: 1; color: white; }
.price-was { font-size: 1.6rem; color: rgba(255, 255, 255, 0.45); text-decoration: line-through; text-decoration-color: var(--primary); font-weight: 700; }
.save-badge { background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: #10b981; font-size: 0.72rem; font-weight: 800; padding: 3px 8px; border-radius: 6px; letter-spacing: 0.5px; text-transform: uppercase; display: inline-block; }
.checkout-review { margin-top: 1.5rem; background: rgba(255,255,255,0.02); border: 1px solid var(--border-light); border-radius: 12px; padding: 1rem 1.25rem; }
.review-stars { font-size: 0.85rem; margin-bottom: 0.4rem; }
.review-quote { font-size: 0.85rem; font-style: italic; color: #e2e8f0; line-height: 1.4; margin-bottom: 0.4rem; }
.review-author { font-size: 0.75rem; color: var(--text-muted); font-weight: 700; display: flex; justify-content: space-between; align-items: center; }
.review-author .verified-badge { color: var(--success); font-size: 0.68rem; font-weight: 800; }
.roi-box { background: rgba(59,130,246,0.08); border: 1px solid rgba(59,130,246,0.25); border-radius: 12px; padding: 0.85rem 1.2rem; margin-bottom: 2rem; font-size: 0.875rem; color: #93c5fd; }

.spots-bar-wrap { margin-bottom: 2rem; }
.spots-labels { display: flex; justify-content: space-between; font-size: 0.8rem; font-weight: 700; margin-bottom: 0.6rem; }
.spots-labels .taken { color: var(--text-muted); }
.spots-labels .left { color: var(--primary); background: rgba(249,115,22,0.1); padding: 2px 8px; border-radius: 4px; }
.bar-track { height: 10px; background: rgba(255,255,255,0.06); border-radius: 5px; overflow: hidden; }
.bar-fill { height: 100%; width: 99%; background: linear-gradient(90deg, #f97316, #fb923c); border-radius: 5px; animation: pulseBar 2s infinite; }
@keyframes pulseBar { 0%,100% { box-shadow: 0 0 6px #f97316; } 50% { box-shadow: 0 0 16px #f97316; } }
.spots-warning { margin-top: 0.6rem; font-size: 0.78rem; color: var(--danger); font-weight: 700; display: flex; align-items: center; gap: 0.4rem; }
.dot-red { width: 7px; height: 7px; background: var(--danger); border-radius: 50%; display: inline-block; animation: blink 1.2s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

.includes { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1rem; margin-bottom: 2rem; }
.includes li { font-size: 0.875rem; display: flex; align-items: center; gap: 0.4rem; color: #e2e8f0; }
.includes li span { color: var(--success); font-weight: 700; }

.bonus-box { background: rgba(16,185,129,0.06); border: 1px solid rgba(16,185,129,0.25); border-radius: 12px; padding: 1rem 1.2rem; display: flex; gap: 0.75rem; align-items: flex-start; }
.free-badge { background: var(--success); color: white; font-size: 0.65rem; font-weight: 800; padding: 2px 7px; border-radius: 4px; flex-shrink: 0; margin-top: 2px; }
.bonus-box p { font-size: 0.82rem; color: #d1fae5; margin: 0; }

/* RIGHT: FORM + PAYMENT */
.right-panel { display: flex; flex-direction: column; gap: 1.5rem; }

/* STEP INDICATOR */
.steps-indicator { display: flex; align-items: center; gap: 0; margin-bottom: 0.5rem; }
.step-dot { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; border: 2px solid var(--border-light); color: var(--text-muted); background: rgba(255,255,255,0.03); flex-shrink: 0; transition: all 0.3s; }
.step-dot.active { border-color: var(--primary); background: rgba(249,115,22,0.15); color: var(--primary); }
.step-dot.done { border-color: var(--success); background: rgba(16,185,129,0.15); color: var(--success); }
.step-line { flex: 1; height: 2px; background: var(--border-light); margin: 0 6px; transition: background 0.3s; }
.step-line.done { background: var(--success); }
.step-label { font-size: 0.7rem; color: var(--text-muted); text-align: center; margin-top: 0.3rem; }

/* CARD */
.card { background: rgba(255,255,255,0.03); border: 1px solid var(--border-light); border-radius: 20px; padding: 2rem; transition: border-color 0.3s; }
.card.active-card { border-color: var(--primary); box-shadow: 0 0 30px rgba(249,115,22,0.1); }
.card-title { font-size: 0.7rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.25rem; }

/* FORM */
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.75rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 0.4rem; }
.form-group input, .form-group select { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid var(--border-light); border-radius: 10px; padding: 0.85rem 1rem; color: white; font-family: 'Outfit', sans-serif; font-size: 1rem; outline: none; transition: border-color 0.2s; }
.form-group input::placeholder { color: #475569; }
.form-group input:focus, .form-group select:focus { border-color: var(--primary); background: rgba(249,115,22,0.05); }
.form-group select option { background: #1e293b; }

/* CTA BUTTON */
.btn-reveal { width: 100%; padding: 1rem; background: linear-gradient(135deg, var(--primary), #ea580c); border: none; border-radius: 12px; color: white; font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 800; cursor: pointer; letter-spacing: 0.5px; transition: transform 0.2s, box-shadow 0.2s; position: relative; overflow: hidden; }
.btn-reveal:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(249,115,22,0.35); }
.btn-reveal::after { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent); transform: rotate(45deg); animation: shimmer 2.5s infinite; }
@keyframes shimmer { 0% { transform: translateX(-100%) rotate(45deg); } 100% { transform: translateX(100%) rotate(45deg); } }

/* PAYMENT CARDS (hidden initially) */
.payment-section { display: none; flex-direction: column; gap: 1rem; }
.payment-section.visible { display: flex; animation: fadeUp 0.5s ease-out forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* PAYMENT CARDS & TABS switcher */
.pay-tabs {
    display: flex;
    gap: 0.35rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 5px;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}
.pay-tab {
    flex: 1;
    background: transparent;
    border: 1px solid transparent;
    padding: 0.75rem 0.25rem;
    color: rgba(255, 255, 255, 0.45);
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pay-tab:hover {
    color: white;
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.08);
}
.pay-tab.active[data-tab="jazz"] {
    background: #ef4444 !important;
    border-color: #f87171 !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
}
.pay-tab.active[data-tab="easy"] {
    background: #7c3aed !important;
    border-color: #a78bfa !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
}
.pay-tab.active[data-tab="bank"] {
    background: #ffffff !important;
    border-color: #ffffff !important;
    color: #05050a !important;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.25);
}

.pay-card { display: none; background: rgba(255,255,255,0.03); border: 1px solid var(--border-light); border-radius: 16px; padding: 1.25rem 1.5rem; }
.pay-card.active { display: block; animation: tabFadeIn 0.3s ease-out; }
@keyframes tabFadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.pay-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1rem; }
.pay-method-name { font-size: 0.75rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; }
.pay-method-name.jazz { color: #ef4444; }
.pay-method-name.easy { color: #7c3aed; }
.pay-method-name.bank { color: var(--text-muted); }
.verified-chip { font-size: 0.65rem; font-weight: 800; background: rgba(16,185,129,0.15); color: var(--success); border: 1px solid rgba(16,185,129,0.3); padding: 2px 8px; border-radius: 4px; }

.pay-row { display: flex; justify-content: space-between; align-items: center; }
.pay-number { font-size: 1.3rem; font-weight: 700; letter-spacing: 1px; color: white; }
.copy-btn { font-size: 0.7rem; font-weight: 800; color: var(--primary); cursor: pointer; background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.2); padding: 4px 10px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.5px; transition: background 0.2s; user-select: none; }
.copy-btn:hover { background: rgba(249,115,22,0.2); }
.amount-chip { margin-top: 0.75rem; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); border-radius: 8px; padding: 0.6rem 1rem; display: flex; justify-content: space-between; align-items: center; }
.amount-chip span:first-child { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; }
.amount-chip span:last-child { font-size: 1.25rem; font-weight: 900; color: var(--success); }

/* WHATSAPP CTA */
.wa-cta { width: 100%; padding: 1rem; background: #16a34a; border: none; border-radius: 12px; color: white; font-family: 'Outfit', sans-serif; font-size: 1rem; font-weight: 800; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.6rem; text-decoration: none; transition: transform 0.2s, box-shadow 0.2s; margin-top: 0.5rem; }
.wa-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(22,163,74,0.3); }
.wa-icon { width: 22px; height: 22px; }

.already-paid { margin-top: 1rem; padding: 1rem; background: rgba(255,255,255,0.03); border: 1px dashed rgba(255,255,255,0.12); border-radius: 10px; text-align: center; }
.already-paid p { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 0.4rem; }
.already-paid a { color: var(--success); font-weight: 600; font-size: 0.875rem; text-decoration: none; }

/* TIMER */
.timer-box { background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2); border-radius: 12px; padding: 0.75rem; text-align: center; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; gap: 0.75rem; }
.timer-text { font-size: 0.85rem; font-weight: 700; color: #fca5a5; text-transform: uppercase; letter-spacing: 0.5px; }
.timer-clock { font-size: 1.2rem; font-weight: 900; color: #ef4444; font-variant-numeric: tabular-nums; }

/* SOCIAL PROOF */
.ticker { display: flex; align-items: center; gap: 0.75rem; background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.2); padding: 0.7rem 1rem; border-radius: 10px; }
.ticker-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; flex-shrink: 0; animation: blink 1.5s infinite; }
.ticker p { margin: 0; font-size: 0.8rem; color: #d1fae5; }

/* BOTTOM BAR */
.bottom-trust { display: flex; justify-content: center; gap: 2rem; margin-top: 2rem; flex-wrap: wrap; }
.trust-item { font-size: 0.75rem; color: #475569; display: flex; align-items: center; gap: 0.4rem; font-weight: 600; }

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.mobile-summary { display: none; }

/* RESPONSIVE */
@media (max-width: 900px) {
    .navbar { display: none; }
    .page { padding-top: 0px; }
    .container { padding: 0px 0.25rem; }
    .grid { grid-template-columns: 1fr; gap: 0.35rem; }
    .offer-panel { order: 2; }
    .right-panel { order: 1; gap: 0.25rem; }
    
    /* Hide redundant desktop price blocks on mobile */
    .offer-panel .badge,
    .offer-panel .price-block,
    .offer-panel .roi-box,
    .offer-panel .spots-bar-wrap {
        display: none;
    }

    .mobile-summary {
        display: block;
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border-light);
        border-radius: 6px;
        padding: 0.25rem 0.5rem;
        margin-bottom: 0.2rem;
    }
    .mobile-summary-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0.25rem;
    }
    .mobile-summary-title {
        font-weight: 800;
        font-size: 0.75rem;
        letter-spacing: -0.5px;
        color: var(--text-muted);
    }
    .mobile-summary-pricing {
        display: flex;
        align-items: baseline;
        gap: 10px;
    }
    .price-mobile-val {
        font-size: 1.4rem;
        font-weight: 900;
        color: white;
        line-height: 1.1;
    }
    .mobile-summary-pricing .price-was {
        font-size: 0.95rem;
        line-height: 1.1;
    }
    .mobile-summary-spots {
        font-size: 0.68rem;
        color: var(--primary);
        font-weight: 700;
        margin-top: 0.25rem;
        display: flex;
        align-items: center;
        gap: 4px;
    }
    
    .card { padding: 0.35rem 0.45rem; border-radius: 8px; }
    .card-title { margin-bottom: 0.25rem; font-size: 0.65rem; }
    .form-group { margin-bottom: 0.2rem; }
    .form-group label { display: none; }
    .form-group input, .form-group select { padding: 0.4rem 0.5rem; font-size: 0.85rem; border-radius: 6px; }
    
    /* Order Bump Compression */
    .order-bump { margin: 0px !important; padding: 0.2rem 0.3rem; border-radius: 6px; }
    #marketianBumpContainer { margin-top: 4px !important; margin-bottom: 0px !important; }
    .order-bump-header { margin-bottom: 0.08rem; gap: 5px; }
    .order-bump-checkbox { width: 13px; height: 13px; }
    .order-bump-title { font-size: 0.68rem; }
    .order-bump-badge { display: inline-block; font-size: 0.5rem; padding: 1px 3px; border-radius: 2px; }
    
    /* Expanded and CRO-optimized mobile descriptions */
    .order-bump-desc { display: block; font-size: 0.58rem; line-height: 1.2; padding-left: 18px; color: var(--text-muted); margin-top: 0.05rem; }
    .order-bump-price { font-size: 0.62rem; margin-top: 0.08rem; color: #fdba74; display: block; font-weight: 800; }
    
    .btn-reveal { padding: 0.6rem; font-size: 0.85rem; border-radius: 6px; margin-top: 4px !important; }
    
    /* Responsive Display & Review Card Tweaks */
    .mobile-only { display: block !important; }
    .desktop-only { display: none !important; }
    
    .checkout-review {
        margin-top: 0.5rem;
        background: rgba(255, 255, 255, 0.025);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        padding: 0.65rem 0.75rem;
    }
    .review-stars {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }
    .review-quote {
        font-size: 0.75rem;
        line-height: 1.35;
        margin-bottom: 0.3rem;
    }
    .review-author {
        font-size: 0.68rem;
    }
    .review-author .verified-badge {
        font-size: 0.62rem;
    }
    
    .main-footer {
        margin-top: 24px !important;
        padding: 30px 16px 20px !important;
    }
}

/* FOOTER */
.main-footer {
    background: rgba(13, 13, 28, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 28px 40px;
    margin-top: 80px;
}
.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
}
.footer-top {
    margin-bottom: 40px;
}
.footer-tagline {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 12px;
    max-width: 300px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    flex-wrap: wrap;
    gap: 20px;
}
.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
}
.footer-links {
    display: flex;
    gap: 24px;
}
.footer-links a {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: var(--primary);
}
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ─── ORDER BUMP CSS ──────────────────────────────────────────────────────── */
.order-bump {
    background: rgba(249, 115, 22, 0.02);
    border: 2px dashed rgba(249, 115, 22, 0.25);
    border-radius: 16px;
    padding: 1.25rem;
    margin: 1.5rem 0;
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
    user-select: none;
}
.order-bump:hover {
    border-color: var(--primary);
    background: rgba(249, 115, 22, 0.04);
}
.order-bump.checked {
    background: rgba(16, 185, 129, 0.03);
    border-color: var(--success);
    border-style: solid;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.08);
}
.order-bump-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
}
.order-bump-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}
.order-bump.checked .order-bump-checkbox {
    accent-color: var(--success);
}
.order-bump-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.5px;
}
.order-bump-badge {
    background: var(--primary);
    color: white;
    font-size: 0.62rem;
    font-weight: 900;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.order-bump.checked .order-bump-badge {
    background: var(--success);
}
.order-bump-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.45;
    padding-left: 28px;
}
.order-bump-price {
    font-weight: 800;
    color: #fdba74;
    display: block;
    margin-top: 0.4rem;
    font-size: 0.85rem;
}
.order-bump.checked .order-bump-price {
    color: var(--success);
}


/* Trust line below CTA */
.cta-trust {
    text-align: center;
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 0.65rem;
    letter-spacing: 0.2px;
}

/* Force-hide override — must be last to beat mobile-only !important */
.force-hidden { display: none !important; }
