:root {
  --sf-blue: #075fc5;
  --sf-blue-deep: #07356f;
  --sf-cyan: #19a7d8;
  --sf-green: #49a078;
  --sf-ink: #101820;
  --sf-muted: #52606d;
  --sf-line: #d9e3ef;
  --sf-faint: #f4f8fc;
  --sf-panel: #ffffff;
}

.sf-modern {
  color: var(--sf-ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

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

.sf-modern h1,
.sf-modern h2,
.sf-modern h3 {
  text-wrap: balance;
}

.sf-modern p {
  text-wrap: pretty;
}

.sf-modern[dir="rtl"] {
  text-align: right;
}

.sf-modern-hero {
  position: relative;
  min-height: clamp(620px, 82vh, 820px);
  overflow: hidden;
  color: #fff;
  background: var(--sf-blue-deep);
}

.sf-modern-hero__media {
  position: absolute;
  inset: 0;
}

.sf-modern-hero__media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgba(4, 29, 66, 0.92) 0%, rgba(4, 29, 66, 0.72) 44%, rgba(4, 29, 66, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 29, 66, 0.34), rgba(4, 29, 66, 0));
}

.sf-modern[dir="rtl"] .sf-modern-hero__media::after {
  background:
    linear-gradient(270deg, rgba(4, 29, 66, 0.92) 0%, rgba(4, 29, 66, 0.72) 44%, rgba(4, 29, 66, 0.18) 100%),
    linear-gradient(0deg, rgba(4, 29, 66, 0.34), rgba(4, 29, 66, 0));
}

.sf-modern-hero__media img,
.sf-modern-hero__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sf-modern-hero__media video {
  z-index: 1;
}

.sf-modern-hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
  min-height: inherit;
  padding-top: clamp(88px, 10vw, 140px);
  padding-bottom: clamp(56px, 8vw, 96px);
}

.sf-modern-hero__copy {
  min-width: 0;
  max-width: 820px;
}

.sf-modern-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  color: #d9f1ff;
  font-size: 14px;
  font-weight: 700;
}

.sf-modern-hero h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.sf-modern-summary {
  max-width: 760px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.sf-modern-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sf-modern-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--sf-blue);
  border-radius: 6px;
  color: #fff;
  background: var(--sf-blue);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.sf-modern-button--secondary {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(255, 255, 255, 0.08);
}

.sf-modern-button:hover,
.sf-modern-button:focus-visible {
  border-color: #0052ad;
  background: #0052ad;
  box-shadow: 0 14px 26px rgba(0, 83, 178, 0.24);
  transform: translateY(-1px);
}

.sf-modern-button--secondary:hover,
.sf-modern-button--secondary:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.18);
}

.sf-modern-button:focus-visible {
  outline: 3px solid rgba(105, 214, 161, 0.42);
  outline-offset: 2px;
}

.sf-modern-hero-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-width: 840px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.sf-modern-hero-pills li {
  position: relative;
  min-height: 58px;
  padding: 11px 14px 11px 34px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(4, 30, 64, 0.45);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.sf-modern-hero-pills li::before {
  position: absolute;
  left: 14px;
  top: 20px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #69d6a1;
  content: "";
}

.sf-modern-proof {
  display: grid;
  gap: 12px;
  align-self: end;
}

.sf-modern-proof div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(5, 42, 90, 0.72);
}

