:root {
  --black: #08090d;
  --dark: #0e1118;
  --dark2: #141720;
  --blue: #1756a8;
  --blue2: #2272d4;
  --blue-glow: rgba(23,86,168,0.28);
  --white: #f0f2f7;
  --muted: #6b7a96;
  --gold: #e8c44a;
  --red: #e03c3c;
  --green: #2ecc71;
  --border: rgba(255,255,255,0.07);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── NAV ─── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,9,13,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 32px;
  gap: 24px;
}
.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo-m {
  width: 36px; height: 36px;
  background: var(--blue2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #fff;
  font-family: 'Inter', sans-serif;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.btn-ghost-sm {
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  background: transparent;
  padding: 8px 16px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-ghost-sm:hover { border-color: var(--blue2); color: var(--blue2); }
.btn-blue-sm {
  background: var(--blue2);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-blue-sm:hover { background: #1d62bb; transform: translateY(-1px); }

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  padding-top: 68px;
  background: var(--black);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(8,9,13,0.92) 0%, rgba(8,9,13,0.82) 45%, rgba(8,9,13,0.55) 100%);
  z-index: 1;
}
#hero .hero-bg { z-index: 0; }
#hero .hero-grid-overlay { z-index: 1; }
#hero .hero-inner { z-index: 2; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 20% 50%, black 20%, transparent 80%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-left {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(23,86,168,0.18);
  border: 1px solid rgba(34,114,212,0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue2);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.1s;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--blue2);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.3; }
}
h1.hero-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(62px, 7vw, 96px);
  line-height: 0.92;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.25s;
}
h1.hero-headline span { color: var(--blue2); }
.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-style: italic;
  color: var(--blue2);
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.4s;
  border-left: 3px solid var(--blue2);
  padding-left: 16px;
}
.hero-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 540px;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.55s;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease forwards 0.7s;
}
.btn-primary {
  background: var(--blue2);
  color: #fff;
  border: none;
  padding: 16px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  letter-spacing: 0.3px;
}
.btn-primary:hover { background: #1d62bb; transform: translateY(-2px); box-shadow: 0 8px 32px rgba(34,114,212,0.4); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 16px 28px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
}
.btn-ghost:hover { border-color: var(--blue2); color: var(--blue2); transform: translateY(-2px); }

/* Hero Right — Sign Mockup */
.hero-right {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.5s;
}
.hero-sign-wrap {
  position: relative;
  width: 380px;
}
.hero-sign-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08), 0 0 80px rgba(23,86,168,0.25);
  transform: rotate(-2deg);
  transition: transform 0.3s;
}
.hero-sign-card:hover { transform: rotate(0deg) scale(1.02); }
.sign-top-bar {
  background: #1a3a6b;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sign-logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sign-m-icon {
  width: 38px; height: 38px;
  background: var(--blue2);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 22px;
}
.sign-brand-text {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
}
.sign-brand-text span {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 1px;
  opacity: 0.7;
  text-transform: uppercase;
}
.sign-for-lease {
  background: #1a3a6b;
  padding: 20px;
  text-align: center;
}
.sign-for-lease-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 46px;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1;
}
.sign-for-lease-sub {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 4px;
}
.sign-bottom {
  background: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.sign-qr-box {
  width: 80px; height: 80px;
  background: #000;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.sign-qr-svg {
  width: 64px; height: 64px;
}
.sign-info {
  flex: 1;
}
.sign-phone {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #1a3a6b;
  line-height: 1;
}
.sign-url {
  font-size: 11px;
  color: var(--blue2);
  font-weight: 600;
}
.sign-verified-badge {
  background: linear-gradient(135deg, #e8f4ff, #d0e8ff);
  border: 1px solid #90c0f0;
  border-radius: 8px;
  padding: 6px 10px;
  text-align: center;
  flex-shrink: 0;
}
.sign-verified-check { font-size: 18px; }
.sign-verified-text {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 800;
  color: #1756a8;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-align: center;
  margin-top: 2px;
}
.sign-stars {
  color: var(--gold);
  font-size: 10px;
  text-align: center;
}
.hero-float-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--gold);
  color: #0a0a0a;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(232,196,74,0.4);
  animation: floatY 3s ease-in-out infinite;
  line-height: 1.3;
}
.hero-float-badge2 {
  position: absolute;
  bottom: 20px;
  left: -30px;
  background: var(--dark2);
  border: 1px solid rgba(34,114,212,0.4);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  animation: floatY 4s ease-in-out infinite 1s;
  line-height: 1.4;
}
.float-dot { display: inline-block; width: 8px; height: 8px; background: #2ecc71; border-radius: 50%; margin-right: 6px; animation: pulse 1.5s ease infinite; }
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  background: var(--blue2);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marqueeScroll 30s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.marquee-track span::after {
  content: '·';
  color: rgba(255,255,255,0.5);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── STAT BAR ─── */
.stat-bar {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 32px;
}
.stat-bar-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 16px 20px;
  border-right: 1px solid var(--border);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s;
}
.stat-item:last-child { border-right: none; }
.stat-item.visible { opacity: 1; transform: translateY(0); }
.stat-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 52px;
  color: var(--blue2);
  line-height: 1;
  display: block;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.5px;
  margin-top: 6px;
  text-transform: uppercase;
}

