/* ============================================
   LocalDesk — Dark Tech Aesthetic
   ============================================ */

:root {
  --bg: #050510;
  --bg-2: #0a0a18;
  --bg-card: #0d0d22;
  --fg: #ffffff;
  --fg-2: #b0b0cc;
  --fg-muted: #5a5a7a;
  --accent: #00d4ff;
  --accent-dim: rgba(0, 212, 255, 0.15);
  --accent-glow: 0 0 30px rgba(0, 212, 255, 0.4);
  --warning: #ff6b35;
  --warning-bg: rgba(255, 107, 53, 0.1);
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(0, 212, 255, 0.3);
  --radius: 12px;
  --font-display: 'Inter', system-ui, -apple-system, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

a { color: var(--accent); text-decoration: none; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(5, 5, 16, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  filter: drop-shadow(0 0 8px rgba(0,245,255,0.3));
}
.nav-logo-img:hover { filter: drop-shadow(0 0 14px rgba(0,245,255,0.5)); }
.nav-cta {
  background: var(--accent);
  color: var(--bg);
  font-weight: 700;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: 8px;
  transition: box-shadow 0.2s;
}
.nav-cta:hover { box-shadow: var(--accent-glow); }

/* ============================================
   URGENCY BANNER
   ============================================ */
.urgency-banner {
  background: var(--bg-2);
  border-bottom: 1px solid rgba(255, 107, 53, 0.25);
  padding: 14px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.urgency-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--warning), transparent);
}
.urgency-inner {
  max-width: 760px;
  margin: 0 auto;
}
.urgency-line-1 {
  font-size: 15px;
  font-weight: 700;
  color: var(--warning);
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.urgency-line-2 {
  font-size: 13px;
  color: var(--fg-2);
}
.urgency-line-2 strong {
  color: var(--fg);
  font-weight: 600;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 100px 24px 80px;
  text-align: center;
  overflow: hidden;
}
/* Ambient background glow */
.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
/* Grid lines decoration */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 32px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-headline .highlight {
  color: var(--accent);
  position: relative;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-2);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg);
  font-weight: 800;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 10px;
  transition: box-shadow 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary:hover {
  box-shadow: var(--accent-glow);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  display: inline-block;
  color: var(--fg-2);
  font-size: 14px;
  font-weight: 500;
}
.hero-price-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--fg-muted);
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px;
  background: var(--bg-2);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-text {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.5;
}

/* ============================================
   WHO IT'S FOR
   ============================================ */
.who-section {
  padding: 64px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.who-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.who-headline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 12px;
}
.who-sub {
  font-size: 16px;
  color: var(--fg-2);
  margin-bottom: 36px;
}
.who-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.who-chip {
  padding: 8px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-2);
  transition: border-color 0.2s, color 0.2s;
}
.who-chip:hover {
  border-color: var(--border-accent);
  color: var(--accent);
}

/* ============================================
   SMART TABS
   ============================================ */
.tabs-section {
  padding: 80px 24px;
}
.tabs-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.tabs-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  text-align: center;
  margin-bottom: 12px;
}
.tabs-sub {
  font-size: 16px;
  color: var(--fg-2);
  text-align: center;
  margin-bottom: 48px;
}

/* Tab bar */
.tab-bar {
  display: flex;
  gap: 4px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 5px;
  margin-bottom: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-bar::-webkit-scrollbar { display: none; }
.tab-btn {
  flex: 1;
  padding: 10px 16px;
  background: transparent;
  border: none;
  border-radius: 8px;
  color: var(--fg-muted);
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--fg-2); background: rgba(255,255,255,0.04); }
.tab-btn.active {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.25);
}

/* Tab panels */
.tab-panels {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  padding: 40px;
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* HOW IT WORKS */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-step {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  position: relative;
}
.how-step-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.how-step-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 22px;
}
.how-step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.how-step-body {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.6;
}
.how-step-connector {
  position: absolute;
  top: 52px;
  right: -28px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--border-accent), transparent);
  display: none;
}
.how-step:last-child .how-step-connector { display: none; }
.how-timeline-badge {
  margin-top: 28px;
  text-align: center;
  padding: 12px 20px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  display: inline-block;
}

/* WHAT YOU GET */
.wyg-list { list-style: none; }
.wyg-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.wyg-item:last-child { border-bottom: none; }
.wyg-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.wyg-name {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.wyg-desc {
  font-size: 13px;
  color: var(--fg-2);
}

/* PRICING TAB */
.pricing-box {
  background: var(--bg-2);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}
.pricing-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  color: var(--fg);
  margin-bottom: 4px;
}
.pricing-amount span {
  font-size: 28px;
  font-weight: 600;
  vertical-align: super;
}
.pricing-period {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.pricing-divider {
  width: 60px;
  height: 1px;
  background: var(--border);
  margin: 0 auto 32px;
}
.pricing-original {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 28px;
  font-size: 16px;
  color: var(--fg-muted);
}
.pricing-original-amount {
  font-weight: 700;
  text-decoration: line-through;
  color: var(--fg-muted);
}
.pricing-original-label {
  font-size: 13px;
  padding: 4px 10px;
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  color: var(--warning);
  font-weight: 600;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--fg-2);
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-lock {
  font-size: 13px;
  color: var(--fg-muted);
  padding: 12px 16px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
}

/* FAQ TAB */
.faq-list { list-style: none; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-body);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer-inner {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.65;
  padding-bottom: 20px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.final-cta-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warning);
  background: var(--warning-bg);
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}
.final-cta-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.final-cta-sub {
  font-size: 16px;
  color: var(--fg-2);
  margin-bottom: 36px;
}
.final-cta .btn-primary { font-size: 18px; padding: 16px 48px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 24px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand { font-size: 14px; font-weight: 700; color: var(--fg); }
.footer-tagline { font-size: 13px; color: var(--fg-muted); margin-top: 2px; }
.footer-legal { font-size: 12px; color: var(--fg-muted); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .stats-inner { grid-template-columns: 1fr; gap: 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 24px; }
  .stat-item:last-child { border-bottom: none; }
  .how-grid { grid-template-columns: 1fr; }
  .tab-btn { font-size: 12px; padding: 8px 12px; }
  .tab-panels { padding: 24px 20px; }
}
@media (max-width: 600px) {
  .hero { padding: 64px 20px 56px; }
  .hero-headline { letter-spacing: -1px; }
  .tabs-section { padding: 56px 16px; }
  .pricing-box { padding: 28px 20px; }
  .pricing-amount { font-size: 56px; }
  .final-cta { padding: 72px 20px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
  .nav-cta { padding: 8px 16px; font-size: 12px; }
}

/* Scrollbar for body */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }