:root {
  --home-hero-navy: var(--fl-navy);
  --home-hero-navy-deep: var(--fl-navy-dark);
  --home-hero-pink: var(--fl-pink);
  --home-hero-pink-soft: var(--fl-pink-soft);
  --home-hero-white: var(--fl-white);
  --home-hero-white-muted: rgba(255, 255, 255, 0.84);
}

.page-home {
  --fs-header-height: 96px;
}

.page-home .fs-header {
  position: sticky;
  top: 0;
  z-index: 260;
  box-shadow: none;
}

.page-home .fs-header__inner {
  width: min(1460px, calc(100% - 64px));
  min-height: 96px;
  gap: 24px;
  padding-left: 100px;
  box-sizing: border-box;
}

.page-home .fs-brand img {
  height: 52px;
}

.page-home .fs-nav__link,
.page-home .fs-nav__trigger {
  padding: 10px 12px;
}

.page-home .fs-header__actions {
  gap: 16px;
}

.page-home .fs-button {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 0.94rem;
}

.page-home .fs-button__icon {
  width: 16px;
  height: 16px;
}

.home-hero-region {
  position: relative;
  overflow-x: clip;
  background: var(--bg, #f7f7fa);
}

@supports not (overflow: clip) {
  .home-hero-region {
    overflow-x: hidden;
  }
}

.home-hero {
  position: relative;
  overflow: hidden;
  background: var(--home-hero-navy);
  color: var(--home-hero-white);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/home-hero-poster.png?v=20260516-hero-poster");
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
}

.home-hero__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  background: var(--home-hero-navy);
  pointer-events: none;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 82% 68% at 18% 42%, rgba(5, 13, 26, 0.16) 0%, transparent 58%),
    var(--fl-gradient-hero-overlay);
  z-index: 1;
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  width: min(1460px, calc(100% - 64px));
  min-height: clamp(360px, calc(100svh - var(--fs-header-height) - 316px), 414px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(640px, 800px) 1fr;
  align-items: center;
  gap: 36px;
  padding: 52px 0 clamp(88px, 11vw, 120px);
  box-sizing: border-box;
}

.home-hero--trust-overlap .home-hero__inner {
  padding-bottom: clamp(104px, 12vw, 140px);
}

.home-hero__content {
  width: 100%;
  max-width: 720px;
  padding-left: 100px;
  box-sizing: border-box;
}

.home-hero__eyebrow {
  margin: 0 0 20px;
  color: var(--home-hero-pink);
  font-size: 0.88rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-hero__title {
  margin: 0;
  max-width: 10.5ch;
  color: var(--home-hero-white);
  font-size: clamp(59px, calc(4.05vw + 10px), 100px);
  line-height: 0.98;
  letter-spacing: -0.068em;
  font-weight: 900;
}

.home-hero__title span {
  color: var(--home-hero-pink);
}

.home-hero__lead {
  max-width: 600px;
  margin: 26px 0 0;
  color: var(--home-hero-white-muted);
  font-size: 0.93rem;
  line-height: 1.55;
  font-weight: 400;
}

.home-hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.home-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 61px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: var(--home-hero-white);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-hero__button:hover {
  transform: translateY(-1px);
}

.home-hero__button--primary {
  min-width: 260px;
  background: var(--fl-gradient-button-primary);
  box-shadow: var(--fl-button-shadow);
}

.home-hero__button--primary:hover {
  box-shadow: var(--fl-button-shadow-hover);
}

.home-hero__button--secondary {
  min-width: 294px;
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.48);
}

.home-hero__button-icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--home-hero-white);
}

.home-hero__button-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.home-hero__meta {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.92rem;
  line-height: 1.35;
}

.home-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home-hero__meta-item + .home-hero__meta-item {
  margin-left: 22px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.home-hero__meta-icon {
  width: 25px;
  height: 25px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--home-hero-pink);
}