.sf-modern-proof strong {
  display: block;
  margin-bottom: 7px;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.sf-modern-proof span {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.sf-modern-section {
  padding: clamp(64px, 8vw, 112px) 0;
}

.sf-modern-section--quiet {
  background: var(--sf-faint);
}

.sf-modern-section--deep {
  color: #fff;
  background: linear-gradient(135deg, #062c61 0%, #074f9d 58%, #0774b8 100%);
}

.sf-modern-section--proof-standard {
  background: #fff;
}

.sf-modern-section__head {
  max-width: 820px;
  margin-bottom: 34px;
}

.sf-modern-section__head h2,
.sf-modern-split h2,
.sf-modern-final h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.sf-modern-section__head p,
.sf-modern-split > div > p,
.sf-modern-final p {
  max-width: 720px;
  color: var(--sf-muted);
  font-size: 18px;
  line-height: 1.65;
}

.sf-modern-section__head--light p {
  color: rgba(255, 255, 255, 0.78);
}

.sf-modern-section--buyer-routes {
  background: #fff;
}

.sf-modern-backend-content {
  background: #fff;
}

.sf-modern-backend-content__body {
  max-width: 980px;
  color: var(--sf-ink);
  font-size: 18px;
  line-height: 1.7;
}

.sf-modern-backend-content__body > * + * {
  margin-top: 18px;
}

.sf-modern-backend-content__body h2,
.sf-modern-backend-content__body h3,
.sf-modern-backend-content__body h4 {
  margin-bottom: 10px;
  color: var(--sf-ink);
  line-height: 1.18;
}

.sf-modern-backend-content__body h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.sf-modern-backend-content__body h3 {
  font-size: clamp(24px, 3vw, 34px);
}

.sf-modern-backend-content__body p,
.sf-modern-backend-content__body li {
  color: var(--sf-muted);
}

.sf-modern-backend-content__body a {
  color: var(--sf-blue);
  font-weight: 700;
}

.sf-modern-backend-content__body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.sf-modern-buyer-routes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.sf-modern-buyer-routes details {
  overflow: hidden;
  border: 1px solid #cfdde9;
  border-radius: 8px;
  background: #f8fbff;
  box-shadow: 0 18px 38px rgba(7, 53, 111, 0.06);
}

.sf-modern-buyer-routes details[open] {
  background: #fff;
}

.sf-modern-buyer-routes summary {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 22px 48px 22px 22px;
  color: var(--sf-ink);
  cursor: pointer;
  list-style: none;
}

.sf-modern-buyer-routes summary::-webkit-details-marker {
  display: none;
}

.sf-modern-buyer-routes summary::after {
  position: absolute;
  right: 18px;
  top: 20px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--sf-blue);
  font-weight: 800;
  line-height: 1;
  content: "+";
}

.sf-modern-buyer-routes details[open] summary::after {
  content: "-";
}

.sf-modern-buyer-routes summary span {
  margin-bottom: 12px;
  color: var(--sf-blue);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.sf-modern-buyer-routes summary strong {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.18;
}

.sf-modern-buyer-routes summary small {
  margin-top: auto;
  color: var(--sf-muted);
  font-size: 15px;
  line-height: 1.5;
}

.sf-modern-buyer-routes__body {
  padding: 0 22px 22px;
  border-top: 1px solid #d9e6ef;
}

.sf-modern-buyer-routes__body ul {
  display: grid;
  gap: 9px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}

.sf-modern-buyer-routes__body li {
  position: relative;
  padding-left: 18px;
  color: #24425f;
  font-size: 0.95rem;
  line-height: 1.45;
}

.sf-modern-buyer-routes__body li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #69d6a1;
  content: "";
}

.sf-modern-buyer-routes__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--sf-blue);
  border-radius: 6px;
  color: var(--sf-blue);
  background: #fff;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.sf-modern-buyer-routes__link:hover,
.sf-modern-buyer-routes__link:focus-visible {
  color: #fff;
  background: var(--sf-blue);
  outline: 3px solid rgba(105, 214, 161, 0.28);
  outline-offset: 2px;
}

.sf-modern-decision-board-section {
  background: #f7fbff;
}

.sf-modern-decision-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: clamp(22px, 3.5vw, 46px);
  align-items: start;
}

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

.sf-modern-decision-board__cards article {
  display: grid;
  grid-template-columns: minmax(128px, 0.42fr) minmax(0, 1fr);
  overflow: hidden;
  min-height: 244px;
  border: 1px solid #cfdde9;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(7, 53, 111, 0.07);
}

.sf-modern-decision-board__cards img {
  width: 100%;
  height: 100%;
  min-height: 244px;
  object-fit: cover;
}

.sf-modern-decision-board__cards article > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.sf-modern-decision-board__cards span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  border-radius: 6px;
  color: #fff;
  background: var(--sf-blue);
  font-size: 14px;
  font-weight: 800;
}

.sf-modern-decision-board__cards h3 {
  margin-bottom: 0;
  font-size: 21px;
  line-height: 1.18;
}

.sf-modern-decision-board__cards p {
  margin-bottom: 2px;
  color: var(--sf-muted);
  font-size: 15px;
  line-height: 1.55;
}

.sf-modern-decision-board__cards .sf-modern-link {
  margin-top: auto;
}

.sf-modern-decision-board__aside {
  padding: clamp(24px, 3vw, 34px);
  border-radius: 8px;
  color: #fff;
  background: #082f63;
  box-shadow: 0 24px 56px rgba(7, 53, 111, 0.14);
}

.sf-modern-decision-board__aside h3 {
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.08;
}

.sf-modern-decision-board__aside > p {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.sf-modern-decision-board__aside ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sf-modern-decision-board__aside li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.sf-modern-decision-board__aside li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #69d6a1;
  content: "";
}

.sf-modern-decision-board__shortcuts {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.sf-modern-decision-board__shortcuts a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  text-decoration: none;
}

.sf-modern-decision-board__shortcuts a::after {
  content: ">";
}

.sf-modern-decision-board__shortcuts a:hover,
.sf-modern-decision-board__shortcuts a:focus-visible {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.18);
  outline: 3px solid rgba(105, 214, 161, 0.28);
  outline-offset: 2px;
}

.sf-modern-advantage-showcase {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.96fr);
  gap: clamp(22px, 3vw, 42px);
  margin-bottom: 24px;
}

.sf-modern-advantage-showcase__media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #cfdde9;
  border-radius: 8px;
  background: #082f63;
  box-shadow: 0 24px 56px rgba(7, 53, 111, 0.12);
}

.sf-modern-advantage-showcase__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.sf-modern-advantage-showcase__media::after {
  display: none;
}

.sf-modern-advantage-showcase__metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
  background: #082f63;
}

.sf-modern-advantage-showcase__metrics div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(3, 30, 68, 0.72);
  backdrop-filter: blur(8px);
}

.sf-modern-advantage-showcase__metrics strong,
.sf-modern-advantage-showcase__metrics span,
.sf-modern-advantage-showcase__metrics small {
  display: block;
}

.sf-modern-advantage-showcase__metrics strong {
  margin-bottom: 6px;
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1;
}

.sf-modern-advantage-showcase__metrics span {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  line-height: 1.2;
}

