/* ================================================================
   BeforePump — styles.css
   Design: Dark mode, electric-green accent, data-terminal aesthetic
   ================================================================ */

/* === DESIGN TOKENS === */
:root {
  --c-bg:           #07090f;
  --c-surface:      #0c1022;
  --c-card:         #0f1628;
  --c-card-hover:   #141d30;
  --c-border:       rgba(255,255,255,0.06);
  --c-border-acc:   rgba(0,255,148,0.22);

  --c-accent:       #00ff94;
  --c-accent-dim:   rgba(0,255,148,0.10);
  --c-accent-glow:  rgba(0,255,148,0.28);
  --c-blue:         #38bdf8;
  --c-purple:       #a78bfa;

  --c-text:         #e2eaf8;
  --c-text-sub:     #8896b0;
  --c-text-muted:   #4a566e;

  --c-success:      #00ff94;
  --c-warn:         #f59e0b;
  --c-danger:       #f43f5e;

  --font-head:   'Space Grotesk', -apple-system, sans-serif;
  --font-body:   'Inter', -apple-system, sans-serif;
  --font-mono:   'JetBrains Mono', 'Fira Code', monospace;
  --font-ar:     'Cairo', -apple-system, sans-serif;

  --r-sm: 6px;  --r: 12px;  --r-lg: 20px;  --r-xl: 28px;
  --container: 1200px;
  --sec-py: 110px;
  --card-p: 32px;

  --shadow-card: 0 4px 32px rgba(0,0,0,.55);
  --shadow-glow: 0 0 60px rgba(0,255,148,.14);
  --t: 240ms ease;
  --t-fast: 140ms ease;
}

/* === RESET === */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  background:var(--c-bg);
  color:var(--c-text);
  font-family:var(--font-body);
  line-height:1.65;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}
img { max-width:100%; height:auto; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }

/* === TYPOGRAPHY === */
h1,h2,h3,h4 { font-family:var(--font-head); line-height:1.15; font-weight:700; letter-spacing:-.02em; }
h1 { font-size:clamp(2.4rem,5vw,3.9rem); }
h2 { font-size:clamp(1.7rem,3.5vw,2.7rem); }
h3 { font-size:clamp(1rem,2vw,1.35rem); }
p  { color:var(--c-text-sub); line-height:1.78; }
strong { color:var(--c-text); font-weight:600; }

/* === LAYOUT === */
.container { width:100%; max-width:var(--container); margin:0 auto; padding:0 24px; }
section { padding:var(--sec-py) 0; }

