﻿:root {
  --navy: #061522;
  --navy-2: #0b1b2a;
  --navy-3: #132a42;
  --ink: #0f172a;
  --charcoal: #242a31;
  --muted: #475569;
  --line: #e2e8f0;
  --line-dark: #2a3d52;
  --paper: #f3f0e8;
  --cream: #fbfaf5;
  --white: #ffffff;
  --gold: #c89449;
  --gold-hover: #b78332;
  --gold-soft: #ead9b7;
  --shadow: 0 18px 44px rgba(15, 23, 42, 0.1);
  --dark-shadow: 0 24px 54px rgba(2, 8, 15, 0.46);
  --home-card-radius: 10px;
  --home-button-radius: 6px;
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  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;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.tm-mark {
  display: inline-block;
  margin-left: 2px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.42em;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  vertical-align: super;
}

.eyebrow .tm-mark,
.section-kicker .tm-mark,
.nav .tm-mark,
.site-footer .tm-mark,
.button .tm-mark {
  font-size: 0.72em;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(48px, 6.8vw, 92px);
  line-height: 0.96;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(31px, 4.1vw, 56px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.2;
}

p {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 76px;
  padding: 13px clamp(20px, 4vw, 64px);
  color: var(--white);
  background: var(--navy);
  border-bottom: 1px solid var(--line-dark);
}

.site-header.scrolled {
  box-shadow: 0 10px 26px #02070c;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--gold-soft);
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: #09121e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 700;
}

.brand-text strong,
.footer-brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1;
}

.brand-text small,
.footer-brand small {
  display: block;
  margin-top: 5px;
  color: #aeb8c2;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  color: #dbe2e9;
  font-size: 12px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.nav-links--mobile {
  display: none;
}

.nav a {
  padding: 10px 0;
  border-bottom: 2px solid var(--navy);
}

.nav a:hover,
.nav a.active {
  color: var(--white);
  border-bottom-color: var(--gold);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta,
.button.primary {
  color: #08111d;
  background: var(--gold);
}

.button.secondary {
  color: var(--navy);
  border-color: #d5bd8a;
  background: var(--cream);
}

.button.secondary-dark {
  color: var(--white);
  border-color: #41536a;
  background: var(--navy-3);
}

.button.outline {
  color: var(--gold-soft);
  border-color: var(--gold);
  background: #08111d;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  color: var(--white);
  border: 1px solid #45566a;
  border-radius: 6px;
  background: var(--navy-2);
}

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

.home-hero,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  min-height: 720px;
  padding: clamp(78px, 8vw, 124px) clamp(20px, 5vw, 76px);
  color: var(--ink);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero {
  min-height: 560px;
}

.hero-copy {
  max-width: 820px;
}

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

.hero-subtitle {
  max-width: 690px;
  margin-bottom: 18px;
  color: #34404a;
  font-size: clamp(18px, 2vw, 22px);
}

.hero-statement {
  margin-bottom: 0;
  color: var(--gold);
  font-size: 17px;
  font-weight: 700;
}

.page-hero p:not(.eyebrow),
.page-hero .hero-subtitle {
  color: #34404a;
}

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

.institutional-visual {
  width: 100%;
  max-width: 650px;
  height: auto;
  justify-self: end;
  overflow: visible;
  border: 1px solid #cfc7b8;
  border-radius: 8px;
  background: var(--cream);
  box-shadow: var(--shadow);
}

.visual-document {
  margin: 18px 18px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.document-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  background: #f7f3e9;
}

.document-top span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.document-top strong {
  color: var(--navy);
  font-size: 13px;
}

.document-main {
  display: block;
  padding: 24px 28px 28px;
}

.document-title-block {
  max-width: 420px;
}

.document-title-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.document-crane-mark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 22px;
}

.document-crane-mark img {
  display: block;
  width: 28px;
  height: 22px;
  object-fit: contain;
}

.document-main p {
  margin: 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.document-main h3 {
  max-width: 420px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 2.5vw, 36px);
  line-height: 1.1;
}

.document-table {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.document-table div {
  min-height: 88px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.document-table div:last-child {
  border-right: 0;
}

.document-table span,
.visual-register span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.document-table strong,
.visual-register strong {
  color: var(--ink);
  font-size: 15px;
}

.visual-register {
  margin: 0 18px 18px;
  border: 1px solid #2f4055;
  border-radius: 8px;
  background: var(--navy);
}

.register-title {
  padding: 18px 20px;
  border-bottom: 1px solid #2f4055;
}

.register-title strong,
.register-row strong {
  display: block;
  color: var(--white);
}

.register-row {
  display: grid;
  grid-template-columns: 56px minmax(170px, 190px) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-height: 74px;
  padding: 12px 20px;
  border-bottom: 1px solid #2f4055;
}

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

.register-row em {
  display: block;
  color: #aeb8c2;
  font-size: 14px;
  font-style: normal;
  line-height: 1.35;
}

.register-row span {
  margin-bottom: 0;
  line-height: 1;
}

.register-row strong {
  font-size: 15px;
  line-height: 1.25;
}

.section {
  padding: clamp(68px, 8vw, 112px) clamp(20px, 5vw, 76px);
}

.section-heading {
  max-width: 910px;
}

.pillar-section {
  padding-top: 28px;
  padding-bottom: 28px;
  background: var(--navy);
}

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

.pillar-card,
.solid-card,
.numbered-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px #e1dbcf;
}

.pillar-card {
  min-height: 210px;
  padding: 28px;
  color: var(--white);
  border-color: #2b3e54;
  background: var(--navy-2);
  box-shadow: none;
}

.pillar-card > span,
.solid-card > span,
.numbered-card > span,
.risk-matrix span {
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.card-meta {
  margin-bottom: 12px;
  color: #aeb8c2;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pillar-card p:not(.card-meta) {
  color: #cbd3db;
}

.pillar-card a,
.finance-copy a,
.solid-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 6vw, 82px);
  background: var(--cream);
}

.intro-section > div:first-child {
  padding-right: clamp(20px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.intro-section .button {
  margin-top: 24px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.solid-card {
  min-height: 235px;
  padding: 28px;
}

.solid-card p,
.numbered-card p,
.finance-copy p,
.deal-intro p,
.funding-section p {
  color: var(--muted);
}

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

.dark-section .section-heading p {
  color: #bac3cd;
}

.finance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}

.finance-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid #2d4056;
  border-radius: 8px;
  background: var(--navy-2);
  box-shadow: var(--dark-shadow);
}

.finance-asset {
  position: relative;
  min-height: 360px;
  background: #17304a;
  border-right: 1px solid #2d4056;
}

.finance-asset::before {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 28px;
  height: 2px;
  content: "";
  background: var(--gold);
}

.finance-asset span {
  position: absolute;
  display: block;
  border: 1px solid #607286;
  border-radius: 6px;
  background: #0e2135;
}

.finance-asset.vehicle span:nth-child(1) {
  left: 18%;
  top: 38%;
  width: 60%;
  height: 22%;
}

.finance-asset.vehicle span:nth-child(2),
.finance-asset.vehicle span:nth-child(3) {
  bottom: 26%;
  width: 42px;
  height: 42px;
  border-radius: 50%;
}

.finance-asset.vehicle span:nth-child(2) {
  left: 26%;
}

.finance-asset.vehicle span:nth-child(3) {
  right: 24%;
}

.finance-asset.equipment span:nth-child(1) {
  left: 46%;
  top: 20%;
  width: 28%;
  height: 50%;
}

.finance-asset.equipment span:nth-child(2) {
  left: 18%;
  top: 55%;
  width: 54%;
  height: 12%;
  transform: rotate(-20deg);
}

.finance-asset.equipment span:nth-child(3) {
  left: 15%;
  bottom: 24%;
  width: 56%;
  height: 16%;
}

.finance-copy {
  padding: 30px;
}

.finance-copy h3 {
  color: var(--white);
}

.finance-copy p {
  color: #cbd3db;
}

.finance-card .check-list {
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 20px;
}

.finance-card .check-list li {
  min-height: auto;
  padding: 0;
  color: #d6dde5;
  border: 0;
  background: var(--navy-2);
}

.deal-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(34px, 6vw, 82px);
  background: var(--white);
}

.deal-intro {
  padding-right: clamp(20px, 4vw, 58px);
  border-right: 1px solid var(--line);
}

.note {
  padding: 16px 18px;
  color: #3f4852;
  border-left: 4px solid var(--gold);
  background: #f4ead7;
}

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

.workflow-board article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f5ed;
}

.workflow-board span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.workflow-board p {
  color: var(--muted);
}

.risk-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(36px, 6vw, 84px);
  color: var(--white);
  background: var(--navy);
}

.risk-heading p {
  color: #bac3cd;
}

.risk-heading .button {
  margin-top: 20px;
}

.risk-matrix {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #2d3e54;
  border-radius: 8px;
  background: #2d3e54;
}

.risk-matrix div {
  min-height: 118px;
  padding: 22px;
  background: var(--navy-2);
}

.risk-matrix strong {
  display: block;
  color: #eef2f5;
  font-size: 15px;
  line-height: 1.35;
}

.funding-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.66fr) minmax(0, 1.34fr);
  gap: clamp(36px, 6vw, 84px);
  background: var(--cream);
}

.funding-section > div:first-child {
  padding-right: clamp(20px, 4vw, 58px);
  border-right: 1px solid var(--line);
}

.institutional-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px #e1dbcf;
}

.institutional-summary article {
  min-height: 196px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.institutional-summary article:nth-child(2n) {
  border-right: 0;
}

.institutional-summary article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 48px;
  padding: 14px;
  color: var(--charcoal);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.check-list svg {
  flex: 0 0 auto;
  color: var(--gold);
}

.list-section:nth-of-type(odd),
.form-section,
.numbered-section {
  background: var(--white);
}

.numbered-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.numbered-card {
  min-height: 210px;
  padding: 28px;
}

.scenario-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

.span-2 {
  grid-column: 1 / -1;
}

.scenario-form .button {
  justify-self: start;
  cursor: pointer;
}

.upload-placeholder {
  padding: 18px;
  border: 1px dashed #b9c1cb;
  border-radius: 8px;
  background: #f4f2ed;
}

.upload-placeholder strong,
.upload-placeholder span {
  display: block;
}

.upload-placeholder span {
  color: var(--muted);
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

body[data-page="contact"] .page-hero {
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.72fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
  min-height: 360px;
  padding-top: clamp(42px, 4.8vw, 66px);
  padding-bottom: clamp(22px, 3vw, 38px);
}

body[data-page="contact"] .page-hero > div:first-child {
  align-self: center;
}

body[data-page="contact"] .page-hero h1 {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
}

body[data-page="contact"] .page-hero .hero-subtitle {
  max-width: 600px;
  margin-bottom: 10px;
}

body[data-page="contact"] .page-hero p:not(.eyebrow):not(.hero-subtitle) {
  max-width: 590px;
  margin-bottom: 0;
}

body[data-page="contact"] .page-hero .hero-actions {
  margin-top: 16px;
}

body[data-page="contact"] .institutional-visual {
  max-width: 470px;
  justify-self: end;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.12);
}

body[data-page="contact"] .visual-document {
  margin: 16px;
}

body[data-page="contact"] .document-top {
  padding: 13px 16px;
}

body[data-page="contact"] .document-main {
  padding: 22px 22px 24px;
}

body[data-page="contact"] .document-main h3 {
  max-width: 310px;
  font-size: 30px;
}

body[data-page="contact"] .document-table div {
  min-height: 70px;
  padding: 14px;
}

body[data-page="contact"] .visual-register {
  margin: 0 16px 16px;
}

body[data-page="contact"] .register-title {
  padding: 15px 16px;
}

body[data-page="contact"] .register-row {
  grid-template-columns: 44px minmax(136px, 155px) minmax(0, 1fr);
  gap: 10px;
  min-height: 76px;
  padding: 11px 14px;
}

body[data-page="contact"] .form-section {
  padding-top: clamp(24px, 3vw, 42px);
  padding-bottom: clamp(32px, 4vw, 52px);
}

body[data-page="contact"] .contact-layout {
  grid-template-columns: 1fr;
  gap: clamp(18px, 2.5vw, 26px);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

body[data-page="contact"] .contact-form-intro {
  max-width: 760px;
}

body[data-page="contact"] .contact-form-intro .eyebrow {
  margin-bottom: 8px;
}

body[data-page="contact"] .contact-form-intro h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

body[data-page="contact"] .contact-form-intro p:not(.eyebrow) {
  max-width: 700px;
  margin: 0;
  color: var(--slate);
  font-size: 16px;
  line-height: 1.55;
}

body[data-page="contact"] .scenario-form {
  max-width: none;
  gap: 12px 14px;
  padding: clamp(20px, 2.6vw, 28px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

body[data-page="contact"] .scenario-form input,
body[data-page="contact"] .scenario-form select,
body[data-page="contact"] .scenario-form textarea {
  padding: 11px 13px;
}

body[data-page="contact"] .scenario-form textarea {
  min-height: 118px;
}

body[data-page="contact"] .scenario-form .button {
  margin-top: 2px;
}

body[data-page="contact"] .upload-placeholder {
  min-height: 70px;
  padding: 14px 16px;
  border-color: #cbd5e1;
  background: #fafaf7;
}

body[data-page="contact"] .upload-placeholder strong {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 14px;
}

body[data-page="contact"] .upload-placeholder span {
  font-size: 13px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: var(--white);
  background: var(--navy-2);
  border-top: 1px solid var(--line-dark);
}

.final-cta p {
  max-width: 790px;
  color: #c4ccd5;
}

.site-footer {
  color: var(--white);
  background: #050d17;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(170px, 0.8fr));
  gap: 30px;
  padding: 38px clamp(20px, 5vw, 76px);
  border-bottom: 1px solid #182538;
}

.footer-brand {
  align-items: flex-start;
}

.footer-grid h3 {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid span {
  display: block;
  margin: 7px 0;
  color: #bac3cd;
  font-size: 14px;
}

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

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: start;
  padding: 16px clamp(20px, 5vw, 76px) 22px;
}

.footer-bottom span {
  color: #8f99a5;
  font-size: 13px;
}

.footer-bottom p {
  max-width: 1060px;
  margin: 0;
  color: #7f8996;
  font-size: 12px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

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

  .nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 18px;
    padding: 18px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 18px 40px #cfc8bb;
  }

  .nav.is-open {
    display: grid;
  }

  .nav a {
    border-bottom-color: var(--white);
  }

  .nav a:hover,
  .nav a.active {
    color: var(--navy);
    border-bottom-color: var(--gold);
  }
}

@media (max-width: 1040px) {
  .home-hero,
  .page-hero,
  .intro-section,
  .deal-section,
  .risk-section,
  .funding-section,
  .final-cta,
  .footer-grid,
  .footer-bottom,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .institutional-visual {
    justify-self: start;
    max-width: 100%;
  }

  .intro-section > div:first-child,
  .deal-intro,
  .funding-section > div:first-child {
    padding-right: 0;
    border-right: 0;
  }

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

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand-text small,
  .header-cta {
    display: none;
  }

  .brand-text strong {
    font-size: 20px;
  }

  h1 {
    font-size: 43px;
  }

  .home-hero,
  .page-hero {
    min-height: auto;
    padding-top: 56px;
  }

  .document-main,
  .document-table,
  .register-row,
  .pillar-grid,
  .finance-grid,
  .finance-card,
  .card-grid,
  .workflow-board,
  .risk-matrix,
  .institutional-summary,
  .check-list,
  .numbered-grid,
  .scenario-form {
    grid-template-columns: 1fr;
  }

  .document-table div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .document-table div:last-child {
    border-bottom: 0;
  }

  .finance-asset {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid #2d4056;
  }

  .institutional-summary article,
  .institutional-summary article:nth-child(2n),
  .institutional-summary article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .institutional-summary article:last-child {
    border-bottom: 0;
  }
}

/* Homepage refinement: interaction, hierarchy, solutions, scenarios. */
body[data-page="home"] h1 {
  max-width: 700px;
  font-size: clamp(43px, 4.8vw, 66px);
  line-height: 1.05;
}

body[data-page="home"] .hero-subtitle {
  max-width: 560px;
}

body[data-page="home"] .brand-mark-image {
  border: 0;
  background: none;
  box-shadow: none;
}

body[data-page="home"] .brand-mark-image img {
  filter: none;
}

body[data-page="home"] .button,
body[data-page="home"] .header-cta,
body[data-page="home"] .primary-solution-card,
body[data-page="home"] .capability-card,
body[data-page="home"] .scenario-card,
body[data-page="home"] .solution-card,
body[data-page="home"] .clarity-list article,
body[data-page="home"] .deal-steps div {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

body[data-page="home"] .button svg,
body[data-page="home"] .header-cta svg,
body[data-page="home"] .primary-solution-card strong svg,
body[data-page="home"] .capability-card strong svg,
body[data-page="home"] .solution-card a svg {
  transition: transform 180ms ease;
}

body[data-page="home"] .button.primary:hover,
body[data-page="home"] .header-cta:hover {
  border-color: #b78332;
  background: #b78332;
}

body[data-page="home"] .button.secondary-dark:hover {
  color: #f1c47f;
  border-color: #c89449;
  background: #081524;
}

body[data-page="home"] .button:hover svg,
body[data-page="home"] .header-cta:hover svg,
body[data-page="home"] .primary-solution-card:hover strong svg,
body[data-page="home"] .capability-card:hover strong svg,
body[data-page="home"] .solution-card:hover a svg {
  transform: translateX(4px);
}

body[data-page="home"] .solutions-showcase {
  padding-top: clamp(58px, 6vw, 78px);
  padding-bottom: clamp(58px, 6vw, 78px);
}

body[data-page="home"] .section-kicker {
  color: #9b6b2d;
}

body[data-page="home"] .primary-solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  max-width: 1320px;
  margin: 0 auto;
}

body[data-page="home"] .primary-solution-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 34px #e8edf3;
}

body[data-page="home"] .primary-solution-card:hover,
body[data-page="home"] .capability-card:hover,
body[data-page="home"] .scenario-card:hover,
body[data-page="home"] .clarity-list article:hover,
body[data-page="home"] .deal-steps div:hover {
  transform: translateY(-4px);
  border-color: #c89449;
  box-shadow: 0 20px 42px #dfe6ee;
}

body[data-page="home"] .solution-image,
body[data-page="home"] .scenario-image {
  overflow: hidden;
  background: #f1f5f9;
}

body[data-page="home"] .solution-image {
  aspect-ratio: 4 / 3;
}

body[data-page="home"] .solution-image img,
body[data-page="home"] .scenario-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 180ms ease;
}

body[data-page="home"] .primary-solution-card:hover img,
body[data-page="home"] .scenario-card:hover img {
  transform: scale(1.03);
}

body[data-page="home"] .solution-content {
  display: flex;
  min-height: 318px;
  flex-direction: column;
  padding: 28px;
}

body[data-page="home"] .solution-content h3 {
  color: #0f172a;
  font-size: 24px;
}

body[data-page="home"] .solution-content p {
  color: #475569;
  min-height: 52px;
}

body[data-page="home"] .tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

body[data-page="home"] .tag-row span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  color: #334155;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  font-size: 12px;
  font-weight: 700;
}

