@import url("flettons-brand.css");

:root {
  --service-hero-navy: #08172b;
  --service-hero-navy-deep: #08172b;
  --service-hero-pink: var(--fl-pink);
  --service-hero-text: rgba(255, 255, 255, 0.82);
  --service-hero-line: rgba(255, 255, 255, 0.14);
  --service-hero-soft: rgba(255, 255, 255, 0.72);
  --service-hero-shadow: 0 28px 56px rgba(0, 0, 0, 0.18);
  --service-hero-wrap: 1320px;
  --service-hero-column-gap: clamp(28px, 3.6vw, 64px);
}

.service-hero {
  padding: 0;
  overflow: clip;
  background: var(--fl-gradient-service-hero);
  color: #ffffff;
}

.service-hero__inner {
  display: block;
}

.service-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.2;
  flex-wrap: wrap;
  padding: 0 0 16px;
}

.service-hero__breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.service-hero__breadcrumbs a:hover {
  color: #ffffff;
}

.service-hero__home,
.service-hero__crumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-hero__crumb-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.service-hero__sep {
  color: rgba(255, 255, 255, 0.52);
}

.service-hero__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 70%) minmax(320px, 30%);
  align-items: center;
  gap: var(--service-hero-column-gap);
  min-height: clamp(420px, calc(100svh - var(--fs-header-height, 96px) - 300px), 500px);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding:
    clamp(34px, 4vw, 48px)
    max(24px, calc((100vw - var(--service-hero-wrap)) / 2))
    clamp(28px, 3vw, 42px);
  overflow: hidden;
  isolation: isolate;
  background: var(--service-hero-navy);
}

.service-hero__copy {
  position: relative;
  z-index: 2;
  max-width: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: clamp(8px, 1.2vw, 18px);
}

.service-hero__eyebrow {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(1rem, 1.2vw, 1.28rem);
  font-weight: 900;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.service-hero__title {
  margin: 0;
  display: grid;
  gap: 0.06em;
  max-width: none;
  color: #ffffff;
  font-size: clamp(3.2rem, 4.05vw, 5.6rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.service-hero__title-line {
  display: block;
  white-space: nowrap;
}

.service-hero__title-line--highlight,
.service-hero__title span {
  color: var(--service-hero-pink);
}

.service-hero__title-line--white {
  color: #ffffff;
}

.service-hero__text {
  max-width: 30rem;
  margin: 16px 0 0;
  color: var(--service-hero-text);
  font-size: clamp(0.98rem, 1.12vw, 1.08rem);
  line-height: 1.55;
}

.service-hero__journey {
  margin-top: 28px;
  width: min(706px, 100%);
}

.service-hero__journey-heading {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #ffffff;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.4;
}

.service-hero__journey-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ff3088;
  color: var(--service-hero-pink);
  line-height: 1;
}

.service-hero__journey-icon svg {
  width: 18px;
  height: 18px;
}

.service-hero__entry {
  position: relative;
  display: block;
  width: min(706px, 100%);
}

.service-hero__entry-field {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 86px;
  padding: 0 240px 0 26px;
  border-radius: 21px;
  background: #ffffff;
  box-shadow: 0 24px 44px rgba(2, 10, 24, 0.24);
}

.service-hero__entry-pin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--service-hero-pink);
  line-height: 1;
}

.service-hero__entry-pin svg {
  width: 24px;
  height: 24px;
}

.service-hero__entry input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--service-hero-navy);
  font-size: 1.14rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.service-hero__entry input::placeholder {
  color: #7c879d;
}

.service-hero__entry-button {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 190px;
  min-height: 66px;
  padding: 0 28px;
  border: 0;
  border-radius: 16px;
  background: var(--fl-gradient-button-primary);
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: var(--fl-button-shadow);
  cursor: pointer;
}

.service-hero__entry-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  font-weight: 500;
}

.service-hero__entry-meta span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.service-hero__entry-meta span + span {
  position: relative;
}

.service-hero__entry-meta span + span::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%);
}

.service-hero__meta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--service-hero-pink);
}

.service-hero__meta-icon svg {
  width: 22px;
  height: 22px;
}

.service-hero__trust {
  display: none;
}

.service-hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 180px;
  max-width: 220px;
}

