/* Local Growth Department -- marketing site styles
   Mobile-first. Breakpoints at 640px and 960px. */

:root {
  --navy: #0f2a43;
  --navy-dark: #091b2c;
  --teal: #0f9d78;
  --teal-dark: #0b7d5f;
  --bg: #f7f9fb;
  --card-bg: #ffffff;
  --text: #16232f;
  --text-muted: #4b5b6b;
  --border: #dbe3ea;
  --notice-bg: #eef3f7;
  --max-width: 1120px;
  --radius: 10px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 18px;
}

h1, h2, h3, h4 {
  color: var(--navy);
  line-height: 1.25;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

a {
  color: var(--teal-dark);
}

ul, ol {
  padding-left: 1.25em;
}

img { max-width: 100%; display: block; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 0.75em 1em;
  z-index: 100;
}
.skip-link:focus {
  left: 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 0.85em 1.5em;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
}
.btn-primary:hover { background: var(--teal-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-outline-invert {
  background: transparent;
  border-color: #fff;
  color: #fff;
}
.btn-outline-invert:hover { background: #fff; color: var(--navy); }

.btn-block { display: block; width: 100%; margin-top: 1em; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
}

/* ---------- Header / Nav ---------- */

.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9em 1.25em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.brand {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
  max-width: calc(100% - 54px);
}
.brand-name {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  overflow-wrap: anywhere;
}
.brand-sub {
  color: #a9c2d6;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 1px solid #ffffff55;
  border-radius: 6px;
  width: 42px;
  height: 38px;
  align-items: center;
  cursor: pointer;
}
.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
}

.primary-nav {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  order: 3;
  flex-basis: 100%;
}
.primary-nav.open {
  /* Cap to the viewport (minus header height) and let the menu scroll internally so every
     item — including Client Login and Get Started at the end — stays reachable on short
     phone screens instead of being clipped by a fixed max-height. */
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}
.primary-nav ul {
  list-style: none;
  margin: 0.75em 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ffffff22;
}
.primary-nav a {
  display: block;
  padding: 0.85em 0.25em;
  color: #e7eef4;
  text-decoration: none;
  border-bottom: 1px solid #ffffff14;
  font-weight: 500;
}
.primary-nav a.active {
  color: #fff;
  font-weight: 700;
}
.primary-nav a.nav-cta {
  color: var(--teal);
  font-weight: 700;
}

@media (min-width: 820px) {
  .nav-toggle { display: none; }
  .primary-nav {
    max-height: none;
    overflow: visible;
    width: auto;
    order: 2;
    flex-basis: auto;
  }
  .primary-nav ul {
    flex-direction: row;
    align-items: center;
    border-top: none;
    margin: 0;
    gap: 0.25em;
    flex-wrap: wrap;
  }
  .primary-nav a {
    border-bottom: none;
    padding: 0.5em 0.7em;
    border-radius: 6px;
    font-size: 0.95rem;
  }
  .primary-nav a:hover,
  .primary-nav a.active {
    background: #ffffff1a;
  }
  .primary-nav a.nav-cta {
    background: var(--teal);
    color: #fff;
  }
  .primary-nav a.nav-cta:hover {
    background: var(--teal-dark);
  }
}

/* ---------- Layout helpers ---------- */

main {
  display: block;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5em 1.25em;
}

.section-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5em 1.25em;
}

.section-tight { padding-top: 0; }

.section-alt {
  background: #eef3f7;
}

.section-dark {
  background: var(--navy);
  color: #dbe7f0;
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.25em 1.25em;
  display: grid;
  gap: 1.75em;
  align-items: center;
}
.hero h1 { color: #fff; }
.hero p.lead {
  font-size: 1.15rem;
  color: #cfe0ec;
  max-width: 640px;
}
.hero-media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}
@media (min-width: 860px) {
  .hero-inner {
    grid-template-columns: 1.1fr 0.9fr;
    padding: 3em 1.25em;
  }
}

/* ---------- Topic images (supporting page photos) ---------- */

.topic-image {
  margin: 0 0 2em;
}
.topic-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

/* ---------- Trust banner ---------- */

.trust-banner {
  background: var(--teal);
  color: #fff;
  text-align: center;
  padding: 1.5em 1.25em;
}
.trust-banner p {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto;
}

/* ---------- Cards / grids ---------- */

.card-grid {
  display: grid;
  gap: 1.25em;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5em;
}

/* ---------- Category icons (LOC-123: simple, consistent scanning aids) ---------- */

.category-icon {
  flex-shrink: 0;
  color: var(--teal-dark);
}

.card-heading,
.service-card-heading,
.page-heading {
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.page-heading .category-icon {
  color: var(--teal);
}

/* ---------- Service explainer cards ---------- */

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5em;
}

/* ---------- Legal agreement and checkout acceptance ---------- */

.eyebrow {
  margin: 0 0 0.45rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.legal-document {
  padding-top: clamp(2.5rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.legal-header {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.legal-version {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  color: var(--text-muted);
}

.legal-warning,
.acceptance-copy {
  margin: 1.5rem 0;
  padding: 1rem 1.1rem;
  border: 1px solid #d9bd7d;
  border-left: 4px solid #b77d18;
  border-radius: var(--radius);
  background: #fff8e8;
}

.legal-toc {
  margin: 2rem 0 2.5rem;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card-bg);
}

.legal-toc h2 {
  margin-top: 0;
  font-size: 1.15rem;
}

.legal-toc ol {
  columns: 2;
  gap: 2.5rem;
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.legal-toc li {
  break-inside: avoid;
  margin-bottom: 0.45rem;
}

.legal-copy section {
  scroll-margin-top: 7rem;
  padding: 0.25rem 0 1.4rem;
  border-bottom: 1px solid var(--border);
}

.legal-copy h2 {
  margin-top: 1.5rem;
}

.legal-copy p,
.legal-copy li {
  line-height: 1.72;
}

.legal-document-footer {
  margin-top: 2rem;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  background: var(--notice-bg);
}

.agreement-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  margin: 1.25rem 0;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card-bg);
  cursor: pointer;
}

.agreement-check input {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0.15rem;
  accent-color: var(--teal);
}

.form-note {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.checkout-preview .btn[disabled] {
  cursor: not-allowed;
  opacity: 0.58;
}

@media (max-width: 640px) {
  .legal-toc ol {
    columns: 1;
  }
}
.service-facts {
  margin: 0;
}
.service-facts > div {
  margin-bottom: 0.9em;
}
.service-facts dt {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.2em;
}
.service-facts dd {
  margin: 0;
  color: var(--text);
}
.service-grid {
  display: grid;
  gap: 1.25em;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Pricing ---------- */

.pricing-grid {
  display: grid;
  gap: 1.5em;
  grid-template-columns: 1fr;
}
@media (min-width: 860px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
}
.pricing-grid-compact { max-width: var(--max-width); }

.price-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75em;
  display: flex;
  flex-direction: column;
}
.price-amount {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0.2em 0 0;
}
.price-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}
.price-setup {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.2em;
}
.price-blurb {
  margin-top: 0.75em;
}
.price-includes {
  margin: 0 0 1em;
  padding-left: 1.1em;
  flex-grow: 1;
}
.price-includes li { margin-bottom: 0.4em; }
.price-includes-link { flex-grow: 1; }
.pricing-note {
  max-width: var(--max-width);
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 1.25em;
}

.promo-banner {
  background: #fff6e0;
  border: 1px solid #f0d896;
  border-radius: var(--radius);
  padding: 1.1em 1.4em;
  max-width: var(--max-width);
}
.promo-banner code {
  background: #fff;
  border: 1px solid #f0d896;
  padding: 0.1em 0.5em;
  border-radius: 4px;
  font-weight: 700;
}

/* ---------- Notices / disclaimers ---------- */

.notice-stack {
  display: grid;
  gap: 1em;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .notice-stack { grid-template-columns: repeat(3, 1fr); }
}
.notice {
  background: var(--notice-bg);
  border-left: 4px solid var(--navy);
  border-radius: 6px;
  padding: 1em 1.25em;
}
.notice h3 {
  font-size: 1rem;
  margin-bottom: 0.35em;
}
.notice p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ---------- CTA banner ---------- */

.cta-banner {
  background: var(--navy);
  color: #fff;
  text-align: center;
  border-radius: var(--radius);
  padding: 2.5em 1.5em;
  max-width: var(--max-width);
  margin: 0 auto;
}
.cta-banner h2 { color: #fff; }
.cta-banner .btn-row { justify-content: center; }

/* ---------- Steps ---------- */

.step-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
  display: grid;
  gap: 1.25em;
}
.step-list li {
  counter-increment: step;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25em 1.25em 1.25em 3.5em;
  position: relative;
}
.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 1.1em;
  top: 1.2em;
  background: var(--teal);
  color: #fff;
  width: 1.8em;
  height: 1.8em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ---------- FAQ ---------- */

.faq-list details {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.9em 1.1em;
  margin-bottom: 0.75em;
}
.faq-list summary {
  font-weight: 700;
  cursor: pointer;
  color: var(--navy);
}
.faq-list details[open] summary {
  margin-bottom: 0.5em;
}

/* ---------- Placeholder pages ---------- */

.placeholder-box {
  background: var(--card-bg);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 2.5em;
  text-align: center;
}

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  gap: 1.5em;
  grid-template-columns: 1fr;
}
@media (min-width: 780px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-form fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
.contact-form label {
  display: block;
  font-weight: 600;
  margin: 0.9em 0 0.3em;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7em;
  border: 1px solid var(--border);
  border-radius: 6px;
  font: inherit;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-dark);
  color: #c3d2de;
  margin-top: 3em;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5em 1.25em 3em;
}
.footer-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.2em;
}
.footer-tagline {
  color: #9fb3c2;
  margin-bottom: 1.25em;
}
.footer-links {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1em 1.5em;
  margin: 0 0 1.5em;
}
.footer-links a {
  color: #cfe0ec;
  text-decoration: none;
}
.footer-links a:hover { text-decoration: underline; }
.footer-disclaimer {
  font-size: 0.85rem;
  color: #8fa4b3;
  max-width: 760px;
  border-top: 1px solid #ffffff1a;
  padding-top: 1.25em;
}
.footer-copyright {
  font-size: 0.8rem;
  color: #6f8494;
  margin-top: 1em;
  margin-bottom: 0;
}

/* ---------- Feature Samples (LOC-169 follow-up) ---------- */

.service-card-sample-link {
  margin: 0.75em 0 0;
}
.service-card-sample-link a {
  font-weight: 600;
  text-decoration: none;
}
.service-card-sample-link a:hover {
  text-decoration: underline;
}

.sample-index {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1em 1.4em;
}
.sample-index ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em 1.25em;
}
.sample-index a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.sample-index a:hover {
  text-decoration: underline;
}

.sample-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2em;
}

