/* Trust page concept */
.trust-page-body {
  --trust-bg: #0D0D0F;
  --trust-text: #F4F4F5;
  --trust-muted: #A6A6AA;
  --trust-grid-bg: #2D2D2E;
  --trust-grid-line: rgba(244, 244, 245, 0.1);
  --trust-type-kicker: 11px;
  --trust-type-meta: 12px;
  --trust-type-body-sm: 14px;
  --trust-type-body: 16px;
  --trust-type-body-lg: 18px;
  --trust-type-title: clamp(30px, 4.6vw, 40px);
  --trust-type-title-lg: clamp(38px, 5.8vw, 56px);
  --trust-type-card-title: clamp(28px, 4.8vw, 40px);
  --trust-type-number: clamp(38px, 7vw, 46px);
  min-height: 100vh;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--trust-text);
  background: var(--trust-bg);
}

.trust-page-body::before {
  background-color: var(--trust-grid-bg);
  background-image:
    linear-gradient(90deg, var(--trust-grid-line) 1px, transparent 1px),
    linear-gradient(var(--trust-grid-line) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.22;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

.trust-page {
  min-height: 100vh;
  overflow: hidden;
  background: var(--trust-bg);
}

.trust-hero-screen {
  position: relative;
  width: min(100%, 1440px);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 58px);
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(360px, 1fr);
  align-items: center;
  gap: clamp(28px, 6vw, 96px);
  overflow: hidden;
}

.trust-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.trust-logo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0 0 22px;
  opacity: 0.95;
}

.trust-logo img {
  display: block;
  width: clamp(80px, 10vw, 110px);
  height: auto;
}

.trust-logo span {
  color: #C394FA;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.trust-kicker {
  margin: 0 0 24px;
  color: #C394FA;
  font-size: var(--trust-type-kicker);
  font-weight: 800;
  letter-spacing: 0.34em;
}

.trust-hero-copy h1 {
  max-width: 650px;
  margin: 0;
  color: var(--trust-text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(58px, 6.8vw, 104px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: none;
}

.trust-hero-copy h1 span {
  display: block;
  color: #C394FA;
}

.trust-hero-copy h1 span strong {
  font-weight: 900;
}

.trust-lead {
  max-width: 520px;
  margin: 38px 0 36px;
  color: var(--trust-muted);
  font-size: var(--trust-type-body-lg);
  font-weight: 500;
  line-height: 1.5;
}

.trust-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #C394FA;
  color: #edf4ff;
  font-size: var(--trust-type-body);
  font-family: inherit;
  font-weight: 800;
  box-shadow: none;
  text-decoration: none;
  appearance: none;
  cursor: pointer;
}

.trust-primary-button span {
  font-size: var(--trust-type-body-lg);
}

.trust-visual-stage {
  position: relative;
  min-height: 720px;
}

.trust-content-card {
  position: absolute;
}

.trust-content-card {
  --float-rotate: 0deg;
  --float-distance: 3px;
  z-index: 1;
  width: min(18vw, 176px);
  min-width: 136px;
  aspect-ratio: 0.68;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 18px;
  background: #11161f;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.42);
  transform: translateY(0) rotate(var(--float-rotate));
  animation: trust-floating-card 4.8s ease-in-out infinite;
}

.trust-content-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9) contrast(1.04);
}

.trust-content-card-reels {
  --float-rotate: -7deg;
  left: -8%;
  top: 8%;
}

.trust-content-card-patient {
  --float-rotate: 6deg;
  right: -8%;
  top: 7%;
  animation-delay: -1.1s;
}

.trust-content-card-appointment {
  --float-rotate: -7deg;
  left: -7%;
  bottom: 13%;
  animation-delay: -2.2s;
}

.trust-content-card-trust {
  --float-rotate: 7deg;
  right: -7%;
  bottom: 15%;
  animation-delay: -3.3s;
}

.trust-reel-media {
  position: relative;
  width: 100%;
  height: 100%;
  margin-top: 0;
  overflow: hidden;
}

.trust-phone-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 360ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}

.trust-phone-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.trust-phone-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.9;
  filter: saturate(0.92) contrast(1.04);
}

.trust-case-slide {
  display: grid;
  grid-template-rows: 50% 50%;
  background: #11161f;
}

.trust-case-slide img {
  opacity: 0.92;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-case-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 18px 24px;
  background: #11161f;
}

.trust-case-copy span {
  margin-bottom: 10px;
  color: #C394FA;
  font-size: var(--trust-type-meta);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-case-copy h2 {
  color: rgba(244, 244, 245, 0.92);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: var(--trust-type-card-title);
  line-height: 1.02;
  letter-spacing: 0;
}

.trust-case-copy p {
  margin: 14px 0 0;
  color: rgba(244, 244, 245, 0.58);
  font-size: var(--trust-type-body);
  font-weight: 600;
  line-height: 1.45;
}

@keyframes trust-phone-breathe {
  0%,
  100% {
    transform: translateX(var(--phone-x)) translateY(0);
  }

  50% {
    transform: translateX(var(--phone-x)) translateY(-8px);
  }
}

@keyframes trust-icon-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-6px) scale(1.035);
  }
}

.trust-problem-section {
  margin-top: clamp(54px, 7vw, 96px);
  padding: clamp(58px, 7vw, 96px) 22px clamp(30px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--trust-bg);
}

