:root {
  --bg: #FAF8F5;
  --bg-alt: #F0EBE3;
  --fg: #1A1A2E;
  --fg-muted: #6B6B7A;
  --accent: #D4621A;
  --accent-dark: #B0521A;
  --navy: #1A1A2E;
  --border: #E2DDD6;
  --card-bg: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', monospace;
  --max-w: 1160px;
  --radius: 12px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--navy);
  padding: 14px 24px;
}
.stats-bar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.stat__number {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat__label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  max-width: 200px;
}
.stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ── Nav ── */
.nav {
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--fg);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}
.nav__tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
}

/* ── Hero ── */
.hero {
  padding: 72px 24px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow-pill {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.trust-badge {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--bg-alt);
  padding: 5px 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
}
.trust-sep { color: var(--border); font-size: 1.2rem; }

/* ── Phone Mock ── */
.hero__visual { display: flex; justify-content: center; align-items: flex-end; }
.phone-mock { display: flex; flex-direction: column; align-items: center; }
.phone-mock__frame {
  background: var(--fg);
  border-radius: 36px;
  padding: 12px;
  width: 240px;
  box-shadow: 0 32px 64px rgba(0,0,0,0.18), 0 8px 16px rgba(0,0,0,0.12);
}
.phone-mock__screen {
  background: #fff;
  border-radius: 26px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gbp-header { display: flex; gap: 10px; }
.gbp-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #D4621A, #E8854A);
  border-radius: 10px;
  flex-shrink: 0;
}
.gbp-info { flex: 1; }
.gbp-name { font-size: 0.82rem; font-weight: 700; color: var(--fg); margin-bottom: 2px; }
.gbp-rating { display: flex; align-items: center; gap: 4px; margin-bottom: 2px; }
.stars { color: #F4A100; font-size: 0.7rem; }
.review-count { font-size: 0.65rem; color: var(--fg-muted); }
.gbp-category { font-size: 0.65rem; color: var(--fg-muted); }
.gbp-verified { font-size: 0.65rem; color: #1a73e8; font-weight: 600; margin-top: 2px; }
.gbp-actions { display: flex; gap: 6px; }
.action-chip {
  flex: 1; background: #F1F3F4; border-radius: 20px; padding: 5px 0;
  font-size: 0.6rem; text-align: center; color: var(--fg);
}
.action-chip--active { background: #E8F0FE; color: #1a73e8; font-weight: 600; }
.gbp-hours { background: #F8F9FA; border-radius: 8px; padding: 8px 10px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.65rem; color: var(--fg-muted); padding: 2px 0; }
.hours-row--highlight { color: #188038; font-weight: 600; }
.gbp-photo-row { display: flex; gap: 4px; }
.photo-slot { flex: 1; height: 32px; background: var(--bg-alt); border-radius: 6px; }
.photo-slot--main { background: linear-gradient(135deg, #D4621A33, #D4621A55); }
.phone-stand { width: 60px; height: 8px; background: var(--navy); border-radius: 0 0 4px 4px; margin-top: 2px; }

/* ── Problem ── */
.problem {
  background: var(--bg-alt);
  padding: 80px 24px;
}
.problem__inner { max-width: var(--max-w); margin: 0 auto; }
.problem__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.problem__headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 48px;
  max-width: 720px;
}
.problem__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.problem__item { display: flex; gap: 16px; }
.problem__icon {
  width: 28px; height: 28px;
  background: rgba(212,98,26,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.problem__item-title { font-weight: 600; margin-bottom: 4px; font-size: 0.95rem; }
.problem__item-body { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }
.problem__bridge {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid var(--border);
}
.problem__bridge p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  font-style: italic;
  color: var(--fg);
}

/* ── Services ── */
.services { padding: 80px 24px; background: var(--bg); }
.services__inner { max-width: var(--max-w); margin: 0 auto; }
.services__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.services__headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}
.services__sub { font-size: 1rem; color: var(--fg-muted); margin-bottom: 48px; max-width: 520px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.service-card__icon {
  width: 48px; height: 48px;
  background: rgba(212,98,26,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.service-card p { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.65; }

/* ── Pricing ── */
.pricing { padding: 80px 24px; background: var(--navy); }
.pricing__inner { max-width: var(--max-w); margin: 0 auto; }
.pricing__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.pricing__headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 8px;
}
.pricing__sub { font-size: 1rem; color: rgba(255,255,255,0.55); margin-bottom: 40px; }
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.pricing-card--featured {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent);
  position: relative;
}
.pricing-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.pricing-card__tier {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 24px;
}
.pricing-card__per {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.pricing-card__features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}
.pricing-card__features li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding-left: 20px;
  position: relative;
}
.pricing-card__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
}
.pricing-card__cta {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  text-align: center;
  margin-top: auto;
}
.pricing__footnote {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ── Process ── */
.process { padding: 80px 24px; background: var(--bg); }
.process__inner { max-width: var(--max-w); margin: 0 auto; }
.process__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.process__headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 48px;
  max-width: 560px;
}
.process__steps { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.step:last-child { border-bottom: none; }
.step__number {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  opacity: 0.3;
}
.step__content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step__content p { font-size: 0.9rem; color: var(--fg-muted); line-height: 1.7; max-width: 600px; }

/* ── Manifesto ── */
.manifesto {
  background: var(--bg-alt);
  padding: 80px 24px;
}
.manifesto__inner { max-width: 720px; margin: 0 auto; }
.manifesto__mark {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 24px;
}
.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--fg);
  font-style: italic;
  margin-bottom: 28px;
}
.manifesto__body {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* ── Closing ── */
.closing {
  padding: 80px 24px;
  background: var(--navy);
}
.closing__inner { max-width: var(--max-w); margin: 0 auto; text-align: center; }
.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.closing__body {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.closing__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.closing__stat { text-align: center; }
.closing__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.closing__stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  max-width: 140px;
  line-height: 1.4;
}

/* ── Footer ── */
.footer {
  background: var(--fg);
  padding: 32px 24px;
}
.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}
.footer__tagline { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer__legal { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { display: none; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; }
  .problem__cols { grid-template-columns: 1fr; }
  .step { grid-template-columns: 60px 1fr; gap: 20px; }
  .closing__stats { gap: 32px; }
}
@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
  .stats-bar__inner { gap: 16px; }
  .stat-divider { display: none; }
  .footer__inner { flex-direction: column; text-align: center; }
}