.service-hero__trust li + li {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.service-hero__trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 48, 136, 0.85);
  background: rgba(255, 48, 136, 0.085);
}

.service-hero__trust-icon img,
.service-hero__trust-icon svg {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.service-hero__trust-copy {
  display: grid;
  gap: 2px;
}

.service-hero__trust-copy strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.service-hero__trust-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.45;
}

.service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.service-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 61px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.service-hero__button--primary {
  background: var(--fl-gradient-button-primary);
  color: #ffffff;
  box-shadow: var(--fl-button-shadow);
}

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

.service-hero__button--secondary {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.02);
  color: #ffffff;
}

.service-hero__button-arrow {
  font-size: 1.05rem;
  line-height: 1;
}

.service-hero__quick-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 30px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 650;
}

.service-hero__quick-meta-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.service-hero__quick-meta-item + .service-hero__quick-meta-item::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 50%;
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-50%);
}

.service-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0b1b33;
}

.service-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(8, 23, 43, 0.89) 0%,
      rgba(8, 23, 43, 0.87) 28%,
      rgba(8, 23, 43, 0.81) 44%,
      rgba(8, 23, 43, 0.58) 58%,
      rgba(8, 23, 43, 0.2) 73%,
      rgba(8, 23, 43, 0.05) 100%
    ),
    linear-gradient(
      180deg,
      rgba(8, 23, 43, 0.14) 0%,
      rgba(8, 23, 43, 0.07) 55%,
      rgba(8, 23, 43, 0.32) 100%
    );
  pointer-events: none;
}

.service-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.service-hero__overlay {
  position: relative;
  grid-column: 2;
  justify-self: end;
  align-self: end;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: clamp(300px, calc(30% - var(--service-hero-column-gap)), 360px);
  padding: 23px 25px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: var(--fl-header-gradient);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(8px);
}

.service-hero__overlay-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  border: 1px solid #ff3088;
  background: rgba(255, 48, 136, 0.085);
}

.service-hero__overlay-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.service-hero__overlay-icon svg {
  width: 22px;
  height: 22px;
}

.service-hero__overlay-copy {
  display: grid;
  gap: 6px;
}

.service-hero__overlay-copy strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.service-hero__overlay-copy strong::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 200px;
  height: 2px;
  margin-top: 14px;
  border-radius: 999px;
  background: #ff3088;
}

.service-hero__overlay-copy > span {
  display: block;
  padding-top: 2px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  line-height: 1.55;
}

.service-hero__overlay-rating {
  display: grid;
  gap: 8px;
  padding-top: 10px;
}

.service-hero__overlay-rating-row,
.service-hero__overlay-rating-source {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.service-hero__overlay-rating-label,
.service-hero__overlay-rating-score,
.service-hero__overlay-rating-source span {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

.service-hero__overlay-rating-source span:first-child {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
}

.service-hero__overlay-stars {
  display: inline-flex;
  gap: 3px;
}

.service-hero__overlay-stars span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: #ff3088;
  color: #ffffff;
  font-size: 0.68rem;
  line-height: 1;
  padding-top: 1px;
}

.service-hero__overlay-rating-brand {
  position: relative;
  padding-left: 16px;
}

.service-hero__overlay-rating-brand::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 50%;
  color: #ff3088;
  font-size: 0.9rem;
  transform: translateY(-50%);
}

.home-trust-strip {
  position: relative;
  z-index: 4;
  background: #ffffff;
  border-top: 1px solid rgba(8, 23, 43, 0.08);
  border-bottom: 1px solid rgba(8, 23, 43, 0.08);
}