.sample-block {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75em;
  scroll-margin-top: 5.5rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.sample-mockup {
  margin-top: 1.25em;
  min-width: 0;
  max-width: 100%;
}

.sample-badge {
  display: inline-block;
  background: var(--notice-bg);
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.2em 0.7em;
  vertical-align: middle;
}

.mock-caption {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0.75em 0 0;
}

/* Generic device/app frame used across most mockups */
.mock-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  max-width: 460px;
  width: 100%;
  min-width: 0;
}
.mock-frame-card,
.mock-frame-browser-mini {
  max-width: 100%;
}
.mock-frame-bar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 0.5em 0.75em;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
.mock-frame-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  display: inline-block;
}
.mock-frame-bar p {
  margin: 0 0 0 0.5em;
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mock-frame-body {
  padding: 1em;
  min-width: 0;
}
.mock-frame-phone {
  max-width: 320px;
}

/* Chat / text thread */
.mock-thread {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.mock-msg {
  max-width: 82%;
  padding: 0.55em 0.85em;
  border-radius: 14px;
}
.mock-msg p {
  margin: 0;
  font-size: 0.9rem;
}
.mock-msg-in {
  align-self: flex-start;
  background: var(--notice-bg);
  border-bottom-left-radius: 4px;
}
.mock-msg-out {
  align-self: flex-end;
  background: var(--teal);
  color: #fff;
  border-bottom-right-radius: 4px;
}

/* Chat widget floating over a page skeleton */
.mock-chat-widget {
  margin-top: 0.75em;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75em;
  background: #fff;
  max-width: 280px;
  margin-left: auto;
}

/* Star rating */
.mock-stars {
  color: #d9a441;
  letter-spacing: 0.05em;
}
.mock-stars-count {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Fictional sample-photo gallery */
.mock-photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5em;
  margin-top: 0.75em;
}
.mock-photo {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.mock-gbp-name {
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.3em;
}
.mock-gbp-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0.3em 0 0;
}

/* Social post cards */
.mock-post {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 0.75em;
  align-items: flex-start;
  padding: 0.6em 0;
  border-bottom: 1px solid var(--border);
}
.mock-post:last-child {
  border-bottom: none;
}
.mock-post-media {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--border);
}
.mock-post p {
  margin: 0;
  font-size: 0.9rem;
  min-width: 0;
  overflow-wrap: anywhere;
}
.mock-post .sample-badge {
  max-width: 100%;
  white-space: normal;
  line-height: 1.25;
}

@media (max-width: 520px) {
  .header-inner {
    padding-inline: 0.75em;
    flex-wrap: nowrap;
  }
  .brand-name {
    font-size: 0.94rem;
  }
  .brand-sub {
    font-size: 0.68rem;
  }
  .nav-toggle {
    flex: 0 0 42px;
  }
  .sample-block {
    padding: 1em;
  }
  .mock-frame-body {
    padding: 0.75em;
  }
  .mock-post {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.65em;
  }
  .mock-post-media {
    width: 48px;
    height: 48px;
  }
  .mock-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mock-calendar {
    grid-template-columns: minmax(0, 1fr);
  }
  .mock-bar-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.35em;
  }
  .mock-crm-table {
    font-size: 0.75rem;
  }
  table.simple-table th,
  table.simple-table td {
    padding: 0.45em;
    overflow-wrap: anywhere;
  }
  .mock-file {
    align-items: flex-start;
    padding: 0.8em;
  }
}