.sf-modern-advantage-showcase__metrics small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.3;
}

.sf-modern-advantage-showcase__media figcaption {
  padding: 0 16px 16px;
  color: rgba(255, 255, 255, 0.78);
  background: #082f63;
  font-size: 14px;
  line-height: 1.45;
}

.sf-modern-advantage-showcase__copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid #d6e6f1;
  border-radius: 8px;
  background: #fff;
}

.sf-modern-advantage-showcase__copy h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.07;
}

.sf-modern-advantage-showcase__copy > p {
  margin-bottom: 24px;
  color: var(--sf-muted);
  font-size: 18px;
  line-height: 1.65;
}

.sf-modern-advantage-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sf-modern-advantage-flow h4 {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  color: var(--sf-blue-deep);
  font-size: 18px;
}

.sf-modern-advantage-flow article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px;
  border: 1px solid #d9e6ef;
  border-radius: 8px;
  background: #f7fbfd;
}

.sf-modern-advantage-flow article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #fff;
  background: var(--sf-blue);
  font-weight: 800;
}

.sf-modern-advantage-flow h5 {
  margin: 0 0 5px;
  color: var(--sf-ink);
  font-size: 17px;
  line-height: 1.25;
}

.sf-modern-advantage-flow p {
  margin: 0;
  color: var(--sf-muted);
  line-height: 1.55;
}

.sf-modern-advantage-evidence {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 18px;
  margin-bottom: 22px;
}

.sf-modern-advantage-evidence__strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.sf-modern-advantage-evidence__strip article {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--sf-blue-deep);
}

.sf-modern-advantage-evidence__strip img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  transition: transform 180ms ease;
}

.sf-modern-advantage-evidence__strip article::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 28, 62, 0.76), rgba(3, 28, 62, 0.04) 62%);
}

.sf-modern-advantage-evidence__strip strong {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
}

.sf-modern-advantage-evidence__strip article:hover img {
  transform: scale(1.035);
}

.sf-modern-advantage-evidence__buyer {
  padding: 24px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(145deg, #07356f, #0a6d8f);
}

.sf-modern-advantage-evidence__buyer h3 {
  margin-bottom: 16px;
  font-size: 22px;
  line-height: 1.2;
}

.sf-modern-advantage-evidence__buyer ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.sf-modern-advantage-evidence__buyer li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.5;
}

.sf-modern-advantage-evidence__buyer li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: #69d6a1;
}

.sf-modern-paths,
.sf-modern-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.sf-modern-evidence {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.sf-modern-advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sf-modern-advantage-grid article {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 20px;
  border: 1px solid #cfdde9;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(7, 53, 111, 0.06);
}

.sf-modern-advantage-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--sf-blue);
  font-size: clamp(27px, 2.5vw, 38px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.sf-modern-advantage-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--sf-ink);
  font-weight: 700;
  line-height: 1.25;
}

.sf-modern-advantage-grid p {
  flex: 1;
  margin-bottom: 0;
  color: var(--sf-muted);
  font-size: 15px;
  line-height: 1.55;
}

.sf-modern-supply-chain-section {
  background: #fff;
}

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

.sf-modern-supply-chain article {
  overflow: hidden;
  border: 1px solid var(--sf-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(7, 53, 111, 0.06);
}

.sf-modern-supply-chain img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.sf-modern-supply-chain article > div {
  padding: 22px;
}

.sf-modern-supply-chain h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.sf-modern-supply-chain p {
  margin-bottom: 0;
  color: var(--sf-muted);
  line-height: 1.6;
}

.sf-modern-section.sf-modern-vr-tour {
  padding: clamp(30px, 3.4vw, 50px) 0;
  background: #eef7f2;
}

.sf-modern-vr-tour__inner {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(20px, 2.7vw, 36px);
}

.sf-modern-vr-tour__media {
  min-height: 0;
}

.sf-modern-vr-tour__media video,
.sf-modern-vr-tour__media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(7, 53, 111, 0.14);
  border-radius: 8px;
  object-fit: cover;
  background: var(--sf-blue-deep);
  box-shadow: 0 22px 54px rgba(7, 53, 111, 0.14);
}

.sf-modern-vr-tour__content h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3.1vw, 40px);
  line-height: 1.08;
}

.sf-modern-vr-tour__content .sf-modern-kicker {
  margin-bottom: 12px;
}

.sf-modern-vr-tour__content > p {
  max-width: 660px;
  margin-bottom: 14px;
  color: var(--sf-muted);
  font-size: 16px;
  line-height: 1.52;
}

.sf-modern-vr-tour__points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.sf-modern-vr-tour__points article {
  padding: 12px;
  border: 1px solid #cbded7;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.sf-modern-vr-tour__points h3 {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.25;
}

.sf-modern-vr-tour__points p {
  margin-bottom: 0;
  color: var(--sf-muted);
  font-size: 13px;
  line-height: 1.45;
}

.sf-modern-vr-tour__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sf-modern-paths article,
.sf-modern-paths a,
.sf-modern-process article,
.sf-modern-faq details {
  border: 1px solid var(--sf-line);
  border-radius: 8px;
  background: #fff;
}

.sf-modern-paths article,
.sf-modern-paths a {
  display: block;
  padding: 28px;
  color: inherit;
  text-decoration: none;
}

