:root {
  --navy: #0f2747;
  --deep: #071c34;
  --panel: #102b4a;
  --cyan: #00c8f0;
  --gold: #c7a35a;
  --green: #4f7a5b;
  --ice: #d9e3ec;
  --muted: #9fb2c5;
  --line: rgba(255, 255, 255, 0.18);
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--deep);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(7, 28, 52, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 92px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
  color: var(--ice);
  font-size: 13px;
  letter-spacing: 0;
}

.nav a,
.header-cta,
.button {
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
  color: var(--cyan);
}

.nav a[aria-current="page"] {
  color: var(--cyan);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: var(--white);
}

.header-cta,
.button {
  border: 1px solid rgba(0, 200, 240, 0.6);
  border-radius: 6px;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta {
  color: var(--cyan);
}

.header-cta:hover,
.button.primary {
  background: var(--cyan);
  color: var(--deep);
}

.button.primary:hover,
.button.secondary:hover {
  transform: translateY(-1px);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.22);
}

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 180px clamp(24px, 8vw, 108px) 72px;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media {
  background-image: url("assets/cwc-hero-trailer.webp");
  background-size: cover;
  background-position: 70% center;
  filter: saturate(0.96);
}

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgb(7, 28, 52) 0%, rgb(7, 28, 52) 20%, rgba(7, 28, 52, 0.88) 34%, rgba(7, 28, 52, 0.42) 68%, rgba(7, 28, 52, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 28, 52, 0.95) 0%, rgba(7, 28, 52, 0) 34%);
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 84px;
  line-height: 0.98;
  max-width: 820px;
}

.hero-copy {
  margin: 26px 0 0;
  max-width: 620px;
  color: var(--ice);
  font-size: 21px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #082038;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip div {
  padding: 26px clamp(20px, 4vw, 64px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip span {
  display: block;
  color: var(--cyan);
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.trust-strip strong {
  font-size: 18px;
  line-height: 1.35;
}

.section {
  padding: 88px clamp(24px, 8vw, 108px);
}

.page-main {
  padding-top: 92px;
}

.page-title {
  height: 42vh;
  min-height: 420px;
  display: grid;
  align-content: end;
  padding: 72px clamp(24px, 8vw, 108px) 56px;
  background:
    linear-gradient(120deg, rgb(7, 28, 52) 0%, rgb(7, 28, 52) 20%, rgba(15, 39, 71, 0.92) 100%),
    url("assets/cwc-hero-trailer.webp");
  background-size: cover;
  background-position: center;
}

.page-title h1,
.contact-page h1 {
  margin: 0;
  font-size: 76px;
  line-height: 0.98;
}

.page-title p:not(.eyebrow),
.contact-page p {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--ice);
  font-size: 20px;
  line-height: 1.5;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading h2,
.contact h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.04;
}

.section-heading p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--ice);
  font-size: 18px;
  line-height: 1.5;
}

.intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 1.2fr);
  gap: 48px;
  align-items: start;
}

.intro-panel,
.pricing,
.contact-card {
  background: rgba(16, 43, 74, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.intro-panel {
  padding: clamp(28px, 4vw, 48px);
}

.intro-panel p {
  margin: 0;
  color: var(--ice);
  font-size: 22px;
  line-height: 1.55;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.chips span {
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0, 200, 240, 0.1);
  padding: 9px 16px;
  font-size: 13px;
}

.feature-grid,
.deliverable-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-top: 0;
}

.deliverable-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 36px;
  padding: 26px 28px;
  background: #09213b;
  border-left: 4px solid var(--cyan);
}

.deliverable-cta p {
  max-width: 720px;
  margin: 0;
  color: var(--ice);
  font-size: 18px;
  line-height: 1.5;
}