body[data-page="home"] .primary-solution-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 42px;
  margin-top: 22px;
  padding: 0 15px;
  color: #ffffff;
  border-radius: 5px;
  background: #c89449;
  font-size: 14px;
}

body[data-page="home"] .primary-solution-card:hover strong {
  background: #b78332;
}

body[data-page="home"] .secondary-capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1320px;
  margin: 22px auto 0;
}

body[data-page="home"] .capability-card {
  display: grid;
  min-height: 150px;
  align-content: start;
  padding: 26px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
}

body[data-page="home"] .capability-card h3 {
  color: #0f172a;
}

body[data-page="home"] .capability-card p {
  color: #475569;
}

body[data-page="home"] .capability-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #8a5d24;
  font-size: 14px;
}

body[data-page="home"] .how-section {
  padding-top: 48px;
  padding-bottom: 54px;
}

body[data-page="home"] .process-row {
  gap: 22px;
}

body[data-page="home"] .process-step {
  grid-template-columns: 86px 1fr;
  gap: 16px;
  min-height: 128px;
}

body[data-page="home"] .process-icon {
  width: 82px;
  height: 82px;
}

body[data-page="home"] .process-icon svg {
  width: 40px;
  height: 40px;
}

body[data-page="home"] .process-step > span {
  top: 7px;
  left: 82px;
}

body[data-page="home"] .process-step:not(:last-child)::after {
  right: -15px;
}

body[data-page="home"] .process-step p {
  max-width: 230px;
}

body[data-page="home"] .scenarios-section {
  padding-top: clamp(44px, 5.2vw, 72px);
  padding-bottom: clamp(58px, 6.5vw, 88px);
  text-align: center;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

body[data-page="home"] .scenarios-section h2 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  font-size: clamp(40px, 4.1vw, 58px);
  line-height: 1.04;
  text-align: center;
}

body[data-page="home"] .scenarios-section h2 span {
  display: block;
}

body[data-page="home"] .scenarios-section .section-intro {
  max-width: 720px;
  margin: -8px auto 0;
  text-align: center;
}

body[data-page="home"] .section-intro {
  max-width: 760px;
  margin: -14px auto 30px;
  color: #475569;
  text-align: center;
}

body[data-page="home"] .scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1320px;
  margin: 0 auto;
}

body[data-page="home"] .scenario-card {
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px #edf2f7;
}

body[data-page="home"] .scenario-image {
  aspect-ratio: 16 / 9;
}

body[data-page="home"] .scenario-card > div:last-child {
  padding: 24px;
}

body[data-page="home"] .scenario-card h3 {
  color: #0f172a;
}

body[data-page="home"] .scenario-card p {
  color: #475569;
}

body[data-page="home"] .why-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

body[data-page="home"] .why-copy .section-kicker {
  text-align: left;
}

body[data-page="home"] .why-copy h2 {
  color: #0f172a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.06;
}

body[data-page="home"] .why-copy p {
  color: #475569;
}

body[data-page="home"] .why-section .clarity-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body[data-page="home"] .why-section .clarity-list article {
  min-height: 156px;
  padding: 24px;
}

body[data-page="home"] .deal-modern-section {
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
}

@media (max-width: 1180px) {
  body[data-page="home"] .primary-solutions-grid,
  body[data-page="home"] .scenario-grid,
  body[data-page="home"] .why-section {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .process-step p {
    max-width: none;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .secondary-capability-grid,
  body[data-page="home"] .why-section .clarity-list {
    grid-template-columns: 1fr;
  }
}

/* Homepage reference-mockup pass: dark hero, white solutions, horizontal process. */
body[data-page="home"] {
  color: #111827;
  background: #ffffff;
}

body[data-page="home"] .site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 86px;
  padding: 14px clamp(28px, 5vw, 88px);
  color: #ffffff;
  background: #061522;
  border-bottom: 1px solid #172838;
  box-shadow: none;
}

body[data-page="home"] .brand {
  gap: 14px;
}

body[data-page="home"] .brand-mark-image {
  width: 72px;
  height: 54px;
  padding: 0;
  border: 0;
  background: none;
}

body[data-page="home"] .brand-mark-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body[data-page="home"] .brand-text strong {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 0.95;
  letter-spacing: 0;
}

body[data-page="home"] .brand-text small {
  margin-top: 9px;
  color: #d6a65c;
  font-size: 12px;
  letter-spacing: 0.04em;
}

body[data-page="home"] .nav {
  gap: clamp(22px, 3vw, 42px);
  color: #f4f7fa;
  font-size: 14px;
  font-weight: 700;
}

body[data-page="home"] .nav a {
  border-bottom-color: #061522;
}

body[data-page="home"] .nav a:hover,
body[data-page="home"] .nav a.active {
  color: #ffffff;
  border-bottom-color: #c7974e;
}

body[data-page="home"] .header-cta,
body[data-page="home"] .button.primary {
  min-height: 48px;
  padding: 0 24px;
  color: #ffffff;
  border-color: #d4a760;
  border-radius: 6px;
  background: #c89449;
}

body[data-page="home"] .button.secondary-dark {
  min-height: 48px;
  padding: 0 24px;
  color: #ffffff;
  border-color: #b88944;
  border-radius: 6px;
  background: #0b1b2a;
}

body[data-page="home"] .home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  align-items: center;
  min-height: 510px;
  padding: 42px clamp(32px, 5vw, 92px) 62px;
  overflow: hidden;
  color: #ffffff;
  background: #061522;
  border-bottom: 0;
}

body[data-page="home"] .home-hero::after {
  display: block;
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #061522 0%, #061522 32%, #06152290 55%, #06152200 82%),
    linear-gradient(0deg, #061522 0%, #06152200 26%);
}

body[data-page="home"] .hero-copy {
  position: relative;
  z-index: 3;
  max-width: 820px;
}

body[data-page="home"] .hero-copy .eyebrow {
  display: none;
}

body[data-page="home"] h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 5.3vw, 74px);
  line-height: 1.04;
  letter-spacing: 0;
}

body[data-page="home"] h1 span {
  display: inline;
}

body[data-page="home"] .hero-subtitle {
  max-width: 600px;
  margin-bottom: 18px;
  color: #e5ebf2;
  font-size: 18px;
  line-height: 1.56;
}

body[data-page="home"] .hero-statement {
  position: relative;
  max-width: 570px;
  padding-top: 24px;
  color: #d3a15a;
  font-size: 15px;
  font-weight: 700;
}

body[data-page="home"] .hero-statement::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 62px;
  height: 4px;
  content: "";
  border-radius: 99px;
  background: #d3a15a;
}

body[data-page="home"] .hero-actions {
  margin-top: 30px;
  gap: 24px;
}

body[data-page="home"] .hero-image-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
}

body[data-page="home"] .hero-image-visual::after {
  display: none;
}

body[data-page="home"] .hero-image-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

body[data-page="home"] .asset-control-panel {
  display: none;
}

body[data-page="home"] .home-section {
  padding: 58px clamp(32px, 5vw, 92px);
}

body[data-page="home"] .section-kicker,
body[data-page="home"] .section-heading .eyebrow {
  margin: 0 0 8px;
  color: #b98535;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

body[data-page="home"] .solutions-showcase {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

body[data-page="home"] .solutions-showcase h2,
body[data-page="home"] .how-section h2 {
  margin: 0 auto 28px;
  color: #111827;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.15;
  text-align: center;
}

body[data-page="home"] .solution-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
  max-width: 1460px;
  margin: 0 auto;
}

body[data-page="home"] .solution-card {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 18px;
  min-height: 150px;
  padding: 26px;
  border: 1px solid #d9dee5;
  border-radius: 8px;
  background: #ffffff;
}

body[data-page="home"] .solution-icon {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: #b98535;
}

body[data-page="home"] .solution-icon svg {
  width: 68px;
  height: 68px;
  stroke-width: 1.5;
}

body[data-page="home"] .solution-card h3 {
  margin-bottom: 7px;
  color: #111827;
  font-size: 19px;
}

body[data-page="home"] .solution-card p {
  margin-bottom: 10px;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.45;
}

body[data-page="home"] .solution-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b98535;
  font-size: 14px;
  font-weight: 700;
}

body[data-page="home"] .how-section {
  background: #fbfbfa;
  border-bottom: 1px solid #e5e7eb;
}

body[data-page="home"] .process-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
  max-width: 1460px;
  margin: 0 auto;
}

body[data-page="home"] .process-step {
  position: relative;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 22px;
  align-items: center;
}

body[data-page="home"] .process-step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -28px;
  width: 18px;
  height: 18px;
  content: "";
  border-top: 1px solid #9ca3af;
  border-right: 1px solid #9ca3af;
  transform: translateY(-50%) rotate(45deg);
}

body[data-page="home"] .process-icon {
  display: grid;
  width: 104px;
  height: 104px;
  place-items: center;
  color: #b98535;
  border: 1px solid #d9dee5;
  border-radius: 50%;
  background: #ffffff;
}

body[data-page="home"] .process-icon svg {
  width: 52px;
  height: 52px;
  stroke-width: 1.5;
}

body[data-page="home"] .process-step > span {
  position: absolute;
  top: 12px;
  left: 112px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #ffffff;
  border-radius: 50%;
  background: #b98535;
  font-size: 12px;
  font-weight: 700;
}

body[data-page="home"] .process-step h3 {
  margin-bottom: 8px;
  color: #111827;
  font-size: 16px;
}

body[data-page="home"] .process-step p {
  color: #4b5563;
  font-size: 14px;
  line-height: 1.45;
}

body[data-page="home"] .why-section,
body[data-page="home"] .deal-modern-section,
body[data-page="home"] .funding-modern-section {
  background: #ffffff;
}

body[data-page="home"] .finance-modern-section,
body[data-page="home"] .risk-modern-section {
  background: #061522;
}

body[data-page="home"] .section-heading {
  max-width: 960px;
  margin: 0 auto 30px;
  text-align: center;
}

body[data-page="home"] .section-heading h2 {
  color: inherit;
}

body[data-page="home"] .why-section .section-heading h2,
body[data-page="home"] .deal-modern-section .section-heading h2,
body[data-page="home"] .funding-modern-section .section-heading h2,
body[data-page="home"] .final-modern-cta h2 {
  color: #111827;
}

body[data-page="home"] .clarity-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

body[data-page="home"] .clarity-list article,
body[data-page="home"] .deal-steps div {
  border: 1px solid #d9dee5;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: none;
}

body[data-page="home"] .modern-note {
  max-width: 840px;
  margin: 0 auto 28px;
  border-left-color: #b98535;
  background: #fbf3e6;
}

body[data-page="home"] .final-modern-cta {
  background: #ffffff;
  border-top: 1px solid #e5e7eb;
}

body[data-page="home"] .site-footer {
  background: #061522;
}

@media (max-width: 1180px) {
  body[data-page="home"] .solution-card-grid,
  body[data-page="home"] .process-row,
  body[data-page="home"] .clarity-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .process-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .home-hero {
    min-height: 660px;
    padding-top: 64px;
  }

  body[data-page="home"] h1 {
    font-size: 42px;
  }

  body[data-page="home"] .solution-card-grid,
  body[data-page="home"] .process-row,
  body[data-page="home"] .clarity-list {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .solution-card,
  body[data-page="home"] .process-step {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .process-step > span {
    position: static;
  }
}

body[data-page="home"] {
  color: #0f172a;
  background: #ffffff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body[data-page="home"] h1,
body[data-page="home"] h2 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body[data-page="home"] h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  font-weight: 600;
}

body[data-page="home"] h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 600;
}

body[data-page="home"] h3 {
  font-size: 18px;
  font-weight: 600;
}

body[data-page="home"] p {
  color: #64748b;
}

body[data-page="home"] .site-header {
  color: #0f172a;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: none;
}

body[data-page="home"] .brand-mark {
  color: #0ea5e9;
  border-color: #bae6fd;
  background: #f0f9ff;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

body[data-page="home"] .brand-text strong,
body[data-page="home"] .footer-brand strong {
  color: #0f172a;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

body[data-page="home"] .brand-text small,
body[data-page="home"] .footer-brand small {
  color: #64748b;
}

body[data-page="home"] .nav {
  color: #475569;
}

body[data-page="home"] .nav a {
  border-bottom-color: #ffffff;
}

body[data-page="home"] .nav a:hover,
body[data-page="home"] .nav a.active {
  color: #0f172a;
  border-bottom-color: #0ea5e9;
}

body[data-page="home"] .header-cta,
body[data-page="home"] .button.primary {
  color: #ffffff;
  border-color: #0ea5e9;
  background: #0ea5e9;
  box-shadow: none;
}

body[data-page="home"] .button.secondary {
  color: #0f172a;
  border-color: #cbd5e1;
  background: #ffffff;
}

body[data-page="home"] .nav-toggle {
  color: #0f172a;
  border-color: #e2e8f0;
  background: #ffffff;
}

body[data-page="home"] .home-hero {
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.82fr);
  min-height: 690px;
  color: #0f172a;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

body[data-page="home"] .eyebrow {
  color: #0284c7;
  font-size: 12px;
  font-weight: 700;
}

body[data-page="home"] .hero-subtitle {
  max-width: 720px;
  color: #475569;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

body[data-page="home"] .workflow-visual {
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px #e2e8f0;
}

body[data-page="home"] .workflow-visual-header {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-bottom: 1px solid #e2e8f0;
  background: #f8fafc;
}

body[data-page="home"] .workflow-visual-header span {
  color: #0284c7;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

body[data-page="home"] .workflow-visual-header strong {
  color: #0f172a;
  font-size: 13px;
}

body[data-page="home"] .workflow-steps {
  display: grid;
  gap: 0;
  padding: 10px;
}

body[data-page="home"] .workflow-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px;
  border-bottom: 1px solid #e2e8f0;
}

body[data-page="home"] .workflow-step:last-child {
  border-bottom: 0;
}

body[data-page="home"] .workflow-step > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: #0369a1;
  border-radius: 8px;
  background: #e0f2fe;
  font-size: 13px;
  font-weight: 700;
}

body[data-page="home"] .workflow-step h3 {
  margin-bottom: 4px;
}

body[data-page="home"] .workflow-step p {
  margin: 0;
}

body[data-page="home"] .home-section {
  padding: clamp(70px, 8vw, 112px) clamp(20px, 5vw, 76px);
}

body[data-page="home"] .section-heading {
  max-width: 780px;
}

body[data-page="home"] .home-card-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

body[data-page="home"] .home-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="home"] .home-card-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="home"] .modern-card {
  min-height: 190px;
  padding: 28px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 36px #eef2f7;
}

body[data-page="home"] .modern-card.compact {
  min-height: 120px;
}

body[data-page="home"] .core-section,
body[data-page="home"] .who-section,
body[data-page="home"] .deal-modern-section,
body[data-page="home"] .funding-modern-section {
  background: #f8fafc;
}

body[data-page="home"] .why-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 86px);
  background: #ffffff;
}

body[data-page="home"] .clarity-list {
  display: grid;
  gap: 16px;
}

body[data-page="home"] .clarity-list article {
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
}

body[data-page="home"] .finance-modern-section,
body[data-page="home"] .risk-modern-section {
  color: #ffffff;
  background: #0f172a;
}

body[data-page="home"] .finance-modern-section p,
body[data-page="home"] .risk-modern-section p {
  color: #cbd5e1;
}

body[data-page="home"] .finance-modern-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