/* Generic abstract page/content skeleton (chat widget host page, city pages, before/after) */
.mock-page-skeleton {
  height: 90px;
  border-radius: 6px;
  background: repeating-linear-gradient(
    to bottom,
    var(--bg) 0,
    var(--bg) 10px,
    var(--border) 10px,
    var(--border) 12px
  );
}
.mock-page-heading {
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.75em;
}
.mock-before-after {
  display: grid;
  gap: 1em;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 640px) {
  .mock-before-after { grid-template-columns: 1fr 1fr; }
}
.mock-page-skeleton-cluttered {
  height: 130px;
  background: repeating-linear-gradient(
    to bottom,
    #f0ded0 0,
    #f0ded0 8px,
    #d9b98f 8px,
    #d9b98f 10px
  );
}
.mock-page-skeleton-clean {
  height: 130px;
  background: linear-gradient(to bottom, var(--bg) 0%, var(--bg) 55%, var(--border) 55%, var(--border) 58%);
}

/* "Before" mockup: dated, crowded, poorly-spaced site with a hard-to-find phone number */
.mock-site-before {
  font-family: Georgia, "Times New Roman", serif;
  background: #fdf6e3;
  border: 1px solid #cbb98f;
  padding: 0.5em;
  font-size: 0.68rem;
  line-height: 1.15;
  color: #3a3226;
}
.mock-site-before-topline {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  padding: 0.35em;
  margin: -0.5em -0.5em 0.4em;
  letter-spacing: 0.01em;
}
.mock-site-before-textblock {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 0.5em;
}
.mock-site-before-textblock span {
  display: block;
  height: 6px;
  background: #c9c2ad;
}
.mock-site-before-textblock span:nth-child(odd) {
  width: 100%;
}
.mock-site-before-textblock span:nth-child(even) {
  width: 92%;
}
.mock-site-before-navwall {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25em 0.5em;
  margin-bottom: 0.5em;
}
.mock-site-before-navwall span {
  font-size: 0.6rem;
  text-decoration: underline;
  color: var(--navy);
}
.mock-site-before-phone {
  font-size: 0.6rem;
  color: #8a8272;
  margin: 0;
  text-align: right;
}