.home-trust-strip__inner {
  width: min(1460px, calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.home-trust-item {
  min-height: 112px;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  align-items: center;
  padding: 16px 30px;
  border-right: 1px solid rgba(8, 23, 43, 0.1);
}

.home-trust-item:last-child {
  border-right: 0;
}

.home-trust-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
}

.home-trust-icon img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.home-trust-item strong {
  display: block;
  color: #08172b;
  font-size: 1.12rem;
  line-height: 1.1;
  font-weight: 850;
}

.home-trust-item span {
  display: block;
  margin-top: 7px;
  color: #62708f;
  font-size: 0.98rem;
  line-height: 1.35;
}

.ai-answer-summary {
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
  padding: clamp(42px, 6vw, 72px) 0;
}

.ai-answer-summary__intro {
  max-width: 760px;
  margin-bottom: 28px;
}

.ai-answer-summary__intro h2 {
  margin: 0;
  color: #08172b;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.ai-answer-summary__intro p {
  margin: 14px 0 0;
  color: #31415f;
  font-size: 1rem;
  line-height: 1.62;
}

.ai-answer-summary__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.ai-answer-summary__card {
  border: 1px solid rgba(8, 23, 43, 0.08);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(8, 23, 43, 0.035);
  padding: 20px;
}

.ai-answer-summary__card h3 {
  margin: 0;
  color: #08172b;
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.ai-answer-summary__card p {
  margin: 10px 0 0;
  color: #31415f;
  font-size: 0.94rem;
  line-height: 1.55;
}

.ai-answer-summary__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 24px;
}

.ai-answer-summary__links a {
  color: #08172b;
  font-weight: 800;
  text-decoration-color: rgba(255, 48, 136, 0.55);
  text-underline-offset: 4px;
}

.ai-answer-summary__links a:hover {
  color: #ff3088;
}

@media (max-width: 1100px) {
  .service-hero {
    padding-bottom: 0;
  }

  .service-hero__shell {
    position: relative;
    display: block;
    width: auto;
    min-height: auto;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding:
      clamp(46px, 6vw, 72px)
      max(20px, calc((100vw - 980px) / 2))
      clamp(34px, 5vw, 56px);
    overflow: hidden;
    background: var(--service-hero-navy);
  }

  .service-hero__copy {
    position: relative;
    z-index: 2;
    max-width: none;
    width: 100%;
    padding: 0;
  }

  .service-hero__title {
    max-width: none;
  }

  .service-hero__title-line {
    white-space: normal;
  }

  .service-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    min-height: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .service-hero__media::before {
    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%
      );
  }

  .service-hero__media img {
    object-position: center right;
  }

  .service-hero__overlay {
    position: relative;
    grid-column: 1;
    justify-self: start;
    align-self: start;
    z-index: 2;
    width: min(420px, 100%);
    margin-top: 26px;
  }

  .home-trust-strip__inner {
    width: min(calc(100% - 40px), 980px);
    grid-template-columns: repeat(2, 1fr);
  }

  .home-trust-item:nth-child(2n) {
    border-right: 0;
  }

  .home-trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(8, 23, 43, 0.1);
  }

  .ai-answer-summary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .service-hero {
    padding: 0 0 24px;
  }

  .service-hero__shell {
    padding: 38px 14px 30px;
  }

  .service-hero__breadcrumbs {
    font-size: 0.86rem;
  }

  .service-hero__eyebrow {
    font-size: 1.02rem;
  }

  .service-hero__text {
    font-size: 1rem;
  }

  .ai-answer-summary {
    padding: 36px 0;
  }

  .ai-answer-summary__grid {
    grid-template-columns: 1fr;
  }

  .ai-answer-summary__card {
    padding: 18px;
  }

  .service-hero__journey-heading {
    font-size: 1rem;
  }

  .service-hero__entry {
    display: grid;
    gap: 12px;
  }

  .service-hero__entry-field {
    min-height: 72px;
    padding: 0 18px;
    border-radius: 18px;
  }

  .service-hero__entry input {
    font-size: 1.06rem;
  }

  .service-hero__entry-button {
    position: static;
    width: 100%;
    min-height: 62px;
    font-size: 1rem;
    border-radius: 18px;
  }

  .service-hero__entry-meta {
    gap: 10px 18px;
    font-size: 0.92rem;
  }

  .service-hero__entry-meta span + span::before {
    left: -10px;
  }

  .service-hero__actions {
    flex-direction: column;
  }

  .service-hero__button {
    width: 100%;
  }

  .service-hero__quick-meta {
    gap: 11px 20px;
    font-size: 0.94rem;
  }

  .service-hero__quick-meta-item + .service-hero__quick-meta-item::before {
    left: -11px;
  }

  .service-hero__media {
    min-height: 0;
  }

  .service-hero__media::before {
    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%
      );
  }

  .service-hero__overlay {
    width: calc(100% - 28px);
    margin-top: 22px;
    padding: 22px 20px;
    border-radius: 22px;
  }

  .home-trust-strip__inner {
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
  }

  .home-trust-item {
    min-height: auto;
    grid-template-columns: 58px 1fr;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(8, 23, 43, 0.1);
  }

  .home-trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(8, 23, 43, 0.1);
  }

  .home-trust-item:last-child {
    border-bottom: 0;
  }

  .home-trust-icon {
    width: 58px;
    height: 58px;
  }

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

  .home-trust-item strong {
    font-size: 1.02rem;
  }

  .home-trust-item span {
    font-size: 0.94rem;
  }
}