body[data-page="home"] .finance-modern-card {
  color: #ffffff;
  border-color: #334155;
  background: #111c2e;
  box-shadow: none;
}

body[data-page="home"] .finance-modern-card p {
  color: #cbd5e1;
}

body[data-page="home"] .finance-modern-card .check-list {
  grid-template-columns: 1fr;
}

body[data-page="home"] .finance-modern-card .check-list li,
body[data-page="home"] .risk-modern-section .check-list li {
  color: #e2e8f0;
  border-color: #334155;
  background: #111c2e;
}

body[data-page="home"] .finance-modern-card .check-list svg,
body[data-page="home"] .risk-modern-section .check-list svg {
  color: #38bdf8;
}

body[data-page="home"] .deal-modern-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(34px, 6vw, 86px);
}

body[data-page="home"] .modern-note {
  padding: 16px 18px;
  border-left: 4px solid #0ea5e9;
  background: #e0f2fe;
  color: #075985;
}

body[data-page="home"] .deal-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

body[data-page="home"] .deal-steps div {
  min-height: 150px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
}

body[data-page="home"] .deal-steps span {
  display: block;
  margin-bottom: 20px;
  color: #0284c7;
  font-weight: 700;
}

body[data-page="home"] .deal-steps strong {
  color: #0f172a;
  font-size: 18px;
}

body[data-page="home"] .risk-modern-section .check-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="home"] .funding-modern-section {
  border-bottom: 1px solid #e2e8f0;
}

body[data-page="home"] .final-modern-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: #ffffff;
}

body[data-page="home"] .final-modern-cta p {
  max-width: 720px;
}

body[data-page="home"] .site-footer {
  color: #0f172a;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

body[data-page="home"] .footer-grid {
  border-bottom: 1px solid #e2e8f0;
}

body[data-page="home"] .footer-grid h3 {
  color: #0f172a;
}

body[data-page="home"] .footer-grid a,
body[data-page="home"] .footer-grid span {
  color: #64748b;
}

body[data-page="home"] .footer-grid a:hover {
  color: #0ea5e9;
}

body[data-page="home"] .footer-bottom span,
body[data-page="home"] .footer-bottom p {
  color: #64748b;
}

@media (max-width: 1040px) {
  body[data-page="home"] .home-hero,
  body[data-page="home"] .why-section,
  body[data-page="home"] .deal-modern-section,
  body[data-page="home"] .final-modern-cta {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-card-grid.three,
  body[data-page="home"] .home-card-grid.four,
  body[data-page="home"] .finance-modern-grid,
  body[data-page="home"] .risk-modern-section .check-list,
  body[data-page="home"] .deal-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .home-card-grid.three,
  body[data-page="home"] .home-card-grid.four,
  body[data-page="home"] .finance-modern-grid,
  body[data-page="home"] .risk-modern-section .check-list,
  body[data-page="home"] .deal-steps,
  body[data-page="home"] .workflow-step {
    grid-template-columns: 1fr;
  }
}

body[data-page="home"] {
  color: #111820;
  background: #f5f2ec;
}

body[data-page="home"] h1,
body[data-page="home"] h2 {
  font-family: Georgia, "Times New Roman", serif;
}

body[data-page="home"] h1 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(42px, 5.7vw, 74px);
  line-height: 1.03;
  font-weight: 700;
}

body[data-page="home"] h1 span {
  display: block;
}

body[data-page="home"] h2 {
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: 1.04;
}

body[data-page="home"] .site-header {
  color: #ffffff;
  background: #07121d;
  border-bottom: 1px solid #243548;
}

body[data-page="home"] .brand-mark {
  color: #d0a66a;
  border-color: #2a3a4d;
  background: #f6f1e7;
}

body[data-page="home"] .brand-mark-image {
  width: 58px;
  height: 42px;
  overflow: hidden;
  padding: 4px;
}

body[data-page="home"] .brand-mark-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body[data-page="home"] .brand-text strong,
body[data-page="home"] .footer-brand strong {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

body[data-page="home"] .brand-text small,
body[data-page="home"] .footer-brand small {
  color: #aeb8c2;
}

body[data-page="home"] .nav {
  color: #d8dee6;
}

body[data-page="home"] .nav a {
  border-bottom-color: #07121d;
}

body[data-page="home"] .nav a:hover,
body[data-page="home"] .nav a.active {
  color: #ffffff;
  border-bottom-color: #c49758;
}

body[data-page="home"] .header-cta,
body[data-page="home"] .button.primary {
  color: #111820;
  border-color: #c49758;
  background: #c49758;
}

body[data-page="home"] .button.secondary,
body[data-page="home"] .button.secondary-dark {
  color: #ffffff;
  border-color: #596a7a;
  background: #132235;
}

body[data-page="home"] .home-hero {
  position: relative;
  display: grid;
  min-height: 820px;
  padding: clamp(86px, 9vw, 138px) clamp(20px, 5vw, 76px) clamp(110px, 12vw, 170px);
  overflow: hidden;
  color: #ffffff;
  background: #05090d;
  border-bottom: 1px solid #243548;
}

body[data-page="home"] .home-hero::after {
  display: none;
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #05090d 0%, #080d13 28%, #080d1300 70%),
    linear-gradient(0deg, #05090d 0%, #05090d00 44%);
}

body[data-page="home"] .hero-copy {
  position: relative;
  z-index: 4;
  align-self: center;
  max-width: 780px;
}

body[data-page="home"] .eyebrow {
  color: #c49758;
}

body[data-page="home"] .hero-subtitle {
  max-width: 650px;
  color: #d3d8df;
  font-size: clamp(18px, 2vw, 22px);
}

body[data-page="home"] .hero-statement {
  margin: 0;
  color: #c49758;
  font-weight: 700;
}

body[data-page="home"] .hero-image-visual {
  position: absolute;
  inset: 0;
  z-index: 1;
}

body[data-page="home"] .hero-image-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #05090d 0%, #080d13 31%, #080d1300 72%),
    linear-gradient(0deg, #05090d 0%, #05090d00 42%);
}

body[data-page="home"] .hero-image-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body[data-page="home"] .asset-control-panel {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 5vw, 76px);
  bottom: clamp(108px, 12vw, 172px);
  width: min(430px, 36vw);
  border: 1px solid #2c3d50;
  border-radius: 8px;
  background: #0d1b2a;
  box-shadow: 0 22px 52px #02070c;
}

body[data-page="home"] .asset-panel-header {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  border-bottom: 1px solid #2c3d50;
  background: #111f30;
}

body[data-page="home"] .asset-panel-header span {
  display: grid;
  height: 46px;
  place-items: center;
  overflow: hidden;
  border: 1px solid #35485d;
  border-radius: 6px;
  background: #f6f1e7;
}

body[data-page="home"] .asset-panel-header img {
  width: 92%;
  height: 92%;
  object-fit: contain;
}

body[data-page="home"] .asset-panel-header strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
}

body[data-page="home"] .asset-panel-header small {
  display: block;
  margin-top: 3px;
  color: #9ca9b8;
  font-size: 12px;
}

body[data-page="home"] .asset-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="home"] .asset-panel-grid div {
  min-height: 94px;
  padding: 18px;
  border-right: 1px solid #2c3d50;
  border-bottom: 1px solid #2c3d50;
}

body[data-page="home"] .asset-panel-grid div:nth-child(2n) {
  border-right: 0;
}

body[data-page="home"] .asset-panel-grid div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

body[data-page="home"] .asset-panel-grid span {
  display: block;
  margin-bottom: 9px;
  color: #c49758;
  font-size: 11px;
  font-weight: 700;
}

body[data-page="home"] .asset-panel-grid strong {
  display: block;
  color: #dce3ea;
  font-size: 14px;
}

body[data-page="home"] .core-section {
  position: relative;
  z-index: 3;
  margin-top: -94px;
  padding-top: 0;
  background: #07121d;
}

body[data-page="home"] .core-section .section-heading {
  display: none;
}

body[data-page="home"] .home-card-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="home"] .modern-card {
  border: 1px solid #26374a;
  border-radius: 8px;
  background: #101d2b;
  box-shadow: 0 22px 50px #02070c;
}

body[data-page="home"] .modern-card h3 {
  color: #ffffff;
}

body[data-page="home"] .modern-card p {
  color: #b7c1cc;
}

body[data-page="home"] .why-section,
body[data-page="home"] .who-section,
body[data-page="home"] .deal-modern-section,
body[data-page="home"] .funding-modern-section {
  background: #fbfaf6;
}

body[data-page="home"] .why-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 86px);
  border-bottom: 1px solid #ddd8ce;
}

body[data-page="home"] .why-section .section-heading {
  max-width: 660px;
}

body[data-page="home"] .clarity-list article {
  border: 1px solid #ddd8ce;
  background: #ffffff;
  box-shadow: none;
}

body[data-page="home"] .who-section .modern-card {
  min-height: 150px;
  border-color: #ddd8ce;
  background: #ffffff;
  box-shadow: none;
}

body[data-page="home"] .who-section .modern-card h3,
body[data-page="home"] .who-section .modern-card p,
body[data-page="home"] .why-section h2,
body[data-page="home"] .who-section h2,
body[data-page="home"] .deal-modern-section h2,
body[data-page="home"] .funding-modern-section h2,
body[data-page="home"] .final-modern-cta h2 {
  color: #111820;
}

body[data-page="home"] .finance-modern-section,
body[data-page="home"] .risk-modern-section {
  color: #ffffff;
  background: #07121d;
}

body[data-page="home"] .finance-modern-section .section-heading p,
body[data-page="home"] .risk-modern-section .section-heading p {
  color: #b7c1cc;
}

body[data-page="home"] .finance-modern-card {
  border-color: #26374a;
  background: #101d2b;
  box-shadow: none;
}

body[data-page="home"] .finance-modern-card .check-list li,
body[data-page="home"] .risk-modern-section .check-list li {
  color: #dce3ea;
  border-color: #26374a;
  background: #101d2b;
}

body[data-page="home"] .finance-modern-card .check-list svg,
body[data-page="home"] .risk-modern-section .check-list svg {
  color: #c49758;
}

body[data-page="home"] .modern-note {
  border-left-color: #c49758;
  color: #483821;
  background: #f3e7d2;
}

body[data-page="home"] .deal-steps div {
  border-color: #ddd8ce;
  background: #ffffff;
  box-shadow: none;
}

body[data-page="home"] .deal-steps span {
  color: #b98535;
}

body[data-page="home"] .risk-modern-section .check-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="home"] .funding-modern-section {
  border-bottom: 1px solid #ddd8ce;
}

body[data-page="home"] .final-modern-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: #111820;
  background: #ffffff;
}

body[data-page="home"] .final-modern-cta p {
  max-width: 740px;
}

body[data-page="home"] .site-footer {
  color: #ffffff;
  background: #050d17;
  border-top: 1px solid #182538;
}

body[data-page="home"] .footer-grid {
  border-bottom: 1px solid #182538;
}

body[data-page="home"] .footer-grid h3 {
  color: #c49758;
}

body[data-page="home"] .footer-grid a,
body[data-page="home"] .footer-grid span {
  color: #bac3cd;
}

body[data-page="home"] .footer-bottom span,
body[data-page="home"] .footer-bottom p {
  color: #7f8996;
}

@media (max-width: 1040px) {
  body[data-page="home"] .home-hero {
    min-height: 720px;
  }

  body[data-page="home"] .why-section,
  body[data-page="home"] .final-modern-cta {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-card-grid.three,
  body[data-page="home"] .home-card-grid.four,
  body[data-page="home"] .finance-modern-grid,
  body[data-page="home"] .risk-modern-section .check-list,
  body[data-page="home"] .deal-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .home-hero {
    min-height: 690px;
  }

  body[data-page="home"] .home-hero::after {
    background:
      linear-gradient(90deg, #05090d 0%, #080d13 44%, #080d1340 100%),
      linear-gradient(0deg, #05090d 0%, #05090d00 48%);
  }

  body[data-page="home"] h1 {
    font-size: 40px;
  }

  body[data-page="home"] .asset-control-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: 28px 20px 0;
  }

  body[data-page="home"] .hero-image-visual {
    display: grid;
    align-content: end;
  }

  body[data-page="home"] .home-card-grid.three,
  body[data-page="home"] .home-card-grid.four,
  body[data-page="home"] .finance-modern-grid,
  body[data-page="home"] .risk-modern-section .check-list,
  body[data-page="home"] .deal-steps {
    grid-template-columns: 1fr;
  }
}

/* Final homepage asset overrides: transparent crane mark and real-photo hierarchy. */
body[data-page="home"] .brand .brand-mark.brand-mark-image,
body[data-page="home"] .footer-brand .brand-mark.brand-mark-image {
  width: 62px;
  height: 44px;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body[data-page="home"] .brand .brand-mark.brand-mark-image img,
body[data-page="home"] .footer-brand .brand-mark.brand-mark-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.24));
}

body[data-page="home"] .solution-image img,
body[data-page="home"] .scenario-image img {
  filter: saturate(0.9) contrast(0.98) brightness(0.96);
}

body[data-page="home"] .scenario-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 1fr) minmax(0, 1fr);
}

body[data-page="home"] .scenario-card--sme {
  border-color: #d2b37e;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.11);
}

body[data-page="home"] .scenario-card--sme .tag-row span:first-child {
  color: #75501f;
  border-color: #e4c894;
  background: #fbf4e7;
}

@media (max-width: 1180px) {
  body[data-page="home"] .scenario-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .brand .brand-mark.brand-mark-image {
    width: 54px;
    height: 38px;
  }
}

body[data-page="home"] .workflow-step-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

body[data-page="home"] .deal-modern-section {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  align-items: center;
  gap: clamp(36px, 5vw, 72px);
}

body[data-page="home"] .deal-modern-section > div:not(.deal-copy):not(.deal-dashboard):not(.deal-pathway-panel) {
  display: none;
}

body[data-page="home"] .deal-copy .section-kicker {
  text-align: left;
}

body[data-page="home"] .deal-copy h2 {
  max-width: 560px;
  color: #111820;
}

body[data-page="home"] .deal-copy > p:not(.section-kicker):not(.modern-note) {
  max-width: 590px;
  color: #475569;
  font-size: 17px;
}

body[data-page="home"] .deal-copy .modern-note {
  max-width: 590px;
  margin: 22px 0 0;
  padding: 16px 18px;
  color: #483821;
  border-left: 4px solid #c49758;
  background: #f5ead7;
}

body[data-page="home"] .deal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

body[data-page="home"] .deal-actions .button.secondary {
  color: #111820;
  border-color: #cbd5e1;
  background: #ffffff;
}

body[data-page="home"] .deal-actions .button.secondary:hover {
  color: #8a5d24;
  border-color: #c89449;
  background: #fbf7ef;
}

body[data-page="home"] .deal-dashboard {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid #d9dee5;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.1);
}

body[data-page="home"] .deal-dashboard-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px solid #e2e8f0;
}

body[data-page="home"] .deal-dashboard-header span {
  display: block;
  margin-bottom: 5px;
  color: #9b6b2d;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="home"] .deal-dashboard-header strong {
  display: block;
  color: #0f172a;
  font-size: 22px;
}

body[data-page="home"] .deal-dashboard-header em {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: #475569;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

body[data-page="home"] .deal-status-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 22px 0;
  padding: 12px;
  border: 1px solid #e8edf3;
  border-radius: 8px;
  background: #fbfaf6;
}

body[data-page="home"] .deal-status-line span {
  position: relative;
  color: #334155;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

body[data-page="home"] .deal-status-line span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -8px;
  width: 8px;
  height: 1px;
  background: #d7c09a;
  content: "";
}

body[data-page="home"] .deal-workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

body[data-page="home"] .workflow-step-card {
  min-height: 166px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #ffffff;
}

body[data-page="home"] .workflow-step-card:hover {
  transform: translateY(-3px);
  border-color: #c89449;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.09);
}

body[data-page="home"] .workflow-step-card span {
  display: block;
  margin-bottom: 14px;
  color: #9b6b2d;
  font-size: 12px;
  font-weight: 700;
}

body[data-page="home"] .workflow-step-card h3 {
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 18px;
}

body[data-page="home"] .workflow-step-card p {
  color: #475569;
  font-size: 14px;
}

body[data-page="home"] .deal-mini-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

body[data-page="home"] .deal-mini-cards span {
  min-height: 42px;
  display: grid;
  place-items: center;
  color: #334155;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #f8fafc;
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 1180px) {
  body[data-page="home"] .deal-modern-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .deal-dashboard-header,
  body[data-page="home"] .deal-actions {
    align-items: stretch;
  }

  body[data-page="home"] .deal-dashboard-header,
  body[data-page="home"] .deal-actions,
  body[data-page="home"] .deal-status-line,
  body[data-page="home"] .deal-workflow-grid,
  body[data-page="home"] .deal-mini-cards {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .deal-dashboard-header {
    display: grid;
  }

  body[data-page="home"] .deal-status-line span {
    text-align: left;
  }

body[data-page="home"] .deal-status-line span:not(:last-child)::after {
    display: none;
  }
}

/* Homepage master polish: logo, type, radius, shadows, and contrast. */
.brand-mark-image {
  width: 62px;
  height: 44px;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand-mark-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.24));
}

.site-header {
  background: var(--navy);
}

.site-header.scrolled {
  box-shadow: 0 10px 24px rgba(2, 8, 15, 0.36);
}