.sf-modern-paths h3,
.sf-modern-process h3,
.sf-modern-category-grid h3,
.sf-modern-evidence h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.2;
}

.sf-modern-paths p,
.sf-modern-process p,
.sf-modern-category-grid p,
.sf-modern-evidence p,
.sf-modern-faq p {
  color: var(--sf-muted);
  line-height: 1.6;
}

.sf-modern-product-map-section {
  background: #fff;
}

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

.sf-modern-product-map article,
.sf-modern-product-map a {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--sf-line);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 53, 111, 0.07);
}

.sf-modern-product-map img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.sf-modern-product-map article > div,
.sf-modern-product-map a > div {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 22px;
}

.sf-modern-product-map span {
  margin-bottom: 10px;
  color: var(--sf-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sf-modern-product-map h3 {
  margin-bottom: 10px;
  color: var(--sf-ink);
  font-size: 22px;
  line-height: 1.18;
}

.sf-modern-product-map p {
  margin-bottom: 18px;
  color: var(--sf-muted);
  line-height: 1.6;
}

.sf-modern-product-map ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.sf-modern-product-map li {
  position: relative;
  padding-left: 18px;
  color: #24425f;
  font-size: 0.95rem;
  line-height: 1.45;
}

.sf-modern-product-map li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sf-blue);
  content: "";
}

.sf-modern-group-profile-map-section {
  background: #f8fbff;
}

.sf-modern-group-profile-map {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.sf-modern-group-profile-map article,
.sf-modern-group-profile-map a {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid #cfdde9;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 53, 111, 0.07);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.sf-modern-group-profile-map a:hover,
.sf-modern-group-profile-map a:focus-visible {
  border-color: rgba(7, 95, 197, 0.48);
  box-shadow: 0 24px 54px rgba(7, 53, 111, 0.12);
  outline: 3px solid rgba(105, 214, 161, 0.22);
  outline-offset: 2px;
  transform: translateY(-2px);
}

.sf-modern-group-profile-map img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.sf-modern-group-profile-map article > div,
.sf-modern-group-profile-map a > div {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 22px;
}

.sf-modern-group-profile-map span {
  margin-bottom: 10px;
  color: var(--sf-blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sf-modern-group-profile-map h3 {
  margin-bottom: 10px;
  color: var(--sf-ink);
  font-size: 22px;
  line-height: 1.18;
}

.sf-modern-group-profile-map p {
  margin-bottom: 18px;
  color: var(--sf-muted);
  line-height: 1.58;
}

.sf-modern-group-profile-map ul {
  display: grid;
  gap: 8px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.sf-modern-group-profile-map li {
  position: relative;
  padding-left: 18px;
  color: #24425f;
  font-size: 0.95rem;
  line-height: 1.42;
}

.sf-modern-group-profile-map li::before {
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sf-green);
  content: "";
}

.sf-modern-lab-proof-section {
  background: #f8fbff;
}

.sf-modern-lab-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  margin-bottom: 22px;
}

.sf-modern-lab-proof__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid #cfdde9;
  border-radius: 8px;
  background: #082f63;
  box-shadow: 0 20px 48px rgba(7, 53, 111, 0.1);
}

.sf-modern-lab-proof__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.sf-modern-lab-proof__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 3.4vw, 42px);
  border: 1px solid #d6e6f1;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 53, 111, 0.06);
}

.sf-modern-lab-proof__copy .sf-modern-kicker {
  align-self: flex-start;
  border-color: #c7dced;
  color: var(--sf-blue);
  background: #f4f9fd;
}

.sf-modern-lab-proof__copy h3 {
  margin-bottom: 12px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
}

.sf-modern-lab-proof__copy > p {
  margin-bottom: 22px;
  color: var(--sf-muted);
  font-size: 17px;
  line-height: 1.62;
}

.sf-modern-lab-recognitions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.sf-modern-lab-recognitions article {
  padding: 16px;
  border: 1px solid #d9e6ef;
  border-radius: 8px;
  background: #f7fbfd;
}

.sf-modern-lab-recognitions strong {
  display: block;
  margin-bottom: 7px;
  color: var(--sf-blue);
  font-size: 26px;
  line-height: 1;
}

.sf-modern-lab-recognitions span {
  color: #24425f;
  font-size: 0.94rem;
  line-height: 1.42;
}

.sf-modern-apparatus {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid #cfdde9;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 53, 111, 0.06);
}

.sf-modern-apparatus__head {
  max-width: 760px;
  margin-bottom: 18px;
}

.sf-modern-apparatus__head h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.12;
}

.sf-modern-apparatus__head p {
  margin-bottom: 0;
  color: var(--sf-muted);
  line-height: 1.62;
}

.sf-modern-apparatus-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sf-modern-apparatus-grid article {
  flex: 1 1 230px;
  min-width: min(100%, 230px);
  padding: 16px;
  border: 1px solid #d9e6ef;
  border-radius: 8px;
  background: #f8fbff;
}

.sf-modern-apparatus-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 30px;
  margin-bottom: 12px;
  border-radius: 6px;
  color: #fff;
  background: var(--sf-blue);
  font-size: 13px;
  font-weight: 800;
}

.sf-modern-apparatus-grid h4 {
  margin: 0 0 8px;
  color: var(--sf-ink);
  font-size: 18px;
  line-height: 1.2;
}

