/* =====================================================
   QuickBooks Store — Faithful replica of React design
   Fonts: Outfit (headings) + Plus Jakarta Sans (body)
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-color:      #0b1120;
  --text-primary:  #f8fafc;
  --text-secondary:#94a3b8;
  --accent:        #00e676;
  --accent-hover:  #00c853;
  --glass-bg:      rgba(15, 23, 42, 0.6);
  --glass-border:  rgba(255, 255, 255, 0.1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  background-image:
    radial-gradient(circle at 15% 50%, rgba(0,230,118,0.05), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(0,230,118,0.05), transparent 25%);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
}

a { color: inherit; text-decoration: none; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-color); }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #475569; }

/* ── Glass Utilities ── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.3);
}
.glass-panel {
  background: rgba(30,41,59,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.05);
}

/* ── Layout ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ── TOP PROMO BANNER ── */
#top-banner {
  background: var(--accent); color: #0b1120;
  font-size: 12px; font-weight: 600; padding: 8px 0; display: none;
}
@media(min-width:768px){ #top-banner { display: block; } }
#top-banner .inner { display: flex; justify-content: space-between; align-items: center; }
#top-banner a { font-weight: 700; color: #0b1120; }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(30,41,59,0.7);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 4px 32px rgba(0,0,0,0.2);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; }

.logo { display: flex; align-items: center; gap: 10px; cursor: pointer; text-decoration: none; color: var(--text-primary); }

/* SVG icon — replaces the old .logo-icon letter box */
.logo-svg {
  width: 38px; height: 38px; flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(0,230,118,0.45));
}

/* Text block: "quickbooks" + "Software" stacked */
.logo-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text      { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; }
.logo-sub       { font-size: 10px; font-weight: 500; color: var(--text-secondary); letter-spacing: 0.04em; margin-top: 1px; }

/* keep old .logo-icon hidden in case any file still uses it */
.logo-icon { display: none; }

.logo-badge {
  font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  border: 1px solid rgba(0,230,118,0.3); background: rgba(0,230,118,0.1);
  color: var(--accent); padding: 2px 8px; border-radius: 3px; display: none;
}
@media(min-width:640px){ .logo-badge { display: inline; } }

nav.desktop { display: none; }
@media(min-width:1024px){ nav.desktop { display: flex; align-items: center; gap: 4px; } }
nav.desktop a {
  padding: 8px 16px; border-radius: 6px; font-size: 14px; font-weight: 600;
  color: var(--text-secondary); transition: all 0.2s; display: flex; align-items: center; gap: 6px;
}
nav.desktop a:hover { color: var(--text-primary); background: rgba(255,255,255,0.05); }
nav.desktop a.active { color: var(--accent); background: rgba(0,230,118,0.1); }

.nav-actions { display: none; align-items: center; gap: 12px; }
@media(min-width:768px){ .nav-actions { display: flex; } }

.btn-accent {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: #0b1120; font-weight: 700; border: none;
  border-radius: 999px; padding: 10px 22px; font-size: 14px; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; transition: all 0.2s;
  box-shadow: 0 0 15px rgba(0,230,118,0.3); text-decoration: none;
}
.btn-accent:hover { background: var(--accent-hover); box-shadow: 0 0 25px rgba(0,230,118,0.5); }
.btn-accent:active { transform: scale(0.97); }

.hamburger {
  display: flex; background: none; border: none; color: var(--text-secondary);
  cursor: pointer; padding: 8px; border-radius: 6px; font-size: 22px; line-height: 1; transition: all 0.2s;
}
.hamburger:hover { background: rgba(255,255,255,0.05); color: var(--text-primary); }
@media(min-width:1024px){ .hamburger { display: none; } }

.mobile-menu {
  display: none; border-top: 1px solid rgba(255,255,255,0.08);
  background: var(--bg-color); padding: 16px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: flex; align-items: center; gap: 10px; padding: 12px 16px; border-radius: 10px;
  font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 4px; transition: all 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { background: rgba(0,230,118,0.1); color: var(--accent); }
.mobile-menu .mobile-cta { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.06); }
.mobile-menu .mobile-cta a { width: 100%; justify-content: center; border-radius: 999px; background: var(--accent); color: #0b1120; font-weight: 700; }
.mobile-trust {
  margin-top: 12px; text-align: center; background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.05); border-radius: 10px; padding: 10px;
  font-size: 10px; color: var(--text-secondary);
}
.mobile-trust strong { color: var(--accent); display: block; }

