/* Lantern — crisp premium system: white / near-black / orange accent. Patterns only. */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

:root {
  --white: #ffffff;
  --black: #0a0a0a;
  --ink: #0a0a0a;
  --ink-soft: #3f3f46;
  --muted: #71717a;
  --accent: #FF5A1F;
  --accent-hover: #e84e14;
  --accent-deep: #c73d0a;
  --line: rgba(10, 10, 10, 0.08);
  --line-strong: rgba(10, 10, 10, 0.14);
  --surface: #ffffff;
  --surface-subtle: #fafafa;
  --tile-dark: rgba(255, 255, 255, 0.04);
  --line-dark: rgba(255, 255, 255, 0.1);
  --text-on-dark: #fafafa;
  --text-on-dark-soft: rgba(250, 250, 250, 0.72);
  --text-on-dark-muted: rgba(250, 250, 250, 0.5);
  --radius: 12px;
  --radius-pill: 999px;
  --max: 1160px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  background: var(--white);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1.025rem;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a {
  color: var(--accent-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--accent); }
h1, h2, h3, h4 {
  line-height: 1.12;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: -0.03em;
}
h1 {
  font-size: clamp(2.35rem, 5.2vw, 3.75rem);
  margin: 0 0 1rem;
  font-weight: 700;
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  margin: 0 0 0.85rem;
}
h3 {
  font-size: 1.125rem;
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
}
p { margin: 0 0 1rem; color: var(--ink-soft); }
ul { margin: 0 0 1rem; padding-left: 1.15rem; color: var(--ink-soft); }
li { margin-bottom: 0.4rem; }
.wrap { width: min(100% - 2.5rem, var(--max)); margin-inline: auto; }
.section { padding: 5rem 0; }
.section.alt { background: var(--surface-subtle); }
.section.tight { padding: 2.75rem 0; }
.lead {
  font-size: 1.125rem;
  max-width: 36rem;
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 400;
}
.muted { color: var(--muted); }
.small { font-size: 0.9rem; }

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: -0.03em;
  font-size: 1.05rem;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 7px;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.35rem;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 0.5rem 1.05rem !important;
  border-radius: var(--radius-pill);
  text-decoration: none !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  border: none;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.nav-cta:hover {
  background: var(--accent-hover) !important;
  color: #fff !important;
}

/* ——— Buttons ——— */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.35rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.95rem;
  font-family: inherit;
  letter-spacing: -0.01em;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease), transform 0.15s var(--ease);
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--accent);
  color: #fff !important;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff !important;
}
.btn-ghost {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--ink);
  color: var(--ink) !important;
  background: rgba(10, 10, 10, 0.03);
}
.btn-soft {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--line-strong);
}
.btn-soft:hover {
  border-color: var(--ink);
  background: rgba(10, 10, 10, 0.03);
}
.btn-on-dark {
  background: var(--accent);
  color: #fff !important;
  border-color: var(--accent);
}
.btn-on-dark:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff !important;
}
.btn-ghost-on-dark {
  background: transparent;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.28);
}
.btn-ghost-on-dark:hover {
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.06);
  color: #fff !important;
}

/* ——— Hero ——— */
.hero {
  padding: 5rem 0 4rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.hero .eyebrow { color: var(--accent-deep); }
.hero-card {
  background: var(--black);
  color: var(--text-on-dark);
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 1.75rem 1.65rem;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 90, 31, 0.35), transparent 70%);
  pointer-events: none;
}
.hero-card::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
  pointer-events: none;
}
.hero-card h2 {
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  color: #fff;
  position: relative;
  z-index: 1;
}
.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  z-index: 1;
  color: var(--text-on-dark-soft);
}
.hero-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.7rem;
  font-size: 0.95rem;
}
.hero-card li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-visual {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.25rem;
}
.hero-visual .lantern-mark {
  width: 72px;
  height: 72px;
  opacity: 0.9;
}
.hero-price {
  position: relative;
  z-index: 1;
  margin-top: 1.25rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.hero-price strong {
  font-size: 1.65rem;
  letter-spacing: -0.03em;
  color: #fff;
  font-weight: 700;
}
.hero-price span {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
}
.kicker {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 1.15rem;
  margin-bottom: 0;
}

/* ——— Stats ——— */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.stat {
  background: var(--white);
  padding: 1.35rem 1.1rem;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 1.55rem;
  color: var(--ink);
  letter-spacing: -0.03em;
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.stat span {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ——— Feature three-up ——— */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.65rem 1.45rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.feature-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 12px 40px rgba(10, 10, 10, 0.04);
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 90, 31, 0.1);
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  letter-spacing: -0.02em;
}
.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.55rem;
}
.feature-card p {
  margin: 0;
  font-size: 0.975rem;
}