/* ─── SECTIONS COMMON ─── */
section { padding: 100px 32px; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue2);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 24px;
}
.lead-text {
  font-size: 16px;
  color: var(--muted);
  max-width: 660px;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* ─── PROBLEM CARDS ─── */
#problem { background: var(--dark); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.problem-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition: border-color 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s;
}
.problem-card.visible { opacity: 1; transform: translateY(0); }
.problem-card:hover { border-color: rgba(34,114,212,0.4); transform: translateY(-4px); }
.problem-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  color: var(--blue2);
  margin-bottom: 12px;
}
.problem-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.problem-body {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── BEFORE/AFTER ─── */
#comparison { background: var(--black); }
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.comparison-col {
  border-radius: 16px;
  padding: 36px 32px;
  border: 1px solid;
}
.comparison-col.bad {
  background: rgba(224,60,60,0.06);
  border-color: rgba(224,60,60,0.2);
}
.comparison-col.good {
  background: rgba(23,86,168,0.08);
  border-color: rgba(34,114,212,0.3);
}
.comparison-header {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.comparison-col.bad .comparison-header { color: var(--red); }
.comparison-col.good .comparison-header { color: var(--blue2); }
.comparison-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.comparison-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.6;
}
.comparison-col.bad .comparison-list li { color: rgba(240,242,247,0.75); }
.comparison-col.good .comparison-list li { color: rgba(240,242,247,0.85); }
.ci { flex-shrink: 0; font-size: 16px; margin-top: 1px; }
.intent-strip {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue2) 100%);
  border-radius: 16px;
  padding: 48px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.intent-text h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 36px;
  line-height: 1.05;
  text-transform: uppercase;
}
.intent-text p { font-size: 15px; color: rgba(255,255,255,0.8); margin-top: 8px; }

/* ─── HOW IT WORKS ─── */
#how { background: var(--dark); }
.steps-list { margin-top: 56px; display: flex; flex-direction: column; gap: 0; }
.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s;
}
.step-row.visible { opacity: 1; transform: translateY(0); }
.step-row:last-child { border-bottom: none; }
.step-row:nth-child(even) .step-img { order: -1; }
.step-img {
  border-radius: 16px;
  background: var(--dark2);
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 300px;
}
.step-img.portrait {
  aspect-ratio: 3/4;
}
.step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: 16px;
}
.step-img-placeholder {
  font-size: 80px;
  opacity: 0.3;
}
.step-img-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(8,9,13,0.8);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 1px;
}
.step-content {}
.step-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(23,86,168,0.15);
  border: 1px solid rgba(34,114,212,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue2);
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.step-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 100px;
  line-height: 1;
  color: rgba(34,114,212,0.08);
  position: absolute;
  top: -20px;
  right: 0;
}
.step-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.05;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.step-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 20px;
}
.step-proof {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.25);
  padding: 8px 14px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #2ecc71;
  letter-spacing: 0.5px;
}

