/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0e1a;
  color: #c8cdd5;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; }

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { font-size: 1.25rem; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.logo-dot { color: #f97316; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { font-size: 0.875rem; font-weight: 500; color: #8b92a5; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit; font-weight: 600; font-size: 0.9375rem;
  padding: 12px 28px; border-radius: 10px; border: none; cursor: pointer;
  transition: all 0.2s; text-decoration: none;
  background: #f97316; color: #fff;
}
.btn:hover { background: #ea680c; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(249,115,22,0.3); }
.btn-outline {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.15); color: #fff;
}
.btn-outline:hover { border-color: #f97316; color: #f97316; background: rgba(249,115,22,0.08); box-shadow: none; }
.btn-lg { padding: 16px 36px; font-size: 1.0625rem; border-radius: 12px; }
.btn-sm { padding: 8px 20px; font-size: 0.8125rem; border-radius: 8px; }

/* ========== HERO ========== */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  justify-content: center; text-align: center; padding: 120px 24px 80px;
}
.hero-glow {
  position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, rgba(249,115,22,0.04) 40%, transparent 70%);
  pointer-events: none;
  animation: pulse 6s ease-in-out infinite alternate;
}
@keyframes pulse { 0% { opacity: 0.6; transform: translateX(-50%) scale(1); } 100% { opacity: 1; transform: translateX(-50%) scale(1.1); } }
.hero-content { position: relative; z-index: 1; }
.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; color: #fff;
  line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 24px;
}
.accent {
  background: linear-gradient(135deg, #f97316, #fb923c, #f59e0b);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub { font-size: 1.1875rem; max-width: 560px; margin: 0 auto 36px; color: #9ca3b4; line-height: 1.7; }
.hero-note { margin-top: 16px; font-size: 0.8125rem; color: #6b7280; }

/* ========== SOCIAL PROOF ========== */
.proof {
  padding: 48px 24px;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: rgba(255,255,255,0.01);
}
.proof-label { text-align: center; font-size: 0.8125rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; color: #6b7280; margin-bottom: 32px; }
.proof-stats { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stat-num { font-size: 1.75rem; font-weight: 800; color: #fff; }
.stat-label { font-size: 0.8125rem; color: #6b7280; }

/* ========== SECTIONS ========== */
.section { padding: 100px 24px; }
.section-alt { background: rgba(255,255,255,0.02); }
.section-title { font-size: 2.25rem; font-weight: 800; color: #fff; text-align: center; letter-spacing: -0.02em; margin-bottom: 8px; }
.section-sub { text-align: center; color: #6b7280; margin-bottom: 56px; font-size: 1.0625rem; }

/* ========== STEPS ========== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step { text-align: center; padding: 40px 24px; }
.step-icon {
  width: 72px; height: 72px; border-radius: 16px;
  background: rgba(249,115,22,0.1); color: #f97316;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; border: 1px solid rgba(249,115,22,0.2);
}
.step h3 { font-size: 1.1875rem; color: #fff; margin-bottom: 10px; }
.step p { font-size: 0.9375rem; color: #8b92a5; max-width: 280px; margin: 0 auto; }

/* ========== PRICING CARDS ========== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.card {
  background: #111827; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px; padding: 36px 28px; position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-2px); }
.card-popular { border-color: #f97316; background: linear-gradient(180deg, rgba(249,115,22,0.06) 0%, #111827 100%); }
.popular-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: #f97316; color: #fff; font-size: 0.75rem; font-weight: 700;
  padding: 4px 16px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.05em;
}
.card-header { margin-bottom: 28px; }
.card-header h3 { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.price { margin-bottom: 8px; }
.price-amount { font-size: 2.75rem; font-weight: 800; color: #fff; letter-spacing: -0.03em; }
.price-period { font-size: 1rem; color: #6b7280; font-weight: 500; }
.card-tagline { font-size: 0.875rem; color: #6b7280; }
.features { list-style: none; margin-bottom: 28px; }
.features li { padding: 10px 0; font-size: 0.9375rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
.features li:last-child { border-bottom: none; }
.feat-detail { font-size: 0.8125rem; color: #6b7280; }
.card .btn { width: 100%; }

/* ========== DIFFERENTIATORS ========== */
.diff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 64px; }
.diff-card {
  padding: 32px; border-radius: 14px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
}
.diff-card h3 { font-size: 1.125rem; color: #fff; margin-bottom: 8px; }
.diff-card p { font-size: 0.9375rem; color: #8b92a5; }

/* ========== COMPARISON TABLE ========== */
.comparison { margin-top: 24px; }
.comparison-title { font-size: 1.375rem; font-weight: 700; color: #fff; text-align: center; margin-bottom: 24px; }
.comparison-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.comparison-table {
  width: 100%; border-collapse: collapse; font-size: 0.9375rem;
  min-width: 560px;
}
.comparison-table th, .comparison-table td {
  padding: 14px 16px; text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; color: #c8cdd5; font-weight: 500; }
.comparison-table th { color: #6b7280; font-weight: 600; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.04em; }
.comparison-table th:nth-child(2) { color: #f97316; }
.yes { color: #22c55e; font-weight: 600; }
.no { color: #ef4444; font-weight: 600; }
.maybe { color: #eab308; font-weight: 500; }

/* ========== FAQ ========== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #111827; border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; overflow: hidden;
}
.faq-item summary {
  padding: 20px 24px; cursor: pointer; font-weight: 600; color: #fff;
  font-size: 1rem; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after { content: '+'; font-size: 1.25rem; color: #6b7280; transition: transform 0.2s; }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 24px 20px; color: #8b92a5; font-size: 0.9375rem; line-height: 1.7; }

/* ========== FINAL CTA ========== */
.cta-section {
  padding: 120px 24px; text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(249,115,22,0.06) 100%);
}
.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 16px; }
.cta-sub { font-size: 1.125rem; color: #8b92a5; margin-bottom: 36px; }
.cta-email { margin-top: 20px; font-size: 0.875rem; color: #6b7280; }
.cta-email a { color: #f97316; }
.cta-email a:hover { text-decoration: underline; }

/* ========== FOOTER ========== */
.footer { padding: 40px 24px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer p { font-size: 0.8125rem; color: #4b5563; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.8125rem; color: #4b5563; transition: color 0.2s; }
.footer-links a:hover { color: #8b92a5; }

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; gap: 8px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .diff-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .nav-links a:not(.btn) { display: none; }
  .proof-stats { gap: 32px; }
  .hero { padding: 100px 24px 60px; }
  .section { padding: 64px 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
