:root {
  --navy: #062b4f;
  --green: #00824b;
  --charcoal: #29333a;
  --soft: #eef4f1;
  --border: #d8e3df;
  --white: #ffffff;
  --ink-soft: #50606a;
  --amber: #b86b14;
  --sky: #d9ebf7;
  --shadow: 0 18px 45px rgba(6, 43, 79, 0.12);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: #f8fbfa;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(216, 227, 223, 0.9);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  max-width: 1280px;
  min-height: 94px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  min-width: 186px;
}

.brand img {
  width: 172px;
  height: auto;
  object-fit: contain;
}

.brand > span {
  display: none;
}

.brand-name {
  display: block;
  color: var(--navy);
  font-weight: 800;
  line-height: 1.1;
}

.brand-tagline {
  display: block;
  margin-top: 3px;
  color: var(--green);
  font-size: 0.86rem;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--charcoal);
  font-size: 0.94rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--navy);
  background: var(--soft);
}

.site-nav .nav-cta {
  margin-left: 8px;
  color: var(--white);
  background: var(--green);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  color: var(--white);
  background: #006e40;
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(6, 43, 79, 0.98), rgba(6, 43, 79, 0.88));
  color: var(--white);
}

.hero::after {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  min-height: min(600px, calc(100vh - 102px));
  margin: 0 auto;
  padding: 70px 24px 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 52px;
  align-items: center;
  text-align: left;
}

.hero-main {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: #bde7d2;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 4.7rem);
}

.hero-copy {
  max-width: 680px;
  margin: 24px 0 0;
  color: #e4efeb;
  font-size: 1.2rem;
}

.review-hero .hero-inner {
  min-height: min(640px, calc(100vh - 102px));
}

.hero-method {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  max-width: 760px;
  margin-top: 26px;
}

.hero-method span {
  display: inline-flex;
  min-height: 0;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #eaf4f0;
  background: transparent;
  font-size: 0.98rem;
  font-weight: 760;
}

.hero-method span::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 999px;
  background: #bde7d2;
  box-shadow: 0 0 0 4px rgba(189, 231, 210, 0.13);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-actions {
  justify-content: flex-start;
}

.hero-offer-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 720px;
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(189, 231, 210, 0.44);
  border-left: 5px solid #bde7d2;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.hero-offer-card span {
  display: block;
  margin-bottom: 6px;
  color: #bde7d2;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-offer-card strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.18;
}

.hero-offer-card p {
  margin: 7px 0 0;
  color: #e4efeb;
  font-size: 0.96rem;
}