/* ─── LIVE DEMO ─── */
#demo { background: var(--black); }
.demo-embed {
  margin-top: 48px;
  border-radius: 20px;
  background: var(--dark2);
  border: 1px solid rgba(34,114,212,0.3);
  overflow: hidden;
  box-shadow: 0 0 80px rgba(23,86,168,0.2);
}
.demo-browser-bar {
  background: var(--dark);
  border-bottom: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.browser-dots { display: flex; gap: 6px; }
.browser-dot { width: 10px; height: 10px; border-radius: 50%; }
.browser-dot.r { background: #ff5f57; }
.browser-dot.y { background: #febc2e; }
.browser-dot.g { background: #28c840; }
.browser-url {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}
.demo-screen {
  padding: 60px 48px;
  text-align: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0e1118, #141720);
}
.demo-screen-icon { font-size: 64px; margin-bottom: 20px; }
.demo-screen h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.demo-screen p { color: var(--muted); font-size: 15px; max-width: 480px; margin-bottom: 28px; }
.demo-callouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.demo-callout {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
}
.demo-callout-icon { font-size: 28px; margin-bottom: 10px; }
.demo-callout-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--white);
  margin-bottom: 6px;
}
.demo-callout-text { font-size: 12px; color: var(--muted); }

/* ─── FEATURES ─── */
#features { background: var(--dark); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.feature-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s;
}
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover { border-color: rgba(34,114,212,0.4); transform: translateY(-4px); }
.feature-icon { font-size: 32px; margin-bottom: 16px; }
.feature-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-body { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ─── MATH ─── */
#math { background: var(--black); }
.math-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.math-box {
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s;
}
.math-box.visible { opacity: 1; transform: translateY(0); }
.math-box:nth-child(1) { background: rgba(23,86,168,0.12); border: 1px solid rgba(34,114,212,0.25); }
.math-box:nth-child(2) { background: rgba(232,196,74,0.08); border: 1px solid rgba(232,196,74,0.25); }
.math-box:nth-child(3) { background: rgba(46,204,113,0.08); border: 1px solid rgba(46,204,113,0.25); }
.math-amount {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  margin-bottom: 12px;
}
.math-box:nth-child(1) .math-amount { color: var(--blue2); }
.math-box:nth-child(2) .math-amount { color: var(--gold); }
.math-box:nth-child(3) .math-amount { color: #2ecc71; }
.math-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }
.math-pullquote {
  margin-top: 48px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 22px;
  color: var(--white);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  line-height: 1.55;
}

/* ─── FOR BROKERAGES ─── */
#brokerages { background: var(--dark); }
.brokerage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.brokerage-col {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s;
}
.brokerage-col:hover { border-color: rgba(34,114,212,0.4); }
.brokerage-col-icon { font-size: 36px; margin-bottom: 16px; }
.brokerage-col-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 14px;
}
.brokerage-col-body { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ─── PRICING ─── */
#pricing { background: var(--black); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 56px;
}
.pricing-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px 40px;
  position: relative;
  transition: all 0.3s;
}
.pricing-card.featured {
  border-color: var(--blue2);
  box-shadow: 0 0 60px rgba(23,86,168,0.2);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #0a0a0a;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 16px;
  border-radius: 100px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-plan-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--blue2);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pricing-price {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 72px;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-price span {
  font-size: 24px;
  color: var(--muted);
  font-weight: 400;
}
.pricing-price .pricing-per-location {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.pricing-sub { font-size: 13px; color: var(--muted); margin-bottom: 28px; }
.pricing-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.pricing-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  align-items: flex-start;
  line-height: 1.5;
}
.pricing-check { color: #2ecc71; flex-shrink: 0; font-weight: 700; }
.pricing-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 20px; font-style: italic; }

/* ─── FAQ ─── */
#faq { background: var(--dark); }
.faq-list { margin-top: 56px; display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--blue2); }
.faq-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(34,114,212,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--blue2);
  transition: transform 0.3s;
  margin-top: 2px;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 0 24px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 820px;
}
.faq-item.open .faq-answer { display: block; }

/* ─── GUARANTEE ─── */
#guarantee { background: var(--black); }
.guarantee-inner {
  background: var(--dark2);
  border: 1px solid rgba(34,114,212,0.3);
  border-radius: 24px;
  padding: 64px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 80px rgba(23,86,168,0.12);
}
.guarantee-glow {
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(34,114,212,0.12), transparent 70%);
  pointer-events: none;
}
.guarantee-avatar {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--dark), var(--blue));
  border: 3px solid rgba(34,114,212,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
}
.guarantee-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue2);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.guarantee-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 56px;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.guarantee-body {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.guarantee-attribution {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue2);
}