/* === BUTTONS === */
.btn {
  display:inline-flex; align-items:center; gap:8px;
  padding:12px 24px; border-radius:var(--r);
  font-family:var(--font-head); font-weight:600; font-size:.94rem;
  cursor:pointer; border:none; transition:var(--t); white-space:nowrap;
}
.btn-lg { padding:15px 32px; font-size:1.02rem; }
.btn-primary { background:var(--c-accent); color:#07090f; }
.btn-primary:hover { background:#1affaa; transform:translateY(-2px); box-shadow:0 8px 30px rgba(0,255,148,.32); }
.btn-outline { background:transparent; color:var(--c-text); border:1px solid var(--c-border); }
.btn-outline:hover { border-color:var(--c-accent); color:var(--c-accent); }
.btn-ghost  { background:rgba(255,255,255,.05); color:var(--c-text-sub); border:1px solid var(--c-border); }
.btn-ghost:hover  { background:rgba(255,255,255,.09); color:var(--c-text); }
.btn-full { width:100%; justify-content:center; }

/* === NAV === */
.site-nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:0 24px; height:68px; display:flex; align-items:center;
  transition:var(--t);
}
.site-nav.scrolled {
  background:rgba(7,9,15,.92); backdrop-filter:blur(20px);
  border-bottom:1px solid var(--c-border);
}
.nav-inner {
  max-width:var(--container); width:100%; margin:0 auto;
  display:flex; align-items:center; gap:24px;
}
.logo {
  font-family:var(--font-head); font-size:1.28rem; font-weight:700;
  color:var(--c-text); display:flex; align-items:center; gap:9px;
}
.logo-dot { width:8px; height:8px; background:var(--c-accent); border-radius:50%; animation:blink 1.8s infinite; flex-shrink:0; }
.nav-links { display:flex; align-items:center; gap:32px; margin-left:32px; }
.nav-links a { font-size:.88rem; color:var(--c-text-sub); transition:var(--t-fast); font-weight:500; }
.nav-links a:hover { color:var(--c-text); }
.nav-actions { margin-left:auto; display:flex; align-items:center; gap:12px; }
.lang-toggle {
  font-family:var(--font-head); font-size:.82rem; font-weight:600;
  color:var(--c-text-sub); padding:5px 12px; border:1px solid var(--c-border);
  border-radius:var(--r-sm); transition:var(--t-fast);
}
.lang-toggle:hover, .lang-toggle[aria-current="page"] { color:var(--c-accent); border-color:var(--c-border-acc); }

/* === HERO === */
.hero {
  min-height:100vh; display:flex; align-items:center;
  padding-top:68px; position:relative; overflow:hidden;
}
.hero-bg { position:absolute; inset:0; z-index:0; pointer-events:none; }
.hero-bg::before {
  content:''; position:absolute; inset:0;
  background-image:linear-gradient(rgba(0,255,148,.025) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(0,255,148,.025) 1px,transparent 1px);
  background-size:56px 56px;
}
.hero-bg::after {
  content:''; position:absolute; top:-300px; right:-300px;
  width:900px; height:900px;
  background:radial-gradient(circle,rgba(0,255,148,.07) 0%,transparent 68%);
}
.hero-glow2 {
  position:absolute; bottom:-200px; left:-200px; width:700px; height:700px;
  background:radial-gradient(circle,rgba(56,189,248,.05) 0%,transparent 65%);
  pointer-events:none;
}
.hero-inner {
  position:relative; z-index:1;
  max-width:var(--container); width:100%; margin:0 auto;
  padding:80px 24px; display:grid; grid-template-columns:1fr 1fr;
  gap:72px; align-items:center;
}
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 14px; background:var(--c-accent-dim); border:1px solid var(--c-border-acc);
  border-radius:100px; font-size:.76rem; font-weight:700; color:var(--c-accent);
  margin-bottom:24px; font-family:var(--font-mono); letter-spacing:.06em;
}
.hero-title {
  margin-bottom:22px;
  color:#fff;
}
.hero-title span {
  background:linear-gradient(90deg,var(--c-accent),var(--c-blue));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.hero-sub { font-size:1.06rem; color:var(--c-text-sub); margin-bottom:38px; max-width:500px; }
.hero-ctas { display:flex; gap:14px; flex-wrap:wrap; margin-bottom:28px; }
.disclaimer-mini { font-size:.75rem; color:var(--c-text-muted); font-family:var(--font-mono); }

/* === SCANNER TERMINAL === */
.scanner-terminal {
  background:var(--c-card); border:1px solid var(--c-border);
  border-radius:var(--r-lg); overflow:hidden;
  box-shadow:var(--shadow-card), 0 0 90px rgba(0,255,148,.07);
}
.terminal-header {
  background:var(--c-surface); border-bottom:1px solid var(--c-border);
  padding:13px 18px; display:flex; align-items:center; gap:9px;
  font-family:var(--font-mono); font-size:.76rem; color:var(--c-text-sub);
}
.terminal-label { color:var(--c-accent); font-weight:700; }
.terminal-count { margin-left:auto; }
.scanner-table { width:100%; border-collapse:collapse; font-family:var(--font-mono); font-size:.78rem; }
.scanner-table th {
  padding:9px 15px; text-align:left; color:var(--c-text-muted);
  font-size:.68rem; text-transform:uppercase; letter-spacing:.08em;
  border-bottom:1px solid var(--c-border); background:rgba(255,255,255,.018);
}
.scanner-table td {
  padding:11px 15px; color:var(--c-text-sub); border-bottom:1px solid rgba(255,255,255,.025);
  transition:var(--t-fast);
}
.scanner-table tr:last-child td { border-bottom:none; }
.scanner-table tr:hover td { background:rgba(255,255,255,.018); }
.scanner-table .sym { color:var(--c-text); font-weight:700; }

.score-bar { width:72px; height:5px; background:rgba(255,255,255,.07); border-radius:3px; overflow:hidden; }
.score-fill { height:100%; background:linear-gradient(90deg,var(--c-blue),var(--c-accent)); border-radius:3px; transition:width 1.2s ease; }

.badge-signal  { display:inline-block; padding:2px 9px; background:rgba(0,255,148,.14); color:var(--c-accent); border-radius:4px; font-size:.68rem; font-weight:700; letter-spacing:.04em; animation:blink 2s infinite; }
.badge-watching{ display:inline-block; padding:2px 9px; background:rgba(56,189,248,.11); color:var(--c-blue); border-radius:4px; font-size:.68rem; font-weight:600; letter-spacing:.04em; }
.badge-ref     { display:inline-block; padding:2px 9px; background:rgba(255,255,255,.05); color:var(--c-text-muted); border-radius:4px; font-size:.68rem; }
.badge-good    { display:inline-block; padding:2px 9px; background:rgba(0,255,148,.12); color:var(--c-accent); border-radius:4px; font-size:.68rem; font-weight:700; }
.badge-possible{ display:inline-block; padding:2px 9px; background:rgba(245,158,11,.12); color:#f59e0b; border-radius:4px; font-size:.68rem; font-weight:600; }
.badge-late    { display:inline-block; padding:2px 9px; background:rgba(244,63,94,.12); color:var(--c-danger); border-radius:4px; font-size:.68rem; font-weight:600; }
.badge-wait    { display:inline-block; padding:2px 9px; background:rgba(255,255,255,.06); color:var(--c-text-muted); border-radius:4px; font-size:.68rem; }

.terminal-footer {
  padding:9px 18px; background:var(--c-surface); border-top:1px solid var(--c-border);
  font-family:var(--font-mono); font-size:.7rem; color:var(--c-text-muted);
  display:flex; align-items:center; gap:8px;
}

/* === LIVE DOT === */
.live-dot { width:8px; height:8px; background:var(--c-accent); border-radius:50%; flex-shrink:0; animation:livePulse 1.6s infinite; display:inline-block; }

/* === STATS BAR === */
.stats-bar {
  padding:56px 0; border-top:1px solid var(--c-border); border-bottom:1px solid var(--c-border);
  background:linear-gradient(180deg,var(--c-surface),transparent);
}
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:32px; text-align:center; }
.stat-num { display:block; font-family:var(--font-head); font-size:clamp(2rem,3vw,2.7rem); font-weight:700; color:var(--c-accent); line-height:1; margin-bottom:7px; }
.stat-label { font-size:.84rem; color:var(--c-text-sub); font-weight:500; }
.stat-note  { display:block; font-size:.68rem; color:var(--c-text-muted); font-family:var(--font-mono); margin-top:4px; }

/* === SECTION HEADER === */
.section-header { text-align:center; max-width:680px; margin:0 auto 60px; }
.section-tag { display:inline-block; font-family:var(--font-mono); font-size:.73rem; font-weight:700; color:var(--c-accent); letter-spacing:.14em; text-transform:uppercase; margin-bottom:14px; }
.section-header h2 { margin-bottom:14px; }
.section-header p { font-size:1.02rem; }

/* === HOW IT WORKS === */
.how-it-works { background:linear-gradient(180deg,transparent,var(--c-surface) 50%,transparent); }
.steps-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.step-card {
  background:var(--c-card); border:1px solid var(--c-border);
  border-radius:var(--r-lg); padding:var(--card-p); position:relative;
  transition:var(--t); overflow:hidden;
}
.step-card::before {
  content:''; position:absolute; top:0; left:0; right:0; height:2px;
  background:linear-gradient(90deg,transparent,var(--c-accent),transparent);
  opacity:0; transition:var(--t);
}
.step-card:hover { border-color:var(--c-border-acc); transform:translateY(-5px); box-shadow:var(--shadow-glow); }
.step-card:hover::before { opacity:1; }
.step-num { font-family:var(--font-mono); font-size:.7rem; color:var(--c-accent); font-weight:700; letter-spacing:.1em; margin-bottom:14px; }
.step-icon { font-size:2rem; margin-bottom:14px; }
.step-card h3 { color:var(--c-text); margin-bottom:10px; }
.step-card p  { font-size:.9rem; }

/* === FEATURES === */
.features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.feature-card {
  background:var(--c-card); border:1px solid var(--c-border);
  border-radius:var(--r-lg); padding:26px; transition:var(--t);
}
.feature-card:hover { border-color:rgba(56,189,248,.22); transform:translateY(-3px); }
.feature-icon { width:42px; height:42px; background:var(--c-accent-dim); border-radius:var(--r); display:flex; align-items:center; justify-content:center; font-size:1.15rem; margin-bottom:14px; }
.feature-card h3 { font-size:.98rem; color:var(--c-text); margin-bottom:7px; }
.feature-card p  { font-size:.86rem; }

/* === PREVIEW === */
.preview { background:var(--c-surface); }
.preview-window {
  background:var(--c-card); border:1px solid var(--c-border);
  border-radius:var(--r-xl); overflow:hidden;
  box-shadow:var(--shadow-card), 0 0 130px rgba(0,255,148,.05);
}
.preview-titlebar {
  background:var(--c-bg); border-bottom:1px solid var(--c-border);
  padding:14px 22px; display:flex; align-items:center; gap:14px;
}
.titlebar-dots { display:flex; gap:6px; }
.dot { width:12px; height:12px; border-radius:50%; }
.dot-r { background:#f43f5e; } .dot-y { background:#f59e0b; } .dot-g { background:#22c55e; }
.titlebar-url { flex:1; text-align:center; font-family:var(--font-mono); font-size:.75rem; color:var(--c-text-muted); background:rgba(255,255,255,.04); padding:5px 0; border-radius:6px; }
.preview-content { padding:22px; }
.preview-hdr { display:flex; justify-content:space-between; align-items:center; margin-bottom:18px; }
.preview-title { font-family:var(--font-head); font-size:.95rem; font-weight:600; color:var(--c-text); display:flex; align-items:center; gap:8px; }
.preview-meta  { font-family:var(--font-mono); font-size:.73rem; color:var(--c-text-muted); display:flex; gap:12px; }
.preview-table { width:100%; border-collapse:collapse; font-family:var(--font-mono); font-size:.8rem; }
.preview-table th { text-align:left; padding:9px 14px; font-size:.67rem; text-transform:uppercase; letter-spacing:.06em; color:var(--c-text-muted); border-bottom:1px solid var(--c-border); }
.preview-table td { padding:12px 14px; color:var(--c-text-sub); border-bottom:1px solid rgba(255,255,255,.028); }
.preview-table .sym  { color:var(--c-text); font-weight:700; }
.preview-table .pos  { color:#22c55e; } .preview-table .neg { color:var(--c-danger); }
.preview-table .hi   { color:var(--c-accent); font-weight:600; }

/* === SUB STATUS BAR above preview table === */
.sub-bar {
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 22px; background:var(--c-surface); border-bottom:1px solid var(--c-border);
  font-family:var(--font-mono); font-size:.73rem; color:var(--c-text-muted);
}
.sub-expiry { display:flex; align-items:center; gap:8px; }
.expiry-pill { background:rgba(0,255,148,.1); color:var(--c-accent); border:1px solid var(--c-border-acc); padding:3px 12px; border-radius:100px; font-size:.7rem; font-weight:700; }

/* === PRICING === */
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; max-width:920px; margin:0 auto; }
.pricing-card {
  background:var(--c-card); border:1px solid var(--c-border);
  border-radius:var(--r-xl); padding:34px 28px; text-align:center;
  transition:var(--t); position:relative;
}
.pricing-card.featured { border-color:var(--c-border-acc); background:linear-gradient(160deg,rgba(0,255,148,.04),var(--c-card)); }
.pricing-card:hover { transform:translateY(-5px); box-shadow:var(--shadow-glow); }
.pricing-badge {
  position:absolute; top:-12px; left:50%; transform:translateX(-50%);
  background:var(--c-accent); color:#07090f; font-size:.7rem; font-weight:700;
  padding:4px 16px; border-radius:100px; font-family:var(--font-mono);
  letter-spacing:.06em; white-space:nowrap;
}
.plan-name { font-family:var(--font-head); font-size:.85rem; font-weight:700; color:var(--c-text-sub); text-transform:uppercase; letter-spacing:.1em; margin-bottom:8px; }
.plan-price { font-family:var(--font-head); font-size:2.7rem; font-weight:700; color:var(--c-text); line-height:1; margin-bottom:4px; }
.plan-currency { font-size:1.1rem; vertical-align:super; }
.plan-period { font-size:.84rem; color:var(--c-text-muted); margin-bottom:22px; }
.plan-features { text-align:left; margin-bottom:26px; }
.plan-features li { font-size:.86rem; color:var(--c-text-sub); padding:7px 0; border-bottom:1px solid rgba(255,255,255,.04); display:flex; align-items:center; gap:8px; }
.plan-features li::before { content:'✓'; color:var(--c-accent); font-weight:700; flex-shrink:0; }
.payment-note { font-family:var(--font-mono); font-size:.69rem; color:var(--c-text-muted); margin-top:14px; }

/* === FAQ === */
.faq-list { max-width:800px; margin:0 auto; }
.faq-item { border-bottom:1px solid var(--c-border); }
.faq-q {
  width:100%; background:none; border:none; text-align:left;
  padding:22px 0; display:flex; justify-content:space-between;
  align-items:center; cursor:pointer; gap:16px;
}
.faq-q h3 { font-size:.97rem; color:var(--c-text); font-family:var(--font-head); font-weight:600; line-height:1.4; }
.faq-icon {
  width:28px; height:28px; min-width:28px; background:var(--c-card); border:1px solid var(--c-border);
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; color:var(--c-text-sub); transition:var(--t);
}
.faq-item.open .faq-icon { background:var(--c-accent-dim); border-color:var(--c-border-acc); color:var(--c-accent); transform:rotate(45deg); }
.faq-a { overflow:hidden; max-height:0; transition:max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-a { max-height:600px; padding-bottom:22px; }
.faq-a p { font-size:.93rem; line-height:1.82; }

/* === FOOTER === */
.site-footer { background:var(--c-surface); border-top:1px solid var(--c-border); padding:60px 24px 28px; }
.footer-top { max-width:var(--container); margin:0 auto 44px; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:44px; }
.footer-brand p { font-size:.86rem; margin-top:10px; max-width:270px; }
.footer-col h4 { font-size:.76rem; text-transform:uppercase; letter-spacing:.1em; color:var(--c-text-muted); margin-bottom:14px; font-family:var(--font-mono); }
.footer-col a { display:block; font-size:.86rem; color:var(--c-text-sub); margin-bottom:9px; transition:var(--t-fast); }
.footer-col a:hover { color:var(--c-text); }
.footer-bottom { max-width:var(--container); margin:0 auto; padding-top:28px; border-top:1px solid var(--c-border); display:flex; justify-content:space-between; align-items:flex-start; gap:24px; flex-wrap:wrap; }
.disclaimer { font-size:.76rem; color:var(--c-text-muted); max-width:700px; line-height:1.75; }
.footer-lang { display:flex; gap:8px; align-items:center; }
.footer-copy { text-align:center; padding-top:20px; font-size:.73rem; color:var(--c-text-muted); }

/* === SCROLL REVEAL === */
.reveal { opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.d1 { transition-delay:.1s; } .d2 { transition-delay:.2s; } .d3 { transition-delay:.3s; }

/* === ANIMATIONS === */
@keyframes livePulse { 0%,100%{box-shadow:0 0 0 0 rgba(0,255,148,.45)} 60%{box-shadow:0 0 0 7px rgba(0,255,148,0)} }
@keyframes blink    { 0%,100%{opacity:1} 50%{opacity:.45} }
@keyframes float    { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* === REDUCED MOTION === */
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
}

/* === RESPONSIVE === */
@media (max-width:1024px) {
  .hero-inner { grid-template-columns:1fr; gap:52px; }
  .steps-grid { grid-template-columns:1fr; }
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .pricing-grid { grid-template-columns:1fr; max-width:400px; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:768px) {
  :root { --sec-py:80px; }
  .nav-links { display:none; }
  .features-grid { grid-template-columns:1fr; }
  .hero-inner { padding:60px 24px; }
  .footer-top { grid-template-columns:1fr; gap:28px; }
  .footer-bottom { flex-direction:column; }
  .preview-table th:nth-child(6), .preview-table td:nth-child(6),
  .preview-table th:nth-child(5), .preview-table td:nth-child(5) { display:none; }
}

/* === ARABIC RTL OVERRIDES === */
[dir="rtl"] body { font-family:var(--font-ar); }
[dir="rtl"] h1,[dir="rtl"] h2,[dir="rtl"] h3,[dir="rtl"] h4 { font-family:var(--font-ar); letter-spacing:0; }
[dir="rtl"] .nav-links { margin-left:0; margin-right:32px; }
[dir="rtl"] .nav-actions { margin-left:0; margin-right:auto; }
[dir="rtl"] .scanner-table th,[dir="rtl"] .scanner-table td { text-align:right; }
[dir="rtl"] .preview-table th,[dir="rtl"] .preview-table td { text-align:right; }
[dir="rtl"] .faq-q { flex-direction:row-reverse; }
[dir="rtl"] .faq-q h3 { text-align:right; }
[dir="rtl"] .plan-features li { flex-direction:row-reverse; }
[dir="rtl"] .plan-features li::before { margin-right:0; margin-left:4px; }
[dir="rtl"] .footer-col a { text-align:right; }
[dir="rtl"] .section-header { text-align:center; }
[dir="rtl"] .hero-sub { text-align:right; }
[dir="rtl"] .hero-ctas { flex-direction:row-reverse; }
[dir="rtl"] .terminal-header { flex-direction:row-reverse; }
[dir="rtl"] .terminal-count { margin-left:0; margin-right:auto; }
[dir="rtl"] .nav-inner { flex-direction:row-reverse; }
[dir="rtl"] .logo { flex-direction:row-reverse; }

/* ── Landing Page Additions ──────────────────────────────────────── */
:root{
  --bg:#0d0f17;--card-bg:#131622;--card-bg2:#1a1e2e;
  --border:#232840;--text:#e8eaf6;--text-muted:#8892b0;
  --accent:#7c6aff;--accent2:#5f4bdb;
  --success:#23d18b;--warn:#f6c90e;--danger:#ff5c5c;
}
.flash { padding:.7rem 1.5rem; font-size:.88rem; }
.flash-success{background:rgba(35,209,139,.08);border-bottom:1px solid rgba(35,209,139,.2);color:#23d18b;}
.flash-error  {background:rgba(255,92,92,.08); border-bottom:1px solid rgba(255,92,92,.2); color:#ff5c5c;}

/* Nav */
.navbar{position:sticky;top:0;z-index:200;background:rgba(13,15,23,.9);backdrop-filter:blur(12px);border-bottom:1px solid var(--border);transition:box-shadow .3s;}
.navbar.scrolled{box-shadow:0 4px 20px rgba(0,0,0,.4);}
.nav-inner{max-width:1200px;margin:0 auto;padding:.75rem 1.5rem;display:flex;align-items:center;gap:1rem;}
.nav-logo{display:flex;align-items:center;gap:.5rem;text-decoration:none;color:var(--text);font-weight:800;font-size:1.15rem;}
.logo-icon{font-size:1.3rem;}
.nav-links{display:flex;align-items:center;gap:.25rem;flex:1;}
.nav-links a{color:var(--text-muted);text-decoration:none;padding:.4rem .8rem;border-radius:7px;font-size:.9rem;transition:all .2s;}
.nav-links a:hover{color:var(--text);background:var(--card-bg2);}
.btn-nav-login{color:var(--accent) !important;border:1px solid rgba(124,106,255,.3) !important;}
.btn-nav-cta{background:var(--accent) !important;color:#fff !important;font-weight:700 !important;padding:.45rem 1rem !important;border-radius:8px !important;}
.btn-nav-cta:hover{background:var(--accent2) !important;}
.nav-right{display:flex;align-items:center;gap:.75rem;margin-inline-start:auto;}
.lang-switcher{display:flex;align-items:center;gap:.35rem;font-size:.85rem;}
.lang-switcher a{color:var(--text-muted);text-decoration:none;transition:color .2s;}
.lang-switcher a.active{color:var(--accent);font-weight:700;}
.lang-switcher span{color:var(--border);}
.nav-hamburger{display:none;background:none;border:none;color:var(--text);font-size:1.4rem;cursor:pointer;}

/* Hero */
.hero{min-height:90vh;display:flex;align-items:center;gap:3rem;max-width:1200px;margin:0 auto;padding:4rem 1.5rem;}
.hero-content{flex:1;}
.hero-badge{display:inline-flex;align-items:center;gap:.5rem;background:rgba(124,106,255,.1);border:1px solid rgba(124,106,255,.25);border-radius:20px;padding:.3rem .9rem;font-size:.82rem;color:var(--accent);margin-bottom:1.5rem;}
.badge-dot{width:6px;height:6px;border-radius:50%;background:var(--success);animation:pulse 2s infinite;}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}
.hero-title{font-size:clamp(2.5rem,5vw,4rem);font-weight:800;line-height:1.1;margin-bottom:1.25rem;}
.grad{background:linear-gradient(135deg,var(--accent),#a78bfa,var(--success));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}
.hero-sub{font-size:1.1rem;color:var(--text-muted);max-width:520px;margin-bottom:2rem;line-height:1.7;}
.hero-cta{display:flex;gap:1rem;flex-wrap:wrap;}
.btn-hero-primary{background:var(--accent);color:#fff;padding:.85rem 2rem;border-radius:10px;text-decoration:none;font-weight:700;font-size:1rem;transition:all .2s;}
.btn-hero-primary:hover{background:var(--accent2);transform:translateY(-1px);}
.btn-hero-ghost{background:transparent;color:var(--text-muted);padding:.85rem 2rem;border-radius:10px;text-decoration:none;font-weight:600;font-size:1rem;border:1px solid var(--border2);transition:all .2s;}
.btn-hero-ghost:hover{color:var(--text);border-color:var(--border);}

/* Scanner mock */
.hero-visual{flex:1;max-width:460px;}
.scanner-mock{background:var(--card-bg);border:1px solid var(--border2);border-radius:14px;overflow:hidden;font-size:.88rem;}
.scanner-header{display:flex;align-items:center;gap:.5rem;padding:.75rem 1rem;background:var(--card-bg2);border-bottom:1px solid var(--border);}
.dot{width:10px;height:10px;border-radius:50%;display:inline-block;}
.dot.green{background:#23d18b;}.dot.yellow{background:#f6c90e;}.dot.red{background:#ff5c5c;}
.scanner-title{font-size:.8rem;color:var(--text-muted);margin-inline-start:.5rem;}
.scanner-body{padding:1rem;}
.scan-line{display:flex;align-items:center;gap:.75rem;padding:.45rem .5rem;border-radius:6px;color:var(--text-muted);transition:all .3s;margin-bottom:.3rem;}
.scan-line.active{background:rgba(124,106,255,.08);color:var(--text);}
.tag{font-size:.7rem;font-weight:700;padding:.1rem .4rem;border-radius:4px;background:rgba(35,209,139,.15);color:var(--success);}
.green-val{margin-inline-start:auto;color:var(--success);font-weight:700;}
.scanner-footer{padding:.6rem 1rem;border-top:1px solid var(--border);font-size:.78rem;color:var(--text-muted);display:flex;align-items:center;gap:.5rem;}
.scan-indicator{width:8px;height:8px;border-radius:50%;background:var(--success);animation:pulse 1.5s infinite;}

/* Stats bar */
.stats-bar{background:var(--card-bg);border-top:1px solid var(--border);border-bottom:1px solid var(--border);}
.stats-bar-inner{max-width:1200px;margin:0 auto;padding:1.25rem 1.5rem;display:flex;justify-content:space-around;gap:1rem;flex-wrap:wrap;}
.stat-item{text-align:center;}
.stat-num{font-size:1.8rem;font-weight:800;color:var(--accent);display:block;}
.stat-txt{font-size:.82rem;color:var(--text-muted);}
.stat-divider{width:1px;background:var(--border);align-self:stretch;}

/* Sections */
.section{padding:5rem 1.5rem;}
.section-dark{background:var(--card-bg);}
.section-inner{max-width:1200px;margin:0 auto;}
.section-header{text-align:center;margin-bottom:3rem;}
.section-header h2{font-size:2rem;font-weight:800;margin-bottom:.75rem;}
.section-header p{color:var(--text-muted);font-size:1rem;}

/* How it works */
.steps-row{display:flex;align-items:flex-start;gap:1.5rem;flex-wrap:wrap;}
.step-box{flex:1;min-width:220px;background:var(--card-bg2);border:1px solid var(--border);border-radius:14px;padding:1.75rem;text-align:center;}
.step-icon{font-size:2.5rem;margin-bottom:1rem;}
.step-box h3{font-size:1.1rem;font-weight:700;margin-bottom:.75rem;}
.step-box p{color:var(--text-muted);font-size:.9rem;line-height:1.6;}
.step-arrow{font-size:1.5rem;color:var(--accent);align-self:center;opacity:.5;}

/* Outcomes */
.outcomes-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(130px,1fr));gap:.75rem;margin-bottom:1rem;}
.outcome-card{border-radius:12px;padding:1.25rem;text-align:center;}
.card-success{background:rgba(35,209,139,.07);border:1px solid rgba(35,209,139,.2);}
.card-expired{background:rgba(136,146,176,.07);border:1px solid rgba(136,146,176,.2);}
.outcome-status{font-size:.75rem;margin-bottom:.5rem;color:var(--text-muted);}
.outcome-pct{font-size:1.3rem;font-weight:800;color:var(--success);margin-bottom:.3rem;}
.card-expired .outcome-pct{color:var(--text-muted);}
.outcome-date{font-size:.75rem;color:var(--text-muted);}
.outcomes-note{font-size:.8rem;color:var(--text-muted);font-style:italic;text-align:center;}

/* Pricing */
.pricing-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1.5rem;margin-bottom:2rem;}
.pricing-card{background:var(--card-bg2);border:2px solid var(--border);border-radius:16px;padding:2rem 1.5rem;text-align:center;position:relative;transition:all .2s;}
.pricing-card.featured{border-color:var(--accent);background:rgba(124,106,255,.07);}
.popular-badge{position:absolute;top:-12px;left:50%;transform:translateX(-50%);background:var(--accent);color:#fff;font-size:.75rem;font-weight:700;padding:.25rem .75rem;border-radius:20px;white-space:nowrap;}
.pricing-name{font-size:1.1rem;font-weight:700;margin-bottom:1rem;}
.pricing-price{margin-bottom:.5rem;}
.price-big{font-size:2.5rem;font-weight:800;color:var(--accent);}
.price-cur{font-size:1rem;color:var(--text-muted);}
.pricing-days{color:var(--text-muted);font-size:.9rem;margin-bottom:1.5rem;}
.btn-pricing{display:block;background:var(--accent);color:#fff;padding:.75rem;border-radius:9px;text-decoration:none;font-weight:700;transition:all .2s;}
.btn-pricing:hover{background:var(--accent2);}

/* Payment methods strip */
.payment-methods-strip{background:var(--card-bg2);border:1px solid var(--border);border-radius:12px;padding:1.25rem 1.5rem;margin-top:1rem;text-align:center;}
.pm-label{font-size:.9rem;color:var(--text-muted);margin-bottom:.75rem;}
.pm-list{display:flex;gap:.75rem;justify-content:center;flex-wrap:wrap;margin-bottom:.75rem;}
.pm-chip{background:var(--card-bg);border:1px solid var(--border2);border-radius:8px;padding:.4rem .9rem;font-size:.85rem;}
.pm-note{font-size:.82rem;color:var(--text-muted);}

/* FAQ */
.faq-inner{max-width:780px;}
.faq-list{display:flex;flex-direction:column;gap:.5rem;}
.faq-item{background:var(--card-bg2);border:1px solid var(--border);border-radius:10px;overflow:hidden;}
.faq-q{width:100%;background:none;border:none;color:var(--text);font-family:inherit;font-size:.95rem;font-weight:600;padding:1rem 1.25rem;display:flex;justify-content:space-between;align-items:center;cursor:pointer;text-align:start;gap:1rem;}
.faq-q:hover{background:rgba(255,255,255,.02);}
.faq-icon{color:var(--accent);font-size:1.2rem;flex-shrink:0;}
.faq-a{max-height:0;overflow:hidden;color:var(--text-muted);font-size:.9rem;line-height:1.7;padding:0 1.25rem;transition:max-height .3s ease,padding .3s ease;}

/* Footer */
.site-footer{background:var(--card-bg);border-top:1px solid var(--border);padding:2.5rem 1.5rem;}
.footer-inner{max-width:1200px;margin:0 auto;display:flex;flex-direction:column;align-items:center;gap:1rem;text-align:center;}
.footer-logo{font-size:1.2rem;font-weight:800;display:flex;align-items:center;gap:.5rem;}
.footer-links{display:flex;gap:1.5rem;flex-wrap:wrap;justify-content:center;}
.footer-links a{color:var(--text-muted);text-decoration:none;font-size:.9rem;transition:color .2s;}
.footer-links a:hover{color:var(--accent);}
.footer-copy{font-size:.82rem;color:var(--text-muted);}
.footer-disclaimer{font-size:.78rem;color:var(--text-dim);max-width:600px;line-height:1.5;}

/* Mobile */
@media(max-width:900px){
  .hero{flex-direction:column;padding:3rem 1.5rem;gap:2rem;text-align:center;}
  .hero-sub{margin:0 auto 2rem;}
  .hero-cta{justify-content:center;}
  .hero-visual{max-width:100%;width:100%;}
  .steps-row{flex-direction:column;}
  .step-arrow{display:none;}
  .nav-links{display:none;flex-direction:column;position:absolute;top:100%;left:0;right:0;background:var(--card-bg);border-bottom:1px solid var(--border);padding:1rem;}
  .nav-links.open{display:flex;}
  .nav-hamburger{display:block;}
  .stat-divider{display:none;}
  .pricing-grid{grid-template-columns:1fr;}
}