body[data-page="home"] {
  background: #fafaf7;
}

body[data-page="home"] p,
body[data-page="home"] .section-intro,
body[data-page="home"] .solution-content p,
body[data-page="home"] .scenario-card p,
body[data-page="home"] .deal-copy > p:not(.section-kicker):not(.modern-note),
body[data-page="home"] .workflow-step-card p,
body[data-page="home"] .deal-status-line span,
body[data-page="home"] .deal-mini-cards span {
  color: #475569;
}

body[data-page="home"] .home-hero p {
  color: #d6dee8;
}

body[data-page="home"] .hero-statement {
  color: #d7aa64;
}

body[data-page="home"] .section-kicker,
body[data-page="home"] .scenario-cta,
body[data-page="home"] .capability-card strong,
body[data-page="home"] .deal-dashboard-header span,
body[data-page="home"] .workflow-step-card span {
  color: #8a5d24;
  font-weight: 700;
}

body[data-page="home"] .header-cta,
body[data-page="home"] .button,
body[data-page="home"] .primary-solution-card strong {
  border-radius: var(--home-button-radius);
  font-weight: 700;
}

body[data-page="home"] .header-cta,
body[data-page="home"] .button.primary,
body[data-page="home"] .primary-solution-card strong {
  border-color: #c89449;
  background: #c89449;
}

body[data-page="home"] .header-cta:hover,
body[data-page="home"] .button.primary:hover,
body[data-page="home"] .primary-solution-card:hover strong {
  border-color: #b78332;
  background: #b78332;
}

body[data-page="home"] .button.secondary,
body[data-page="home"] .button.secondary-dark {
  border-radius: var(--home-button-radius);
}

body[data-page="home"] .primary-solution-card,
body[data-page="home"] .capability-card,
body[data-page="home"] .scenario-card,
body[data-page="home"] .clarity-list article,
body[data-page="home"] .deal-dashboard,
body[data-page="home"] .workflow-step-card,
body[data-page="home"] .deal-mini-cards span,
body[data-page="home"] .modern-card,
body[data-page="home"] .finance-modern-card {
  border-radius: var(--home-card-radius);
}

body[data-page="home"] .primary-solution-card,
body[data-page="home"] .scenario-card,
body[data-page="home"] .deal-dashboard {
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1);
}

body[data-page="home"] .primary-solution-card:hover,
body[data-page="home"] .capability-card:hover,
body[data-page="home"] .scenario-card:hover,
body[data-page="home"] .clarity-list article:hover,
body[data-page="home"] .workflow-step-card:hover {
  border-color: #c89449;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.14);
}

body[data-page="home"] .deal-dashboard,
body[data-page="home"] .workflow-step-card,
body[data-page="home"] .deal-status-line,
body[data-page="home"] .deal-mini-cards span {
  border-color: #e2e8f0;
}

body[data-page="home"] .why-copy .button {
  margin-top: 24px;
}

body[data-page="home"] .risk-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 34px auto 0;
}

body[data-page="home"] .risk-card-grid article {
  min-height: 150px;
  padding: 24px;
  border: 1px solid #26374a;
  border-radius: var(--home-card-radius);
  background: #101d2b;
}

body[data-page="home"] .risk-card-grid h3 {
  color: #ffffff;
}

body[data-page="home"] .risk-card-grid p {
  color: #cbd5e1;
}

body[data-page="home"] .risk-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

/* Homepage solutions polish: cleaner heading rhythm and matched image cards. */
body[data-page="home"] .solutions-showcase {
  padding-top: clamp(48px, 5.6vw, 76px);
  padding-bottom: clamp(58px, 6.5vw, 88px);
}

body[data-page="home"] .solutions-showcase .section-kicker {
  margin-bottom: 8px;
}

body[data-page="home"] .solutions-showcase h2 {
  margin-bottom: 10px;
}

body[data-page="home"] .solutions-showcase .section-intro {
  max-width: 640px;
  margin: 0 auto 26px;
}

body[data-page="home"] .primary-solutions-grid {
  gap: 26px;
  align-items: stretch;
}

body[data-page="home"] .primary-solution-card {
  grid-template-rows: auto 1fr;
  height: 100%;
}

body[data-page="home"] .solution-image {
  aspect-ratio: 4 / 3;
}

body[data-page="home"] .solution-image img {
  object-position: center center;
}

body[data-page="home"] .primary-solution-card:nth-child(2) .solution-image img {
  object-position: center center;
}

body[data-page="home"] .solution-content {
  display: flex;
  min-height: 248px;
  flex-direction: column;
  padding: 26px;
}

body[data-page="home"] .solution-content h3 {
  margin-bottom: 10px;
}

body[data-page="home"] .solution-content p {
  margin-bottom: 0;
}

body[data-page="home"] .solution-content .tag-row {
  margin-top: 16px;
}

body[data-page="home"] .primary-solution-card strong {
  margin-top: auto;
}

/* Homepage product-pathway simplification. */
body[data-page="home"] .deal-modern-section {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 5vw, 68px);
  padding-top: clamp(62px, 7vw, 92px);
  padding-bottom: clamp(62px, 7vw, 92px);
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 12%, rgba(200, 148, 73, 0.18), transparent 28%),
    linear-gradient(135deg, #061522 0%, #0b1b2a 58%, #07111f 100%);
  border-top: 1px solid #1f3145;
  border-bottom: 1px solid #1f3145;
}

body[data-page="home"] .deal-copy .section-kicker {
  color: #c89449;
}

body[data-page="home"] .deal-copy h2 {
  max-width: 640px;
  color: #ffffff;
}

body[data-page="home"] .deal-copy > p:not(.section-kicker):not(.modern-note) {
  max-width: 680px;
  color: #cbd5e1;
}

body[data-page="home"] .deal-copy .modern-note {
  max-width: 640px;
  margin-top: 20px;
  color: #f1e0c1;
  border-left-color: #c89449;
  background: rgba(200, 148, 73, 0.12);
}

body[data-page="home"] .deal-actions .button.secondary-dark {
  color: #ffffff;
  border-color: #41536a;
  background: transparent;
}

body[data-page="home"] .deal-actions .button.secondary-dark:hover {
  color: #f1c47f;
  border-color: #c89449;
  background: rgba(255, 255, 255, 0.04);
}

body[data-page="home"] .deal-pathway-panel {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid #2a3d52;
  border-radius: var(--home-card-radius);
  background: #0b1b2a;
  box-shadow: 0 22px 48px rgba(2, 8, 15, 0.26);
}

body[data-page="home"] .deal-pathway-steps {
  display: grid;
  gap: 14px;
}

body[data-page="home"] .deal-pathway-steps article {
  display: grid;
  grid-template-columns: 54px minmax(118px, 150px) minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 88px;
  padding: 18px 20px;
  border: 1px solid #2a3d52;
  border-radius: 10px;
  background: #081827;
}

body[data-page="home"] .deal-pathway-steps span {
  color: #c89449;
  font-size: 13px;
  font-weight: 800;
}

body[data-page="home"] .deal-pathway-steps h3 {
  color: #ffffff;
  font-size: 17px;
}

body[data-page="home"] .deal-pathway-steps p {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.45;
}

body[data-page="home"] .risk-modern-section {
  color: #0f172a;
  background: #fafaf7;
  border-bottom: 1px solid #e2e8f0;
}

body[data-page="home"] .risk-modern-section .section-heading h2 {
  max-width: 860px;
  color: #0f172a;
}

body[data-page="home"] .risk-modern-section .section-heading p {
  max-width: 760px;
  color: #475569;
}

body[data-page="home"] .risk-card-grid article {
  min-height: 132px;
  border-color: #e2e8f0;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

body[data-page="home"] .risk-card-grid h3 {
  color: #0f172a;
}

body[data-page="home"] .risk-card-grid p {
  color: #475569;
}

@media (max-width: 1100px) {
  body[data-page="home"] .deal-modern-section {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .deal-pathway-panel {
    max-width: 720px;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .deal-pathway-steps article,
  body[data-page="home"] .risk-card-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .deal-pathway-steps article {
    gap: 6px;
  }
}

/* Homepage pathway polish: compact Deal Machine-aligned scenario steps. */
body[data-page="home"] .how-section {
  padding-top: clamp(38px, 4.5vw, 58px);
  padding-bottom: clamp(40px, 4.8vw, 62px);
  background: #fafaf7;
}

body[data-page="home"] .how-section .section-kicker {
  margin-bottom: 8px;
  text-align: center;
}

body[data-page="home"] .how-section h2 {
  margin: 0 auto 10px;
  color: #0f172a;
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
  text-align: center;
}

body[data-page="home"] .how-section .section-intro {
  max-width: 780px;
  margin: 0 auto 24px;
  color: #475569;
  text-align: center;
}

body[data-page="home"] .process-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1320px;
  margin: 0 auto;
}

body[data-page="home"] .process-step {
  position: relative;
  display: block;
  min-height: 178px;
  padding: 22px;
  text-align: left;
  border: 1px solid #e2e8f0;
  border-radius: var(--home-card-radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body[data-page="home"] .process-step:hover {
  transform: translateY(-3px);
  border-color: #c89449;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

body[data-page="home"] .process-step:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -15px;
  z-index: 2;
  width: 10px;
  height: 10px;
  content: "";
  border-top: 1px solid #b7c0cc;
  border-right: 1px solid #b7c0cc;
  transform: translateY(-50%) rotate(45deg);
}

body[data-page="home"] .process-step > span {
  position: static;
  display: block;
  width: auto;
  height: auto;
  margin: 0 0 18px;
  color: #8a5d24;
  border-radius: 0;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

body[data-page="home"] .process-step h3 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 18px;
  line-height: 1.2;
}

body[data-page="home"] .process-step p {
  max-width: none;
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  body[data-page="home"] .process-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .process-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .how-section {
    padding-top: 34px;
    padding-bottom: 40px;
  }

  body[data-page="home"] .how-section .section-intro {
    margin-bottom: 18px;
    text-align: left;
  }

  body[data-page="home"] .how-section .section-kicker,
  body[data-page="home"] .how-section h2 {
    text-align: left;
  }

  body[data-page="home"] .process-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body[data-page="home"] .process-step {
    min-height: auto;
    padding: 18px;
  }

  body[data-page="home"] .process-step > span {
    margin-bottom: 10px;
  }
}

@media (max-width: 1100px) {
  .brand-mark-image {
    width: 56px;
    height: 40px;
  }
}

@media (max-width: 900px) {
  body[data-page="home"] .risk-card-grid {
    grid-template-columns: 1fr;
  }
}

/* Homepage platform pathway layer. */
body[data-page="home"] .platform-pathway-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1320px;
  margin: 24px auto 0;
}

body[data-page="home"] .platform-pathway-card {
  display: flex;
  min-height: 184px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px 28px;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(15, 32, 62, 0.1);
  border-radius: var(--home-card-radius);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

body[data-page="home"] .platform-pathway-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 148, 73, 0.72);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.11);
}

body[data-page="home"] .platform-pathway-card h3 {
  margin-bottom: 10px;
  color: #0f172a;
  font-size: 22px;
}

body[data-page="home"] .platform-pathway-card p {
  max-width: 600px;
  margin: 0;
  color: #475569;
}

body[data-page="home"] .platform-pathway-card .tag-row {
  margin-top: 16px;
}

body[data-page="home"] .platform-pathway-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 18px;
  color: #8a5d24;
  font-size: 14px;
}

body[data-page="home"] .platform-pathway-card:hover strong svg {
  transform: translateX(4px);
}

body[data-page="home"] .deal-modern-section {
  padding-top: clamp(54px, 6vw, 78px);
  padding-bottom: clamp(54px, 6vw, 78px);
}

body[data-page="home"] .deal-pathway-panel {
  box-shadow: 0 18px 40px rgba(2, 8, 15, 0.22);
}

body[data-page="home"] .risk-modern-section {
  padding-top: clamp(54px, 6vw, 76px);
  padding-bottom: clamp(54px, 6vw, 76px);
}

body[data-page="home"] .funding-modern-section {
  padding-top: clamp(50px, 5.5vw, 72px);
  padding-bottom: clamp(50px, 5.5vw, 72px);
  background: #fbfaf6;
  border-bottom: 1px solid #ddd8ce;
}

body[data-page="home"] .funding-home-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 58px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid #ddd8ce;
  border-radius: var(--home-card-radius);
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

body[data-page="home"] .funding-home-card h2 {
  max-width: 760px;
  margin-bottom: 14px;
  color: #111820;
  font-family: var(--serif);
  font-size: clamp(30px, 3.4vw, 44px);
  line-height: 1.06;
}

body[data-page="home"] .funding-home-card p:not(.section-kicker) {
  max-width: 820px;
  margin: 0;
  color: #475569;
}

body[data-page="home"] .funding-home-card .button {
  white-space: nowrap;
}

body[data-page="home"] .home-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  padding-top: clamp(52px, 6vw, 72px);
  padding-bottom: clamp(52px, 6vw, 72px);
  color: #ffffff;
  background: #061522;
  border-top: 1px solid #1b2d42;
}

body[data-page="home"] .home-final-cta h2 {
  max-width: 760px;
  margin-bottom: 12px;
  color: #ffffff;
  font-family: var(--serif);
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.05;
}

body[data-page="home"] .home-final-cta p {
  max-width: 760px;
  margin: 0;
  color: #cbd5e1;
}

body[data-page="home"] .home-final-cta .button {
  white-space: nowrap;
}

@media (max-width: 900px) {
  body[data-page="home"] .platform-pathway-grid,
  body[data-page="home"] .funding-home-card,
  body[data-page="home"] .home-final-cta {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .funding-home-card .button,
  body[data-page="home"] .home-final-cta .button {
    width: fit-content;
  }
}

@media (max-width: 640px) {
  body[data-page="home"] .platform-pathway-card {
    min-height: auto;
    padding: 22px;
  }

  body[data-page="home"] .funding-home-card .button,
  body[data-page="home"] .home-final-cta .button {
    width: 100%;
  }
}

/* First internal page round: vehicle, equipment, brokers, Deal Machine. */
.inner-page {
  background: #fafaf7;
}

.inner-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.76fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
  min-height: 610px;
  padding: clamp(70px, 8vw, 118px) clamp(20px, 5vw, 76px);
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 18%, rgba(200, 148, 73, 0.16), transparent 30%),
    linear-gradient(135deg, #061522 0%, #0b1b2a 58%, #07111f 100%);
  border-bottom: 1px solid #243548;
}

.inner-hero-copy {
  max-width: 760px;
}

.inner-hero h1 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1.02;
}

.inner-hero .hero-subtitle {
  max-width: 650px;
  color: #edf2f7;
  font-size: clamp(19px, 2vw, 24px);
}

.inner-hero p:not(.eyebrow):not(.hero-subtitle):not(.inner-note) {
  max-width: 660px;
  color: #cbd5e1;
  font-size: 17px;
}

.inner-note {
  max-width: 660px;
  padding: 16px 18px;
  color: #f7ead7;
  border-left: 4px solid #c89449;
  background: rgba(200, 148, 73, 0.12);
}

.inner-hero-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  max-height: 430px;
  min-height: 0;
  margin: 0;
  border: 1px solid #2c3d50;
  border-radius: var(--home-card-radius);
  background: #0b1b2a;
  box-shadow: 0 22px 48px rgba(2, 8, 15, 0.34);
}

.inner-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.98) brightness(0.86);
}

.inner-section {
  padding: clamp(64px, 7vw, 104px) clamp(20px, 5vw, 76px);
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
}

.inner-section:nth-of-type(odd) {
  background: #fafaf7;
}

.inner-section--dark {
  color: #ffffff;
  background: #061522;
  border-bottom-color: #243548;
}

.inner-section-heading {
  max-width: 940px;
  margin-bottom: 30px;
}

.inner-section-heading h2 {
  color: #0f172a;
  font-size: clamp(34px, 4.4vw, 58px);
}

.inner-section-heading > p:not(.section-kicker) {
  max-width: 740px;
  margin-top: 12px;
  color: #475569;
  font-size: 18px;
  line-height: 1.65;
}

.inner-section-heading .policy-note {
  max-width: 680px;
  margin-top: 10px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
}

.section-note {
  max-width: 900px;
  margin: 22px 0 0;
  padding: 16px 18px;
  color: #334155;
  border: 1px solid #e2e8f0;
  border-radius: var(--home-card-radius);
  background: #fbfaf6;
  font-size: 15px;
  line-height: 1.6;
}

.inner-section-actions {
  margin-top: 24px;
}

.inner-section--dark .inner-section-heading h2 {
  color: #ffffff;
}

.inner-section--dark .inner-section-heading > p:not(.section-kicker),
.inner-section--control .inner-section-heading > p:not(.section-kicker),
.inner-section--process .inner-section-heading > p:not(.section-kicker),
.inner-section--workflow .inner-section-heading > p:not(.section-kicker) {
  color: #c9d3df;
}

.inner-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1320px;
}