.feature-grid article,
.deliverable-list article {
  min-height: 170px;
  padding: 24px;
  background: rgba(16, 43, 74, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  border-top: 7px solid var(--cyan);
}

.feature-grid article:nth-child(2),
.deliverable-list article:nth-child(2),
.deliverable-list article:nth-child(6) {
  border-top-color: var(--gold);
}

.feature-grid article:nth-child(3),
.deliverable-list article:nth-child(3) {
  border-top-color: var(--green);
}

.feature-grid article:nth-child(4),
.deliverable-list article:nth-child(4) {
  border-top-color: #6aa8ff;
}

.feature-grid h3,
.deliverable-list h3,
.timeline h3,
.commercial-notes h3 {
  margin: 0;
  font-size: 22px;
}

.feature-grid p,
.deliverable-list p,
.timeline p,
.commercial-notes li {
  color: var(--muted);
  line-height: 1.48;
}

.evidence-preview {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  background: #f4f8fb;
  color: var(--deep);
}

.evidence-copy h2 {
  max-width: 700px;
  margin: 0;
  font-size: 52px;
  line-height: 1.04;
}

.evidence-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 22px 0 0;
  color: #4f6479;
  font-size: 18px;
  line-height: 1.55;
}

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

.evidence-list li {
  position: relative;
  padding-left: 24px;
  color: #31485f;
}

.evidence-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 10px;
  height: 3px;
  background: var(--cyan);
}

.evidence-copy .button.secondary {
  display: inline-flex;
  background: var(--deep);
  border-color: var(--deep);
}

.report-glimpse {
  padding: clamp(26px, 4vw, 42px);
  background: var(--white);
  border: 1px solid #d8e3ed;
  border-top: 7px solid var(--cyan);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(7, 28, 52, 0.13);
}

.report-glimpse-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid #d8e3ed;
}

.report-glimpse-head span,
.report-kpis span,
.report-finding span {
  color: #688097;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.report-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 24px 0;
  border: 1px solid #d8e3ed;
}

.report-kpis div {
  min-width: 0;
  padding: 18px;
  border-right: 1px solid #d8e3ed;
}

.report-kpis div:last-child {
  border-right: 0;
}

.report-kpis span,
.report-kpis strong {
  display: block;
}

.report-kpis strong {
  margin-top: 10px;
  font-size: 27px;
}

.report-kpis .positive {
  background: #eef7f1;
}

.report-kpis .attention {
  background: #fff5e8;
}

.report-finding {
  padding: 20px;
  background: #f5f8fb;
  border-left: 4px solid var(--cyan);
}

.report-finding strong {
  display: block;
  margin-top: 9px;
}

.report-finding p {
  margin: 9px 0 0;
  color: #526a81;
  line-height: 1.5;
}

.report-glimpse small {
  display: block;
  margin-top: 16px;
  color: #74899d;
}

.process,
.investment {
  background: var(--navy);
}

.page-main .process,
.page-main .deliverables,
.page-main .investment,
.page-main .sample-intro,
.page-main .about-intro,
.page-main .form-section {
  padding-top: 70px;
}

.timeline {
  display: grid;
  gap: 16px;
  max-width: 1040px;
}

.timeline article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px 24px;
  background: rgba(16, 43, 74, 0.84);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 42px;
  border-radius: 6px;
  background: #061b31;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.timeline .active span,
.timeline .temp span {
  background: var(--cyan);
  color: var(--deep);
}

.timeline p {
  margin: 8px 0 0;
}

.deliverable-list {
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
}

.investment {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: 48px;
}

.pricing {
  padding: 28px;
}

.request-panel {
  align-self: start;
}

.request-panel p {
  color: var(--ice);
  font-size: 18px;
  line-height: 1.55;
}

.request-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 18px;
  padding: 0;
  list-style: none;
}

.request-list li {
  position: relative;
  color: var(--muted);
  padding-left: 22px;
}

.request-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
}

.request-panel .button {
  display: inline-flex;
  margin-top: 12px;
}

.price-table {
  overflow: hidden;
  border-radius: 8px;
}

.price-table div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  background: #102b4a;
  color: var(--ice);
}

.price-table div:nth-child(2) {
  background: #09213b;
}

.price-table .total {
  background: #071c34;
  color: var(--white);
  font-weight: 700;
}

.commercial-notes {
  margin-top: 26px;
}

.commercial-notes ul {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.commercial-notes li {
  position: relative;
  padding-left: 24px;
  margin: 13px 0;
}

.commercial-notes li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 460px);
  gap: 48px;
  align-items: center;
}

.contact-page {
  min-height: 66vh;
  padding-top: 120px;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 34px;
  font-style: normal;
}