/* ─── FINAL CTA ─── */
#finalcta {
  background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.finalcta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(23,86,168,0.15), transparent 70%);
  pointer-events: none;
}
.finalcta-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.92;
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.finalcta-headline span { color: var(--blue2); }
.finalcta-body {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.75;
  position: relative;
  z-index: 2;
}
.finalcta-bullets {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}
.finalcta-bullet {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}
.finalcta-bullet::before { content: '✓'; color: #2ecc71; }
.finalcta-ctas { position: relative; z-index: 2; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 64px 32px 24px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-logo-area { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-tagline { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 8px; }
.footer-region { font-size: 13px; color: rgba(107,122,150,0.7); margin-bottom: 20px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--blue2); background: rgba(34,114,212,0.1); }
.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer-contact-icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: var(--muted); text-decoration: none; }
.footer-legal a:hover { color: var(--white); }

/* ─── STICKY MOBILE BAR ─── */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: rgba(14,17,24,0.97);
  border-top: 1px solid var(--border);
  padding: 12px 16px;
  gap: 10px;
}
.sticky-bar-btn {
  flex: 1;
  padding: 14px 10px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s;
}
.sticky-bar-btn.call { background: var(--dark2); color: var(--white); border: 1px solid var(--border); }
.sticky-bar-btn.cta { background: var(--blue2); color: #fff; }

/* ─── POPUP MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--dark2);
  border: 1px solid rgba(34,114,212,0.4);
  border-radius: 20px;
  padding: 48px 44px;
  width: 100%;
  max-width: 540px;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(23,86,168,0.2);
  animation: modalSlide 0.4s ease;
}
@keyframes modalSlide {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 22px;
  cursor: pointer;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--white); }
.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(23,86,168,0.15);
  border: 1px solid rgba(34,114,212,0.3);
  padding: 5px 12px;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--blue2);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.modal-title {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 38px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.modal-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.form-input, .form-select {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus { border-color: var(--blue2); }
.form-input::placeholder { color: rgba(107,122,150,0.5); }
.form-select option { background: var(--dark); }
.modal-submit {
  background: var(--blue2);
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  margin-top: 6px;
}
.modal-submit:hover { background: #1d62bb; transform: translateY(-1px); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  #nav .nav-links { display: none; }
  section { padding: 72px 20px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 60px 20px 80px; }
  .hero-right { display: none; }
  h2 { font-size: 44px; }
  .stat-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); }
  .stat-item { background: var(--dark); border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .problem-grid { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .step-row { grid-template-columns: 1fr; gap: 32px; }
  .step-row:nth-child(even) .step-img { order: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .math-grid { grid-template-columns: 1fr; }
  .brokerage-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .demo-callouts { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .guarantee-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 28px; text-align: center; }
  .guarantee-avatar { margin: 0 auto; }
  .guarantee-title { font-size: 44px; }
  .intent-strip { text-align: center; justify-content: center; }
  .intent-strip .btn-primary { margin: 0 auto; }
  .finalcta-bullets { flex-direction: column; align-items: center; }
  .sticky-bar { display: flex; }
  body { padding-bottom: 76px; }
  .modal { padding: 32px 24px; margin: 0 12px; border-radius: 16px 16px 0 0; position: fixed; bottom: 0; left: 0; right: 0; max-width: 100%; }
  .modal-overlay { align-items: flex-end; padding: 0; }
  .form-row { grid-template-columns: 1fr; }
  #nav { padding: 0 20px; }
  .nav-actions { gap: 6px; }
  .btn-ghost-sm { display: none; }
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-icon svg, .brokerage-col-icon svg, .demo-callout-icon svg {
  color: var(--blue2);
}
.step-badge svg {
  color: var(--blue2);
}
.step-proof svg {
  color: #2ecc71;
}
.footer-contact-icon svg {
  color: var(--muted);
}
.feature-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.brokerage-col-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
.demo-callout-icon {
  font-size: 28px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-screen-icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── GOLD ACCENT SYSTEM ── */
:root { --gold: #e8c44a; --gold2: #f0d060; --gold-glow: rgba(232,196,74,0.2); }

/* Stat bar numbers → gold */
.stat-num { color: var(--gold) !important; }

/* Step big background numbers → gold */
.step-num { color: rgba(232,196,74,0.07) !important; }

/* Step badges — alternate gold accent on odd steps */
.step-row:nth-child(odd) .step-badge {
  background: rgba(232,196,74,0.1);
  border-color: rgba(232,196,74,0.35);
  color: var(--gold);
}
.step-row:nth-child(odd) .step-badge svg { color: var(--gold); }

/* Problem card numbers → gold */
.problem-num { color: var(--gold) !important; }

/* Math box 3 (net profit) → gold amount */
.math-box:nth-child(3) .math-amount { color: var(--gold) !important; }

/* Feature card icons — alternate gold every other card */
.feature-card:nth-child(odd) .feature-icon svg { color: var(--gold); }

/* Section tag → keep blue, but gold on alternating sections */
#math .section-tag,
#brokerages .section-tag { color: var(--gold); }

/* Gold divider line */
.gold-rule {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0 24px;
}

/* Pricing gold highlights */
.plan-gold-tag {
  background: var(--gold);
  color: #0a0a0a;
}
.price-per-lead {
  color: var(--gold);
  font-family: 'Inter', sans-serif;
  font-weight: 900;
}
.setup-callout {
  background: rgba(232,196,74,0.08);
  border: 1px solid rgba(232,196,74,0.25);
  border-radius: 10px;
  padding: 14px 18px;
  margin: 16px 0;
}
.setup-callout-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.setup-callout-amount {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--white);
  line-height: 1;
}
.setup-callout-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0;
}
.per-lead-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232,196,74,0.12);
  border: 1px solid rgba(232,196,74,0.3);
  border-radius: 8px;
  padding: 10px 14px;
  margin: 12px 0;
  width: 100%;
}
.per-lead-amount {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.per-lead-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}
.per-lead-text strong { color: var(--white); font-size: 13px; display: block; }


