/* LeadRush — Dark, sharp, confident */

:root {
  --bg: #0F172A;
  --bg-2: #1E293B;
  --bg-card: #162032;
  --fg: #F1F5F9;
  --fg-muted: #94A3B8;
  --accent: #F97316;
  --accent-dim: #C2410C;
  --border: #334155;
  --green: #22C55E;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.15;
}

a { color: var(--accent); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }

/* --- HEADER --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.site-header nav { display: flex; gap: 2rem; }
.site-header nav a { color: var(--fg-muted); font-size: 0.9rem; font-weight: 500; }
.site-header nav a:hover { color: var(--fg); opacity: 1; }

/* --- LAYOUT HELPERS --- */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-headline {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 3rem;
}

/* --- HERO --- */
.hero {
  padding: 5rem 0 4rem;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  color: var(--fg);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.hero-stat-row {
  display: flex;
  gap: 2.5rem;
}

.hero-stat { display: flex; flex-direction: column; }

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
  max-width: 140px;
  line-height: 1.4;
}

/* Hero graphic - phone mockup */
.hero-graphic {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mock {
  background: #111827;
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: 12px;
  width: 260px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
}

.phone-top-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 6px;
}

.phone-notch {
  width: 80px;
  height: 24px;
  background: #111827;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.phone-content {
  background: #1E293B;
  border-radius: 24px;
  padding: 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 320px;
}

.msg { display: flex; flex-direction: column; }
.msg.incoming { align-items: flex-start; }
.msg.outgoing { align-items: flex-end; }
.msg.system { align-items: center; }

.msg-bubble {
  padding: 8px 12px;
  border-radius: 14px;
  font-size: 0.78rem;
  line-height: 1.4;
  max-width: 190px;
}

.msg.incoming .msg-bubble {
  background: #334155;
  color: var(--fg);
  border-bottom-left-radius: 4px;
}

.msg.outgoing .msg-bubble {
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.msg.system .msg-bubble.booked {
  background: rgba(34, 197, 94, 0.15);
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.72rem;
}

.msg-time {
  font-size: 0.68rem;
  color: var(--fg-muted);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.msg.outgoing .msg-time { justify-content: flex-end; }

.check { color: var(--green); }

.phone-ai-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--fg-muted);
  font-weight: 500;
}

.ai-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.callout-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: #fff;
  border-radius: 14px;
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 24px rgba(249,115,22,0.4);
}

.callout-num {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.callout-text {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  opacity: 0.85;
}

/* --- HOW IT WORKS --- */
.how-it-works {
  background: var(--bg-2);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
  margin-bottom: 3rem;
}

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

.step-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.step-icon { margin-bottom: 1rem; }

.step h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 2.5rem;
  width: 60px;
}

.step-connector::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--border), var(--accent), var(--border));
}

.tools-row {
  text-align: center;
  margin-top: 1rem;
}

.tools-label {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.tools { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

.tool-chip {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--fg-muted);
  background: var(--bg);
}

/* --- RESULTS --- */
.results { background: var(--bg); }

.results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.result-card {
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.result-problem { background: var(--bg-2); }
.result-fixed { background: var(--bg-card); border-color: rgba(249,115,22,0.3); }

.result-icon { margin-bottom: 1.25rem; }
.result-icon.accent { color: var(--accent); }
.result-icon { color: var(--fg-muted); }

.result-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
  margin-bottom: 1.25rem;
}

.result-card ul { list-style: none; margin-bottom: 2rem; }
.result-card li {
  font-size: 0.9rem;
  color: var(--fg-muted);
  padding: 0.4rem 0;
  padding-left: 1.25rem;
  position: relative;
}

.result-problem li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #EF4444;
  border-radius: 50%;
}

.result-fixed li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
}

.result-money {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.money-label { font-size: 0.75rem; color: var(--fg-muted); margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }

.money-num { font-family: 'DM Serif Display', serif; font-size: 1.6rem; color: #EF4444; line-height: 1.2; }
.money-num.accent-num { color: var(--green); }

.results-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
  text-align: center;
  font-style: italic;
}

/* --- WHAT YOU GET --- */
.what-you-get { background: var(--bg-2); }

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.offer-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.offer-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.offer-item h4 {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fg);
  margin-bottom: 0.3rem;
}

.offer-item p { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.4; }

.pricing-banner {
  background: var(--bg);
  border: 1px solid rgba(249,115,22,0.4);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.pricing-label { font-size: 0.78rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 0.5rem; }

.price-big {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--accent);
}

.price-per { font-size: 1.1rem; color: var(--fg-muted); }

.pricing-note { font-size: 0.78rem; color: var(--fg-muted); margin-top: 0.5rem; }

.pricing-model { display: flex; flex-direction: column; gap: 0.75rem; }

.model-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border-radius: 10px;
  font-size: 0.85rem;
}

.model-item strong { color: var(--fg); font-weight: 600; }
.model-item span { color: var(--accent); font-weight: 700; }

/* --- CLOSING --- */
.closing { background: var(--bg); }

.closing-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.closing-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.closing-headline {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.closing-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-brand .wordmark-sm {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--fg);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p { font-size: 0.82rem; color: var(--fg-muted); max-width: 280px; line-height: 1.5; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.85rem; color: var(--fg-muted); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--fg-muted);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-graphic { display: none; }
  
  .steps-grid { grid-template-columns: 1fr; }
  .step-connector { display: none; }
  
  .results-grid,
  .offer-grid,
  .pricing-banner { grid-template-columns: 1fr; }
  
  .footer-inner { flex-direction: column; }
  
  .section-inner { padding: 3rem 1.5rem; }
  .header-inner { padding: 1rem 1.5rem; }
  .site-header nav { display: none; }
  
  .hero-stat-row { flex-direction: column; gap: 1.5rem; }
}

@media (max-width: 480px) {
  .phone-mock { display: none; }
}