:root {
  --ink: #102019;
  --muted: #52635b;
  --paper: #fffaf1;
  --surface: #ffffff;
  --line: #dfe6df;
  --orange: #f47b20;
  --gold: #f4b54b;
  --green: #0f6b50;
  --teal: #0f8b8d;
  --blue: #2364aa;
  --shadow: 0 18px 48px rgba(16, 32, 25, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.theme-fpl {
  --ink: #171717;
  --muted: #5f574d;
  --paper: #fffdf7;
  --green: #14564a;
  --teal: #216869;
  --blue: #255f85;
}

body.theme-whole-home {
  --ink: #17211f;
  --muted: #59645f;
  --paper: #f9fbf6;
  --green: #21543c;
  --teal: #3b7f7a;
  --blue: #2b6c9f;
}

a {
  color: inherit;
}

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

.page-shell {
  overflow: hidden;
  max-width: 100vw;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 250, 241, 0.88);
  border-bottom: 1px solid rgba(223, 230, 223, 0.78);
  backdrop-filter: blur(14px);
}

body.theme-fpl .site-header {
  background: rgba(255, 253, 247, 0.9);
}

body.theme-whole-home .site-header {
  background: rgba(249, 251, 246, 0.9);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--orange), var(--green));
  border-radius: 8px;
  font-size: 0.82rem;
  letter-spacing: 0;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-link {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.86rem 1.05rem;
  border: 0;
  border-radius: 8px;
  color: #132019;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  box-shadow: 0 10px 24px rgba(244, 123, 32, 0.25);
  cursor: pointer;
  font: inherit;
  font-weight: 950;
  text-align: center;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(244, 123, 32, 0.32);
}

.button.secondary {
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: none;
}

.hero {
  position: relative;
  padding: 64px 0 36px;
  background:
    linear-gradient(110deg, rgba(15, 107, 80, 0.12), rgba(35, 100, 170, 0.08) 45%, rgba(244, 181, 75, 0.14)),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.72fr);
  gap: 44px;
  align-items: start;
}

.hero-grid > *,
.hero-visual > *,
.split > *,
.final-grid > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--orange);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 11.4ch;
  margin-bottom: 18px;
  font-size: clamp(3.3rem, 8.3vw, 7.6rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-wrap: balance;
}

.theme-fpl h1 {
  max-width: 10.6ch;
}

.theme-whole-home h1 {
  max-width: 12.2ch;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.assurance-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
}

.assurance {
  min-height: 72px;
  padding: 14px 14px 13px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.assurance strong {
  display: block;
  font-size: 0.88rem;
}

.assurance span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-visual {
  margin-top: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(215px, 0.48fr);
  gap: 16px;
  align-items: stretch;
}

.visual-frame {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--green);
  box-shadow: var(--shadow);
}

.visual-frame img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 16, 13, 0.08), rgba(8, 16, 13, 0.42));
}

.visual-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  color: #ffffff;
  font-weight: 900;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.rate-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  min-height: 330px;
  padding: 18px;
  color: #ffffff;
  background: #14241d;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.rate-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

.rate-panel strong {
  display: block;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.mini-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  align-items: end;
  min-height: 138px;
}

.bar {
  display: flex;
  align-items: end;
  justify-content: center;
  min-height: 44px;
  padding: 7px 4px;
  color: #132019;
  background: linear-gradient(180deg, var(--gold), var(--orange));
  border-radius: 6px 6px 2px 2px;
  font-size: 0.72rem;
  font-weight: 950;
}

.bar:nth-child(1) { height: 68px; }
.bar:nth-child(2) { height: 78px; }
.bar:nth-child(3) { height: 92px; }
.bar:nth-child(4) { height: 112px; }
.bar:nth-child(5) { height: 132px; }

