/* ===================================================
   ATECHDOWN PRICING - OBSIDIAN TECH THEME
   Complete Rebuild with Premium Design
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;600&display=swap');

:root {
    --bg-void: #020617;
    --bg-deep: #0f172a;
    --surface: rgba(15, 23, 42, 0.85);
    --surface-hover: rgba(30, 41, 59, 0.9);

    --primary: #0066ff;
    --primary-glow: rgba(0, 102, 255, 0.4);
    --accent-cyan: #00ffff;
    --accent-purple: #475569;
    /* Slate */
    --accent-green: #10b981;
    --accent-amber: #f59e0b;
    --accent-rose: #f43f5e;

    --border: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(0, 255, 255, 0.2);

    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    --font-sans: 'Inter', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body.pricing-body {
    background: var(--bg-void);
    color: var(--text-primary);
    font-family: var(--font-sans);
    min-height: 100vh;
    line-height: 1.5;
}

/* ===== BACKGROUNDS ===== */
.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
        var(--bg-void);
}

.bg-noise {
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ===== HEADER ===== */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 32px;
    background: rgba(2, 6, 23, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    width: 36px;
    height: 36px;
    border-radius: 10px;
}

.logo span {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-cyan), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.topbar-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 10px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-nav:hover {
    background: rgba(0, 102, 255, 0.2);
    transform: translateY(-2px);
}

/* ===== MAIN ===== */
.pricing-page {
    padding: 60px 24px 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== HERO ===== */
.pricing-hero {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #fff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.current-plan {
    display: inline-flex;
    align-items: center;
    gap: 24px;
    padding: 16px 32px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.plan-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-item span {
    color: var(--text-muted);
    font-size: 14px;
}

.plan-item strong {
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 16px;
}

.plan-divider {
    width: 1px;
    height: 24px;
    background: var(--border);
}

/* ===== PRICING GRID ===== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

/* ===== PRICING CARD ===== */
.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px 24px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 255, 255, 0.1);
}

.pricing-card:hover::before {
    opacity: 1;
}

/* Popular Card */
.pricing-card.popular {
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(14, 165, 233, 0.1));
    border-color: var(--primary);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.08) translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4), 0 0 60px var(--primary-glow);
}

/* Badge */
.pricing-card .badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 0 0 12px 12px;
}

.pricing-card .badge.gold {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #1f2937;
}

/* Card Header */
.card-header {
    text-align: center;
    margin-bottom: 24px;
    padding-top: 16px;
}

.card-header h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
}

