.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;
  }
}

/* Homepage rebuild 2026-08-12: body-only editorial layout. Shared shell colors stay authoritative. */
body.sh-home {
  --shx-width: min(1440px, calc(100vw - 56px));
  --shx-copy: #526276;
  --shx-rule: rgba(8, 21, 40, .14);
}

body.sh-home .shx-container,
body.sh-home .shx-hero-shell {
  width: var(--shx-width);
  margin-inline: auto;
}

body.sh-home .shx-section {
  position: relative;
  padding: clamp(86px, 9vw, 138px) 0;
}

body.sh-home .shx-kicker,
body.sh-home .shx-status {
  margin: 0;
  color: var(--sh-blue-dark);
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.45;
  text-transform: uppercase;
}

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

body.sh-home .shx-section-head {
  max-width: 980px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

body.sh-home .shx-section-head-split {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .55fr);
  align-items: end;
  gap: clamp(42px, 8vw, 130px);
}

body.sh-home .shx-section-head h2,
body.sh-home .shx-sequence-intro h2,
body.sh-home .shx-proof-copy h2,
body.sh-home .shx-faq-intro h2,
body.sh-home .shx-contact-sign h2 {
  margin: 14px 0 0;
  color: var(--sh-ink);
  font-family: var(--scn-font-display, "Schmidt Archivo", sans-serif);
  font-size: clamp(2.65rem, 5vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -.065em;
  line-height: .93;
  text-wrap: balance;
}

body.sh-home .shx-section-head > p,
body.sh-home .shx-sequence-intro > p,
body.sh-home .shx-proof-copy > p,
body.sh-home .shx-faq-intro > p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--shx-copy);
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.72;
  text-wrap: pretty;
}

body.sh-home .shx-section-head-split > p {
  margin: 0 0 4px;
}

body.sh-home .shx-text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  color: var(--sh-blue-dark);
  font-size: .88rem;
  font-weight: 800;
}

body.sh-home .shx-text-link span {
  transition: transform 160ms ease-out;
}

body.sh-home .shx-text-link:hover span {
  transform: translateX(4px);
}

body.sh-home .shx-text-link.is-light {
  color: #fff;
}

/* The complete first view: message, action and branded team tableau share one viewport. */
body.sh-home .shx-hero {
  position: relative;
  min-height: calc(100svh - var(--scn-header-current, 105px));
  display: grid;
  overflow: hidden;
  padding: 20px 0;
  background: var(--sh-paper);
  isolation: isolate;
}

body.sh-home .shx-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 0 auto;
  width: 40vw;
  background: var(--sh-cloud-blue);
}

body.sh-home .shx-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  width: clamp(90px, 10vw, 180px);
  height: clamp(90px, 10vw, 180px);
  background: var(--sh-blue);
}

body.sh-home .shx-hero-shell {
  min-height: calc(100svh - var(--scn-header-current, 105px) - 40px);
  display: grid;
  grid-template-columns: minmax(390px, .83fr) minmax(520px, 1.17fr);
  align-items: center;
  gap: clamp(34px, 5vw, 82px);
}

body.sh-home .shx-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 690px;
  padding: clamp(24px, 5vh, 58px) 0;
}

body.sh-home .shx-status {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #385522;
}

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

body.sh-home .shx-hero h1 {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--sh-ink);
  font-family: var(--scn-font-display, "Schmidt Archivo", sans-serif);
  font-size: clamp(4rem, 6.1vw, 7.15rem);
  font-weight: 700;
  letter-spacing: -.078em;
  line-height: .86;
  text-wrap: balance;
}

body.sh-home .shx-hero h1 span {
  color: var(--sh-blue);
}

body.sh-home .shx-hero-lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: #475b72;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.66;
  text-wrap: pretty;
}

body.sh-home .shx-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 11px;
  margin-top: 30px;
}

body.sh-home .shx-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 20px;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition: transform 150ms ease-out, background-color 150ms ease-out, border-color 150ms ease-out, box-shadow 150ms ease-out;
}

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

body.sh-home .shx-button:active,
body.sh-home .shx-submit:active,
body.sh-home .shx-service-card:active {
  transform: scale(.985);
}

body.sh-home .shx-button-primary {
  color: #fff;
  background: var(--sh-blue);
  box-shadow: 0 14px 28px rgba(18, 104, 243, .22);
}

body.sh-home .shx-button-primary:hover {
  background: var(--sh-blue-dark);
  box-shadow: 0 18px 34px rgba(18, 104, 243, .28);
}

body.sh-home .shx-button-secondary {
  color: var(--sh-ink);
  border-color: var(--sh-line);
  background: #fff;
}

body.sh-home .shx-button-secondary:hover {
  border-color: var(--sh-blue);
  color: var(--sh-blue-dark);
}

body.sh-home .shx-hero-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 25px;
  margin: 27px 0 0;
  padding: 0;
  color: #3e5269;
  font-size: .78rem;
  font-weight: 750;
  list-style: none;
}

body.sh-home .shx-hero-promises li {
  position: relative;
  padding-left: 16px;
}

body.sh-home .shx-hero-promises li::before {
  content: "";
  position: absolute;
  top: .42em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--sh-blue);
}

body.sh-home .shx-hero-scene {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 21, 40, .1);
  border-radius: 26px 4px 26px 4px;
  background: var(--sh-cloud);
  box-shadow: 0 30px 80px rgba(8, 21, 40, .14);
}

body.sh-home .shx-hero-scene::before {
  content: "";
  display: block;
  height: clamp(42px, 6vh, 76px);
  background: var(--sh-cloud-blue);
}

body.sh-home .shx-hero-scene > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  object-position: center;
}

body.sh-home .shx-scene-label {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  height: clamp(42px, 6vh, 76px);
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 0 clamp(16px, 2vw, 27px);
}

