/* ============================================
   LEAD FLOW LABS — BRAND DESIGN SYSTEM
   ============================================ */

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

:root {
  --bg-page:        #F8FAF8;
  --bg-alt:         #F0F4F1;
  --bg-card:        #FFFFFF;
  --bg-dark:        #0A1F10;
  --bg-dark-card:   #0D1A0F;
  --green-900:      #1A3D22;
  --green-800:      #22522D;
  --green-700:      #2A6638;
  --green-500:      #3A8A4C;
  --green-accent:   #58B06A;
  --green-pale:     #EDF6EF;
  --green-border:   #C5E8CE;
  --amber:          #E8A020;
  --amber-dark:     #C47B10;
  --amber-light:    #FDF3DC;
  --text-primary:   #0D1A0F;
  --text-secondary: #1E3024;
  --text-muted:     #5A7060;
  --text-vmuted:    #8AA090;
  --border:         #D4E4D8;
  --border-em:      #B8D0BE;
  --success:        #10B981;
  --red:            #EF4444;
  --orange:         #F97316;
  --grade-a:        #10B981;
  --grade-b:        #22C55E;
  --grade-c:        #EAB308;
  --grade-d:        #F97316;
  --grade-f:        #EF4444;
  --r-card:         16px;
  --r-btn:          100px;
  --r-input:        10px;
  --max-w:          960px;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-page);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a { color: var(--green-800); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ==============================
   NAV
   ============================== */
.nav {
  background: rgba(248,250,248,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 66px;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  background: var(--green-900);
  width: 34px; height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-text { font-weight: 800; font-size: 16px; color: var(--text-primary); letter-spacing: -0.4px; }
.nav-tagline { font-size: 13px; font-weight: 500; color: var(--text-muted); }

.main-content { flex: 1; }

.footer {
  border-top: 1px solid var(--border);
  padding: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.footer a { color: var(--text-muted); }
.footer a:hover { color: var(--green-900); }

/* ==============================
   SECTION LABEL
   ============================== */
.section-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-800);
  margin-bottom: 10px;
}

/* ==============================
   BUTTONS
   ============================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green-900);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 24px;
  border-radius: var(--r-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s;
  letter-spacing: -0.1px;
  font-family: 'Inter', sans-serif;
}
.btn-primary:hover { background: var(--green-800); color: #fff; text-decoration: none; box-shadow: 0 4px 16px rgba(26,61,34,0.25); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  font-weight: 600;
  font-size: 13px;
  padding: 9px 18px;
  border-radius: var(--r-btn);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  font-family: 'Inter', sans-serif;
}
.btn-secondary:hover { background: var(--bg-alt); text-decoration: none; }

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green-900);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 16px;
  padding: 16px;
  border-radius: var(--r-btn);
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
  letter-spacing: -0.2px;
}
.btn-submit:hover { background: var(--green-800); box-shadow: 0 4px 20px rgba(26,61,34,0.3); }
.btn-submit:active { transform: scale(0.99); }
.btn-submit:disabled { opacity: 0.7; cursor: not-allowed; }

.btn-cta-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--green-900);
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  padding: 17px 36px;
  border-radius: var(--r-btn);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.2px;
}
.btn-cta-large:hover { background: var(--green-800); color: #fff; text-decoration: none; box-shadow: 0 4px 20px rgba(26,61,34,0.3); }

/* ==============================
   SPINNER
   ============================== */
.spinner-inline {
  width: 16px; height: 16px;
  border: 2px solid rgba(0,0,0,0.15);
  border-top-color: var(--text-primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ==============================
   FORMS
   ============================== */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.form-group input {
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--r-input);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--text-primary);
  background: var(--bg-page);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  width: 100%;
}
.form-group input:focus { border-color: var(--green-500); box-shadow: 0 0 0 3px rgba(58,138,76,0.12); }
.form-group input::placeholder { color: var(--text-vmuted); }
.req { color: var(--red); }
.optional-tag { font-size: 11px; font-weight: 500; color: var(--text-vmuted); margin-left: 4px; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-divider-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-vmuted);
  text-align: center;
  padding: 4px 0 2px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.form-fine-print { font-size: 12px; color: var(--text-vmuted); text-align: center; }

/* ==============================
   DARK HERO
   ============================== */
.hero-dark {
  background: var(--bg-dark);
  padding: 80px 24px 88px;
  position: relative;
  overflow: hidden;
}
.hero-dark::before {
  content: '';
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(58,138,76,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-dark-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-accent);
  animation: blink 2s ease infinite;
  flex-shrink: 0;
}
.eyebrow-dot-amber { background: var(--amber); }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

.hero-dark-title {
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
}
.hero-title-green { color: var(--green-accent); }

.hero-dark-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  margin: 0 auto 48px;
  line-height: 1.65;
  font-weight: 400;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 32px;
  gap: 4px;
}
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1;
}
.hero-stat-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.08em; }
.hero-stat-divider { width: 1px; height: 56px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* ==============================
   FORM SECTION
   ============================== */
.form-section { padding: 64px 24px 80px; }
.form-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.form-section-title {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--text-primary);
}
.form-section-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}