.hero-offer-price {
  min-width: 126px;
  padding: 13px 14px;
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.hero-offer-price span {
  margin: 0 0 4px;
  color: var(--ink-soft);
  font-size: 0.76rem;
}

.hero-offer-price strong {
  color: var(--green);
  font-size: 2.05rem;
  line-height: 1;
}

.decision-board {
  display: none;
}

.hero-proof-panel {
  display: grid;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(216, 227, 223, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof-panel img {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  background: var(--white);
}

.hero-proof-title {
  color: var(--white);
  font-size: 1.18rem;
}

.hero-proof-copy {
  margin: -8px 0 0;
  color: #e4efeb;
}

.hero-proof-list {
  display: grid;
  gap: 9px;
}

.hero-proof-list span {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 760;
}

.board-top {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(216, 227, 223, 0.25);
}

.board-top span,
.board-footer {
  color: #bde7d2;
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.board-top strong {
  color: var(--white);
  font-size: 1.3rem;
}

.board-grid {
  display: grid;
  gap: 12px;
}

.board-grid div {
  padding: 16px;
  border: 1px solid rgba(216, 227, 223, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.board-grid span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 10px;
  place-items: center;
  border-radius: 8px;
  color: var(--navy);
  background: #bde7d2;
  font-size: 0.84rem;
  font-weight: 900;
}

.board-grid strong {
  display: block;
  color: var(--white);
}

.board-grid p {
  margin: 4px 0 0;
  color: #d8e3df;
  font-size: 0.94rem;
}

.board-footer {
  padding: 13px 14px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  color: var(--white);
  background: var(--green);
}

.button-primary:hover {
  background: #006e40;
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--border);
}

.button-secondary:hover {
  background: var(--soft);
}

.button-outline {
  color: var(--navy);
  background: transparent;
  border-color: rgba(6, 43, 79, 0.28);
}

.button-outline:hover {
  background: var(--soft);
}

.hero-panel {
  padding: 28px;
  border: 1px solid rgba(216, 227, 223, 0.34);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel img {
  width: 220px;
  margin-bottom: 24px;
  padding: 14px;
  border-radius: 8px;
  background: var(--white);
}

.hero-panel p {
  margin: 0;
  color: #e4efeb;
}

.hero-logo-panel {
  justify-self: end;
  width: min(100%, 500px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.hero-logo-panel img {
  width: 100%;
  opacity: 0.52;
  mix-blend-mode: multiply;
  filter: saturate(0.9) contrast(1.1);
}

.hero-logo-panel p {
  max-width: 420px;
  margin: 16px 0 0;
  color: #e4efeb;
  font-size: 1.08rem;
  font-weight: 650;
}

.proof-strip {
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.mobile-route-section {
  display: none;
}

.method-band {
  padding: 54px 24px;
  border-bottom: 1px solid var(--border);
  background: #fbfdfc;
}

.method-band-stack {
  display: grid;
  gap: 22px;
}

.method-band-heading {
  max-width: 780px;
}

.method-band-heading .eyebrow {
  color: var(--green);
}

.method-band-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.method-band-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.method-band article {
  min-height: 172px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.method-band span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-size: 0.84rem;
  font-weight: 900;
}

.method-band h2 {
  font-size: 1.12rem;
}

.method-band p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.timeline-band {
  padding: 42px 24px;
  border-bottom: 1px solid var(--border);
  background: #edf6f1;
}

.timeline-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid rgba(0, 130, 75, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.timeline-heading {
  max-width: none;
  padding: 28px;
  background: var(--navy);
  color: var(--white);
}

.timeline-heading .eyebrow {
  color: #bde7d2;
}

.timeline-heading h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 2.8vw, 2.65rem);
}

.timeline-heading p {
  margin: 14px 0 0;
  color: #e4efeb;
}

.timeline-stats {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.timeline-stats span {
  display: grid;
  gap: 3px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #e4efeb;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.timeline-stats strong {
  color: var(--white);
  font-size: 1.2rem;
}

.timeline-stats span:first-child strong {
  color: #bde7d2;
}

.by-numbers-grid {
  align-content: center;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 28px;
}

.by-numbers-grid span {
  min-height: 142px;
  align-content: center;
  border-color: rgba(0, 130, 75, 0.18);
  color: var(--ink-soft);
  background: #f7fbf9;
}

.by-numbers-grid strong {
  color: var(--navy);
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.by-numbers-grid span:first-child strong {
  color: var(--green);
}

.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 28px;
}

.timeline-steps article {
  min-height: 196px;
  padding: 18px;
  border: 1px solid rgba(0, 130, 75, 0.18);
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: var(--white);
}

.timeline-steps span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
}

.timeline-steps h3 {
  font-size: 1.08rem;
}

.timeline-steps p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.timeline-note {
  grid-column: 2;
  align-self: end;
  margin: 0 28px 26px;
  color: var(--ink-soft);
  text-align: center;
  font-size: 0.92rem;
}

.snapshot-band {
  padding: 32px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.snapshot-band-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.5fr) 1fr;
  gap: 28px;
  align-items: center;
}

.snapshot-band h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

.snapshot-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.snapshot-steps article {
  min-height: 142px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfdfc;
}

.snapshot-steps span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  font-size: 0.84rem;
  font-weight: 900;
}

.snapshot-steps strong {
  display: block;
  color: var(--navy);
}

.snapshot-steps p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.review-first-section {
  padding: 68px 24px;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%);
}

.review-first-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 36px;
  align-items: center;
}

.review-first-copy {
  max-width: 590px;
}

.review-path-graphic {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(238, 244, 241, 0.9), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow);
}

.check-wheel {
  position: relative;
  overflow: hidden;
}

.check-wheel::before {
  content: "";
  position: absolute;
  inset: 24px 24px auto auto;
  width: 155px;
  height: 155px;
  border: 1px solid rgba(0, 130, 75, 0.18);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 130, 75, 0.11), rgba(0, 130, 75, 0));
}

