:root {
  --nav-bg: #1a2b4a;
  --bg: #faf9f7;
  --surface: #ffffff;
  --fg: #1a1a1a;
  --fg-muted: #5a6478;
  --accent: #f5a623;
  --accent-dark: #d4891a;
  --nav-text: #ffffff;
  --card-border: #e8e4de;
  --missing: #d94040;
  --missing-bg: #fef2f2;
}

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

body {
  font-family: 'Source Serif 4', Georgia, serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* NAV */
.nav {
  background: var(--nav-bg);
  padding: 16px 40px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--nav-text);
  letter-spacing: -0.01em;
}
.nav-tagline {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

/* HERO */
.hero {
  background: var(--nav-bg);
  color: var(--nav-text);
  padding: 80px 40px 100px;
}
.hero-split {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: center;
}

/* GBP Card */
.gbp-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 22px;
  color: var(--fg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  font-family: 'IBM Plex Sans', sans-serif;
}
.gbp-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.gbp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #e0e4ec;
  flex-shrink: 0;
}
.gbp-meta { flex: 1; }
.gbp-name { font-size: 15px; font-weight: 600; }
.gbp-verified { font-size: 11px; color: var(--missing); font-weight: 500; }
.gbp-badge {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--missing);
  color: white;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.gbp-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
}
.star { font-size: 14px; color: #d4d4d4; }
.star.muted { color: #d4d4d4; }
.gbp-reviews { font-size: 12px; color: var(--fg-muted); margin-left: 6px; }
.gbp-rows { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.gbp-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--bg);
  color: var(--fg-muted);
}
.gbp-row-missing { color: var(--missing); background: var(--missing-bg); }
.row-icon { font-size: 12px; flex-shrink: 0; }
.gbp-call-drop {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--missing);
  font-weight: 600;
  padding: 8px 10px;
  border: 1px solid var(--missing);
  border-radius: 6px;
  background: transparent;
}
.call-arrow { font-size: 16px; }

/* Hero Right */
.hero-eyebrow {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: 42px;
  font-weight: 700;
  color: var(--nav-text);
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 36px;
  line-height: 1.6;
  max-width: 480px;
}
.hero-offer {
  display: inline-block;
}
.offer-label {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 6px;
}
.offer-price {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--nav-text);
  line-height: 1;
  margin-bottom: 10px;
}
.offer-detail {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

/* PROOF STRIP */
.proof {
  background: #f0ece6;
  border-top: 1px solid #e0dcd4;
  border-bottom: 1px solid #e0dcd4;
  padding: 40px;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
}
.proof-stat { text-align: center; flex: 1; }
.stat-number {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--nav-bg);
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: #ccc8c0;
  flex-shrink: 0;
}

/* WHAT GETS FIXED */
.what-fixed { padding: 90px 40px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 60px; }
.section-eyebrow {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--nav-bg);
}
.fix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.fix-card {
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 28px;
}
.fix-icon {
  width: 44px;
  height: 44px;
  background: #f0ece6;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nav-bg);
  margin-bottom: 16px;
}
.fix-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--nav-bg);
  margin-bottom: 8px;
}
.fix-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* PROCESS */
.process { background: var(--nav-bg); color: var(--nav-text); padding: 90px 40px; }
.process .section-title { color: var(--nav-text); }
.process-steps {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  align-items: start;
  gap: 0;
}
.process-step { padding-right: 20px; }
.step-number {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 14px;
}
.step-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--nav-text);
  margin-bottom: 8px;
}
.step-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.process-arrow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 28px;
  color: rgba(255,255,255,0.2);
  font-size: 22px;
}

/* GUARANTEE */
.guarantee { padding: 70px 40px; background: #f0ece6; }
.guarantee-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.guarantee-badge {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--nav-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.guarantee-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--nav-bg);
  margin-bottom: 8px;
}
.guarantee-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* CLOSING */
.closing { padding: 90px 40px; }
.closing-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.closing-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--nav-bg);
  margin-bottom: 20px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* FOOTER */
.footer { background: var(--nav-bg); padding: 40px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-logo {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--nav-text);
  margin-bottom: 10px;
}
.footer-meta {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.footer-legal {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 80px; }
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 32px; }
  .offer-price { font-size: 42px; }
  .fix-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-arrow { display: none; }
  .proof-inner { flex-direction: column; gap: 24px; }
  .proof-divider { width: 60px; height: 1px; }
  .guarantee-inner { flex-direction: column; text-align: center; }
}