/* ========================
   LeadCatcher — Custom Theme
   ======================== */

:root {
  --bg: #0B0B0E;
  --bg-card: #13131A;
  --bg-card-hover: #1a1a24;
  --fg: #FAFAFA;
  --fg-muted: #8B8B9A;
  --fg-dim: #5A5A66;
  --accent: #F9C846;
  --accent-dim: rgba(249, 200, 70, 0.12);
  --border: rgba(250, 250, 250, 0.07);
  --border-strong: rgba(250, 250, 250, 0.14);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 8% 100px;
  overflow: hidden;
}

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

.hero-content {
  max-width: 860px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
  padding: 6px 16px 6px 10px;
  border: 1px solid rgba(249,200,70,0.25);
  border-radius: 100px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 28px;
}

.highlight {
  color: var(--accent);
}

.hero-lede {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--fg-muted);
  max-width: 600px;
  margin-bottom: 64px;
}

.hero-stat-row {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0;
  max-width: fit-content;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.hero-stat {
  padding: 20px 32px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat:last-child { border-right: none; }

.stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  color: var(--fg-dim);
  line-height: 1.4;
  max-width: 120px;
}

/* ---- Services ---- */
.services {
  padding: 100px 8%;
  border-top: 1px solid var(--border);
}

.section-header {
  margin-bottom: 64px;
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.2s, background 0.2s;
}

.service-card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ---- How It Works ---- */
.how-it-works {
  padding: 100px 8%;
  border-top: 1px solid var(--border);
}

.steps-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 64px;
}

.step {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.step-connector {
  width: 40px;
  height: 1px;
  background: var(--border-strong);
  flex-shrink: 0;
}

.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

.pricing-note {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 800px;
}

.pricing-block {
  flex: 1;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pricing-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

.pricing-label {
  font-size: 11px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.pricing-value {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
}

/* ---- Closing ---- */
.closing {
  padding: 120px 8%;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, var(--bg) 0%, rgba(249,200,70,0.03) 100%);
}

.closing-inner {
  max-width: 800px;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 24px;
}

.closing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 560px;
}

.closing-cta-row {
  margin-bottom: 40px;
}

.closing-demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--accent);
  color: #0B0B0E;
  text-decoration: none;
  border-radius: 10px;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: opacity 0.15s, transform 0.1s;
}

.closing-demo-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.closing-stack {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.stack-label {
  font-size: 12px;
  color: var(--fg-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.stack-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.stack-pill {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  background: var(--accent-dim);
  color: var(--accent);
  border-radius: 100px;
  border: 1px solid rgba(249,200,70,0.2);
}

/* ---- Footer ---- */
.site-footer {
  padding: 40px 8%;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-dim);
  padding-left: 12px;
  border-left: 1px solid var(--border);
}

.footer-copy {
  font-size: 13px;
  color: var(--fg-dim);
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero { padding: 100px 6% 80px; }
  .services { padding: 80px 6%; }
  .how-it-works { padding: 80px 6%; }
  .closing { padding: 80px 6%; }
  .site-footer { padding: 32px 6%; }

  .hero-stat-row {
    grid-template-columns: 1fr;
  }
  .hero-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .hero-stat:last-child { border-bottom: none; }

  .steps-row {
    flex-direction: column;
    gap: 16px;
  }
  .step-connector {
    width: 1px;
    height: 24px;
  }

  .pricing-note {
    flex-direction: column;
    align-items: stretch;
  }
  .pricing-divider {
    width: auto;
    height: 1px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-right { display: none; }
  .footer-tagline { display: none; }
}