/* "After" mockup: clean, mobile-friendly redesign with a visible call button */
.mock-site-after-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5em;
  margin-bottom: 0.6em;
}
.mock-site-after-logo {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.8rem;
}
.mock-site-after-call {
  background: var(--teal);
  color: #fff;
  font-weight: 700;
  font-size: 0.68rem;
  padding: 0.4em 0.7em;
  border-radius: 999px;
  white-space: nowrap;
}
.mock-site-after-hero-photo {
  height: 70px;
  border-radius: 8px;
  margin-bottom: 0.6em;
  background: linear-gradient(135deg, #cfe8de, var(--teal) 140%);
}
.mock-site-after-heading {
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.25em;
  font-size: 0.85rem;
}
.mock-site-after-sub {
  color: var(--text-muted);
  font-size: 0.72rem;
  margin: 0 0 0.6em;
}
.mock-site-after-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4em;
  margin-bottom: 0.6em;
}
.mock-site-after-services span {
  background: var(--notice-bg);
  border-radius: 6px;
  padding: 0.4em;
  font-size: 0.68rem;
  text-align: center;
  color: var(--navy);
  font-weight: 600;
}
.mock-site-after-form {
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
.mock-site-after-field {
  height: 24px;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--bg);
}
.mock-site-after-submit {
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.5em;
  border-radius: 6px;
}