.form-card {
  position: sticky;
  top: 96px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-kicker {
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-card h2,
.form-card h3 {
  margin-bottom: 8px;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.form-card p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.audit-form {
  display: grid;
  gap: 14px;
}

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

.field label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 48px;
  padding: 0.83rem 0.86rem;
  border: 1px solid #cfd9d2;
  border-radius: 8px;
  color: var(--ink);
  background: #fbfcfa;
  font: inherit;
  font-weight: 760;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.field input:focus,
.field select:focus {
  border-color: var(--orange);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(244, 123, 32, 0.14);
}

.field input::placeholder {
  color: #8a978f;
  font-weight: 650;
}

.form-card .button {
  width: 100%;
  min-height: 54px;
  margin-top: 2px;
}

.button:disabled {
  cursor: progress;
  opacity: 0.68;
  transform: none;
}

.form-note {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.form-status {
  display: none;
  padding: 12px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
}

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

.form-status.is-error {
  color: #7f1d1d;
  background: #fff1f0;
  border: 1px solid #fecaca;
}

.form-success {
  padding: 18px;
  border: 1px solid rgba(15, 107, 80, 0.2);
  border-radius: 8px;
  background: rgba(15, 107, 80, 0.08);
}

.form-success h3 {
  margin-bottom: 6px;
  font-size: 1.35rem;
}

.form-success p {
  margin-bottom: 0;
}

.section {
  padding: 82px 0;
  background: var(--surface);
}

.section.alt {
  background:
    linear-gradient(180deg, rgba(15, 139, 141, 0.08), rgba(244, 181, 75, 0.08)),
    var(--paper);
}

.section.dark {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(15, 107, 80, 0.98), rgba(20, 36, 29, 1) 54%, rgba(35, 100, 170, 0.86));
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head h2,
.split-copy h2,
.final-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-head p,
.split-copy p,
.final-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.dark .section-head p,
.dark .split-copy p,
.dark .final-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.proof-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.proof-item {
  min-height: 178px;
  padding: 24px;
  background: #ffffff;
}

.proof-item span {
  display: block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  line-height: 0.92;
  font-weight: 950;
}

.proof-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.proof-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.source-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.78rem;
}

.audit-map {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.audit-point {
  min-height: 200px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.audit-point .num {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: #132019;
  background: var(--gold);
  border-radius: 8px;
  font-weight: 950;
}

.audit-point h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  line-height: 1.15;
}

.audit-point p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.split-media {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.split-media img {
  width: 100%;
  min-height: 480px;
  object-fit: cover;
}

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

.check-list li {
  position: relative;
  min-height: 58px;
  padding: 16px 18px 16px 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  font-weight: 850;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--green), var(--teal));
  border-radius: 4px;
}

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

.solution-card {
  min-height: 188px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.solution-card .label {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 6px 8px;
  color: #ffffff;
  background: var(--green);
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.solution-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.18;
}

.solution-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.91rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  counter-reset: process;
}

.process-step {
  position: relative;
  min-height: 260px;
  padding: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  counter-increment: process;
}

.process-step::before {
  content: counter(process, decimal-leading-zero);
  display: block;
  margin-bottom: 48px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.process-step p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.objection {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.objection h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
}

.objection p {
  margin-bottom: 0;
  color: var(--muted);
}

.final-cta {
  padding: 78px 0;
  background:
    linear-gradient(120deg, rgba(244, 123, 32, 0.16), rgba(15, 139, 141, 0.12)),
    var(--paper);
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 0.72fr);
  gap: 38px;
  align-items: center;
}

.final-copy .mini-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
}

.mini-proof span {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  font-size: 0.83rem;
  font-weight: 900;
  text-align: center;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: none;
  transform: translateY(160%);
  transition: transform 0.24s ease;
}

@media (max-width: 1080px) {
  .hero-grid,
  .final-grid,
  .split {
    grid-template-columns: 1fr;
  }

  .form-card {
    position: relative;
    top: auto;
  }

  .audit-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .container {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .nav {
    min-height: 64px;
  }

  .nav-link {
    display: none;
  }

  .nav-actions {
    display: none;
  }

  .brand {
    font-size: 0.84rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(2.45rem, 10.8vw, 3.25rem);
    line-height: 0.96;
    text-wrap: auto;
  }

  .hero-lede {
    max-width: 34ch;
    font-size: 1.02rem;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .assurance-row,
  .hero-visual,
  .section-head,
  .proof-strip,
  .audit-map,
  .solution-grid,
  .process,
  .objection-grid,
  .final-copy .mini-proof,
  .form-row {
    grid-template-columns: 1fr;
  }

  .visual-frame,
  .visual-frame img,
  .rate-panel {
    min-height: 260px;
  }

  .visual-caption {
    font-size: 0.94rem;
    line-height: 1.32;
    overflow-wrap: anywhere;
  }

  .section {
    padding: 58px 0;
  }

  .proof-item {
    min-height: auto;
  }

  .audit-point,
  .solution-card,
  .process-step {
    min-height: auto;
  }

  .split-media img {
    min-height: 330px;
  }

  .sticky-cta {
    left: 14px;
    right: 14px;
    display: block;
  }

  .sticky-cta .button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .form-card {
    padding: 18px;
  }

  .button {
    min-height: 48px;
    padding-left: 0.9rem;
    padding-right: 0.9rem;
  }
}

/* premium audit campaign direction */
body.audit-flagship,
body.audit-fpl,
body.audit-whole {
  --paper: #f4f1e8;
  --surface: #fffdf7;
  --line: rgba(19, 32, 25, 0.14);
  --shadow: 0 28px 80px rgba(12, 22, 18, 0.22);
  background:
    radial-gradient(circle at 16% 10%, rgba(244, 181, 75, 0.16), transparent 26rem),
    radial-gradient(circle at 92% 2%, rgba(15, 139, 141, 0.12), transparent 22rem),
    var(--paper);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

body.audit-fpl {
  --paper: #faf6eb;
  --green: #173f37;
  --teal: #2b7872;
  --blue: #2f5f8f;
}

body.audit-whole {
  --paper: #eef5ee;
  --green: #244b38;
  --teal: #327e78;
  --blue: #34699a;
}

.audit-flagship .site-header,
.audit-fpl .site-header,
.audit-whole .site-header {
  background: rgba(255, 253, 247, 0.82);
  border-bottom-color: rgba(18, 32, 25, 0.1);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.audit-flagship .brand,
.audit-fpl .brand,
.audit-whole .brand {
  letter-spacing: 0.12em;
}

.audit-flagship .brand-mark,
.audit-fpl .brand-mark,
.audit-whole .brand-mark {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.28), transparent 42%),
    linear-gradient(135deg, #f47b20, #104b3a 76%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.32), 0 12px 24px rgba(14, 33, 24, 0.18);
}

.audit-flagship .hero,
.audit-fpl .hero,
.audit-whole .hero {
  isolation: isolate;
  min-height: calc(100vh - 72px);
  padding: clamp(54px, 7vw, 92px) 0 68px;
}

.audit-flagship .hero::before,
.audit-fpl .hero::before,
.audit-whole .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.audit-flagship .hero {
  color: #fff9ef;
  background:
    radial-gradient(circle at 26% 8%, rgba(244, 181, 75, 0.22), transparent 22rem),
    radial-gradient(circle at 76% 4%, rgba(15, 139, 141, 0.22), transparent 23rem),
    linear-gradient(135deg, #071713 0%, #112b24 48%, #1f4b43 100%);
}

.audit-flagship .hero::before {
  opacity: 0.7;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 72%);
}

.audit-fpl .hero {
  background:
    linear-gradient(90deg, rgba(250, 246, 235, 0.94) 0 50%, rgba(248, 238, 214, 0.76)),
    repeating-linear-gradient(0deg, rgba(23, 63, 55, 0.05) 0 1px, transparent 1px 35px),
    var(--paper);
}

.audit-fpl .hero::before {
  background:
    radial-gradient(circle at 12% 18%, rgba(244, 123, 32, 0.13), transparent 20rem),
    linear-gradient(118deg, transparent 0 56%, rgba(23, 63, 55, 0.08) 56% 57%, transparent 57%);
}

.audit-whole .hero {
  background:
    radial-gradient(circle at 88% 8%, rgba(52, 105, 154, 0.14), transparent 22rem),
    radial-gradient(circle at 14% 0%, rgba(244, 181, 75, 0.2), transparent 20rem),
    linear-gradient(135deg, #f6f3ea, #e5f1ef 58%, #eef5ee);
}

.audit-whole .hero::before {
  background:
    linear-gradient(118deg, transparent 0 48%, rgba(36, 75, 56, 0.08) 48% 49%, transparent 49%),
    linear-gradient(90deg, rgba(36, 75, 56, 0.045) 1px, transparent 1px);
  background-size: auto, 74px 74px;
}

.audit-flagship .hero-grid,
.audit-fpl .hero-grid,
.audit-whole .hero-grid {
  position: relative;
  grid-template-columns: minmax(0, 1.1fr) minmax(392px, 0.58fr);
  gap: clamp(34px, 5vw, 72px);
}

.audit-flagship .eyebrow,
.audit-fpl .eyebrow,
.audit-whole .eyebrow {
  margin-bottom: 20px;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
}

.audit-flagship .eyebrow,
.audit-flagship .hero-lede {
  color: rgba(255, 249, 239, 0.78);
}

.audit-flagship .eyebrow::before {
  background: var(--gold);
}

.audit-flagship h1,
.audit-fpl h1,
.audit-whole h1 {
  letter-spacing: 0;
  text-wrap: balance;
}

.audit-flagship h1 {
  max-width: 9.4ch;
  color: #fffaf2;
  text-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.audit-fpl h1 {
  max-width: 11.5ch;
  color: #181512;
}

.audit-whole h1 {
  max-width: 10.4ch;
  color: #12211c;
}

.audit-flagship .hero-lede,
.audit-fpl .hero-lede,
.audit-whole .hero-lede {
  max-width: 720px;
  font-weight: 560;
}

.audit-fpl .hero-lede,
.audit-whole .hero-lede {
  color: rgba(24, 28, 24, 0.72);
}

.audit-flagship .button,
.audit-fpl .button,
.audit-whole .button {
  min-height: 52px;
  padding: 0.95rem 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 42%),
    linear-gradient(135deg, #ff7b1a 0%, #ffc24d 100%);
  box-shadow: 0 18px 34px rgba(244, 123, 32, 0.28), 0 4px 0 rgba(88, 45, 9, 0.08);
}

.audit-flagship .button.secondary,
.audit-fpl .button.secondary,
.audit-whole .button.secondary {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(18, 32, 25, 0.12);
  box-shadow: 0 16px 34px rgba(18, 32, 25, 0.08);
}

.audit-flagship .hero .button.secondary {
  color: #fffaf2;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.audit-flagship .assurance-row,
.audit-fpl .assurance-row,
.audit-whole .assurance-row {
  gap: 0;
  max-width: 805px;
  border: 1px solid rgba(18, 32, 25, 0.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 22px 54px rgba(18, 32, 25, 0.08);
}

.audit-flagship .assurance-row {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.audit-flagship .assurance,
.audit-fpl .assurance,
.audit-whole .assurance {
  border: 0;
  border-right: 1px solid rgba(18, 32, 25, 0.1);
  border-radius: 0;
  background: transparent;
}

.audit-flagship .assurance {
  border-right-color: rgba(255, 255, 255, 0.14);
}

.audit-flagship .assurance:last-child,
.audit-fpl .assurance:last-child,
.audit-whole .assurance:last-child {
  border-right: 0;
}

.audit-flagship .assurance strong,
.audit-flagship .assurance span {
  color: rgba(255, 249, 239, 0.94);
}

.audit-flagship .assurance span {
  color: rgba(255, 249, 239, 0.64);
}

.audit-flagship .hero-visual,
.audit-fpl .hero-visual,
.audit-whole .hero-visual {
  margin-top: clamp(30px, 4vw, 52px);
  grid-template-columns: minmax(0, 1.28fr) minmax(220px, 0.5fr);
  gap: 0;
  max-width: 835px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.audit-flagship .visual-frame,
.audit-fpl .visual-frame,
.audit-whole .visual-frame {
  min-height: 430px;
  border-radius: 0;
  box-shadow: none;
}

.audit-flagship .visual-frame::before,
.audit-fpl .visual-frame::before,
.audit-whole .visual-frame::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  pointer-events: none;
}

.audit-flagship .visual-frame::after,
.audit-fpl .visual-frame::after,
.audit-whole .visual-frame::after {
  background:
    radial-gradient(circle at 72% 32%, rgba(244, 181, 75, 0.26), transparent 8rem),
    linear-gradient(180deg, rgba(8, 16, 13, 0.02), rgba(8, 16, 13, 0.68));
}

.audit-flagship .visual-frame img,
.audit-fpl .visual-frame img,
.audit-whole .visual-frame img {
  min-height: 430px;
  transform: scale(1.02);
  filter: saturate(1.04) contrast(1.02);
}

.audit-flagship .visual-caption,
.audit-fpl .visual-caption,
.audit-whole .visual-caption {
  left: 28px;
  right: 28px;
  bottom: 26px;
  max-width: 32ch;
  font-size: 1.05rem;
  line-height: 1.28;
}

.audit-flagship .rate-panel,
.audit-fpl .rate-panel,
.audit-whole .rate-panel {
  min-height: 430px;
  border-radius: 0;
  box-shadow: none;
}

.audit-flagship .rate-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 30%),
    #081711;
}

.audit-fpl .rate-panel {
  color: #181512;
  background:
    linear-gradient(180deg, #fffdf8 0%, #f3ecde 100%);
  border-left: 1px dashed rgba(23, 63, 55, 0.28);
}

.audit-fpl .rate-panel p {
  color: rgba(24, 21, 18, 0.68);
}

.audit-fpl .rate-panel strong {
  color: #16120e;
}

.audit-whole .rate-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%),
    #173f37;
}

.audit-fpl .bar {
  background: linear-gradient(180deg, #ffc24d, #ff7b1a);
}

.audit-whole .bar {
  background: linear-gradient(180deg, #f8c95a, #52b788);
}

.audit-flagship .form-card,
.audit-fpl .form-card,
.audit-whole .form-card {
  color: var(--ink);
  border: 1px solid rgba(18, 32, 25, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 242, 0.98)),
    var(--surface);
  box-shadow: 0 34px 86px rgba(12, 22, 18, 0.24);
}

.audit-flagship .form-card::before,
.audit-fpl .form-card::before,
.audit-whole .form-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  height: 7px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, var(--orange), var(--gold), var(--teal));
}

.audit-flagship .form-card h2,
.audit-flagship .form-card h3,
.audit-fpl .form-card h2,
.audit-fpl .form-card h3,
.audit-whole .form-card h2,
.audit-whole .form-card h3 {
  color: #102019;
}

.audit-flagship .form-kicker,
.audit-fpl .form-kicker,
.audit-whole .form-kicker {
  margin-top: 8px;
  color: #c45813;
}

.audit-flagship .field input,
.audit-flagship .field select,
.audit-fpl .field input,
.audit-fpl .field select,
.audit-whole .field input,
.audit-whole .field select {
  min-height: 52px;
  background: #fffef9;
  border-color: rgba(18, 32, 25, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.audit-flagship .section,
.audit-fpl .section,
.audit-whole .section {
  position: relative;
  padding: clamp(76px, 8vw, 118px) 0;
}

.audit-flagship .section.alt,
.audit-fpl .section.alt,
.audit-whole .section.alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.42)),
    var(--paper);
}

.audit-flagship .section-head,
.audit-fpl .section-head,
.audit-whole .section-head {
  align-items: start;
}

.audit-flagship .section-head h2,
.audit-fpl .section-head h2,
.audit-whole .section-head h2,
.audit-flagship .split-copy h2,
.audit-fpl .split-copy h2,
.audit-whole .split-copy h2,
.audit-flagship .final-copy h2,
.audit-fpl .final-copy h2,
.audit-whole .final-copy h2 {
  max-width: 11ch;
  letter-spacing: 0;
}

.audit-flagship .proof-strip,
.audit-fpl .proof-strip,
.audit-whole .proof-strip {
  border-color: rgba(18, 32, 25, 0.12);
  background: rgba(18, 32, 25, 0.12);
  box-shadow: 0 24px 70px rgba(18, 32, 25, 0.08);
}

.audit-flagship .proof-item,
.audit-fpl .proof-item,
.audit-whole .proof-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 239, 0.92));
}

.audit-flagship .audit-map,
.audit-fpl .audit-map,
.audit-whole .audit-map {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.audit-flagship .audit-point,
.audit-fpl .audit-point,
.audit-whole .audit-point {
  grid-column: span 4;
  min-height: 230px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.audit-flagship .audit-point:nth-child(1),
.audit-fpl .audit-point:nth-child(1),
.audit-whole .audit-point:nth-child(1),
.audit-flagship .audit-point:nth-child(6),
.audit-fpl .audit-point:nth-child(6),
.audit-whole .audit-point:nth-child(6) {
  grid-column: span 6;
}

.audit-flagship .solution-grid,
.audit-fpl .solution-grid,
.audit-whole .solution-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}

.audit-flagship .solution-card,
.audit-fpl .solution-card,
.audit-whole .solution-card {
  grid-column: span 3;
  min-height: 214px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 239, 0.88));
  box-shadow: 0 18px 52px rgba(18, 32, 25, 0.08);
}

.audit-whole .solution-card:nth-child(1),
.audit-whole .solution-card:nth-child(4) {
  grid-column: span 6;
  min-height: 236px;
}

.audit-fpl .solution-card:nth-child(1),
.audit-fpl .solution-card:nth-child(8),
.audit-flagship .solution-card:nth-child(1),
.audit-flagship .solution-card:nth-child(8) {
  grid-column: span 6;
}

.audit-flagship .split,
.audit-fpl .split,
.audit-whole .split {
  gap: clamp(34px, 6vw, 74px);
}

.audit-flagship .split-media,
.audit-fpl .split-media,
.audit-whole .split-media {
  border: 1px solid rgba(18, 32, 25, 0.12);
  box-shadow: var(--shadow);
}

.audit-flagship .split-media img,
.audit-fpl .split-media img,
.audit-whole .split-media img {
  filter: saturate(1.04) contrast(1.02);
}

.audit-flagship .check-list li,
.audit-fpl .check-list li,
.audit-whole .check-list li,
.audit-flagship .objection,
.audit-fpl .objection,
.audit-whole .objection,
.audit-flagship .mini-proof span,
.audit-fpl .mini-proof span,
.audit-whole .mini-proof span {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 239, 0.9));
  border-color: rgba(18, 32, 25, 0.12);
  box-shadow: 0 14px 42px rgba(18, 32, 25, 0.06);
}

