:root {
  --bg: #F7F5F0;
  --bg-alt: #EDEAE4;
  --green: #1A3C2A;
  --green-light: #2A5440;
  --gold: #C9A84C;
  --fg: #1A3C2A;
  --fg-muted: #5C6B60;
  --white: #FFFFFF;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

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

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

/* ── Navigation ── */
.nav {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(26, 60, 42, 0.1);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.02em;
}

/* ── Hero ── */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 3rem;
  align-items: start;
}
.hero-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}
.hero-stat {
  background: var(--green);
  border-radius: 6px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.4;
  font-weight: 400;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(26, 60, 42, 0.2);
  border-radius: 99px;
}
.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-badge-text {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-main {
  padding-top: 0.5rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--fg);
  line-height: 1.7;
  margin-bottom: 0.75rem;
  max-width: 520px;
}
.hero-sub-secondary {
  font-size: 0.9rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── Manifesto ── */
.manifesto {
  background: var(--green);
  padding: 4rem 2rem;
}
.manifesto-inner {
  max-width: 700px;
  margin: 0 auto;
  border-left: 3px solid var(--gold);
  padding-left: 2rem;
}
.manifesto-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
}

/* ── Section Shared ── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}
.section-sub {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 2.5rem;
}

/* ── Automation ── */
.automation {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
}
.automation-header {
  margin-bottom: 3rem;
}
.automation-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.automation-card {
  background: var(--white);
  border: 1px solid rgba(26, 60, 42, 0.1);
  border-radius: 8px;
  padding: 1.75rem;
}
.automation-icon {
  margin-bottom: 1rem;
}
.automation-card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.6rem;
}
.automation-card-body {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── Outcomes ── */
.outcomes {
  background: var(--bg-alt);
  padding: 5rem 2rem;
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.outcomes-inner .section-title {
  margin-bottom: 2.5rem;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.outcome {}
.outcome-metric {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.outcome-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── Closing ── */
.closing {
  background: var(--green);
  padding: 5rem 2rem;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
}

/* ── Footer ── */
.footer {
  border-top: 1px solid rgba(26, 60, 42, 0.1);
  padding: 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
}
.footer-tagline {
  font-size: 0.75rem;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--green-light); }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--green);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  border: 1.5px solid var(--green);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.btn-secondary:hover { background: var(--green); color: var(--white); }

/* ── Dentist Hero ── */
.dentist-hero {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-light) 100%);
  padding: 5rem 2rem 4rem;
  color: var(--white);
}
.dentist-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.dentist-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 99px;
  padding: 0.4rem 0.9rem;
  margin-bottom: 1.5rem;
}
.dentist-hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.dentist-hero-badge-text {
  font-size: 0.7rem; font-weight: 600; color: var(--gold);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.dentist-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.15;
  color: var(--white); margin-bottom: 1rem; letter-spacing: -0.02em;
}
.dentist-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.8);
  line-height: 1.7; max-width: 540px; margin-bottom: 2.5rem;
}
.dentist-hero-cta-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.dentist-hero-price-tag { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.dentist-hero-price-tag strong { color: var(--gold); font-size: 1.1rem; }

/* ── Audit Form ── */
.audit-section { max-width: 700px; margin: 0 auto; padding: 4rem 2rem; }
.audit-form-card {
  background: var(--white);
  border: 1.5px solid rgba(26, 60, 42, 0.15);
  border-radius: 10px; padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(26,60,42,0.08);
}
.audit-form-title {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 700; color: var(--green); margin-bottom: 0.4rem;
}
.audit-form-sub { font-size: 0.9rem; color: var(--fg-muted); margin-bottom: 2rem; line-height: 1.6; }
.form-field { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--fg); margin-bottom: 0.4rem; letter-spacing: 0.02em; }
.form-input {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid rgba(26, 60, 42, 0.2);
  border-radius: 6px; font-family: var(--font-body);
  font-size: 0.95rem; color: var(--fg); background: var(--bg);
  transition: border-color 0.15s; box-sizing: border-box;
}
.form-input:focus { outline: none; border-color: var(--green); background: var(--white); }
.form-hint { font-size: 0.75rem; color: var(--fg-muted); margin-top: 0.35rem; }
.form-divider {
  text-align: center; font-size: 0.8rem; color: var(--fg-muted);
  margin: 1.5rem 0; position: relative;
}
.form-divider::before, .form-divider::after {
  content: ''; position: absolute; top: 50%;
  width: 35%; height: 1px; background: rgba(26, 60, 42, 0.15);
}
.form-divider::before { left: 0; }
.form-divider::after { right: 0; }