.check-wheel-core {
  position: relative;
  z-index: 1;
  padding: 22px;
  border: 1px solid rgba(0, 130, 75, 0.38);
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
}

.check-wheel-core span,
.snapshot-chip span {
  display: block;
  color: #bde7d2;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.check-wheel-core strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.check-wheel-core p {
  margin: 8px 0 0;
  color: #d8e3df;
  font-weight: 800;
}

.check-wheel-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.check-wheel-grid span {
  min-height: 68px;
  display: flex;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.18;
}

.snapshot-chip {
  position: relative;
  z-index: 1;
  max-width: 82%;
  margin-left: auto;
  padding: 16px;
  border: 1px dashed rgba(0, 130, 75, 0.44);
  border-radius: 8px;
  background: #fbfdfc;
}

.snapshot-chip span {
  color: var(--green);
}

.snapshot-chip strong {
  display: block;
  margin-top: 5px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.18;
}

.snapshot-chip p {
  margin: 7px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.path-card {
  position: relative;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.path-card span {
  display: block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.path-card strong {
  display: block;
  margin-top: 6px;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.16;
}

.path-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.path-main {
  border-color: rgba(0, 130, 75, 0.38);
  background: #f7fbf8;
}

.path-main strong {
  font-size: 1.55rem;
}

.path-main::after,
.path-split::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  width: 2px;
  height: 20px;
  background: var(--border);
  transform: translateX(-50%);
}

.path-split {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.path-secondary {
  background: #fbfdfc;
}

.path-secondary::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(0, 130, 75, 0.28);
  border-radius: 8px;
  pointer-events: none;
}

.path-end {
  background: var(--navy);
  border-color: var(--navy);
}

.path-end span {
  color: #bde7d2;
}

.path-end strong,
.path-end p {
  color: var(--white);
}

.rigour-section {
  padding: 64px 24px;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(6, 43, 79, 0.96), rgba(6, 43, 79, 0.88)),
    var(--navy);
  color: var(--white);
}

.compact-rigour {
  padding-top: 54px;
  padding-bottom: 54px;
}

.rigour-panel {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(520px, 1.22fr);
  gap: 42px;
  align-items: start;
}

.rigour-intro {
  max-width: 480px;
}

.rigour-intro .eyebrow {
  color: #8ee0b7;
}

.rigour-intro h2 {
  margin: 10px 0 14px;
  color: var(--white);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.04;
}

.rigour-intro p {
  color: #dce8e3;
  font-size: 1.02rem;
}

.rigour-snapshot-card {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(189, 231, 210, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.rigour-snapshot-card span {
  color: #8ee0b7;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.rigour-snapshot-card strong {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.15;
}

.rigour-snapshot-card p {
  margin: 0;
  font-size: 0.94rem;
}

.rigour-snapshot-card .button {
  justify-self: start;
  margin-top: 4px;
}

.rigour-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 16px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rigour-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.rigour-check-grid span {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #f4faf7;
  font-weight: 750;
}

.rigour-check-grid strong {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 950;
}

.product-preview-section {
  border-bottom: 1px solid var(--border);
}

.product-preview-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(480px, 1fr);
  gap: 44px;
  align-items: center;
}

.product-preview-grid .section-heading {
  margin-bottom: 0;
}

.report-mockup-stack {
  position: relative;
  min-height: 520px;
}

.mock-page {
  position: absolute;
  width: min(68%, 380px);
  min-height: 430px;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.mock-cover {
  left: 0;
  top: 42px;
  z-index: 3;
  color: var(--white);
  background: linear-gradient(155deg, var(--navy), #0d3a68 58%, var(--green));
}

.mock-cover img {
  width: 190px;
  margin-bottom: 54px;
  padding: 10px;
  border-radius: 8px;
  background: var(--white);
}

.mock-cover span,
.mock-page-head span {
  color: #bde7d2;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.mock-cover h3 {
  margin-top: 10px;
  color: var(--white);
  font-size: 2rem;
}

.mock-cover p {
  color: #e4efeb;
}

.mock-benchmark {
  right: 44px;
  top: 0;
  z-index: 2;
  transform: rotate(2deg);
}

.mock-actions {
  right: 0;
  bottom: 0;
  z-index: 1;
  transform: rotate(-2deg);
}

.mock-page-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}

.mock-page-head strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.mock-page-head span {
  color: var(--green);
}

.mock-bars {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.mock-bars div {
  display: grid;
  gap: 7px;
}

.mock-bars span {
  color: var(--navy);
  font-weight: 800;
}

.mock-bars i {
  display: block;
  height: 12px;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--green) var(--w), var(--soft) var(--w));
}

.mock-benchmark p {
  color: var(--ink-soft);
}

.mock-actions ol {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.mock-actions li {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfdfc;
}

.mock-actions li strong {
  color: var(--navy);
}

.mock-actions li span {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.review-hero-mockup {
  min-height: 500px;
}

.review-hero-mockup .mock-page {
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.review-hero-mockup .mock-cover {
  left: 0;
  top: 0;
}

.review-hero-mockup .mock-actions {
  right: 0;
  bottom: 10px;
}

.process-strip {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: #fbfdfc;
}

.process-strip-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.process-strip span {
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  font-weight: 850;
  text-align: center;
}

.mobile-route-grid {
  display: grid;
  gap: 12px;
}

.mobile-route-grid a {
  display: grid;
  gap: 4px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: inherit;
  background: var(--white);
  text-decoration: none;
}

.mobile-route-grid a strong {
  color: var(--navy);
}

.mobile-route-grid a span {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.mobile-route-grid a:focus,
.mobile-route-grid a:hover {
  outline: 3px solid rgba(0, 130, 75, 0.14);
  border-color: rgba(0, 130, 75, 0.48);
}

.proof-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.proof-item {
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfdfc;
}

.proof-item strong {
  display: block;
  color: var(--navy);
}

.proof-item span {
  display: block;
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.section {
  padding: 78px 24px;
}

.section-soft {
  background: var(--soft);
}

.section-white {
  background: var(--white);
}

.section-navy {
  color: var(--white);
  background: var(--navy);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading h1,
.section-heading h2 {
  font-size: clamp(2rem, 3.6vw, 3.3rem);
}

.section-heading p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.followup-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  color: var(--navy);
  background: #f4faf7;
  font-weight: 700;
}

.section-navy h2,
.section-navy h3,
.section-navy .section-heading h1,
.section-navy .section-heading p {
  color: var(--white);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 36px;
  align-items: start;
}

.deliverable-section {
  border-bottom: 1px solid var(--border);
}

.deliverable-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(460px, 1.16fr);
  gap: 42px;
  align-items: center;
}

.deliverable-grid .section-heading {
  margin-bottom: 24px;
}

.deliverable-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.deliverable-list span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(0, 130, 75, 0.18);
  border-radius: 8px;
  color: var(--navy);
  background: #f4faf7;
  font-size: 0.92rem;
  font-weight: 780;
}

.deliverable-list.compact {
  margin-top: 18px;
}

.content-block {
  max-width: 820px;
}

.content-block p:first-child {
  margin-top: 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
}

.card p {
  margin: 0;
  color: var(--ink-soft);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.comparison-card,
.sector-tile,
.offer-step {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.comparison-card span,
.offer-step span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 8px;
  color: var(--ink-soft);
  background: var(--soft);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.comparison-card.good {
  border-color: rgba(0, 130, 75, 0.3);
  background: #f4faf7;
}

.comparison-card.good span,
.offer-step.featured span {
  color: var(--white);
  background: var(--green);
}

.comparison-card p,
.sector-tile p,
.offer-step p {
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.sector-tile {
  background: #fbfdfc;
}

.offer-ladder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.offer-step.featured {
  border-color: rgba(0, 130, 75, 0.36);
  box-shadow: var(--shadow);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 11px;
  align-items: start;
}

.feature-list li::before {
  content: "";
  width: 11px;
  height: 11px;
  margin-top: 0.45em;
  border: 3px solid var(--green);
  border-radius: 50%;
}

.feature-list + .button {
  margin-top: 24px;
}

.direct-contact-card {
  display: grid;
  gap: 7px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(0, 130, 75, 0.22);
  border-radius: 8px;
  background: #f4faf7;
}

.direct-contact-card span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.direct-contact-card a {
  color: var(--navy);
  font-size: 1.18rem;
  font-weight: 900;
  word-break: break-word;
}

.direct-contact-card p {
  margin: 0;
  color: var(--ink-soft);
}

.direct-contact-card .button {
  justify-self: start;
  margin-top: 8px;
  color: var(--white);
  font-size: 0.96rem;
}

.direct-contact-card .button-outline {
  color: var(--navy);
}

.contact-email-strip {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  background: #f4faf7;
}

.contact-email-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.contact-email-inner span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-email-inner a {
  color: var(--navy);
  font-weight: 900;
  word-break: break-word;
}

.contact-email-inner p {
  margin: 0;
  color: var(--ink-soft);
}

.quiet-box {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.market-facts-card {
  display: grid;
  gap: 18px;
}

.market-fact-list {
  display: grid;
  gap: 14px;
}

.market-fact-list article {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfdfc;
}

.market-fact-list strong {
  display: block;
  color: var(--green);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.market-fact-list p {
  margin: 8px 0 0;
  color: var(--navy);
  font-weight: 800;
}

.market-fact-list span {
  display: block;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.source-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-style: italic;
}

.price-box {
  display: grid;
  gap: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.price-box .price {
  color: var(--green);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
}

.founding-price-note {
  display: grid;
  gap: 5px;
  margin-top: 6px;
  padding: 14px;
  border: 1px solid rgba(0, 130, 75, 0.22);
  border-radius: 8px;
  background: #f4faf7;
}

.founding-price-note strong {
  color: var(--navy);
}

.founding-price-note span {
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.founding-client-cta {
  border-top: 1px solid var(--border);
}

.founding-client-heading {
  max-width: 860px;
  margin: 0 auto 28px;
  text-align: center;
}

.founding-client-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 1.05;
}

.founding-client-heading p:last-child {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.founding-client-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 1040px;
  margin: 0 auto;
}

.founding-client-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(6, 43, 79, 0.06);
}

.founding-client-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.founding-client-card p {
  margin: 0;
  color: var(--ink-soft);
}

.founding-closing-line,
.founding-response-line {
  margin: 18px auto 0;
  max-width: 760px;
  color: var(--ink-soft);
  text-align: center;
}

.founding-closing-line {
  color: var(--navy);
  font-weight: 720;
}

.founding-response-line a,
.response-note a {
  color: var(--green);
  font-weight: 800;
}

.founding-actions {
  justify-content: center;
  margin-top: 22px;
}

.report-preview {
  display: grid;
  gap: 16px;
}

.report-image-frame {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.report-image-frame.wide {
  align-self: start;
}

.report-sheet {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.report-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}

.report-sheet-header img {
  width: 118px;
}

.report-sheet-header span {
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.report-title {
  margin: 18px 0 14px;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 900;
}

.mini-table {
  display: grid;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.mini-row {
  display: grid;
  grid-template-columns: 0.9fr 1.5fr;
}

.mini-row + .mini-row {
  border-top: 1px solid var(--border);
}

.mini-cell {
  padding: 10px 12px;
  font-size: 0.86rem;
}

.mini-cell:first-child {
  color: var(--navy);
  background: var(--soft);
  font-weight: 850;
}

.swot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.swot-quadrant {
  min-height: 118px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfdfc;
}

.swot-quadrant strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
}

.swot-quadrant p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.sample-note {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.sample-report-image {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.report-image-frame .sample-report-image {
  aspect-ratio: 10 / 7;
  object-fit: cover;
}

.profile-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.profile-panel img {
  width: 140px;
}

.simon-panel {
  grid-template-columns: 190px 1fr;
  align-items: center;
}

.profile-photo {
  width: 190px;
  height: 190px;
  object-fit: cover;
  border: 4px solid var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.process-visual-section {
  padding-top: 72px;
}

.process-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.journey-map {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.swot-position-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin: 0 0 28px;
  padding: 24px;
  border: 1px solid rgba(0, 130, 75, 0.24);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(6, 43, 79, 0.06);
}

.swot-position-panel h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.75rem, 2.6vw, 2.55rem);
  line-height: 1.08;
}

.swot-position-panel p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.journey-card {
  position: relative;
  min-height: 210px;
  padding: 20px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 32px rgba(6, 43, 79, 0.08);
}

.journey-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 48px;
  right: -16px;
  z-index: 2;
  width: 20px;
  height: 20px;
  border-top: 3px solid var(--green);
  border-right: 3px solid var(--green);
  transform: rotate(45deg);
  background: transparent;
}

.journey-card span,
.stage-label {
  display: inline-grid;
  width: fit-content;
  min-width: 42px;
  height: 38px;
  margin-bottom: 16px;
  padding: 0 10px;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 950;
}

.journey-card h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 1.15rem;
}

.journey-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.process-dashboard {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.process-status-panel {
  position: sticky;
  top: 128px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(6, 43, 79, 0.98), rgba(0, 130, 75, 0.9)),
    var(--navy);
  color: var(--white);
  box-shadow: var(--shadow);
}

.process-status-panel .eyebrow {
  color: #b7f0d3;
}

.process-status-panel h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(1.7rem, 2.4vw, 2.45rem);
  line-height: 1.08;
}

.status-list {
  display: grid;
  gap: 10px;
}

.status-list span {
  display: grid;
  gap: 3px;
  padding: 13px 14px 13px 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  position: relative;
}

.status-list span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 17px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #b7f0d3;
  box-shadow: 0 0 0 4px rgba(183, 240, 211, 0.14);
}

.status-list strong {
  color: var(--white);
  font-size: 0.96rem;
}

.status-list em {
  color: #e2eee9;
  font-size: 0.86rem;
  font-style: normal;
}

.stage-grid {
  display: grid;
  gap: 14px;
}

.stage-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(6, 43, 79, 0.06);
}

.stage-card h3 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 1.32rem;
}

.stage-card dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
}

.stage-card dl div {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfdfc;
}

.stage-card dt {
  margin-bottom: 5px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stage-card dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.stage-note {
  margin: 14px 0 0;
  padding: 13px 14px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  color: var(--navy);
  background: #f4faf7;
  font-size: 0.94rem;
  font-weight: 760;
}

.compact-cta-section {
  padding-top: 34px;
  padding-bottom: 34px;
}

.response-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(0, 130, 75, 0.22);
  border-radius: 8px;
  background: #f4faf7;
}

.response-note strong {
  color: var(--navy);
}

.response-note span {
  color: var(--ink-soft);
}

.process {
  counter-reset: process;
  display: grid;
  gap: 14px;
}

.process-step {
  counter-increment: process;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.process-step::before {
  content: counter(process);
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
  font-weight: 900;
}

.process-step h3 {
  margin-bottom: 6px;
}

.process-step p {
  margin: 0;
  color: var(--ink-soft);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -42px;
  top: 50%;
  width: min(26vw, 360px);
  height: min(26vw, 360px);
  background: url("assets/cowling-commercial-insight-logo.png") center / contain no-repeat;
  opacity: 0.08;
  transform: translateY(-50%);
}

.page-hero .section-inner {
  position: relative;
  z-index: 1;
  padding-top: 48px;
  padding-bottom: 56px;
}

.page-hero h1 {
  max-width: 900px;
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
  color: #e4efeb;
  font-size: 1.14rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  padding: 18px 20px;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ink-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

.diagnostic-hero {
  background: linear-gradient(90deg, rgba(6, 43, 79, 0.98), rgba(0, 130, 75, 0.82));
}

.diagnostic-hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.46fr);
}

.diagnostic-secure-card {
  display: grid;
  gap: 18px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
}

.diagnostic-secure-card img {
  width: 190px;
  padding: 14px;
  border-radius: 8px;
  background: var(--white);
}

.diagnostic-secure-card h2 {
  color: var(--white);
  font-size: 1.65rem;
}

.diagnostic-secure-card p {
  margin: 0;
  color: #eaf4f0;
}

.secure-pill {
  justify-self: start;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: #eaf4f0;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.secure-signal-grid {
  display: grid;
  gap: 10px;
}

.secure-signal-grid span {
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.94rem;
  font-weight: 700;
}

.dual-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.route-panel {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(6, 43, 79, 0.07);
}

.route-panel > span {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.route-panel h3 {
  margin-top: 10px;
  font-size: 1.5rem;
}

.route-panel p {
  color: var(--ink-soft);
}

.route-panel-featured {
  border-color: rgba(0, 130, 75, 0.34);
  background: var(--soft);
}

.app-workspace-section {
  padding-top: 72px;
  padding-bottom: 72px;
  background: #edf4f1;
}

.app-shell {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.app-sidebar,
.diagnostic-form {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(6, 43, 79, 0.09);
}

.app-sidebar {
  position: sticky;
  top: 116px;
  padding: 22px;
}

.app-brand-block {
  display: grid;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.app-brand-block img {
  width: 170px;
}

.app-brand-block span {
  color: var(--navy);
  font-weight: 850;
}

.step-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.step-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--ink-soft);
  font-weight: 750;
  cursor: pointer;
}

.step-list li span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 999px;
  color: var(--navy);
  background: var(--soft);
  font-size: 0.82rem;
}

.step-list li.active {
  border-color: rgba(0, 130, 75, 0.24);
  color: var(--navy);
  background: #f2faf6;
}

.step-list li.active span {
  color: var(--white);
  background: var(--green);
}

.app-note {
  margin-top: 22px;
  padding: 16px;
  border-radius: 8px;
  background: var(--soft);
}

.app-note strong {
  color: var(--navy);
}

.app-note p {
  margin: 6px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.diagnostic-form {
  min-width: 0;
  padding: 30px;
}

.diagnostic-step {
  display: none;
}

.diagnostic-step.active {
  display: block;
}

.step-heading {
  max-width: 740px;
  margin-bottom: 24px;
}

.step-heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.step-heading p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.diagnostic-form input,
.diagnostic-form select,
.diagnostic-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid #cfdcd8;
  border-radius: 8px;
  color: var(--charcoal);
  background: #fbfdfc;
  font: inherit;
}

.diagnostic-form textarea {
  min-height: 118px;
  resize: vertical;
}

.diagnostic-form label {
  color: var(--navy);
  font-weight: 760;
}

.diagnostic-form label input[type="checkbox"] {
  width: auto;
  min-height: 0;
  margin-right: 8px;
}

.consent-stack {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--soft);
}

.brief-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.brief-card {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fbfdfc;
}

.brief-card.full {
  grid-column: 1 / -1;
}

.brief-card h3 {
  font-size: 1.15rem;
}

.brief-card p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

#internalBrief {
  min-height: 380px;
  margin-top: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
  line-height: 1.5;
}

.diagnostic-controls,
.prototype-submit-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.diagnostic-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

#stepCounter,
.prototype-status {
  color: var(--ink-soft);
  font-weight: 750;
}

.prototype-status {
  flex: 1 1 100%;
  margin: 0;
}

label {
  color: var(--navy);
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--charcoal);
  background: var(--white);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(0, 130, 75, 0.18);
  border-color: var(--green);
}

input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  margin: 0 8px 0 0;
  accent-color: var(--green);
  vertical-align: middle;
}

.form-note {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.form-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid #b9dcca;
  border-radius: 8px;
  color: var(--navy);
  background: #e9f7ef;
  font-weight: 700;
}

.form-status.visible {
  display: block;
}

.site-footer {
  color: #d8e3df;
  background: #041d35;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 38px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 16px;
  align-items: center;
}

.footer-brand img {
  width: 158px;
  height: auto;
  padding: 8px;
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
}

.footer-brand strong {
  color: var(--white);
}

.footer-brand a {
  color: #d8e3df;
  font-weight: 800;
  word-break: break-word;
}

.footer-brand a:hover {
  color: var(--white);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-links a {
  color: #d8e3df;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--white);
}

.legal-copy {
  max-width: 920px;
}

.legal-copy h2 {
  margin-top: 32px;
  font-size: 1.45rem;
}

.legal-copy p,
.legal-copy li {
  color: var(--ink-soft);
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 102px 0 auto 0;
    display: none;
    padding: 18px 24px 28px;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
    gap: 4px;
  }

  .site-nav a {
    padding: 13px 10px;
  }

  .site-nav .nav-cta {
    margin: 8px 0 0;
    text-align: center;
  }

  .hero {
    background: linear-gradient(90deg, rgba(6, 43, 79, 0.97), rgba(6, 43, 79, 0.9));
  }

  .hero::after {
    display: none;
  }

  .hero-inner,
  .visibility-hero .hero-inner,
  .two-col,
  .deliverable-grid,
  .grid-3,
  .grid-2,
  .proof-grid,
  .comparison-grid,
  .sector-grid,
  .offer-ladder,
  .timeline-inner,
  .timeline-steps,
  .method-band-inner,
  .product-preview-grid,
  .process-strip-inner,
  .snapshot-band-inner,
  .snapshot-steps,
  .review-first-grid,
  .rigour-panel,
  .journey-map,
  .swot-position-panel,
  .process-dashboard,
  .founding-client-grid,
  .diagnostic-hero-inner,
  .dual-route-grid,
  .app-shell,
  .brief-preview-grid,
  .stage-card dl {
    grid-template-columns: 1fr;
  }

  .by-numbers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rigour-check-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-card {
    min-height: 0;
  }

  .journey-card:not(:last-child)::after {
    top: auto;
    right: auto;
    left: 24px;
    bottom: -17px;
    transform: rotate(135deg);
  }

  .process-status-panel {
    position: static;
  }

  .app-sidebar {
    position: static;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 60px;
  }

  .hero-proof-panel {
    max-width: 420px;
  }

  .report-mockup-stack {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .mock-page {
    position: static;
    width: 100%;
    min-height: auto;
    transform: none;
  }

  .hero-panel {
    max-width: 620px;
  }

  .hero-logo-panel {
    justify-self: stretch;
  }

  .page-hero::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav-wrap {
    padding-inline: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 108px;
    height: auto;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-tagline {
    font-size: 0.76rem;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .simon-panel {
    grid-template-columns: 1fr;
  }

  .profile-photo {
    width: 150px;
    height: 150px;
  }

  .section,
  .page-hero .section-inner {
    padding: 52px 18px;
  }

  .hero-inner {
    padding: 52px 18px 40px;
  }

  .hero-proof-panel,
  .snapshot-band {
    display: none;
  }

  .review-first-section {
    padding: 46px 18px;
  }

  .review-path-graphic {
    padding: 18px;
  }

  .check-wheel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .snapshot-chip {
    max-width: none;
  }

  .path-split {
    grid-template-columns: 1fr;
  }

  .path-split::after {
    display: none;
  }

  .product-preview-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .rigour-section {
    padding: 44px 18px;
  }

  .rigour-check-grid {
    grid-template-columns: 1fr;
  }

  .rigour-check-grid span {
    min-height: 0;
  }

  .report-mockup-stack {
    margin-top: 8px;
  }

  .mock-page {
    padding: 18px;
  }

  .mock-cover img {
    width: 150px;
    margin-bottom: 28px;
  }

  .mock-cover h3 {
    font-size: 1.6rem;
  }

  .mobile-route-section {
    display: block;
    padding: 38px 18px;
    border-bottom: 1px solid var(--border);
    background: var(--soft);
  }

  .mobile-route-section h2 {
    margin-bottom: 18px;
    font-size: 1.7rem;
  }

  .home-desktop-detail {
    display: none;
  }

  .hero-actions,
  .section-actions,
  .hero-method {
    display: grid;
  }

  .timeline-note {
    grid-column: auto;
    text-align: left;
  }

  .by-numbers-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .by-numbers-grid span {
    min-height: auto;
  }

  .button {
    width: 100%;
  }

  .form-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .process-step {
    grid-template-columns: 1fr;
  }

  .diagnostic-secure-card {
    padding: 22px;
  }

  .diagnostic-secure-card img,
  .app-brand-block img {
    width: 138px;
  }

  .app-workspace-section {
    padding: 42px 18px;
  }

  .diagnostic-form,
  .app-sidebar,
  .route-panel {
    padding: 20px;
  }

  .step-list li {
    grid-template-columns: 26px 1fr;
    font-size: 0.92rem;
  }

  .step-list li span {
    width: 24px;
    height: 24px;
  }

  .diagnostic-controls,
  .prototype-submit-panel {
    display: grid;
    justify-content: stretch;
  }

  #stepCounter {
    text-align: center;
  }
}
