:root {
  --ink: #121514;
  --muted: #59615d;
  --line: #d8ded9;
  --paper: #f5f5f1;
  --panel: #ffffff;
  --green: #235f49;
  --green-dark: #10251e;
  --teal: #256d75;
  --coral: #a95f4c;
  --gold: #a98743;
  --shadow: 0 18px 60px rgba(21, 37, 32, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.62; }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: 0; }
h1 { font-size: clamp(2rem, 4.8vw, 4.35rem); max-width: 900px; }
h2 { font-size: clamp(1.45rem, 2.7vw, 2.45rem); }
h3 { font-size: 1.05rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 54px);
  background: rgba(18, 21, 20, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 206px; }
.brand-mark {
  width: 38px;
  height: 38px;
  object-fit: contain;
}
.brand-name { width: 148px; height: 30px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: 4px; font-size: 0.92rem; }
.site-nav a {
  padding: 9px 11px;
  border-radius: 8px;
  color: rgba(255,255,255,0.76);
}
.site-nav a:hover, .site-nav a.active { background: rgba(255,255,255,0.1); color: white; }
.site-nav .nav-cta { background: white; color: var(--ink); margin-left: 6px; }
.menu-toggle { display: none; width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.2); background: transparent; border-radius: 8px; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: white; }

.page { display: none; }
.page.active { display: block; }
.hero, .page-hero, .section-grid, .fit-section, .problems-preview, .team-band, .closing-cta,
.review-section, .deliverables, .not-section, .timeline, .blog-admin, .empty-state, .topic-bank,
.booking-layout {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
.hero {
  min-height: min(760px, calc(100vh - 60px));
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.85fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
  padding: 38px 0 34px;
}
.hero-copy { position: relative; z-index: 1; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.11em;
}
.lead { font-size: clamp(1rem, 1.4vw, 1.14rem); max-width: 680px; }
.action-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--ink);
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}
.button.primary { background: var(--ink); color: white; }
.button.secondary { background: transparent; color: var(--ink); }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(18,21,20,0.12); }
.support { font-size: 0.95rem; }
.inline-logo {
  width: 136px;
  height: auto;
  display: block;
}

.diagnostic-visual {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(16,37,30,0.98), rgba(37,109,117,0.82)),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.25), transparent 34%);
  box-shadow: var(--shadow);
}
.diagnostic-visual::before {
  content: "";
  position: absolute;
  inset: 80px 34px 104px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.72;
}
.brand-visual > img {
  position: absolute;
  z-index: 1;
  right: -16px;
  bottom: -22px;
  width: 58%;
  opacity: 0.13;
}
.diagnostic-visual canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.dashboard-top {
  position: absolute;
  z-index: 3;
  left: 28px;
  right: 28px;
  top: 24px;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 16px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.76);
  font-size: 0.82rem;
}
.dashboard-top b {
  color: white;
  font-size: 0.84rem;
}
.dashboard-top > div:first-child {
  display: grid;
  gap: 5px;
}
.signal-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.signal-panel {
  position: relative;
  z-index: 3;
  min-width: 0;
  padding: 10px 11px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.signal-panel.pulse {
  animation: signalPulse 0.42s ease;
}
@keyframes signalPulse {
  0% { transform: translateY(0); background: rgba(255,255,255,0.12); }
  45% { transform: translateY(-3px); background: rgba(255,255,255,0.22); }
  100% { transform: translateY(0); background: rgba(255,255,255,0.12); }
}
.signal-panel.mid { top: auto; left: auto; right: auto; }
.signal-panel:nth-of-type(3) { top: auto; bottom: auto; left: auto; }
.signal-panel span { color: rgba(255,255,255,0.68); font-size: 0.78rem; }
.signal-panel b { display: block; margin-top: 5px; font-size: 1rem; }
.diagnostic-tags {
  position: absolute;
  z-index: 3;
  left: 28px;
  right: 28px;
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.diagnostic-tags span {
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.82);
  font-size: 0.76rem;
  font-weight: 760;
}
.conversion-path {
  position: absolute;
  z-index: 2;
  inset: 100px 54px 120px;
}
.conversion-path::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  top: 50%;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0.85), rgba(200,155,60,0.95), rgba(198,95,69,0.9));
  transform: rotate(-10deg);
  transform-origin: center;
}
.path-point {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 7px rgba(255,255,255,0.11);
}
.path-point.p1 { left: 10%; top: 38%; }
.path-point.p2 { left: 38%; top: 32%; }
.path-point.p3 { left: 64%; top: 48%; }
.path-point.p4 { left: 88%; top: 64%; }
.path-point.weak { background: var(--gold); }
.path-point.low { background: var(--coral); }
.diagnostic-visual[data-state="price"] .conversion-path::before { background: linear-gradient(90deg, rgba(255,255,255,0.78), rgba(198,95,69,0.98)); }
.diagnostic-visual[data-state="traffic"] .conversion-path::before { transform: rotate(5deg); }
.diagnostic-visual[data-state="team"] .conversion-path::before { background: repeating-linear-gradient(90deg, rgba(255,255,255,0.7), rgba(255,255,255,0.7) 18px, rgba(200,155,60,0.95) 18px, rgba(200,155,60,0.95) 28px); }
.diagnostic-visual[data-state="enquiry"] .path-point.p4 { transform: scale(0.65); opacity: 0.75; }