.home-hero__meta-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.home-hero__proof-card {
  position: absolute;
  right: clamp(28px, 4vw, 50px);
  bottom: clamp(56px, 7vw, 88px);
  z-index: 3;
  width: min(368px, 28vw);
  padding: 22px 24px 21px;
  border-radius: 22px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.09) 0%, transparent 42%),
    var(--fl-header-gradient);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 48, 136, 0.07) inset,
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
  backdrop-filter: blur(12px);
  transform: translateZ(0);
  transform-origin: right bottom;
}

.home-hero__proof-card-head {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}

.home-hero__proof-card-icon {
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 48, 136, 0.55);
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.home-hero__proof-card-icon--brand {
  width: 92px;
  height: 52px;
  padding: 0 13px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.home-hero__proof-card-icon--rics {
  width: min(132px, 34vw);
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.home-hero__proof-card-logo {
  display: block;
  width: 100%;
  max-width: 68px;
  height: auto;
}

.home-hero__proof-card-icon--rics .home-hero__proof-card-logo {
  max-width: 112px;
  max-height: 34px;
  object-fit: contain;
}

.home-hero--surveys .home-hero__proof-card-head {
  grid-template-columns: minmax(92px, 132px) 1fr;
}

.home-hero--surveys .home-hero__title {
  max-width: 15ch;
}

.home-hero--surveys .home-hero__title span {
  display: inline-block;
}

.home-hero__proof-card-glyph {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  color: var(--home-hero-pink-soft);
}

.home-hero__proof-card-glyph svg {
  width: 100%;
  height: 100%;
  display: block;
}

.home-hero__proof-card h3 {
  margin: 0;
  color: var(--home-hero-white);
  font-size: 0.97rem;
  line-height: 1.34;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.home-hero__proof-card hr {
  border: 0;
  height: 1px;
  margin: 20px 0 16px;
  background: linear-gradient(90deg, transparent, rgba(255, 48, 136, 0.82), transparent);
}

.home-hero__proof-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  line-height: 1.55;
}

.home-hero__proof-card-reviews {
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.home-hero__review-row {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.86rem;
  line-height: 1.4;
  flex-wrap: wrap;
}

.home-hero__review-row--subtle {
  margin-top: 7px;
}

.home-hero__review-brand {
  position: relative;
  padding-left: 16px;
  font-weight: 700;
}

.home-hero__review-brand::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 50%;
  color: #ff3088;
  transform: translateY(-50%);
}

.home-hero__stars {
  display: inline-flex;
  gap: 3px;
}

.home-hero__stars span {
  width: 20px;
  height: 18px;
  border-radius: 2px;
  background: #ff3088;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.home-hero__stars span::before {
  content: "★";
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
}

.home-hero-region .home-trust-strip {
  position: relative;
  z-index: 5;
  margin-top: clamp(-56px, -7vw, -38px);
  padding: 0 var(--site-gutter, clamp(18px, 4vw, 36px)) clamp(10px, 2vw, 18px);
  background: transparent;
  border: 0;
}

.home-hero-region .home-trust-strip__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  padding-top: clamp(22px, 3vw, 30px);
  background: #ffffff;
  border-radius: clamp(20px, 2.5vw, 28px);
  border: 1px solid rgba(8, 23, 43, 0.07);
  box-shadow:
    0 0 34px rgba(5, 13, 26, 0.075),
    0 0 0 1px rgba(255, 255, 255, 0.76) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.home-hero-region .home-trust-strip__panel::before {
  content: "";
  position: absolute;
  inset: 0 22px auto;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 48, 136, 0.2), rgba(8, 23, 43, 0.08), transparent);
  pointer-events: none;
}

.home-hero-region .home-trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 100% !important;
  max-width: none !important;
  margin: 0;
  padding: clamp(8px, 1.2vw, 14px) clamp(8px, 1.2vw, 12px) clamp(22px, 3vw, 30px);
  box-sizing: border-box;
}

.home-hero-region .home-trust-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(12px, 1.8vw, 18px);
  align-items: center;
  min-height: clamp(104px, 11vw, 132px);
  padding: clamp(14px, 2vw, 22px) clamp(14px, 2vw, 22px);
  margin: 6px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  text-align: left;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.38s ease,
    box-shadow 0.38s ease;
}