.price-display {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-cyan), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.period {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== COMPACT QUANTITY PICKER ===== */
.quantity-picker.compact {
    background: rgba(0, 20, 40, 0.6);
    border: 1px solid rgba(0, 255, 255, 0.12);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 20px;
}

.qty-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.qty-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.qty-value-box {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.qty-number {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 700;
    color: #00ffff;
}

.qty-unit {
    font-size: 12px;
    color: var(--text-muted);
}

/* Compact Controls */
.qty-controls {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Compact Slider */
.slider-wrap {
    position: relative;
    height: 24px;
    display: flex;
    align-items: center;
}

.slider-track-bg {
    position: absolute;
    left: 0;
    right: 0;
    height: 6px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
}

.slider-fill {
    position: absolute;
    left: 0;
    height: 6px;
    width: 0%;
    background: linear-gradient(90deg, #00ffff, #00ff88);
    border-radius: 3px;
    transition: width 0.2s ease;
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.4);
}

.slider-range {
    position: relative;
    width: 100%;
    height: 24px;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    z-index: 2;
}

.slider-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 2px solid #00ffff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
    transition: transform 0.15s ease;
}

.slider-range::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

/* Compact Chip Row */
.chip-row {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.qty-chip {
    width: 42px;
    height: 34px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-chip:hover {
    border-color: rgba(0, 255, 255, 0.4);
    color: #00ffff;
}

.qty-chip.active {
    background: rgba(0, 255, 255, 0.15);
    border-color: #00ffff;
    color: #fff;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ffffff, #e0f7ff);
    border: 3px solid #00ffff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow:
        0 0 20px rgba(0, 255, 255, 0.6),
        0 0 40px rgba(0, 255, 255, 0.3),
        inset 0 0 10px rgba(0, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow:
        0 0 30px rgba(0, 255, 255, 0.8),
        0 0 60px rgba(0, 255, 255, 0.4),
        inset 0 0 15px rgba(0, 255, 255, 0.3);
}

.slider-input::-webkit-slider-thumb:active {
    transform: scale(1.1);
}

.slider-input::-moz-range-thumb {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #ffffff, #e0f7ff);
    border: 3px solid #00ffff;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
}

.slider-markers {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    padding: 0 4px;
}

.slider-markers span {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.slider-markers span.active {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Premium Chip Button Group */
.qty-btn-group {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}

.qty-chip {
    position: relative;
    width: 52px;
    height: 48px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chip-inner {
    position: relative;
    z-index: 2;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.chip-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 255, 255, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.qty-chip:hover {
    border-color: rgba(0, 255, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.qty-chip:hover .chip-inner {
    color: #00ffff;
}

.qty-chip:hover .chip-glow {
    opacity: 0.5;
}

.qty-chip.active {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(0, 255, 136, 0.15));
    border-color: #00ffff;
    box-shadow:
        0 0 20px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.1);
    animation: chipPulse 2s ease-in-out infinite;
}

.qty-chip.active .chip-inner {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.qty-chip.active .chip-glow {
    opacity: 1;
}

@keyframes chipPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 20px rgba(0, 255, 255, 0.1);
    }

    50% {
        box-shadow: 0 0 30px rgba(0, 255, 255, 0.5), inset 0 0 25px rgba(0, 255, 255, 0.15);
    }
}

/* Price Preview */
.price-preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 12px;
}

.preview-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.preview-amount {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

/* Features */
.features {
    list-style: none;
    flex: 1;
    margin-bottom: 24px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.features li:last-child {
    border-bottom: none;
}

.features li svg {
    flex-shrink: 0;
    color: var(--accent-green);
}

.features li strong {
    color: var(--text-primary);
}

/* Buy Button */
.btn-buy {
    width: 100%;
    padding: 14px;
    background: var(--surface-hover);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-buy:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.btn-buy.primary {
    background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
    border: none;
    box-shadow: 0 8px 20px var(--primary-glow);
}

.btn-buy.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px var(--primary-glow);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    text-align: center;
    margin-bottom: 80px;
}

.stats-banner {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
}

.stats-banner .highlight {
    color: var(--accent-green);
}

.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    max-width: 340px;
    text-align: left;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--border-glow);
    transform: translateY(-4px);
}

.stars {
    color: #ffd700;
    font-size: 18px;
    margin-bottom: 12px;
}

.testimonial-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card strong {
    font-size: 13px;
    color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq-section {
    max-width: 800px;
    margin: 0 auto 80px;
}

.faq-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 32px;
}

.faq-item {
    margin-bottom: 12px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
}

.faq-question:hover {
    border-color: var(--border-glow);
}

.faq-question.active {
    border-color: var(--accent-cyan);
    border-radius: 12px 12px 0 0;
}

.faq-question svg {
    transition: transform 0.3s;
    color: var(--text-muted);
}

.faq-question.active svg {
    transform: rotate(180deg);
    color: var(--accent-cyan);
}

.faq-answer {
    display: none;
    padding: 20px 24px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 12px 12px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

.faq-answer.open {
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    text-align: center;
    padding: 40px 24px;
    border-top: 1px solid var(--border);
}

.footer p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
}

.footer a:hover {
    color: var(--accent-cyan);
}

/* ===== MODAL ===== */
.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.modal.hidden {
    display: none;
}

.modal-box {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--bg-deep);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.modal-close:hover {
    background: rgba(244, 63, 94, 0.2);
    color: var(--accent-rose);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.modal-header h2 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #fff;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.order-summary {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 14px;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row span {
    color: var(--text-muted);
}

.summary-row strong {
    color: var(--text-primary);
    font-weight: 600;
}

.summary-row.highlight {
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.summary-row.highlight strong {
    color: var(--accent-cyan);
    font-size: 20px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* Voucher Input Styling */
#voucherInput {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border);
    padding: 12px;
    border-radius: 8px;
    color: white;
    font-family: var(--font-mono);
    outline: none;
    transition: all 0.2s;
}

#voucherInput:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(0, 102, 255, 0.2);
}

#btnApplyVoucher {
    background: linear-gradient(135deg, var(--primary), #00aaff);
    color: white;
    border: none;
    padding: 0 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

#btnApplyVoucher:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px var(--primary-glow);
}

#btnApplyVoucher:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Modal Footer Buttons */
.modal-footer {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.btn-cancel {
    flex: 1;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.btn-cancel:hover {
    background: rgba(244, 63, 94, 0.1);
    border-color: rgba(244, 63, 94, 0.3);
    color: var(--accent-rose);
    transform: translateY(-2px);
}

.btn-confirm {
    flex: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.btn-confirm::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
}

.btn-confirm:hover::before {
    left: 150%;
}

/* Existing Bank/QR Styles */
.qr-section {
    text-align: center;
    margin-bottom: 24px;
}

.qr-section img {
    max-width: 200px;
    border-radius: 16px;
    margin-bottom: 12px;
    border: 4px solid white;
}

.timer {
    font-size: 14px;
    color: var(--text-muted);
}

.timer span {
    color: var(--accent-rose);
    font-weight: 700;
    font-family: var(--font-mono);
}

.bank-details {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}

.bank-details h4 {
    font-size: 14px;
    color: var(--accent-green);
    margin-bottom: 16px;
}

.bank-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 14px;
}

.bank-row span {
    color: var(--text-muted);
    min-width: 80px;
}

.bank-row strong {
    color: var(--text-primary);
    flex: 1;
}

.bank-row.transfer-content {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}

.content-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px dashed var(--accent-green);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-green);
}

.copy-btn {
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.copy-btn:hover {
    background: var(--primary);
    color: white;
}

.warning-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    color: var(--accent-amber);
    text-align: center;
}

/* Success Screen */
.success-screen {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: bounce 1s infinite;
}

.success-screen h2 {
    color: var(--accent-green);
    font-size: 28px;
    margin-bottom: 12px;
}

.success-screen p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.loader-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar::before {
    content: '';
    display: block;
    height: 100%;
    width: 50%;
    background: var(--accent-green);
    animation: slide 1.5s infinite linear;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes slide {
    0% {
        margin-left: -50%;
    }

    100% {
        margin-left: 100%;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .topbar {
        padding: 12px 16px;
    }

    .pricing-page {
        padding: 40px 16px 60px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card.popular {
        order: -1;
    }

    .current-plan {
        flex-direction: column;
        gap: 8px;
        padding: 16px 24px;
    }

    .plan-divider {
        display: none;
    }

    .price {
        font-size: 28px;
    }

    .testimonial-grid {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        max-width: 100%;
    }
}

/* ===== LOADING STATE ===== */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(0, 255, 255, 0.2);
    border-top-color: #00ffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-state h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.loading-state p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===== PREMIUM SUCCESS SCREEN ===== */
.success-screen-premium {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
    min-height: 450px;
}

/* Background Pulse Effects */
.success-bg-effects {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.circle-pulse {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
    animation: circlePulse 2s ease-out infinite;
}

.circle-pulse.delay-1 {
    animation-delay: 0.5s;
}

.circle-pulse.delay-2 {
    animation-delay: 1s;
}

@keyframes circlePulse {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }

    100% {
        transform: scale(4);
        opacity: 0;
    }
}

/* Success Content */
.success-content {
    position: relative;
    z-index: 10;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animated Checkmark */
.success-checkmark {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
}

.checkmark-svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    stroke-width: 3;
    stroke: #00ffff;
    stroke-miterlimit: 10;
    box-shadow:
        0 0 30px rgba(0, 255, 255, 0.5),
        0 0 60px rgba(0, 255, 255, 0.3),
        inset 0 0 20px rgba(0, 255, 255, 0.2);
    animation: checkmarkGlow 2s ease-in-out infinite alternate;
}

@keyframes checkmarkGlow {
    from {
        box-shadow:
            0 0 30px rgba(0, 255, 255, 0.5),
            0 0 60px rgba(0, 255, 255, 0.3);
        filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
    }

    to {
        box-shadow:
            0 0 50px rgba(0, 255, 255, 0.7),
            0 0 100px rgba(0, 255, 255, 0.5);
        filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
    }
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 3;
    stroke-miterlimit: 10;
    stroke: #00ffff;
    fill: rgba(0, 255, 255, 0.1);
    animation: strokeCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke: #00ffff;
    stroke-width: 4;
    stroke-linecap: round;
    animation: strokeCheck 0.4s cubic-bezier(0.65, 0, 0.45, 1) 0.5s forwards;
}

@keyframes strokeCircle {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes strokeCheck {
    100% {
        stroke-dashoffset: 0;
    }
}

/* Success Title */
.success-title {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
}

.title-line {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-secondary);
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.title-highlight {
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(135deg, #00ffff, #00ff88, #0066ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation:
        fadeInUp 0.6s ease-out 0.4s both,
        gradientShift 3s ease infinite;
    text-shadow: 0 0 40px rgba(0, 255, 255, 0.5);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

/* Success Message */
.success-message {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease-out 0.5s both;
}

/* Success Stats */
.success-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 16px 24px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 16px;
    animation: statPulse 2s ease-in-out infinite;
}

@keyframes statPulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
    }

    50% {
        box-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
    }
}

.stat-icon {
    font-size: 28px;
}

.stat-value {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Redirect Progress Bar */
.redirect-bar {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto 12px;
    animation: fadeInUp 0.6s ease-out 0.7s both;
}

.redirect-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #00ffff, #00ff88);
    border-radius: 2px;
    animation: progressFill 3.5s linear forwards;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

@keyframes progressFill {
    from {
        width: 0%;
    }

    to {
        width: 100%;
    }
}

.redirect-text {
    font-size: 13px;
    color: var(--text-muted);
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

/* Success Modal Box Override */
.success-modal-box {
    background: linear-gradient(145deg, rgba(2, 6, 23, 0.98), rgba(15, 23, 42, 0.98));
    border: 1px solid rgba(0, 255, 255, 0.3);
    box-shadow:
        0 0 60px rgba(0, 255, 255, 0.2),
        0 0 120px rgba(0, 102, 255, 0.1),
        inset 0 0 60px rgba(0, 255, 255, 0.05);
    animation: successModalAppear 0.5s ease-out;
}

@keyframes successModalAppear {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal.success-mode {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}