.trust-problem-section p {
  margin: 0 0 24px;
  color: #C394FA;
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.trust-problem-section h2 {
  max-width: 520px;
  margin: 0;
  color: var(--trust-text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: var(--trust-type-title-lg);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
}

.trust-problem-section span {
  display: block;
  max-width: 560px;
  margin-top: 24px;
  color: var(--trust-muted);
  font-weight: 800;
  font-size: var(--trust-type-body-lg);
  line-height: 1.3;
}

/* =========================
   CHANNEL STACK
========================= */

.trust-referral-section {
  padding: 20px 18px 84px;
  background: var(--trust-bg);
}

.trust-subsection-carousel {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.trust-subsection-track {
  position: relative;
  display: grid;
  gap: 34px;
}

.trust-channel-block {
  width: min(100%, 1020px);
  margin: 0 auto;
}

.trust-channel-block > h3 {
  max-width: 620px;
  margin: 0 0 16px;
  color: var(--trust-text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
  white-space: nowrap;
}

.trust-channel-card {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  min-height: 0;
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 22px;
  overflow: hidden;
  border: 1px solid rgba(244, 244, 245, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 46%),
    #1b1d20;
  box-shadow: inset 0 0 0 1px rgba(244, 244, 245, 0.03);
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.trust-channel-referral,
.trust-channel-google {
  justify-content: center;
}

.trust-channel-block:nth-child(3) > h3 {
  color: #C394FA;
}

.trust-channel-card > .trust-card-kicker {
  width: fit-content;
  min-height: 28px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(244, 244, 245, 0.38);
  border-radius: 999px;
  color: #C394FA;
  font-size: var(--trust-type-kicker);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.trust-channel-card > .trust-card-kicker i {
  display: none;
}

.trust-channel-card > p {
  max-width: 520px;
  margin: 0;
  color: var(--trust-muted);
  font-size: var(--trust-type-body);
  font-weight: 500;
  line-height: 1.35;
}

.trust-social-example {
  margin-top: 22px;
}

.trust-social-example > span {
  display: block;
  margin-bottom: 14px;
  color: rgba(244, 244, 245, 0.78);
  font-size: var(--trust-type-body-lg);
  font-weight: 800;
  line-height: 1;
}

.trust-doctor-compilation {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.trust-doctor-compilation::-webkit-scrollbar {
  display: none;
}

.trust-doctor-compilation article {
  flex: 0 0 92%;
  min-width: 0;
  scroll-snap-align: start;
}

.trust-doctor-compilation img {
  display: block;
  width: 100%;
  max-height: 420px;
  height: auto;
  object-fit: contain;
  object-position: top center;
  border: 1px solid rgba(244, 244, 245, 0.14);
  border-radius: 18px;
  background: #11161f;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38);
}

.trust-mini-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

@keyframes trust-floating-card {
  0%,
  100% {
    transform: translateY(0) rotate(var(--float-rotate));
  }

  50% {
    transform: translateY(calc(var(--float-distance) * -1)) rotate(var(--float-rotate));
  }
}

@keyframes trust-search-type {
  0%,
  11.1% {
    max-width: 0;
  }

  33.3%,
  88.9% {
    max-width: 19ch;
  }

  100% {
    max-width: 0;
  }
}

@keyframes trust-search-cursor {
  0%,
  48% {
    opacity: 1;
  }

  49%,
  100% {
    opacity: 0;
  }
}

@keyframes trust-doctor-option-cycle {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }

  8%,
  72% {
    opacity: 1;
    transform: translateY(0);
  }

  86%,
  100% {
    opacity: 0;
    transform: translateY(8px);
  }
}

@keyframes trust-referral-you {
  0%,
  100% {
    border-color: rgba(244, 244, 245, 0.2);
    color: #C394FA;
  }

  10%,
  82% {
    border-color: rgba(195, 148, 250, 0.56);
    color: var(--trust-text);
  }
}

@keyframes trust-referral-arrow {
  0%,
  100% {
    opacity: 0.45;
    transform: translateX(0);
  }

  16%,
  76% {
    opacity: 1;
    transform: translateX(5px);
  }
}

@keyframes trust-referral-avatar {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  10%,
  76% {
    opacity: 1;
    transform: scale(1);
  }

  90%,
  100% {
    opacity: 0;
    transform: scale(0.94);
  }
}

.trust-mini-flow > span,
.trust-mini-options span {
  min-width: 68px;
  min-height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(244, 244, 245, 0.2);
  border-radius: 10px;
  color: #C394FA;
  background: rgba(13, 13, 15, 0.36);
  font-size: var(--trust-type-body-sm);
  font-weight: 700;
}

.trust-channel-referral .trust-mini-flow > span {
  animation: trust-referral-you 7s ease-in-out infinite;
}

.trust-mini-flow b {
  color: #C394FA;
  font-size: 18px;
  font-weight: 600;
  animation: trust-referral-arrow 7s ease-in-out infinite;
}

.trust-mini-avatars {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
}

.trust-mini-avatars img {
  width: 34px;
  height: 34px;
  border: 2px solid #0D0D0F;
  border-radius: 50%;
  object-fit: cover;
  opacity: 1;
  transform: scale(1);
  animation: none;
}

.trust-mini-avatars img:nth-child(1) {
  animation-delay: 0.8s;
}

.trust-mini-avatars img:nth-child(2) {
  animation-delay: 1.05s;
}

.trust-mini-avatars img:nth-child(3) {
  animation-delay: 1.3s;
}

.trust-mini-avatars img:nth-child(4) {
  animation-delay: 1.55s;
}

.trust-mini-avatars img:nth-child(5) {
  animation-delay: 1.8s;
}

.trust-mini-avatars img + img {
  margin-left: -8px;
}

.trust-mini-search {
  width: 100%;
  box-sizing: border-box;
  min-height: 44px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(244, 244, 245, 0.34);
  border-radius: 999px;
  color: #C394FA;
  background: rgba(13, 13, 15, 0.34);
  font-size: var(--trust-type-body-sm);
  font-weight: 600;
}

.trust-search-text {
  position: relative;
  display: inline-block;
  max-width: fit-content;
  overflow: hidden;
  white-space: nowrap;
  animation: trust-search-type 9s steps(19, end) infinite;
}

.trust-search-text::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 0;
  width: 2px;
  height: calc(100% - 4px);
  background: #C394FA;
  animation: trust-search-cursor 900ms steps(1, end) infinite;
}

.trust-mini-search img {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.trust-mini-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
}

.trust-mini-options span {
  color: var(--trust-text);
  opacity: 0;
  transform: translateY(8px);
  animation: trust-doctor-option-cycle 9s ease-in-out infinite;
}

.trust-mini-options span:nth-child(1) {
  animation-delay: 2s;
}

.trust-mini-options span:nth-child(2) {
  animation-delay: 2.2s;
}

.trust-mini-options span:nth-child(3) {
  animation-delay: 2.4s;
}

.trust-audience-map {
  position: relative;
  width: min(100%, 560px);
  min-height: 320px;
  margin: 0 auto;
  overflow: hidden;
}

.trust-audience-ring,
.trust-audience-core,
.trust-audience-dot,
.trust-audience-orbit {
  position: absolute;
}

.trust-audience-ring {
  left: 50%;
  top: 50%;
  border: 1px solid rgba(195, 148, 250, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: trust-audience-pulse 5.8s ease-in-out infinite;
}

.trust-audience-ring-one {
  width: 126px;
  height: 126px;
}

.trust-audience-ring-two {
  width: 238px;
  height: 238px;
  animation-delay: -1.6s;
}

.trust-audience-ring-three {
  width: 360px;
  height: 360px;
  opacity: 0.72;
  animation-delay: -3.2s;
}

.trust-audience-core {
  left: 50%;
  top: 50%;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  border: 1px solid rgba(195, 148, 250, 0.44);
  border-radius: 50%;
  background: #151922;
  color: var(--trust-text);
  transform: translate(-50%, -50%);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
  animation: trust-audience-core-breathe 4.6s ease-in-out infinite;
}

.trust-audience-core small {
  color: rgba(244, 244, 245, 0.58);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.trust-audience-core strong {
  font-size: 18px;
  font-weight: 900;
}

.trust-audience-dot {
  --label-angle: 0deg;
  --label-radius: 172px;
  left: 50%;
  top: 50%;
  min-height: 34px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(195, 148, 250, 0.38);
  border-radius: 999px;
  background: rgba(13, 13, 15, 0.74);
  color: rgba(244, 244, 245, 0.84);
  font-size: var(--trust-type-meta);
  font-weight: 800;
  white-space: nowrap;
  opacity: 0;
  animation:
    trust-audience-label-in 520ms ease forwards,
    trust-audience-label-orbit 26s linear infinite;
}

.trust-audience-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #C394FA;
}

.dot-one {
  --label-angle: 188deg;
  --label-radius: 178px;
  animation-delay: 120ms;
}

.dot-two {
  --label-angle: 324deg;
  --label-radius: 176px;
  animation-delay: 240ms;
}

.dot-three {
  --label-angle: 22deg;
  --label-radius: 176px;
  animation-delay: 360ms;
}

.dot-four {
  --label-angle: 154deg;
  --label-radius: 174px;
  animation-delay: 480ms;
}

.dot-five {
  --label-angle: 266deg;
  --label-radius: 146px;
  animation-delay: 600ms;
}

.dot-six {
  --label-angle: 88deg;
  --label-radius: 150px;
  animation-delay: 720ms;
}

.trust-audience-orbit {
  left: 50%;
  top: 50%;
  width: 238px;
  height: 238px;
  transform: translate(-50%, -50%);
  animation: trust-audience-orbit 14s linear infinite;
}

.trust-audience-orbit i {
  position: absolute;
  left: 50%;
  top: -5px;
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background: #C394FA;
  transform: translateX(-50%);
}

.orbit-one {
  width: 126px;
  height: 126px;
  animation-duration: 10s;
}

.orbit-two {
  animation-delay: -4s;
}

.orbit-three {
  width: 360px;
  height: 360px;
  animation-duration: 18s;
  animation-delay: -8s;
}

@keyframes trust-audience-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.025);
  }
}

@keyframes trust-audience-orbit {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes trust-audience-core-breathe {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.03);
  }
}

@keyframes trust-audience-label-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes trust-audience-label-orbit {
  0% {
    transform:
      translate(-50%, -50%)
      rotate(var(--label-angle))
      translateX(var(--label-radius))
      rotate(calc(var(--label-angle) * -1));
  }

  100% {
    transform:
      translate(-50%, -50%)
      rotate(calc(var(--label-angle) + 360deg))
      translateX(var(--label-radius))
      rotate(calc((var(--label-angle) + 360deg) * -1));
  }
}

.trust-impact-section {
  padding: 70px 14px 82px;
  background: var(--trust-bg);
}

.trust-impact-inner {
  width: min(100%, 460px);
  margin: 0 auto;
}

.trust-impact-section h2 {
  margin: 0;
  color: var(--trust-text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(36px, 7vw, 58px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.trust-impact-section h2 span {
  color: #C394FA;
  font-weight: 900;
}

.trust-impact-eyebrow {
  margin: 0 0 24px;
  color: #C394FA;
  font-size: var(--trust-type-kicker);
  font-weight: 900;
  letter-spacing: 0.2em;
}

.trust-impact-statements {
  margin-top: 34px;
  display: grid;
  gap: 12px;
}

.trust-impact-statements > p {
  margin: 0;
  color: var(--trust-text);
  font-size: clamp(20px, 3.7vw, 30px);
  line-height: 1.1;
}

.trust-impact-statements > p strong {
  font-weight: 900;
}

.trust-impact-question {
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(244, 244, 245, 0.14);
}

.trust-impact-question p {
  margin: 0;
  color: var(--trust-muted);
  font-size: var(--trust-type-body);
  font-weight: 500;
  line-height: 1.4;
}

.trust-impact-question blockquote {
  margin: 14px 0;
  color: #C394FA;
  font-size: clamp(28px, 6vw, 46px);
  font-weight: 900;
  line-height: 1;
}

.trust-impact-because {
  margin-top: 34px;
}

.trust-impact-because strong {
  display: block;
  margin-bottom: 18px;
  color: #C394FA;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  line-height: 1;
}

.trust-impact-because ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
  list-style: none;
}

.trust-impact-because li {
  position: relative;
  padding-left: 22px;
  color: rgba(244, 244, 245, 0.84);
  font-size: clamp(18px, 3.7vw, 24px);
  font-weight: 700;
  line-height: 1.28;
}

.trust-impact-because li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C394FA;
  box-shadow: 0 0 18px rgba(195, 148, 250, 0.42);
}

.trust-system-section {
  position: relative;
  padding: 92px 22px 112px;
  background:
    radial-gradient(circle at 8% 62%, rgba(106, 39, 220, 0.18), transparent 28%),
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.035), transparent 34%),
    var(--trust-bg);
  overflow: hidden;
}

.trust-system-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.trust-system-copy {
  max-width: 780px;
}

.trust-system-kicker {
  margin: 0 0 32px;
  color: #C394FA;
  font-size: var(--trust-type-kicker);
  font-weight: 900;
  letter-spacing: 0.48em;
}

.trust-system-heading {
  max-width: 820px;
  margin: 0;
  color: rgba(244, 244, 245, 0.96);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(38px, 6.2vw, 72px);
  font-weight: 900;
  line-height: 0.94;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 18px 38px rgba(0, 0, 0, 0.55);
}

.trust-system-heading span {
  display: block;
  color: #C394FA;
}

.trust-system-copy > p:not(.trust-system-kicker) {
  max-width: 620px;
  margin: 44px 0 0;
  color: rgba(244, 244, 245, 0.88);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.18;
}

.trust-system-copy > p:not(.trust-system-kicker)::before {
  content: "";
  display: block;
  width: 92px;
  height: 3px;
  margin-bottom: 38px;
  background: #C394FA;
}

.trust-page-showcase {
  width: min(100%, 820px);
  margin: 54px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
}

.trust-framework-showcase {
  display: block;
  width: min(100%, 720px);
  margin-top: 48px;
}

.trust-framework-showcase > img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(244, 244, 245, 0.14);
  border-radius: 18px;
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.42);
}

