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

:root {
  --bg: #0b1628;
  --bg-2: #0f1f35;
  --bg-3: #142442;
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.12);
  --accent-glow: rgba(245,158,11,0.25);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border: rgba(255,255,255,0.07);
  --card-bg: rgba(255,255,255,0.03);
  --card-border: rgba(255,255,255,0.06);
  --radius: 14px;
  --radius-sm: 8px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--bg); }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  background: rgba(11,22,40,0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { max-width: 1200px; margin: 0 auto; }
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: -0.01em;
}
.nav-logo strong { color: var(--text); }

/* SECTION LABEL */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,158,11,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,158,11,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border: 1px solid var(--card-border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--card-bg);
  margin-bottom: 32px;
}
.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}

.hero-title {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-title-accent {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
}

/* DASHBOARD MOCK */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.dashboard-mock {
  width: 100%;
  max-width: 360px;
  background: var(--bg-2);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,158,11,0.1);
}
.mock-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-dim);
}
.mock-dots span:first-child { background: #ff5f57; }
.mock-dots span:nth-child(2) { background: #febc2e; }
.mock-dots span:last-child { background: #28c840; }
.mock-title { font-size: 12px; color: var(--text-muted); font-weight: 500; }

.mock-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }

.lead-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 10px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  animation: lead-in 0.5s ease-out;
}
.lead-item--active {
  border-color: rgba(245,158,11,0.2);
  background: rgba(245,158,11,0.04);
}
@keyframes lead-in {
  from { opacity: 0; transform: translateX(10px); }
  to { opacity: 1; transform: translateX(0); }
}
.lead-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.lead-avatar--blue { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.lead-avatar--green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.lead-info { flex: 1; min-width: 0; }
.lead-name { font-size: 13px; font-weight: 600; color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; }
.lead-source { font-size: 11px; color: var(--text-dim); }
.lead-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.badge--booked { background: rgba(34,197,94,0.15); color: #22c55e; }
.badge--qualified { background: rgba(59,130,246,0.15); color: #3b82f6; }

.mock-spark {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(245,158,11,0.08);
  border-radius: 8px;
  border: 1px solid rgba(245,158,11,0.15);
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
}
.spark-icon { color: var(--accent); }

/* VOICE PILL */
.voice-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text-muted);
}
.voice-ring {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  position: relative;
}
.voice-ring::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(245,158,11,0.3);
  animation: ring-pulse 1.5s ease-out infinite;
}
@keyframes ring-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.8); opacity: 0; }
}
.voice-dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; }

/* PROBLEM SECTION */
.problem {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-header { margin-bottom: 60px; }
.problem-title {
  font-size: clamp(32px, 4vw, 52px);
  color: var(--text);
  max-width: 640px;
}
.problem-stats {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 60px;
  padding: 48px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}
.problem-stat { text-align: center; }
.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 12px;
}
.stat-desc { font-size: 15px; color: var(--text-muted); max-width: 200px; }
.problem-divider { width: 1px; height: 80px; background: var(--border); flex-shrink: 0; }
.problem-quote {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.problem-quote p {
  font-size: 20px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.problem-quote span { font-size: 13px; color: var(--text-dim); }

/* FEATURES */
.features { padding: 100px 48px; }
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-title {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--text);
  margin-bottom: 64px;
  max-width: 600px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  padding: 28px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.feature-card:hover {
  border-color: rgba(245,158,11,0.3);
  background: rgba(245,158,11,0.03);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* STATS SECTION */
.stats-section {
  padding: 80px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner { max-width: 1200px; margin: 0 auto; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 48px;
}
.stat-item {
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-item .stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}
.stat-item .stat-label {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 220px;
  margin: 0 auto;
}
.stats-tagline {
  text-align: center;
  font-size: 20px;
  color: var(--text-muted);
}
.stats-tagline strong { color: var(--text); }

/* PHILOSOPHY */
.philosophy {
  padding: 100px 48px;
}
.philosophy-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.philosophy-overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.philosophy-title {
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--text);
  margin-bottom: 40px;
}
.philosophy-body p {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

/* PRICING */
.pricing {
  padding: 100px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-title {
  font-size: clamp(28px, 3.5vw, 44px);
  color: var(--text);
  margin-bottom: 48px;
  max-width: 560px;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.pricing-card {
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  position: relative;
}
.pricing-card--featured {
  border-color: rgba(245,158,11,0.4);
  background: rgba(245,158,11,0.04);
}
.pricing-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-card-header {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.pricing-price { margin-bottom: 16px; }
.pricing-from {
  font-size: 13px;
  color: var(--text-dim);
  display: block;
  margin-bottom: 4px;
}
.pricing-amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--text);
}
.pricing-per {
  font-size: 20px;
  color: var(--text-muted);
  margin-left: 2px;
}
.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.65;
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-features li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  background: var(--accent-dim);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23f59e0b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.pricing-note {
  text-align: center;
  font-size: 15px;
  color: var(--text-dim);
}
.pricing-note strong { color: var(--text-muted); }

/* CLOSING */
.closing {
  padding: 100px 48px;
}
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--accent-dim);
  border: 1px solid rgba(245,158,11,0.2);
  margin-bottom: 32px;
}
.closing-title {
  font-size: clamp(28px, 3.5vw, 48px);
  color: var(--text);
  margin-bottom: 24px;
}
.closing-body {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}
.closing-cta {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent);
}

/* FOOTER */
.footer {
  padding: 48px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  margin-bottom: 6px;
}
.footer-logo strong { color: var(--text); }
.footer-tagline { font-size: 13px; color: var(--text-dim); }
.footer-meta { font-size: 13px; color: var(--text-dim); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; max-width: 400px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 0 0 32px; margin-bottom: 32px; }
  .stat-item:last-child { border-bottom: none; margin-bottom: 0; }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 48px; }
  .hero-visual { align-items: flex-start; }
  .dashboard-mock { max-width: 100%; }
  .hero-title { font-size: 36px; }
  .features-grid { grid-template-columns: 1fr; }
  .problem-stats { flex-direction: column; gap: 32px; }
  .problem-divider { width: 80px; height: 1px; }
  .nav { padding: 16px 24px; }
  .footer-inner { flex-direction: column; gap: 20px; text-align: center; }
  .pricing, .features, .problem, .philosophy, .closing, .stats-section { padding: 60px 24px; }
}