/* ── HERO ── */
#hero-section {
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--glass-border);
  padding: 64px 24px 96px;
}
@media(min-width:768px){ #hero-section { padding: 96px 24px; } }
#hero-section .bg-glow {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 100%; max-width: 900px; height: 500px;
  background: var(--accent); opacity: 0.05; filter: blur(120px);
  border-radius: 50%; pointer-events: none;
}

.hero-grid { display: grid; gap: 56px; align-items: center; }
@media(min-width:1024px){ .hero-grid { grid-template-columns: 7fr 5fr; } }

#hero-copy { display: flex; flex-direction: column; gap: 28px; align-items: flex-start; text-align: left; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(30,41,59,0.7); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 6px 16px; border-radius: 999px;
  font-size: 12px; font-weight: 600; color: var(--accent);
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0;
  animation: pulseAnim 2s ease-in-out infinite; box-shadow: 0 0 8px rgba(0,230,118,0.8);
}
@keyframes pulseAnim { 0%,100%{ transform: scale(1); opacity: 1; } 50%{ transform: scale(1.4); opacity: 0.7; } }

.hero-title {
  font-size: clamp(34px, 5vw, 60px); font-weight: 900; line-height: 1.1;
  letter-spacing: -0.02em; color: var(--text-primary);
}
.hero-title .gradient-text {
  background: linear-gradient(to right, #00e676, #2dd4bf);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

.hero-desc { font-size: 17px; color: var(--text-secondary); max-width: 640px; line-height: 1.75; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

.btn-hero-main {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #0b1120; font-weight: 700; border: none;
  border-radius: 999px; padding: 14px 28px; font-size: 14px; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; transition: all 0.2s; overflow: hidden; position: relative;
  box-shadow: 0 0 20px rgba(0,230,118,0.3); text-decoration: none;
}
.btn-hero-main:hover { background: var(--accent-hover); box-shadow: 0 0 30px rgba(0,230,118,0.5); }
.btn-hero-main:active { transform: scale(0.97); }

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(30,41,59,0.7); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1); color: var(--text-primary); font-weight: 700;
  border-radius: 999px; padding: 14px 28px; font-size: 14px; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; transition: all 0.2s; text-decoration: none;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.05); }
.btn-hero-ghost .wa-green { color: #25D366; }

.hero-trusted { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 20px; }
.avatars { display: flex; }
.avatars .av {
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--bg-color);
  display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: #fff;
  margin-left: -12px;
}
.avatars .av:first-child { margin-left: 0; }
.av1 { background: #334155; } .av2 { background: #475569; } .av3 { background: #64748b; }
.trusted-txt { font-size: 14px; color: var(--text-secondary); }
.trusted-txt strong { color: var(--text-primary); }

/* Hero Promo Card */
#hero-visual { position: relative; }
#promo-card {
  position: relative; z-index: 20;
  background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-radius: 24px; padding: 32px; text-align: center;
}
#promo-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 24px; z-index: -1;
  background: linear-gradient(135deg, rgba(0,230,118,0.1), transparent 60%);
}
.promo-badge-inner {
  display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--accent);
  background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.2);
  padding: 6px 16px; border-radius: 999px;
}
.promo-pct {
  font-size: clamp(56px, 8vw, 72px); font-weight: 900; color: var(--text-primary);
  margin: 20px 0 4px; line-height: 1; letter-spacing: -0.04em;
}
.promo-pct .off { font-size: 0.65em; color: var(--accent); }
.promo-sub { font-size: 13px; color: var(--text-secondary); }
.promo-feats {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px; margin-top: 20px;
  display: flex; flex-direction: column; gap: 16px; text-align: left;
}
.pfeat { display: flex; align-items: flex-start; gap: 12px; font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.pfeat .pico { padding: 8px; border-radius: 8px; background: rgba(0,230,118,0.1); flex-shrink: 0; font-size: 14px; line-height: 1; }
.pfeat strong { color: var(--text-primary); }
.promo-claim-btn {
  margin-top: 20px; width: 100%; border-radius: 12px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-primary); font-weight: 700; font-size: 14px; padding: 16px;
  cursor: pointer; transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif;
}
.promo-claim-btn:hover { background: rgba(255,255,255,0.1); }
.blob { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(40px); opacity: 0.2; }
.blob.teal { top: -40px; right: -40px; width: 96px; height: 96px; background: #14b8a6; animation: float1 4s ease-in-out infinite; }
.blob.green { bottom: -40px; left: -40px; width: 128px; height: 128px; background: var(--accent); animation: float2 5s ease-in-out 1s infinite; }
@keyframes float1 { 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-15px) } }
@keyframes float2 { 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(20px) } }