/* Email preview */
.mock-email-subject {
  font-weight: 700;
  margin: 0 0 0.75em;
}
.mock-email-body {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.mock-email-line {
  display: block;
  height: 10px;
  border-radius: 4px;
  background: var(--border);
  width: 60%;
}
.mock-email-line-wide {
  width: 100%;
}
.mock-email-cta {
  display: inline-block;
  margin-top: 0.5em;
  background: var(--teal);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.5em 1em;
  border-radius: 6px;
  width: fit-content;
}

/* Booking calendar */
.mock-calendar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75em;
}
.mock-cal-day {
  text-align: center;
}
.mock-cal-day-label {
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.5em;
  font-size: 0.85rem;
}
.mock-cal-slot {
  display: block;
  margin-bottom: 0.4em;
  padding: 0.4em;
  border-radius: 6px;
  background: var(--teal);
  color: #fff;
  font-size: 0.8rem;
}
.mock-cal-slot-taken {
  background: var(--border);
  color: var(--text-muted);
  text-decoration: line-through;
}

/* CRM table */
.mock-crm-table {
  font-size: 0.9rem;
}

/* Bar compare (competitor / audit reports) */
.mock-bar-compare {
  display: grid;
  gap: 0.75em;
}
.mock-bar-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  align-items: center;
  gap: 0.75em;
}
.mock-bar-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.mock-bar-label em {
  font-style: normal;
  font-size: 0.75rem;
}
.mock-bar-track {
  background: var(--bg);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}
.mock-bar-fill {
  display: block;
  height: 100%;
  background: var(--teal);
  border-radius: 999px;
}

/* Postcard */
.mock-postcard {
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: 1.5em;
  text-align: center;
}
.mock-postcard-headline {
  font-weight: 800;
  color: var(--navy);
  font-size: 1.2rem;
  margin: 0 0 0.3em;
}
.mock-postcard-sub {
  margin: 0 0 0.75em;
}
.mock-postcard-cta {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.5em 1em;
  border-radius: 6px;
}

/* Audio deliverable file card */
.mock-file {
  display: flex;
  align-items: center;
  gap: 1em;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1em 1.25em;
}
.mock-file-icon {
  flex-shrink: 0;
  width: 2.2em;
  height: 2.2em;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.mock-file > div {
  min-width: 0;
}
.mock-file-name {
  font-weight: 700;
  margin: 0;
  overflow-wrap: anywhere;
}
.mock-file-meta {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0.15em 0 0;
}
.mock-file-waveform {
  margin-left: auto;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 24px;
}
.mock-file-waveform span {
  display: block;
  width: 3px;
  height: calc(var(--h, 10) * 1px + 4px);
  background: var(--border);
  border-radius: 2px;
}
@media (max-width: 520px) {
  .mock-file-waveform {
    display: none;
  }
}

/* ---------- Table (packages comparison, if used) ---------- */

table.simple-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
}
table.simple-table th,
table.simple-table td {
  text-align: left;
  padding: 0.75em;
  border-bottom: 1px solid var(--border);
}