body.sh-home .shx-scene-label span {
  color: var(--sh-muted);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body.sh-home .shx-scene-label strong {
  color: var(--sh-ink);
  font-family: var(--scn-font-display, "Schmidt Archivo", sans-serif);
  font-size: .95rem;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

body.sh-home .shx-workflow-rail {
  display: grid;
  grid-template-columns: minmax(100px, .5fr) minmax(0, 1.5fr);
  align-items: center;
  gap: 24px;
  min-height: 88px;
  padding: 16px clamp(18px, 3vw, 36px);
  color: #fff;
  background: var(--sh-ink);
}

body.sh-home .shx-workflow-rail small {
  color: rgba(255, 255, 255, .62);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.35;
  text-transform: uppercase;
}

body.sh-home .shx-workflow-rail div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.sh-home .shx-workflow-rail strong {
  font-family: var(--scn-font-display, "Schmidt Archivo", sans-serif);
  font-size: clamp(.8rem, 1.25vw, 1.1rem);
  letter-spacing: -.01em;
  text-transform: uppercase;
}

body.sh-home .shx-workflow-rail div span {
  color: var(--sh-blue);
  font-size: 1.2rem;
}

/* Asymmetric service workbench instead of four interchangeable tiles. */
body.sh-home .shx-services {
  background: #fff;
}

body.sh-home .shx-service-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  grid-template-rows: repeat(3, minmax(205px, auto));
  gap: 14px;
}

body.sh-home .shx-service-card {
  position: relative;
  min-width: 0;
  display: grid;
  overflow: hidden;
  color: var(--sh-ink);
  border: 1px solid var(--sh-line);
  background: #fff;
  transition: transform 180ms ease-out, border-color 180ms ease-out, box-shadow 180ms ease-out;
}

body.sh-home .shx-service-card:hover {
  z-index: 2;
  border-color: rgba(18, 104, 243, .5);
  box-shadow: 0 22px 55px rgba(8, 21, 40, .12);
  transform: translateY(-4px);
}

body.sh-home .shx-service-card.is-featured {
  grid-row: 1 / span 3;
  grid-template-rows: auto minmax(360px, 1fr);
  color: #fff;
  border-color: var(--sh-ink);
  border-radius: 4px 24px 4px 24px;
  background: var(--sh-ink);
}

body.sh-home .shx-service-card.is-compact {
  grid-template-columns: minmax(0, 1fr) clamp(150px, 15vw, 220px);
  min-height: 205px;
}

body.sh-home .shx-service-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 3vw, 44px);
}

body.sh-home .shx-service-copy > p {
  margin: 0;
  color: var(--sh-blue-dark);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1.4;
  text-transform: uppercase;
}

body.sh-home .is-featured .shx-service-copy > p {
  color: var(--sh-lime);
}

body.sh-home .shx-service-copy h3 {
  margin: 11px 0 0;
  font-family: var(--scn-font-display, "Schmidt Archivo", sans-serif);
  font-size: clamp(1.75rem, 3.1vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -.055em;
  line-height: .94;
}

body.sh-home .is-featured .shx-service-copy h3 {
  font-size: clamp(3rem, 5.2vw, 6.2rem);
}

body.sh-home .shx-service-copy > span {
  max-width: 600px;
  margin-top: 17px;
  color: var(--shx-copy);
  font-size: .94rem;
  line-height: 1.62;
  text-wrap: pretty;
}

body.sh-home .is-featured .shx-service-copy > span {
  max-width: 660px;
  color: rgba(255, 255, 255, .72);
  font-size: 1rem;
}

body.sh-home .shx-service-copy > strong {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: auto;
  padding-top: 20px;
  color: var(--sh-blue-dark);
  font-size: .78rem;
  font-weight: 800;
}

body.sh-home .is-featured .shx-service-copy > strong {
  color: #fff;
}

body.sh-home .shx-service-copy > strong i {
  font-size: 1rem;
  font-style: normal;
  transition: transform 160ms ease-out;
}

body.sh-home .shx-service-card:hover .shx-service-copy > strong i {
  transform: translateX(4px);
}

body.sh-home .shx-service-media {
  min-width: 0;
  overflow: hidden;
  background: var(--sh-cloud-blue);
}

body.sh-home .shx-service-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 300ms cubic-bezier(.22, 1, .36, 1);
}

body.sh-home .is-featured .shx-service-media img {
  min-height: 390px;
  object-position: center 42%;
}

body.sh-home .shx-service-card:hover .shx-service-media img {
  transform: scale(1.025);
}

/* A real sequence may carry numbers; the hierarchy stays driven by verbs. */
body.sh-home .shx-sequence {
  overflow: hidden;
  color: #fff;
  background: var(--sh-ink);
}

body.sh-home .shx-sequence::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(90px, 13vw, 220px);
  height: 12px;
  background: var(--sh-blue);
}

body.sh-home .shx-sequence-layout {
  display: grid;
  grid-template-columns: minmax(320px, .75fr) minmax(480px, 1.25fr);
  align-items: start;
  gap: clamp(70px, 11vw, 170px);
}

body.sh-home .shx-sequence-intro {
  position: sticky;
  top: 120px;
}

body.sh-home .shx-sequence-intro h2 {
  color: #fff;
}

body.sh-home .shx-sequence-intro > p {
  color: rgba(255, 255, 255, .66);
}

body.sh-home .shx-sequence-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.sh-home .shx-sequence-list li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(22px, 4vw, 54px);
  padding: 32px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

body.sh-home .shx-sequence-list li:first-child {
  border-top-color: var(--sh-blue);
}

body.sh-home .shx-sequence-list li > span {
  color: var(--sh-blue);
  font-family: var(--scn-font-display, "Schmidt Archivo", sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: .04em;
}

body.sh-home .shx-sequence-list h3 {
  margin: 0;
  font-family: var(--scn-font-display, "Schmidt Archivo", sans-serif);
  font-size: clamp(1.65rem, 2.8vw, 3rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1;
}

body.sh-home .shx-sequence-list p {
  max-width: 610px;
  margin: 13px 0 0;
  color: rgba(255, 255, 255, .64);
  font-size: .98rem;
  line-height: 1.65;
}

/* Audience lanes read like two operating modes, not generic feature cards. */
body.sh-home .shx-fit {
  background: #fff;
}

body.sh-home .shx-fit .shx-section-head {
  max-width: 1020px;
}

body.sh-home .shx-fit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--sh-line);
}