.sf-modern-apparatus-grid p {
  margin-bottom: 0;
  color: var(--sf-muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.sf-modern-direction-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: 16px;
  padding: 7px 10px;
  border: 1px solid #c7dced;
  border-radius: 6px;
  color: var(--sf-blue-deep);
  background: #f4f9fd;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.25;
}

.sf-modern-category-grid article,
.sf-modern-category-grid a,
.sf-modern-evidence article {
  display: block;
  overflow: hidden;
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background: #fff;
}

.sf-modern-category-grid img,
.sf-modern-evidence img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.sf-modern-category-grid article > div,
.sf-modern-category-grid a > div,
.sf-modern-evidence article > div {
  padding: 22px;
}

.sf-modern-evidence article {
  color: var(--sf-ink);
}

@media (min-width: 901px) {
  .sf-modern-advantage-grid > :nth-last-child(1):nth-child(3n + 1),
  .sf-modern-paths > :nth-last-child(1):nth-child(3n + 1),
  .sf-modern-product-map > :nth-last-child(1):nth-child(3n + 1),
  .sf-modern-category-grid > :nth-last-child(1):nth-child(3n + 1),
  .sf-modern-supply-chain > :nth-last-child(1):nth-child(3n + 1) {
    grid-column: span 3;
  }

  .sf-modern-advantage-grid > :nth-last-child(2):nth-child(3n + 1),
  .sf-modern-paths > :nth-last-child(2):nth-child(3n + 1),
  .sf-modern-product-map > :nth-last-child(2):nth-child(3n + 1),
  .sf-modern-category-grid > :nth-last-child(2):nth-child(3n + 1),
  .sf-modern-supply-chain > :nth-last-child(2):nth-child(3n + 1) {
    grid-column: span 2;
  }
}

.sf-modern-split {
  display: grid;
  grid-template-columns: minmax(240px, 0.44fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 76px);
}

.sf-modern-process {
  display: grid;
  gap: 14px;
}

.sf-modern-process article {
  padding: 22px;
}

.sf-modern-steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.sf-modern-steps li {
  position: relative;
  padding: 18px 20px 18px 64px;
  border: 1px solid var(--sf-line);
  border-radius: 8px;
  background: #fff;
  color: var(--sf-ink);
  font-weight: 700;
  counter-increment: step;
}

.sf-modern-steps li::before {
  position: absolute;
  left: 18px;
  top: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--sf-blue);
  content: counter(step);
  transform: translateY(-50%);
}

.sf-modern-section--faq {
  background: #fff;
}

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

.sf-modern-faq details {
  padding: 20px 22px;
}

.sf-modern-faq summary {
  color: var(--sf-ink);
  font-weight: 700;
  cursor: pointer;
}

.sf-modern-faq p {
  margin: 12px 0 0;
}

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

.sf-modern-proof-standard article {
  min-height: 160px;
  padding: 22px;
  border: 1px solid #cfdde9;
  border-radius: 8px;
  background: #f7fbff;
}

.sf-modern-proof-standard h3 {
  margin-bottom: 9px;
  font-size: 20px;
}

.sf-modern-proof-standard p {
  margin-bottom: 0;
  color: var(--sf-muted);
  line-height: 1.6;
}

.sf-modern-product-brief {
  background: #eff6fc;
}

.sf-modern-product-brief__inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 0.62fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
}

.sf-modern-product-brief__copy {
  display: flex;
  flex-direction: column;
}

.sf-modern-product-brief__copy > h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
}

.sf-modern-product-brief__copy > p {
  max-width: 760px;
  color: var(--sf-muted);
  font-size: 18px;
  line-height: 1.65;
}

.sf-modern-product-brief__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.sf-modern-product-brief__cards article {
  min-height: 132px;
  padding: 20px;
  border: 1px solid #cfdde9;
  border-radius: 8px;
  background: #fff;
}

.sf-modern-product-brief__cards h3 {
  margin-bottom: 9px;
  font-size: 20px;
}

.sf-modern-product-brief__cards p {
  margin-bottom: 0;
  color: var(--sf-muted);
  line-height: 1.6;
}