.trust-platform-row {
  width: fit-content;
  margin: 76px 0 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-platform-row span {
  width: 52px;
  height: 52px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 244, 245, 0.16);
  border-radius: 14px;
  background: rgba(17, 22, 31, 0.88);
  color: rgba(244, 244, 245, 0.86);
}

.trust-platform-row img {
  width: 24px;
  height: 24px;
}

.trust-system-panel {
  width: min(100%, 760px);
  margin-top: 56px;
  --trust-progress: 8%;
}

.trust-system-card-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 0;
  overflow: visible;
}

.trust-system-card-stage::before,
.trust-system-card-stage::after {
  display: none;
}

.trust-framework-list::before {
  content: "";
  position: absolute;
  left: calc(clamp(58px, 8vw, 82px) / 2);
  top: 32px;
  bottom: 32px;
  display: block;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(195, 148, 250, 0.86) 12%, rgba(106, 39, 220, 0.72) 88%, transparent);
  box-shadow: 0 0 22px rgba(195, 148, 250, 0.28);
  transform: translateX(-50%);
}

.trust-system-card {
  position: relative;
  z-index: 2;
  min-height: 0;
  padding: 22px 0 28px;
  display: grid;
  grid-template-columns: clamp(58px, 8vw, 82px) minmax(0, 1fr);
  gap: 0 24px;
  border: 0;
  border-top: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  animation: none;
}

.trust-system-card:last-child {
  border-bottom: 0;
}