body.sh-home .shx-fit-lane {
  min-width: 0;
  padding: clamp(34px, 5vw, 72px);
}

body.sh-home .shx-fit-lane + .shx-fit-lane {
  border-left: 1px solid var(--sh-line);
}

body.sh-home .shx-fit-lane.is-private {
  background: var(--sh-cloud-blue);
}

body.sh-home .shx-fit-lane.is-business {
  color: #fff;
  border-color: var(--sh-ink);
  background: var(--sh-blue);
}

body.sh-home .shx-fit-title > span {
  color: var(--sh-blue-dark);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body.sh-home .is-business .shx-fit-title > span {
  color: rgba(255, 255, 255, .7);
}

body.sh-home .shx-fit-title h3 {
  max-width: 600px;
  margin: 14px 0 0;
  font-family: var(--scn-font-display, "Schmidt Archivo", sans-serif);
  font-size: clamp(2rem, 3.7vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -.06em;
  line-height: .94;
  text-wrap: balance;
}

body.sh-home .shx-fit-lane > p {
  max-width: 610px;
  margin: 25px 0 0;
  color: var(--shx-copy);
  font-size: 1rem;
  line-height: 1.68;
}

body.sh-home .is-business > p {
  color: rgba(255, 255, 255, .78);
}

body.sh-home .shx-fit-lane ul {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

body.sh-home .shx-fit-lane li {
  position: relative;
  padding: 13px 0 13px 22px;
  border-top: 1px solid rgba(8, 21, 40, .13);
  font-size: .87rem;
  font-weight: 750;
}

body.sh-home .is-business li {
  border-color: rgba(255, 255, 255, .25);
}

body.sh-home .shx-fit-lane li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--sh-blue);
}

body.sh-home .is-business li::before {
  background: #fff;
}

body.sh-home .shx-fit-lane > a {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin-top: 27px;
  color: var(--sh-blue-dark);
  font-size: .82rem;
  font-weight: 800;
}

body.sh-home .is-business > a {
  color: #fff;
}

body.sh-home .shx-region {
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr) auto;
  align-items: center;
  gap: 30px;
  padding: 20px clamp(22px, 3vw, 42px);
  color: #fff;
  background: var(--sh-ink);
}

body.sh-home .shx-region-place {
  display: flex;
  align-items: center;
  gap: 15px;
}

body.sh-home .shx-region-place > span {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sh-lime);
  box-shadow: 0 0 0 6px rgba(156, 226, 52, .15);
}

body.sh-home .shx-region-place div {
  display: grid;
  gap: 3px;
}

body.sh-home .shx-region-place small {
  color: rgba(255, 255, 255, .58);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

body.sh-home .shx-region-place strong {
  font-size: .87rem;
}

body.sh-home .shx-region > p {
  margin: 0;
  color: rgba(255, 255, 255, .63);
  font-size: .78rem;
  line-height: 1.5;
}

body.sh-home .shx-region > a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  white-space: nowrap;
}

/* Proof section: one concise operating board instead of dashboard theatre. */
body.sh-home .shx-proof {
  background: var(--sh-cloud);
}

body.sh-home .shx-proof-layout {
  display: grid;
  grid-template-columns: minmax(340px, .85fr) minmax(480px, 1.15fr);
  align-items: center;
  gap: clamp(60px, 10vw, 150px);
}

body.sh-home .shx-proof-copy h2 {
  margin-top: 15px;
}

body.sh-home .shx-proof-links {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 26px;
  margin-top: 29px;
}

body.sh-home .shx-proof-links a {
  color: var(--sh-blue-dark);
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: .82rem;
  font-weight: 800;
}

body.sh-home .shx-proof-board {
  border: 1px solid var(--sh-line);
  border-top: 6px solid var(--sh-blue);
  padding: clamp(28px, 4.5vw, 58px);
  background: #fff;
  box-shadow: 0 26px 70px rgba(8, 21, 40, .1);
}

body.sh-home .shx-proof-board-label {
  margin: 0 0 8px;
  color: var(--sh-blue-dark);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

body.sh-home .shx-proof-board ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

body.sh-home .shx-proof-board li {
  display: grid;
  grid-template-columns: minmax(95px, .35fr) minmax(0, 1fr);
  gap: 25px;
  padding: 24px 0;
  border-bottom: 1px solid var(--sh-line);
}

body.sh-home .shx-proof-board li > span {
  color: var(--sh-muted);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

body.sh-home .shx-proof-board li > strong {
  font-family: var(--scn-font-display, "Schmidt Archivo", sans-serif);
  font-size: clamp(1.02rem, 1.6vw, 1.35rem);
  line-height: 1.24;
}

body.sh-home .shx-proof-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 23px 0 0;
  color: #40536a;
  font-size: .78rem;
  font-weight: 750;
}

body.sh-home .shx-proof-note i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sh-lime);
  box-shadow: 0 0 0 5px rgba(156, 226, 52, .16);
}

/* Native disclosure controls keep FAQ behavior resilient without page-specific JS. */
body.sh-home .shx-faq {
  background: #fff;
}

body.sh-home .shx-faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(520px, 1.28fr);
  align-items: start;
  gap: clamp(60px, 10vw, 155px);
}

body.sh-home .shx-faq-intro {
  position: sticky;
  top: 120px;
}

body.sh-home .shx-faq-list {
  border-top: 1px solid var(--sh-ink);
}

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

body.sh-home .shx-faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px;
  align-items: center;
  gap: 25px;
  padding: 26px 0;
  color: var(--sh-ink);
  cursor: pointer;
  list-style: none;
}

body.sh-home .shx-faq-item summary::-webkit-details-marker {
  display: none;
}

body.sh-home .shx-faq-item summary span {
  font-family: var(--scn-font-display, "Schmidt Archivo", sans-serif);
  font-size: clamp(1.05rem, 1.7vw, 1.42rem);
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.2;
}

body.sh-home .shx-faq-item summary i {
  position: relative;
  width: 30px;
  height: 30px;
  border: 1px solid var(--sh-line);
  border-radius: 50%;
}

body.sh-home .shx-faq-item summary i::before,
body.sh-home .shx-faq-item summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--sh-ink);
  transform: translate(-50%, -50%);
}