.home-hero-region .home-trust-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid transparent;
  transition: border-color 0.38s ease;
  pointer-events: none;
}

.home-hero-region .home-trust-item:hover {
  transform: translateY(-3px);
  background: rgba(255, 48, 136, 0.045);
  box-shadow: 0 16px 38px rgba(8, 23, 43, 0.06);
}

.home-hero-region .home-trust-item:hover::before {
  border-color: rgba(8, 23, 43, 0.06);
}

.home-hero-region .home-trust-item:focus-visible {
  outline: 2px solid rgba(255, 48, 136, 0.5);
  outline-offset: 3px;
}

.home-hero-region .home-trust-icon {
  position: relative;
  isolation: isolate;
  width: clamp(56px, 6.8vw, 74px);
  height: clamp(56px, 6.8vw, 74px);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.16) 18%, transparent 42%),
    radial-gradient(circle at 78% 82%, rgba(255, 48, 136, 0.22) 0%, transparent 44%),
    linear-gradient(145deg, #142b55 0%, #08172b 48%, #030916 100%);
  border: 2px solid rgba(255, 48, 136, 0.82);
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.28),
    inset 0 -10px 18px rgba(0, 0, 0, 0.34),
    0 0 0 2px rgba(255, 48, 136, 0.16),
    0 10px 20px rgba(8, 23, 43, 0.16),
    0 3px 0 rgba(5, 13, 26, 0.28);
  transition:
    border-color 0.38s ease,
    box-shadow 0.38s ease,
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero-region .home-trust-icon::before {
  content: "";
  position: absolute;
  inset: 6px 8px auto;
  height: 38%;
  z-index: -1;
  border-radius: 999px 999px 58% 58%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.06));
  opacity: 0.74;
  transform: rotate(-16deg);
  pointer-events: none;
}

.home-hero-region .home-trust-icon::after {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(2, 8, 19, 0.38);
  pointer-events: none;
}

.home-hero-region .home-trust-item:hover .home-trust-icon {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.55) 0%, rgba(255, 255, 255, 0.18) 18%, transparent 44%),
    radial-gradient(circle at 78% 82%, rgba(255, 48, 136, 0.3) 0%, transparent 46%),
    linear-gradient(145deg, #173463 0%, #091a31 48%, #030916 100%);
  border-color: rgba(255, 48, 136, 0.96);
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.32),
    inset 0 -10px 18px rgba(0, 0, 0, 0.32),
    0 0 0 3px rgba(255, 48, 136, 0.18),
    0 14px 24px rgba(8, 23, 43, 0.2),
    0 3px 0 rgba(5, 13, 26, 0.26);
  transform: translateY(-1px);
}

.home-hero-region .home-trust-icon img {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(30px, 3.8vw, 44px);
  height: clamp(30px, 3.8vw, 44px);
  object-fit: contain;
  object-position: center;
  filter:
    brightness(0) invert(1)
    drop-shadow(0 2px 1px rgba(0, 0, 0, 0.28));
}

/* Reviews / certificate mark — slightly larger, optically lifted for vertical balance */
.home-hero-region .home-trust-icon--reviews img {
  width: clamp(34px, 4.15vw, 48px);
  height: clamp(34px, 4.15vw, 48px);
  transform: translateY(-0.5px);
}

.home-hero-region .home-trust-item__body {
  min-width: 0;
}

.home-hero-region .home-trust-item strong {
  display: block;
  color: #08172b;
  font-size: clamp(0.97rem, 1.05vw, 1.12rem);
  line-height: 1.15;
  font-weight: 800;
}

.home-hero-region .home-trust-item strong::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  margin: 8px 0 0;
  border-radius: 999px;
  background: var(--fl-pink);
  transition:
    width 0.42s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.home-hero-region .home-trust-item:hover strong::after {
  width: 40px;
}

.home-hero-region .home-trust-item span {
  display: block;
  margin-top: 8px;
  color: #31415f;
  font-size: clamp(0.82rem, 0.92vw, 0.9rem);
  line-height: 1.38;
}