/* ── CATALOG SECTION ── */
#catalog-section { padding: 80px 24px; }

.os-toggle { display: flex; justify-content: center; margin-bottom: 32px; }
.os-toggle-inner {
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px; padding: 6px; backdrop-filter: blur(12px);
}
.os-btn {
  position: relative; border: none; background: transparent;
  padding: 10px 24px; border-radius: 999px; font-size: 14px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; gap: 8px; color: var(--text-secondary);
  font-family: 'Plus Jakarta Sans', sans-serif; transition: color 0.25s; z-index: 1;
}
.os-btn.active { color: #0b1120; }
.os-btn .pill {
  position: absolute; inset: 0; border-radius: 999px; background: var(--accent);
  z-index: -1; box-shadow: 0 0 15px rgba(0,230,118,0.4);
  transition: all 0.3s ease;
}

.catalog-grid { display: grid; gap: 32px; }
@media(min-width:1024px){ .catalog-grid { grid-template-columns: 8fr 4fr; align-items: start; } }

.catalog-left { display: flex; flex-direction: column; gap: 24px; }

.product-header { border-radius: 24px; padding: 32px; }
.product-header h2 { font-size: 28px; font-weight: 900; color: var(--text-primary); margin-bottom: 12px; }
.product-header .tagline { font-size: 16px; color: var(--text-secondary); margin-bottom: 22px; }
.product-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-green {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.2);
  color: var(--accent); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 999px;
}
.tag-neutral {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-primary); font-size: 13px; font-weight: 600; padding: 6px 14px; border-radius: 999px;
}

.catalog-details { border-radius: 24px; padding: 32px; display: flex; flex-direction: column; gap: 28px; }
.detail-blk h3 {
  font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 10px;
  display: flex; align-items: center; gap: 10px;
}
.detail-blk h3 .bar { display: inline-block; width: 4px; height: 22px; background: var(--accent); border-radius: 999px; flex-shrink: 0; }
.detail-blk p { font-size: 14px; color: var(--text-secondary); line-height: 1.8; }
.detail-divider { border: none; border-top: 1px solid rgba(255,255,255,0.05); }

.two-col { display: grid; gap: 24px; }
@media(min-width:640px){ .two-col { grid-template-columns: 1fr 1fr; } }

.req-card { border-radius: 24px; padding: 24px; }
.req-card h3 {
  font-size: 16px; font-weight: 700; color: var(--text-primary);
  border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 12px; margin-bottom: 16px;
}
.req-card h3.accent-title { color: var(--accent); }
.req-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.req-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; }
.req-list .req-ico { font-size: 16px; flex-shrink: 0; color: var(--text-secondary); margin-top: 2px; }
.req-list strong { display: block; color: var(--text-primary); font-size: 13px; margin-bottom: 2px; }
.req-list span { color: var(--text-secondary); line-height: 1.6; }
.act-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.act-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-secondary); }
.act-ico { padding: 6px; border-radius: 999px; background: rgba(0,230,118,0.1); flex-shrink: 0; font-size: 13px; line-height: 1; }