/* Service pages inherit the same more open premium tracking as the homepage. */
.service-hero__eyebrow,
.service-hero__label,
.service-hero__badge {
  letter-spacing: 0.105em;
}

.service-hero__title,
.service-hero__overlay h2,
.service-hero__trust strong,
.home-trust-item strong {
  letter-spacing: -0.018em;
}

.service-hero__lead,
.service-hero__trust,
.service-hero__overlay p,
.service-hero__quick-meta,
.home-trust-item span {
  letter-spacing: 0.006em;
}

/* Service-page trust bars match the homepage: no icons, short separators. */
.home-trust-item {
  position: relative;
  display: flex !important;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  padding: 18px 28px;
  border-right: 0 !important;
  border-bottom: 0 !important;
  text-align: center;
}

.home-trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 68px;
  background: rgba(8, 23, 43, 0.13);
  transform: translateY(-50%);
}

.home-trust-icon {
  display: none !important;
}

.home-trust-item strong {
  display: inline-block;
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  font-weight: 900;
}

.home-trust-item strong::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: var(--service-hero-pink);
}

.home-trust-item span {
  max-width: 210px;
  margin: 10px auto 0;
  font-size: 0.83rem;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .home-trust-item:nth-child(2n)::after {
    display: none;
  }

  .home-trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(8, 23, 43, 0.1) !important;
  }
}

@media (max-width: 760px) {
  .home-trust-item {
    min-height: auto;
    padding: 20px 8px;
  }

  .home-trust-item::after {
    display: none !important;
  }

  .home-trust-item:not(:last-child) {
    border-bottom: 1px solid rgba(8, 23, 43, 0.1) !important;
  }
}

/* Pages with the homepage-style trust bar need extra hero depth for the overlap. */
.service-hero--trust-overlap .service-hero__shell {
  min-height: clamp(500px, calc(100svh - var(--fs-header-height, 96px) - 210px), 600px);
  padding-bottom: clamp(88px, 9vw, 118px);
}

/* Restore the current homepage trust-bar treatment when service-hero.css is loaded after brand CSS. */
.home-trust-strip--unified {
  position: relative;
  padding: 22px 0 26px;
  background: var(--bg, #f7f7fa);
  border: 0;
}

.home-trust-strip--unified.home-trust-strip--overlap {
  position: relative;
  z-index: 5;
  margin-top: clamp(-56px, -7vw, -38px);
  padding: 0 0 clamp(10px, 2vw, 18px);
  background: transparent;
}

.home-trust-strip--unified.home-trust-strip--overlap::before {
  content: "";
  position: absolute;
  inset: clamp(38px, 5vw, 54px) 0 0;
  z-index: 0;
  background: var(--bg, #f7f7fa);
  pointer-events: none;
}

.home-trust-strip--unified .home-trust-strip__panel {
  position: relative;
  z-index: 1;
  width: var(--site-content-width);
  margin: 0 auto;
  padding-top: clamp(22px, 3vw, 30px);
  background: #ffffff;
  border: 1px solid rgba(8, 23, 43, 0.07);
  border-radius: clamp(20px, 2.5vw, 28px);
  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-trust-strip--unified .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-trust-strip--unified .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);
}

.home-trust-strip--unified .home-trust-item {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: clamp(12px, 1.8vw, 18px);
  align-items: center;
  min-height: clamp(104px, 11vw, 132px);
  margin: 6px;
  padding: clamp(14px, 2vw, 22px);
  justify-content: stretch;
  text-align: left;
  border-right: 0 !important;
  border-bottom: 0 !important;
}

.home-trust-strip--unified .home-trust-item::after {
  content: none !important;
}

.home-trust-strip--unified .home-trust-icon {
  position: relative;
  isolation: isolate;
  display: grid !important;
  width: clamp(56px, 6.8vw, 74px);
  height: clamp(56px, 6.8vw, 74px);
  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);
  border-radius: 50%;
  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);
}