.band, .intro-band {
  padding: 54px 0;
  background: var(--ink);
  color: white;
}
.section-copy { width: min(980px, calc(100% - 36px)); margin: 0 auto; }
.band p { color: rgba(255,255,255,0.76); }
.band .eyebrow { color: #91d7c0; }
.section-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  padding: 58px 0;
}
.method-strip {
  width: min(1180px, calc(100% - 36px));
  margin: 34px auto 0;
  padding: 24px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
}
.symptom-tool, .journey-strip, .before-after {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 48px 0;
}
.symptom-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 18px;
  align-items: stretch;
}
.symptom-options {
  display: grid;
  gap: 10px;
}
.symptom-option {
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-weight: 760;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}
.symptom-option:hover {
  transform: translateX(3px);
  border-color: #99aca3;
}
.symptom-option.active {
  background: var(--green-dark);
  color: white;
  border-color: var(--green-dark);
}
.symptom-result {
  min-height: 272px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(24,32,31,0.06);
}
.symptom-result h3 { font-size: 1.45rem; }
.symptom-result dl {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}
.symptom-result dt { font-weight: 850; }
.symptom-result dd {
  margin: -8px 0 0;
  color: var(--muted);
  line-height: 1.55;
}
.method-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.method-items span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 12px;
  border-radius: 8px;
  background: #f0f3ef;
  color: #26332f;
  font-weight: 750;
  line-height: 1.35;
  text-align: center;
  font-size: 0.9rem;
}
.audit-strip {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 36px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 24px;
  padding: 26px;
  border-radius: 8px;
  background: var(--green-dark);
  color: white;
}
.journey-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.journey-step {
  position: relative;
  min-height: 170px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  opacity: 0.55;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.journey-step.active {
  opacity: 1;
  transform: translateY(0);
  border-color: #9ab4a8;
  box-shadow: 0 12px 34px rgba(24,32,31,0.08);
}
.journey-step span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: #e5eee9;
  color: var(--green-dark);
  font-weight: 900;
}
.journey-step b { display: block; margin-bottom: 8px; }
.journey-step p { margin: 0; font-size: 0.94rem; }
.audit-strip .eyebrow { color: #9bd4bf; }
.audit-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.audit-stats span {
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.09);
  color: rgba(255,255,255,0.78);
}
.audit-stats b {
  display: block;
  color: white;
  font-size: 2rem;
  line-height: 1;
}
.text-stack p:first-child { margin-top: 0; }
.statement {
  color: var(--ink);
  font-weight: 760;
  font-size: 1.15rem;
}
.section-heading { max-width: 820px; margin-bottom: 30px; }
.fit-section, .problems-preview, .review-section, .deliverables, .timeline, .topic-bank { padding: 42px 0; }
.fit-grid, .problem-grid, .review-grid, .topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.fit-grid article, .problem-card, .review-card, .topic-card {
  min-height: 112px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(24,32,31,0.04);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.problem-card { display: flex; flex-direction: column; gap: 8px; cursor: pointer; }
.problem-icon {
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid #bdd0c8;
  background: #e8f0ec;
  position: relative;
  flex: 0 0 auto;
}
.problem-icon::before,
.problem-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.problem-icon.eye::before { width: 15px; height: 9px; border: 2px solid var(--green); border-radius: 50%; }
.problem-icon.eye::after { width: 4px; height: 4px; background: var(--green); border-radius: 50%; }
.problem-icon.tag::before { width: 13px; height: 13px; border: 2px solid var(--green); transform: translate(-50%, -50%) rotate(45deg); border-radius: 3px; }
.problem-icon.trust::before { width: 14px; height: 10px; border: 2px solid var(--green); border-radius: 8px 8px 4px 4px; }
.problem-icon.trust::after { width: 8px; height: 6px; border: 2px solid var(--green); border-bottom: 0; top: 38%; border-radius: 8px 8px 0 0; }
.problem-icon.lead::before { width: 15px; height: 15px; border: 2px solid var(--green); border-radius: 50%; }
.problem-icon.lead::after { width: 7px; height: 2px; background: var(--green); transform: translate(-10%, 230%) rotate(45deg); }
.problem-icon.offer::before { width: 14px; height: 10px; border: 2px solid var(--green); border-radius: 3px; }
.problem-icon.repeat::before { width: 15px; height: 15px; border: 2px solid var(--green); border-left-color: transparent; border-radius: 50%; }
.problem-icon.path::before { width: 16px; height: 3px; background: var(--green); box-shadow: 0 6px 0 var(--green), 0 -6px 0 var(--green); }
.problem-icon.focus::before { width: 14px; height: 14px; border: 2px solid var(--green); border-radius: 50%; }
.problem-icon.focus::after { width: 4px; height: 4px; background: var(--green); border-radius: 50%; }
.problem-icon.voice::before { width: 15px; height: 10px; border: 2px solid var(--green); border-radius: 8px; }
.problem-icon.ai::before { width: 14px; height: 14px; border: 2px solid var(--green); border-radius: 4px; }
.problem-icon.handoff::before { width: 16px; height: 2px; background: var(--green); }
.problem-icon.handoff::after { width: 7px; height: 7px; border-top: 2px solid var(--green); border-right: 2px solid var(--green); transform: translate(0, -50%) rotate(45deg); }
.problem-icon.urgency::before { width: 14px; height: 14px; border: 2px solid var(--green); border-radius: 50%; }
.problem-icon.urgency::after { width: 2px; height: 8px; background: var(--green); transform: translate(-50%, -70%); }
.fit-grid article:hover, .problem-card:hover, .review-card:hover, .topic-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(24,32,31,0.08);
  border-color: #aebcb5;
}
.problem-card small { color: var(--green); font-weight: 800; }
.problem-card p { margin: 0; font-size: 0.94rem; }
.center-row { display: flex; justify-content: center; margin-top: 26px; }
.team-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  align-items: start;
  padding: 30px;
  margin-top: 38px;
  margin-bottom: 38px;
  border-radius: 8px;
  background: #e5eee9;
}
.team-band p {
  max-width: 760px;
  margin-top: 0;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.ba-grid article {
  padding: 24px;
  min-height: 170px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
}
.ba-grid article:nth-child(2) {
  background: var(--green-dark);
  color: white;
}
.ba-grid span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 850;
  letter-spacing: 0.11em;
}
.ba-grid article:nth-child(2) span { color: #9bd4bf; }
.ba-grid article:nth-child(2) p { color: rgba(255,255,255,0.78); }
.closing-cta {
  padding: 56px 0 68px;
  text-align: center;
}
.closing-cta .button { margin-top: 22px; }

.page-hero { padding: 58px 0 34px; }
.page-hero h1 { font-size: clamp(2rem, 4.4vw, 3.75rem); }
.page-hero p { max-width: 720px; font-size: 1.04rem; }
.clarity-split {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 22px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 16px;
}
.clarity-card {
  padding: 28px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
}
.clarity-card.dark {
  background: var(--green-dark);
  color: white;
}
.clarity-card.dark .eyebrow { color: #9bd4bf; }
.plain-list {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}
.not-section {
  padding: 26px;
  border-left: 6px solid var(--coral);
  background: white;
  border-radius: 8px;
}
.materials-section {
  width: min(1180px, calc(100% - 36px));
  margin: 22px auto 0;
  padding: 28px;
  background: #e5eee9;
  border-radius: 8px;
}
.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.materials-grid span {
  padding: 13px 14px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #31403c;
}
.blocker-map, .not-for-section {
  width: min(1180px, calc(100% - 36px));
  margin: 24px auto 0;
  padding: 28px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
}
.blocker-map {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 24px;
  align-items: center;
}
.report-preview {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 8px;
  background: #f5f5f1;
  border: 1px solid var(--line);
}
.report-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.report-header span {
  color: var(--muted);
  font-size: 0.82rem;
}
.report-row {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 14px;
  padding: 14px;
  border-radius: 8px;
  background: white;
}
.report-row.focus {
  background: var(--green-dark);
  color: white;
}
.report-row span { color: var(--muted); line-height: 1.5; }
.report-row.focus span { color: rgba(255,255,255,0.78); }
.not-for-section {
  background: #211d1b;
  color: white;
}
.not-for-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.not-for-grid span {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}
.review-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.review-card strong { display: block; margin-bottom: 8px; }
.check-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}
.check-list li {
  padding: 12px 14px 12px 40px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  position: relative;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 18px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: rotate(-45deg);
}

.filter-bar {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
}
.filter.active { background: var(--green-dark); color: white; border-color: var(--green-dark); }
.accordion-list {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 60px;
  display: grid;
  gap: 12px;
}
.accordion-item {
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.accordion-item.open {
  border-color: #aebcb5;
  box-shadow: 0 12px 34px rgba(24,32,31,0.06);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 18px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  align-items: center;
}
.accordion-trigger span { color: var(--muted); display: block; margin-top: 6px; }
.accordion-trigger .problem-icon { margin-right: 6px; }
.problem-trigger {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) auto;
  justify-content: stretch;
  align-items: center;
  column-gap: 14px;
}
.problem-trigger .problem-icon {
  margin-right: 0;
}
.problem-trigger strong {
  min-width: 0;
  justify-self: stretch;
}
.problem-trigger > b {
  justify-self: end;
}
.problem-trigger + .accordion-content {
  padding-left: 64px;
}
.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 18px;
  transition: grid-template-rows 0.24s ease, padding-bottom 0.24s ease;
}
.accordion-content > * { overflow: hidden; }
.accordion-item.open .accordion-content {
  grid-template-rows: 1fr;
  padding-bottom: 18px;
}
.accordion-content dl { display: grid; gap: 12px; margin: 0; }
.accordion-content dt { font-weight: 800; }
.accordion-content dd { margin: -8px 0 0; color: var(--muted); line-height: 1.6; }