/* ── Audit Results ── */
.results-section { max-width: 800px; margin: 0 auto; padding: 3rem 2rem 5rem; }
.results-header { text-align: center; margin-bottom: 2.5rem; }
.results-business-name {
  font-family: var(--font-display); font-size: 1.6rem;
  font-weight: 700; color: var(--green); margin-bottom: 0.3rem;
}
.results-location { font-size: 0.9rem; color: var(--fg-muted); margin-bottom: 1.5rem; }
.score-circle-wrap { display: inline-flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.score-circle { position: relative; width: 140px; height: 140px; }
.score-circle svg { transform: rotate(-90deg); }
.score-circle-bg { fill: none; stroke: rgba(26, 60, 42, 0.1); stroke-width: 10; }
.score-circle-fill { fill: none; stroke-width: 10; stroke-linecap: round; transition: stroke-dashoffset 0.6s ease; }
.score-circle-text { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.score-number { font-family: var(--font-display); font-size: 2.6rem; font-weight: 700; color: var(--green); line-height: 1; }
.score-label { font-size: 0.7rem; color: var(--fg-muted); text-transform: uppercase; letter-spacing: 0.05em; }
.score-caption { font-size: 0.85rem; color: var(--fg-muted); }
.score-caption strong { color: var(--fg); }
.score-breakdown { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 2.5rem 0; }
.score-item { background: var(--white); border: 1px solid rgba(26, 60, 42, 0.1); border-radius: 8px; padding: 1.25rem; }
.score-item-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.6rem; }
.score-item-name { font-size: 0.8rem; font-weight: 600; color: var(--fg); }
.score-item-bar-wrap { height: 6px; background: rgba(26, 60, 42, 0.1); border-radius: 99px; overflow: hidden; margin-bottom: 0.5rem; }
.score-item-bar { height: 100%; border-radius: 99px; transition: width 0.5s ease; }
.score-item-detail { font-size: 0.72rem; color: var(--fg-muted); }
.score-item-detail.warn { color: #c0620a; }
.score-item-detail.good { color: #1a7c3a; }
.score-issues { margin: 2rem 0; }
.score-issues-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--green); margin-bottom: 1rem; }
.issue-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: rgba(192, 98, 10, 0.06);
  border: 1px solid rgba(192, 98, 10, 0.2);
  border-radius: 8px; padding: 1rem 1.25rem; margin-bottom: 0.75rem;
}
.issue-icon { flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; }
.issue-text { font-size: 0.875rem; color: var(--fg); line-height: 1.5; }
.issue-text strong { display: block; margin-bottom: 0.15rem; }
.results-cta {
  background: var(--green); border-radius: 10px;
  padding: 2.5rem; text-align: center; margin-top: 2.5rem;
}
.results-cta-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.6rem; }
.results-cta-sub { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; line-height: 1.6; }
.results-cta .btn-primary { background: var(--gold); color: var(--green); font-size: 1rem; padding: 1rem 2rem; }
.results-cta .btn-primary:hover { background: #d4b45a; }

/* ── Testimonials ── */
.testimonials { background: var(--bg-alt); padding: 5rem 2rem; }
.testimonials-inner { max-width: 1100px; margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.testimonial-card { background: var(--white); border: 1px solid rgba(26, 60, 42, 0.1); border-radius: 8px; padding: 1.75rem; }
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9rem; color: var(--fg); line-height: 1.65; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author { font-size: 0.8rem; font-weight: 600; color: var(--fg-muted); }

/* ── How It Works ── */
.how-it-works { padding: 5rem 2rem; max-width: 1100px; margin: 0 auto; }
.how-it-works-header { text-align: center; margin-bottom: 3rem; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.step-item { text-align: center; padding: 2rem 1.5rem; background: var(--white); border: 1px solid rgba(26, 60, 42, 0.1); border-radius: 10px; }
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; background: var(--green); color: var(--white);
  border-radius: 50%; font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 1.25rem;
}
.step-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--green); margin-bottom: 0.6rem; }
.step-desc { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6; }
.step-price { margin-top: 1rem; font-size: 0.8rem; color: var(--gold); font-weight: 600; }