/* ——— Cards / grids ——— */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.35rem;
}
.card p:last-child { margin-bottom: 0; }
.agent-role {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-deep);
  margin-bottom: 0.4rem;
}

/* ——— Dark band ——— */
.dark-band {
  background: var(--black);
  color: var(--text-on-dark);
  padding: 5.5rem 0;
}
.dark-band h2,
.dark-band h3 { color: #fff; }
.dark-band p,
.dark-band li { color: var(--text-on-dark-soft); }
.dark-band .eyebrow { color: var(--accent); }
.dark-band .lead { color: var(--text-on-dark-soft); }
.dark-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 2rem;
}
.dark-tile {
  background: var(--tile-dark);
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  padding: 1.25rem 1.2rem;
}
.dark-tile h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.dark-tile p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-on-dark-muted);
}
.dark-band .card {
  background: var(--tile-dark);
  border-color: var(--line-dark);
}
.dark-band .card h3 { color: #fff; }
.dark-band .card li,
.dark-band .card p { color: var(--text-on-dark-soft); }
.dark-band a:not(.btn) {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.dark-band a:not(.btn):hover { color: var(--accent); }

/* ——— Steps ——— */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
  margin-top: 2rem;
}
.steps.steps-stack {
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 720px;
}
.step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem 1.2rem;
}
.steps.steps-stack .step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.15rem;
  align-items: start;
  padding: 1.5rem 1.4rem;
}
.section.alt .step { background: var(--white); }
.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: var(--radius-pill);
  background: var(--black);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 0.85rem;
  letter-spacing: 0;
}
.step.has-num::before { display: none; content: none; }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  line-height: 1;
}
.step-body { min-width: 0; }
.step-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}
.step-body p { margin-bottom: 0.65rem; }
.step-body p:last-child { margin-bottom: 0; }
.step-body .btn-row { margin-top: 0.85rem; }
.dark-band .step {
  background: var(--tile-dark);
  border-color: var(--line-dark);
}
.dark-band .step::before {
  background: var(--accent);
  color: #fff;
}
.dark-band .step-num {
  background: var(--accent);
  color: #fff;
}
.dark-band .step h3 { color: #fff; }
.dark-band .step p { color: var(--text-on-dark-soft); margin-bottom: 0; }
.step p:last-child { margin-bottom: 0; }

/* Simple include list */
.include-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  max-width: 36rem;
}
.include-list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.75rem;
  border-bottom: 1px solid var(--line);
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.include-list li:last-child { border-bottom: none; }
.include-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.dark-band .include-list li {
  color: var(--text-on-dark-soft);
  border-bottom-color: var(--line-dark);
}


/* ——— Chips ——— */
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}
.chip-list a {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.875rem;
  font-weight: 500;
  transition: border-color 0.2s var(--ease), color 0.2s var(--ease), background 0.2s var(--ease);
}
.section.alt .chip-list a { background: var(--white); }
.chip-list a:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--surface-subtle);
}

/* ——— FAQ ——— */
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.05rem 1.25rem;
  margin-bottom: 0.55rem;
  transition: border-color 0.2s var(--ease);
}
.faq details[open] { border-color: var(--line-strong); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--muted);
  flex-shrink: 0;
  line-height: 1;
}
.faq details[open] summary::after { content: "−"; }
.faq details[open] summary { margin-bottom: 0.55rem; }
.faq details p:last-child { margin-bottom: 0; }
.section.alt .faq details { background: var(--white); }