/* What-we-check list */
.what-checked-list { display: flex; flex-direction: column; gap: 16px; }
.wc-item { display: flex; align-items: flex-start; gap: 14px; }
.wc-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}
.wc-gbp   { background: #DBEAFE; color: #1D4ED8; }
.wc-speed { background: var(--amber-light); color: var(--amber-dark); }
.wc-web   { background: var(--green-pale); color: var(--green-700); }
.wc-comp  { background: #EDE9FE; color: #5B21B6; }
.wc-item div { display: flex; flex-direction: column; gap: 2px; }
.wc-item strong { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.wc-item span { font-size: 13px; color: var(--text-muted); line-height: 1.4; }

/* Audit card (the form) */
.audit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: 0 4px 24px rgba(10,31,16,0.08);
  overflow: hidden;
}
.audit-card-header {
  background: var(--green-900);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.audit-card-title { font-size: 15px; font-weight: 800; color: #fff; letter-spacing: -0.3px; }
.audit-card-badge {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}
.audit-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 24px 24px;
}

/* ==============================
   TRUST BAR
   ============================== */
.trust-bar {
  background: var(--bg-dark);
  padding: 20px 24px;
}
.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  padding: 8px 20px;
}
.trust-check { color: var(--green-accent); font-weight: 800; }
.trust-bar-divider { width: 1px; height: 18px; background: rgba(255,255,255,0.12); }

/* ==============================
   AUDITING PAGE
   ============================== */
.auditing-page { padding: 72px 24px; }
.auditing-inner { max-width: 520px; margin: 0 auto; }
.auditing-top { text-align: center; margin-bottom: 40px; }
.auditing-spinner-wrap {
  position: relative;
  width: 72px; height: 72px;
  margin: 0 auto 24px;
}
.spin-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  border-top-color: var(--green-900);
  animation: spin 1.1s linear infinite;
}
.spin-ring-2 {
  inset: 8px;
  border-top-color: var(--green-accent);
  animation-duration: 0.75s;
  animation-direction: reverse;
}
.auditing-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--green-800);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.auditing-title {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.auditing-loc { font-size: 14px; color: var(--text-muted); font-weight: 500; }

.audit-progress-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 28px;
  box-shadow: 0 2px 12px rgba(10,31,16,0.06);
}
.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.progress-msg { font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.progress-pct { font-size: 13px; font-weight: 700; color: var(--green-800); }
.progress-track {
  height: 5px;
  background: var(--bg-alt);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 28px;
}
.progress-fill {
  height: 100%;
  background: var(--green-900);
  border-radius: 100px;
  width: 3%;
  transition: width 0.8s ease;
}

.step-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--text-vmuted);
  padding: 8px 4px;
  border-radius: 8px;
  transition: all 0.25s;
}
.step-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg-page);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
  position: relative;
}
.step-dot-inner {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.25s;
}
.step-text { flex: 1; }
.step-status { font-size: 12px; font-weight: 700; color: var(--success); width: 16px; text-align: center; }

.step-item.active { color: var(--text-primary); font-weight: 600; }
.step-item.active .step-dot { border-color: var(--green-700); }
.step-item.active .step-dot-inner { background: var(--green-700); animation: pulse-dot 1s ease infinite; }

.step-item.done { color: var(--success); }
.step-item.done .step-dot { border-color: var(--success); background: var(--success); }
.step-item.done .step-dot-inner { display: none; }
.step-item.done .step-dot::after { content: '✓'; font-size: 11px; font-weight: 800; color: #fff; }

@keyframes pulse-dot { 0%,100% { transform: scale(1); } 50% { transform: scale(1.5); } }

/* ==============================
   REPORT PAGE
   ============================== */
.report-page { max-width: var(--max-w); margin: 0 auto; padding: 0 24px 80px; }

.report-hero {
  background: var(--bg-dark-card);
  color: #fff;
  border-radius: 0 0 var(--r-card) var(--r-card);
  padding: 44px 44px 40px;
  margin-bottom: 48px;
}
.report-hero-inner { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }

.report-score-col { display: flex; flex-direction: column; align-items: center; gap: 14px; flex-shrink: 0; }
.report-score-label { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); text-transform: uppercase; }
.score-arc { transition: stroke-dasharray 1.4s ease; }

.grade-badge {
  font-weight: 900;
  font-size: 22px;
  width: 48px; height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  letter-spacing: -1px;
}
.grade-A { background: var(--grade-a); }
.grade-B { background: var(--grade-b); }
.grade-C { background: var(--grade-c); }
.grade-D { background: var(--grade-d); }
.grade-F { background: var(--grade-f); }

.report-info-col { flex: 1; min-width: 200px; }
.report-biz-name { font-size: 1.8rem; font-weight: 900; letter-spacing: -1.2px; margin-bottom: 6px; }
.report-biz-loc { color: rgba(255,255,255,0.45); font-size: 13px; font-weight: 500; margin-bottom: 22px; }
.report-biz-url { color: rgba(255,255,255,0.45); font-size: 12px; }
.report-biz-url:hover { color: rgba(255,255,255,0.7); }

.loss-box {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 24px;
}
.loss-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.45); font-weight: 700; display: block; margin-bottom: 6px; }
.loss-amount { font-size: 2.8rem; font-weight: 900; color: #FCA5A5; line-height: 1; letter-spacing: -2px; display: block; }
.loss-sub { font-size: 12px; color: rgba(255,255,255,0.35); display: block; margin-top: 4px; }

.report-grade-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.report-grade-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 12px;
}
.rg-label { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; }
.rg-val { font-size: 1.1rem; font-weight: 900; color: #fff; letter-spacing: -0.5px; }

.report-body { display: flex; flex-direction: column; gap: 48px; }

.report-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 28px 32px;
  box-shadow: 0 1px 4px rgba(10,31,16,0.04);
}

/* Score bars */
.score-bars { display: flex; flex-direction: column; gap: 28px; }
.score-bar-item { display: flex; flex-direction: column; gap: 8px; }
.score-bar-hdr { display: flex; justify-content: space-between; align-items: center; }
.score-bar-name {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}
.score-bar-icon {
  width: 28px; height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}