.inner-card {
  height: 100%;
  min-height: 168px;
  padding: 24px;
  border: 1px solid #e2e8f0;
  border-radius: var(--home-card-radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.inner-card:hover {
  transform: translateY(-4px);
  border-color: #c89449;
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.inner-card h3,
.inner-step h3,
.workflow-step-card h3 {
  color: #0f172a;
}

.inner-card p,
.inner-step p {
  color: #475569;
}

.inner-checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 1320px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.inner-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  min-height: 58px;
  padding: 16px;
  color: #e2e8f0;
  border: 1px solid #26374a;
  border-radius: var(--home-card-radius);
  background: #101d2b;
  font-weight: 700;
}

.inner-checklist svg {
  flex: 0 0 auto;
  color: #c89449;
}

.inner-section:not(.inner-section--control) .inner-checklist li {
  color: #0f172a;
  border-color: #e2e8f0;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.inner-section:not(.inner-section--control) .inner-checklist svg {
  color: #8a5d24;
}

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

.inner-step {
  min-height: 210px;
  padding: 24px;
  border: 1px solid #26374a;
  border-radius: var(--home-card-radius);
  background: #101d2b;
}

.inner-step span {
  display: block;
  margin-bottom: 16px;
  color: #c89449;
  font-weight: 700;
}

.inner-step h3 {
  color: #ffffff;
}

.inner-step p {
  color: #cbd5e1;
}

.inner-workflow-wrap {
  max-width: 1120px;
}

.inner-page .deal-dashboard {
  padding: clamp(18px, 2.3vw, 26px);
  border: 1px solid #e2e8f0;
  border-radius: var(--home-card-radius);
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.1);
}

.inner-page .deal-dashboard-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 12px;
  border-bottom: 1px solid #e2e8f0;
}

.inner-page .deal-dashboard-header span {
  display: block;
  margin-bottom: 5px;
  color: #8a5d24;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inner-page .deal-dashboard-header strong {
  display: block;
  color: #0f172a;
  font-size: 20px;
}

.inner-page .deal-dashboard-header em {
  flex: 0 0 auto;
  padding: 7px 10px;
  color: #475569;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #f8fafc;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.inner-page .deal-status-line {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 14px 0;
  padding: 9px;
  border: 1px solid #e8edf3;
  border-radius: var(--home-card-radius);
  background: #fbfaf6;
}

.inner-page .deal-status-line span {
  position: relative;
  color: #334155;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.inner-page .deal-status-line span:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -8px;
  width: 8px;
  height: 1px;
  background: #d7c09a;
  content: "";
}

.inner-page .deal-workflow-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.inner-page .workflow-step-card {
  min-height: 126px;
  padding: 16px;
  border: 1px solid #e2e8f0;
  border-radius: var(--home-card-radius);
  background: #ffffff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.inner-page .workflow-step-card:hover {
  transform: translateY(-3px);
  border-color: #c89449;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.09);
}

.inner-page .workflow-step-card span {
  display: block;
  margin-bottom: 8px;
  color: #8a5d24;
  font-size: 12px;
  font-weight: 700;
}

.inner-page .workflow-step-card p {
  color: #475569;
  font-size: 13px;
  line-height: 1.5;
}

.inner-page .deal-mini-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.inner-page .deal-mini-cards span {
  min-height: 36px;
  display: grid;
  place-items: center;
  color: #334155;
  border: 1px solid #e2e8f0;
  border-radius: var(--home-card-radius);
  background: #f8fafc;
  font-size: 13px;
  font-weight: 600;
}

.inner-form {
  max-width: 1060px;
}

.inner-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(48px, 5.2vw, 72px) clamp(20px, 5vw, 76px);
  color: #ffffff;
  background: #0b1b2a;
  border-top: 1px solid #243548;
}

.inner-final-cta h2 {
  max-width: 780px;
  color: #ffffff;
}

.inner-final-cta p {
  max-width: 760px;
  color: #cbd5e1;
}

body[data-page="deal"] .deal-form-section {
  padding-bottom: clamp(28px, 3vw, 42px);
}

body[data-page="deal"] .inner-final-cta {
  padding-top: clamp(38px, 4vw, 56px);
  padding-bottom: clamp(42px, 4.5vw, 62px);
}

body[data-page="deal"] .inner-final-cta h2 {
  max-width: 700px;
  font-size: clamp(32px, 3.6vw, 48px);
}

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

  .inner-hero-visual {
    aspect-ratio: 4 / 3;
    max-height: 420px;
  }

  .inner-hero-visual img {
    min-height: 0;
  }

  .inner-card-grid,
  .inner-checklist,
  .inner-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .inner-hero {
    min-height: auto;
    padding-top: 56px;
  }

  .inner-hero h1 {
    font-size: 43px;
  }

  .inner-card-grid,
  .inner-checklist,
  .inner-step-grid,
  .inner-page .deal-workflow-grid,
  .inner-page .deal-mini-cards,
  .inner-page .deal-status-line {
    grid-template-columns: 1fr;
  }

  .inner-page .deal-dashboard-header {
    display: grid;
  }

  .inner-page .deal-status-line span {
    text-align: left;
  }

  .inner-page .deal-status-line span:not(:last-child)::after {
    display: none;
  }
}

/* Internal page layout upgrade: assessment, controls, partner process, form. */
.inner-section--feature {
  background: #fafaf7;
}

.inner-section--feature .inner-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.inner-section--feature .inner-card {
  min-height: 150px;
  border-color: #d8c09a;
}

.inner-section--profiles {
  background: #fafaf7;
}

.inner-section--profiles .inner-section-heading {
  max-width: 820px;
  margin-bottom: 24px;
}

.inner-section--profiles .inner-section-heading h2 {
  max-width: 760px;
}

.inner-section--profiles .inner-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.inner-section--profiles .inner-card {
  min-height: 150px;
  padding: 22px;
  border-color: #e2e8f0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.inner-section--profiles .inner-card p {
  font-size: 15px;
  line-height: 1.55;
}

.inner-section--feature-block {
  padding-top: clamp(42px, 4.8vw, 68px);
  padding-bottom: clamp(42px, 4.8vw, 68px);
  background: #ffffff;
}

.inner-section--feature-block .inner-section-heading {
  max-width: 740px;
  margin-bottom: 18px;
}

.inner-section--feature-block .inner-section-heading h2 {
  max-width: 720px;
  font-size: clamp(32px, 3.6vw, 48px);
}

.feature-block-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: 24px;
  align-items: center;
  max-width: 1120px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid #e2e8f0;
  border-radius: var(--home-card-radius);
  background: #fafaf7;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.feature-block-copy p {
  max-width: 660px;
  margin: 0 0 20px;
  color: #334155;
  font-size: 17px;
  line-height: 1.65;
}

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

.feature-block-points span {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  min-height: 44px;
  padding: 12px 13px;
  color: #0f172a;
  border: 1px solid #e2e8f0;
  border-radius: var(--home-card-radius);
  background: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.feature-block-points svg {
  flex: 0 0 auto;
  color: #8a5d24;
}

.inner-section--assessment {
  background: #ffffff;
}

.assessment-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  max-width: 1320px;
  border: 1px solid #e2e8f0;
  border-radius: var(--home-card-radius);
  background: #e2e8f0;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

.assessment-matrix article {
  min-height: 178px;
  padding: 24px;
  background: #ffffff;
  transition: background-color 180ms ease, transform 180ms ease;
}

.assessment-matrix article:hover {
  background: #fbfaf6;
}

.assessment-matrix span {
  display: block;
  margin-bottom: 16px;
  color: #8a5d24;
  font-size: 12px;
  font-weight: 700;
}

.assessment-matrix h3 {
  color: #0f172a;
}

.assessment-matrix p {
  color: #475569;
}

.inner-section--control {
  color: #ffffff;
  background: #061522;
  border-bottom-color: #243548;
}

.inner-section--control .section-kicker {
  color: #c89449;
}

.inner-section--control .inner-section-heading h2 {
  color: #ffffff;
}

.inner-section--control .inner-section-heading > p:not(.section-kicker) {
  color: #cbd5e1;
}

.inner-section--control .inner-checklist li {
  color: #cbd5e1;
  border-color: #26374a;
  background: #101d2b;
  box-shadow: none;
}

.inner-section--control .inner-checklist svg {
  color: #c89449;
}

body[data-page="vehicle"] .inner-section--control {
  padding-top: clamp(32px, 3.6vw, 50px);
  padding-bottom: clamp(34px, 3.8vw, 52px);
}

body[data-page="vehicle"] .inner-section--control .inner-section-heading {
  max-width: 760px;
  margin-bottom: 18px;
}

body[data-page="vehicle"] .inner-section--control .inner-section-heading h2 {
  font-size: clamp(30px, 3.2vw, 44px);
}

body[data-page="vehicle"] .inner-section--control .inner-section-heading > p:not(.section-kicker) {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.55;
}

body[data-page="vehicle"] .inner-section--control .inner-checklist {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body[data-page="vehicle"] .inner-section--control .inner-checklist li {
  min-height: 50px;
  padding: 13px 15px;
  font-size: 14px;
}

.control-section {
  max-width: 1320px;
}

.inner-section--process {
  background: #061522;
}

.partner-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  max-width: 1320px;
}

.partner-process .inner-step {
  position: relative;
  min-height: 220px;
  border-color: #26374a;
  background: #101d2b;
  box-shadow: none;
}

.partner-process .inner-step:not(:last-child)::after {
  position: absolute;
  top: 34px;
  right: -12px;
  z-index: 1;
  width: 18px;
  height: 1px;
  background: #c89449;
  content: "";
}

.inner-section--workflow {
  background: #fafaf7;
}

.inner-section--workflow .deal-dashboard {
  max-width: 1120px;
}

.deal-form-section {
  padding-top: clamp(44px, 4.6vw, 70px);
  padding-bottom: clamp(52px, 5.2vw, 82px);
  background: #ffffff;
}

.deal-form-section .inner-section-heading {
  max-width: 720px;
  margin-bottom: 22px;
}

.deal-form-section .inner-section-heading h2 {
  font-size: clamp(34px, 3.8vw, 50px);
}

.deal-form-section .inner-section-heading > p:not(.section-kicker) {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.55;
}

.deal-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.32fr);
  gap: 20px;
  align-items: start;
  max-width: 1080px;
}

.deal-form-section .inner-form {
  max-width: none;
  gap: 11px 13px;
  padding: clamp(18px, 2.2vw, 24px);
  border: 1px solid #e2e8f0;
  border-radius: var(--home-card-radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.deal-form-section input,
.deal-form-section select,
.deal-form-section textarea {
  padding: 10px 12px;
}

.deal-form-section textarea {
  min-height: 110px;
}

.deal-form-section .inner-form .button {
  margin-top: 2px;
}

.form-guidance-card {
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: var(--home-card-radius);
  background: #fafaf7;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.form-guidance-card ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.form-guidance-card li {
  color: #475569;
  font-size: 14px;
  font-weight: 700;
}

.form-guidance-card li::before {
  color: #8a5d24;
  content: "• ";
}

/* Cross-page copy/layout polish: compact, practical, broker-friendly rhythm. */
.inner-hero {
  min-height: 520px;
  padding-top: clamp(54px, 6vw, 88px);
  padding-bottom: clamp(54px, 6vw, 88px);
}

.inner-hero h1 {
  max-width: 820px;
  font-size: clamp(44px, 5.4vw, 74px);
}

.inner-hero .hero-subtitle {
  max-width: 620px;
}

.inner-hero p:not(.eyebrow):not(.hero-subtitle):not(.inner-note) {
  max-width: 620px;
  line-height: 1.55;
}

.inner-note {
  max-width: 620px;
  padding: 13px 15px;
  color: #f3dfbd;
  border-left-width: 3px;
  background: rgba(200, 148, 73, 0.09);
  font-size: 14px;
  line-height: 1.55;
}

.inner-section {
  padding-top: clamp(50px, 6vw, 82px);
  padding-bottom: clamp(50px, 6vw, 82px);
}

.inner-section-heading {
  max-width: 860px;
  margin-bottom: 24px;
}

.inner-section-heading h2 {
  max-width: 820px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.inner-section-heading > p:not(.section-kicker) {
  max-width: 680px;
  font-size: 16px;
  line-height: 1.55;
}

.inner-card-grid {
  align-items: stretch;
}

.inner-card {
  min-height: 148px;
  padding: 22px;
}

.inner-card p,
.inner-step p,
.workflow-step-card p {
  font-size: 15px;
  line-height: 1.52;
}

body[data-page="brokers"] .inner-section--feature .inner-card-grid,
body[data-page="deal"] .inner-page > .inner-section:nth-of-type(3) .inner-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="deal"] .inner-page > .inner-section:nth-of-type(2) .inner-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

body[data-page="deal"] .inner-section--workflow {
  padding-top: clamp(38px, 4.5vw, 58px);
  padding-bottom: clamp(38px, 4.5vw, 58px);
}

body[data-page="deal"] .inner-section--workflow .inner-section-heading {
  margin-bottom: 18px;
}

body[data-page="deal"] .inner-workflow-wrap,
body[data-page="deal"] .deal-form-layout {
  max-width: 1120px;
}

body[data-page="deal"] .deal-dashboard {
  padding: 20px;
}

body[data-page="deal"] .workflow-step-card {
  min-height: 132px;
  padding: 18px;
}

body[data-page="risk"] .numbered-grid,
body[data-page="funding"] .numbered-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body[data-page="risk"] .numbered-card,
body[data-page="funding"] .numbered-card {
  min-height: 164px;
  padding: 22px;
}

body[data-page="funding"] .numbered-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body[data-page="contact"] .page-hero h1 {
  max-width: 780px;
}

body[data-page="contact"] .contact-layout {
  max-width: 1120px;
}

.footer-brand small {
  max-width: 360px;
  line-height: 1.55;
  font-size: 13px;
  font-weight: 500;
  text-transform: none;
}

/* Brokers & Dealers value section: tighter, practical channel-facing cards. */
body[data-page="brokers"] .inner-section--feature {
  padding-top: 82px;
  padding-bottom: 82px;
}

body[data-page="brokers"] .inner-section--feature .inner-section-heading {
  max-width: 780px;
  margin-bottom: 32px;
}

body[data-page="brokers"] .inner-section--feature .inner-section-heading h2 {
  max-width: 780px;
}

body[data-page="brokers"] .inner-section--feature .inner-section-heading > p:not(.section-kicker) {
  max-width: 760px;
  margin-top: 10px;
}

body[data-page="brokers"] .inner-section--feature .inner-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

body[data-page="brokers"] .inner-section--feature .inner-card {
  display: flex;
  min-height: 156px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border-color: rgba(201, 151, 76, 0.35);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

body[data-page="brokers"] .inner-section--feature .inner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 151, 76, 0.75);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

body[data-page="brokers"] .inner-section--feature .inner-card h3 {
  margin-bottom: 10px;
  color: #0f172a;
  font-size: 20px;
  line-height: 1.18;
}

body[data-page="brokers"] .inner-section--feature .inner-card p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.48;
}

body[data-page="brokers"] .inner-section--mayHelp {
  padding-top: 92px;
  padding-bottom: 82px;
  background: #ffffff;
}

body[data-page="brokers"] .inner-section--mayHelp .inner-section-heading {
  max-width: 860px;
  margin-bottom: 32px;
}

body[data-page="brokers"] .inner-section--mayHelp .section-kicker {
  margin-bottom: 16px;
}

body[data-page="brokers"] .inner-section--mayHelp .inner-section-heading h2 {
  max-width: 760px;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.08;
}

body[data-page="brokers"] .inner-section--mayHelp .inner-section-heading > p:not(.section-kicker) {
  max-width: 860px;
  margin-top: 20px;
  color: #475569;
  font-size: 16px;
  line-height: 1.55;
}

body[data-page="brokers"] .inner-section--mayHelp .inner-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1320px;
}

body[data-page="brokers"] .inner-section--mayHelp .inner-card {
  min-height: 168px;
  padding: 26px;
  border-color: #e2e8f0;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

body[data-page="brokers"] .inner-section--mayHelp .inner-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

body[data-page="brokers"] .inner-section--mayHelp .inner-section-actions {
  max-width: 1320px;
  margin-top: 20px;
}

body[data-page="brokers"] .inner-section--channel {
  padding-top: 80px;
  padding-bottom: 82px;
  background: #fafaf7;
}

body[data-page="brokers"] .inner-section--channel .inner-section-heading {
  max-width: 900px;
  margin-bottom: 30px;
}

body[data-page="brokers"] .inner-section--channel .inner-section-heading h2 {
  max-width: 900px;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.08;
}

body[data-page="brokers"] .inner-section--channel .inner-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1120px;
}

body[data-page="brokers"] .inner-section--channel .inner-card {
  display: flex;
  min-height: 158px;
  flex-direction: column;
  padding: 26px;
  border-color: rgba(201, 151, 76, 0.28);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

body[data-page="brokers"] .inner-section--channel .inner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 151, 76, 0.7);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

body[data-page="brokers"] .inner-section--channel .inner-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
}

body[data-page="brokers"] .inner-section--channel .inner-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.48;
}

body[data-page="brokers"] .inner-section--submission {
  padding-top: 78px;
  padding-bottom: 78px;
  background: #ffffff;
}

body[data-page="brokers"] .inner-section--submission .inner-section-heading {
  max-width: 620px;
  margin-bottom: 28px;
}

body[data-page="brokers"] .inner-section--submission .inner-section-heading h2 {
  max-width: 620px;
  font-size: clamp(30px, 3.2vw, 44px);
}

body[data-page="brokers"] .inner-section--submission .inner-section-heading > p:not(.section-kicker) {
  max-width: 620px;
  margin-top: 12px;
  color: #64748b;
  font-size: 15px;
  line-height: 1.5;
}

