:root {
  --ink: #10232d;
  --ink-2: #18313b;
  --forest: #245348;
  --forest-2: #173c35;
  --signal: #f3b51b;
  --rust: #b96535;
  --steel: #dce6e8;
  --paper: #f7f7f3;
  --white: #ffffff;
  --text: #22313a;
  --muted: #5b6870;
  --line: #d4dcdd;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 22px 48px rgba(16, 35, 45, .14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Montserrat, "Segoe UI", Arial, sans-serif;
  line-height: 1.58;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 40;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--signal);
  text-decoration: none;
  font-weight: 800;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 74px;
  padding: 14px 40px;
  color: var(--white);
  background: rgba(16, 35, 45, .78);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  background: rgba(16, 35, 45, .96);
  box-shadow: 0 14px 32px rgba(0, 0, 0, .2);
}

.brand,
.main-nav,
.nav-cta,
.button,
.sticky-cta,
.floating-cta__button,
.text-link {
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--signal);
  border-radius: var(--radius);
  font-size: .78rem;
  font-weight: 950;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: .92rem;
  font-weight: 800;
}

.main-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .9);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--signal);
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--signal);
  border-radius: var(--radius);
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 58% center;
}

.hero-shade {
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(11, 24, 31, .94) 0%, rgba(11, 24, 31, .82) 42%, rgba(11, 24, 31, .18) 100%),
    linear-gradient(0deg, rgba(16, 35, 45, .42), rgba(16, 35, 45, .08));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 56px));
  min-height: 820px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 44px;
  align-items: end;
  padding: 136px 0 58px;
}

.hero-copyblock {
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--signal);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--rust);
}

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

h1,
h2,
h3 {
  color: inherit;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 3.85rem;
  font-weight: 950;
  hyphens: none;
  overflow-wrap: break-word;
}

h2 {
  margin-bottom: 18px;
  font-size: 2.25rem;
  font-weight: 900;
  line-height: 1.18;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  font-weight: 900;
}

.hero-copy {
  max-width: 720px;
  margin-bottom: 28px;
  color: #edf4f3;
  font-size: 1.24rem;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.2;
}

.button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button.primary {
  color: var(--ink);
  background: var(--signal);
  box-shadow: 0 18px 34px rgba(243, 181, 27, .28);
}

.button.primary:hover,
.button.primary:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible,
.floating-cta__button:hover,
.floating-cta__button:focus-visible {
  background: #ffd14d;
}

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

.hero-panel {
  margin: 0 0 2px;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel-label {
  margin: 0 0 14px;
  color: var(--rust);
  font-size: .8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.hero-panel ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-panel li {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 42px;
  padding: 9px 0;
  border-top: 1px solid var(--line);
  font-weight: 800;
}

.hero-panel li:first-child {
  border-top: 0;
}

.hero-panel span {
  color: var(--forest);
  font-size: .8rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section {
  padding: 92px 0;
}

.section-inner {
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
}

.signal-band {
  padding: 18px 0;
  background: var(--signal);
}

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

.signal-grid article {
  min-height: 112px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, .64);
  border: 1px solid rgba(16, 35, 45, .14);
  border-radius: var(--radius);
}

.signal-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--rust);
  font-weight: 950;
}

.signal-grid p {
  margin: 0;
  font-weight: 900;
  line-height: 1.28;
}

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

.intro-grid,
.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}

.intro-lead p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
}

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

.decision-map div {
  position: relative;
  min-height: 150px;
  padding: 22px;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.decision-map div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: var(--forest);
}

.decision-map div:nth-child(2)::before,
.decision-map div:nth-child(4)::before {
  background: var(--rust);
}

.decision-map strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
  font-weight: 950;
}

.decision-map span {
  color: var(--muted);
  font-weight: 700;
}

.warm {
  background: var(--steel);
}

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

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.risk-list,
.geo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.risk-list article,
.geo-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border: 1px solid rgba(16, 35, 45, .12);
  border-radius: var(--radius);
  box-shadow: 0 14px 28px rgba(16, 35, 45, .06);
}

.risk-list article {
  border-top: 5px solid var(--forest);
}

.risk-list article:nth-child(2n) {
  border-top-color: var(--rust);
}

.risk-list p,
.geo-grid p {
  margin: 0;
  color: var(--muted);
}

.offers {
  background: var(--paper);
}

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

.offer {
  position: relative;
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.offer.featured {
  color: var(--white);
  background: var(--forest-2);
  border-color: var(--forest-2);
}

.offer-kicker {
  margin-bottom: 12px;
  color: var(--rust);
  font-weight: 950;
  text-transform: uppercase;
}

.featured .offer-kicker {
  color: var(--signal);
}

.price {
  margin-bottom: 18px;
  color: var(--forest);
  font-size: 2.55rem;
  font-weight: 950;
  line-height: 1.05;
}

.featured .price {
  color: var(--signal);
}

.offer ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.offer li {
  position: relative;
  padding-left: 24px;
}

.offer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .58em;
  width: 9px;
  height: 9px;
  background: var(--signal);
  border-radius: 50%;
}