.gbp-icon   { background: #DBEAFE; color: #1D4ED8; }
.speed-icon { background: var(--amber-light); color: var(--amber-dark); }
.web-icon   { background: var(--green-pale); color: var(--green-700); }
.comp-icon  { background: #EDE9FE; color: #5B21B6; }

.score-bar-num {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}
.score-bar-of { font-size: 12px; font-weight: 600; color: var(--text-vmuted); }

.score-bar-track {
  height: 7px;
  background: var(--bg-alt);
  border-radius: 100px;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1s ease;
}
.gbp-bar   { background: #3B82F6; }
.speed-bar { background: var(--amber); }
.web-bar   { background: var(--success); }
.comp-bar  { background: #8B5CF6; }

.score-bar-detail {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}
.detail-red { color: var(--red); font-weight: 600; }

.checks-legend { display: flex; gap: 12px; margin-bottom: 6px; font-size: 11px; }
.legend-yes { color: var(--green-700); font-weight: 600; }
.legend-no  { color: var(--text-vmuted); font-weight: 600; }

.checks-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
.chip-yes, .chip-no {
  padding: 3px 9px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
}
.chip-yes { background: var(--green-pale); color: var(--green-700); border: 1px solid var(--green-border); }
.chip-no  { background: #fff0f0; color: #b91c1c; border: 1px solid #fca5a5; text-decoration: none; }

/* Insight boxes */
.insight-box {
  margin-top: 14px;
  background: #FDFCF7;
  border: 1px solid #E8E0CC;
  border-left: 3px solid var(--amber);
  border-radius: 0 10px 10px 0;
  padding: 14px 16px;
}
.insight-box--web { background: #F7FBFF; border-color: #C8DCF0; border-left-color: #2563EB; }
.insight-box--comp { background: #F7FFF9; border-color: #BBE0C8; border-left-color: var(--green-700); }
.insight-box--warn { background: #FFFBF0; border-color: #F0D080; border-left-color: #D97706; }
.insight-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.insight-box p {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--text-body);
  margin: 0 0 8px;
}
.insight-box p:last-child { margin-bottom: 0; }

/* Insight items (website conversion breakdown) */
.insight-items { display: flex; flex-direction: column; gap: 8px; }
.insight-item {
  font-size: 13px;
  line-height: 1.6;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--text-body);
}
.iitem-ok   { background: #F0FBF4; border-left: 3px solid #22C55E; }
.iitem-miss { background: #FFF6F6; border-left: 3px solid #EF4444; }
.iitem-warn { background: #fffbeb; border-left: 3px solid #EAB308; }
.insight-item strong { display: block; margin-bottom: 2px; font-size: 12px; }
.iitem-ok   strong { color: #166534; }
.iitem-miss strong { color: #991B1B; }
.iitem-warn strong { color: #92400e; }

/* Competitors */
.comp-table-wrap { border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.comp-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.comp-table th {
  text-align: left;
  padding: 11px 16px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.comp-table td {
  padding: 13px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.comp-table tr:last-child td { border-bottom: none; }
.your-row { background: var(--green-pale); }
.you-tag {
  background: var(--green-900);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 100px;
  margin-left: 8px;
  letter-spacing: 0.05em;
}
.comp-ahead { font-size: 12px; font-weight: 700; color: var(--red); }
.comp-behind { font-size: 12px; font-weight: 700; color: var(--success); }

/* ==============================
   UPGRADE CTA BLOCK (in report)
   ============================== */
.upgrade-cta {
  background: var(--bg-dark);
  border-radius: var(--r-card);
  padding: 0;
  overflow: hidden;
}
.upgrade-cta-top {
  padding: 52px 44px 36px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.upgrade-cta-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--green-accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.upgrade-cta-title {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.1;
}
.upgrade-cta-sub { font-size: 15px; color: rgba(255,255,255,0.5); max-width: 480px; margin: 0 auto; line-height: 1.65; }

.upgrade-locked-list {
  padding: 28px 44px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.locked-item, .unlocked-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 10px;
}
.locked-item { background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.65); }
.unlocked-item { background: rgba(88,176,106,0.1); border: 1px solid rgba(88,176,106,0.2); color: rgba(255,255,255,0.9); }
.lock-icon, .unlock-icon { font-size: 15px; flex-shrink: 0; }

.upgrade-cta-bottom {
  padding: 32px 44px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.upgrade-price-display { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.upgrade-price-amt {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -2px;
}
.upgrade-price-note { font-size: 13px; color: rgba(255,255,255,0.35); }
.upgrade-guarantee { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ==============================
   UPGRADE PAGE
   ============================== */
.upgrade-page { padding: 64px 24px 80px; }
.upgrade-inner { max-width: 600px; margin: 0 auto; }

.upgrade-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,68,68,0.07);
  color: var(--red);
  border: 1px solid rgba(239,68,68,0.18);
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.upgrade-title {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--text-primary);
}
.upgrade-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 40px;
}

.upgrade-card {
  border: 2px solid var(--green-900);
  border-radius: var(--r-card);
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 8px 40px rgba(26,61,34,0.14);
}
.upgrade-card-header {
  background: var(--bg-dark-card);
  padding: 30px 36px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.upgrade-card-header-left { display: flex; flex-direction: column; gap: 6px; }
.upgrade-product-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--green-accent);
  text-transform: uppercase;
}
.upgrade-product-name { font-size: 1.2rem; font-weight: 800; color: #fff; letter-spacing: -0.5px; }
.upgrade-price-col { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.upgrade-price { font-size: 3rem; font-weight: 900; color: var(--amber); line-height: 1; letter-spacing: -2px; }
.upgrade-price-sub { font-size: 12px; color: rgba(255,255,255,0.4); text-align: right; max-width: 130px; line-height: 1.3; }

.upgrade-card-body { padding: 32px 36px; background: var(--bg-card); }
.upgrade-features { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.upgrade-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--text-secondary); font-weight: 500; line-height: 1.5; }
.feat-check { color: var(--success); font-weight: 800; font-size: 14px; flex-shrink: 0; margin-top: 2px; }
.feat-check-amber { color: var(--amber); }

.upgrade-card-cta {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 28px 36px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.upgrade-guarantee-text { font-size: 13px; color: var(--success); font-weight: 600; }
.upgrade-fine-print { font-size: 12px; color: var(--text-vmuted); text-align: center; }

.back-link-wrap { text-align: center; }
.back-link { font-size: 13px; color: var(--text-muted); }
.back-link:hover { color: var(--text-primary); }

/* ==============================
   ADMIN
   ============================== */
.admin-page { max-width: 1100px; margin: 0 auto; padding: 40px 24px 80px; }
.admin-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 32px; gap: 16px; }
.admin-title { font-size: 1.8rem; font-weight: 900; letter-spacing: -1px; margin-bottom: 6px; }
.admin-sub { font-size: 13px; color: var(--text-muted); }
.admin-table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--r-card); box-shadow: 0 1px 4px rgba(10,31,16,0.05); }
.admin-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.admin-table th {
  text-align: left; padding: 12px 14px;
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-muted); background: var(--bg-alt); border-bottom: 2px solid var(--border); white-space: nowrap;
}
.admin-table td { padding: 13px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; color: var(--text-secondary); }
.admin-table tr:last-child td { border-bottom: none; }
.td-date { white-space: nowrap; color: var(--text-vmuted); font-size: 12px; }
.td-biz { max-width: 220px; }
.biz-url { font-size: 11px; color: var(--text-muted); }
.td-loss { white-space: nowrap; }
.loss-red { color: var(--red); font-weight: 700; }
.td-email { max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.grade-pill {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 8px;
  font-weight: 900; font-size: 13px; color: #fff;
}
.grade-row-F { background: rgba(239,68,68,0.04); }
.grade-row-D { background: rgba(249,115,22,0.04); }
.status-pill { font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 100px; }
.status-done    { background: var(--green-pale); color: var(--green-700); border: 1px solid var(--green-border); }
.status-pending { background: var(--amber-light); color: var(--amber-dark); }
.status-error   { background: #FEE2E2; color: #991B1B; }
.view-link { font-size: 12px; font-weight: 700; color: var(--green-800); }
.admin-empty { text-align: center; padding: 80px 20px; }
.admin-empty p { color: var(--text-muted); margin-bottom: 20px; font-size: 15px; }
.admin-legend { margin-top: 20px; font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* Admin Login */
.admin-login-page { padding: 80px 24px; }
.admin-login-card { max-width: 380px; margin: 0 auto; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--r-card); padding: 44px; box-shadow: 0 2px 12px rgba(10,31,16,0.06); }
.admin-login-card h1 { font-size: 1.5rem; font-weight: 900; letter-spacing: -0.8px; margin-bottom: 28px; }
.alert-error { background: #FEE2E2; color: #991B1B; padding: 12px 14px; border-radius: 10px; font-size: 13px; font-weight: 600; margin-bottom: 16px; border: 1px solid #FECACA; }

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 768px) {
  .form-section-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-stats { flex-direction: column; gap: 0; }
  .hero-stat-divider { width: 80px; height: 1px; }
  .hero-stat { padding: 14px 24px; }
  .report-grade-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .report-hero { padding: 28px 20px; }
  .report-hero-inner { flex-direction: column; }
  .report-biz-name { font-size: 1.4rem; }
  .report-grade-row { grid-template-columns: 1fr 1fr; }
  .upgrade-cta-top, .upgrade-locked-list, .upgrade-cta-bottom { padding-left: 24px; padding-right: 24px; }
  .upgrade-card-header, .upgrade-card-body, .upgrade-card-cta { padding-left: 22px; padding-right: 22px; }
  .hero-dark-title { letter-spacing: -1.5px; }
  .upgrade-title { letter-spacing: -1px; font-size: 2.2rem; }
  .report-section { padding: 22px 20px; }
  .admin-header { flex-direction: column; }
  .trust-bar-inner { flex-direction: column; gap: 4px; }
  .trust-bar-divider { display: none; }
}

/* ==============================
   PRINT
   ============================== */
@media print {
  .nav, .footer, .upgrade-cta, .print-hide { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  .report-hero { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}

/* ==============================
   LIGHT HERO (matches site — cream bg, dark text, amber accent)
   ============================== */
.hero-light {
  background: var(--bg-page);
  padding: 72px 24px 80px;
  border-bottom: 1px solid var(--border);
}
.hero-light-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  border: 1px solid var(--green-border);
  color: var(--green-800);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.eyebrow-dot-light {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green-accent);
  flex-shrink: 0;
  animation: blink 2s ease infinite;
}
.hero-light-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -2.5px;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 22px;
}
.hero-amber { color: var(--amber); }
.text-amber { color: var(--amber); }

.hero-light-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.65;
  font-weight: 400;
  margin-bottom: 28px;
}
.hero-light-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-meta-item {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-800);
}
.hero-meta-dot { color: var(--text-vmuted); }

/* ==============================
   DARK STATS BAR (matches site's dark green strip)
   ============================== */
.stats-dark-bar {
  background: var(--bg-dark);
  padding: 0;
}
.stats-dark-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
.stat-dark-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 28px 20px;
}
.stat-dark-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1.5px;
  line-height: 1;
}
.stat-dark-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.stat-dark-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  align-self: stretch;
  flex-shrink: 0;
}

/* ==============================
   WHAT WE CHECK — Light section
   ============================== */
.checks-light-section {
  background: var(--bg-page);
  padding: 72px 24px;
}
.checks-light-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.checks-light-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 48px;
  max-width: 640px;
}
.checks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.check-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 1px 4px rgba(10,31,16,0.04);
}
.check-card strong { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.check-card span { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.check-card-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}
.ci-gbp   { background: #DBEAFE; color: #1D4ED8; }
.ci-speed { background: var(--amber-light); color: var(--amber-dark); }
.ci-web   { background: var(--green-pale); color: var(--green-700); }
.ci-comp  { background: #EDE9FE; color: #5B21B6; }

/* ==============================
   DARK CTA SECTION (matches dark feature blocks on site)
   ============================== */
.dark-cta-section {
  background: var(--bg-dark);
  padding: 80px 24px;
}
.dark-cta-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.section-label-light {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-accent);
  margin-bottom: 14px;
}
.dark-cta-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}
.dark-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 420px;
}
.btn-amber {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: var(--text-primary);
  font-weight: 800;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: var(--r-btn);
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s;
  font-family: 'Inter', sans-serif;
}
.btn-amber:hover { background: var(--amber-dark); color: var(--text-primary); text-decoration: none; box-shadow: 0 4px 20px rgba(232,160,32,0.3); }

.dark-feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-card);
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.dfc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.dfc-row:last-child { border-bottom: none; }
.dfc-check { color: var(--green-accent); font-weight: 800; font-size: 14px; flex-shrink: 0; }
.dfc-locked { color: rgba(255,255,255,0.3); }
.dfc-lock { font-size: 13px; flex-shrink: 0; }

/* ==============================
   RESPONSIVE UPDATES
   ============================== */
@media (max-width: 900px) {
  .hero-light-inner { grid-template-columns: 1fr; gap: 36px; }
  /* Form card first on tablet/mobile — it's the CTA */
  .hero-light-right { order: -1; }
  .dark-cta-inner { grid-template-columns: 1fr; gap: 44px; }
  .checks-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-light { padding: 32px 16px 48px; }
  .hero-light-inner { gap: 28px; }
  .hero-light-title { font-size: 2rem; letter-spacing: -1px; margin-bottom: 14px; }
  .hero-light-sub { font-size: 15px; margin-bottom: 18px; }
  .hero-eyebrow-light { margin-bottom: 18px; font-size: 11px; }
  .hero-light-meta { display: none; }
  .audit-form { padding: 20px 16px 18px; gap: 12px; }
  .audit-card-header { padding: 14px 16px; }
  .stats-dark-inner { flex-wrap: wrap; }
  .stat-dark-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .stat-dark-divider { display: none; }
  .checks-grid { grid-template-columns: 1fr 1fr; }
  .dark-cta-section { padding: 60px 20px; }
  .checks-light-section { padding: 56px 20px; }
}

/* Nav CTA button */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--green-900);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 20px;
  border-radius: var(--r-btn);
  text-decoration: none;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-cta-btn:hover { background: var(--green-800); color: #fff; text-decoration: none; }

/* =============================================
   NEW SCORE BAR VARIANTS
   ============================================= */
.trust-bar  { background: linear-gradient(90deg, #1A3D22, #2e6b3e); }
.social-bar { background: linear-gradient(90deg, #0e4f7a, #1976b8); }
.ai-bar     { background: linear-gradient(90deg, #6b21a8, #9333ea); }

.trust-icon  { background: #1A3D22; }
.social-icon { background: #0e4f7a; }
.ai-icon     { background: #6b21a8; }

.chip-warn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
}

/* =============================================
   FIX SECTION (gap→service table + pricing)
   ============================================= */
.fix-section {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  margin: 32px 0;
}
.fix-section-header { margin-bottom: 28px; }
.fix-section-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.8px;
  line-height: 1.2;
  margin: 8px 0 10px;
}
.fix-section-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.gap-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 36px;
}
.gap-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.gap-table thead tr { background: #EDF6EF; }
.gap-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.gap-table td {
  padding: 13px 16px;
  border-bottom: 1px solid #f0f4f0;
  vertical-align: middle;
  color: var(--text-body);
  line-height: 1.45;
}
.gap-table tbody tr:last-child td { border-bottom: none; }
.gap-table tbody tr:hover { background: #f8faf8; }

.plan-tag {
  display: inline-block;
  background: #EDF6EF;
  color: #1A3D22;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  border: 1px solid #c8e6cc;
}
.plan-tag-master {
  background: #eff6ff;
  color: #1e40af;
  border-color: #bfdbfe;
}
.plan-tag-foreman {
  background: #faf5ff;
  color: #6b21a8;
  border-color: #e9d5ff;
}
.plan-tag-journeyman {
  background: #fff8ed;
  color: #92400e;
  border-color: #fcd34d;
}

/* Pricing tiers */
.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.pricing-tier {
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  position: relative;
  background: #fff;
}
.tier-recommended {
  border-color: var(--green-900);
  box-shadow: 0 4px 20px rgba(26,61,34,0.12);
}
.tier-rec-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #1a1a1a;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tier-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.tier-price {
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-900);
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 16px;
}
.tier-period { font-size: 14px; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.tier-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.tier-features li { font-size: 13px; color: var(--text-body); line-height: 1.3; }

.tier-recommendation-note {
  background: #EDF6EF;
  border: 1px solid #c8e6cc;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--green-900);
  line-height: 1.5;
  margin-bottom: 28px;
}

.demo-cta-row {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.btn-demo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--amber);
  color: #1a1a1a;
  font-weight: 800;
  font-size: 17px;
  padding: 18px 40px;
  border-radius: var(--r-btn);
  text-decoration: none;
  letter-spacing: -0.3px;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(232,160,32,0.35);
}
.btn-demo-cta:hover {
  background: #d4911a;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(232,160,32,0.4);
  color: #1a1a1a;
  text-decoration: none;
}
.demo-secondary { font-size: 14px; color: var(--text-muted); margin: 0; }

@media (max-width: 640px) {
  .pricing-tiers { grid-template-columns: 1fr; }
  .fix-section { padding: 28px 20px; }
  .gap-table th, .gap-table td { padding: 10px 12px; font-size: 13px; }
}

/* =============================================
   PAID / DEEP DIVE REPORT
   ============================================= */

.paid-report {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 0 80px;
}

/* Header */
.paid-header {
  background: linear-gradient(135deg, #1A3D22 0%, #143018 100%);
  color: #fff;
  padding: 48px 24px 40px;
  border-radius: 0 0 24px 24px;
  margin-bottom: 40px;
}
.paid-header-inner { max-width: 880px; margin: 0 auto; }

.paid-badge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.paid-badge {
  background: #E8A020;
  color: #1A1A1A;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
}
.paid-date {
  font-size: 13px;
  opacity: .6;
}
.paid-biz-name {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 800;
  margin: 0 0 6px;
  color: #fff;
}
.paid-biz-location {
  font-size: 15px;
  opacity: .75;
  margin: 0 0 28px;
}
.paid-grade-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.paid-grade-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 900;
  flex-shrink: 0;
  background: rgba(255,255,255,.06);
}
.paid-score-detail { flex: 1; min-width: 160px; }
.paid-score-num {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.paid-score-of { font-size: 20px; font-weight: 500; opacity: .6; }
.paid-score-label { font-size: 13px; opacity: .7; margin: 4px 0 10px; }
.paid-subscores {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  opacity: .8;
}
.paid-subscores strong { color: #E8A020; }
.paid-loss-box {
  background: rgba(232,160,32,.15);
  border: 1.5px solid rgba(232,160,32,.4);
  border-radius: 14px;
  padding: 16px 24px;
  text-align: center;
}
.paid-loss-num {
  font-size: 28px;
  font-weight: 800;
  color: #E8A020;
  line-height: 1;
}
.paid-loss-label { font-size: 12px; opacity: .75; margin-top: 4px; }

/* Body */
.paid-body { padding: 0 24px; }
.paid-section { margin-bottom: 40px; }
.paid-section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #1A3D22;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.paid-section-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  flex-shrink: 0;
}
.ai-icon   { background: #ede9fe; color: #7c3aed; }
.rev-icon  { background: #dcfce7; color: #16a34a; }
.gbp-icon  { background: #dbeafe; color: #1d4ed8; font-size: 14px; }
.speed-icon{ background: #fef9c3; color: #a16207; }
.web-icon  { background: #d1fae5; color: #059669; }
.comp-icon { background: #fee2e2; color: #dc2626; }
.plan-icon { background: #fce7f3; color: #be185d; }

/* AI Summary */
.paid-ai-card {
  background: #f8f9ff;
  border: 1.5px solid #e0e7ff;
  border-left: 4px solid #7c3aed;
  border-radius: 12px;
  padding: 24px 28px;
}
.paid-ai-card p {
  font-size: 15px;
  line-height: 1.75;
  color: #333;
  margin: 0 0 14px;
}
.paid-ai-card p:last-child { margin-bottom: 0; }

/* Revenue Grid */
.paid-rev-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.rev-card {
  background: #fff;
  border: 1.5px solid #e6eae6;
  border-radius: 14px;
  padding: 20px 18px;
}
.rev-card-icon { font-size: 22px; margin-bottom: 8px; }
.rev-card-title { font-size: 13px; font-weight: 700; color: #555; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .04em; }
.rev-card-cost { font-size: 22px; font-weight: 800; color: #dc2626; margin-bottom: 8px; }
.rev-card-cost span { font-size: 13px; font-weight: 500; color: #888; }
.rev-ok { font-size: 16px; font-weight: 700; color: #16a34a; }
.rev-card-desc { font-size: 13px; color: #666; line-height: 1.55; }

/* Detail Cards */
.paid-detail-card {
  background: #fff;
  border: 1.5px solid #e6eae6;
  border-radius: 16px;
  padding: 24px;
  overflow: hidden;
}
.paid-detail-card--alert {
  border-color: #fecaca;
  background: #fff8f8;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.alert-icon { font-size: 28px; flex-shrink: 0; }
.alert-body strong { font-size: 16px; font-weight: 700; color: #dc2626; display: block; margin-bottom: 8px; }
.alert-body p { font-size: 14px; line-height: 1.65; color: #555; margin: 0 0 8px; }
.alert-body a { color: #1A3D22; font-weight: 600; }

/* GBP Stats */
.paid-detail-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.paid-stat { text-align: center; }
.paid-stat-num { font-size: 24px; font-weight: 800; color: #1A3D22; }
.paid-stat-label { font-size: 12px; color: #888; margin-top: 3px; }

/* GBP Checklist */
.paid-checklist { display: flex; flex-direction: column; gap: 8px; }
.chk-title { font-size: 13px; font-weight: 700; color: #666; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.chk-item { font-size: 14px; padding: 6px 0; }
.chk-ok   { color: #16a34a; }
.chk-miss { color: #dc2626; }
.paid-detail-action { margin-top: 18px; padding-top: 18px; border-top: 1px solid #f0f0f0; }
.detail-link { font-size: 14px; color: #1A3D22; font-weight: 600; text-decoration: none; }
.detail-link:hover { text-decoration: underline; }

/* Speed gauges */
.paid-speed-bars {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f0f0f0;
  flex-wrap: wrap;
}
.speed-device { text-align: center; }
.speed-device-label { font-size: 13px; font-weight: 600; color: #666; margin-bottom: 12px; }
.speed-gauge-wrap { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.speed-gauge {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 6px solid;
}
.gauge-good { border-color: #16a34a; color: #16a34a; }
.gauge-ok   { border-color: #d97706; color: #d97706; }
.gauge-bad  { border-color: #dc2626; color: #dc2626; }
.gauge-num { font-size: 22px; font-weight: 800; }
.gauge-label { font-size: 12px; font-weight: 700; }
.gl-good { color: #16a34a; }
.gl-ok   { color: #d97706; }
.gl-bad  { color: #dc2626; }
.speed-vitals { text-align: center; }
.vital-val { font-size: 22px; font-weight: 800; color: #1A3D22; }
.vital-name { font-size: 12px; color: #666; }
.vital-bench { font-size: 11px; color: #999; margin-top: 3px; }
.paid-speed-unavail { padding: 16px; background: #fffbeb; border-radius: 8px; font-size: 14px; color: #92400e; }
.speed-rec-title { font-size: 13px; font-weight: 700; color: #666; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 12px; }
.speed-rec-item { font-size: 14px; color: #444; line-height: 1.6; margin-bottom: 10px; }
.speed-rec-item strong { color: #1A3D22; }

/* Conversion grid */
.paid-conv-grid { display: flex; flex-direction: column; gap: 14px; }
.conv-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: 10px;
}
.conv-ok   { background: #f0fdf4; border: 1px solid #bbf7d0; }
.conv-miss { background: #fff8f8; border: 1px solid #fecaca; }
.conv-icon { font-size: 18px; flex-shrink: 0; min-width: 24px; }
.conv-ok .conv-icon   { color: #16a34a; }
.conv-miss .conv-icon { color: #dc2626; }
.conv-name  { font-size: 14px; font-weight: 700; color: #1A1A1A; margin-bottom: 3px; }
.conv-desc  { font-size: 13px; color: #555; line-height: 1.6; }

/* Competitor Table */
.comp-intro { font-size: 14px; color: #555; line-height: 1.65; margin: 0 0 18px; }
.paid-comp-table-wrap { overflow-x: auto; margin-bottom: 18px; }
.paid-comp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.paid-comp-table th {
  text-align: left;
  padding: 10px 12px;
  background: #f5f7f5;
  color: #555;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 2px solid #e0e0e0;
}
.paid-comp-table td { padding: 12px 12px; border-bottom: 1px solid #f0f0f0; }
.comp-rank  { font-weight: 700; color: #888; width: 36px; }
.comp-name  { font-weight: 600; color: #1A1A1A; }
.comp-rating { color: #d97706; font-weight: 700; }
.comp-reviews { font-weight: 600; }
.gap-behind { color: #dc2626; font-weight: 700; }
.gap-ahead  { color: #16a34a; font-weight: 700; }
.pos-behind { color: #dc2626; font-weight: 700; }
.pos-ahead  { color: #16a34a; font-weight: 700; }
.comp-you-row td { background: #f0fdf4; font-weight: 700; border-top: 2px solid #16a34a; }
.comp-you-label { color: #16a34a; font-size: 13px; }
.paid-comp-insight {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: #78350f;
  line-height: 1.65;
}

/* 90-Day Plan */
.paid-plan { display: flex; flex-direction: column; gap: 20px; }
.plan-phase { background: #fff; border: 1.5px solid #e6eae6; border-radius: 16px; overflow: hidden; }
.plan-phase-label {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #fff;
}
.plan-red   { background: #dc2626; }
.plan-amber { background: #d97706; }
.plan-blue  { background: #1d4ed8; }
.plan-green { background: #1A3D22; }
.plan-item {
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
}
.plan-item:last-child { border-bottom: none; }
.plan-item-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 6px; }
.plan-item-task { font-size: 15px; font-weight: 700; color: #1A1A1A; }
.plan-effort {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.effort-low    { background: #dcfce7; color: #15803d; }
.effort-medium { background: #fef9c3; color: #854d0e; }
.effort-high   { background: #fee2e2; color: #b91c1c; }
.plan-item-impact { font-size: 13px; color: #555; line-height: 1.6; }

/* CTA Section */
.paid-cta-section { margin-top: 48px; }
.paid-cta-card {
  background: linear-gradient(135deg, #1A3D22 0%, #143018 100%);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  color: #fff;
}
.paid-cta-eyebrow {
  font-size: 13px;
  font-weight: 700;
  color: #E8A020;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 12px;
}
.paid-cta-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
}
.paid-cta-sub {
  font-size: 15px;
  opacity: .8;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 24px;
}
.paid-cta-includes {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  font-size: 14px;
  opacity: .85;
}
.paid-cta-includes span::before { margin-right: 4px; }
.paid-cta-btn {
  display: inline-block;
  background: #E8A020;
  color: #1A1A1A;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s;
}
.paid-cta-btn:hover { background: #f0ad28; }
.paid-cta-fine { font-size: 12px; opacity: .55; margin-top: 14px; }

@media (max-width: 640px) {
  .paid-grade-row { gap: 16px; }
  .paid-loss-box { width: 100%; }
  .paid-detail-stats { grid-template-columns: repeat(2, 1fr); }
  .paid-rev-grid { grid-template-columns: 1fr; }
  .paid-speed-bars { gap: 16px; }
  .paid-cta-card { padding: 32px 20px; }
  .paid-cta-includes { gap: 12px; font-size: 13px; }
  .plan-item-header { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* Preview Deep Dive button */
.btn-preview-deepdive {
  display: block;
  margin-top: 12px;
  padding: 13px 24px;
  background: transparent;
  border: 2px solid rgba(232,160,32,.6);
  color: #E8A020;
  font-size: 14px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  transition: background .15s, border-color .15s;
  text-align: center;
}
.btn-preview-deepdive:hover {
  background: rgba(232,160,32,.12);
  border-color: #E8A020;
}

/* =============================================
   SERVICES SECTION & PRINT
   ============================================= */

.svc-intro {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 20px;
}
.svc-icon { background: #e0f2fe; color: #0369a1; }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.svc-card {
  background: #fff;
  border: 1.5px solid #e6eae6;
  border-radius: 14px;
  padding: 22px 20px;
  transition: box-shadow .15s;
}
.svc-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.svc-card--diy {
  border-color: #1A3D22;
  background: #f0fdf4;
}
.svc-card-icon {
  font-size: 26px;
  margin-bottom: 10px;
}
.svc-card-title {
  font-size: 15px;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 4px;
}
.svc-card-tag {
  font-size: 11px;
  font-weight: 700;
  color: #E8A020;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.svc-card-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 10px;
}
.svc-card-fixes {
  font-size: 12px;
  color: #16a34a;
  font-weight: 600;
  padding-top: 10px;
  border-top: 1px solid #f0f0f0;
}
.svc-card--diy .svc-card-fixes {
  color: #1A3D22;
  border-color: #bbf7d0;
}

/* Print button */
.btn-print {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1A3D22;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background .15s;
}
.btn-print:hover { background: #143018; }

/* Print styles */
@media print {
  .print-hide,
  .nav,
  .footer,
  .paid-cta-section,
  .btn-print,
  .paid-badge-row .paid-date { display: none !important; }

  body { background: #fff !important; font-size: 12px; }
  .paid-header {
    background: #1A3D22 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    border-radius: 0 !important;
    padding: 24px !important;
  }
  .paid-report { max-width: 100%; }
  .paid-body { padding: 0 12px; }
  .paid-section { margin-bottom: 24px; page-break-inside: avoid; }
  .paid-rev-grid { grid-template-columns: repeat(2,1fr); }
  .paid-detail-stats { grid-template-columns: repeat(4,1fr); }
  .paid-comp-table { font-size: 11px; }
  .plan-phase { page-break-inside: avoid; }
  .paid-ai-card { border-left: 4px solid #7c3aed !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .plan-phase-label { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  a[href]:after { content: none !important; }
}

/* ── SERVICE CARDS ─────────────────────────────────────────────────────── */
.service-cards-header {
  text-align: center;
  margin: 48px 0 24px;
}
.service-cards-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--green-900);
  margin: 0 0 8px;
  letter-spacing: -0.3px;
}
.service-cards-sub {
  font-size: 14.5px;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 8px;
}
@media (max-width: 900px) {
  .service-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .service-cards-grid { grid-template-columns: 1fr; }
}
.service-card {
  background: #fff;
  border: 1.5px solid #e2ebe3;
  border-radius: 14px;
  padding: 22px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.service-card:hover {
  box-shadow: 0 4px 18px rgba(26,61,34,0.08);
  border-color: #b5d4ba;
}
.service-card-icon {
  font-size: 1.6rem;
  line-height: 1;
}
.service-card-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--green-900);
  letter-spacing: -0.2px;
}
.service-card-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.6;
  flex: 1;
}
.service-card-tie {
  margin-top: 4px;
}
.service-card-flag {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #92400e;
  background: #fff8ed;
  border: 1px solid #fcd34d;
  border-radius: 8px;
  padding: 6px 10px;
  line-height: 1.5;
}
.service-card-flag--ok {
  color: #14532d;
  background: #f0fdf4;
  border-color: #86efac;
}

/* ── STRATEGY CALL CTA ──────────────────────────────────────────────────── */
.strategy-cta {
  background: var(--green-900);
  border-radius: 20px;
  margin: 48px 0 0;
  overflow: hidden;
}
.strategy-cta-inner {
  padding: 52px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.strategy-cta-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--amber);
  text-transform: uppercase;
}
.strategy-cta-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1.2;
  max-width: 560px;
  margin: 0;
}
.strategy-cta-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  line-height: 1.7;
  margin: 0;
}
.strategy-cta-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 18px 24px;
  width: 100%;
  max-width: 440px;
}
.strategy-bullet {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.btn-strategy-call {
  display: inline-block;
  background: var(--amber);
  color: #1a1a1a;
  font-weight: 800;
  font-size: 16px;
  padding: 16px 40px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
  margin-top: 8px;
}
.btn-strategy-call:hover {
  background: #d4900e;
  color: #1a1a1a;
  text-decoration: none;
  transform: translateY(-1px);
}
.strategy-cta-note {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
@media (max-width: 640px) {
  .strategy-cta-inner { padding: 36px 24px; }
  .strategy-cta-title { font-size: 1.4rem; }
}