body[data-page="brokers"] .inner-section--submission .inner-checklist {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1040px;
}

body[data-page="brokers"] .inner-section--submission .inner-checklist li {
  min-height: 76px;
  align-items: center;
  padding: 20px 22px;
  color: #0f172a;
  border: 1px solid rgba(15, 32, 62, 0.08);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.055);
  font-size: 14px;
}

body[data-page="brokers"] .inner-section--submission .inner-checklist svg {
  width: 17px;
  height: 17px;
  color: #9b6b2d;
  stroke-width: 2;
}

body[data-page="brokers"] .inner-section--process {
  padding-top: 88px;
  padding-bottom: 88px;
}

body[data-page="brokers"] .inner-section--process .inner-section-heading {
  max-width: 900px;
  margin-bottom: 32px;
}

body[data-page="brokers"] .inner-section--process .section-kicker {
  margin-bottom: 16px;
}

body[data-page="brokers"] .inner-section--process .inner-section-heading h2 {
  max-width: 900px;
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.08;
}

body[data-page="brokers"] .inner-section--process .inner-section-heading > p:not(.section-kicker) {
  max-width: 640px;
  margin-top: 18px;
  font-size: 16px;
}

body[data-page="brokers"] .partner-process {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
  max-width: 1320px;
}

body[data-page="brokers"] .partner-process .inner-step {
  min-height: 172px;
  padding: 24px;
}

body[data-page="brokers"] .partner-process .inner-step h3 {
  font-size: 18px;
  line-height: 1.18;
}

body[data-page="brokers"] .partner-process .inner-step p {
  font-size: 14px;
  line-height: 1.48;
}

body[data-page="brokers"] .inner-final-cta {
  grid-template-columns: minmax(0, 620px) auto;
  gap: 36px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
}

body[data-page="brokers"] .inner-final-cta .section-kicker {
  margin-bottom: 12px;
  color: #c89449;
}

body[data-page="brokers"] .inner-final-cta h2 {
  max-width: 620px;
  font-size: clamp(32px, 3.5vw, 48px);
}

body[data-page="brokers"] .inner-final-cta p {
  max-width: 620px;
  margin-top: 12px;
}

body[data-page="brokers"] .inner-final-cta .final-support {
  margin-top: 10px;
  color: #f3dfbd;
  font-size: 14px;
}

.inner-final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.inner-hero .deal-dashboard {
  align-self: center;
  width: 100%;
  max-width: 640px;
  justify-self: end;
}

body[data-page="brokers"] .inner-hero-visual::after,
body[data-page="vehicle"] .inner-hero-visual::after,
body[data-page="equipment"] .inner-hero-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 21, 34, 0) 45%, rgba(6, 21, 34, 0.34) 100%);
  content: "";
}

body[data-page="equipment"] .inner-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.84fr);
  align-items: center;
}

body[data-page="equipment"] .inner-hero-copy {
  max-width: 660px;
}

body[data-page="equipment"] .inner-hero p:not(.eyebrow):not(.hero-subtitle):not(.inner-note) {
  max-width: 560px;
}

body[data-page="equipment"] .inner-hero-visual {
  aspect-ratio: 16 / 9;
  max-height: 390px;
  align-self: center;
}

body[data-page="equipment"] .inner-hero-visual img {
  object-position: center center;
}

@media (max-width: 1100px) {
  body[data-page="home"] .scenario-advantage-note {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .scenario-advantage-note .tag-row {
    justify-content: flex-start;
  }

  .inner-section--feature .inner-card-grid,
  .inner-section--profiles .inner-card-grid,
  body[data-page="brokers"] .inner-section--mayHelp .inner-card-grid,
  body[data-page="brokers"] .partner-process,
  .assessment-matrix,
  .partner-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partner-process .inner-step:not(:last-child)::after {
    display: none;
  }

  .inner-hero .deal-dashboard {
    justify-self: start;
    max-width: 100%;
  }

  .deal-form-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .inner-section--feature .inner-card-grid,
  .inner-section--profiles .inner-card-grid,
  body[data-page="brokers"] .inner-section--mayHelp .inner-card-grid,
  body[data-page="brokers"] .inner-section--channel .inner-card-grid,
  .assessment-matrix,
  body[data-page="brokers"] .partner-process,
  .partner-process {
    grid-template-columns: 1fr;
  }

  body[data-page="brokers"] .inner-final-cta {
    grid-template-columns: 1fr;
  }

  .inner-final-actions {
    justify-content: stretch;
  }

  .feature-block-points {
    grid-template-columns: 1fr;
  }

  .inner-final-cta .button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  body[data-page="contact"] .page-hero {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    padding-top: 44px;
    padding-bottom: 30px;
  }

  body[data-page="contact"] .institutional-visual {
    justify-self: start;
    max-width: 520px;
  }

  body[data-page="contact"] .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body[data-page="contact"] .page-hero {
    padding-top: 34px;
    padding-bottom: 24px;
  }

  body[data-page="contact"] .page-hero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  body[data-page="contact"] .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  body[data-page="contact"] .institutional-visual {
    max-width: 100%;
  }

  body[data-page="contact"] .document-main,
  body[data-page="contact"] .document-table {
    grid-template-columns: 1fr;
  }

  body[data-page="contact"] .register-row {
    grid-template-columns: 38px minmax(112px, 0.72fr) minmax(0, 1fr);
    gap: 8px;
    min-height: 70px;
    padding: 10px 12px;
  }

  body[data-page="contact"] .form-section {
    padding-top: 24px;
    padding-bottom: 32px;
  }

  body[data-page="contact"] .scenario-form {
    padding: 18px;
  }

  body[data-page="contact"] .contact-form-intro h2 {
    font-size: clamp(30px, 10vw, 42px);
  }
}

body[data-page="equipment"] .inner-section--equipment-review {
  padding-top: 88px;
  padding-bottom: 88px;
  background: #ffffff;
}

body[data-page="equipment"] .inner-section--equipment-review .inner-section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

body[data-page="equipment"] .inner-section--equipment-review .inner-section-heading h2 {
  max-width: 820px;
  font-size: clamp(32px, 3.7vw, 50px);
}

body[data-page="equipment"] .inner-section--equipment-review .inner-section-heading > p:not(.section-kicker) {
  max-width: 780px;
}

body[data-page="equipment"] .inner-section--equipment-review .inner-card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  max-width: 1320px;
}

body[data-page="equipment"] .inner-section--equipment-review .inner-card,
body[data-page="equipment"] .inner-section--equipment-assessment .inner-card {
  display: flex;
  min-height: 158px;
  flex-direction: column;
  padding: 28px;
  border-color: rgba(15, 32, 62, 0.1);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

body[data-page="equipment"] .inner-section--equipment-review .inner-card:hover,
body[data-page="equipment"] .inner-section--equipment-assessment .inner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 151, 76, 0.7);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.12);
}

body[data-page="equipment"] .inner-section--equipment-review .inner-card h3,
body[data-page="equipment"] .inner-section--equipment-assessment .inner-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
}

body[data-page="equipment"] .inner-section--equipment-review .inner-card p,
body[data-page="equipment"] .inner-section--equipment-assessment .inner-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

body[data-page="equipment"] .inner-section--equipment-review .section-note {
  max-width: 840px;
  margin-top: 28px;
  padding: 16px 18px;
  border: 1px solid rgba(201, 151, 76, 0.28);
  border-radius: var(--home-card-radius);
  background: #fafaf7;
}

body[data-page="equipment"] .inner-section--equipment-assessment {
  padding-top: 76px;
  padding-bottom: 84px;
  background: #fafaf7;
}

body[data-page="equipment"] .inner-section--equipment-assessment .inner-section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

body[data-page="equipment"] .inner-section--equipment-assessment .inner-section-heading h2 {
  max-width: 760px;
  font-size: clamp(30px, 3.4vw, 46px);
}

body[data-page="equipment"] .inner-section--equipment-assessment .inner-section-heading > p:not(.section-kicker) {
  max-width: 720px;
  margin-top: 18px;
}

body[data-page="equipment"] .inner-section--equipment-assessment .inner-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
}

body[data-page="equipment"] .inner-section--equipment-assessment .inner-card {
  min-height: 150px;
  padding: 26px;
}

body[data-page="equipment"] .inner-final-cta {
  grid-template-columns: minmax(0, 640px) minmax(300px, auto);
  gap: clamp(24px, 4vw, 42px);
  align-items: center;
  padding-top: 72px;
  padding-bottom: 72px;
  background: #0b1b2a;
  border-top: 1px solid #26374a;
  border-bottom: 1px solid #182538;
}

body[data-page="equipment"] .inner-final-cta .section-kicker {
  margin-bottom: 12px;
  color: #c89449;
}

body[data-page="equipment"] .inner-final-cta h2 {
  max-width: 560px;
  font-size: clamp(32px, 3.5vw, 48px);
}

body[data-page="equipment"] .inner-final-cta p {
  max-width: 720px;
  margin-top: 12px;
}

body[data-page="equipment"] .inner-final-actions {
  gap: 16px;
  justify-content: flex-start;
}

body[data-page="equipment"] .inner-final-actions .button {
  min-width: 220px;
  justify-content: center;
}

body[data-page="equipment"] .site-footer {
  background: #040a12;
  border-top: 1px solid #182538;
}

body[data-page="equipment"] .footer-grid {
  padding-top: 34px;
  padding-bottom: 34px;
}

@media (max-width: 1100px) {
  body[data-page="equipment"] .inner-section--equipment-review .inner-card-grid,
  body[data-page="equipment"] .inner-section--equipment-assessment .inner-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="equipment"] .inner-final-cta {
    grid-template-columns: 1fr;
  }

  body[data-page="equipment"] .inner-final-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  body[data-page="equipment"] .inner-section--equipment-review,
  body[data-page="equipment"] .inner-section--equipment-assessment {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  body[data-page="equipment"] .inner-section--equipment-review .inner-card-grid,
  body[data-page="equipment"] .inner-section--equipment-assessment .inner-card-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="equipment"] .inner-section--equipment-review .inner-card,
  body[data-page="equipment"] .inner-section--equipment-assessment .inner-card {
    min-height: 0;
    padding: 22px;
  }
}

body[data-page="risk"] .inner-hero {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.78fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
  min-height: auto;
  padding-top: clamp(110px, 8vw, 120px);
  padding-bottom: 96px;
}

body[data-page="risk"] .inner-hero-copy {
  max-width: 760px;
}

body[data-page="risk"] .inner-hero h1 {
  max-width: 760px;
  font-size: clamp(42px, 4.5vw, 62px);
  line-height: 1;
}

body[data-page="risk"] .inner-hero .hero-subtitle {
  max-width: 620px;
  margin-top: 28px;
  font-size: clamp(18px, 1.8vw, 22px);
}

body[data-page="risk"] .inner-hero p:not(.eyebrow):not(.hero-subtitle):not(.inner-note) {
  max-width: 680px;
}

body[data-page="risk"] .inner-hero .hero-actions {
  margin-top: 32px;
}

body[data-page="risk"] .institutional-visual {
  max-width: 640px;
  height: auto;
  max-height: none;
  overflow: visible;
  align-self: center;
  justify-self: end;
  border-radius: var(--home-card-radius);
}

body[data-page="risk"] .visual-document {
  margin: 18px 18px 14px;
}

body[data-page="risk"] .document-top {
  padding: 12px 18px;
}

body[data-page="risk"] .document-main {
  padding: 24px 28px 28px;
}

body[data-page="risk"] .document-title-meta {
  margin-bottom: 10px;
}

body[data-page="risk"] .document-main h3 {
  max-width: 420px;
  font-size: clamp(30px, 2.4vw, 34px);
  line-height: 1.1;
}

body[data-page="risk"] .document-table div {
  min-height: 86px;
  padding: 18px 20px;
}

body[data-page="risk"] .visual-register {
  margin: 0 18px 18px;
}

body[data-page="risk"] .register-title {
  padding: 18px 20px;
}

body[data-page="risk"] .register-row {
  grid-template-columns: 56px minmax(170px, 190px) minmax(0, 1fr);
  gap: 14px;
  min-height: 74px;
  padding: 12px 20px;
}

body[data-page="risk"] .register-row strong {
  font-size: 14px;
  line-height: 1.2;
}

body[data-page="risk"] .register-row em {
  font-size: 14px;
  line-height: 1.35;
}

body[data-page="risk"] .inner-section--risk-controls {
  scroll-margin-top: 112px;
  padding-top: 100px;
  padding-bottom: 92px;
  background: #ffffff;
}

body[data-page="risk"] .inner-section--risk-controls .inner-section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

body[data-page="risk"] .inner-section--risk-controls .inner-section-heading h2 {
  max-width: 760px;
  font-size: clamp(32px, 3.7vw, 50px);
}

body[data-page="risk"] .inner-section--risk-controls .inner-section-heading > p:not(.section-kicker) {
  max-width: 720px;
}

body[data-page="risk"] .inner-section--risk-controls .inner-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1120px;
}

body[data-page="risk"] .inner-section--risk-controls .inner-card {
  display: flex;
  min-height: 155px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(15, 32, 62, 0.08);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

body[data-page="risk"] .inner-section--risk-controls .inner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 151, 76, 0.55);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.11);
}

body[data-page="risk"] .inner-section--risk-controls .inner-card h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.18;
}

body[data-page="risk"] .inner-section--risk-controls .inner-card p {
  margin: 0;
  color: #475569;
  font-size: 15px;
  line-height: 1.5;
}

body[data-page="funding"] .inner-hero {
  grid-template-columns: minmax(0, 600px) minmax(420px, 620px);
  gap: 72px;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding-top: 96px;
  padding-bottom: 96px;
}

body[data-page="funding"] .inner-hero-copy {
  max-width: 600px;
}

body[data-page="funding"] .inner-hero h1 {
  max-width: 600px;
  margin-bottom: 20px;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: 1.02;
}

body[data-page="funding"] .inner-hero .hero-subtitle {
  max-width: 560px;
  margin-bottom: 20px;
  font-size: clamp(18px, 1.7vw, 22px);
}

body[data-page="funding"] .inner-hero p:not(.eyebrow):not(.hero-subtitle):not(.inner-note) {
  max-width: 600px;
}

body[data-page="funding"] .inner-hero .hero-actions {
  margin-top: 32px;
}

body[data-page="funding"] .funding-partner-visual {
  max-width: 640px;
  height: auto;
  max-height: none;
  align-self: center;
  justify-self: end;
  overflow: visible;
  border-radius: var(--home-card-radius);
}

body[data-page="funding"] .funding-partner-visual .visual-document {
  margin: 18px 18px 14px;
}

body[data-page="funding"] .funding-partner-visual .document-top {
  padding: 13px 17px;
}

body[data-page="funding"] .funding-partner-visual .document-main {
  padding: 24px 28px 28px;
}

body[data-page="funding"] .funding-partner-visual .document-title-meta {
  margin-bottom: 10px;
}

body[data-page="funding"] .funding-partner-visual .document-title-meta p {
  letter-spacing: 0.08em;
}

body[data-page="funding"] .funding-partner-visual .document-main h3 {
  max-width: 420px;
  font-size: clamp(30px, 2.4vw, 34px);
  line-height: 1.1;
}

body[data-page="funding"] .funding-partner-visual .document-table div {
  min-height: 86px;
  padding: 18px 20px;
}

body[data-page="funding"] .funding-partner-visual .visual-register {
  margin: 0 18px 18px;
}

body[data-page="funding"] .funding-partner-visual .register-title {
  padding: 18px 20px;
}

body[data-page="funding"] .funding-partner-visual .register-title strong {
  font-size: 15px;
  line-height: 1.25;
}

body[data-page="funding"] .funding-partner-visual .register-row {
  grid-template-columns: 56px minmax(170px, 190px) minmax(0, 1fr);
  gap: 14px;
  min-height: 74px;
  padding: 12px 20px;
}

body[data-page="funding"] .funding-partner-visual .register-row strong {
  font-size: 14px;
  line-height: 1.2;
}

body[data-page="funding"] .funding-partner-visual .register-row em {
  font-size: 14px;
  line-height: 1.35;
}

body[data-page="funding"] .inner-section--funding-summary {
  padding-top: 88px;
  padding-bottom: 88px;
  background: #ffffff;
}

body[data-page="funding"] .inner-section--funding-summary .inner-section-heading {
  max-width: 880px;
  margin-bottom: 36px;
}

body[data-page="funding"] .inner-section--funding-summary .inner-section-heading h2 {
  max-width: 880px;
  font-size: clamp(34px, 3.9vw, 52px);
}

body[data-page="funding"] .inner-section--funding-summary .inner-section-heading > p:not(.section-kicker) {
  max-width: 760px;
}

body[data-page="funding"] .inner-section--funding-summary .inner-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 980px;
}

body[data-page="funding"] .inner-section--funding-summary .inner-card {
  display: flex;
  min-height: 168px;
  flex-direction: column;
  padding: 30px;
  border-radius: 16px;
  border-color: rgba(15, 32, 62, 0.09);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

body[data-page="funding"] .inner-section--funding-summary .inner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 151, 76, 0.6);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.11);
}

body[data-page="funding"] .inner-section--funding-summary .inner-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.18;
}

body[data-page="funding"] .inner-section--funding-summary .inner-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.52;
}