@media (min-width: 1181px) {
  .home-hero-region .home-trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: min(76px, 58%);
    background: rgba(8, 23, 43, 0.085);
    transform: translateY(-50%);
    pointer-events: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero-region .home-trust-item {
    transition: none;
  }

  .home-hero-region .home-trust-item:hover {
    transform: none;
  }

  .home-hero-region .home-trust-item strong::after {
    transition: none;
  }

  .home-hero-region .home-trust-item:hover strong::after {
    width: 28px;
  }

  .home-hero-region .home-trust-icon {
    transition: none;
  }

  .home-hero-region .home-trust-item:active {
    transform: none;
  }
}

@media (max-width: 1279px) {
  .page-home {
    --fs-header-height: 88px;
  }

  .page-home .fs-header__inner {
    width: min(calc(100% - 40px), 1380px);
    min-height: 88px;
    padding-left: 60px;
  }

  .home-hero__inner {
    width: min(calc(100% - 40px), 1380px);
    min-height: 378px;
    grid-template-columns: minmax(520px, 720px) 1fr;
    gap: 25px;
    padding: 41px 0 clamp(76px, 10vw, 108px);
  }

  .home-hero__title {
    font-size: clamp(52px, calc(4.05vw + 10px), 65px);
  }

  .home-hero__lead {
    font-size: 0.9rem;
  }

  .home-hero__proof-card {
    width: min(340px, 30vw);
    bottom: clamp(48px, 6vw, 76px);
  }
}