body.sh-home .shx-faq-item summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 150ms ease-out;
}

body.sh-home .shx-faq-item[open] summary i {
  border-color: var(--sh-blue);
  background: var(--sh-blue);
}

body.sh-home .shx-faq-item[open] summary i::before,
body.sh-home .shx-faq-item[open] summary i::after {
  background: #fff;
}

body.sh-home .shx-faq-item[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

body.sh-home .shx-faq-item > div {
  max-width: 720px;
  padding: 0 55px 27px 0;
}

body.sh-home .shx-faq-item > div p {
  margin: 0;
  color: var(--shx-copy);
  font-size: .96rem;
  line-height: 1.72;
}

/* Inquiry finale: the existing Dortmund artwork becomes the actual invitation. */
body.sh-home .shx-contact {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 9vw, 132px) 0;
  background: var(--sh-ink);
}

body.sh-home .shx-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(110px, 17vw, 290px);
  height: 10px;
  background: var(--sh-blue);
}

body.sh-home .shx-contact-shell {
  display: grid;
  grid-template-columns: minmax(480px, .96fr) minmax(500px, 1.04fr);
  align-items: start;
  gap: clamp(24px, 4vw, 62px);
}

body.sh-home .shx-contact-visual {
  position: sticky;
  top: 110px;
  overflow: hidden;
  border-radius: 4px 24px 4px 24px;
  background: #fff;
}

body.sh-home .shx-contact-visual > img {
  width: 100%;
  height: auto;
  display: block;
}

body.sh-home .shx-contact-sign {
  position: absolute;
  z-index: 2;
  top: 46%;
  left: 26%;
  width: 48%;
  min-height: 31%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  text-align: center;
}

body.sh-home .shx-contact-sign h2 {
  margin-top: 6px;
  font-size: clamp(1.3rem, 2.25vw, 2.5rem);
  line-height: .96;
}

body.sh-home .shx-contact-sign > span {
  max-width: 300px;
  margin-top: 9px;
  color: var(--shx-copy);
  font-size: clamp(.64rem, .85vw, .82rem);
  line-height: 1.35;
}

body.sh-home .shx-form {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 24px 4px 24px 4px;
  padding: clamp(28px, 4vw, 54px);
  background: #fff;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .2);
}

body.sh-home .shx-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

body.sh-home .shx-form-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 28px;
}

body.sh-home .shx-form-head > div > span {
  color: var(--sh-blue-dark);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

body.sh-home .shx-form-head h3 {
  margin: 8px 0 0;
  color: var(--sh-ink);
  font-family: var(--scn-font-display, "Schmidt Archivo", sans-serif);
  font-size: clamp(1.65rem, 2.6vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1;
}

body.sh-home .shx-form-head > p {
  flex: 0 0 auto;
  margin: 0 0 3px;
  color: var(--sh-muted);
  font-size: .66rem;
}

body.sh-home .shx-form-head > p span {
  color: #c13939;
}

body.sh-home .shx-form-message {
  display: grid;
  gap: 4px;
  margin-bottom: 22px;
  border-left: 4px solid currentColor;
  padding: 14px 16px;
  font-size: .82rem;
  line-height: 1.45;
}

body.sh-home .shx-form-message.is-success {
  color: #315f0d;
  background: #eff9e5;
}

body.sh-home .shx-form-message.is-error {
  color: #982e2e;
  background: #fff0f0;
}

body.sh-home .shx-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

body.sh-home .shx-field {
  min-width: 0;
  display: grid;
  gap: 8px;
}

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

body.sh-home .shx-field label {
  color: #334860;
  font-size: .73rem;
  font-weight: 800;
}

body.sh-home .shx-field label span {
  color: #c13939;
}

body.sh-home .shx-field input,
body.sh-home .shx-field select,
body.sh-home .shx-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cbd7e3;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--sh-ink);
  outline: 0;
  background: #fff;
  font: inherit;
  font-size: .9rem;
  transition: border-color 140ms ease-out, box-shadow 140ms ease-out;
}

body.sh-home .shx-field textarea {
  min-height: 124px;
  resize: vertical;
  line-height: 1.55;
}

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

body.sh-home .shx-field.has-error input,
body.sh-home .shx-field.has-error select,
body.sh-home .shx-field.has-error textarea {
  border-color: #bf3a3a;
}

body.sh-home .shx-field small,
body.sh-home .shx-privacy-error {
  color: #a32e2e;
  font-size: .7rem;
  line-height: 1.4;
}

body.sh-home .shx-privacy {
  display: grid;
  grid-template-columns: 19px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  margin-top: 22px;
  color: #536479;
  font-size: .72rem;
  line-height: 1.55;
}

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