body[data-page="funding"] .inner-final-cta {
  grid-template-columns: minmax(0, 620px) auto;
  gap: clamp(48px, 5vw, 72px);
  align-items: center;
  padding-top: 88px;
  padding-bottom: 88px;
  background: #0b1b2a;
  border-top: 1px solid #26374a;
  border-bottom: 1px solid #182538;
}

body[data-page="funding"] .inner-final-cta .section-kicker {
  margin-bottom: 12px;
  color: #c89449;
}

body[data-page="funding"] .inner-final-cta h2 {
  max-width: 620px;
  font-size: clamp(32px, 3.5vw, 48px);
}

body[data-page="funding"] .inner-final-cta p {
  max-width: 680px;
  margin-top: 12px;
}

body[data-page="funding"] .inner-final-actions {
  justify-content: flex-start;
}

body[data-page="funding"] .inner-final-actions .button {
  min-width: 210px;
  justify-content: center;
}

body[data-page="risk"] .inner-final-cta {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 64px;
  align-items: center;
  padding-top: 68px;
  padding-bottom: 68px;
  background: #0b1b2a;
  border-top: 1px solid #26374a;
  border-bottom: 1px solid #182538;
}

body[data-page="risk"] .inner-final-cta .section-kicker {
  margin-bottom: 12px;
  color: #c89449;
}

body[data-page="risk"] .inner-final-cta h2 {
  max-width: 620px;
  font-size: clamp(32px, 3.5vw, 48px);
}

body[data-page="risk"] .inner-final-cta p {
  max-width: 760px;
  margin-top: 12px;
}

body[data-page="risk"] .inner-final-actions {
  justify-content: flex-start;
}

body[data-page="risk"] .inner-final-actions .button {
  min-width: 190px;
  justify-content: center;
}

body[data-page="risk"] .site-footer {
  background: #040a12;
  border-top: 1px solid #182538;
}

body[data-page="risk"] .footer-grid {
  padding-top: 34px;
  padding-bottom: 34px;
}

@media (max-width: 1100px) {
  body[data-page="funding"] .inner-hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  body[data-page="funding"] .funding-partner-visual {
    width: 100%;
    max-width: 620px;
    justify-self: start;
  }

  body[data-page="funding"] .inner-final-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body[data-page="risk"] .inner-hero {
    grid-template-columns: 1fr;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  body[data-page="risk"] .institutional-visual {
    width: 100%;
    max-width: 620px;
    max-height: none;
    justify-self: start;
  }

  body[data-page="risk"] .inner-section--risk-controls .inner-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="risk"] .inner-final-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 760px) {
  body[data-page="funding"] .inner-hero {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  body[data-page="funding"] .inner-hero h1 {
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.04;
  }

  body[data-page="funding"] .funding-partner-visual .document-main,
  body[data-page="funding"] .funding-partner-visual .document-table,
  body[data-page="funding"] .funding-partner-visual .register-row {
    grid-template-columns: 1fr;
  }

  body[data-page="funding"] .funding-partner-visual .document-main h3 {
    font-size: 26px;
  }

  body[data-page="funding"] .funding-partner-visual .register-row {
    min-height: 0;
    gap: 6px;
  }

  body[data-page="funding"] .inner-section--funding-summary {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  body[data-page="funding"] .inner-section--funding-summary .inner-card-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="funding"] .inner-section--funding-summary .inner-card {
    min-height: 0;
    padding: 24px;
  }

  body[data-page="funding"] .inner-final-cta {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  body[data-page="risk"] .inner-hero {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  body[data-page="risk"] .inner-hero h1 {
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.04;
  }

  body[data-page="risk"] .inner-hero .hero-subtitle {
    margin-top: 20px;
  }

  body[data-page="risk"] .document-main h3 {
    font-size: 25px;
  }

  body[data-page="risk"] .register-row {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 6px;
  }

  body[data-page="risk"] .inner-section--risk-controls {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  body[data-page="risk"] .inner-section--risk-controls .inner-card-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="risk"] .inner-section--risk-controls .inner-card {
    min-height: 0;
    padding: 22px;
  }
}

body[data-page="contact"] .page-hero {
  grid-template-columns: minmax(0, 720px) minmax(440px, 640px);
  gap: clamp(56px, 5vw, 72px);
  justify-content: center;
  align-items: center;
  min-height: auto;
  padding-top: 96px;
  padding-bottom: 96px;
}

body[data-page="contact"] .page-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(42px, 4.8vw, 62px);
  line-height: 1.02;
}

body[data-page="contact"] .page-hero .hero-subtitle {
  max-width: 680px;
  margin-top: 22px;
  margin-bottom: 16px;
  font-size: clamp(18px, 1.8vw, 22px);
}

body[data-page="contact"] .page-hero p:not(.eyebrow):not(.hero-subtitle) {
  max-width: 680px;
}

body[data-page="contact"] .page-hero .note {
  max-width: 560px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

body[data-page="contact"] .page-hero .hero-actions {
  margin-top: 28px;
}

body[data-page="contact"] .contact-submission-visual {
  width: 100%;
  max-width: 640px;
  min-height: auto;
  overflow: visible;
  align-self: center;
  justify-self: end;
  border-radius: var(--home-card-radius);
}

body[data-page="contact"] .contact-submission-visual .visual-document {
  margin: 18px 18px 14px;
}

body[data-page="contact"] .contact-submission-visual .document-top {
  padding: 12px 18px;
}

body[data-page="contact"] .contact-submission-visual .document-main {
  padding: 26px 28px 28px;
}

body[data-page="contact"] .contact-submission-visual .document-main h3 {
  max-width: 420px;
  font-size: clamp(28px, 2.6vw, 34px);
  line-height: 1.1;
}

body[data-page="contact"] .contact-submission-visual .document-table div {
  min-height: 88px;
  padding: 18px 20px;
}

body[data-page="contact"] .contact-submission-visual .visual-register {
  margin: 0 18px 18px;
}

body[data-page="contact"] .contact-submission-visual .register-title {
  padding: 18px 20px;
}

body[data-page="contact"] .contact-submission-visual .register-title strong {
  font-size: 15px;
  line-height: 1.25;
}

body[data-page="contact"] .contact-submission-visual .register-row {
  grid-template-columns: 56px minmax(170px, 180px) minmax(0, 1fr);
  gap: 14px;
  min-height: 74px;
  padding: 12px 20px;
}

body[data-page="contact"] .contact-submission-visual .register-row strong {
  font-size: 14px;
  line-height: 1.2;
}

body[data-page="contact"] .contact-submission-visual .register-row em {
  font-size: 14px;
  line-height: 1.35;
}

body[data-page="contact"] .form-section {
  scroll-margin-top: 108px;
  padding-top: 34px;
  padding-bottom: 50px;
}

body[data-page="contact"] .contact-layout {
  max-width: 1320px;
  gap: 24px;
}

body[data-page="contact"] .contact-form-intro {
  max-width: 760px;
}

body[data-page="contact"] .contact-form-intro .eyebrow {
  margin-bottom: 10px;
}

body[data-page="contact"] .contact-form-intro h2 {
  max-width: 680px;
  margin-bottom: 8px;
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.03;
}

body[data-page="contact"] .contact-form-intro p:not(.eyebrow) {
  max-width: 620px;
  font-size: 16px;
  line-height: 1.48;
}

body[data-page="contact"] .scenario-form {
  gap: 24px 26px;
  padding: clamp(32px, 3vw, 36px);
  border: 1px solid rgba(15, 32, 62, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.045);
}

body[data-page="contact"] .scenario-form label {
  gap: 9px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
}

body[data-page="contact"] .scenario-form input,
body[data-page="contact"] .scenario-form select {
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 10px;
}

body[data-page="contact"] .scenario-form textarea {
  min-height: 158px;
  padding: 13px 14px;
  border-radius: 10px;
}

body[data-page="contact"] .upload-placeholder {
  min-height: 0;
  padding: 21px 22px;
  border-color: rgba(100, 116, 139, 0.42);
  border-radius: 12px;
  background: #fbfaf7;
}

body[data-page="contact"] .upload-placeholder strong {
  margin-bottom: 5px;
  font-size: 14px;
}

body[data-page="contact"] .upload-placeholder span {
  color: #64748b;
  font-size: 13px;
}

body[data-page="contact"] .scenario-form .button {
  margin-top: 0;
  padding-right: 22px;
  padding-left: 22px;
}

body[data-page="contact"] .site-footer .footer-grid {
  padding-top: 32px;
  padding-bottom: 32px;
}

body[data-page="contact"] .site-footer .footer-bottom {
  padding-top: 14px;
  padding-bottom: 18px;
}

/* Contact / Submit Scenario: compact practical form page. */
body[data-page="contact"] main {
  background: #fafaf7;
}

body[data-page="contact"] .contact-submit-section {
  padding: 96px clamp(20px, 5vw, 76px) 80px;
  background: #fafaf7;
}

body[data-page="contact"] .contact-submit-section .contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

body[data-page="contact"] .contact-submit-section .contact-form-intro {
  max-width: 900px;
}

body[data-page="contact"] .contact-submit-section .contact-form-intro .eyebrow {
  margin-bottom: 10px;
  color: #9b6b2d;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page="contact"] .contact-submit-section .contact-form-intro h2 {
  max-width: 760px;
  margin: 0 0 12px;
  color: #0f172a;
  font-family: var(--serif);
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.03;
}

body[data-page="contact"] .contact-submit-section .contact-form-intro p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: #475569;
  font-size: 17px;
  line-height: 1.5;
}

body[data-page="contact"] .contact-submit-section .contact-form-intro .contact-note {
  max-width: 560px;
  margin-top: 12px;
  color: #64748b;
  font-size: 14px;
}

body[data-page="contact"] .contact-submit-section .scenario-form {
  width: 100%;
  max-width: 1200px;
  gap: 24px 28px;
  padding: clamp(24px, 3.8vw, 48px);
  border: 1px solid rgba(15, 32, 62, 0.1);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.07);
}

body[data-page="contact"] .contact-submit-section .scenario-form label {
  gap: 9px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 700;
}

body[data-page="contact"] .contact-submit-section .scenario-form input,
body[data-page="contact"] .contact-submit-section .scenario-form select {
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 10px;
}

body[data-page="contact"] .contact-submit-section .scenario-form textarea {
  min-height: 160px;
  padding: 13px 14px;
  border-radius: 10px;
}

body[data-page="contact"] .contact-submit-section .upload-placeholder {
  min-height: 0;
  padding: 20px 22px;
  border-color: rgba(100, 116, 139, 0.42);
  border-radius: 12px;
  background: #fbfaf7;
}

body[data-page="contact"] .contact-submit-section .upload-placeholder strong {
  margin-bottom: 5px;
  font-size: 14px;
}

body[data-page="contact"] .contact-submit-section .upload-placeholder span {
  color: #64748b;
  font-size: 13px;
}

body[data-page="contact"] .contact-submit-section .scenario-form .button {
  justify-self: start;
  margin-top: 0;
  padding-right: 22px;
  padding-left: 22px;
}

body[data-page="contact"] .contact-options-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(15, 32, 62, 0.1);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.055);
}

body[data-page="contact"] .contact-options-heading {
  max-width: 780px;
  margin-bottom: 22px;
}

body[data-page="contact"] .contact-options-heading .eyebrow {
  margin-bottom: 8px;
  color: #9b6b2d;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page="contact"] .contact-options-heading h3 {
  margin-bottom: 8px;
  color: #0f172a;
  font-family: var(--serif);
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1.08;
}

body[data-page="contact"] .contact-options-heading p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: #475569;
}

body[data-page="contact"] .direct-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

body[data-page="contact"] .direct-contact-item {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border: 1px solid #e2e8f0;
  border-radius: var(--home-card-radius);
  background: #fbfaf7;
}

body[data-page="contact"] .direct-contact-item span,
body[data-page="contact"] .qr-contact-card h4 {
  color: #9b6b2d;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body[data-page="contact"] .direct-contact-item strong {
  color: #0f172a;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.25;
}

body[data-page="contact"] .qr-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

body[data-page="contact"] .qr-contact-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 22px;
  text-align: center;
  border: 1px solid #e2e8f0;
  border-radius: var(--home-card-radius);
  background: #ffffff;
}

body[data-page="contact"] .qr-contact-card h4 {
  margin: 0;
}

body[data-page="contact"] .qr-image {
  width: min(152px, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #ffffff;
}

body[data-page="contact"] .qr-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

body[data-page="contact"] .qr-contact-card p {
  max-width: 220px;
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.45;
}

@media (max-width: 760px) {
  body[data-page="contact"] .contact-submit-section {
    padding-top: 72px;
    padding-bottom: 56px;
  }

  body[data-page="contact"] .contact-submit-section .contact-layout {
    gap: 24px;
  }

  body[data-page="contact"] .contact-submit-section .contact-form-intro h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  body[data-page="contact"] .contact-submit-section .contact-form-intro p:not(.eyebrow) {
    font-size: 16px;
  }

  body[data-page="contact"] .contact-submit-section .scenario-form {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
    border-radius: 14px;
  }

  body[data-page="contact"] .contact-submit-section .scenario-form .button {
    width: 100%;
    justify-content: center;
  }

  body[data-page="contact"] .direct-contact-grid,
  body[data-page="contact"] .qr-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  body[data-page="contact"] .page-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 72px;
    padding-bottom: 68px;
  }

  body[data-page="contact"] .contact-submission-visual {
    max-width: 620px;
    justify-self: start;
  }

  body[data-page="contact"] .contact-layout {
    max-width: 920px;
  }

  body[data-page="contact"] .scenario-form {
    gap: 22px 24px;
    padding: 30px;
  }
}

