.sh-home {
  --sh-ink: #081528;
  --sh-ink-soft: #102642;
  --sh-blue: #1268f3;
  --sh-blue-dark: #0849b6;
  --sh-lime: #9ce234;
  --sh-lime-dark: #5f9f12;
  --sh-paper: #fff;
  --sh-cloud: #f3f7fb;
  --sh-cloud-blue: #edf4fc;
  --sh-line: #d9e3ed;
  --sh-muted: #5d6d80;
  --sh-radius-sm: 12px;
  --sh-radius-md: 20px;
  --sh-radius-lg: 30px;
  --sh-container: min(1240px, calc(100vw - 48px));
  background: #fff;
  color: var(--sh-ink);
}

.sh-home *,
.sh-home *::before,
.sh-home *::after {
  box-sizing: border-box;
}

.sh-home .sh-main {
  min-height: 70vh;
  overflow: hidden;
  outline: 0;
}

.sh-home img,
.sh-home svg {
  max-width: 100%;
}

.sh-home a {
  text-decoration: none;
}

.sh-container {
  width: var(--sh-container);
  margin-inline: auto;
}

.sh-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.sh-kicker,
.sh-status {
  margin: 0 0 13px;
  color: var(--sh-blue-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.sh-kicker-light {
  color: var(--sh-lime);
}

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

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

.sh-section-heading-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(300px, .55fr);
  align-items: end;
  gap: clamp(34px, 8vw, 110px);
}

.sh-section-heading h2,
.sh-process-head h2,
.sh-quality-copy h2,
.sh-region-copy h2,
.sh-faq-intro h2,
.sh-contact-intro h2 {
  margin: 0;
  color: var(--sh-ink);
  font-size: clamp(2.15rem, 4.4vw, 4.45rem);
  line-height: .99;
  letter-spacing: -.058em;
  text-wrap: balance;
}

.sh-section-heading > p:not(.sh-kicker),
.sh-section-heading-split > p,
.sh-process-head > p,
.sh-quality-copy > p,
.sh-region-copy > p,
.sh-faq-intro > p,
.sh-contact-intro > p {
  margin: 18px 0 0;
  color: var(--sh-muted);
  font-size: 1rem;
  line-height: 1.72;
  text-wrap: pretty;
}

.sh-section-heading-split > p {
  margin: 0 0 3px;
}

.sh-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 7vw, 102px) 0 0;
  background:
    linear-gradient(90deg, rgba(18, 104, 243, .045) 1px, transparent 1px),
    linear-gradient(rgba(18, 104, 243, .045) 1px, transparent 1px),
    radial-gradient(circle at 11% 8%, rgba(156, 226, 52, .13), transparent 23%),
    linear-gradient(180deg, #f9fbfd 0%, #edf4fa 100%);
  background-size: 48px 48px, 48px 48px, auto, auto;
}

/* Immersive full-bleed stage: copy sits left on the page ground, the image bleeds to the right viewport edge. */
.sh-hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(500px, 72vh, 760px);
}

.sh-hero-grid {
  position: relative;
  z-index: 2;
}

.sh-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: clamp(18px, 3vw, 40px) 0 clamp(36px, 5vw, 60px);
}

.sh-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 21px;
  color: #3c5a24;
}

.sh-status span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sh-lime);
  box-shadow: 0 0 0 5px rgba(156, 226, 52, .17);
}

.sh-hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--sh-ink);
  font-size: clamp(3.15rem, 5.45vw, 5.65rem);
  font-weight: 850;
  line-height: .94;
  letter-spacing: -.073em;
  text-wrap: balance;
}

.sh-hero h1 em {
  display: block;
  color: var(--sh-blue);
  font-style: normal;
}

.sh-hero-lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: #465a70;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.sh-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.sh-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid transparent;
  border-radius: var(--sh-radius-sm);
  padding: 0 19px;
  font-size: .86rem;
  font-weight: 860;
  line-height: 1.2;
  text-align: center;
  transition-property: transform, background-color, border-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.sh-button:hover {
  transform: translateY(-2px);
}

.sh-button:active,
.sh-submit:active,
.sh-audience-card:active {
  transform: scale(.98);
}