.contact-card strong {
  font-size: 30px;
}

.contact-card a,
.contact-card span {
  color: var(--ice);
  font-size: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 18px;
}

.contact-card a:hover {
  color: var(--cyan);
}

.request-details {
  background: var(--navy);
}

.request-details h2 {
  margin: 0 0 24px;
  font-size: 42px;
}

.request-details ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.request-details li {
  min-height: 112px;
  padding: 20px;
  background: rgba(16, 43, 74, 0.82);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ice);
}

.cta-band {
  background: #09213b;
}

.cta-band h2 {
  max-width: 780px;
  margin: 0 0 26px;
  font-size: 52px;
  line-height: 1.06;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(24px, 8vw, 108px);
  background: #061b31;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  text-transform: uppercase;
  font-size: 12px;
}

.site-footer > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-copy {
  display: grid;
  gap: 5px;
  line-height: 1.45;
}

.footer-copy span {
  display: block;
}

.site-footer nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

.site-footer nav a:hover {
  color: var(--cyan);
}

.sample-intro,
.about-intro,
.independence-section,
.form-section,
.report-includes {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1.2fr);
  gap: clamp(44px, 7vw, 94px);
  align-items: start;
}

.sample-note {
  padding: 28px 30px;
  background: rgba(16, 43, 74, 0.78);
  border-left: 4px solid var(--cyan);
}

.sample-note p {
  margin: 11px 0 0;
  color: var(--ice);
  line-height: 1.55;
}

.report-showcase {
  display: grid;
  gap: 34px;
  padding-top: 20px;
  background: #eaf1f6;
  color: var(--deep);
}

.report-sheet {
  padding: clamp(28px, 4vw, 48px);
  background: var(--white);
  border: 1px solid #d3dfe9;
  box-shadow: 0 16px 38px rgba(7, 28, 52, 0.09);
}

.sheet-heading {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #dbe5ed;
}

.sheet-heading > div {
  display: flex;
  gap: 15px;
  align-items: center;
}

.sheet-heading span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 30px;
  background: var(--deep);
  color: var(--white);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
}

.sheet-heading h2 {
  margin: 0;
  color: #315574;
  font-size: 32px;
}

.sheet-heading p {
  max-width: 520px;
  margin: 0;
  color: #63788c;
  line-height: 1.45;
  text-align: right;
}

.sample-kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #d8e3ec;
  border-left: 1px solid #d8e3ec;
}

.sample-kpi-grid > div,
.test-meta > div {
  min-width: 0;
  padding: 20px;
  border-right: 1px solid #d8e3ec;
  border-bottom: 1px solid #d8e3ec;
}

.sample-kpi-grid span,
.sample-kpi-grid strong,
.test-meta span,
.test-meta strong,
.decision-block span,
.decision-block strong {
  display: block;
}

.sample-kpi-grid span,
.test-meta span,
.decision-block span,
.observation-box span {
  color: #6b8297;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.sample-kpi-grid strong,
.test-meta strong {
  margin-top: 9px;
  line-height: 1.35;
}

.status-good {
  background: #edf7f1;
}

.status-review {
  background: #fff4e8;
}

.test-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 28px;
  border-top: 1px solid #d8e3ec;
  border-left: 1px solid #d8e3ec;
}

.sample-chart {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #dce5ed;
}

.observation-box {
  margin-top: 24px;
  padding: 22px;
  background: #f3f7fa;
  border-left: 4px solid var(--cyan);
}

.observation-box p {
  margin: 10px 0 0;
  color: #415970;
  line-height: 1.55;
}

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

.compact-sheet {
  min-width: 0;
}

.compact-sheet .sheet-heading {
  align-items: center;
}

.decision-block {
  padding: 22px;
  background: #f3f7fa;
  border-left: 4px solid #9eb2c4;
}

.decision-block + .decision-block {
  margin-top: 16px;
}

.decision-block.attention-block {
  background: #fff4e8;
  border-left-color: var(--gold);
}

.decision-block strong {
  margin-top: 10px;
  line-height: 1.4;
}

.decision-block p {
  margin: 10px 0 0;
  color: #526a80;
  line-height: 1.5;
}