.audit-flagship .final-cta,
.audit-fpl .final-cta,
.audit-whole .final-cta {
  padding: clamp(78px, 8vw, 126px) 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(244, 181, 75, 0.24), transparent 20rem),
    radial-gradient(circle at 86% 18%, rgba(15, 139, 141, 0.14), transparent 20rem),
    linear-gradient(180deg, #fffaf0, var(--paper));
}

@media (max-width: 1080px) {
  .audit-flagship .hero-grid,
  .audit-fpl .hero-grid,
  .audit-whole .hero-grid {
    grid-template-columns: 1fr;
  }

  .audit-flagship .form-card,
  .audit-fpl .form-card,
  .audit-whole .form-card {
    max-width: 720px;
  }

  .audit-flagship .audit-point,
  .audit-fpl .audit-point,
  .audit-whole .audit-point,
  .audit-flagship .audit-point:nth-child(1),
  .audit-fpl .audit-point:nth-child(1),
  .audit-whole .audit-point:nth-child(1),
  .audit-flagship .audit-point:nth-child(6),
  .audit-fpl .audit-point:nth-child(6),
  .audit-whole .audit-point:nth-child(6),
  .audit-flagship .solution-card,
  .audit-fpl .solution-card,
  .audit-whole .solution-card,
  .audit-fpl .solution-card:nth-child(1),
  .audit-fpl .solution-card:nth-child(8),
  .audit-flagship .solution-card:nth-child(1),
  .audit-flagship .solution-card:nth-child(8),
  .audit-whole .solution-card:nth-child(1),
  .audit-whole .solution-card:nth-child(4) {
    grid-column: span 6;
  }
}