.sh-button-primary {
  color: #fff;
  background: var(--sh-blue);
  box-shadow: 0 14px 30px rgba(18, 104, 243, .25);
}

.sh-button-primary:hover {
  background: var(--sh-blue-dark);
  box-shadow: 0 18px 36px rgba(18, 104, 243, .3);
}

.sh-button-secondary {
  color: var(--sh-ink);
  border-color: #cbd8e5;
  background: rgba(255, 255, 255, .72);
}

.sh-button-secondary:hover {
  border-color: #aebfd0;
  background: #fff;
}

.sh-hero-audiences {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  margin: 28px 0 0;
  padding: 0;
  color: #526579;
  list-style: none;
}

.sh-hero-audiences li {
  position: relative;
  padding-left: 17px;
  font-size: .76rem;
  font-weight: 820;
}

.sh-hero-audiences li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .38em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--sh-blue);
}

.sh-hero-visual {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: min(58vw, 60%);
  min-width: 0;
  margin: 0;
}

.sh-hero-image-frame {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, .4);
}

/* Left scrim: blend the image edge into the page background behind the copy. */
.sh-hero-image-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, #f4f8fc 0%, rgba(244, 248, 252, .82) 14%, rgba(244, 248, 252, 0) 46%);
}

.sh-hero-image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 62% center;
}

.sh-hero-visual figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: 280px;
  display: grid;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 14px;
  padding: 13px 15px;
  color: #fff;
  background: rgba(8, 21, 40, .9);
  backdrop-filter: blur(10px);
}

.sh-hero-visual figcaption span {
  color: var(--sh-lime);
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.sh-hero-visual figcaption strong {
  font-size: .82rem;
  line-height: 1.35;
  text-wrap: pretty;
}

.sh-trust-wrap {
  position: relative;
  z-index: 3;
}

.sh-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid #cad7e4;
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  background: #fff;
  box-shadow: 0 -8px 32px rgba(8, 21, 40, .06);
}

.sh-trust-bar article {
  min-width: 0;
  min-height: 96px;
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  padding: 18px 20px;
}

.sh-trust-bar article + article {
  border-left: 1px solid var(--sh-line);
}

.sh-trust-bar article > span {
  align-self: start;
  padding-top: 3px;
  color: var(--sh-blue);
  font-size: .7rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
}

.sh-trust-bar article div {
  min-width: 0;
}

.sh-trust-bar strong {
  display: block;
  color: var(--sh-ink);
  font-size: .86rem;
  line-height: 1.25;
}

.sh-trust-bar p {
  margin: 5px 0 0;
  color: #718094;
  font-size: .73rem;
  line-height: 1.35;
  text-wrap: pretty;
}

.sh-audiences {
  background: #fff;
}

.sh-audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.sh-audience-card {
  position: relative;
  min-height: 385px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius-lg);
  padding: clamp(28px, 4vw, 46px);
  transition-property: transform, border-color, box-shadow;
  transition-duration: 180ms;
  transition-timing-function: ease-out;
}

.sh-audience-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -115px;
  width: 300px;
  height: 300px;
  border: 62px solid rgba(18, 104, 243, .08);
  border-radius: 50%;
  pointer-events: none;
}