.recommendation-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid #dce5ed;
}

.recommendation-row:last-child {
  border-bottom: 0;
}

.recommendation-row span {
  padding: 7px 8px;
  background: #e8f3f6;
  color: #236071;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

.recommendation-row p {
  margin: 5px 0 0;
  color: #415970;
  line-height: 1.45;
}

.layout-sheet img {
  display: block;
  width: 100%;
  height: auto;
}

.report-includes {
  background: var(--navy);
}

.report-includes h2,
.about-intro h2,
.independence-section h2,
.form-intro h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.04;
}

.report-includes ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.report-includes li {
  padding: 18px;
  background: rgba(16, 43, 74, 0.82);
  border-left: 3px solid var(--cyan);
  color: var(--ice);
  line-height: 1.45;
}

.about-intro {
  background: var(--navy);
  color: var(--white);
  align-items: center;
}

.about-mark {
  display: grid;
  place-items: center;
  min-height: 390px;
  background: rgba(16, 43, 74, 0.82);
  border: 1px solid var(--line);
  border-left: 7px solid var(--cyan);
  border-radius: 8px;
}

.about-mark img {
  width: min(52%, 250px);
  height: auto;
}

.about-intro > div:last-child > p:not(.eyebrow) {
  color: var(--ice);
  font-size: 18px;
  line-height: 1.6;
}

.responsibility-band {
  background: var(--navy);
}

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

.responsibility-grid article {
  min-height: 230px;
  padding: 25px;
  background: rgba(16, 43, 74, 0.82);
  border-top: 5px solid var(--cyan);
}

.responsibility-grid article:nth-child(2) {
  border-top-color: var(--gold);
}

.responsibility-grid article:nth-child(3) {
  border-top-color: var(--green);
}

.responsibility-grid article:nth-child(4) {
  border-top-color: #6aa8ff;
}

.responsibility-grid span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.responsibility-grid h3 {
  margin: 20px 0 0;
}

.responsibility-grid p {
  color: var(--muted);
  line-height: 1.5;
}

.independence-section {
  align-items: center;
}

.independence-section > p {
  margin: 0;
  color: var(--ice);
  font-size: 21px;
  line-height: 1.6;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  margin-top: 30px;
  color: var(--ice);
}

.contact-direct a:hover {
  color: var(--cyan);
}

.request-assurance {
  margin-top: 32px;
  padding: 32px;
  background: rgba(16, 43, 74, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 6px solid var(--cyan);
  border-radius: 8px;
}

.request-assurance > span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.request-assurance ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.request-assurance li {
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--ice);
}

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

.form-intro > p:not(.eyebrow) {
  color: var(--ice);
  font-size: 18px;
  line-height: 1.55;
}

.mapping-form {
  display: grid;
  gap: 23px;
  padding: clamp(26px, 4vw, 42px);
  background: rgba(16, 43, 74, 0.82);
  border: 1px solid var(--line);
  border-top: 6px solid var(--cyan);
  border-radius: 8px;
}

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

.mapping-form label {
  display: grid;
  gap: 9px;
}

.mapping-form label > span {
  color: var(--ice);
  font-size: 13px;
  font-weight: 700;
}

.mapping-form input,
.mapping-form select,
.mapping-form textarea {
  width: 100%;
  border: 1px solid #bdcbd7;
  border-radius: 5px;
  padding: 13px 14px;
  background: var(--white);
  color: var(--deep);
  font: inherit;
}

.mapping-form input:focus,
.mapping-form select:focus,
.mapping-form textarea:focus {
  outline: 3px solid rgba(0, 200, 240, 0.2);
  border-color: #0aa9c5;
}

.mapping-form textarea {
  resize: vertical;
}