@media (max-width: 760px) {
  body[data-page="contact"] .page-hero {
    padding-top: 56px;
    padding-bottom: 54px;
  }

  body[data-page="contact"] .page-hero h1 {
    font-size: clamp(36px, 10vw, 46px);
    line-height: 1.04;
  }

  body[data-page="contact"] .page-hero .hero-subtitle {
    margin-top: 18px;
  }

  body[data-page="contact"] .contact-submission-visual {
    max-height: none;
  }

  body[data-page="contact"] .contact-submission-visual .document-main,
  body[data-page="contact"] .contact-submission-visual .document-table,
  body[data-page="contact"] .contact-submission-visual .register-row {
    grid-template-columns: 1fr;
  }

  body[data-page="contact"] .contact-submission-visual .document-main h3 {
    font-size: 26px;
  }

  body[data-page="contact"] .contact-submission-visual .register-row {
    min-height: 0;
    gap: 6px;
  }

  body[data-page="contact"] .form-section {
    padding-top: 28px;
    padding-bottom: 40px;
  }

  body[data-page="contact"] .contact-layout {
    gap: 20px;
  }

  body[data-page="contact"] .contact-form-intro h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  body[data-page="contact"] .scenario-form {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
    border-radius: 14px;
  }

  body[data-page="contact"] .scenario-form input,
  body[data-page="contact"] .scenario-form select {
    min-height: 52px;
  }

  body[data-page="contact"] .scenario-form textarea {
    min-height: 148px;
  }

body[data-page="contact"] .scenario-form .button {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile responsive stability pass. Keep desktop styling intact; tighten and stack layouts below tablet width. */
@media (max-width: 900px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    font-size: 16px;
  }

  main,
  section,
  header,
  footer,
  .inner-page {
    max-width: 100%;
  }

  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 68px;
    padding: 10px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-text strong {
    overflow: hidden;
    font-size: clamp(18px, 5vw, 21px);
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-text small {
    font-size: 10px;
  }

  .header-cta {
    display: none;
  }

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

  .nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 12px;
    right: 12px;
    z-index: 60;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    max-height: calc(100vh - 84px);
    padding: 12px;
    overflow-y: auto;
    color: var(--ink);
    border: 1px solid rgba(15, 32, 62, 0.14);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 18px 38px rgba(2, 8, 15, 0.2);
  }

  .nav.is-open {
    display: grid;
  }

  .nav a {
    width: 100%;
    padding: 12px 14px;
    border-bottom: 0;
    border-radius: 7px;
    color: #0f172a;
  }

  .nav a:hover,
  .nav a.active {
    color: #0f172a;
    background: #f6efe2;
    border-bottom-color: transparent;
  }

  .home-hero,
  .page-hero,
  .inner-hero,
  .intro-section,
  .deal-section,
  .risk-section,
  .funding-section,
  .final-cta,
  .inner-final-cta,
  .deal-modern-section,
  body[data-page="home"] .deal-modern-section,
  body[data-page="home"] .home-final-cta,
  body[data-page="contact"] .contact-layout,
  .deal-form-layout,
  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr !important;
  }

  .pillar-grid,
  .finance-grid,
  .card-grid,
  .workflow-board,
  .risk-matrix,
  .institutional-summary,
  .check-list,
  .numbered-grid,
  .scenario-form,
  .inner-card-grid,
  .assessment-matrix,
  .inner-checklist,
  .partner-process,
  .primary-solutions-grid,
  body[data-page="home"] .primary-solutions-grid,
  body[data-page="home"] .platform-pathway-grid,
  body[data-page="home"] .home-card-grid,
  body[data-page="home"] .home-card-grid.three,
  body[data-page="home"] .home-card-grid.four,
  body[data-page="home"] .scenario-grid,
  body[data-page="home"] .process-row,
  body[data-page="home"] .deal-steps,
  body[data-page="home"] .deal-workflow-grid,
  body[data-page="home"] .deal-mini-cards,
  body[data-page="home"] .deal-pathway-steps,
  body[data-page="home"] .deal-pathway-steps article,
  body[data-page="brokers"] .inner-section--feature .inner-card-grid,
  body[data-page="brokers"] .inner-section--mayHelp .inner-card-grid,
  body[data-page="brokers"] .inner-section--channel .inner-card-grid,
  body[data-page="brokers"] .inner-section--submission .inner-checklist,
  body[data-page="equipment"] .inner-section--equipment-review .inner-card-grid,
  body[data-page="equipment"] .inner-section--equipment-assessment .inner-card-grid,
  body[data-page="risk"] .inner-section--risk-controls .inner-card-grid,
  body[data-page="funding"] .inner-section--funding-summary .inner-card-grid,
  body[data-page="contact"] .direct-contact-grid,
  body[data-page="contact"] .qr-contact-grid {
    grid-template-columns: 1fr !important;
  }

  .home-hero,
  .page-hero,
  .inner-hero {
    min-height: 0 !important;
    padding: 72px 20px 56px !important;
    gap: 30px !important;
    align-items: center;
    overflow: visible;
  }

  .section,
  .home-section,
  .inner-section,
  body[data-page="home"] .home-section,
  body[data-page="home"] .solutions-showcase,
  body[data-page="home"] .deal-modern-section,
  body[data-page="contact"] .contact-submit-section {
    padding: 60px 20px !important;
  }

  .inner-section--control,
  body[data-page="vehicle"] .inner-section--control {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  h1,
  body[data-page="home"] h1,
  .inner-hero h1,
  body[data-page="risk"] .inner-hero h1,
  body[data-page="funding"] .inner-hero h1 {
    max-width: 100% !important;
    font-size: clamp(40px, 10vw, 52px) !important;
    line-height: 1.04 !important;
  }

  h2,
  body[data-page="home"] .solutions-showcase h2,
  body[data-page="home"] .deal-modern-section h2,
  body[data-page="home"] .home-final-cta h2,
  .inner-section-heading h2,
  .inner-final-cta h2,
  body[data-page="contact"] .contact-submit-section .contact-form-intro h2 {
    max-width: 100% !important;
    font-size: clamp(32px, 8.5vw, 42px) !important;
    line-height: 1.08 !important;
  }

  .hero-subtitle,
  .inner-hero .hero-subtitle,
  body[data-page="home"] .hero-subtitle {
    max-width: 100% !important;
    font-size: clamp(18px, 4.8vw, 22px) !important;
    line-height: 1.35 !important;
  }

  p,
  .inner-hero p:not(.eyebrow):not(.hero-subtitle):not(.inner-note),
  .inner-section-heading > p:not(.section-kicker),
  body[data-page="home"] .section-intro,
  body[data-page="home"] .deal-copy > p:not(.section-kicker):not(.modern-note) {
    max-width: 100%;
  }

  .hero-actions,
  .deal-actions,
  .inner-final-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }

  .button,
  .inner-final-actions .button,
  body[data-page="home"] .home-final-cta .button,
  body[data-page="equipment"] .inner-final-actions .button,
  body[data-page="risk"] .inner-final-actions .button,
  body[data-page="funding"] .inner-final-actions .button {
    width: 100%;
    min-width: 0 !important;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .button span,
  .tag-row span,
  .footer-grid a,
  .footer-grid span,
  .direct-contact-item strong,
  .inner-card h3,
  .inner-card p,
  .assessment-matrix h3,
  .assessment-matrix p {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .home-hero .hero-copy,
  .inner-hero-copy,
  .deal-copy,
  .inner-section-heading,
  .contact-form-intro {
    max-width: 100% !important;
  }

  body[data-page="home"] .home-hero {
    color: #ffffff;
    background: #061522;
  }

  body[data-page="home"] .hero-copy {
    position: relative;
    z-index: 2;
  }

  body[data-page="home"] .hero-image-visual {
    position: absolute;
    inset: 0;
  }

  body[data-page="home"] .hero-image-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .inner-hero-visual,
  .hero-image-visual,
  .institutional-visual,
  .workflow-visual,
  .deal-dashboard,
  .deal-pathway-panel,
  .contact-submission-visual {
    width: 100%;
    max-width: 100% !important;
    justify-self: stretch !important;
  }

  .inner-hero-visual {
    aspect-ratio: 16 / 10;
    max-height: 360px;
  }

  .inner-hero-visual img,
  .solution-image img,
  .scenario-image img,
  body[data-page="home"] .solution-image img,
  body[data-page="home"] .scenario-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .solution-image,
  body[data-page="home"] .solution-image,
  .scenario-image,
  body[data-page="home"] .scenario-image {
    aspect-ratio: 16 / 10 !important;
  }

  .solution-content,
  body[data-page="home"] .solution-content {
    min-height: 0 !important;
    padding: 22px !important;
  }

  .primary-solution-card,
  body[data-page="home"] .primary-solution-card,
  .platform-pathway-card,
  body[data-page="home"] .platform-pathway-card,
  .inner-card,
  .assessment-matrix article,
  .partner-process .inner-step,
  .numbered-card,
  .solid-card {
    min-height: 0 !important;
  }

  .assessment-matrix,
  .institutional-summary {
    overflow: visible;
  }

  .partner-process .inner-step:not(:last-child)::after,
  body[data-page="home"] .process-step:not(:last-child)::after {
    display: none;
  }

  .document-main,
  .document-table,
  .register-row,
  .visual-register .register-row,
  .deal-dashboard-header,
  .deal-status-line,
  .deal-workflow-grid,
  .deal-mini-cards,
  .institutional-visual .document-main,
  .institutional-visual .document-table,
  .institutional-visual .register-row {
    grid-template-columns: 1fr !important;
  }

  .visual-document,
  .institutional-visual .visual-document {
    overflow: visible;
  }

  .scenario-form {
    width: 100%;
  }

  .scenario-form label,
  .scenario-form .span-2,
  .upload-placeholder {
    grid-column: auto !important;
    min-width: 0;
  }

  input,
  select,
  textarea {
    max-width: 100%;
    font-size: 16px;
  }

  .footer-grid {
    gap: 26px;
  }

  .footer-bottom {
    gap: 10px;
  }
}

@media (max-width: 768px) {
  .site-header {
    min-height: 64px;
    padding: 9px 14px;
  }

  .brand-text small {
    display: none;
  }

  .nav {
    left: 10px;
    right: 10px;
    max-height: calc(100vh - 76px);
  }

  .home-hero,
  .page-hero,
  .inner-hero {
    padding: 64px 20px 48px !important;
  }

  .section,
  .home-section,
  .inner-section,
  body[data-page="home"] .home-section,
  body[data-page="home"] .solutions-showcase,
  body[data-page="home"] .deal-modern-section,
  body[data-page="contact"] .contact-submit-section {
    padding: 56px 20px !important;
  }

  .inner-final-cta,
  .final-cta,
  body[data-page="home"] .home-final-cta {
    padding: 52px 20px !important;
  }

  h1,
  body[data-page="home"] h1,
  .inner-hero h1,
  body[data-page="risk"] .inner-hero h1,
  body[data-page="funding"] .inner-hero h1 {
    font-size: clamp(38px, 11vw, 48px) !important;
  }

  h2,
  body[data-page="home"] .solutions-showcase h2,
  body[data-page="home"] .deal-modern-section h2,
  body[data-page="home"] .home-final-cta h2,
  .inner-section-heading h2,
  .inner-final-cta h2,
  body[data-page="contact"] .contact-submit-section .contact-form-intro h2 {
    font-size: clamp(30px, 9vw, 38px) !important;
  }

  .inner-card,
  .assessment-matrix article,
  .numbered-card,
  .solid-card,
  .platform-pathway-card,
  body[data-page="home"] .platform-pathway-card {
    padding: 22px !important;
  }

  body[data-page="contact"] .contact-submit-section .scenario-form,
  .scenario-form {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 24px !important;
  }

  body[data-page="contact"] .contact-options-card {
    padding: 22px !important;
  }

  .qr-image {
    width: min(150px, 100%) !important;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding-right: 12px;
    padding-left: 12px;
  }

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

  .brand-text strong {
    max-width: 190px;
    font-size: 18px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .home-hero,
  .page-hero,
  .inner-hero {
    padding: 54px 16px 42px !important;
    gap: 24px !important;
  }

  .section,
  .home-section,
  .inner-section,
  body[data-page="home"] .home-section,
  body[data-page="home"] .solutions-showcase,
  body[data-page="home"] .deal-modern-section,
  body[data-page="contact"] .contact-submit-section {
    padding: 48px 16px !important;
  }

  h1,
  body[data-page="home"] h1,
  .inner-hero h1,
  body[data-page="risk"] .inner-hero h1,
  body[data-page="funding"] .inner-hero h1 {
    font-size: clamp(34px, 12vw, 42px) !important;
  }

  h2,
  body[data-page="home"] .solutions-showcase h2,
  body[data-page="home"] .deal-modern-section h2,
  body[data-page="home"] .home-final-cta h2,
  .inner-section-heading h2,
  .inner-final-cta h2,
  body[data-page="contact"] .contact-submit-section .contact-form-intro h2 {
    font-size: clamp(28px, 10vw, 34px) !important;
  }

  .hero-subtitle,
  .inner-hero .hero-subtitle,
  body[data-page="home"] .hero-subtitle {
    font-size: 18px !important;
  }

  .tag-row {
    gap: 8px;
  }

  .tag-row span {
    max-width: 100%;
    white-space: normal;
  }

  .inner-hero-visual {
    aspect-ratio: 4 / 3;
    max-height: 300px;
  }

  body[data-page="contact"] .contact-submit-section .scenario-form,
  .scenario-form,
  body[data-page="contact"] .contact-options-card {
    padding: 20px !important;
  }

  .footer-grid,
  .footer-bottom {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
}

@media (min-width: 1101px) {
  .site-header {
    grid-template-columns: minmax(220px, auto) minmax(0, 1fr) auto;
  }

  .site-header .nav,
  body[data-page="home"] .site-header .nav {
    min-width: 0;
    gap: 0;
    font-size: clamp(11px, 0.74vw, 13px);
  }

  .site-header .nav-links--desktop {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 0;
    gap: clamp(10px, 1.1vw, 17px);
  }

  .site-header .nav-links--desktop a,
  body[data-page="home"] .site-header .nav-links--desktop a {
    white-space: nowrap;
    font-size: clamp(11px, 0.74vw, 13px);
  }

  .site-header .nav-links--mobile {
    display: none;
  }
}

@media (max-width: 1100px) {
  .site-header .nav-links--desktop {
    display: none !important;
  }

  .site-header .nav-links--mobile {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }
}

.header-cta.active,
body[data-page="home"] .header-cta.active {
  border-color: var(--gold-soft);
  background: var(--gold-hover);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.24);
}

/* Second mobile pass: final overrides for stubborn desktop grids, split heroes and menu contrast. */
@media (max-width: 768px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  .site-header {
    z-index: 100;
    grid-template-columns: minmax(0, 1fr) auto !important;
    overflow: visible;
  }

  .nav {
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 12px !important;
    right: 12px !important;
    display: none !important;
    width: auto !important;
    max-width: calc(100vw - 24px) !important;
    max-height: calc(100vh - 92px);
    padding: 18px !important;
    overflow-y: auto;
    color: #0d1b3d !important;
    border: 1px solid rgba(13, 27, 61, 0.12) !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18) !important;
  }

  .nav.is-open {
    display: block !important;
  }

  .nav-links--desktop {
    display: none !important;
  }

  .nav-links--mobile {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  .nav a,
  body[data-page="home"] .nav a {
    display: block !important;
    width: 100% !important;
    padding: 13px 0 !important;
    color: #0d1b3d !important;
    border-bottom: 1px solid rgba(13, 27, 61, 0.12) !important;
    border-radius: 0 !important;
    background: transparent !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .nav a:last-child {
    border-bottom: 0 !important;
  }

  .nav a:hover,
  .nav a.active,
  body[data-page="home"] .nav a:hover,
  body[data-page="home"] .nav a.active {
    color: #9b6b2d !important;
    border-bottom-color: rgba(13, 27, 61, 0.12) !important;
  }

  .home-hero,
  .page-hero,
  .inner-hero,
  body[data-page="home"] .home-hero,
  body[data-page="equipment"] .inner-hero,
  body[data-page="risk"] .inner-hero,
  body[data-page="funding"] .inner-hero {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    align-items: stretch !important;
    min-height: 0 !important;
    gap: 24px !important;
    padding: 72px 20px 48px !important;
    overflow: visible !important;
  }

  .home-hero::after,
  body[data-page="home"] .home-hero::after,
  .inner-hero-visual::after {
    display: none !important;
  }

  .hero-copy,
  .inner-hero-copy,
  .page-hero > div,
  .home-hero > *,
  .inner-hero > *,
  .page-hero > *,
  .hero-content,
  .hero-media,
  .hero-image,
  .hero-card,
  .inner-hero-visual,
  .hero-image-visual,
  .institutional-visual,
  .funding-partner-visual,
  .deal-dashboard,
  .deal-pathway-panel {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
    justify-self: stretch !important;
  }

  .hero-copy,
  .inner-hero-copy,
  .page-hero > div:first-child {
    order: 1;
  }

  .hero-image-visual,
  .inner-hero-visual,
  .institutional-visual,
  .funding-partner-visual,
  .deal-dashboard,
  .deal-pathway-panel {
    order: 2;
  }

  .hero-image-visual,
  .inner-hero-visual {
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    overflow: hidden;
    border-radius: 12px;
  }

  .hero-image-visual img,
  .inner-hero-visual img,
  .hero-media img,
  .hero-image img,
  .hero-card img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    object-fit: cover;
    object-position: center center;
  }

  .primary-solutions-grid,
  .platform-pathway-grid,
  .process-grid,
  .feature-grid,
  .info-grid,
  .card-grid,
  .pathway-grid,
  .inner-card-grid,
  .assessment-matrix,
  .numbered-grid,
  .workflow-board,
  .risk-matrix,
  .institutional-summary,
  .deal-workflow-grid,
  .deal-mini-cards,
  .partner-process,
  .deal-form-layout,
  .scenario-form,
  body[data-page="home"] .primary-solutions-grid,
  body[data-page="home"] .platform-pathway-grid,
  body[data-page="home"] .home-card-grid,
  body[data-page="home"] .home-card-grid.three,
  body[data-page="home"] .home-card-grid.four,
  body[data-page="home"] .scenario-grid,
  body[data-page="home"] .process-row,
  body[data-page="home"] .deal-workflow-grid,
  body[data-page="home"] .deal-mini-cards,
  body[data-page="home"] .deal-pathway-steps,
  body[data-page="home"] .deal-pathway-steps article,
  body[data-page="brokers"] .inner-section--feature .inner-card-grid,
  body[data-page="brokers"] .inner-section--mayHelp .inner-card-grid,
  body[data-page="brokers"] .inner-section--channel .inner-card-grid,
  body[data-page="equipment"] .inner-section--equipment-review .inner-card-grid,
  body[data-page="equipment"] .inner-section--equipment-assessment .inner-card-grid,
  body[data-page="risk"] .inner-section--risk-controls .inner-card-grid,
  body[data-page="funding"] .inner-section--funding-summary .inner-card-grid,
  body[data-page="contact"] .contact-layout,
  body[data-page="contact"] .qr-contact-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .checklist-grid,
  .submission-grid,
  .what-to-send-grid,
  .check-list,
  .inner-checklist,
  body[data-page="brokers"] .inner-section--submission .inner-checklist,
  body[data-page="contact"] .direct-contact-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 14px !important;
  }

  .card,
  .tile,
  .info-card,
  .process-card,
  .feature-card,
  .solid-card,
  .numbered-card,
  .inner-card,
  .inner-step,
  .primary-solution-card,
  .platform-pathway-card,
  .assessment-matrix article,
  .check-list li,
  .inner-checklist li,
  .scenario-form label {
    min-width: 0 !important;
    max-width: 100% !important;
  }

  .inner-card h3,
  .inner-card p,
  .solid-card h3,
  .solid-card p,
  .numbered-card h3,
  .numbered-card p,
  .platform-pathway-card h3,
  .platform-pathway-card p,
  .assessment-matrix h3,
  .assessment-matrix p,
  .inner-checklist li,
  .check-list li {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .section,
  .home-section,
  .inner-section,
  body[data-page="home"] .home-section,
  body[data-page="contact"] .contact-submit-section {
    padding-top: 56px !important;
    padding-bottom: 56px !important;
  }
}

@media (max-width: 480px) {
  .checklist-grid,
  .submission-grid,
  .what-to-send-grid,
  .check-list,
  .inner-checklist,
  body[data-page="brokers"] .inner-section--submission .inner-checklist,
  body[data-page="contact"] .direct-contact-grid {
    grid-template-columns: 1fr !important;
  }

  .home-hero,
  .page-hero,
  .inner-hero,
  body[data-page="home"] .home-hero,
  body[data-page="equipment"] .inner-hero,
  body[data-page="risk"] .inner-hero,
  body[data-page="funding"] .inner-hero {
    padding: 60px 16px 42px !important;
  }

  .nav {
    left: 10px !important;
    right: 10px !important;
    max-width: calc(100vw - 20px) !important;
    padding: 16px !important;
  }
}