body.sh-home .shx-privacy a {
  color: var(--sh-blue-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

body.sh-home .shx-privacy b {
  color: #c13939;
}

body.sh-home .shx-submit {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  margin-top: 24px;
  border: 0;
  border-radius: 9px;
  padding: 12px 18px;
  color: #fff;
  cursor: pointer;
  background: var(--sh-blue);
  box-shadow: 0 14px 30px rgba(18, 104, 243, .22);
  font: inherit;
  font-size: .88rem;
  font-weight: 800;
  transition: transform 150ms ease-out, background-color 150ms ease-out, box-shadow 150ms ease-out;
}

body.sh-home .shx-submit:hover {
  background: var(--sh-blue-dark);
  box-shadow: 0 18px 36px rgba(18, 104, 243, .28);
  transform: translateY(-2px);
}

body.sh-home .shx-button:focus-visible,
body.sh-home .shx-service-card:focus-visible,
body.sh-home .shx-text-link:focus-visible,
body.sh-home .shx-fit-lane > a:focus-visible,
body.sh-home .shx-region > a:focus-visible,
body.sh-home .shx-proof-links a:focus-visible,
body.sh-home .shx-faq-item summary:focus-visible,
body.sh-home .shx-submit:focus-visible {
  outline: 3px solid var(--sh-lime);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  body.sh-home {
    --shx-width: min(100% - 36px, 1180px);
  }

  body.sh-home .shx-hero-shell {
    grid-template-columns: minmax(330px, .9fr) minmax(420px, 1.1fr);
    gap: 28px;
  }

  body.sh-home .shx-hero h1 {
    font-size: clamp(3.55rem, 6.3vw, 5.35rem);
  }

  body.sh-home .shx-hero-lead {
    font-size: 1rem;
  }

  body.sh-home .shx-workflow-rail {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  body.sh-home .shx-workflow-rail small {
    display: none;
  }

  body.sh-home .shx-service-stage {
    grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  }

  body.sh-home .shx-contact-shell {
    grid-template-columns: minmax(420px, .9fr) minmax(460px, 1.1fr);
  }
}

@media (max-width: 960px) {
  body.sh-home .shx-section-head-split,
  body.sh-home .shx-sequence-layout,
  body.sh-home .shx-proof-layout,
  body.sh-home .shx-faq-layout,
  body.sh-home .shx-contact-shell {
    grid-template-columns: 1fr;
  }

  body.sh-home .shx-section-head-split {
    align-items: start;
    gap: 22px;
  }

  body.sh-home .shx-section-head-split > p {
    margin: 0;
  }

  body.sh-home .shx-service-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  body.sh-home .shx-service-card.is-featured {
    grid-row: auto;
    grid-template-columns: minmax(0, .95fr) minmax(300px, 1.05fr);
    grid-template-rows: minmax(430px, auto);
  }

  body.sh-home .shx-service-card.is-compact {
    grid-template-columns: minmax(0, 1fr) 230px;
  }

  body.sh-home .shx-sequence-intro,
  body.sh-home .shx-faq-intro,
  body.sh-home .shx-contact-visual {
    position: relative;
    top: auto;
  }

  body.sh-home .shx-fit-grid {
    grid-template-columns: 1fr;
  }

  body.sh-home .shx-fit-lane + .shx-fit-lane {
    border-top: 1px solid var(--sh-line);
    border-left: 0;
  }

  body.sh-home .shx-region {
    grid-template-columns: 1fr auto;
  }

  body.sh-home .shx-region > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  body.sh-home .shx-proof-copy,
  body.sh-home .shx-faq-intro {
    max-width: 760px;
  }

  body.sh-home .shx-contact-visual {
    max-width: 760px;
    margin-inline: auto;
  }
}

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

  body.sh-home .shx-section {
    padding: 74px 0;
  }

  body.sh-home .shx-section-head {
    margin-bottom: 33px;
  }

  body.sh-home .shx-section-head h2,
  body.sh-home .shx-sequence-intro h2,
  body.sh-home .shx-proof-copy h2,
  body.sh-home .shx-faq-intro h2 {
    font-size: clamp(2.45rem, 12vw, 3.55rem);
  }

  body.sh-home .shx-section-head > p,
  body.sh-home .shx-sequence-intro > p,
  body.sh-home .shx-proof-copy > p,
  body.sh-home .shx-faq-intro > p {
    margin-top: 17px;
    font-size: .96rem;
    line-height: 1.62;
  }

  body.sh-home .shx-hero {
    min-height: calc(100svh - var(--scn-header-current, 68px));
    padding: 12px 0 14px;
  }

  body.sh-home .shx-hero::before {
    top: auto;
    width: 52vw;
    height: 36%;
  }

  body.sh-home .shx-hero::after {
    width: 58px;
    height: 58px;
  }

  body.sh-home .shx-hero-shell {
    min-height: calc(100svh - var(--scn-header-current, 68px) - 26px);
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    align-content: space-between;
    gap: 14px;
  }

  body.sh-home .shx-hero-copy {
    max-width: none;
    padding: 7px 0 0;
  }

  body.sh-home .shx-status {
    gap: 9px;
    font-size: .61rem;
    letter-spacing: .105em;
  }

  body.sh-home .shx-status span {
    width: 7px;
    height: 7px;
    box-shadow: 0 0 0 4px rgba(156, 226, 52, .17);
  }

  body.sh-home .shx-hero h1 {
    margin-top: 17px;
    font-size: clamp(3.05rem, 14.1vw, 4.15rem);
    line-height: .86;
  }

  body.sh-home .shx-hero-lead {
    margin-top: 17px;
    font-size: .93rem;
    line-height: 1.48;
  }

  body.sh-home .shx-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    margin-top: 19px;
  }

  body.sh-home .shx-button {
    min-height: 49px;
    padding-inline: 15px;
    font-size: .78rem;
  }

  body.sh-home .shx-button-secondary {
    border-color: transparent;
    padding-inline: 7px;
    background: transparent;
  }

  body.sh-home .shx-hero-promises {
    display: none;
  }

  body.sh-home .shx-hero-scene {
    border-radius: 18px 3px 18px 3px;
  }

  body.sh-home .shx-hero-scene::before,
  body.sh-home .shx-scene-label {
    display: none;
  }

  body.sh-home .shx-workflow-rail {
    min-height: 48px;
    padding: 9px 13px;
  }

  body.sh-home .shx-workflow-rail div {
    gap: 6px;
  }

  body.sh-home .shx-workflow-rail strong {
    font-size: clamp(.66rem, 3vw, .78rem);
  }

  body.sh-home .shx-workflow-rail div span {
    font-size: .85rem;
  }

  body.sh-home .shx-service-card.is-featured,
  body.sh-home .shx-service-card.is-compact {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  body.sh-home .shx-service-card.is-featured {
    border-radius: 3px 18px 3px 18px;
  }

  body.sh-home .shx-service-copy {
    padding: 27px 24px;
  }

  body.sh-home .is-featured .shx-service-copy h3 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  body.sh-home .shx-service-copy > strong {
    margin-top: 5px;
  }

  body.sh-home .shx-service-card.is-featured .shx-service-media {
    height: 340px;
  }

  body.sh-home .shx-service-card.is-compact .shx-service-media {
    height: 230px;
  }

  body.sh-home .is-featured .shx-service-media img {
    min-height: 0;
  }

  body.sh-home .shx-sequence-layout {
    gap: 43px;
  }

  body.sh-home .shx-sequence-list li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
    padding: 25px 0 28px;
  }

  body.sh-home .shx-sequence-list h3 {
    font-size: 1.7rem;
  }

  body.sh-home .shx-sequence-list p {
    margin-top: 10px;
    font-size: .91rem;
  }

  body.sh-home .shx-fit-lane {
    padding: 31px 23px 36px;
  }

  body.sh-home .shx-fit-title h3 {
    font-size: clamp(2rem, 10.5vw, 3rem);
  }

  body.sh-home .shx-region {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 22px;
  }

  body.sh-home .shx-region > p {
    grid-column: auto;
    grid-row: auto;
  }

  body.sh-home .shx-region > a {
    justify-self: start;
  }

  body.sh-home .shx-proof-layout,
  body.sh-home .shx-faq-layout {
    gap: 44px;
  }

  body.sh-home .shx-proof-board {
    padding: 25px 21px;
  }

  body.sh-home .shx-proof-board li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }

  body.sh-home .shx-faq-item summary {
    grid-template-columns: minmax(0, 1fr) 28px;
    gap: 16px;
    padding: 22px 0;
  }

  body.sh-home .shx-faq-item > div {
    padding-right: 0;
  }

  body.sh-home .shx-contact {
    padding: 74px 0 112px;
  }

  body.sh-home .shx-contact-shell {
    gap: 18px;
  }

  body.sh-home .shx-contact-visual {
    border-radius: 3px 18px 3px 18px;
  }

  body.sh-home .shx-contact-visual > img {
    display: none;
  }

  body.sh-home .shx-contact-sign {
    position: relative;
    inset: auto;
    width: auto;
    min-height: 0;
    align-items: flex-start;
    padding: 31px 24px 34px;
    text-align: left;
  }

  body.sh-home .shx-contact-sign h2 {
    margin-top: 10px;
    font-size: clamp(2.35rem, 11vw, 3.25rem);
    text-align: left;
  }

  body.sh-home .shx-contact-sign > span {
    max-width: 430px;
    margin-top: 15px;
    font-size: .9rem;
    line-height: 1.55;
  }

  body.sh-home .shx-form {
    border-radius: 18px 3px 18px 3px;
    padding: 27px 20px;
  }

  body.sh-home .shx-form-head {
    display: grid;
    align-items: start;
    gap: 8px;
  }

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

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

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

@media (max-width: 390px) {
  body.sh-home .shx-hero h1 {
    font-size: clamp(2.8rem, 14vw, 3.4rem);
  }

  body.sh-home .shx-hero-lead {
    font-size: .88rem;
  }

  body.sh-home .shx-actions {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  body.sh-home .shx-button-secondary {
    min-height: 38px;
    justify-content: flex-start;
  }
}

/* Full-HD displays lose usable height to browser chrome and the persistent header. */
@media (min-width: 761px) and (max-height: 1020px) and (min-aspect-ratio: 3 / 2) {
  body.sh-home .shx-hero {
    padding-block: 14px;
  }

  body.sh-home .shx-hero-shell {
    min-height: calc(100svh - var(--scn-header-current, 105px) - 28px);
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: clamp(28px, 4vw, 64px);
  }

  body.sh-home .shx-hero-copy {
    padding-block: 24px;
  }

  body.sh-home .shx-hero h1 {
    margin-top: 18px;
    font-size: clamp(3.4rem, 5.4vw, 6.25rem);
  }

  body.sh-home .shx-hero-lead {
    margin-top: 20px;
    line-height: 1.55;
  }

  body.sh-home .shx-actions {
    margin-top: 24px;
  }

  body.sh-home .shx-hero-promises {
    margin-top: 20px;
  }

  body.sh-home .shx-workflow-rail {
    min-height: 76px;
    padding-block: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.sh-home .shx-button,
  body.sh-home .shx-submit,
  body.sh-home .shx-service-card,
  body.sh-home .shx-service-media img,
  body.sh-home .shx-text-link span {
    transition: none !important;
    transform: none !important;
  }
}

/* Homepage conversion pass 2026-09-07: service-first routing, page body only. */
body.sh-home .shx-hero-shell {
  grid-template-columns: minmax(430px, .92fr) minmax(520px, 1.08fr);
  gap: clamp(38px, 4.5vw, 76px);
}

body.sh-home .shx-hero-copy {
  max-width: 740px;
}

body.sh-home .shx-hero h1 {
  font-size: clamp(3.8rem, 5.35vw, 6.45rem);
  line-height: .89;
}

body.sh-home .shx-hero-lead {
  max-width: 650px;
  margin-top: 22px;
}

body.sh-home .shx-dispatch {
  position: relative;
  max-width: 710px;
  margin-top: 25px;
  overflow: hidden;
  border: 1px solid var(--sh-line);
  border-top: 4px solid var(--sh-blue);
  border-radius: 3px 18px 3px 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(8, 21, 40, .11);
}

body.sh-home .shx-dispatch-head {
  min-height: 61px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 15px 10px 17px;
  border-bottom: 1px solid var(--sh-line);
}

body.sh-home .shx-dispatch-head > div {
  min-width: 0;
}

body.sh-home .shx-dispatch-head > div > span {
  display: block;
  color: var(--sh-muted);
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}

body.sh-home .shx-dispatch-head h2 {
  margin: 3px 0 0;
  color: var(--sh-ink);
  font-family: var(--scn-font-display, "Schmidt Archivo", sans-serif);
  font-size: 1.08rem;
  font-weight: 750;
  letter-spacing: -.025em;
  line-height: 1.15;
}

body.sh-home .shx-dispatch-general {
  flex: 0 0 auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 7px;
  padding: 8px 13px;
  color: #fff;
  background: var(--sh-blue);
  font-size: .7rem;
  font-weight: 800;
  line-height: 1.15;
  transition: background-color 150ms ease-out, transform 150ms ease-out;
}

body.sh-home .shx-dispatch-general:hover {
  background: var(--sh-blue-dark);
  transform: translateY(-1px);
}

body.sh-home .shx-dispatch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

body.sh-home .shx-dispatch-link {
  min-width: 0;
  min-height: 67px;
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 10px;
  padding: 10px 14px;
  color: var(--sh-ink);
  border-right: 1px solid var(--sh-line);
  border-bottom: 1px solid var(--sh-line);
  transition: color 150ms ease-out, background-color 150ms ease-out;
}

body.sh-home .shx-dispatch-link:nth-child(even) {
  border-right: 0;
}

body.sh-home .shx-dispatch-link:nth-last-child(-n + 2) {
  border-bottom: 0;
}

body.sh-home .shx-dispatch-link > span {
  grid-row: 1 / span 2;
  align-self: center;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--sh-blue-dark);
  background: var(--sh-cloud-blue);
  font-size: .57rem;
  font-weight: 850;
  letter-spacing: .04em;
  transition: color 150ms ease-out, background-color 150ms ease-out;
}

body.sh-home .shx-dispatch-link strong {
  overflow: hidden;
  font-size: .75rem;
  font-weight: 800;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.sh-home .shx-dispatch-link small {
  margin-top: 2px;
  overflow: hidden;
  color: var(--sh-muted);
  font-size: .62rem;
  font-weight: 650;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.sh-home .shx-dispatch-link:hover {
  color: var(--sh-blue-dark);
  background: var(--sh-cloud-blue);
}

body.sh-home .shx-dispatch-link:hover > span {
  color: #fff;
  background: var(--sh-blue);
}

body.sh-home .shx-dispatch-foot {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 8px 16px;
  color: #536479;
  border-top: 1px solid var(--sh-line);
  background: #f9fbfd;
  font-size: .62rem;
  font-weight: 700;
  line-height: 1.35;
}

body.sh-home .shx-dispatch-compare {
  flex: 0 0 auto;
  color: var(--sh-blue-dark);
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

body.sh-home .shx-assurance {
  color: var(--sh-ink);
  border-top: 1px solid var(--sh-line);
  border-bottom: 1px solid var(--sh-line);
  background: #fff;
}

body.sh-home .shx-assurance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

body.sh-home .shx-assurance-grid > div {
  min-width: 0;
  min-height: 78px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 14px clamp(16px, 2.2vw, 32px);
  border-left: 1px solid var(--sh-line);
}

body.sh-home .shx-assurance-grid > div:last-child {
  border-right: 1px solid var(--sh-line);
}

body.sh-home .shx-assurance-grid small {
  color: var(--sh-blue-dark);
  font-size: .59rem;
  font-weight: 800;
  letter-spacing: .13em;
  line-height: 1.35;
  text-transform: uppercase;
}

body.sh-home .shx-assurance-grid strong {
  overflow: hidden;
  font-family: var(--scn-font-display, "Schmidt Archivo", sans-serif);
  font-size: clamp(.78rem, 1.05vw, .94rem);
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.sh-home .shx-service-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px 18px;
  margin-top: auto;
  padding-top: 22px;
}

body.sh-home .shx-service-actions a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--sh-blue-dark);
  border-bottom: 1px solid currentColor;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.25;
}

body.sh-home .shx-service-actions a.is-primary {
  min-height: 44px;
  border: 0;
  border-radius: 7px;
  padding: 9px 13px;
  color: #fff;
  background: var(--sh-blue);
  box-shadow: 0 10px 22px rgba(18, 104, 243, .18);
  transition: background-color 150ms ease-out, transform 150ms ease-out;
}

body.sh-home .shx-service-actions a.is-primary:hover {
  background: var(--sh-blue-dark);
  transform: translateY(-1px);
}

body.sh-home .shx-service-card.is-featured .shx-service-actions a {
  color: #fff;
}

body.sh-home .shx-service-card.is-featured .shx-service-actions a.is-primary {
  color: var(--sh-ink);
  background: var(--sh-lime);
  box-shadow: none;
}

body.sh-home .shx-service-card.is-featured .shx-service-actions a.is-primary:hover {
  background: #b2ed59;
}

body.sh-home .shx-service-actions i {
  font-style: normal;
  transition: transform 150ms ease-out;
}

body.sh-home .shx-service-actions a:hover i {
  transform: translateX(3px);
}

body.sh-home .shx-service-card:focus-within {
  border-color: var(--sh-blue);
  box-shadow: 0 0 0 3px rgba(18, 104, 243, .14);
}

body.sh-home .shx-service-stage {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(390px, auto));
}

body.sh-home .shx-service-card.is-featured {
  grid-column: span 7;
  grid-row: auto;
  grid-template-columns: minmax(0, 1.08fr) minmax(270px, .92fr);
  grid-template-rows: minmax(390px, auto);
}

body.sh-home .shx-service-card.is-compact {
  grid-column: span 5;
  grid-template-columns: minmax(0, 1fr) clamp(145px, 14vw, 210px);
  min-height: 390px;
}

body.sh-home .shx-service-card.is-objektservice {
  grid-column: span 7;
}

body.sh-home .shx-service-card.is-umzug {
  grid-column: span 5;
}

body.sh-home .shx-service-card.is-featured .shx-service-media img {
  min-height: 0;
}

body.sh-home .shx-service-card.is-featured .shx-service-copy h3 {
  font-size: clamp(2.75rem, 4vw, 4.7rem);
}

body.sh-home .shx-service-media {
  outline-offset: -4px;
}

body.sh-home .shx-contact {
  background: var(--sh-cloud-blue);
}

body.sh-home .shx-sequence-list li > span {
  color: #67a7ff;
}

body.sh-home .shx-fit-lane.is-business .shx-fit-title > span,
body.sh-home .shx-fit-lane.is-business > p {
  color: #fff;
}

body.sh-home .shx-form-intro {
  margin: -12px 0 24px;
  color: var(--sh-muted);
  font-size: .72rem;
  line-height: 1.45;
}

body.sh-home .shx-form-intro a {
  color: var(--sh-blue-dark);
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

body.sh-home .shx-dispatch-general:focus-visible,
body.sh-home .shx-dispatch-link:focus-visible,
body.sh-home .shx-dispatch-compare:focus-visible,
body.sh-home .shx-service-actions a:focus-visible,
body.sh-home .shx-service-media:focus-visible,
body.sh-home .shx-form-intro a:focus-visible {
  position: relative;
  z-index: 3;
  outline: 3px solid var(--sh-lime);
  outline-offset: 3px;
}

@media (max-width: 1180px) {
  body.sh-home .shx-hero-shell {
    grid-template-columns: minmax(390px, .95fr) minmax(440px, 1.05fr);
    gap: 28px;
  }

  body.sh-home .shx-hero h1 {
    font-size: clamp(3.45rem, 5.6vw, 5.4rem);
  }
}

@media (max-width: 960px) {
  body.sh-home .shx-hero-shell {
    grid-template-columns: minmax(360px, .98fr) minmax(380px, 1.02fr);
    gap: 22px;
  }

  body.sh-home .shx-dispatch-head {
    gap: 10px;
  }

  body.sh-home .shx-dispatch-general {
    padding-inline: 10px;
  }

  body.sh-home .shx-assurance-grid {
    grid-template-columns: 1fr 1fr;
  }

  body.sh-home .shx-assurance-grid > div:nth-child(odd) {
    border-left: 1px solid var(--sh-line);
  }

  body.sh-home .shx-assurance-grid > div:nth-child(even) {
    border-right: 1px solid var(--sh-line);
  }

  body.sh-home .shx-assurance-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--sh-line);
  }

  body.sh-home .shx-service-stage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  body.sh-home .shx-service-card.is-featured,
  body.sh-home .shx-service-card.is-compact,
  body.sh-home .shx-service-card.is-umzug,
  body.sh-home .shx-service-card.is-objektservice {
    grid-column: auto;
    grid-row: auto;
  }

  body.sh-home .shx-service-card.is-featured {
    grid-template-columns: minmax(0, .95fr) minmax(280px, 1.05fr);
    grid-template-rows: minmax(410px, auto);
  }

  body.sh-home .shx-service-card.is-compact {
    grid-template-columns: minmax(0, 1fr) 230px;
    min-height: 260px;
  }
}

@media (max-width: 760px) {
  body.sh-home .shx-hero {
    min-height: auto;
  }

  body.sh-home .shx-hero-shell {
    min-height: calc(100svh - var(--scn-header-current, 68px) - 26px);
    grid-template-columns: 1fr;
    gap: 13px;
  }

  body.sh-home .shx-hero-copy {
    padding-top: 5px;
  }

  body.sh-home .shx-hero h1 {
    margin-top: 15px;
    font-size: clamp(2.85rem, 13.3vw, 3.7rem);
    line-height: .89;
  }

  body.sh-home .shx-hero-lead {
    margin-top: 14px;
    font-size: .88rem;
    line-height: 1.45;
  }

  body.sh-home .shx-dispatch {
    margin-top: 16px;
    border-radius: 3px 14px 3px 14px;
    box-shadow: 0 12px 32px rgba(8, 21, 40, .1);
  }

  body.sh-home .shx-dispatch-head {
    min-height: 51px;
    padding: 8px 10px 8px 12px;
  }

  body.sh-home .shx-dispatch-head > div > span {
    font-size: .52rem;
  }

  body.sh-home .shx-dispatch-head h2 {
    margin-top: 2px;
    font-size: .9rem;
  }

  body.sh-home .shx-dispatch-general {
    min-height: 35px;
    padding: 7px 9px;
    font-size: .63rem;
  }

  body.sh-home .shx-dispatch-link {
    min-height: 54px;
    grid-template-columns: 24px minmax(0, 1fr);
    column-gap: 8px;
    padding: 7px 9px;
  }

  body.sh-home .shx-dispatch-link > span {
    width: 23px;
    height: 23px;
    font-size: .51rem;
  }

  body.sh-home .shx-dispatch-link strong {
    font-size: .66rem;
  }

  body.sh-home .shx-dispatch-link small {
    font-size: .55rem;
  }

  body.sh-home .shx-dispatch-foot {
    min-height: 34px;
    padding: 6px 11px;
    font-size: .54rem;
  }

  body.sh-home .shx-workflow-rail {
    min-height: 43px;
    padding-block: 7px;
  }

  body.sh-home .shx-assurance-grid > div {
    min-height: 62px;
    padding: 11px 13px;
  }

  body.sh-home .shx-assurance-grid small {
    font-size: .52rem;
  }

  body.sh-home .shx-assurance-grid strong {
    font-size: .7rem;
  }

  body.sh-home .shx-service-actions {
    margin-top: 0;
    padding-top: 18px;
  }

  body.sh-home .shx-service-card.is-featured,
  body.sh-home .shx-service-card.is-compact {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  body.sh-home .shx-service-card.is-featured .shx-service-copy h3 {
    font-size: clamp(2.5rem, 11.8vw, 3.5rem);
  }

  body.sh-home .shx-service-actions a.is-primary {
    flex: 1 1 180px;
  }

  body.sh-home .shx-form-intro {
    margin-top: -8px;
  }
}

@media (max-width: 390px) {
  body.sh-home .shx-hero h1 {
    font-size: clamp(2.62rem, 12.6vw, 3.05rem);
  }

  body.sh-home .shx-dispatch-foot > span {
    display: none;
  }

  body.sh-home .shx-dispatch-foot {
    justify-content: flex-end;
  }
}

@media (min-width: 761px) and (max-height: 1020px) and (min-aspect-ratio: 3 / 2) {
  body.sh-home .shx-hero-copy {
    padding-block: 18px;
  }

  body.sh-home .shx-hero h1 {
    margin-top: 16px;
    font-size: clamp(3.25rem, 4.75vw, 5.75rem);
  }

  body.sh-home .shx-hero-lead {
    margin-top: 16px;
    line-height: 1.48;
  }

  body.sh-home .shx-dispatch {
    margin-top: 18px;
  }

  body.sh-home .shx-dispatch-link {
    min-height: 60px;
  }

  body.sh-home .shx-workflow-rail {
    min-height: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.sh-home .shx-dispatch-general,
  body.sh-home .shx-dispatch-link,
  body.sh-home .shx-dispatch-link > span,
  body.sh-home .shx-service-actions a,
  body.sh-home .shx-service-actions i {
    transition: none !important;
    transform: none !important;
  }
}
