/* ── LEADMATIC THEME ── */

:root {
  --midnight: #0f172a;
  --deep-blue: #1e3a5f;
  --amber: #f59e0b;
  --amber-light: #fef3c7;
  --off-white: #fafaf8;
  --cream: #f5f5f0;
  --dark-text: #1a1a2e;
  --muted: #6b7280;
  --light-text: #e2e8f0;
  --red-accent: #dc2626;
  --green: #16a34a;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--off-white);
  color: var(--dark-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--midnight);
  padding: 0 2rem;
  height: 52px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: white;
  letter-spacing: -0.02em;
}
.tagline {
  font-size: 0.8rem;
  color: var(--light-text);
  opacity: 0.6;
}
.topbar-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}
.topbar-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.15s;
}
.topbar-link:hover { color: white; }
.topbar-link--accent {
  background: var(--amber);
  color: #0f172a !important;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  font-weight: 600;
}
.topbar-link--accent:hover { background: #fbbf24; }

/* ── HERO ── */
.hero {
  background: var(--midnight);
  padding: 5rem 2rem 4rem;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--amber);
  border-radius: 50%;
  display: inline-block;
}
.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.05;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}
.hero-headline .line-strike {
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  text-decoration-color: var(--red-accent);
  text-decoration-thickness: 3px;
}
.hero-headline .line-red {
  color: var(--amber);
  display: block;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.hero-pricing {
  margin-top: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.price {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: -0.03em;
}
.price-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

/* ── PHONE MOCKUP ── */
.phone-mockup {
  display: flex;
  justify-content: center;
}
.phone-frame {
  background: #111;
  border-radius: 36px;
  padding: 3px;
  width: 240px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
}
.phone-notch {
  width: 80px;
  height: 24px;
  background: #111;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
}
.phone-content {
  background: #1a1a2e;
  border-radius: 28px;
  padding: 1rem 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.notif {
  background: #252545;
  border-radius: 12px;
  padding: 0.6rem 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.06);
}
.notif-1 { border-left: 3px solid var(--amber); }
.notif-2 { border-left: 3px solid #3b82f6; }
.notif-3 { border-left: 3px solid var(--green); }
.notif-icon { font-size: 1rem; }
.notif-body { display: flex; flex-direction: column; gap: 0.15rem; }
.notif-name { font-size: 0.65rem; font-weight: 600; color: rgba(255,255,255,0.9); }
.notif-msg { font-size: 0.58rem; color: rgba(255,255,255,0.5); line-height: 1.3; }

.stat-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--amber);
  display: block;
  letter-spacing: -0.03em;
}
.stat-desc { font-size: 0.72rem; color: rgba(255,255,255,0.5); display: block; }

/* ── PROOFBAR ── */
.proofbar {
  background: var(--cream);
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 1.2rem 2rem;
}
.proofbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.proofbar-label { font-size: 0.78rem; color: var(--muted); font-weight: 500; white-space: nowrap; }
.proofbar-items { display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; }
.proof-item { font-size: 0.85rem; font-weight: 500; color: var(--deep-blue); }
.proof-sep { color: var(--amber); font-weight: 700; }

/* ── SHARED SECTION LABEL ── */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}
.section-label.light { color: rgba(255,255,255,0.4); }

/* ── PROBLEM ── */
.problem { padding: 5rem 2rem; background: var(--off-white); }
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-headline h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--midnight);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin-bottom: 3rem;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.problem-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.problem-icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.problem-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 0.5rem;
}
.problem-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.65; }
.problem-tagline {
  background: var(--midnight);
  border-radius: 12px;
  padding: 2rem 2.5rem;
}
.problem-tagline p { font-size: 1.05rem; color: rgba(255,255,255,0.85); line-height: 1.7; }
.problem-tagline strong { color: var(--amber); }

/* ── HOW IT WORKS ── */
.howitworks { padding: 5rem 2rem; background: var(--cream); }
.howitworks-inner { max-width: 1200px; margin: 0 auto; }
.hiw-headline h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--midnight);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.hiw-steps { display: flex; flex-direction: column; gap: 0; }
.hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  align-items: start;
}
.hiw-step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.04em;
}
.step-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 0.5rem;
}
.step-content p { font-size: 0.95rem; color: var(--muted); line-height: 1.7; max-width: 600px; }

/* ── SERVICES ── */
.services { padding: 5rem 2rem; background: var(--off-white); }
.services-inner { max-width: 1200px; margin: 0 auto; }
.services-headline h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--midnight);
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.service-card-accent {
  background: var(--midnight);
  border-color: rgba(255,255,255,0.1);
}
.service-card-accent h3, .service-card-accent p, .service-card-accent .service-stat {
  color: white;
}
.service-card-accent .service-stat { color: var(--amber); }
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--amber-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--midnight);
}
.service-card-accent .service-icon { background: rgba(245,158,11,0.15); }
.service-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--midnight);
  margin-bottom: 0.5rem;
}
.service-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.65; margin-bottom: 1rem; }
.service-stat {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--amber);
  background: var(--amber-light);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
}
.service-card-accent .service-stat { background: rgba(245,158,11,0.15); }

/* ── OUTCOMES ── */
.outcomes { padding: 5rem 2rem; background: var(--deep-blue); }
.outcomes-inner { max-width: 1200px; margin: 0 auto; }
.outcomes-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 3rem;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.outcome { border-left: 3px solid var(--amber); padding-left: 1.5rem; }
.outcome-num {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--amber);
  letter-spacing: -0.04em;
  display: block;
  line-height: 1;
}
.outcome-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin: 0.4rem 0 0.75rem;
}
.outcome-desc { font-size: 0.9rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

/* ── CLOSING ── */
.closing { padding: 5rem 2rem; background: var(--midnight); }
.closing-inner { max-width: 800px; margin: 0 auto; }
.closing-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 2rem;
}
.closing-body { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.75; margin-bottom: 1.5rem; }
.closing-rule { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin: 2.5rem 0; }
.closing-vision {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  color: var(--amber);
  font-weight: 600;
  line-height: 1.55;
}

/* ── FOOTER ── */
.site-footer { background: var(--off-white); border-top: 1px solid rgba(0,0,0,0.06); padding: 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.footer-inner .wordmark { color: var(--midnight); }
.footer-inner p { font-size: 0.82rem; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-right { order: -1; }
  .phone-mockup { display: none; }
  .stat-row { display: none; }
  .hero-headline { font-size: 2.2rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .hiw-step { grid-template-columns: 50px 1fr; gap: 1rem; }
  .step-num { font-size: 1.8rem; }
  .proofbar-items { display: none; }
  .hero-pricing { flex-direction: column; gap: 0.25rem; }
  .footer-inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .problem, .howitworks, .services, .outcomes, .closing { padding: 3rem 1.25rem; }
}