.timeline { display: grid; gap: 14px; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  background: var(--gold);
  color: white;
  font-weight: 900;
}
.workflow-visual {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}
.workflow-visual article {
  position: relative;
  min-height: 136px;
  padding: 18px;
  border-right: 1px solid var(--line);
  transition: background-color 0.18s ease;
}
.workflow-visual article:last-child { border-right: 0; }
.workflow-visual article::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -8px;
  width: 16px;
  height: 16px;
  background: white;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  transform: translateY(-50%) rotate(45deg);
  z-index: 1;
}
.workflow-visual article:last-child::after { display: none; }
.workflow-visual article:hover { background: #e5eee9; }
.workflow-visual span {
  display: block;
  color: var(--green);
  font-weight: 900;
  margin-bottom: 18px;
}
.workflow-visual b { line-height: 1.25; }

.blog-admin, .booking-layout, .faq-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 26px;
  align-items: start;
  padding: 42px 0;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}
.upload-box {
  min-height: 180px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 24px;
  border: 2px dashed #a9b7ae;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  text-align: center;
}
.upload-box input { display: none; }
.upload-box span { font-weight: 850; }
.upload-box small { color: var(--muted); }
.empty-state {
  padding: 34px;
  text-align: center;
  border-radius: 8px;
  background: #e5eee9;
}
.topic-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.topic-card { min-height: auto; }