@media (max-width: 760px) {
  .audit-flagship .hero,
  .audit-fpl .hero,
  .audit-whole .hero {
    min-height: auto;
    padding: 44px 0 42px;
  }

  .audit-flagship h1,
  .audit-fpl h1,
  .audit-whole h1 {
    max-width: 10.4ch;
    font-size: clamp(2.45rem, 11vw, 3.3rem);
    line-height: 0.98;
  }

  .audit-flagship .hero-lede,
  .audit-fpl .hero-lede,
  .audit-whole .hero-lede {
    max-width: 33ch;
  }

  .audit-flagship .hero-visual,
  .audit-fpl .hero-visual,
  .audit-whole .hero-visual {
    grid-template-columns: 1fr;
  }

  .audit-flagship .visual-frame,
  .audit-fpl .visual-frame,
  .audit-whole .visual-frame,
  .audit-flagship .visual-frame img,
  .audit-fpl .visual-frame img,
  .audit-whole .visual-frame img,
  .audit-flagship .rate-panel,
  .audit-fpl .rate-panel,
  .audit-whole .rate-panel {
    min-height: 286px;
  }

  .audit-flagship .assurance-row,
  .audit-fpl .assurance-row,
  .audit-whole .assurance-row {
    grid-template-columns: 1fr;
  }

  .audit-flagship .assurance,
  .audit-fpl .assurance,
  .audit-whole .assurance {
    border-right: 0;
    border-bottom: 1px solid rgba(18, 32, 25, 0.1);
  }

  .audit-flagship .assurance {
    border-bottom-color: rgba(255, 255, 255, 0.14);
  }

  .audit-flagship .assurance:last-child,
  .audit-fpl .assurance:last-child,
  .audit-whole .assurance:last-child {
    border-bottom: 0;
  }

  .audit-flagship .audit-map,
  .audit-fpl .audit-map,
  .audit-whole .audit-map,
  .audit-flagship .solution-grid,
  .audit-fpl .solution-grid,
  .audit-whole .solution-grid {
    grid-template-columns: 1fr;
  }

  .audit-flagship .audit-point,
  .audit-fpl .audit-point,
  .audit-whole .audit-point,
  .audit-flagship .audit-point:nth-child(1),
  .audit-fpl .audit-point:nth-child(1),
  .audit-whole .audit-point:nth-child(1),
  .audit-flagship .audit-point:nth-child(6),
  .audit-fpl .audit-point:nth-child(6),
  .audit-whole .audit-point:nth-child(6),
  .audit-flagship .solution-card,
  .audit-fpl .solution-card,
  .audit-whole .solution-card,
  .audit-fpl .solution-card:nth-child(1),
  .audit-fpl .solution-card:nth-child(8),
  .audit-flagship .solution-card:nth-child(1),
  .audit-flagship .solution-card:nth-child(8),
  .audit-whole .solution-card:nth-child(1),
  .audit-whole .solution-card:nth-child(4) {
    grid-column: auto;
  }

  .audit-flagship .form-card,
  .audit-fpl .form-card,
  .audit-whole .form-card {
    max-width: none;
  }
}