.home-trust-strip--unified .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-trust-strip--unified .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-trust-strip--unified .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));
}

.home-trust-strip--unified .home-trust-icon--reviews img {
  width: clamp(34px, 4.15vw, 48px);
  height: clamp(34px, 4.15vw, 48px);
  transform: translateY(-0.5px);
}

.home-trust-strip--unified .home-trust-item strong {
  display: block;
  font-size: clamp(0.97rem, 1.05vw, 1.12rem);
  font-weight: 800;
}

.home-trust-strip--unified .home-trust-item strong::after {
  margin: 8px 0 0 !important;
}

.home-trust-strip--unified .home-trust-item span {
  max-width: none;
  margin-right: 0;
  margin-left: 0;
  font-size: clamp(0.82rem, 0.92vw, 0.9rem);
}

.service-hero__trust-icon,
.service-hero__overlay-icon {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border: 2px solid rgba(255, 48, 136, 0.82);
  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%);
  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.2),
    0 3px 0 rgba(5, 13, 26, 0.28);
}

.service-hero__trust-icon::before,
.service-hero__overlay-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;
}

.service-hero__trust-icon::after,
.service-hero__overlay-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;
}

.service-hero__trust-icon :is(img, svg),
.service-hero__overlay-icon :is(img, svg) {
  position: relative;
  z-index: 1;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.service-hero__trust-icon img,
.service-hero__overlay-icon img {
  filter:
    brightness(0) invert(1)
    drop-shadow(0 2px 1px rgba(0, 0, 0, 0.28));
}

.service-hero__trust-icon svg :is(path, circle, rect, line, polyline, polygon),
.service-hero__overlay-icon svg :is(path, circle, rect, line, polyline, polygon) {
  fill: none;
  stroke: #ffffff;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.28));
}

@media (max-width: 1100px) {
  .service-hero--trust-overlap .service-hero__shell {
    padding-bottom: clamp(76px, 11vw, 104px);
  }

  .home-trust-strip--unified.home-trust-strip--overlap {
    margin-top: clamp(-44px, -8vw, -28px);
  }

  .home-trust-strip--unified.home-trust-strip--overlap::before {
    top: clamp(30px, 6vw, 44px);
  }

  .home-trust-strip--unified .home-trust-strip__panel {
    width: min(calc(100% - 40px), 980px);
  }

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

  .home-trust-strip--unified .home-trust-item {
    min-height: auto;
    margin: 4px;
  }

  .home-trust-strip--unified .home-trust-item:nth-child(-n + 2) {
    border-bottom: 0 !important;
  }
}

@media (max-width: 760px) {
  .service-hero--trust-overlap {
    padding-bottom: 0;
  }

  .service-hero--trust-overlap .service-hero__shell {
    padding-bottom: clamp(64px, 16vw, 84px);
  }

  .home-trust-strip--unified.home-trust-strip--overlap {
    margin-top: -26px;
  }

  .home-trust-strip--unified.home-trust-strip--overlap::before {
    top: 24px;
  }

  .home-trust-strip--unified .home-trust-strip__panel {
    width: calc(100% - 24px);
    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-trust-strip--unified .home-trust-strip__inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px 12px 22px;
  }

  .home-trust-strip--unified .home-trust-item {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    margin: 0;
    padding: 16px;
    border: 1px solid rgba(8, 23, 43, 0.06);
    background: rgba(251, 252, 254, 0.98);
  }

  .home-trust-strip--unified .home-trust-icon {
    width: 52px;
    height: 52px;
  }

  .home-trust-strip--unified .home-trust-icon img {
    width: 30px;
    height: 30px;
  }

  .home-trust-strip--unified .home-trust-icon--reviews img {
    width: 34px;
    height: 34px;
  }

  .home-trust-strip--unified .home-trust-item:not(:last-child) {
    border-bottom: 0 !important;
  }
}