.sh-audience-card.is-private {
  background: linear-gradient(145deg, #f7fbff 0%, #eaf3fd 100%);
}

.sh-audience-card.is-business {
  color: #fff;
  border-color: #18314f;
  background: linear-gradient(145deg, #112944 0%, #081528 100%);
}

.sh-audience-card.is-business::after {
  border-color: rgba(156, 226, 52, .11);
}

.sh-audience-card:hover {
  transform: translateY(-4px);
  border-color: #afc5da;
  box-shadow: 0 22px 54px rgba(8, 21, 40, .11);
}

.sh-audience-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--sh-blue-dark);
  background: #fff;
  color: var(--sh-ink);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.is-business .sh-audience-label {
  color: #152a12;
  background: var(--sh-lime);
}

.sh-audience-card h3 {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 32px 0 0;
  color: var(--sh-ink);
  font-size: clamp(1.75rem, 3vw, 2.9rem);
  line-height: 1.02;
  letter-spacing: -.05em;
  text-wrap: balance;
}

.sh-audience-card.is-business h3 {
  color: #fff;
}

.sh-audience-card > p {
  position: relative;
  z-index: 1;
  max-width: 550px;
  margin: 18px 0 0;
  color: #526579;
  font-size: .95rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.sh-audience-card.is-business > p {
  color: #bdcad8;
}

.sh-audience-card ul {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.sh-audience-card li {
  border: 1px solid #c9d8e6;
  border-radius: 8px;
  padding: 8px 10px;
  color: #486078;
  background: rgba(255, 255, 255, .64);
  font-size: .72rem;
  font-weight: 770;
}

.sh-audience-card.is-business li {
  color: #dbe5ef;
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .055);
}

.sh-audience-card > strong {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 28px;
  color: var(--sh-blue-dark);
  font-size: .84rem;
}

.sh-audience-card > strong span {
  margin-left: 8px;
}

.sh-audience-card.is-business > strong {
  color: var(--sh-lime);
}

.sh-services {
  background: linear-gradient(180deg, #f2f6fa 0%, #fff 100%);
}

.sh-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.sh-service-card {
  min-width: 0;
  min-height: 410px;
  display: grid;
  grid-template-columns: minmax(220px, .82fr) minmax(0, 1.18fr);
  overflow: hidden;
  border: 1px solid #d5e0ea;
  border-radius: var(--sh-radius-lg);
  background: #fff;
  box-shadow: 0 12px 35px rgba(8, 21, 40, .055);
}

.sh-service-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px 8px 0;
  background: #eaf3ff;
}

.sh-service-card.is-ink .sh-service-media {
  background: #142942;
}

.sh-service-card.is-sand .sh-service-media {
  background: #f0e8dc;
}

.sh-service-card.is-lime .sh-service-media {
  background: #eef8e1;
}

.sh-service-number {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  min-width: 37px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #fff;
  background: var(--sh-blue);
  font-size: .66rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
}

.is-ink .sh-service-number {
  color: #172513;
  background: var(--sh-lime);
}

.is-sand .sh-service-number {
  background: #936436;
}

.is-lime .sh-service-number {
  background: #508b13;
}

.sh-service-media img {
  width: 100%;
  height: 355px;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 18px 18px rgba(8, 21, 40, .16));
}

.sh-service-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 34px 30px 30px;
}

.sh-service-copy h3 {
  margin: 0;
  color: var(--sh-ink);
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
  line-height: 1;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.sh-service-copy > p {
  margin: 17px 0 0;
  color: var(--sh-muted);
  font-size: .88rem;
  line-height: 1.65;
  text-wrap: pretty;
}

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

.sh-service-copy li {
  position: relative;
  padding-left: 19px;
  color: #3d5268;
  font-size: .76rem;
  font-weight: 760;
  line-height: 1.35;
}

.sh-service-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  background: var(--sh-lime-dark);
}

.sh-service-copy a {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 22px;
  color: var(--sh-blue-dark);
  border-top: 1px solid var(--sh-line);
  font-size: .8rem;
  font-weight: 850;
}

.sh-service-copy a span {
  transition: transform 150ms ease-out;
}

.sh-service-copy a:hover span {
  transform: translateX(4px);
}

.sh-process {
  color: #fff;
  background:
    radial-gradient(circle at 95% 10%, rgba(18, 104, 243, .25), transparent 27%),
    linear-gradient(135deg, #0e2643 0%, #071525 70%);
}

.sh-process::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

.sh-process > .sh-container {
  position: relative;
}

.sh-process-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, .48fr);
  align-items: end;
  gap: clamp(35px, 8vw, 110px);
}

.sh-process-head h2 {
  max-width: 750px;
  color: #fff;
}

.sh-process-head > p {
  margin: 0 0 4px;
  color: #b4c2d2;
}

.sh-process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 55px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, .13);
}

.sh-process-grid li {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding: 27px;
  background: #0b1d32;
}

.sh-process-grid li > span {
  width: 43px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 8px;
  color: var(--sh-lime);
  font-size: .72rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
}