/* ckbk-inspired full-bleed conversion poster */
.ckbk-landing {
  --ckbk-orange: #ed622a;
  --ckbk-orange-dark: #d94f19;
  --ckbk-cream: #fff7e9;
  background: #fffaf1;
}

body.ckbk-landing .site-header {
  background: var(--ckbk-orange);
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.ckbk-landing .nav {
  width: min(100%, 1440px);
  min-height: 92px;
  padding: 0 26px;
}

.ckbk-landing .brand,
.ckbk-landing .nav-link {
  color: #ffffff;
}

.ckbk-landing .brand {
  gap: 10px;
  font-size: 1.12rem;
  letter-spacing: 0.08em;
}

.ckbk-landing .brand-mark {
  width: auto;
  height: auto;
  color: #ffffff;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  font-family: "Arial Narrow", "Avenir Next Condensed", Impact, sans-serif;
  font-size: 1.28rem;
  font-weight: 950;
}

.ckbk-landing .brand-logo {
  display: block;
  width: auto;
  height: 30px;
  max-width: min(224px, 52vw);
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ckbk-landing .nav-link {
  opacity: 0.96;
  font-size: 1.06rem;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.ckbk-landing .nav-actions .button.secondary {
  color: #ffffff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: none;
}

.ckbk-landing .hero {
  min-height: calc(100vh - 92px);
  display: flex;
  align-items: center;
  padding: clamp(72px, 8vw, 118px) 0;
  color: var(--ckbk-cream);
  background-position: center;
  background-size: cover;
}

.ckbk-landing.audit-flagship .hero {
  background-image:
    linear-gradient(180deg, rgba(14, 27, 24, 0.42), rgba(14, 27, 24, 0.66)),
    url("/assets/images/M5_hero.jpeg");
}

.ckbk-landing.audit-fpl .hero {
  background-image:
    linear-gradient(180deg, rgba(12, 20, 25, 0.46), rgba(12, 20, 25, 0.7)),
    url("/assets/images/M2_Hero.jpeg");
}

.ckbk-landing.audit-whole .hero {
  background-image:
    linear-gradient(180deg, rgba(18, 28, 24, 0.44), rgba(18, 28, 24, 0.68)),
    url("/assets/images/M1_Hero.jpeg");
  min-height: calc(100vh - 136px);
  padding: clamp(38px, 4vw, 58px) 0;
}

.ckbk-landing .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.34) 36%, rgba(0, 0, 0, 0.14) 60%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), transparent 24%, transparent 76%, rgba(0, 0, 0, 0.24));
}