.privacy-check {
  grid-template-columns: 22px 1fr;
  align-items: start;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.privacy-check a,
.form-submit a,
.privacy-content a {
  color: var(--cyan);
  text-decoration: underline;
}

.form-submit {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.mapping-form .button.primary {
  cursor: pointer;
}

.form-submit > span {
  color: var(--muted);
  font-size: 13px;
}

.form-status {
  padding: 14px;
  background: #fff1e2;
  color: #7a4610;
  border-left: 4px solid var(--gold);
}

.form-trap {
  position: absolute;
  left: -9999px;
}

.confirmation-page {
  display: grid;
  align-content: center;
  min-height: 100vh;
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 24px;
}

.confirmation-page img {
  width: 100px;
  margin-bottom: 48px;
}

.confirmation-page h1 {
  font-size: 78px;
}

.confirmation-page > p:not(.eyebrow) {
  color: var(--ice);
  font-size: 20px;
  line-height: 1.55;
}

.confirmation-page .button {
  justify-self: start;
  margin-top: 20px;
}

.confirmation-page > p.confirmation-legal {
  margin-top: 34px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
  text-transform: uppercase;
}

.confirmation-legal a:hover {
  color: var(--cyan);
}

.privacy-title {
  min-height: 36vh;
}

.privacy-content {
  max-width: 860px;
}

.privacy-content h2 {
  margin: 36px 0 10px;
  font-size: 27px;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p {
  color: var(--ice);
  line-height: 1.65;
}

.privacy-date {
  margin-top: 44px;
  color: var(--muted) !important;
  font-size: 13px;
}

.site-footer img {
  width: 82px;
}

@media (max-width: 920px) {
  h1,
  .page-title h1,
  .contact-page h1,
  .confirmation-page h1 {
    font-size: 60px;
  }

  .section-heading h2,
  .contact h2,
  .evidence-copy h2,
  .cta-band h2,
  .report-includes h2,
  .about-intro h2,
  .independence-section h2,
  .form-intro h2 {
    font-size: 44px;
  }
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .nav.is-open {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 10px clamp(20px, 5vw, 64px) 18px;
    background: rgba(7, 28, 52, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .nav.is-open a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav.is-open a:last-child {
    border-bottom: 0;
  }

  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .intro,
  .investment,
  .contact,
  .evidence-preview,
  .sample-intro,
  .about-intro,
  .independence-section,
  .form-section,
  .report-includes {
    grid-template-columns: 1fr;
  }

  .report-pair,
  .responsibility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sample-kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sheet-heading {
    display: grid;
    align-items: start;
  }

  .sheet-heading p {
    text-align: left;
  }

  .feature-grid,
  .deliverable-list,
  .trust-strip,
  .request-details ul {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  h1,
  .page-title h1,
  .contact-page h1,
  .confirmation-page h1 {
    font-size: 44px;
  }

  .section-heading h2,
  .contact h2,
  .evidence-copy h2,
  .cta-band h2,
  .report-includes h2,
  .about-intro h2,
  .independence-section h2,
  .form-intro h2,
  .request-details h2 {
    font-size: 36px;
  }

  .sheet-heading h2 {
    font-size: 27px;
  }
  .site-header {
    padding: 14px 18px;
  }

  .site-header .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: auto 1fr;
  }

  .brand img {
    width: 76px;
  }

  .header-cta {
    padding: 10px 12px;
    font-size: 12px;
  }

  .hero {
    min-height: 92vh;
    padding: 132px 22px 44px;
  }

  .page-title {
    height: auto;
    min-height: 440px;
    padding: 64px 22px 48px;
  }

  .report-kpis {
    grid-template-columns: 1fr;
  }

  .report-pair,
  .responsibility-grid,
  .sample-kpi-grid,
  .test-meta,
  .report-includes ul,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .about-mark {
    min-height: 280px;
  }

  .site-footer > div,
  .site-footer nav,
  .deliverable-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .report-kpis div {
    border-right: 0;
    border-bottom: 1px solid #d8e3ed;
  }

  .report-kpis div:last-child {
    border-bottom: 0;
  }

  .hero-media {
    background-position: 70% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 28, 52, 0.98) 0%, rgba(7, 28, 52, 0.8) 58%, rgba(7, 28, 52, 0.35) 100%),
      linear-gradient(0deg, rgba(7, 28, 52, 0.96) 0%, rgba(7, 28, 52, 0) 42%);
  }

  .section {
    padding: 64px 22px;
  }

  .trust-strip,
  .feature-grid,
  .deliverable-list,
  .request-details ul {
    grid-template-columns: 1fr;
  }

  .timeline article {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .timeline span {
    width: 46px;
  }

  .price-table div {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