@media (max-width: 1180px) {
  .home-hero {
    min-height: auto;
  }

  .page-home .fs-header__inner {
    padding-left: 0;
  }

  .home-hero__inner {
    width: min(calc(100% - 40px), 980px);
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 56px 0 clamp(72px, 12vw, 100px);
  }

  .home-hero--trust-overlap .home-hero__inner {
    padding-bottom: clamp(86px, 13vw, 112px);
  }

  .home-hero::after {
    background:
      linear-gradient(
        180deg,
        rgba(8, 23, 43, 0.86) 0%,
        rgba(8, 23, 43, 0.82) 42%,
        rgba(8, 23, 43, 0.67) 70%,
        rgba(8, 23, 43, 0.74) 100%
      ),
      linear-gradient(
        90deg,
        rgba(8, 23, 43, 0.86) 0%,
        rgba(8, 23, 43, 0.5) 55%,
        rgba(8, 23, 43, 0.16) 100%
      );
  }

  .home-hero__content {
    max-width: 700px;
    padding-left: 0;
  }

  .home-hero__actions {
    margin-top: 34px;
  }

  .home-hero__proof-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(420px, 100%);
    margin-top: 28px;
    border-radius: 22px;
  }

  .home-hero-region .home-trust-strip {
    margin-top: clamp(-44px, -8vw, -28px);
    padding: 0 var(--site-gutter, clamp(14px, 3vw, 24px)) clamp(10px, 2vw, 16px);
  }

  .home-hero-region .home-trust-strip__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 4px;
    padding: 8px 8px 22px;
  }

  .home-hero-region .home-trust-item {
    margin: 4px;
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .page-home {
    --fs-header-height: 84px;
  }

  .page-home .fs-header__inner {
    width: calc(100% - 24px);
    min-height: 84px;
    padding-left: 0;
  }

  .page-home .fs-brand img {
    height: 42px;
  }

  .home-hero__inner {
    width: calc(100% - 24px);
    padding: 42px 0 clamp(52px, 14vw, 80px);
  }

  .home-hero--trust-overlap .home-hero__inner {
    padding-bottom: clamp(68px, 18vw, 92px);
  }

  .home-hero::before {
    background-position: 68% center;
  }

  .home-hero::after {
    background:
      linear-gradient(
        180deg,
        rgba(8, 23, 43, 0.86) 0%,
        rgba(8, 23, 43, 0.81) 55%,
        rgba(8, 23, 43, 0.77) 100%
      );
  }

  .home-hero__eyebrow {
    margin-bottom: 18px;
    font-size: 0.82rem;
  }

  .home-hero__title {
    max-width: none;
    font-size: clamp(54px, calc(12.4vw + 10px), 68px);
    line-height: 0.98;
  }

  .home-hero__lead {
    margin-top: 20px;
    font-size: 1rem;
    line-height: 1.55;
  }

  .home-hero__actions {
    margin-top: 28px;
    gap: 14px;
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero__button,
  .home-hero__button--primary,
  .home-hero__button--secondary {
    width: 100%;
    min-width: 0;
    min-height: 60px;
  }

  .home-hero__meta {
    margin-top: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .home-hero__meta-item + .home-hero__meta-item {
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
  }

  .home-hero__proof-card {
    width: 100%;
    margin-top: 24px;
    padding: 22px 20px;
  }

  .home-hero__proof-card-head {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .home-hero__proof-card-icon {
    width: 50px;
    height: 50px;
  }

  /* Surveys hero: keep RICS lockup legible (avoid 50×50 squeeze from rule above). */
  .home-hero--surveys .home-hero__proof-card-head {
    grid-template-columns: minmax(128px, min(46vw, 172px)) minmax(0, 1fr);
  }

  .home-hero__proof-card-icon--rics {
    width: auto;
    min-width: 128px;
    max-width: min(172px, 46vw);
    height: auto;
    min-height: 36px;
    align-self: start;
  }

  .home-hero__proof-card-icon--rics .home-hero__proof-card-logo {
    width: min(172px, 46vw);
    min-width: 128px;
    max-width: none;
    max-height: none;
    height: auto;
    object-fit: contain;
  }

  .home-hero__proof-card-glyph {
    width: 28px;
    height: 28px;
  }

  .home-hero__proof-card h3 {
    font-size: 1.1rem;
  }

  .home-hero__proof-card p {
    font-size: 0.97rem;
    line-height: 1.6;
  }

  .home-hero-region .home-trust-strip {
    margin-top: -26px;
    padding: 0 var(--site-gutter, 20px) 12px;
  }

  .home-hero-region .home-trust-strip__panel {
    border-radius: 18px;
    padding-top: 20px;
    box-shadow:
      0 0 28px rgba(5, 13, 26, 0.07),
      0 0 0 1px rgba(255, 255, 255, 0.74) inset,
      inset 0 1px 0 rgba(255, 255, 255, 0.74);
  }

  .home-hero-region .home-trust-strip__inner {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100% !important;
    padding: 10px 12px 22px;
  }

  .home-hero-region .home-trust-item {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    min-height: auto;
    margin: 0;
    padding: 16px 16px;
    border: 1px solid rgba(8, 23, 43, 0.06);
    background: rgba(251, 252, 254, 0.98);
    box-shadow: none;
  }

  .home-hero-region .home-trust-item:hover {
    background: rgba(255, 48, 136, 0.055);
    box-shadow: 0 10px 28px rgba(8, 23, 43, 0.05);
  }

  .home-hero-region .home-trust-item:active {
    transform: translateY(-1px);
  }

  .home-hero-region .home-trust-icon {
    width: 52px;
    height: 52px;
  }

  .home-hero-region .home-trust-icon img {
    width: 30px;
    height: 30px;
  }

  .home-hero-region .home-trust-icon--reviews img {
    width: 34px;
    height: 34px;
  }

  .home-hero-region .home-trust-item strong {
    font-size: 0.98rem;
  }

  .home-hero-region .home-trust-item span {
    margin-top: 6px;
    font-size: 0.88rem;
    line-height: 1.42;
  }
}

/* Keep homepage hero typography premium and less tightly packed. */
.home-hero__title,
.home-hero__proof-card h3,
.home-hero-region .home-trust-item strong {
  letter-spacing: -0.018em;
}

.home-hero__eyebrow {
  letter-spacing: 0.105em;
}

.home-hero__lead,
.home-hero__meta,
.home-hero__proof-card p,
.home-hero-region .home-trust-item span {
  letter-spacing: 0.006em;
}