.ckbk-landing .hero-grid {
  position: relative;
  z-index: 1;
  display: block;
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  text-align: center;
}

.ckbk-landing .hero-grid > div:first-child {
  max-width: 900px;
  margin: 0 auto;
}

.ckbk-landing .eyebrow {
  justify-content: center;
  margin-bottom: 22px;
  color: rgba(255, 247, 233, 0.86);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.26);
}

.ckbk-landing .eyebrow::before {
  display: none;
}

.ckbk-landing h1 {
  max-width: 12.4ch;
  margin: 0 auto 24px;
  color: var(--ckbk-cream);
  font-family: "Arial Narrow", "Avenir Next Condensed", "HelveticaNeue-CondensedBold", Impact, sans-serif;
  font-size: clamp(3.75rem, 7.4vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: 0.012em;
  text-transform: uppercase;
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.42);
}

.ckbk-landing.audit-fpl h1 {
  max-width: 12.8ch;
  font-size: clamp(3.55rem, 6.7vw, 6.5rem);
}

.ckbk-landing.audit-whole h1 {
  max-width: 14.2ch;
  font-size: clamp(3.4rem, 5.7vw, 5.7rem);
}

.ckbk-landing.audit-whole .hero-lede {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(1.04rem, 1.32vw, 1.22rem);
  line-height: 1.38;
}