.sf-modern-product-brief__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.sf-modern-product-brief__link {
  color: var(--sf-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sf-modern-route-brief__support {
  margin-top: 22px;
  padding: 22px;
  border: 1px solid #cbdde8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(7, 53, 111, 0.06);
}

.sf-modern-route-brief .sf-modern-product-brief__copy {
  justify-content: space-between;
}

.sf-modern-route-brief__support h3 {
  margin-bottom: 16px;
  color: var(--sf-blue-deep);
  font-size: 22px;
  line-height: 1.2;
}

.sf-modern-route-brief__support > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sf-modern-route-brief__support article {
  padding: 14px;
  border: 1px solid #d9e6ef;
  border-radius: 8px;
  background: #f8fbff;
}

.sf-modern-route-brief__support article:first-child {
  padding-top: 14px;
  border-top: 1px solid #d9e6ef;
}

.sf-modern-route-brief__support strong {
  display: block;
  margin-bottom: 5px;
  color: var(--sf-ink);
  line-height: 1.25;
}

.sf-modern-route-brief__support p {
  margin: 0;
  color: var(--sf-muted);
  line-height: 1.55;
}

.sf-modern-product-form {
  box-shadow: 0 18px 38px rgba(7, 53, 111, 0.1);
}

.sf-modern-product-form textarea {
  min-height: 132px;
}

.sf-modern-contact-panel {
  background: #eff6fc;
}

.sf-modern-contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 0.7fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.sf-modern-link {
  color: var(--sf-blue);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sf-modern-contact-routes {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.sf-modern-contact-routes article {
  padding: 16px;
  border: 1px solid rgba(15, 91, 170, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.sf-modern-contact-routes h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.sf-modern-contact-routes p {
  margin: 0;
  color: var(--sf-muted);
  font-size: 0.95rem;
}

.sf-modern-form {
  padding: 26px;
  border-radius: 8px;
  background: #fff;
}

.sf-modern-form label {
  display: grid;
  gap: 7px;
  color: var(--sf-ink);
  font-weight: 700;
}

.sf-modern-honeypot {
  position: absolute;
  left: -9999px;
}

.sf-modern-final {
  padding: clamp(56px, 7vw, 86px) 0;
  color: #fff;
  background: #082f63;
}

.sf-modern-final__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.sf-modern-final__copy {
  max-width: 760px;
}

.sf-modern-final__actions {
  display: flex;
  flex: 0 1 520px;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.sf-modern-final h2,
.sf-modern-final p {
  margin-bottom: 0;
}

.sf-modern-final p {
  color: rgba(255, 255, 255, 0.78);
}

.sf-modern-mobile-sticky-cta {
  display: none;
}

@media (max-width: 900px) {
  .sf-modern-hero__inner,
  .sf-modern-split,
  .sf-modern-product-brief__inner,
  .sf-modern-contact,
  .sf-modern-vr-tour__inner,
  .sf-modern-lab-proof,
  .sf-modern-decision-board,
  .sf-modern-advantage-showcase,
  .sf-modern-advantage-evidence {
    grid-template-columns: 1fr;
  }

  .sf-modern-hero__inner {
    align-items: end;
  }

  .sf-modern-proof {
    grid-template-columns: 1fr;
  }

  .sf-modern-proof-standard {
    grid-template-columns: 1fr;
  }

  .sf-modern-buyer-routes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sf-modern-decision-board__cards {
    grid-template-columns: 1fr;
  }

  .sf-modern-advantage-grid,
  .sf-modern-supply-chain,
  .sf-modern-paths,
  .sf-modern-product-map,
  .sf-modern-group-profile-map,
  .sf-modern-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sf-modern-lab-recognitions {
    grid-template-columns: 1fr;
  }

  .sf-modern-advantage-evidence__strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sf-modern-advantage-flow,
  .sf-modern-vr-tour__points {
    grid-template-columns: 1fr;
  }

  .sf-modern-product-brief__cards {
    grid-template-columns: 1fr;
  }

  .sf-modern-route-brief__support > div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .sf-modern-hero {
    min-height: 720px;
  }

  .sf-modern-hero h1 {
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.04;
    overflow-wrap: anywhere;
  }

  .sf-modern-summary {
    font-size: 16px;
    line-height: 1.55;
  }

  .sf-modern-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .sf-modern-hero-pills,
  .sf-modern-buyer-routes {
    grid-template-columns: 1fr;
  }

  .sf-modern-decision-board__cards article {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .sf-modern-decision-board__cards img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .sf-modern-hero-pills li,
  .sf-modern-buyer-routes summary {
    min-height: 0;
  }

  .sf-modern-final__actions {
    flex: 1 1 100%;
    flex-direction: column;
    justify-content: stretch;
  }

  .sf-modern-vr-tour__actions {
    flex-direction: column;
  }

  .sf-modern-advantage-showcase__media img {
    min-height: 0;
  }

  .sf-modern-advantage-showcase__media::after {
    display: none;
  }

  .sf-modern-advantage-showcase__metrics,
  .sf-modern-advantage-showcase__media figcaption {
    position: static;
  }

  .sf-modern-advantage-showcase__metrics {
    grid-template-columns: 1fr;
    padding: 12px;
    background: #082f63;
  }

  .sf-modern-advantage-showcase__media figcaption {
    padding: 0 14px 16px;
    color: rgba(255, 255, 255, 0.76);
    background: #082f63;
  }

  .sf-modern-advantage-showcase__copy {
    padding: 22px;
  }

  .sf-modern-advantage-flow article {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 14px;
  }

  .sf-modern-advantage-flow article > span {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .sf-modern-advantage-evidence__strip {
    grid-template-columns: 1fr;
  }

  .sf-modern-advantage-grid,
  .sf-modern-supply-chain,
  .sf-modern-paths,
  .sf-modern-product-map,
  .sf-modern-group-profile-map,
  .sf-modern-category-grid {
    grid-template-columns: 1fr;
  }

  .sf-modern-group-profile-map article > div,
  .sf-modern-group-profile-map a > div {
    min-height: 0;
    padding: 20px;
  }

  .sf-modern-product-map article > div,
  .sf-modern-product-map a > div {
    min-height: 0;
    padding: 20px;
  }

  .sf-modern-lab-proof__media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .sf-modern-lab-proof__copy,
  .sf-modern-apparatus {
    padding: 20px;
  }

  .sf-modern-vr-tour {
    padding: 34px 0;
  }

  .sf-modern-vr-tour__media video,
  .sf-modern-vr-tour__media img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .sf-modern-button {
    width: 100%;
  }

  .sf-modern-mobile-sticky-cta {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(12, 55, 101, 0.16);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 -16px 34px rgba(7, 53, 111, 0.16);
    backdrop-filter: blur(12px);
  }

  .sf-modern-mobile-sticky-cta a,
  .sf-modern-mobile-sticky-cta button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 1px solid var(--sf-blue);
    border-radius: 6px;
    color: #fff;
    background: var(--sf-blue);
    font: inherit;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
  }

  .sf-modern-mobile-sticky-cta a {
    border-color: #07884f;
    background: #07884f;
  }

  .sf-modern-section {
    padding: 52px 0;
  }

  .sf-modern-section.sf-modern-vr-tour {
    padding: 34px 0;
  }

  .sf-modern-paths article,
  .sf-modern-process article,
  .sf-modern-advantage-grid article,
  .sf-modern-form {
    padding: 20px;
  }
}

.sf-home-geo-page .sf-modern-hero__inner {
  grid-template-columns: minmax(0, 0.9fr);
}

.sf-home-geo-process .sf-modern-split {
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
}

.sf-home-geo-process h2 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 1.06;
}

.sf-home-geo-process .sf-modern-split > div {
  position: sticky;
  top: 92px;
}

.sf-home-geo-process .sf-modern-split > div p {
  max-width: 34ch;
  color: var(--sf-muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.65;
}

.sf-home-geo-process .sf-modern-steps {
  position: relative;
  gap: 14px;
}

.sf-home-geo-process .sf-modern-steps::before {
  position: absolute;
  top: 31px;
  bottom: 31px;
  left: 27px;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, rgba(7, 95, 197, 0.22), rgba(73, 160, 120, 0.38));
}

.sf-home-geo-process .sf-modern-steps li {
  display: grid;
  min-height: 0;
  padding: 18px 22px 18px 76px;
  overflow: hidden;
  box-shadow: none;
}

.sf-home-geo-process .sf-modern-steps li::before {
  left: 12px;
  top: 18px;
  z-index: 1;
  width: 32px;
  height: 32px;
  font-size: 15px;
  transform: none;
}

.sf-home-geo-step-title {
  color: var(--sf-ink);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.25;
}

.sf-home-geo-step-copy {
  display: block;
  max-width: 72ch;
  margin-top: 8px;
  color: var(--sf-muted);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
}

.sf-home-geo-market-routes {
  position: relative;
}

.sf-home-geo-proof-strip {
  padding: 22px 0;
  border-bottom: 1px solid var(--sf-line);
  background: var(--sf-faint);
}

.sf-home-geo-proof-strip__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.sf-home-geo-proof-strip article {
  padding: 18px;
  border: 1px solid var(--sf-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(7, 53, 111, 0.07);
}

.sf-home-geo-proof-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--sf-blue-deep);
  font-size: 20px;
  line-height: 1.15;
}

.sf-home-geo-proof-strip span {
  display: block;
  color: var(--sf-muted);
  font-size: 14px;
  line-height: 1.45;
}

.sf-home-v6-materials {
  border-bottom: 1px solid var(--sf-line);
  background: var(--sf-panel);
}

.sf-home-v6-materials__chapters {
  display: grid;
  gap: clamp(22px, 4vw, 42px);
}

.sf-home-v6-materials__chapter {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: start;
  min-width: 0;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--sf-line);
  border-radius: 16px;
  background: var(--sf-faint);
}

.sf-home-v6-materials__chapter:nth-child(even) .sf-home-v6-materials__copy {
  order: 2;
}

.sf-home-v6-materials__chapter:nth-child(even) .sf-home-v6-materials__media {
  order: 1;
}

.sf-home-v6-materials__copy {
  min-width: 0;
}

.sf-home-v6-materials__copy h3 {
  margin-bottom: 14px;
  color: var(--sf-blue-deep);
  font-size: clamp(24px, 2.7vw, 38px);
  line-height: 1.12;
}

.sf-home-v6-materials__copy > p {
  margin-bottom: 20px;
  color: var(--sf-muted);
  font-size: 17px;
  line-height: 1.65;
}

.sf-home-v6-materials__facts {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--sf-ink);
}

.sf-home-v6-materials__facts li {
  padding-left: 4px;
  overflow-wrap: anywhere;
  line-height: 1.55;
}

.sf-home-v6-materials__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.sf-home-v6-materials .sf-home-v6-materials__link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 9px 12px;
  border: 1px solid var(--sf-line);
  border-radius: 6px;
  background: var(--sf-panel);
  text-decoration: none;
}

.sf-home-v6-materials .sf-home-v6-materials__link:hover,
.sf-home-v6-materials .sf-home-v6-materials__link:focus-visible {
  border-color: var(--sf-blue);
  color: var(--sf-blue-deep);
  text-decoration: underline;
}

.sf-home-v6-materials__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.sf-home-v6-materials__media figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--sf-line);
  border-radius: 12px;
  background: var(--sf-panel);
}

.sf-home-v6-materials__media figure:only-child {
  grid-column: 1 / -1;
}

.sf-home-v6-materials__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--sf-panel);
}