/* ——— Forms ——— */
.form {
  display: grid;
  gap: 0.9rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
}
.form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.form input, .form select, .form textarea {
  font: inherit;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-subtle);
  color: var(--ink);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(10, 10, 10, 0.06);
  background: var(--white);
}
.form textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 0.85rem; color: var(--muted); margin: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }

/* ——— Page hero (inner) ——— */
.page-hero {
  padding: 3.25rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.breadcrumb {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  font-weight: 500;
}
.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
.breadcrumb a:hover { color: var(--ink); }

/* ——— Story cards ——— */
.story-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-deep);
  background: rgba(255, 90, 31, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}
.story-teaser .card h3,
.story-teaser .card h2 {
  font-size: 1.15rem;
}

/* ——— Note ——— */
.note-box {
  border-left: 3px solid var(--accent);
  background: rgba(255, 90, 31, 0.06);
  padding: 1rem 1.2rem;
  border-radius: 0 10px 10px 0;
  margin: 1.35rem 0;
}
.note-box p { margin: 0; color: var(--ink); font-size: 0.95rem; }

/* ——— Section heads ——— */
.section-head {
  max-width: 40rem;
  margin-bottom: 0.5rem;
}
.section-head.center {
  text-align: center;
  margin-inline: auto;
}
.section-head.center .lead {
  margin-inline: auto;
}

/* ——— CTA band (final) ——— */
.cta-band {
  background: var(--black);
  color: var(--text-on-dark);
  padding: 5rem 0;
  text-align: center;
}
.cta-band h2 { color: #fff; max-width: 28rem; margin-inline: auto; }
.cta-band .lead {
  color: var(--text-on-dark-soft);
  margin-inline: auto;
}
.cta-band .btn-row {
  justify-content: center;
}
.cta-band .kicker {
  color: var(--text-on-dark-muted);
}

/* ——— Footer ——— */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 3.5rem 0 2rem;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2rem;
}
.site-footer h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.site-footer a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}
.site-footer a:hover { color: var(--ink); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.85rem;
}
.footer-bottom a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-bottom a:hover { color: var(--ink); }

/* ——— Prose ——— */
.prose { max-width: 42rem; }
.prose h2 { margin-top: 2.25rem; }

/* ——— Menu toggle ——— */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.4rem 0.7rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--ink);
}


/* ——— Team / agents ——— */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
  margin-top: 2.25rem;
}
.team-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.45rem 1.35rem;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.team-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 12px 40px rgba(10, 10, 10, 0.04);
}
.section.alt .team-card { background: var(--white); }
.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.15rem;
}
.team-card .agent-role {
  margin-bottom: 0.65rem;
}
.team-card p {
  margin: 0;
  font-size: 0.975rem;
}
.team-card p + p {
  margin-top: 0.65rem;
}
.team-more {
  margin-top: 1.75rem;
  margin-bottom: 0;
}