.ckbk-landing.audit-whole .hero-stat-stack {
  gap: 6px;
  margin-bottom: 22px;
}

.ckbk-landing.audit-whole .hero-stat-stack strong {
  font-size: clamp(1.72rem, 3vw, 2.9rem);
}

.ckbk-landing.audit-whole .hero-actions .button {
  min-height: 62px;
}

.ckbk-landing.audit-whole .hero-actions .button.secondary {
  min-height: 52px;
}

.ckbk-landing.audit-fpl .hero-stat-stack strong {
  font-size: clamp(2rem, 3.8vw, 3.8rem);
}

.ckbk-landing .hero-lede {
  max-width: 760px;
  margin: 0 auto 30px;
  color: rgba(255, 247, 233, 0.94);
  font-size: clamp(1.12rem, 1.65vw, 1.42rem);
  font-weight: 720;
  line-height: 1.42;
  text-shadow: 0 3px 16px rgba(0, 0, 0, 0.42);
}

.hero-stat-stack {
  display: grid;
  gap: 8px;
  margin: 0 auto 34px;
  color: var(--ckbk-cream);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  text-align: center;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.42);
}

.hero-stat-stack strong {
  display: block;
  font-size: clamp(2rem, 4.3vw, 4.25rem);
  font-weight: 860;
  line-height: 1;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.hero-stat-stack span {
  display: block;
  margin-top: 8px;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
  font-weight: 760;
  color: rgba(255, 247, 233, 0.92);
}

.ckbk-landing .hero-actions {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(440px, 100%);
  margin: 0 auto;
}

.ckbk-landing .hero-actions .button {
  width: 100%;
  min-height: 70px;
  border-radius: 4px;
  background: var(--ckbk-orange);
  color: var(--ckbk-cream);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  font-family: "Arial Narrow", "Avenir Next Condensed", "HelveticaNeue-CondensedBold", Impact, sans-serif;
  font-size: 1.12rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ckbk-landing .hero-actions .button.secondary {
  width: 82%;
  min-height: 58px;
  color: var(--ckbk-cream);
  background: var(--ckbk-orange);
  border: 0;
}

.ckbk-landing .hero-actions .button:hover {
  background: var(--ckbk-orange-dark);
}

.ckbk-landing .hero-form-card,
.ckbk-landing .assurance-row,
.ckbk-landing .hero-visual {
  display: none;
}

.ckbk-landing.audit-whole .section {
  padding: clamp(64px, 6vw, 92px) 0;
}

.ckbk-landing.audit-whole .section-head {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.56fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin-bottom: clamp(30px, 4vw, 46px);
}

.ckbk-landing .section-head h2,
.ckbk-landing .split-copy h2,
.ckbk-landing .final-copy h2 {
  font-family: "Arial Narrow", "Avenir Next Condensed", "HelveticaNeue-CondensedBold", Impact, sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.ckbk-landing.audit-whole .section-head h2 {
  max-width: 22ch;
  font-size: clamp(2.55rem, 3.75vw, 4.05rem);
  line-height: 0.98;
}

.ckbk-landing.audit-whole .section-head p {
  max-width: 37ch;
  padding-top: 8px;
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.5;
}

.ckbk-landing.audit-whole .solution-grid {
  gap: 16px;
}

.ckbk-landing.audit-whole .solution-card,
.ckbk-landing.audit-whole .solution-card:nth-child(1),
.ckbk-landing.audit-whole .solution-card:nth-child(4) {
  grid-column: span 3;
  min-height: 206px;
}

.ckbk-landing.audit-whole .process-step {
  min-height: 224px;
}

.ckbk-landing.audit-whole .process-step::before {
  margin-bottom: 36px;
}

.ckbk-landing.audit-whole .objection-grid {
  gap: 16px;
}

.ckbk-landing .final-cta {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.28)),
    url("/assets/images/M8_Perforane_Diagnostic.jpeg");
  background-position: center;
  background-size: cover;
}

.ckbk-landing.audit-fpl .final-cta {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.28)),
    url("/assets/images/M2_Savings_Card.jpeg");
}