.trust-framework-letter {
  position: relative;
  z-index: 2;
  width: clamp(48px, 6vw, 62px);
  height: clamp(48px, 6vw, 62px);
  display: grid;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(195, 148, 250, 0.46);
  border-radius: 16px;
  color: #C394FA;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(195, 148, 250, 0.2), rgba(17, 22, 31, 0.96) 62%);
  box-shadow:
    inset 0 0 0 1px rgba(244, 244, 245, 0.04),
    0 0 28px rgba(106, 39, 220, 0.24);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(30px, 4.4vw, 42px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.trust-system-card-content {
  position: relative;
  z-index: 2;
}

.trust-system-card h3 {
  margin: 0;
  max-width: 360px;
  color: rgba(244, 244, 245, 0.96);
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: var(--trust-type-card-title);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.trust-system-card h3::after {
  content: ".";
  color: #C394FA;
}

.trust-system-card p {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--trust-muted);
  font-size: var(--trust-type-body);
  font-weight: 500;
  line-height: 1.34;
}

/* =========================
   END GOAL
========================= */

.trust-end-goal-section {
  padding: 76px 14px 92px;
  background: var(--trust-bg);
}

.trust-end-goal-inner {
  width: min(100%, 460px);
  margin: 0 auto;
}

.trust-end-goal-kicker {
  margin: 0 0 24px;
  color: #C394FA;
  font-size: clamp(14px, 1.8vw, 18px);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-align: center;
}

.trust-end-goal-section h2 {
  max-width: 420px;
  margin: 0 auto;
  color: var(--trust-text);
  font-size: var(--trust-type-title);
  font-weight: 900;
  line-height: 1.02;
  text-align: left;
}

.trust-end-goal-section h2 span {
  display: block;
  margin-top: 12px;
  color: #C394FA;
}

.trust-conversation-stack {
  margin-top: 46px;
  display: grid;
  gap: 22px;
}

.trust-conversation-card {
  padding: 24px;
  border: 1px solid rgba(244, 244, 245, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%),
    #11161f;
  box-shadow: inset 0 0 0 1px rgba(244, 244, 245, 0.02);
}

.trust-conversation-card > span {
  display: block;
  margin-bottom: 22px;
  color: rgba(166, 166, 170, 0.78);
  font-size: var(--trust-type-meta);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.trust-conversation-card-positive > span {
  color: #C394FA;
}

.trust-conversation-card-positive {
  border-color: rgba(195, 148, 250, 0.38);
  background:
    linear-gradient(145deg, rgba(195, 148, 250, 0.22), rgba(106, 39, 220, 0.08) 48%, transparent 100%),
    #14111d;
  box-shadow:
    inset 0 0 0 1px rgba(195, 148, 250, 0.12),
    0 18px 42px rgba(106, 39, 220, 0.16);
}

.trust-question-list,
.trust-answer-list {
  display: grid;
  gap: 12px;
}

.trust-question-list p,
.trust-answer-list p {
  margin: 0;
  color: var(--trust-muted);
  font-size: var(--trust-type-body);
  font-weight: 500;
  line-height: 1.36;
}

.trust-question-list p {
  min-height: 46px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(244, 244, 245, 0.26);
  border-radius: 12px;
}

.trust-answer-list p {
  padding: 16px 18px;
  border-radius: 10px;
  background: rgba(17, 22, 31, 0.34);
}

/* =========================
   CASE STUDY
========================= */

.trust-case-study-section {
  padding: 74px 14px 92px;
  background: var(--trust-bg);
}

.trust-case-study-inner {
  width: min(100%, 900px);
  margin: 0 auto;
}

.trust-case-study-inner p {
  margin: 0 0 24px;
  color: #C394FA;
  font-size: var(--trust-type-kicker);
  font-weight: 900;
  letter-spacing: 0.3em;
}

.trust-case-study-inner h2 {
  margin: 0;
  color: var(--trust-text);
  font-size: var(--trust-type-title);
  font-weight: 900;
  line-height: 1.05;
}

.trust-case-study-inner h2 span {
  color: #C394FA;
}

.trust-case-mockup {
  margin-top: 50px;
  overflow: hidden;
  border: 1px solid rgba(244, 244, 245, 0.14);
  border-radius: 22px;
  background: #11161f;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.trust-case-mockup img {
  display: block;
  width: 100%;
  height: auto;
}

.trust-case-posts {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.trust-case-posts::-webkit-scrollbar {
  display: none;
}

.trust-case-posts a {
  position: relative;
  flex: 0 0 72%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--trust-text);
  text-decoration: none;
}

.trust-case-posts span {
  color: #C394FA;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust-case-posts img {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  height: auto;
  object-fit: cover;
  border: 1px solid rgba(244, 244, 245, 0.12);
  border-radius: 18px;
  background: #11161f;
}

.trust-case-results {
  margin-top: 44px;
}

.trust-results-kicker {
  display: block;
}

.trust-results-kicker strong {
  color: var(--trust-text);
  font-size: clamp(14px, 2.7vw, 18px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.trust-case-results h3 {
  margin: 14px 0 0;
  color: #C394FA;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(28px, 5.8vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.trust-outlet-gallery {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.trust-outlet-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(244, 244, 245, 0.14);
  border-radius: 14px;
  background: #11161f;
}

.trust-results-grid {
  margin-top: 26px;
  padding-bottom: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-bottom: 0;
}

.trust-results-grid article {
  display: grid;
  gap: 12px;
}

.trust-results-grid article + article {
  padding-left: 18px;
  border-left: 1px solid rgba(244, 244, 245, 0.16);
}

.trust-results-grid article > span {
  color: rgba(244, 244, 245, 0.56);
  font-size: var(--trust-type-meta);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.trust-results-grid strong {
  position: relative;
  display: inline-block;
  height: 1.08em;
  color: var(--trust-text);
  font-size: var(--trust-type-number);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
}

.trust-results-grid strong.is-rolling {
  min-width: 4ch;
}

.trust-results-grid strong[data-count-sequence^="RM"].is-rolling {
  min-width: 5.9ch;
}

.trust-sales-final {
  display: grid;
  gap: 4px;
}

.trust-sales-final strong {
  font-size: clamp(42px, 10vw, 64px);
}

.trust-sales-final small {
  color: rgba(244, 244, 245, 0.68);
  font-size: clamp(15px, 3.6vw, 20px);
  font-weight: 800;
  line-height: 1;
}

.trust-counter-value {
  display: block;
  line-height: 1;
}

.trust-counter-value.is-exiting,
.trust-counter-value.is-entering {
  position: absolute;
  left: 0;
  top: 0;
  will-change: opacity, transform;
}

.trust-counter-value.is-exiting {
  animation: trust-counter-exit 260ms ease both;
}

.trust-counter-value.is-entering {
  animation: trust-counter-enter 260ms ease both;
}

.trust-results-grid strong.is-final {
  animation: trust-counter-final 360ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.trust-results-grid b {
  color: #C394FA;
  font-size: 32px;
  font-weight: 500;
  line-height: 0.8;
}

.trust-expansion-map {
  margin-top: 76px;
  padding-top: 64px;
  border-top: 1px solid rgba(244, 244, 245, 0.18);
}

.trust-expansion-intro {
  margin-bottom: 52px;
}

.trust-expansion-intro p {
  margin: 0 0 26px;
  color: #C394FA;
  font-size: var(--trust-type-kicker);
  font-weight: 900;
  letter-spacing: 0.3em;
}

.trust-expansion-intro h2 {
  margin: 0;
  color: var(--trust-text);
  font-size: var(--trust-type-title);
  font-weight: 900;
  line-height: 1.03;
}

.trust-expansion-intro h2 span {
  color: #C394FA;
}

.trust-expansion-intro > strong {
  display: block;
  max-width: 350px;
  margin-top: 42px;
  color: var(--trust-muted);
  font-size: var(--trust-type-body);
  font-weight: 500;
  line-height: 1.4;
}

.trust-expansion-mockup {
  margin-top: 48px;
  overflow: hidden;
  border: 1px solid rgba(244, 244, 245, 0.14);
  border-radius: 22px;
  background: #11161f;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.trust-expansion-mockup img {
  display: block;
  width: 100%;
  height: auto;
}

.trust-expansion-result {
  margin-top: 34px;
  text-align: center;
}

.trust-expansion-result > strong {
  display: block;
  color: var(--trust-text);
  font-size: clamp(15px, 3vw, 19px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trust-expansion-result p {
  max-width: 390px;
  margin: 16px auto 0;
  color: #C394FA;
  font-family: Inter, Arial, Helvetica, sans-serif;
  font-size: clamp(25px, 4.8vw, 36px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.trust-expansion-flags {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.trust-expansion-flags img {
  width: 72px;
  height: 54px;
  border: 1px solid rgba(244, 244, 245, 0.18);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.trust-expansion-posts {
  margin-top: 38px;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.trust-expansion-posts::-webkit-scrollbar {
  display: none;
}

.trust-expansion-posts a {
  position: relative;
  flex: 0 0 72%;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--trust-text);
  text-decoration: none;
}

.trust-expansion-posts span {
  color: #C394FA;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.trust-expansion-posts img {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border: 1px solid rgba(244, 244, 245, 0.12);
  border-radius: 18px;
  background: #11161f;
}

.trust-fit-section {
  padding: 74px 14px 34px;
  background: var(--trust-bg);
}

.trust-fit-inner {
  width: min(100%, 460px);
  margin: 0 auto;
}

.trust-fit-inner p {
  margin: 0 0 22px;
  color: #C394FA;
  font-size: var(--trust-type-kicker);
  font-weight: 900;
  letter-spacing: 0.3em;
}

.trust-fit-inner h2 {
  max-width: 330px;
  margin: 0;
  color: var(--trust-text);
  font-size: var(--trust-type-title);
  font-weight: 900;
  line-height: 1;
}

.trust-fit-inner h2 span {
  display: block;
  color: #C394FA;
}

.trust-fit-inner > strong {
  display: block;
  margin-top: 26px;
  color: var(--trust-muted);
  font-size: var(--trust-type-body);
  font-weight: 500;
  line-height: 1.45;
}

.trust-fit-inner ul {
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(244, 244, 245, 0.08);
}

.trust-fit-inner li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(244, 244, 245, 0.08);
  color: rgba(244, 244, 245, 0.72);
  font-size: var(--trust-type-body);
  font-weight: 500;
  line-height: 1.34;
}

.trust-fit-inner li span {
  display: block;
  color: #C394FA;
  font-size: var(--trust-type-meta);
  font-weight: 700;
  line-height: 1.7;
}

.trust-requirements-copy {
  margin-top: 34px;
}

.trust-requirements-copy span {
  color: rgba(244, 244, 245, 0.82);
  font-size: var(--trust-type-body);
  font-weight: 800;
}

.trust-requirements-form {
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
}

.trust-requirements-form label {
  position: relative;
  min-height: 62px;
  padding: 0 18px 0 56px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(244, 244, 245, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%),
    #11161f;
  color: rgba(244, 244, 245, 0.78);
  font-size: var(--trust-type-body);
  font-weight: 700;
  line-height: 1.28;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.trust-requirements-form input {
  position: absolute;
  left: 18px;
  width: 22px;
  height: 22px;
  margin: 0;
  accent-color: #C394FA;
  cursor: pointer;
}

.trust-requirements-form label:has(input:checked) {
  border-color: rgba(195, 148, 250, 0.56);
  color: var(--trust-text);
  box-shadow: inset 0 0 0 1px rgba(195, 148, 250, 0.14);
}

.trust-requirements-form.is-blocked label:not(:has(input:checked)) {
  border-color: rgba(255, 86, 112, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 86, 112, 0.16), transparent 48%),
    #151018;
  box-shadow: inset 0 0 0 1px rgba(255, 86, 112, 0.28), 0 0 22px rgba(255, 86, 112, 0.14);
}

.trust-requirements-form small {
  min-height: 18px;
  color: rgba(166, 166, 170, 0.82);
  font-size: var(--trust-type-meta);
  font-weight: 700;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.trust-requirements-form small.is-blocked {
  color: #ff8fa3;
}

.trust-requirements-form small.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.trust-fit-inner em {
  display: block;
  margin-top: 28px;
  color: rgba(244, 244, 245, 0.76);
  font-size: var(--trust-type-body);
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
}

.trust-final-section {
  padding: 34px 14px 42px;
  background: var(--trust-bg);
}

.trust-final-inner {
  width: min(100%, 460px);
  margin: 0 auto;
  text-align: center;
}

.trust-final-inner p {
  margin: 0 0 22px;
  color: #C394FA;
  font-size: var(--trust-type-kicker);
  font-weight: 900;
  letter-spacing: 0.3em;
}

.trust-final-inner h2 {
  max-width: 390px;
  margin: 0 auto;
  color: var(--trust-text);
  font-size: var(--trust-type-title);
  font-weight: 900;
  line-height: 0.98;
}

.trust-final-inner h2 span {
  display: block;
  color: #C394FA;
}

.trust-final-inner > strong {
  display: block;
  max-width: 390px;
  margin: 30px auto 0;
  color: var(--trust-muted);
  font-size: var(--trust-type-body);
  font-weight: 500;
  line-height: 1.42;
}

.trust-final-inner button {
  width: fit-content;
  min-height: 48px;
  margin: 34px auto 0;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  color: var(--trust-text);
  background: #C394FA;
  box-shadow: 0 16px 42px rgba(106, 39, 220, 0.28);
  font-size: var(--trust-type-body-sm);
  font-family: inherit;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  appearance: none;
  cursor: pointer;
}

.trust-final-inner button span {
  font-size: 18px;
  line-height: 1;
}

.trust-final-inner small {
  display: block;
  max-width: 360px;
  margin: 58px auto 0;
  color: rgba(166, 166, 170, 0.72);
  font-size: var(--trust-type-meta);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.08em;
}

.trust-final-logo {
  display: block;
  width: 92px;
  height: auto;
  margin: 26px auto 0;
  opacity: 0.9;
}

.trust-audit-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.trust-audit-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.trust-audit-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.78);
  backdrop-filter: blur(10px);
}

.trust-audit-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  box-sizing: border-box;
  max-height: min(92svh, 720px);
  padding: 28px;
  overflow: auto;
  border: 1px solid rgba(244, 244, 245, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 42%),
    #11161f;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.56);
}

.trust-audit-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(244, 244, 245, 0.16);
  border-radius: 50%;
  background: rgba(13, 13, 15, 0.72);
  color: var(--trust-text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.trust-audit-dialog > p {
  margin: 0 44px 14px 0;
  color: #C394FA;
  font-size: var(--trust-type-kicker);
  font-weight: 900;
  letter-spacing: 0.2em;
}

.trust-audit-dialog h2 {
  max-width: 340px;
  margin: 0 0 24px;
  color: var(--trust-text);
  font-size: clamp(30px, 4.4vw, 42px);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.trust-audit-form {
  display: grid;
  gap: 14px;
}

.trust-audit-form label {
  display: grid;
  gap: 8px;
}

.trust-audit-form label span {
  color: rgba(244, 244, 245, 0.74);
  font-size: var(--trust-type-body-sm);
  font-weight: 700;
}

.trust-audit-form input {
  width: 100%;
  box-sizing: border-box;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(244, 244, 245, 0.16);
  border-radius: 12px;
  background: rgba(13, 13, 15, 0.62);
  color: var(--trust-text);
  font: inherit;
  outline: none;
}

.trust-audit-form input:focus {
  border-color: #C394FA;
}

.trust-audit-form button {
  width: 100%;
  box-sizing: border-box;
  min-height: 50px;
  margin-top: 8px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: #C394FA;
  color: var(--trust-text);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.trust-audit-form button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.trust-audit-form > small {
  min-height: 18px;
  color: rgba(244, 244, 245, 0.6);
  font-size: var(--trust-type-meta);
  font-weight: 600;
  line-height: 1.35;
}

.audit-modal-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .trust-audit-modal {
    padding: 18px;
  }

  .trust-audit-dialog {
    width: min(88vw, 360px);
    max-height: calc(100svh - 36px);
    padding: 22px 18px 20px;
    border-radius: 16px;
  }

  .trust-audit-dialog > p {
    margin-right: 42px;
    font-size: 10px;
    line-height: 1.35;
  }

  .trust-audit-dialog h2 {
    max-width: 270px;
    font-size: 28px;
  }

  .trust-audit-form {
    gap: 11px;
  }

  .trust-audit-form input {
    min-height: 42px;
    border-radius: 11px;
  }

  .trust-audit-form button {
    min-height: 48px;
    padding: 0 16px;
    font-size: 14px;
    line-height: 1.15;
    white-space: normal;
  }
}

@keyframes trust-counter-exit {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-85%);
  }
}

@keyframes trust-counter-enter {
  0% {
    opacity: 0;
    transform: translateY(85%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trust-counter-final {
  0% {
    transform: scale(1);
  }

  48% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  .trust-page-body {
    --trust-type-kicker: 10px;
    --trust-type-meta: 11px;
    --trust-type-body-sm: 13px;
    --trust-type-body: 15px;
    --trust-type-body-lg: 17px;
    --trust-type-title: 29px;
    --trust-type-title-lg: 34px;
    --trust-type-card-title: 32px;
    --trust-type-number: 36px;
  }

  .trust-page {
    overflow: visible;
  }

  .trust-hero-screen {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: auto;
    padding: 28px 18px 36px;
    gap: 28px;
    overflow: visible;
  }

  .trust-logo {
    gap: 6px;
    margin-bottom: 20px;
  }

  .trust-logo span {
    font-size: var(--trust-type-kicker);
    letter-spacing: 0.22em;
  }

  .trust-hero-copy {
    max-width: 520px;
    position: relative;
  }

  .trust-hero-copy h1 {
    font-size: clamp(42px, 13vw, 68px);
    line-height: 0.92;
  }

  .trust-kicker {
    margin-bottom: 22px;
    font-size: var(--trust-type-kicker);
    letter-spacing: 0.28em;
  }

  .trust-lead {
    max-width: 360px;
    margin: 24px 0 22px;
    font-size: var(--trust-type-body-lg);
  }

  .trust-primary-button {
    min-height: 52px;
    padding: 0 22px;
    font-size: var(--trust-type-body-sm);
  }

  .trust-visual-stage {
    width: min(100%, 460px);
    min-height: 540px;
    margin: -4px auto 0;
  }

  .trust-system-inner {
    grid-template-columns: 1fr;
    width: min(100%, 520px);
  }

  .trust-page-showcase,
  .trust-platform-row,
  .trust-system-panel {
    width: 100%;
  }

  .trust-page-showcase {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 42px;
  }

  .trust-platform-row {
    margin-top: 28px;
    justify-content: flex-start;
  }

  .trust-system-panel {
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .trust-page-body {
    --trust-type-title: 28px;
    --trust-type-title-lg: 32px;
    --trust-type-card-title: 30px;
    --trust-type-number: 34px;
  }

  .trust-hero-screen {
    min-height: auto;
    padding: 22px 12px 32px;
    gap: 24px;
  }

  .trust-logo {
    gap: 5px;
    margin-bottom: 18px;
  }

  .trust-logo img {
    width: 120px;
  }

  .trust-logo span {
    font-size: 12px;
    letter-spacing: 0.16em;
  }

  .trust-kicker {
    margin-bottom: 18px;
    font-size: var(--trust-type-kicker);
    letter-spacing: 0.32em;
  }

  .trust-hero-copy h1 {
    font-size: clamp(38px, 13.4vw, 56px);
  }

  .trust-lead {
    max-width: 300px;
    font-size: var(--trust-type-body);
    line-height: 1.55;
    margin: 22px 0 22px;
  }

  .trust-primary-button {
    min-height: 40px;
    padding: 0 18px;
    font-size: var(--trust-type-body-sm);
  }

  .trust-visual-stage {
    width: min(100%, 390px);
    height: min(136vw, 640px);
    min-height: 520px;
  }

  .trust-case-copy {
    padding: 18px 16px 20px;
  }

  .trust-case-copy h2 {
    font-size: var(--trust-type-card-title);
  }

  .trust-case-copy p {
    font-size: var(--trust-type-body-sm);
    line-height: 1.4;
  }

  .trust-system-section {
    padding: 38px 12px 40px;
  }

  .trust-system-kicker {
    margin-bottom: 24px;
    font-size: var(--trust-type-kicker);
    letter-spacing: 0.38em;
  }

  .trust-system-heading {
    font-size: var(--trust-type-title-lg);
  }

  .trust-system-copy > p:not(.trust-system-kicker) {
    margin-top: 36px;
    font-size: clamp(21px, 6vw, 28px);
    line-height: 1.18;
  }

  .trust-system-copy > p:not(.trust-system-kicker)::before {
    width: 64px;
    height: 2px;
    margin-bottom: 28px;
  }

  .trust-page-showcase {
    margin-top: 34px;
  }

  .trust-platform-row {
    gap: 10px;
  }

  .trust-platform-row span {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .trust-platform-row img {
    width: 21px;
    height: 21px;
  }

  .trust-system-panel {
    margin-top: 44px;
    width: min(100%, 470px);
  }

  .trust-system-card-stage {
    grid-template-columns: 1fr;
    gap: 0;
    min-height: 0;
  }

  .trust-system-card-stage::before,
  .trust-system-card-stage::after {
    display: none;
  }

  .trust-framework-list::before {
    left: 24px;
    top: 28px;
    bottom: 50px;
    display: block;
    width: 3px;
    background: linear-gradient(180deg, transparent, rgba(195, 148, 250, 0.95) 10%, rgba(168, 117, 255, 0.88) 88%, transparent);
    box-shadow: 0 0 18px rgba(195, 148, 250, 0.42);
  }

  .trust-system-card {
    min-height: 0;
    padding: 22px 0;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0 16px;
    border-radius: 0;
  }

  .trust-framework-letter {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    font-size: 28px;
  }

  .trust-system-card h3 {
    max-width: 100%;
    font-size: clamp(24px, 7vw, 32px);
  }

  .trust-system-card p {
    max-width: 100%;
    margin-top: 10px;
    font-size: var(--trust-type-body);
  }

  .trust-end-goal-section {
    padding: 38px 12px 40px;
  }

  .trust-end-goal-inner {
    width: min(100%, 390px);
  }

  .trust-end-goal-section h2 {
    max-width: 350px;
    font-size: var(--trust-type-title);
  }

  .trust-conversation-stack {
    margin-top: 38px;
  }

  .trust-conversation-card {
    padding: 22px;
  }

  .trust-case-study-section {
    padding: 38px 12px 42px;
  }

  .trust-case-study-inner {
    width: min(100%, 390px);
  }

  .trust-case-study-inner h2 {
    font-size: var(--trust-type-title);
  }

  .trust-case-mockup {
    margin-top: 44px;
    border-radius: 20px;
  }

  .trust-case-results {
    margin-top: 40px;
  }

  .trust-results-kicker strong {
    font-size: clamp(13px, 3.6vw, 16px);
  }

  .trust-case-results h3 {
    margin-top: 14px;
  }

  .trust-outlet-gallery {
    margin-top: 22px;
  }

  .trust-results-grid {
    gap: 14px;
  }

  .trust-results-grid article + article {
    padding-left: 14px;
  }

  .trust-results-grid strong {
    font-size: clamp(34px, 10vw, 46px);
  }

  .trust-sales-final strong {
    font-size: clamp(34px, 10vw, 44px);
  }

  .trust-sales-final small {
    font-size: clamp(13px, 3.8vw, 16px);
  }

  .trust-expansion-map {
    margin-top: 58px;
    padding-top: 46px;
  }

  .trust-expansion-intro {
    margin-bottom: 44px;
  }

  .trust-expansion-intro p {
    margin-bottom: 22px;
    font-size: var(--trust-type-kicker);
  }

  .trust-expansion-intro h2 {
    font-size: var(--trust-type-title);
  }

  .trust-expansion-intro > strong {
    margin-top: 34px;
    font-size: var(--trust-type-body);
  }

  .trust-expansion-mockup {
    margin-top: 42px;
    border-radius: 20px;
  }

  .trust-expansion-result {
    margin-top: 30px;
  }

  .trust-expansion-result p {
    max-width: 340px;
    font-size: clamp(24px, 6.2vw, 30px);
    line-height: 1.08;
  }

  .trust-expansion-flags img {
    width: 66px;
    height: 50px;
  }

  .trust-fit-section {
    padding: 38px 12px 26px;
  }

  .trust-fit-inner {
    width: min(100%, 390px);
  }

  .trust-fit-inner p {
    margin-bottom: 20px;
    font-size: var(--trust-type-kicker);
  }

  .trust-fit-inner h2 {
    max-width: 280px;
    font-size: var(--trust-type-title);
  }

  .trust-fit-inner > strong {
    margin-top: 24px;
    font-size: var(--trust-type-body);
  }

  .trust-fit-inner li {
    gap: 12px;
    padding: 17px 0;
    font-size: var(--trust-type-body);
  }

  .trust-fit-inner em {
    margin-top: 26px;
    font-size: var(--trust-type-body);
  }

  .trust-final-section {
    padding: 24px 12px 36px;
  }

  .trust-final-inner {
    width: min(100%, 390px);
  }

  .trust-final-inner p {
    margin-bottom: 20px;
    font-size: var(--trust-type-kicker);
  }

  .trust-final-inner h2 {
    max-width: 330px;
    font-size: var(--trust-type-title);
  }

  .trust-final-inner > strong {
    max-width: 330px;
    margin-top: 28px;
    font-size: var(--trust-type-body);
  }

  .trust-final-inner button {
    min-height: 44px;
    margin-top: 30px;
    padding: 0 24px;
    font-size: var(--trust-type-body-sm);
  }

  .trust-final-inner small {
    margin-top: 54px;
    font-size: var(--trust-type-meta);
  }

  .trust-problem-section {
    margin-top: 56px;
    padding: 48px 20px 24px;
  }

  .trust-problem-section p {
    margin-bottom: 22px;
    font-size: clamp(15px, 4.5vw, 20px);
    letter-spacing: 0.16em;
  }

  .trust-problem-section h2 {
    font-size: var(--trust-type-title-lg);
    line-height: 0.98;
  }

  .trust-problem-section span {
    margin-top: 24px;
    font-size: var(--trust-type-body-lg);
    line-height: 1.3;
  }

  .trust-impact-section {
    padding: 36px 14px 38px;
  }

  .trust-impact-inner {
    width: min(100%, 390px);
  }

  .trust-impact-section h2 {
    font-size: clamp(34px, 9.4vw, 48px);
  }

  .trust-impact-because {
    margin-top: 28px;
  }

  .trust-impact-because ul {
    gap: 16px;
  }

}

@media (max-width: 900px) {



}

@media (max-width: 560px) {
  .trust-referral-section {
    padding: 16px 0 36px;
  }

  .trust-subsection-carousel {
    width: 100%;
  }

  .trust-subsection-track {
    gap: 30px;
  }

  .trust-channel-block {
    width: min(calc(100vw - 24px), 500px);
    max-width: calc(100vw - 24px);
  }

  .trust-channel-block > h3 {
    margin-bottom: 12px;
    font-size: clamp(18px, 5.2vw, 22px);
    line-height: 1.08;
  }

  .trust-channel-card {
    width: min(calc(100vw - 24px), 500px);
    max-width: calc(100vw - 24px);
    box-sizing: border-box;
    min-height: 0;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-radius: 18px;
    border-color: rgba(255, 255, 255, 0.16);
    background:
      linear-gradient(135deg, rgba(106, 39, 220, 0.05), transparent 42%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%),
      #11161f;
  }

  .trust-mini-flow {
    width: 100%;
    align-items: center;
    gap: 10px;
  }

  .trust-mini-flow > span {
    min-width: 88px;
  }

  .trust-mini-avatars {
    min-width: 0;
    flex: 1 1 auto;
  }

  .trust-mini-avatars img {
    width: 31px;
    height: 31px;
  }

  .trust-mini-search {
    min-width: 0;
    max-width: 100%;
  }

  .trust-mini-options {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-mini-options span {
    min-width: 0;
    padding: 0 8px;
  }

  .trust-channel-google {
    gap: 18px;
  }

  .trust-channel-social {
    gap: 22px;
  }

  .trust-social-example {
    margin-top: 18px;
  }

  .trust-doctor-compilation {
    gap: 14px;
  }

  .trust-doctor-compilation article {
    flex-basis: 94%;
  }

  .trust-doctor-compilation img {
    max-height: 380px;
  }

  .trust-audience-map {
    min-height: 300px;
    width: 100%;
  }

  .trust-audience-ring-one {
    width: 104px;
    height: 104px;
  }

  .trust-audience-ring-two {
    width: 198px;
    height: 198px;
  }

  .trust-audience-ring-three {
    width: 286px;
    height: 286px;
  }

  .trust-audience-orbit {
    width: 198px;
    height: 198px;
  }

  .orbit-one {
    width: 104px;
    height: 104px;
  }

  .orbit-three {
    width: 286px;
    height: 286px;
  }

  .trust-audience-core {
    width: 82px;
    height: 82px;
  }

  .trust-audience-dot {
    --label-radius: 132px;
    min-height: 30px;
    padding: 0 10px;
    font-size: 10px;
  }

  .dot-one {
    --label-angle: 188deg;
  }

  .dot-two {
    --label-angle: 324deg;
  }

  .dot-three {
    --label-angle: 22deg;
  }

  .dot-four {
    --label-angle: 154deg;
  }

  .dot-five {
    --label-angle: 266deg;
    --label-radius: 112px;
  }

  .dot-six {
    --label-angle: 88deg;
    --label-radius: 112px;
  }

}

/* =====================================
   CARMEN + 4 SURROUNDING IG PHOTOS
===================================== */
@media (max-width: 768px) {
  .trust-visual-stage {
    position: relative;
    display: block;
    height: min(128vw, 760px);
    min-height: 560px;
    overflow: hidden;
    border-radius: 0;
    background:
      radial-gradient(circle at 50% 42%, rgba(244, 244, 245, 0.08), transparent 18%),
      #0D0D0F;
  }

  .trust-problem-section {
    margin-top: 0;
    padding: 30px 20px 24px;
  }

  .trust-content-grid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    z-index: auto;
    transform: none;
  }

  .trust-content-grid .trust-content-card {
    position: absolute;
    width: 35%;
    min-width: 0;
    aspect-ratio: 0.58;
    margin: 0;
    animation: none;
    padding: 4px;
    background: #0a0a0a;
    border: 2px solid #2f2f2f;
    border-radius: 24px;
    box-shadow:
      0 10px 24px rgba(0, 0, 0, 0.45),
      inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    overflow: hidden;
  }

  .trust-content-grid .trust-content-card > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 19px;
  }

  .trust-content-grid .trust-content-card::before {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    width: 34%;
    height: 8px;
    background: #050505;
    border-radius: 999px;
    transform: translateX(-50%);
    z-index: 5;
  }

  .trust-content-grid .trust-content-card-reels {
    left: -8%;
    top: 4%;
    transform: rotate(-13deg);
  }

  .trust-content-grid .trust-content-card-patient {
    right: -8%;
    top: 4%;
    transform: rotate(13deg);
  }

  .trust-content-grid .trust-content-card-appointment {
    left: -9%;
    top: auto;
    bottom: -7%;
    transform: rotate(-13deg);
  }

  .trust-content-grid .trust-content-card-trust {
    right: -9%;
    top: auto;
    bottom: -6%;
    transform: rotate(13deg);
  }
}

@media (max-width: 600px) {
  .trust-case-study-inner {
    width: 100%;
  }

  .trust-case-study-section {
    padding-left: 14px;
    padding-right: 14px;
  }

}

/* =====================================
   CLEAN TRUST HERO COMPOSITION
===================================== */
.trust-visual-stage {
  min-height: 760px;
  background: #0D0D0F;
}

.trust-visual-stage::before,
.trust-visual-stage::after {
  display: none !important;
  content: none !important;
}

.trust-visual-stage .trust-soft-light,
.trust-visual-stage .trust-glow-button,
.trust-visual-stage .trust-arrow,
.trust-visual-stage .trust-pill {
  display: none !important;
}

.trust-content-grid {
  position: absolute;
  inset: 0;
  z-index: auto;
}

.trust-content-grid .trust-content-card {
  z-index: 1;
  width: 30%;
  min-width: 0;
  border-radius: 18px;
}

.trust-content-grid .trust-content-card-reels {
  left: -5%;
  top: 4%;
  --float-rotate: -8deg;
}

.trust-content-grid .trust-content-card-patient {
  right: -5%;
  top: 5%;
  --float-rotate: 7deg;
}

.trust-content-grid .trust-content-card-appointment {
  left: -4%;
  bottom: 5%;
  --float-rotate: -8deg;
}

.trust-content-grid .trust-content-card-trust {
  right: -4%;
  bottom: 7%;
  --float-rotate: 8deg;
}

.trust-person {
  position: absolute;
  left: 50%;
  top: 8%;
  z-index: 5;
  width: 60%;
  height: 78%;
  transform: translateX(-50%);
}

.trust-person .trust-reel-media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  border-radius: 0;
}

.trust-person .trust-phone-slide[data-phone-slide="hero"] {
  position: absolute;
  inset: 0;
  overflow: visible;
}

.trust-person .trust-phone-slide[data-phone-slide="hero"] img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.trust-person .trust-phone-slide[data-phone-slide="hero"]::after {
  display: none;
}

.trust-person-caption {
  position: absolute;
  left: 50%;
  top: 79%;
  z-index: 6;
  width: 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: var(--trust-text);
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.trust-person-caption::after {
  content: "";
  order: 1;
  width: 58px;
  height: 3px;
  margin: 3px 0 10px;
  background: #C394FA;
}

.trust-person-caption strong {
  display: block;
  order: 0;
  font-size: clamp(42px, 6vw, 66px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
  white-space: nowrap;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.65);
}

.trust-person-caption span {
  display: block;
  order: 2;
  color: rgba(244, 244, 245, 0.88);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.34em;
  line-height: 1.18;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .trust-visual-stage {
    height: min(116vw, 680px);
    min-height: 520px;
    background:
      radial-gradient(circle at 50% 42%, rgba(244, 244, 245, 0.08), transparent 18%),
      #0D0D0F;
    overflow: hidden;
  }

  .trust-person {
    top: 16%;
    width: 72%;
    height: 64%;
  }

  .trust-person-caption {
    top: 79%;
    width: 92%;
    z-index: 9;
  }

  .trust-person-caption strong {
    font-size: clamp(30px, 7.6vw, 44px);
  }

  .trust-person-caption span {
    font-size: clamp(8px, 2vw, 11px);
    letter-spacing: 0.22em;
  }

  .trust-content-grid .trust-content-card {
    z-index: 6;
    width: 34%;
  }

  .trust-content-grid .trust-content-card-reels {
    left: 2%;
    top: 3%;
    z-index: 4;
    transform: rotate(-13deg);
  }

  .trust-content-grid .trust-content-card-patient {
    right: 2%;
    top: 3%;
    z-index: 4;
    transform: rotate(13deg);
  }

  .trust-content-grid .trust-content-card-appointment {
    left: 3%;
    top: 47%;
    bottom: auto;
    width: 31%;
    z-index: 8;
    transform: rotate(-13deg);
  }

  .trust-content-grid .trust-content-card-trust {
    right: 3%;
    top: 47%;
    bottom: auto;
    width: 31%;
    z-index: 8;
    transform: rotate(13deg);
  }
}

@media (max-width: 420px) {
  .trust-visual-stage {
    height: 560px;
    min-height: 560px;
  }

  .trust-content-grid .trust-content-card {
    width: 36%;
  }

  .trust-content-grid .trust-content-card-reels {
    left: 1%;
    top: 4%;
    z-index: 4;
  }

  .trust-content-grid .trust-content-card-patient {
    right: 1%;
    top: 4%;
    z-index: 4;
  }

  .trust-content-grid .trust-content-card-appointment {
    left: 1%;
    top: 49%;
    bottom: auto;
    width: 31%;
    z-index: 8;
  }

  .trust-content-grid .trust-content-card-trust {
    right: 1%;
    top: 49%;
    bottom: auto;
    width: 31%;
    z-index: 8;
  }

  .trust-person {
    top: 18%;
    width: 74%;
    height: 62%;
  }

  .trust-person-caption {
    top: 80%;
  }

  .trust-person-caption strong {
    font-size: clamp(30px, 9vw, 38px);
  }

  .trust-person-caption span {
    font-size: 8px;
    letter-spacing: 0.18em;
  }
}