.sh-process-grid h3 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.15;
  letter-spacing: -.025em;
  text-wrap: balance;
}

.sh-process-grid p {
  margin: 12px 0 0;
  color: #aebed0;
  font-size: .82rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.sh-process-action {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-top: 0;
  padding: 14px 21px;
  background: rgba(255, 255, 255, .045);
}

.sh-process-action p {
  margin: 0;
  color: #b9c7d5;
  font-size: .78rem;
  line-height: 1.5;
}

.sh-process-action p strong {
  color: #fff;
}

.sh-process-action a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border-radius: 9px;
  padding: 0 14px;
  color: #142512;
  background: var(--sh-lime);
  font-size: .76rem;
  font-weight: 860;
  white-space: nowrap;
}

.sh-quality {
  background: #fff;
}

.sh-quality-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(430px, 1.12fr);
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

.sh-quality-copy h2 {
  max-width: 680px;
}

.sh-quality-copy > p {
  max-width: 650px;
}

.sh-check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 32px 0 0;
  padding: 0;
  border: 1px solid var(--sh-line);
  background: var(--sh-line);
  list-style: none;
}

.sh-check-list li {
  min-width: 0;
  display: grid;
  gap: 5px;
  padding: 18px;
  background: #fff;
}

.sh-check-list strong {
  position: relative;
  padding-left: 19px;
  color: var(--sh-ink);
  font-size: .84rem;
}

.sh-check-list strong::before {
  content: "";
  position: absolute;
  left: 0;
  top: .3em;
  width: 9px;
  height: 9px;
  border-radius: 2px;
  background: var(--sh-blue);
}

.sh-check-list span {
  color: #718094;
  font-size: .73rem;
  line-height: 1.45;
  text-wrap: pretty;
}

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

.sh-inline-links a,
.sh-text-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--sh-blue-dark);
  font-size: .8rem;
  font-weight: 860;
  text-decoration: underline;
  text-decoration-color: rgba(8, 73, 182, .28);
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}

.sh-inline-links a:hover,
.sh-text-link:hover {
  text-decoration-color: currentColor;
}

.sh-quality-board {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #cfdbe6;
  border-radius: var(--sh-radius-lg);
  background: #f5f8fb;
  box-shadow: 0 26px 70px rgba(8, 21, 40, .12);
}

.sh-board-top {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  color: #fff;
  background: var(--sh-ink);
}

.sh-board-top > div {
  display: grid;
  gap: 5px;
}

.sh-board-top > div span {
  color: #86a1bd;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.sh-board-top strong {
  font-size: 1.13rem;
  letter-spacing: -.025em;
}

.sh-board-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  padding: 8px 11px;
  color: #dfeaf5;
  font-size: .68rem;
  font-weight: 800;
  white-space: nowrap;
}

.sh-board-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sh-lime);
}

.sh-quality-board ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 10px 22px;
  list-style: none;
}

.sh-quality-board li {
  min-height: 78px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--sh-line);
}

.sh-quality-board li:last-child {
  border-bottom: 0;
}

.sh-quality-board li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid #cbd7e3;
  border-radius: 9px;
  color: #708196;
  background: #fff;
  font-size: .66rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.sh-quality-board li.is-done > span {
  color: #254b0e;
  border-color: #bedd9b;
  background: #ecf8de;
}

.sh-quality-board li.is-active > span {
  color: #fff;
  border-color: var(--sh-blue);
  background: var(--sh-blue);
}

.sh-quality-board li div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.sh-quality-board li strong {
  color: var(--sh-ink);
  font-size: .82rem;
  line-height: 1.25;
}

.sh-quality-board li small {
  color: #718094;
  font-size: .7rem;
  line-height: 1.3;
  text-wrap: pretty;
}

.sh-quality-board time {
  color: #9aa8b7;
  font-size: .62rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.sh-board-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  border-top: 1px solid var(--sh-line);
  padding: 15px 22px 19px;
  background: #fff;
}

.sh-board-footer span {
  border: 1px solid var(--sh-line);
  border-radius: 7px;
  padding: 7px 9px;
  color: #617286;
  background: #f7f9fb;
  font-size: .65rem;
  font-weight: 780;
}