.about-observations, .about-method, .diagnosis-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0;
}
.observation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.observation-grid article {
  min-height: 112px;
  padding: 18px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  color: #26332f;
  font-weight: 760;
  line-height: 1.45;
}
.about-method {
  display: grid;
  grid-template-columns: 0.76fr 1.24fr;
  gap: 26px;
  align-items: start;
}
.diagnosis-section {
  padding: 30px;
  border-radius: 8px;
  background: var(--green-dark);
  color: white;
}
.diagnosis-section p {
  max-width: 820px;
  color: rgba(255,255,255,0.76);
}
.performance-path {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: white;
}
.path-note {
  grid-column: 1 / -1;
  margin: 0 0 8px;
  color: var(--green-dark);
  font-weight: 780;
}
.path-stage {
  position: relative;
  padding: 16px;
  min-height: 164px;
  border-radius: 8px;
  background: #f5f5f1;
  border: 1px solid #d9e2dc;
}
.path-stage::after {
  content: "";
  position: absolute;
  top: 34px;
  right: -15px;
  width: 20px;
  height: 2px;
  background: var(--gold);
  z-index: 2;
}
.path-stage:last-child::after { display: none; }
.path-stage b {
  display: block;
  margin: 12px 0 16px;
}
.stage-number {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--green-dark);
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
}
.path-stage small {
  display: inline-block;
  margin: 0 5px 7px 0;
  padding: 6px 8px;
  border-radius: 8px;
  background: #e5eee9;
  color: #26332f;
  font-size: 0.8rem;
  font-weight: 740;
}
.about-difference {
  margin-top: 42px;
}
.about-narrative {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 34px;
  align-items: start;
}
.about-narrative h2 {
  max-width: 780px;
  margin-bottom: 18px;
}
.about-section-text {
  min-width: 0;
}
.copy-stack {
  display: grid;
  gap: 14px;
  max-width: 780px;
}
.copy-stack p {
  margin: 0;
  color: #4f5f59;
  line-height: 1.72;
}
.owner-question {
  margin: 4px 0 !important;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: white;
  color: #26332f !important;
  font-size: clamp(1.02rem, 1.55vw, 1.24rem);
  font-weight: 560;
  line-height: 1.5 !important;
}
.diagnosis-line {
  color: var(--ink) !important;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem);
  font-weight: 780;
  line-height: 1.42 !important;
}
.belief-list, .audit-area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
}
.belief-list span, .audit-area-grid span {
  padding: 14px 16px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  color: #26332f;
  font-weight: 740;
  line-height: 1.4;
}
.belief-list.compact span {
  font-weight: 680;
}
.audit-area-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 920px;
}
.audit-area-grid span {
  background: #e5eee9;
}
.about-belief {
  margin-top: 34px;
}
.about-belief .eyebrow {
  color: rgba(255,255,255,0.68);
}
.about-belief p {
  margin: 0 0 12px;
}
.about-diagnostic-panel, .audit-preview-mini, .work-modes {
  position: sticky;
  top: 96px;
  padding: 18px;
  border-radius: 8px;
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(21, 36, 31, 0.08);
}
.about-diagnostic-panel > span, .audit-preview-mini > span {
  display: block;
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.diagnostic-meter {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
  align-items: center;
  margin: 12px 0;
}
.diagnostic-meter b {
  color: #26332f;
  font-size: 0.9rem;
}
.diagnostic-meter i {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe7e2;
}
.diagnostic-meter i::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 82%;
  border-radius: inherit;
  background: var(--green-dark);
}
.diagnostic-meter.weak i::after {
  width: 34%;
  background: var(--gold);
}
.about-diagnostic-panel p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.5;
}
.audit-preview-mini {
  display: grid;
  gap: 10px;
}
.audit-preview-mini b, .audit-preview-mini strong {
  display: block;
  padding: 14px;
  border-radius: 8px;
  background: #f5f5f1;
  color: #26332f;
}
.audit-preview-mini strong {
  background: var(--green-dark);
  color: white;
}
.work-modes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.work-modes span {
  padding: 18px;
  border-radius: 8px;
  background: linear-gradient(90deg, #f5f5f1, #e5eee9);
  color: #26332f;
  font-weight: 820;
}
.authority-panel {
  margin-top: 22px;
  padding: 20px;
  border-radius: 8px;
  background: #e5eee9;
}
.authority-panel h3 { margin-bottom: 10px; }
.authority-panel p:last-child { margin-bottom: 0; }

.booking-form, .call-fit {
  padding: 26px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}
.call-card {
  margin-top: 14px;
  padding: 16px;
  border-radius: 8px;
  background: #f5f5f1;
  border: 1px solid var(--line);
}
.call-card p { margin-bottom: 0; }
.booking-form { display: grid; gap: 14px; }
.booking-form label { display: grid; gap: 7px; color: #31403c; font-weight: 720; }
input, textarea, select {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
  border: 1px solid #cbd3ce;
  border-radius: 8px;
  font: inherit;
  color: var(--ink);
  background: #fbfbf8;
}
textarea { resize: vertical; }
.form-note { margin: 0; font-size: 0.92rem; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 38px clamp(18px, 4vw, 54px);
  background: var(--ink);
  color: white;
}
.faq-layout > aside {
  position: sticky;
  top: 84px;
  padding: 24px;
  background: #e5eee9;
  border-radius: 8px;
}
.faq-layout .accordion-list {
  width: 100%;
  margin: 0;
}
.site-footer p { color: rgba(255,255,255,0.7); margin-bottom: 0; }
.site-footer nav { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-logo {
  width: 140px;
  height: auto;
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%) translateY(120px);
  max-width: min(520px, calc(100% - 28px));
  padding: 14px 18px;
  background: var(--ink);
  color: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease;
  z-index: 60;
}
.toast.show { transform: translateX(-50%) translateY(0); }
.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: min(460px, calc(100% - 36px));
  padding: 13px 15px;
  border-radius: 8px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.24s ease, opacity 0.24s ease;
}
.sticky-cta.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta span {
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
}
.sticky-cta b {
  white-space: nowrap;
  padding: 9px 11px;
  border-radius: 8px;
  background: white;
  color: var(--ink);
}

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 61px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav .nav-cta { margin-left: 0; }
  .hero, .section-grid, .team-band, .blog-admin, .booking-layout {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; padding-top: 34px; }
  .diagnostic-visual { min-height: 390px; }
  .dashboard-top {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .signal-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .fit-grid, .problem-grid, .review-grid, .topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .clarity-split, .faq-layout { grid-template-columns: 1fr; }
  .audit-strip, .materials-grid, .blocker-map, .not-for-grid, .symptom-layout, .journey-flow, .ba-grid, .workflow-visual { grid-template-columns: 1fr; }
  .workflow-visual article { border-right: 0; border-bottom: 1px solid var(--line); }
  .workflow-visual article::after { display: none; }
  .audit-stats { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .method-items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-method, .observation-grid { grid-template-columns: 1fr; }
  .about-narrative { grid-template-columns: 1fr; }
  .about-diagnostic-panel, .audit-preview-mini, .work-modes {
    position: static;
  }
  .audit-area-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .performance-path {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .path-stage {
    min-height: auto;
    padding-left: 56px;
  }
  .path-stage::after {
    display: block;
    top: auto;
    right: auto;
    left: 31px;
    bottom: -16px;
    width: 2px;
    height: 22px;
  }
  .path-stage:last-child::after { display: none; }
  .stage-number {
    position: absolute;
    left: 16px;
    top: 16px;
  }
  .faq-layout > aside { position: static; }
}

@media (max-width: 620px) {
  h1 { font-size: 2.35rem; }
  .action-row, .button { width: 100%; }
  .about-narrative { gap: 22px; padding: 32px 0; }
  .fit-grid, .problem-grid, .review-grid, .topic-grid { grid-template-columns: 1fr; }
  .audit-stats { grid-template-columns: 1fr; }
  .method-items { grid-template-columns: 1fr; }
  .belief-list, .audit-area-grid { grid-template-columns: 1fr; }
  .signal-row { grid-template-columns: 1fr; }
  .diagnostic-visual::before { inset: 172px 24px 112px; }
  .conversion-path { inset: 190px 38px 124px; }
  .report-row { grid-template-columns: 1fr; }
  .problem-trigger {
    grid-template-columns: 28px minmax(0, 1fr) auto;
    column-gap: 10px;
  }
  .problem-trigger + .accordion-content {
    padding-left: 18px;
  }
  .team-band, .not-section, .empty-state { padding: 24px; }
  .step { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; }
  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .sticky-cta b { text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
.fit-grid article b { display: block; margin-bottom: 8px; }
.fit-grid article span { display: block; color: var(--muted); line-height: 1.5; }