/* ── FAQ ── */
.faq { background: var(--bg-alt); padding: 5rem 2rem; }
.faq-inner { max-width: 700px; margin: 0 auto; }
.faq-inner .section-title { text-align: center; margin-bottom: 2.5rem; }
.faq-item { border-bottom: 1px solid rgba(26, 60, 42, 0.1); padding: 1.25rem 0; cursor: pointer; }
.faq-q { font-weight: 600; font-size: 0.95rem; color: var(--green); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq-a { font-size: 0.875rem; color: var(--fg-muted); line-height: 1.65; margin-top: 0.6rem; display: none; }
.faq-item.open .faq-a { display: block; }

/* ── Competitor Benchmark Panel ── */
.competitor-panel {
  margin: 2.5rem 0;
  background: var(--white);
  border: 1.5px solid rgba(26, 60, 42, 0.12);
  border-radius: 10px;
  padding: 1.75rem;
}
.competitor-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.competitor-panel-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green);
  margin: 0;
}
.competitor-top-score {
  font-size: 0.8rem;
  color: var(--fg-muted);
  background: rgba(192, 98, 10, 0.08);
  border: 1px solid rgba(192, 98, 10, 0.2);
  border-radius: 6px;
  padding: 0.35rem 0.75rem;
}
.competitor-top-score strong { color: #c0620a; }
.competitor-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.competitor-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.8rem;
  min-width: 480px;
}
.competitor-th {
  text-align: left;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.4rem 0.6rem;
  border-bottom: 1.5px solid rgba(26, 60, 42, 0.1);
  white-space: nowrap;
}
.competitor-th-name { min-width: 140px; }
.competitor-td {
  padding: 0.6rem 0.6rem;
  border-bottom: 1px solid rgba(26, 60, 42, 0.07);
  color: var(--fg);
}
.competitor-td-name { font-weight: 500; font-size: 0.8rem; max-width: 180px; word-break: break-word; }
.competitor-td-score { font-size: 0.85rem; white-space: nowrap; }
.competitor-row-audited { background: rgba(26, 60, 42, 0.03); }
.competitor-row-audited .competitor-td { font-weight: 500; }
.competitor-you-badge {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 0.25rem;
}
/* Color-coded cells: lead (you're ahead) = green bg, trail (you're behind) = red bg */
.competitor-cell-lead { background: rgba(26, 124, 58, 0.1); color: #1a7c3a; font-weight: 600; }
.competitor-cell-trail { background: rgba(192, 57, 43, 0.08); color: #c0392b; }
.competitor-insight {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: #c0620a;
  margin-top: 1rem;
  line-height: 1.5;
}
.competitor-cta {
  margin-top: 1.25rem;
  text-align: center;
}

/* ── AI Preview Panels (audit results) ── */
.preview-section {
  margin: 2.5rem 0;
}
.preview-section-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
  text-align: center;
}
.preview-section-sub {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-align: center;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
.preview-panel {
  background: var(--white);
  border: 1.5px solid rgba(26, 60, 42, 0.12);
  border-radius: 10px;
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}
.preview-panel-badge {
  display: inline-block;
  background: rgba(26, 60, 42, 0.08);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.preview-panel-badge-post {
  background: rgba(201, 168, 76, 0.15);
  color: #7a5c10;
}
.preview-panel-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.preview-review-original {
  background: var(--bg-alt);
  border: 1px solid rgba(26, 60, 42, 0.1);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
}
.preview-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}
.preview-review-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg);
}
.preview-review-stars { font-size: 0.85rem; letter-spacing: 1px; }
.star-filled { color: var(--gold); }
.star-empty { color: rgba(26, 60, 42, 0.2); }
.preview-review-text {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.55;
  font-style: italic;
}
.preview-review-placeholder { opacity: 0.7; }
.preview-arrow {
  text-align: center;
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0.6rem 0;
}
.preview-response-card {
  background: #f0f7f2;
  border: 1.5px solid rgba(26, 60, 42, 0.18);
  border-radius: 8px;
  padding: 1rem 1.25rem;
}
.preview-response-text {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.6;
  white-space: pre-wrap;
}
.preview-disclosure {
  font-size: 0.7rem;
  color: var(--fg-muted);
  margin-top: 0.75rem;
  opacity: 0.7;
}
/* Google Post card mockup */
.preview-gbp-card {
  background: var(--white);
  border: 1.5px solid rgba(26, 60, 42, 0.12);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 12px rgba(26,60,42,0.06);
}
.preview-gbp-card-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}
.preview-gbp-icon {
  width: 36px;
  height: 36px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.preview-gbp-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.preview-gbp-business {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}
.preview-gbp-date {
  font-size: 0.72rem;
  color: var(--fg-muted);
}
.preview-gbp-post-text {
  font-size: 0.9rem;
  color: var(--fg);
  line-height: 1.65;
  white-space: pre-wrap;
}
/* Shared CTA block below both panels */
.preview-cta-block {
  background: var(--green);
  border-radius: 10px;
  padding: 2rem 2rem;
  text-align: center;
  margin-top: 0.25rem;
}
.preview-cta-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.preview-cta-btn {
  background: var(--gold) !important;
  color: var(--green) !important;
  font-size: 1rem !important;
  padding: 1rem 2rem !important;
  display: inline-block;
}
.preview-cta-btn:hover { background: #d4b45a !important; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem 2.5rem;
    gap: 2rem;
  }
  .hero-sidebar {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .hero-stat {
    padding: 1rem;
  }
  .hero-stat-number {
    font-size: 1.8rem;
  }
  .automation-grid {
    grid-template-columns: 1fr;
  }
  .outcomes-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .outcomes, .testimonials, .how-it-works, .faq {
    padding: 3rem 1.5rem;
  }
  .manifesto, .automation, .closing {
    padding: 3rem 1.5rem;
  }
  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .testimonials-grid, .steps-grid, .score-breakdown {
    grid-template-columns: 1fr;
  }
  .dentist-hero-cta-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .audit-form-card { padding: 1.75rem; }
}

@media (max-width: 480px) {
  .hero-sidebar { flex-direction: column; align-items: flex-start; }
  .audit-section { padding: 2.5rem 1.5rem; }
  .results-section { padding: 2rem 1.5rem 4rem; }
}