.sh-region {
  background: linear-gradient(180deg, #edf3f8 0%, #f8fafc 100%);
}

.sh-region-grid {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(45px, 8vw, 110px);
}

.sh-region-copy h2 {
  max-width: 600px;
}

.sh-region-copy > p {
  max-width: 560px;
}

.sh-region-copy .sh-text-link {
  margin-top: 20px;
}

.sh-region-map {
  position: relative;
  min-width: 0;
  border: 1px solid #cad7e3;
  border-radius: var(--sh-radius-lg);
  padding: 22px;
  background:
    linear-gradient(90deg, rgba(18, 104, 243, .06) 1px, transparent 1px),
    linear-gradient(rgba(18, 104, 243, .06) 1px, transparent 1px),
    #fff;
  background-size: 32px 32px;
  box-shadow: 0 22px 55px rgba(8, 21, 40, .08);
}

.sh-region-origin {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 15px;
  padding: 14px 17px;
  color: #fff;
  background: var(--sh-ink);
}

.sh-region-origin > span {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  border: 5px solid var(--sh-lime);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(156, 226, 52, .14);
}

.sh-region-origin div {
  display: grid;
  gap: 4px;
}

.sh-region-origin small {
  color: #92a8be;
  font-size: .63rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.sh-region-origin strong {
  font-size: .82rem;
  line-height: 1.3;
}

.sh-region-zones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 11px;
}

.sh-region-zones section {
  min-width: 0;
  min-height: 218px;
  display: flex;
  flex-direction: column;
  border: 1px solid #d3dee8;
  border-radius: 15px;
  padding: 18px;
  background: rgba(255, 255, 255, .9);
}

.sh-region-zones span {
  color: var(--sh-blue);
  font-size: .65rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: .08em;
}

.sh-region-zones h3 {
  margin: 30px 0 0;
  color: var(--sh-ink);
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -.02em;
  text-wrap: balance;
}

.sh-region-zones p {
  margin: 11px 0 0;
  color: #718094;
  font-size: .72rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.sh-faq-section {
  background: #fff;
}

.sh-faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, .68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(45px, 9vw, 120px);
}

.sh-faq-intro {
  position: sticky;
  top: 135px;
}

.sh-faq-intro h2 {
  max-width: 540px;
}

.sh-faq-intro .sh-text-link {
  margin-top: 18px;
}

.sh-faq-list {
  border-top: 1px solid var(--sh-line);
}

.sh-faq-item {
  border-bottom: 1px solid var(--sh-line);
}

.sh-faq-item h3 {
  margin: 0;
}

.sh-faq-item button {
  width: 100%;
  min-height: 82px;
  border: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  color: var(--sh-ink);
  background: transparent;
  font: inherit;
  font-size: .96rem;
  font-weight: 820;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.sh-faq-item button span {
  text-wrap: pretty;
}

.sh-faq-item button i {
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid #cad7e3;
  border-radius: 9px;
  background: #f5f8fb;
}

.sh-faq-item button i::before,
.sh-faq-item button i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--sh-blue);
  transform: translate(-50%, -50%);
  transition: transform 150ms ease-out;
}

.sh-faq-item button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.sh-faq-item.is-open button i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.sh-faq-answer[hidden] {
  display: none;
}

.sh-faq-answer p {
  max-width: 700px;
  margin: -2px 0 25px;
  padding-right: 54px;
  color: var(--sh-muted);
  font-size: .88rem;
  line-height: 1.7;
  text-wrap: pretty;
}

.sh-contact {
  position: relative;
  overflow: hidden;
  padding: clamp(75px, 8vw, 112px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 4% 12%, rgba(156, 226, 52, .17), transparent 25%),
    radial-gradient(circle at 94% 86%, rgba(18, 104, 243, .28), transparent 29%),
    linear-gradient(135deg, #102944 0%, #061323 100%);
}

.sh-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
  background-size: 46px 46px;
}

.sh-contact-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(520px, 1.22fr);
  align-items: stretch;
  gap: clamp(38px, 6vw, 84px);
}

.sh-contact-intro {
  position: relative;
  min-height: 760px;
  padding-bottom: 365px;
}