/* ── APPLE TYPOGRAPHY SYSTEM ── */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-feature-settings: 'kern' 1, 'liga' 1, 'calt' 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headlines — Inter tight, Apple-grade */
h1, h2, h3, h4 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

h2 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 800;
  text-transform: none;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 20px;
}

/* Hero headline override */
h1.hero-headline {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.96;
  text-transform: none;
}

/* Section tags — Inter small caps style */
.section-tag {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Buttons */
.btn-primary, .btn-ghost, .btn-blue-sm, .btn-ghost-sm {
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.01em;
}

/* Step titles */
.step-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  text-transform: none;
  margin-bottom: 16px;
}

/* Step badge */
.step-badge {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

/* Comparison header */
.comparison-header {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
}

/* Stat numbers */
.stat-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 48px;
  letter-spacing: -0.04em;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Problem card */
.problem-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 64px;
  letter-spacing: -0.05em;
  line-height: 1;
}
.problem-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.problem-body { font-size: 14px; }

/* Feature cards */
.feature-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
}

/* Pricing */
.pricing-price {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 64px;
  letter-spacing: -0.05em;
}
.pricing-price span { font-size: 22px; font-weight: 400; }
.pricing-price .pricing-per-location { font-size: 12px; }
.pricing-plan-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
}

/* Math amounts */
.math-amount {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 58px;
  letter-spacing: -0.04em;
}

/* Guarantee title */
.guarantee-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -0.04em;
  text-transform: none;
}

/* Final CTA */
.finalcta-headline {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(48px, 6.5vw, 88px);
  letter-spacing: -0.05em;
  line-height: 0.97;
  text-transform: none;
}

/* Nav logo */
.nav-logo {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* Step number watermark */
.step-num {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 120px;
  letter-spacing: -0.06em;
}

/* Hero badge */
.hero-badge {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* Intent strip */
.intent-text h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.03em;
  text-transform: none;
}

/* Marquee */
.marquee-track span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

/* Footer col title */
.footer-col-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
}

/* Modal */
.modal-title {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 34px;
  letter-spacing: -0.04em;
  text-transform: none;
}
.form-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
}

/* Per-lead + setup callout typography */
.per-lead-amount, .setup-callout-amount, .math-amount {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.setup-callout-label, .per-lead-text strong {
  font-family: 'Inter', sans-serif;
}


@media (max-width: 768px) {
  #guarantee .section-inner > div {
    grid-template-columns: 1fr !important;
    padding: 36px 24px !important;
    text-align: center;
    gap: 28px !important;
  }
  #guarantee .section-inner > div > div:first-child {
    margin: 0 auto;
  }
  #dashboard-showcase .section-inner > div {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}