.offer-note {
  max-width: 860px;
  margin: 24px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.mid-content-media {
  padding: 92px 0;
  background: var(--ink);
  color: var(--white);
}

.media-split {
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  align-items: center;
}

.content-media,
.portrait {
  margin: 0;
}

.content-media picture,
.portrait picture {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.content-media img,
.portrait img {
  width: 100%;
  height: auto;
}

.media-open {
  display: block;
  color: inherit;
  cursor: zoom-in;
}

.media-open:focus-visible {
  outline: 4px solid rgba(197, 235, 88, .36);
  outline-offset: 4px;
}

.media-open img {
  transition: transform 220ms ease, filter 220ms ease;
}

.media-open:hover img {
  transform: scale(1.012);
  filter: saturate(1.04) contrast(1.03);
}

.content-media figcaption {
  margin-top: 10px;
  color: #cbd8db;
  font-size: .92rem;
}

.copy-stack p {
  margin-bottom: 18px;
  font-size: 1.05rem;
}

.copy-stack p:last-child {
  margin-bottom: 0;
}

.copy-stack h2 {
  max-width: 720px;
}

.mid-content-media .copy-stack p:not(.eyebrow) {
  color: #e4ecee;
}

.cases {
  background: var(--paper);
}

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

.case-list article {
  counter-increment: case;
  position: relative;
  display: flex;
  min-height: 238px;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.case-list article::before {
  content: "0" counter(case);
  width: max-content;
  padding: 3px 9px;
  color: var(--ink);
  background: var(--steel);
  border-radius: var(--radius);
  font-size: .78rem;
  font-weight: 950;
  line-height: 1.4;
}

.case-list h3 {
  max-width: 430px;
  margin-bottom: 0;
  font-size: 1.18rem;
  line-height: 1.18;
}

.case-list p {
  margin: 0;
  color: var(--muted);
  font-size: .98rem;
}

.case-list strong {
  display: block;
  margin-top: auto;
  padding-top: 14px;
  color: var(--rust);
  border-top: 1px solid rgba(185, 101, 53, .32);
  font-size: .96rem;
  line-height: 1.35;
}

.process {
  color: var(--white);
  background: var(--forest-2);
}

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

.process-list li {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .07);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--ink);
  background: var(--signal);
  border-radius: 50%;
  font-weight: 950;
}

.process-list p {
  margin: 0;
  color: #dce9e6;
}

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

.portrait {
  max-width: 430px;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--rust);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.geo-aeo-readiness {
  padding: 82px 0;
  background: var(--steel);
}

.context-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.context-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 850;
  text-decoration: none;
}

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

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

summary {
  min-height: 54px;
  cursor: pointer;
  padding: 16px 48px 16px 18px;
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.final-cta {
  padding: 88px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(16, 35, 45, .98), rgba(36, 83, 72, .92)),
    var(--ink);
}

.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
}

.final-cta-copy {
  max-width: 660px;
}

.final-cta p:not(.eyebrow) {
  color: #e6f0ee;
  font-size: 1.15rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  font: inherit;
  font-weight: 650;
}

.contact-form textarea {
  min-height: 148px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 3px solid rgba(243, 181, 27, .42);
  border-color: var(--signal);
}

.contact-form button {
  min-height: 50px;
  padding: 13px 18px;
  color: var(--ink);
  background: var(--signal);
  border: 0;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 950;
  cursor: pointer;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: #ffd14d;
}

.form-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 700;
}

.form-consent input {
  width: 18px;
  min-height: 18px;
  margin: 4px 0 0;
}

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

.form-hp {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.article-page {
  background: var(--paper);
}

.sub-hero {
  padding: 132px 0 58px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(16, 35, 45, .98), rgba(36, 83, 72, .88)),
    var(--ink);
}

.sub-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(240px, .52fr);
  gap: 34px;
  align-items: center;
}

.sub-hero h1 {
  max-width: 920px;
  font-size: clamp(2.15rem, 3.65vw, 3.45rem);
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: normal;
}