.sh-contact-intro h2 {
  max-width: 610px;
  color: #fff;
}

.sh-contact-intro > p {
  max-width: 560px;
  color: #bac9d8;
}

.sh-contact-intro ul {
  display: grid;
  gap: 10px;
  margin: 29px 0 0;
  padding: 0;
  list-style: none;
}

.sh-contact-intro li {
  position: relative;
  padding-left: 25px;
  color: #dce7f1;
  font-size: .8rem;
  font-weight: 750;
  line-height: 1.45;
}

.sh-contact-intro li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .02em;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: #19300e;
  background: var(--sh-lime);
  font-size: .68rem;
  font-weight: 900;
}

.sh-contact-intro img {
  position: absolute;
  left: 5%;
  bottom: -112px;
  width: min(370px, 88%);
  height: auto;
  display: block;
  border-radius: 26px;
  outline: 1px solid rgba(0, 0, 0, .1);
  outline-offset: -1px;
  filter: drop-shadow(0 28px 30px rgba(0, 0, 0, .28));
}

.sh-form {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: var(--sh-radius-lg);
  padding: clamp(24px, 4vw, 42px);
  color: var(--sh-ink);
  background: #fff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .25);
}

.sh-form-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--sh-line);
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.sh-form-head > div {
  display: grid;
  gap: 5px;
}