.sf-home-v6-materials__media figcaption {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--sf-line);
}

.sf-home-v6-materials .sf-home-v6-materials__media-title {
  display: block;
  color: var(--sf-blue-deep);
  font-size: 15px;
  line-height: 1.4;
}

.sf-home-v6-materials .sf-home-v6-materials__media-caption {
  display: block;
  margin-top: 6px;
  color: var(--sf-muted);
  font-size: 13px;
  line-height: 1.5;
}

.sf-home-geo-eyebrow {
  margin-bottom: 10px;
  color: var(--sf-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.sf-home-geo-route-grid,
.sf-home-geo-market-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.sf-home-geo-market-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sf-home-geo-route-grid article,
.sf-home-geo-market-grid article {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100%;
  padding: 22px;
  border: 1px solid var(--sf-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(7, 53, 111, 0.07);
}

.sf-home-geo-route-grid article > span {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 9px;
  border-radius: 999px;
  color: #07523a;
  background: rgba(73, 160, 120, 0.14);
  font-size: 12px;
  font-weight: 800;
}

.sf-home-geo-route-grid h3,
.sf-home-geo-market-grid h3 {
  margin-bottom: 14px;
  color: var(--sf-blue-deep);
  font-size: 20px;
  line-height: 1.2;
}

.sf-home-geo-route-grid dl {
  display: grid;
  gap: 12px;
  margin: 0 0 18px;
}

.sf-home-geo-route-grid dl div {
  min-width: 0;
}

.sf-home-geo-route-grid dt {
  margin-bottom: 4px;
  color: var(--sf-blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.sf-home-geo-route-grid dd,
.sf-home-geo-market-grid p {
  margin: 0;
  color: var(--sf-muted);
  font-size: 14px;
  line-height: 1.55;
}

.sf-home-geo-route-grid .sf-modern-link,
.sf-home-geo-market-grid .sf-modern-link {
  margin-top: auto;
}

.sf-home-geo-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--sf-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 34px rgba(7, 53, 111, 0.08);
}

.sf-home-geo-comparison table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
}

.sf-home-geo-comparison th,
.sf-home-geo-comparison td {
  padding: 18px;
  border-bottom: 1px solid var(--sf-line);
  text-align: left;
  vertical-align: top;
  line-height: 1.5;
}

.sf-home-geo-comparison thead th {
  color: #fff;
  background: var(--sf-blue-deep);
  font-size: 14px;
}

.sf-home-geo-comparison tbody th {
  width: 20%;
  color: var(--sf-blue-deep);
  font-weight: 800;
}

.sf-home-geo-comparison tbody td {
  color: var(--sf-muted);
}

.sf-home-geo-support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.sf-home-geo-support-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid var(--sf-line);
  border-radius: 6px;
  color: var(--sf-blue-deep);
  background: #fff;
  font-weight: 800;
  text-decoration: none;
}

.sf-home-geo-note {
  margin: 22px 0 0;
  padding: 16px 18px;
  border-left: 4px solid var(--sf-green);
  border-radius: 8px;
  color: var(--sf-muted);
  background: #fff;
  line-height: 1.55;
}

.sf-home-geo-final-cta {
  background: linear-gradient(180deg, #fff 0%, var(--sf-faint) 100%);
}

@media (max-width: 1180px) {
  .sf-home-geo-proof-strip__grid,
  .sf-home-geo-route-grid,
  .sf-home-geo-market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sf-home-geo-process .sf-modern-split {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .sf-home-geo-process .sf-modern-split > div {
    position: static;
  }

  .sf-home-geo-process h2 {
    max-width: 16ch;
  }
}

@media (max-width: 860px) {
  .sf-home-v6-materials__chapter {
    grid-template-columns: 1fr;
  }

  .sf-home-v6-materials__chapter:nth-child(even) .sf-home-v6-materials__copy,
  .sf-home-v6-materials__chapter:nth-child(even) .sf-home-v6-materials__media {
    order: 0;
  }
}

@media (max-width: 680px) {
  .sf-home-v6-materials .sf-modern-section__head {
    margin-bottom: 24px;
  }

  .sf-home-v6-materials__chapters {
    gap: 18px;
  }

  .sf-home-v6-materials__chapter {
    gap: 22px;
    padding: 18px;
  }

  .sf-home-v6-materials__media {
    grid-template-columns: 1fr;
  }

  .sf-home-v6-materials__media figure:only-child {
    grid-column: auto;
  }

  .sf-home-v6-materials__media figcaption {
    padding: 12px 14px 14px;
  }

  .sf-home-geo-proof-strip__grid,
  .sf-home-geo-route-grid,
  .sf-home-geo-market-grid {
    grid-template-columns: 1fr;
  }

  .sf-home-geo-proof-strip article,
  .sf-home-geo-route-grid article,
  .sf-home-geo-market-grid article {
    padding: 18px;
  }

  .sf-home-geo-comparison th,
  .sf-home-geo-comparison td {
    padding: 14px;
  }

  .sf-home-geo-process h2 {
    max-width: 100%;
    font-size: clamp(34px, 12vw, 46px);
  }

  .sf-home-geo-process .sf-modern-steps::before {
    left: 23px;
  }

  .sf-home-geo-process .sf-modern-steps li {
    padding: 16px 16px 16px 62px;
  }

  .sf-home-geo-process .sf-modern-steps li::before {
    left: 8px;
  }
}