@media (max-width: 960px) {
  .hero-grid, .grid-2, .footer-grid, .form-row, .dark-tiles { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .grid-3, .steps:not(.steps-stack), .feature-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .steps.steps-stack { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0 3rem; }
  .section, .dark-band, .cta-band { padding: 4rem 0; }
}
@media (max-width: 640px) {
  .stats, .grid-3, .steps, .feature-grid, .team-grid { grid-template-columns: 1fr; }
  .steps.steps-stack .step { grid-template-columns: auto 1fr; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding: 1rem 1.25rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
  .menu-toggle { display: inline-flex; }
  .wrap { width: min(100% - 1.75rem, var(--max)); }
  h1 { font-size: clamp(2rem, 8vw, 2.75rem); }
}
/* ——— Conversion rebuild extras ——— */


/* ——— Demo / illustration labels ——— */
.demo-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: rgba(255, 90, 31, 0.12);
  padding: 0.28rem 0.65rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}
.demo-badge-dark {
  color: #fff;
  background: rgba(255, 90, 31, 0.35);
}

/* ——— GBP mockup (illustration) ——— */
.gbp-mock {
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  overflow: hidden;
  max-width: 520px;
  margin-inline: auto;
  box-shadow: 0 16px 48px rgba(10, 10, 10, 0.06);
}
.gbp-mock-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--surface-subtle);
  border-bottom: 1px solid var(--line);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
}
.gbp-mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.gbp-mock-body { padding: 1.25rem 1.2rem 1.4rem; }
.gbp-mock-biz {
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
  color: var(--ink);
}
.gbp-mock-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.gbp-mock-update {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.05rem;
  background: var(--surface-subtle);
}
.gbp-mock-update-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-deep);
  margin-bottom: 0.45rem;
}
.gbp-mock-update p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.gbp-mock-caption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* ——— Example post cards ——— */
.example-post {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.45rem 1.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.example-post .trade-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-deep);
}
.example-post h3 {
  font-size: 1.05rem;
  margin: 0;
}
.example-post .post-body {
  margin: 0;
  font-size: 0.975rem;
  color: var(--ink-soft);
  line-height: 1.6;
  flex: 1;
}
.example-post .post-meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  padding-top: 0.5rem;
  border-top: 1px solid var(--line);
}

/* ——— Package box ——— */
.package-box {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  background: var(--white);
  max-width: 640px;
}
.package-price {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 0.35rem;
}
.package-price span {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: -0.01em;
}
.exclude-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
.exclude-list li {
  padding: 0.45rem 0 0.45rem 1.5rem;
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}
.exclude-list li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: var(--muted);
  font-weight: 600;
}

/* ——— Sticky CTA ——— */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: none;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 32px rgba(10, 10, 10, 0.06);
}
.sticky-cta .btn {
  padding: 0.7rem 1.15rem;
  font-size: 0.9rem;
}
body.has-sticky-cta {
  padding-bottom: 5.5rem;
}
body.has-sticky-cta .site-footer {
  margin-bottom: 0;
}
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  .sticky-cta-secondary { display: none; }
  body.has-sticky-cta { padding-bottom: 4.75rem; }
}
/* Hide sticky when a form is near viewport bottom / focused */
body.sticky-cta-hidden .sticky-cta { display: none !important; }
body.sticky-cta-hidden { padding-bottom: 0 !important; }

/* ——— Form status ——— */
.form-status {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.925rem;
  margin: 0;
}
.form-status.is-success {
  background: rgba(16, 185, 129, 0.1);
  color: #065f46;
  border: 1px solid rgba(16, 185, 129, 0.25);
}
.form-status.is-error {
  background: rgba(239, 68, 68, 0.08);
  color: #991b1b;
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.form-status[hidden] { display: none; }
.form button:disabled {
  opacity: 0.65;
  cursor: wait;
}

/* ——— Review demo ——— */
.review-demo {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.35rem;
  background: var(--white);
}
.review-demo .review-quote {
  font-size: 0.975rem;
  color: var(--ink-soft);
  font-style: italic;
  margin: 0 0 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.review-demo .reply-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-deep);
  margin-bottom: 0.4rem;
}
.review-demo .reply-body {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink);
}

/* ——— Steps 7-up grid tweak ——— */
.steps.steps-flow {
  grid-template-columns: 1fr;
  max-width: 720px;
}
@media (min-width: 720px) {
  .steps.steps-seven {
    grid-template-columns: 1fr;
    max-width: 720px;
  }
}

/* ——— Benefits list ——— */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.15rem;
  margin-top: 2rem;
}
@media (max-width: 640px) {
  .benefit-grid { grid-template-columns: 1fr; }
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.45rem 1.35rem;
}
.benefit-card h3 { margin-bottom: 0.45rem; }
.benefit-card p { margin: 0; font-size: 0.975rem; }

/* ——— Town chips on locations ——— */
.town-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
  list-style: none;
  padding: 0;
}
.town-grid li {
  margin: 0;
  padding: 0.5rem 0.95rem;
  background: var(--surface-subtle);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
}