.sh-form-head > div > span {
  color: var(--sh-blue-dark);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sh-form-head h3 {
  margin: 0;
  color: var(--sh-ink);
  font-size: 1.45rem;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.sh-form-head > p {
  margin: 4px 0 0;
  color: #718094;
  font-size: .68rem;
  font-weight: 750;
  white-space: nowrap;
}

.sh-form-head > p span,
.sh-field label span,
.sh-privacy b {
  color: #bc2d2d;
}

.sh-form-message {
  display: grid;
  gap: 4px;
  border: 1px solid;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 13px 15px;
}

.sh-form-message strong {
  font-size: .82rem;
}

.sh-form-message span {
  font-size: .74rem;
  line-height: 1.4;
}

.sh-form-message.is-success {
  color: #305c14;
  border-color: #badb99;
  background: #eff9e5;
}

.sh-form-message.is-error {
  color: #8d2525;
  border-color: #e7b6b6;
  background: #fff1f1;
}

.sh-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.sh-field {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.sh-field-wide {
  grid-column: 1 / -1;
}

.sh-field label {
  color: #34465b;
  font-size: .7rem;
  font-weight: 850;
}

.sh-field input,
.sh-field select,
.sh-field textarea {
  width: 100%;
  min-height: 49px;
  border: 1px solid #cbd7e3;
  border-radius: 10px;
  padding: 11px 13px;
  color: var(--sh-ink);
  background: #fff;
  font: inherit;
  font-size: .86rem;
  line-height: 1.35;
  outline: 0;
  transition-property: border-color, box-shadow, background-color;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.sh-field select {
  cursor: pointer;
}

.sh-field textarea {
  min-height: 128px;
  resize: vertical;
}

.sh-field input::placeholder,
.sh-field textarea::placeholder {
  color: #98a5b3;
}

.sh-field input:focus,
.sh-field select:focus,
.sh-field textarea:focus {
  border-color: var(--sh-blue);
  box-shadow: 0 0 0 4px rgba(18, 104, 243, .12);
}

.sh-field.has-error input,
.sh-field.has-error select,
.sh-field.has-error textarea {
  border-color: #c94747;
  background: #fffafa;
}

.sh-field > small,
.sh-privacy-error {
  color: #a52d2d;
  font-size: .68rem;
  font-weight: 730;
  line-height: 1.35;
}

.sh-privacy {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-top: 19px;
  color: #617286;
  cursor: pointer;
}

.sh-privacy input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--sh-blue);
}

.sh-privacy span {
  font-size: .7rem;
  line-height: 1.5;
  text-wrap: pretty;
}

.sh-privacy a {
  color: var(--sh-blue-dark);
  font-weight: 820;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.sh-privacy.has-error {
  color: #982c2c;
}

.sh-privacy-error {
  display: block;
  margin: 5px 0 0 30px;
}

.sh-submit {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 23px;
  padding: 0 18px;
  color: #fff;
  background: var(--sh-blue);
  box-shadow: 0 14px 30px rgba(18, 104, 243, .23);
  font: inherit;
  font-size: .84rem;
  font-weight: 880;
  cursor: pointer;
  transition-property: transform, background-color, box-shadow;
  transition-duration: 150ms;
  transition-timing-function: ease-out;
}

.sh-submit:hover {
  background: var(--sh-blue-dark);
  box-shadow: 0 18px 36px rgba(18, 104, 243, .29);
}

.sh-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.sh-home :focus-visible {
  outline: 3px solid #ffbf38;
  outline-offset: 3px;
}

html.sls-reveal-ready [data-sls-reveal],
html.sls-reveal-ready [data-sr2-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition-property: opacity, transform;
  transition-duration: 480ms;
  transition-timing-function: cubic-bezier(.22, 1, .36, 1);
}

html.sls-reveal-ready [data-sls-reveal].is-visible,
html.sls-reveal-ready [data-sr2-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .sh-hero-visual {
    width: 54vw;
  }

  .sh-hero-copy {
    max-width: 46%;
  }

  .sh-service-card {
    grid-template-columns: 1fr;
  }

  .sh-service-media {
    min-height: 285px;
  }

  .sh-service-media img {
    height: 290px;
  }

  .sh-service-copy {
    min-height: 330px;
  }

  .sh-contact-shell {
    grid-template-columns: minmax(290px, .7fr) minmax(500px, 1.3fr);
  }
}

@media (max-width: 920px) {
  .sh-hero {
    padding-top: 58px;
  }

  .sh-hero-stage {
    display: block;
    min-height: 0;
  }

  .sh-hero-copy {
    max-width: 730px;
    padding: 0 0 26px;
  }

  .sh-hero-visual {
    position: relative;
    inset: auto;
    width: 100%;
  }

  .sh-hero-image-frame {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .sh-hero-image-frame::before {
    display: none;
  }

  .sh-hero-image-frame img {
    object-position: center;
  }

  .sh-section-heading-split,
  .sh-process-head,
  .sh-quality-grid,
  .sh-region-grid,
  .sh-faq-layout,
  .sh-contact-shell {
    grid-template-columns: 1fr;
  }

  .sh-section-heading-split,
  .sh-process-head {
    gap: 20px;
  }

  .sh-section-heading-split > p,
  .sh-process-head > p {
    max-width: 650px;
    margin: 0;
  }

  .sh-process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sh-process-grid li {
    min-height: 235px;
  }

  .sh-quality-grid,
  .sh-region-grid,
  .sh-faq-layout,
  .sh-contact-shell {
    gap: 44px;
  }

  .sh-quality-board,
  .sh-region-map {
    max-width: 760px;
    width: 100%;
  }

  .sh-faq-intro {
    position: static;
    max-width: 680px;
  }

  .sh-contact-intro {
    min-height: 480px;
    padding-bottom: 260px;
  }

  .sh-contact-intro img {
    left: 3%;
    bottom: -85px;
    width: 285px;
  }

  .sh-form {
    max-width: 760px;
    width: 100%;
  }
}

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

  .sh-section {
    padding: 72px 0;
  }

  .sh-section-heading {
    margin-bottom: 29px;
  }

  .sh-section-heading h2,
  .sh-process-head h2,
  .sh-quality-copy h2,
  .sh-region-copy h2,
  .sh-faq-intro h2,
  .sh-contact-intro h2 {
    font-size: clamp(2.05rem, 10.5vw, 3.35rem);
    line-height: 1.01;
  }

  .sh-hero {
    padding-top: 43px;
    background-size: 34px 34px, 34px 34px, auto, auto, auto;
  }

  .sh-hero::after {
    display: none;
  }

  .sh-status {
    margin-bottom: 17px;
  }

  .sh-hero h1 {
    font-size: clamp(2.7rem, 13.7vw, 4.25rem);
    line-height: .96;
  }

  .sh-hero-lead {
    margin-top: 21px;
    font-size: .98rem;
  }

  .sh-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 25px;
  }

  .sh-button {
    width: 100%;
  }

  .sh-hero-audiences {
    gap: 8px 14px;
    margin-top: 22px;
  }

  .sh-hero-visual figcaption {
    right: 10px;
    bottom: 10px;
    max-width: 220px;
    padding: 10px 12px;
  }

  .sh-hero-image-frame {
    border-radius: 0;
    aspect-ratio: 3 / 2;
  }

  .sh-trust-bar {
    grid-template-columns: 1fr 1fr;
    border-radius: 17px 17px 0 0;
  }

  .sh-trust-bar article {
    min-height: 92px;
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 8px;
    padding: 15px 12px;
  }

  .sh-trust-bar article + article {
    border-left: 0;
  }

  .sh-trust-bar article:nth-child(even) {
    border-left: 1px solid var(--sh-line);
  }

  .sh-trust-bar article:nth-child(n + 3) {
    border-top: 1px solid var(--sh-line);
  }

  .sh-audience-grid,
  .sh-service-grid {
    grid-template-columns: 1fr;
  }

  .sh-audience-card {
    min-height: 0;
    border-radius: 24px;
    padding: 27px 23px;
  }

  .sh-audience-card h3 {
    margin-top: 25px;
    font-size: 2rem;
  }

  .sh-audience-card > strong {
    margin-top: 10px;
  }

  .sh-service-card {
    border-radius: 24px;
  }

  .sh-service-media {
    min-height: 270px;
  }

  .sh-service-media img {
    height: 270px;
  }

  .sh-service-copy {
    min-height: 0;
    padding: 27px 22px 23px;
  }

  .sh-service-copy a {
    margin-top: 26px;
  }

  .sh-process-grid {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .sh-process-grid li {
    min-height: 0;
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 17px;
    padding: 22px;
  }

  .sh-process-action {
    display: grid;
    padding: 18px;
  }

  .sh-process-action a {
    width: 100%;
    justify-content: center;
  }

  .sh-check-list {
    grid-template-columns: 1fr;
  }

  .sh-board-top {
    align-items: flex-start;
  }

  .sh-board-status {
    padding: 7px 8px;
  }

  .sh-quality-board ol {
    padding-inline: 15px;
  }

  .sh-quality-board li {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 11px;
  }

  .sh-quality-board time {
    display: none;
  }

  .sh-region-map {
    border-radius: 24px;
    padding: 14px;
  }

  .sh-region-zones {
    grid-template-columns: 1fr;
  }

  .sh-region-zones section {
    min-height: 0;
  }

  .sh-region-zones h3 {
    margin-top: 18px;
  }

  .sh-faq-item button {
    min-height: 74px;
    gap: 14px;
    font-size: .9rem;
  }

  .sh-faq-answer p {
    padding-right: 42px;
    font-size: .84rem;
  }

  .sh-contact {
    padding: 72px 0;
  }

  .sh-contact-shell {
    gap: 34px;
  }

  .sh-contact-intro {
    min-height: 0;
    padding-bottom: 0;
  }

  .sh-contact-intro img {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(300px, 100%);
    margin: 32px auto 0;
  }

  .sh-form {
    border-radius: 24px;
    padding: 24px 18px;
  }

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

  .sh-field-wide {
    grid-column: auto;
  }

  .sh-field input,
  .sh-field select,
  .sh-field textarea {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  .sh-hero-image-frame {
    aspect-ratio: 4 / 3;
  }

  .sh-hero-visual figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: none;
    border-radius: 0;
  }

  .sh-trust-bar {
    grid-template-columns: 1fr;
  }

  .sh-trust-bar article:nth-child(even) {
    border-left: 0;
  }

  .sh-trust-bar article:nth-child(n + 2) {
    border-top: 1px solid var(--sh-line);
  }

  .sh-board-top {
    display: grid;
  }

  .sh-board-status {
    justify-self: start;
  }

  .sh-form-head {
    display: grid;
  }

  .sh-form-head > p {
    margin-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sh-home *,
  .sh-home *::before,
  .sh-home *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  html.sls-reveal-ready [data-sls-reveal],
  html.sls-reveal-ready [data-sr2-reveal] {
    opacity: 1;
    transform: none;
  }
}
