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

:root {
  --bg: #080808;
  --card: #111111;
  --surf: #1a1a1a;
  --border: #242424;
  --accent: #2563eb;
  --glow: #3b82f6;
  --green: #059669;
  --amber: #d97706;
  --red: #dc2626;
  --txt: #f4f4f5;
  --muted: #a1a1aa;
  --font: 'Inter', sans-serif;
  --heading: 'Space Grotesk', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--txt);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  height: 64px;
  display: flex; align-items: center;
}
.nav-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: flex; align-items: center; gap: 32px; }
.logo { display: flex; align-items: center; gap: 10px; }
.ghost-icon { font-size: 24px; }
.logo-text { font-family: var(--heading); font-size: 20px; font-weight: 700; color: var(--txt); }
.blue { color: var(--accent); }
.logo-ai { color: var(--muted); font-size: 16px; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
.nav-links a:hover { color: var(--txt); }
.nav-cta { background: var(--accent); color: #fff; text-decoration: none; padding: 8px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; transition: opacity .2s; }
.nav-cta:hover { opacity: .85; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1200px; margin: 0 auto;
  padding: 100px 24px 60px;
  gap: 60px; position: relative;
}
.hero-bg { position: fixed; inset: 0; z-index: -1; pointer-events: none; }
.grid-lines {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(37,99,235,.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(37,99,235,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.glow-orb { position: absolute; border-radius: 50%; filter: blur(120px); opacity: .25; }
.orb1 { width: 500px; height: 500px; background: var(--accent); top: -100px; left: -100px; }
.orb2 { width: 400px; height: 400px; background: #7c3aed; bottom: 0; right: -100px; }
.hero-content { flex: 1; max-width: 580px; }
.badge {
  display: inline-block; background: rgba(37,99,235,.12); border: 1px solid rgba(37,99,235,.3);
  color: var(--glow); padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 600;
  margin-bottom: 24px; letter-spacing: .5px;
}
.hero-content h1 {
  font-family: var(--heading); font-size: clamp(38px, 5vw, 60px);
  font-weight: 800; line-height: 1.1; margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent), #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-sub { font-size: 18px; color: var(--muted); margin-bottom: 36px; line-height: 1.7; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  background: var(--accent); color: #fff; text-decoration: none;
  padding: 14px 28px; border-radius: 10px; font-weight: 700; font-size: 15px;
  transition: all .25s; box-shadow: 0 0 30px rgba(37,99,235,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(37,99,235,.5); }
.btn-ghost {
  background: transparent; color: var(--txt); text-decoration: none;
  padding: 14px 28px; border-radius: 10px; font-weight: 600; font-size: 15px;
  border: 1px solid var(--border); transition: all .25s;
}
.btn-ghost:hover { border-color: var(--accent); color: var(--glow); }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--heading); font-size: 22px; font-weight: 800; color: var(--txt); }
.stat-lbl { font-size: 12px; color: var(--muted); }
.stat-div { width: 1px; height: 36px; background: var(--border); }

/* ── APP MOCKUP ── */
.hero-visual { flex: 1; max-width: 480px; }
.app-mockup {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(0,0,0,.6), 0 0 60px rgba(37,99,235,.08);
}
.mockup-bar {
  background: #161616; padding: 12px 16px; display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }
.mockup-title { font-size: 12px; color: var(--muted); margin-left: 8px; font-family: 'Consolas', monospace; }
.mockup-body { padding: 20px; }
.mockup-label { font-size: 11px; color: var(--accent); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.mockup-q { background: var(--surf); border: 1px solid var(--border); border-radius: 8px; padding: 12px 14px; font-size: 14px; color: var(--muted); margin-bottom: 16px; font-style: italic; }
.mockup-divider { height: 1px; background: var(--border); margin-bottom: 16px; }
.mockup-ans-label { font-size: 11px; color: var(--green); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.mockup-ans { font-size: 13px; color: var(--txt); line-height: 1.8; background: rgba(37,99,235,.05); border: 1px solid rgba(37,99,235,.15); border-radius: 8px; padding: 14px; min-height: 90px; }
.cursor-blink { animation: blink 1s infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.mockup-tabs { display: flex; gap: 8px; margin-top: 16px; }
.tab { font-size: 11px; padding: 5px 10px; border-radius: 6px; background: var(--surf); color: var(--muted); cursor: pointer; }
.active-tab { background: rgba(37,99,235,.2); color: var(--glow); border: 1px solid rgba(37,99,235,.3); }

/* ── SECTIONS COMMON ── */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 100px 24px; text-align: center; }
.section-badge {
  display: inline-block; background: rgba(37,99,235,.1); border: 1px solid rgba(37,99,235,.25);
  color: var(--glow); padding: 6px 16px; border-radius: 100px; font-size: 13px; font-weight: 600;
  margin-bottom: 20px;
}
.section-inner h2 { font-family: var(--heading); font-size: clamp(28px, 4vw, 48px); font-weight: 800; margin-bottom: 16px; }
.section-sub { font-size: 17px; color: var(--muted); max-width: 600px; margin: 0 auto 60px; }

/* ── FEATURES ── */
.features { background: linear-gradient(180deg, var(--bg) 0%, #0d0d1a 100%); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; text-align: left; }
.feat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; transition: all .3s;
}
.feat-card:hover { border-color: rgba(37,99,235,.4); transform: translateY(-4px); }
.feat-highlight { border-color: rgba(37,99,235,.3); background: linear-gradient(135deg, #0f1629, #111827); }
.feat-icon { font-size: 32px; margin-bottom: 16px; }
.feat-card h3 { font-family: var(--heading); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feat-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ── HOW IT WORKS ── */
.how-it-works { background: var(--bg); }
.steps { display: flex; align-items: flex-start; justify-content: center; gap: 20px; flex-wrap: wrap; }
.step { flex: 1; min-width: 220px; max-width: 280px; text-align: center; padding: 32px 20px; background: var(--card); border: 1px solid var(--border); border-radius: 16px; }
.step-num { font-family: var(--heading); font-size: 42px; font-weight: 900; color: rgba(37,99,235,.25); margin-bottom: 12px; }
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--muted); }
.step-arrow { font-size: 28px; color: var(--accent); align-self: center; margin-top: -20px; }

/* ── REVIEWS ── */
.reviews { background: linear-gradient(180deg, var(--bg) 0%, #0d0d1a 50%, var(--bg) 100%); }

.reviews-summary {
  display: grid; grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 40px; align-items: center;
  max-width: 720px; margin: 0 auto 60px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px 40px; text-align: left;
}
.rs-score { text-align: center; border-right: 1px solid var(--border); padding-right: 24px; }
.rs-num { font-family: var(--heading); font-size: 56px; font-weight: 900; line-height: 1; color: var(--txt); }
.rs-stars { color: #fbbf24; font-size: 18px; letter-spacing: 2px; margin: 8px 0; }
.rs-count { font-size: 12px; color: var(--muted); }
.rs-bars { display: flex; flex-direction: column; gap: 8px; }
.rs-row { display: grid; grid-template-columns: 32px 1fr 44px; align-items: center; gap: 12px; }
.rs-label { font-size: 12px; font-weight: 700; color: var(--muted); }
.rs-bar { height: 8px; background: var(--surf); border-radius: 100px; overflow: hidden; }
.rs-bar span { display: block; height: 100%; background: linear-gradient(90deg, #fbbf24, #f59e0b); border-radius: 100px; }
.rs-pct { font-size: 12px; font-weight: 600; color: var(--muted); text-align: right; }

.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px; text-align: left; margin-bottom: 48px;
}
.review-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px; display: flex; flex-direction: column; gap: 16px;
  transition: all .3s; position: relative;
}
.review-card:hover { border-color: rgba(37,99,235,.4); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.review-highlight { border-color: rgba(37,99,235,.35); background: linear-gradient(135deg, #0f1629, #111827); }
.review-highlight::before {
  content: "Top Review"; position: absolute; top: -10px; left: 24px;
  background: var(--accent); color: #fff; font-size: 10px; font-weight: 800;
  letter-spacing: .5px; padding: 4px 10px; border-radius: 100px; text-transform: uppercase;
}
.review-stars { color: #fbbf24; font-size: 16px; letter-spacing: 2px; }
.review-text { font-size: 14.5px; color: var(--txt); line-height: 1.7; flex: 1; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 16px; border-top: 1px solid var(--border); }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--heading); font-size: 14px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.review-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.review-name { font-size: 14px; font-weight: 700; color: var(--txt); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.verified { font-size: 10px; font-weight: 700; color: #10b981; background: rgba(16,185,129,.12); padding: 2px 8px; border-radius: 100px; letter-spacing: .3px; }
.review-role { font-size: 12px; color: var(--muted); }

.reviews-cta { text-align: center; }

@media (max-width: 600px) {
  .reviews-summary { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
  .rs-score { border-right: none; border-bottom: 1px solid var(--border); padding-right: 0; padding-bottom: 20px; }
}

/* ── PRICING ── */
.pricing { background: linear-gradient(180deg, #0d0d1a 0%, var(--bg) 100%); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; text-align: left; }
.price-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px; position: relative; transition: all .3s;
}
.price-card:hover { transform: translateY(-6px); }
.popular {
  border-color: var(--accent);
  background: linear-gradient(135deg, #0f1629, #0a1022);
  box-shadow: 0 0 50px rgba(37,99,235,.2);
}
.popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 12px; font-weight: 700;
  padding: 4px 16px; border-radius: 100px; white-space: nowrap;
}
.plan-name { font-size: 13px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.plan-price { font-family: var(--heading); font-size: 48px; font-weight: 900; color: var(--txt); line-height: 1; margin-bottom: 8px; }
.plan-price span { font-size: 16px; color: var(--muted); font-weight: 500; }
.plan-desc { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li { font-size: 14px; color: var(--muted); padding: 7px 0; border-bottom: 1px solid var(--border); }
.plan-features li:last-child { border: none; }
.btn-plan {
  display: block; width: 100%; text-align: center; padding: 14px;
  border-radius: 10px; font-weight: 700; font-size: 14px; text-decoration: none;
  background: var(--surf); color: var(--txt); border: 1px solid var(--border);
  transition: all .25s; cursor: pointer;
}
.btn-plan:hover { background: var(--accent); border-color: var(--accent); }
.popular-btn { background: var(--accent); border-color: var(--accent); box-shadow: 0 0 30px rgba(37,99,235,.4); }

/* ── SIGNUP ── */
.signup-section { background: var(--bg); }
.form-card {
  max-width: 780px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 24px; padding: 48px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; }
.form-group.full-width { margin-bottom: 20px; }
label { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; letter-spacing: .5px; text-transform: uppercase; }
input, select {
  background: var(--surf); border: 1px solid var(--border); color: var(--txt);
  padding: 12px 16px; border-radius: 10px; font-size: 15px; font-family: var(--font);
  transition: border-color .2s; outline: none;
}
input::placeholder { color: var(--muted); }
input:focus, select:focus { border-color: var(--accent); }
select option { background: var(--surf); }
.btn-submit {
  width: 100%; padding: 16px; background: var(--accent); color: #fff; border: none;
  border-radius: 12px; font-size: 16px; font-weight: 700; cursor: pointer;
  transition: all .25s; box-shadow: 0 0 40px rgba(37,99,235,.35); margin-top: 8px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 0 60px rgba(37,99,235,.5); }
.hidden { display: none !important; }
.success-msg { text-align: center; padding: 20px 0; }
.success-icon { font-size: 56px; margin-bottom: 16px; }
.success-msg h3 { font-family: var(--heading); font-size: 26px; font-weight: 800; margin-bottom: 12px; color: var(--green); }
.success-msg p { color: var(--muted); margin-bottom: 8px; }
.success-note { font-size: 14px; background: rgba(5,150,105,.1); border: 1px solid rgba(5,150,105,.25); border-radius: 8px; padding: 10px 16px; margin: 16px 0; }
.success-msg .btn-primary { display: inline-block; margin-top: 16px; }

/* ── DOWNLOAD ── */
.download-section { background: linear-gradient(180deg, var(--bg) 0%, #060610 100%); }
.dl-card {
  background: linear-gradient(135deg, #0f1629, #0a0a18);
  border: 1px solid rgba(37,99,235,.25); border-radius: 24px; padding: 60px;
  display: flex; align-items: center; gap: 60px; text-align: left;
  box-shadow: 0 0 80px rgba(37,99,235,.1);
}
.ghost-big { font-size: 64px; margin-bottom: 16px; }
.dl-left { flex: 1; }
.dl-left h2 { font-family: var(--heading); font-size: 36px; font-weight: 800; margin-bottom: 16px; line-height: 1.2; }
.dl-left p { font-size: 16px; color: var(--muted); margin-bottom: 24px; }
.dl-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.badge-item { background: rgba(37,99,235,.1); border: 1px solid rgba(37,99,235,.2); color: var(--glow); padding: 6px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; }
.dl-right { flex-shrink: 0; }
.dl-box { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 40px; text-align: center; min-width: 240px; }
.dl-icon { font-size: 48px; margin-bottom: 12px; }
.dl-name { font-family: var(--heading); font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.dl-ver { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.btn-download {
  display: block; width: 100%; padding: 14px 24px; background: var(--accent); color: #fff;
  border: none; border-radius: 10px; font-size: 15px; font-weight: 700; cursor: pointer;
  transition: all .25s; box-shadow: 0 0 30px rgba(37,99,235,.35); margin-bottom: 12px;
}
.btn-download:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(37,99,235,.5); }
.dl-note { font-size: 12px; color: var(--muted); }

/* ── FOOTER ── */
footer { background: #050505; border-top: 1px solid var(--border); padding: 40px 24px; text-align: center; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
footer .logo { justify-content: center; margin-bottom: 12px; }
.footer-tag { color: var(--muted); font-size: 14px; margin-bottom: 8px; letter-spacing: 2px; }
.footer-copy { color: #3f3f46; font-size: 13px; }

/* ── ADMIN PANEL ── */
.admin-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 2000; }
.admin-panel { position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 2001; width: 92%; max-width: 900px; max-height: 85vh; overflow-y: auto; background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 32px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.admin-header h3 { font-family: var(--heading); font-size: 20px; font-weight: 700; }
.admin-close { background: var(--surf); color: var(--txt); border: none; width: 36px; height: 36px; border-radius: 8px; cursor: pointer; font-size: 16px; }
.admin-stats { display: flex; gap: 20px; margin-bottom: 24px; }
.admin-stat { background: var(--surf); border: 1px solid var(--border); border-radius: 12px; padding: 16px 24px; text-align: center; flex: 1; }
.admin-stat span { display: block; font-family: var(--heading); font-size: 28px; font-weight: 800; color: var(--accent); }
.admin-stat small { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.admin-actions { display: flex; gap: 12px; margin-bottom: 24px; }
.btn-export { background: var(--green); color: #fff; border: none; padding: 10px 24px; border-radius: 8px; font-weight: 700; cursor: pointer; font-size: 14px; }
.btn-clear-data { background: var(--surf); color: var(--red); border: 1px solid var(--red); padding: 10px 24px; border-radius: 8px; font-weight: 700; cursor: pointer; font-size: 14px; }
.leads-table-wrap { overflow-x: auto; }
#leadsTable { width: 100%; border-collapse: collapse; font-size: 13px; }
#leadsTable th { background: var(--surf); color: var(--muted); text-align: left; padding: 10px 12px; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
#leadsTable td { padding: 10px 12px; border-bottom: 1px solid var(--border); color: var(--txt); }
#leadsTable tr:hover td { background: rgba(37,99,235,.04); }
.key-badge { background: rgba(5,150,105,.1); border: 1px solid rgba(5,150,105,.25); color: #34d399; padding: 3px 10px; border-radius: 6px; font-family: 'Consolas', monospace; font-size: 12px; }

@media (max-width: 768px) {
  .hero { flex-direction: column; padding-top: 90px; }
  .hero-visual { display: none; }
  .dl-card { flex-direction: column; padding: 32px 24px; }
  .dl-right { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .steps { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
}

/* ── WHATSAPP FLOAT ── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  background: #25d366; color: #fff; text-decoration: none;
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 50px;
  box-shadow: 0 8px 32px rgba(37,211,102,.45);
  font-weight: 700; font-size: 14px; font-family: var(--font);
  transition: all .3s; animation: waPulse 2s infinite;
}
.wa-float:hover { transform: scale(1.06); box-shadow: 0 12px 40px rgba(37,211,102,.6); }
.wa-label { white-space: nowrap; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 8px 48px rgba(37,211,102,.75); }
}

/* ── FOOTER SOCIALS ── */
.footer-socials { display: flex; justify-content: center; gap: 16px; margin: 20px 0; flex-wrap: wrap; }
.social-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 50px;
  font-size: 14px; font-weight: 600; text-decoration: none; transition: all .25s;
}
.whatsapp-btn { background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.3); color: #25d366; }
.whatsapp-btn:hover { background: #25d366; color: #fff; }
.instagram-btn { background: rgba(225,48,108,.1); border: 1px solid rgba(225,48,108,.3); color: #e1306c; }
.instagram-btn:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; border-color: transparent; }

/* ── PAYMENT GATEWAY UI ── */
.checkout-header { text-align: center; margin-bottom: 24px; }
.success-icon-small { font-size: 42px; margin-bottom: 12px; }
.checkout-header h3 { font-family: var(--heading); font-size: 22px; font-weight: 800; color: var(--txt); }
.checkout-header p { font-size: 13px; color: var(--muted); }

.checkout-body {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}

.payment-tabs {
  display: flex;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}
.pay-tab {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
  border-right: 1px solid var(--border);
}
.pay-tab:last-child { border-right: none; }
.pay-tab.active {
  background: var(--card);
  color: var(--glow);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.pay-content { padding: 24px; }

.qr-container { text-align: center; }
#upi-qr {
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  width: 180px;
  height: 180px;
  margin-bottom: 12px;
  box-shadow: 0 0 30px rgba(255,255,255,0.1);
}
.qr-hint { font-size: 12px; color: var(--muted); margin-bottom: 20px; }

.upi-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--border);
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 20px;
}
.upi-divider::before, .upi-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }

.upi-id-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
}
#upi-id { font-family: 'Consolas', monospace; font-size: 14px; color: var(--glow); font-weight: 700; }

.mock-card-form { display: flex; flex-direction: column; gap: 12px; }
.mock-input {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: 8px;
  color: #333;
  font-size: 14px;
  text-align: left;
  opacity: 0.5;
}
.mock-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.card-note { font-size: 12px; color: var(--amber); margin-top: 16px; font-style: italic; }

.checkout-footer { text-align: center; }
.wa-instruction { font-size: 14px; color: var(--muted); margin-bottom: 16px; }
.btn-wa-payment {
  display: inline-block;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.3);
  transition: all .2s;
}
.btn-wa-payment:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
.btn-copy {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s;
}
.btn-copy:hover { opacity: .85; }

.dl-actions-small { margin-top: 20px; }
.btn-dl-secondary { color: var(--muted); font-size: 13px; text-decoration: underline; cursor: pointer; }
.btn-dl-secondary:hover { color: var(--txt); }