.sub-hero-media {
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sub-hero-media img {
  width: 100%;
  height: auto;
}

.longform {
  max-width: 980px;
  padding-top: 62px;
  padding-bottom: 68px;
}

.longform > h1 {
  display: none;
}

.longform h2 {
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.longform h3 {
  margin-top: 32px;
  color: var(--forest-2);
}

.longform p,
.longform li {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.78;
}

.longform a {
  color: var(--forest);
  font-weight: 900;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.longform ul {
  padding-left: 24px;
}

.longform .content-media {
  max-width: 760px;
  margin: 0 0 38px;
}

.longform .content-media img {
  width: 100%;
  height: auto;
}

.site-footer {
  padding: 30px 0;
  color: var(--white);
  background: #20282d;
}

.legal-content {
  padding-top: 130px;
}

.legal-content .section-inner {
  max-width: 860px;
}

.legal-content h1 {
  color: var(--ink);
  font-size: 3.2rem;
}

.legal-content h2 {
  margin-top: 34px;
  color: var(--ink);
  font-size: 2rem;
}

.legal-content h3 {
  margin-top: 22px;
  color: var(--ink);
}

.legal-content p {
  color: var(--text);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.footer-inner p {
  margin: 4px 0 0;
  color: #d7d7d7;
}

.footer-inner nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-inner a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: var(--radius);
  text-decoration: none;
}

.footer-links {
  justify-content: flex-end;
  gap: 0;
  color: #cbd5d9;
  font-size: .9rem;
  line-height: 1.7;
  text-align: right;
}

.footer-links a {
  min-height: 0;
  display: inline;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #edf3f4;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 24;
  width: min(350px, calc(100vw - 44px));
  border-radius: var(--radius);
  opacity: 1;
  transform: translateY(0);
  transition: opacity .18s ease, transform .18s ease;
}

.floating-cta {
  position: fixed;
  display: grid;
  gap: 10px;
  padding: 16px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 35, 45, .98), rgba(36, 83, 72, .96));
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 22px 50px rgba(16, 35, 45, .34);
}

.floating-cta::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--signal), #ffd14d, var(--rust));
  border-radius: var(--radius) var(--radius) 0 0;
}

.floating-cta__kicker {
  margin: 2px 28px 0 0;
  color: var(--signal);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sticky-cta-close {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 7px;
  color: var(--white);
  background: rgba(255, 255, 255, .14);
  font: inherit;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.sticky-cta-close:hover,
.sticky-cta-close:focus-visible {
  background: rgba(255, 255, 255, .24);
}

.floating-cta strong {
  color: var(--white);
  font-size: 1.05rem;
  line-height: 1.22;
}

.floating-cta p:not(.floating-cta__kicker) {
  margin: 0;
  color: #dce9e6;
  font-size: .91rem;
  font-weight: 650;
  line-height: 1.35;
}

.floating-cta__button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 2px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--signal);
  border-radius: var(--radius);
  font-weight: 950;
  line-height: 1.15;
}

.floating-cta__button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sticky-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}

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

  .main-nav {
    display: none;
  }
}

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

  .main-nav {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 780px;
  }

  .hero-inner,
  .intro-grid,
  .split,
  .offer-grid,
  .media-split,
  .final-cta-grid,
  .sub-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .signal-grid,
  .risk-list,
  .geo-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 64px;
    padding: 10px 14px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    padding: 8px 11px;
    font-size: .88rem;
  }

  .hero,
  .hero-inner {
    min-height: 760px;
  }

  .hero-media img {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(11, 24, 31, .96), rgba(11, 24, 31, .72)),
      linear-gradient(0deg, rgba(16, 35, 45, .24), rgba(16, 35, 45, .1));
  }

  .hero-inner,
  .section-inner {
    width: min(100% - 28px, var(--max));
  }

  .hero-inner {
    gap: 22px;
    align-items: end;
    padding-top: 104px;
    padding-bottom: 34px;
  }

  h1 {
    font-size: 2.05rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.62rem;
  }

  h3 {
    font-size: 1.12rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

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

  .contact-form {
    padding: 18px;
  }

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

  .hero-panel {
    padding: 16px;
  }

  .hero-panel li {
    grid-template-columns: 76px 1fr;
    font-size: .92rem;
  }

  .section,
  .mid-content-media {
    padding: 58px 0;
  }

  .sub-hero {
    padding: 96px 0 42px;
  }

  .sub-hero h1 {
    font-size: clamp(1.72rem, 8vw, 2.08rem);
  }

  .longform {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  .longform p,
  .longform li {
    font-size: 1rem;
  }

  .geo-aeo-readiness {
    padding: 58px 0;
  }

  .signal-grid,
  .risk-list,
  .geo-grid,
  .process-list,
  .decision-map,
  .case-list {
    grid-template-columns: 1fr;
  }

  .signal-grid article {
    min-height: auto;
  }

  .risk-list article,
  .geo-grid article,
  .offer,
  .process-list li,
  .case-list article {
    min-height: auto;
    padding: 20px;
  }

  .price {
    font-size: 2.08rem;
  }

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

  .sticky-cta {
    left: 12px;
    right: 12px;
    bottom: 10px;
    width: auto;
  }

  .floating-cta {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 13px;
  }

  .floating-cta strong {
    font-size: .98rem;
  }

  .floating-cta p:not(.floating-cta__kicker) {
    display: none;
  }

  .floating-cta__button {
    min-height: 44px;
    width: 100%;
  }

  .site-footer {
    padding-bottom: 148px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 1.9rem;
  }

  .nav-cta {
    max-width: 190px;
    text-align: center;
  }

  .hero-panel {
    display: none;
  }
}