.ckbk-landing.audit-whole .final-cta {
  background-image:
    linear-gradient(90deg, rgba(0, 0, 0, 0.56), rgba(0, 0, 0, 0.28)),
    url("/assets/images/M5_Assessment_Card.jpeg");
}

.ckbk-landing .final-copy h2,
.ckbk-landing .final-copy p {
  color: #ffffff;
  text-shadow: 0 6px 26px rgba(0, 0, 0, 0.46);
}

.ckbk-landing .final-copy .mini-proof span {
  color: #ffffff;
  background: rgba(255, 90, 31, 0.92);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}

.ckbk-landing .final-cta .form-card {
  background: rgba(255, 253, 247, 0.97);
  scroll-margin-top: 112px;
}

@media (max-width: 760px) {
  .ckbk-landing .site-header {
    position: relative;
  }

  .ckbk-landing .nav {
    min-height: 57px;
    justify-content: center;
    padding: 0 14px;
  }

  .ckbk-landing .brand {
    font-size: 0.95rem;
  }

  .ckbk-landing .brand-logo {
    height: 25px;
    max-width: 196px;
  }

  .ckbk-landing .brand-mark {
    display: none;
  }

  .ckbk-landing .hero {
    min-height: calc(100vh - 57px);
    align-items: center;
    padding: 54px 0 64px;
    background-position: center;
  }

  .ckbk-landing.audit-fpl .hero {
    background-position: 42% center;
  }

  .ckbk-landing .hero-grid {
    width: calc(100vw - 28px);
  }

  .ckbk-landing .eyebrow {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .ckbk-landing h1,
  .ckbk-landing.audit-fpl h1,
  .ckbk-landing.audit-whole h1 {
    max-width: 10.5ch;
    font-size: clamp(2.6rem, 11.4vw, 3.45rem);
    line-height: 0.96;
  }

  .ckbk-landing .hero-lede {
    max-width: 29ch;
    font-size: 1.03rem;
    line-height: 1.46;
  }

  .hero-stat-stack {
    margin-bottom: 28px;
  }

  .hero-stat-stack strong {
    font-size: clamp(1.78rem, 8.6vw, 2.55rem);
    line-height: 1.06;
  }

  .hero-stat-stack span {
    max-width: 24ch;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.98rem;
  }

  .ckbk-landing .hero-actions .button {
    min-height: 62px;
    font-size: 0.98rem;
  }

  .ckbk-landing .hero-actions .button.secondary {
    width: 88%;
    min-height: 54px;
  }

  .ckbk-landing .final-grid {
    grid-template-columns: 1fr;
  }

  .ckbk-landing .final-cta .form-card {
    scroll-margin-top: 18px;
  }

  .ckbk-landing.audit-whole .section {
    padding: 52px 0;
  }

  .ckbk-landing.audit-whole .section-head {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
  }

  .ckbk-landing.audit-whole .section-head h2 {
    max-width: 19ch;
    font-size: clamp(1.85rem, 6.9vw, 2.35rem);
    line-height: 1.04;
  }

  .ckbk-landing.audit-whole .section-head p {
    max-width: 34ch;
    padding-top: 0;
    font-size: 1rem;
  }

  .ckbk-landing.audit-whole .solution-card,
  .ckbk-landing.audit-whole .solution-card:nth-child(1),
  .ckbk-landing.audit-whole .solution-card:nth-child(4) {
    grid-column: auto;
    min-height: auto;
  }

  .ckbk-landing.audit-whole .process-step::before {
    margin-bottom: 28px;
  }

  .ckbk-landing.audit-whole .hero {
    min-height: calc(100svh - 101px);
    padding: 34px 0 42px;
  }

  .ckbk-landing.audit-whole .eyebrow {
    margin-bottom: 14px;
    font-size: 0.66rem;
  }

  .ckbk-landing.audit-whole h1 {
    max-width: 11.7ch;
    margin-bottom: 16px;
    font-size: clamp(2.18rem, 9.9vw, 3rem);
    line-height: 0.98;
  }

  .ckbk-landing.audit-whole .hero-lede {
    max-width: 31ch;
    margin-bottom: 18px;
    font-size: 0.94rem;
    line-height: 1.42;
    font-weight: 700;
  }

  .ckbk-landing.audit-whole .hero-stat-stack {
    gap: 4px;
    margin-bottom: 18px;
  }

  .ckbk-landing.audit-whole .hero-stat-stack strong {
    font-size: clamp(1.52rem, 7.3vw, 2.2rem);
    line-height: 1.03;
    letter-spacing: 0.025em;
  }

  .ckbk-landing.audit-whole .hero-stat-stack span {
    margin-top: 4px;
    font-size: 0.9rem;
  }

  .ckbk-landing.audit-whole .hero-actions {
    gap: 12px;
  }

  .ckbk-landing.audit-whole .hero-actions .button {
    min-height: 56px;
  }

  .ckbk-landing.audit-whole .hero-actions .button.secondary {
    min-height: 48px;
  }
}