/* Pricing Card — Sticky */
.pricing-card {
  position: sticky; top: 96px; border-radius: 24px; padding: 32px; text-align: center;
  border: 1px solid rgba(0,230,118,0.2); box-shadow: 0 0 30px rgba(0,230,118,0.1);
  background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.pricing-badge-top {
  display: inline-block; font-size: 11px; font-weight: 900; text-transform: uppercase;
  letter-spacing: 0.08em; color: #0b1120; background: var(--accent);
  padding: 6px 16px; border-radius: 999px; box-shadow: 0 0 15px rgba(0,230,118,0.4); margin-bottom: 24px;
}
.pricing-original { font-size: 13px; color: var(--text-secondary); text-decoration: line-through; margin-bottom: 4px; }
.pricing-current { display: flex; align-items: baseline; justify-content: center; gap: 6px; }
.pricing-current .amount { font-size: 52px; font-weight: 900; color: var(--text-primary); letter-spacing: -0.03em; }
.pricing-current .per { font-size: 14px; color: var(--text-secondary); }
.save-badge {
  display: inline-block; margin-top: 10px;
  background: rgba(239,68,68,0.1); border: 1px solid rgba(239,68,68,0.2);
  color: #f87171; font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 8px;
}
.pricing-divider { border: none; border-top: 1px solid rgba(255,255,255,0.05); margin: 20px 0; }
.features-list { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 12px; }
.features-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-secondary); }
.feat-ck {
  display: flex; align-items: center; justify-content: center; width: 18px; height: 18px;
  border-radius: 50%; background: rgba(0,230,118,0.1); flex-shrink: 0; margin-top: 2px; font-size: 10px; color: var(--accent);
}
.pricing-actions { display: flex; flex-direction: column; gap: 10px; margin-top: 24px; }
.btn-buy {
  width: 100%; border-radius: 12px; padding: 16px;
  background: var(--accent); color: #0b1120; font-size: 14px; font-weight: 700; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; transition: all 0.2s;
  box-shadow: 0 0 20px rgba(0,230,118,0.3);
}
.btn-buy:hover { background: var(--accent-hover); box-shadow: 0 0 30px rgba(0,230,118,0.5); }
.btn-buy:active { transform: scale(0.97); }
.btn-wa-buy {
  width: 100%; border-radius: 12px; padding: 16px;
  background: #25D366; color: #fff; font-size: 14px; font-weight: 700; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif; transition: all 0.2s;
  box-shadow: 0 0 20px rgba(37,211,102,0.3); text-decoration: none;
}
.btn-wa-buy:hover { background: #1ebd5c; }
.secure-note { margin-top: 14px; font-size: 11px; color: var(--text-secondary); opacity: 0.8; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* ── TRUST BADGES ── */
#trust-section {
  border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border);
  padding: 64px 24px;
  background: rgba(30,41,59,0.7); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
#trust-section .sec-head { text-align: center; margin-bottom: 48px; }
#trust-section h3 { font-size: 30px; font-weight: 900; color: var(--text-primary); margin-bottom: 10px; }
#trust-section .sec-sub { font-size: 13px; color: var(--text-secondary); max-width: 420px; margin: 0 auto; }
.badges-grid { display: grid; gap: 24px; }
@media(min-width:640px){ .badges-grid { grid-template-columns: 1fr 1fr; } }
@media(min-width:1024px){ .badges-grid { grid-template-columns: repeat(4,1fr); } }
.badge-card {
  text-align: center; padding: 28px 20px;
  background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border); box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  border-radius: 20px; transition: transform 0.3s;
}
.badge-card:hover { transform: translateY(-4px); }
.badge-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(0,230,118,0.1); border: 1px solid rgba(0,230,118,0.2);
  box-shadow: 0 0 15px rgba(0,230,118,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 14px;
}
.badge-card h4 { font-size: 13px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.badge-card p { font-size: 11px; color: var(--text-secondary); line-height: 1.7; }

/* ── FAQ (WHITE BG — exact match to React original) ── */
#faq-section { background: #fff; border-top: 1px solid #e5e7eb; padding: 64px 24px; }
.faq-head { text-align: center; margin-bottom: 40px; }
.faq-top-badge {
  display: inline-flex; align-items: center; gap: 6px; background: #ecfdf5; color: #2ca01c;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 6px 14px; border-radius: 999px; margin-bottom: 12px;
}
#faq-section h3 { font-size: clamp(22px, 3vw, 30px); font-weight: 900; color: #1e293b; margin-bottom: 8px; }
.faq-desc { font-size: 13px; color: #6b7280; max-width: 520px; margin: 0 auto; }
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-radius: 12px; border: 1px solid #e5e7eb; margin-bottom: 14px;
  overflow: hidden; transition: all 0.2s; background: #fff;
}
.faq-item.open { border-color: #2ca01c; background: rgba(236,253,245,0.1); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }
.faq-item:not(.open):hover { border-color: #d1d5db; }
.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 18px 20px; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; font-weight: 700; color: #1e293b;
  font-family: 'Plus Jakarta Sans', sans-serif; gap: 12px;
}
.faq-q-inner { display: flex; align-items: center; gap: 10px; flex: 1; padding-right: 8px; }
.faq-q-inner .help-ico { font-size: 18px; flex-shrink: 0; color: #9ca3af; }
.faq-q-inner .help-ico.open { color: #2ca01c; }
.faq-arrow { font-size: 18px; flex-shrink: 0; color: #9ca3af; transition: transform 0.3s; }
.faq-arrow.open { transform: rotate(180deg); color: #2ca01c; }
.faq-answer {
  display: none; padding: 0 20px 18px 48px;
  border-top: 1px solid rgba(0,200,100,0.1);
  font-size: 13px; color: #4b5563; line-height: 1.75;
}
.faq-answer.open { display: block; }
.faq-answer p + p { margin-top: 8px; }
.faq-answer ol { margin-left: 18px; margin-top: 6px; }
.faq-answer ol li { margin-bottom: 4px; }
.faq-answer a { color: #00e676; font-weight: 600; }
.faq-answer a:hover { text-decoration: underline; }
.faq-cta {
  max-width: 800px; margin: 28px auto 0;
  background: #393a3d; border-radius: 16px; padding: 24px;
  display: flex; flex-direction: column; align-items: center; gap: 16px; box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
@media(min-width:640px){ .faq-cta { flex-direction: row; justify-content: space-between; } }
.faq-cta-txt h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.faq-cta-txt p { font-size: 12px; color: #d1d5db; }
.faq-cta-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: #2ca01c; color: #fff; font-weight: 700;
  border: none; border-radius: 999px; padding: 10px 20px; font-size: 12px; cursor: pointer;
  white-space: nowrap; transition: background 0.2s; font-family: 'Plus Jakarta Sans', sans-serif;
}
.faq-cta-btn:hover { background: #238016; }

/* ── FOOTER ── */
footer {
  background: #040812; border-top: 1px solid var(--glass-border);
  padding: 48px 24px; font-size: 12px; color: #64748b;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  border-bottom: 1px solid var(--glass-border); padding-bottom: 24px; margin-bottom: 24px;
}
.footer-logo { font-size: 15px; font-weight: 800; color: #fff; display: flex; align-items: center; gap: 6px; }
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-links a { color: #94a3b8; font-size: 11px; font-weight: 700; transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-grid { display: grid; gap: 24px; }
@media(min-width:768px){ .footer-grid { grid-template-columns: 8fr 4fr; } }
.footer-contact { padding-left: 24px; border-left: 1px solid var(--glass-border); }
@media(max-width:767px){ .footer-contact { padding-left: 0; border-left: none; } }
.footer-contact-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: #475569; display: block; margin-bottom: 10px; }
.footer-contact ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.footer-contact a { color: #fff; font-weight: 700; }
.footer-bottom {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--glass-border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 11px; color: #475569;
}

/* WhatsApp float */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 200;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  font-size: 26px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s; text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); }
.wa-dot { position: absolute; top: 0; right: 0; width: 12px; height: 12px; border-radius: 50%; background: #ef4444; border: 2px solid #25D366; }

/* ── CHECKOUT MODAL ── */
.modal-backdrop {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(15,23,42,0.6); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 16px;
}
.modal-backdrop.open { display: flex; }
.modal-box {
  background: #fff; border-radius: 20px; width: 100%; max-width: 640px; max-height: 90vh;
  overflow-y: auto; position: relative; color: #111; font-family: 'Plus Jakarta Sans', sans-serif;
}
.modal-header {
  background: #393a3d; padding: 24px 28px; border-radius: 20px 20px 0 0;
  color: #fff; position: sticky; top: 0; z-index: 10;
}
.modal-header .sub { font-size: 11px; font-weight: 700; color: #6ee7b7; text-transform: uppercase; letter-spacing: 0.12em; }
.modal-header h3 { font-size: 20px; font-weight: 800; margin-top: 4px; }
.close-btn {
  position: absolute; top: 18px; right: 18px; background: none; border: none;
  color: #9ca3af; font-size: 22px; cursor: pointer; padding: 4px; border-radius: 6px; transition: all 0.2s;
}
.close-btn:hover { color: #fff; background: rgba(255,255,255,0.1); }
.modal-body { padding: 28px; }
.steps {
  display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700;
  color: #9ca3af; border-bottom: 1px solid #f3f4f6; padding-bottom: 16px; margin-bottom: 20px;
}
.steps .active { color: #2ca01c; }
.product-summary {
  background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 14px;
  padding: 14px 18px; display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px;
}
.product-summary .p-name { font-weight: 700; font-size: 13px; }
.product-summary .p-type { font-size: 11px; color: #6b7280; margin-top: 2px; }
.product-summary .p-price { font-size: 22px; font-weight: 900; color: #2ca01c; }
.form-sec-title {
  font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: #393a3d;
  border-bottom: 1px solid #f3f4f6; padding-bottom: 10px; margin-bottom: 18px;
}
.form-group { margin-bottom: 16px; }
label { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 700; color: #6b7280; margin-bottom: 6px; }
input[type=text], input[type=email], input[type=password], input[type=number], select {
  width: 100%; border: 1px solid #d1d5db; border-radius: 10px; padding: 12px 14px;
  font-size: 13px; outline: none; transition: border 0.2s; background: #fff; color: #111;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
input:focus, select:focus { border-color: #2ca01c; box-shadow: 0 0 0 3px rgba(44,160,28,0.1); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width:480px){ .form-row { grid-template-columns: 1fr; } }
.info-box {
  background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: 12px; padding: 14px 16px;
  font-size: 12px; color: #065f46; line-height: 1.7; display: flex; align-items: flex-start; gap: 10px; margin-bottom: 20px;
}
.btn-green {
  width: 100%; background: #2ca01c; color: #fff; font-weight: 700; border: none;
  border-radius: 999px; padding: 15px; font-size: 14px; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; transition: background 0.2s;
}
.btn-green:hover { background: #238016; }
.btn-back-modal {
  background: none; border: 1px solid #d1d5db; color: #4b5563; border-radius: 999px;
  padding: 15px 26px; font-size: 14px; font-weight: 600; cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif; transition: all 0.2s;
}
.btn-back-modal:hover { background: #f9fafb; }
.loader-overlay {
  display: none; position: absolute; inset: 0; border-radius: 20px;
  background: rgba(255,255,255,0.96); z-index: 20;
  flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 40px;
}
.loader-overlay.active { display: flex; }
.spinner { width: 52px; height: 52px; border-radius: 50%; border: 4px solid #e5e7eb; border-top-color: #2ca01c; animation: spin 0.8s linear infinite; margin-bottom: 20px; }
@keyframes spin { to{ transform: rotate(360deg); } }
.loader-title { font-size: 18px; font-weight: 800; color: #393a3d; }
.loader-sub { font-size: 13px; color: #6b7280; margin-top: 6px; max-width: 300px; }
.success-screen { text-align: center; }
.success-ico { width: 52px; height: 52px; border-radius: 50%; background: #ecfdf5; color: #2ca01c; display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 16px; }
.success-screen h4 { font-size: 20px; font-weight: 800; color: #393a3d; }
.success-screen .meta { font-size: 12px; color: #6b7280; margin-top: 4px; }
.key-box-modal { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 14px; padding: 22px; text-align: left; margin: 20px 0; }
.key-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
@media(max-width:480px){ .key-pair { grid-template-columns: 1fr; } }
.key-lbl { font-size: 10px; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: 6px; }
.key-val { font-family: monospace; font-size: 12px; font-weight: 700; color: #111; background: #fff; border: 1px solid #e5e7eb; padding: 10px 12px; border-radius: 8px; word-break: break-all; }
.key-divider { border: none; border-top: 1px solid #e5e7eb; margin-bottom: 16px; }
.key-main-row { display: flex; align-items: center; gap: 10px; }
.key-main-row .key-val { flex: 1; font-size: 15px; font-weight: 900; color: #393a3d; text-align: center; border-color: #bbf7d0; }
.btn-copy { background: none; border: 1px solid #d1d5db; border-radius: 8px; padding: 10px 14px; font-size: 11px; font-weight: 700; cursor: pointer; color: #374151; transition: all 0.2s; white-space: nowrap; }
.btn-copy.copied { color: #2ca01c; border-color: #2ca01c; }
.act-steps-box { background: rgba(236,253,245,0.5); border: 1px solid #a7f3d0; border-radius: 12px; padding: 18px; font-size: 12px; color: #065f46; margin-bottom: 20px; }
.act-steps-box strong { display: block; margin-bottom: 8px; font-size: 13px; color: #047857; }
.act-steps-box ol { margin-left: 18px; line-height: 2.2; }
.success-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-dl-modal { flex: 1; background: #393a3d; color: #fff; font-weight: 700; border: none; border-radius: 999px; padding: 14px; font-size: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 6px; transition: background 0.2s; text-decoration: none; font-family: 'Plus Jakarta Sans', sans-serif; }
.btn-dl-modal:hover { background: #2c2d30; }
.btn-done { background: none; border: 1px solid #e5e7eb; color: #4b5563; border-radius: 999px; padding: 14px 24px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif; }
.btn-done:hover { background: #f9fafb; }
.thankyou { text-align: center; font-size: 11px; color: #9ca3af; margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }

/* ── Retrieval / Guide / Admin ── */
.page-wrap { padding: 56px 24px; min-height: 60vh; }
.card-white { background: #fff; color: #111; border: 1px solid #e5e7eb; border-radius: 20px; padding: 32px; }
.card-dark { background: var(--glass-bg); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--glass-border); border-radius: 20px; padding: 28px; }
.search-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.search-input { flex: 1; min-width: 220px; background: #fff; color: #111; border: 1px solid #d1d5db; border-radius: 999px; padding: 13px 22px; font-size: 13px; outline: none; transition: border 0.2s; font-family: 'Plus Jakarta Sans', sans-serif; }
.search-input:focus { border-color: #2ca01c; }
.result-card { background: #fff; border: 1px solid #e5e7eb; border-radius: 18px; padding: 24px; margin-top: 18px; color: #111; }
.result-header { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; border-bottom: 1px solid #f3f4f6; padding-bottom: 14px; margin-bottom: 14px; }
.field-lbl { font-size: 10px; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.08em; }
.field-val { font-size: 13px; font-weight: 700; color: #111; font-family: monospace; margin-top: 3px; }
.key-grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 10px; margin-bottom: 14px; }
.key-cell { background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 10px; padding: 10px 12px; }
.act-block { background: #ecfdf5; border: 1px solid #a7f3d0; border-radius: 10px; padding: 14px; }
.act-key-display { font-family: monospace; font-size: 20px; font-weight: 800; color: #2ca01c; word-break: break-all; }
.result-actions { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.btn-dark-sm { display: inline-flex; align-items: center; gap: 6px; background: #393a3d; color: #fff; font-weight: 700; border: none; border-radius: 10px; padding: 10px 16px; font-size: 12px; cursor: pointer; transition: background 0.2s; text-decoration: none; font-family: 'Plus Jakarta Sans', sans-serif; }
.btn-dark-sm:hover { background: #2c2d30; }
.btn-outline-sm { display: inline-flex; align-items: center; gap: 6px; background: none; border: 1px solid #e5e7eb; color: #4b5563; border-radius: 10px; padding: 10px 16px; font-size: 12px; cursor: pointer; transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif; }
.btn-outline-sm:hover { background: #f9fafb; }
.empty-box { border: 2px dashed #d1d5db; background: #fff; border-radius: 14px; padding: 56px 24px; text-align: center; color: #9ca3af; }
.empty-box .ico { font-size: 44px; margin-bottom: 12px; }
.empty-box p { font-size: 13px; font-weight: 600; color: #6b7280; margin-bottom: 6px; }
.support-banner { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 16px; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.support-left { display: flex; gap: 12px; align-items: center; }
.support-left h4 { font-size: 14px; font-weight: 700; }
.support-left p { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }
.tab-bar { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.tab-btn { padding: 9px 20px; border-radius: 999px; font-size: 13px; font-weight: 700; border: 1px solid var(--glass-border); background: rgba(30,41,59,0.7); color: var(--text-secondary); cursor: pointer; transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif; }
.tab-btn.active { color: #0b1120; background: var(--accent); border-color: var(--accent); }
.tab-content { display: none; }
.tab-content.active { display: block; }
.step-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.step-item { display: flex; gap: 16px; background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 16px; padding: 22px; }
.step-num { width: 38px; height: 38px; flex-shrink: 0; border-radius: 50%; background: var(--accent); color: #0b1120; font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; }
.step-body h4 { font-size: 14px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.step-body p { font-size: 13px; color: var(--text-secondary); line-height: 1.7; }
.step-body code { display: block; background: rgba(0,0,0,0.5); border: 1px solid var(--glass-border); border-radius: 8px; padding: 10px 14px; font-size: 12px; color: var(--accent); margin-top: 10px; word-break: break-all; }
.metrics-grid { display: grid; gap: 18px; margin-bottom: 28px; }
@media(min-width:640px){ .metrics-grid { grid-template-columns: repeat(3, 1fr); } }
.metric-card { background: #fff; color: #111; border: 1px solid #e5e7eb; border-radius: 14px; padding: 20px; display: flex; justify-content: space-between; align-items: center; }
.metric-card .val { font-size: 26px; font-weight: 900; }
.metric-card .lbl { font-size: 10px; font-weight: 700; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 4px; }
.admin-grid { display: grid; gap: 24px; }
@media(min-width:960px){ .admin-grid { grid-template-columns: 320px 1fr; } }
.admin-panel { background: #fff; color: #111; border: 1px solid #e5e7eb; border-radius: 18px; padding: 24px; }
.admin-panel h3 { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: #374151; border-bottom: 1px solid #f3f4f6; padding-bottom: 12px; margin-bottom: 20px; display: flex; align-items: center; gap: 6px; }
table { width: 100%; border-collapse: collapse; font-size: 12px; }
th { text-align: left; font-size: 10px; font-weight: 700; text-transform: uppercase; color: #9ca3af; padding: 10px 12px; border-bottom: 1px solid #e5e7eb; }
td { padding: 12px; border-bottom: 1px solid #f9fafb; color: #374151; vertical-align: middle; }
tr:hover td { background: #fafafa; }
.badge-win { background: #eff6ff; color: #1d4ed8; border: 1px solid #bfdbfe; padding: 2px 8px; border-radius: 999px; font-size: 10px; font-weight: 700; }
.badge-mac { background: #faf5ff; color: #7c3aed; border: 1px solid #e9d5ff; padding: 2px 8px; border-radius: 999px; font-size: 10px; font-weight: 700; }
.text-green { color: #2ca01c; font-weight: 700; }
.text-mono { font-family: monospace; }
.admin-bar { display: flex; gap: 10px; margin-bottom: 24px; flex-wrap: wrap; }
.btn-sm { display: inline-flex; align-items: center; gap: 6px; background: none; border: 1px solid #d1d5db; color: #374151; border-radius: 8px; padding: 8px 14px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif; }
.btn-sm:hover { background: #f9fafb; }
.btn-sm.danger { border-color: #fca5a5; color: #dc2626; }
.btn-sm.danger:hover { background: #fef2f2; }
.alert-box { display: none; padding: 13px 16px; border-radius: 10px; font-size: 12px; margin-bottom: 20px; align-items: center; gap: 8px; }
.alert-box.success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; display: flex; }
.alert-box.error { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; display: flex; }
