.home-preload {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background:
    radial-gradient(circle at 82% 16%, rgba(198, 49, 51, 0.08), rgba(198, 49, 51, 0) 36%),
    linear-gradient(180deg, #ffffff 0%, #fcfaf9 58%, #ffffff 100%);
}

.home-preload__inner {
  display: grid;
  justify-items: center;
  gap: 11px;
  width: min(100%, 960px);
  text-align: center;
}

.home-preload__logo-shell {
  position: relative;
  width: min(100%, 210px);
}

.home-preload__logo {
  display: block;
  width: 100%;
  height: auto;
}

.home-preload__dot,
.home-preload__dot-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(12px, 1.2vw, 18px);
  aspect-ratio: 1;
  border-radius: 999px;
  will-change: transform, opacity;
}

.home-preload__dot {
  background: var(--color-brand-primary);
  box-shadow: 0 6px 18px rgba(198, 49, 51, 0.22);
}

.home-preload__dot-mask {
  background: #ffffff;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.98);
}

.home-preload__copy {
  position: relative;
  margin: 0;
  width: min(100%, 360px);
  min-height: clamp(37px, 3.5vw, 52px);
  color: var(--color-text);
}

.home-preload__copy-line,
.hero-title__line {
  display: block;
}

.home-preload__copy-line {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(12px, 1.6vw, 20px);
  line-height: 1;
  letter-spacing: -0.055em;
  text-align: center;
}

.home-preload__copy-line--focus {
  color: var(--color-brand-primary);
}

.home-with-preload.home-preload-active {
  overflow: hidden;
}

.home-with-preload .site-header {
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.home-with-preload.home-preload-active .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}

.home-with-preload.home-preload-complete .site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.home-with-preload .home-hero__copy,
.home-with-preload .home-hero,
.home-with-preload .home-hero__visual {
  will-change: transform, opacity;
}

.home-hero {
  position: relative;
  z-index: 1;
  overflow: clip;
  min-height: 100vh;
  padding-top: calc(var(--space-96) + 28px);
  background:
    radial-gradient(circle at 82% 18%, rgba(198, 49, 51, 0.07), rgba(198, 49, 51, 0) 34%),
    linear-gradient(180deg, #ffffff 0%, #fcfaf9 58%, #ffffff 100%);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(198, 49, 51, 0.04), rgba(68, 68, 68, 0.02) 52%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.home-hero__grid,
.problem-section__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(40px, 5vw, 64px);
  align-items: center;
}

.hero-title {
  max-width: 14ch;
  font-size: clamp(40px, 5.3vw, var(--text-hero));
  line-height: var(--line-tight);
  letter-spacing: -0.045em;
  margin-top: var(--space-24);
}

.hero-lead {
  max-width: 640px;
  margin-top: var(--space-24);
  font-size: var(--text-body-lg);
  line-height: 1.65;
  color: rgba(31, 31, 31, 0.74);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  margin-top: var(--space-32);
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  margin-top: var(--space-32);
}

.hero-highlights li {
  padding: 12px 16px;
  border: 1px solid rgba(68, 68, 68, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-brand-ink);
  font-size: var(--text-small);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.home-hero__visual {
  position: relative;
}

.home-hero__visual::before,
.home-hero__visual::after {
  content: none;
}

.hero-card {
  position: relative;
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid rgba(68, 68, 68, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(31, 31, 31, 0.08);
  animation: hero-float 6s ease-in-out infinite;
}

.hero-card__note {
  display: grid;
  gap: var(--space-8);
  margin-top: var(--space-24);
  padding-top: var(--space-24);
  border-top: 1px solid rgba(68, 68, 68, 0.09);
}

.hero-card__note strong {
  font-size: var(--text-small);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-brand-primary);
}

.hero-card__note span {
  color: var(--color-text-soft);
  font-size: 15px;
}

.trust-strip {
  margin-top: clamp(24px, 4vw, 48px);
  padding: 0 0 var(--space-80);
}

.trust-strip__inner {
  --ambient-x: 50%;
  --ambient-y: 50%;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto minmax(260px, 0.7fr);
  grid-template-areas:
    "copy brand signals"
    "partners partners partners";
  gap: var(--space-32);
  align-items: center;
  min-height: clamp(228px, 28vw, 304px);
  padding: clamp(36px, 4vw, 52px);
  border: 1px solid rgba(68, 68, 68, 0.08);
  border-radius: 16px;
  background:
    radial-gradient(circle at var(--ambient-x) var(--ambient-y), rgba(198, 49, 51, 0.09), rgba(198, 49, 51, 0) 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(249, 247, 246, 0.96) 58%, rgba(244, 241, 239, 0.92));
  box-shadow: 0 18px 44px rgba(31, 31, 31, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  overflow: clip;
  isolation: isolate;
}

.trust-strip__inner::before,
.trust-strip__inner::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  transition: transform 0.35s ease;
}

.trust-strip__inner::before {
  width: clamp(240px, 24vw, 340px);
  height: clamp(240px, 24vw, 340px);
  top: -18%;
  right: -8%;
  background: radial-gradient(circle, rgba(198, 49, 51, 0.12), rgba(198, 49, 51, 0) 68%);
  transform: translate3d(calc((var(--ambient-offset-x, 0px)) * 0.4), calc((var(--ambient-offset-y, 0px)) * 0.4), 0);
}

.trust-strip__inner::after {
  width: clamp(220px, 22vw, 300px);
  height: clamp(220px, 22vw, 300px);
  bottom: -28%;
  left: -6%;
  background: radial-gradient(circle, rgba(68, 68, 68, 0.08), rgba(68, 68, 68, 0) 66%);
  transform: translate3d(calc((var(--ambient-offset-x, 0px)) * -0.28), calc((var(--ambient-offset-y, 0px)) * -0.28), 0);
}

.trust-strip__inner:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 49, 51, 0.14);
  box-shadow: 0 22px 48px rgba(31, 31, 31, 0.09);
}

.trust-strip__copy,
.trust-strip__brand,
.trust-strip__signals,
.trust-strip__partners {
  position: relative;
  z-index: 1;
}

[data-ambient-layer] {
  transform: translate3d(var(--ambient-layer-x, 0px), var(--ambient-layer-y, 0px), 0);
  transition: transform 0.3s ease;
}

.trust-strip__copy {
  grid-area: copy;
  display: grid;
  gap: var(--space-16);
  max-width: 560px;
}

.trust-strip__copy p {
  color: var(--color-text-soft);
  font-size: 17px;
  line-height: 1.72;
}

.trust-strip__brand {
  grid-area: brand;
  display: flex;
  justify-content: center;
  align-self: stretch;
  align-items: center;
}

.trust-strip__brand img {
  width: clamp(120px, 10vw, 144px);
  opacity: 0.82;
  filter: grayscale(1);
}

.trust-strip__brand::before {
  content: "";
  position: absolute;
  inset: 50%;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  border: 1px solid rgba(68, 68, 68, 0.08);
  background: rgba(255, 255, 255, 0.56);
  transform: translate(-50%, -50%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  z-index: -1;
}

.trust-strip__signals {
  grid-area: signals;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-12);
  align-content: center;
}

.trust-strip__partners {
  grid-area: partners;
  display: grid;
  gap: var(--space-20);
  padding-top: var(--space-16);
  border-top: 1px solid rgba(68, 68, 68, 0.08);
}

.trust-strip__partners-copy {
  display: grid;
  gap: var(--space-8);
}

.trust-strip__partners-copy p {
  max-width: 760px;
  color: var(--color-text-soft);
}

.trust-strip .partner-loop__item {
  min-width: clamp(246px, 24vw, 310px);
  min-height: 132px;
  padding: 24px 32px;
}

.trust-strip .partner-loop__item img {
  max-width: 238px;
  max-height: 68px;
}

.trust-strip__signals li {
  padding: 11px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(68, 68, 68, 0.08);
  backdrop-filter: blur(10px);
  color: var(--color-brand-ink);
  font-size: var(--text-small);
  box-shadow: 0 10px 24px rgba(31, 31, 31, 0.05);
  max-width: 100%;
}

.method-section {
  position: relative;
}

.method-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-24);
}

.method-flow::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 72px;
  height: 1px;
  background: rgba(68, 68, 68, 0.14);
}

.method-card,
.problem-card,
.cluster-panel,
.result-card,
.target-panel,
.problem-aside {
  border: 1px solid rgba(68, 68, 68, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.method-card:hover,
.problem-card:hover,
.cluster-panel:hover,
.result-card:hover,
.target-panel:hover,
.problem-aside:hover {
  transform: translateY(-4px);
}

.method-card {
  position: relative;
  display: grid;
  gap: 20px;
  padding: 32px 28px;
}

.method-card img {
  width: 46px;
  height: 46px;
}

.method-card__step {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-brand-primary);
}

.method-card h3,
.problem-card h3,
.cluster-panel h3,
.target-panel h3 {
  font-size: var(--text-h3);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.method-card p,
.problem-card p,
.cluster-panel p,
.result-card p,
.target-panel p,
.problem-aside p {
  color: var(--color-text-soft);
}

.method-summary {
  margin-top: var(--space-40);
  max-width: 780px;
  text-align: center;
}

.method-summary p {
  font-size: 18px;
  color: rgba(31, 31, 31, 0.82);
}

.problem-section__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
}

.problem-section__intro {
  display: grid;
  gap: var(--space-16);
}

.problem-section__intro h2 {
  font-size: var(--text-h2);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.problem-section__intro p {
  font-size: 18px;
  color: rgba(31, 31, 31, 0.72);
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-20, 20px);
}

.problem-card {
  display: grid;
  gap: var(--space-12);
  padding: 28px 24px;
}

.problem-aside {
  grid-column: 1 / -1;
  display: grid;
  gap: var(--space-12);
  padding: 28px 32px;
  background: var(--color-white);
}

.problem-aside__label,
.cluster-panel__eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-brand-primary);
}

.clusters-shell {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: var(--space-24);
}

.cluster-tabs {
  display: grid;
  gap: var(--space-12);
  align-content: start;
}

.cluster-tab {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid rgba(68, 68, 68, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-text-soft);
  text-align: left;
  font-weight: 600;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cluster-tab:hover,
.cluster-tab:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(198, 49, 51, 0.22);
  color: var(--color-text);
}

.cluster-tab.is-active {
  border-color: rgba(198, 49, 51, 0.34);
  background: rgba(198, 49, 51, 0.06);
  color: var(--color-text);
}

.cluster-tabs.is-hinting .cluster-tab {
  animation: cluster-tab-hint 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cluster-tabs.is-hinting .cluster-tab:nth-child(2) {
  animation-delay: 0.12s;
}

.cluster-tabs.is-hinting .cluster-tab:nth-child(3) {
  animation-delay: 0.24s;
}

.cluster-panels {
  min-height: 100%;
}

.cluster-panel {
  display: grid;
  gap: var(--space-20, 20px);
  padding: 32px;
}

.cluster-panel__header {
  display: flex;
  align-items: center;
  gap: var(--space-16);
}

.cluster-panel__header img {
  width: 52px;
  height: 52px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-12);
}

.feature-list li {
  position: relative;
  padding: 16px 16px 16px 40px;
  border-radius: 14px;
  background: var(--color-bg-soft);
  color: var(--color-brand-ink);
}

.cluster-panel.is-list-animating .feature-list li {
  animation: cluster-list-rise 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cluster-panel.is-list-animating .feature-list li:nth-child(2) {
  animation-delay: 0.08s;
}

.cluster-panel.is-list-animating .feature-list li:nth-child(3) {
  animation-delay: 0.16s;
}

.cluster-panel.is-list-animating .feature-list li:nth-child(4) {
  animation-delay: 0.24s;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 21px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-brand-primary);
  box-shadow: 0 0 0 6px rgba(198, 49, 51, 0.12);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-16);
}

.result-card {
  display: grid;
  gap: var(--space-12);
  padding: 28px 24px;
  min-height: 100%;
}

.result-card strong {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.results-section.is-results-scroll .results-grid {
  align-items: end;
}

.results-section.is-results-scroll .result-card {
  will-change: transform, opacity;
}

@media (min-width: 981px) {
  .results-section.is-results-scroll {
    padding-bottom: calc(var(--space-96) + 8vh);
  }
}

.target-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: var(--space-24);
  margin-top: var(--space-32);
  padding: 28px 32px;
  background: var(--color-white);
}

.final-cta-section {
  position: relative;
  overflow: clip;
  padding-top: var(--space-80);
}

.final-cta-section::before {
  content: none;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--space-32);
  align-items: center;
  padding: clamp(28px, 5vw, 44px);
  border-radius: 16px;
  border: 1px solid rgba(68, 68, 68, 0.1);
  background: var(--color-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.final-cta__copy {
  display: grid;
  gap: var(--space-16);
}

.final-cta__copy h2 {
  font-size: var(--text-h2);
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.final-cta__copy p {
  max-width: 720px;
  color: rgba(31, 31, 31, 0.72);
  font-size: 18px;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  justify-content: flex-end;
}

.site-header .header-cta,
.hero-actions .button-primary,
.final-cta__actions .button-primary {
  background: var(--color-brand-primary);
  box-shadow: 0 10px 24px rgba(198, 49, 51, 0.16);
}

.site-header .header-cta:hover,
.hero-actions .button-primary:hover,
.final-cta__actions .button-primary:hover {
  background: var(--color-brand-primary-dark);
}

.hero-actions .button-secondary,
.final-cta__actions .button-secondary {
  border-color: rgba(198, 49, 51, 0.2);
  background: rgba(255, 255, 255, 0.94);
}

.hero-actions .button-secondary:hover,
.final-cta__actions .button-secondary:hover {
  background: rgba(198, 49, 51, 0.05);
}

@media (min-width: 981px) and (max-width: 1440px) and (max-height: 900px),
  (min-width: 981px) and (max-width: 1280px) {
  .home-preload__logo-shell {
    width: min(100%, 190px);
  }

  .home-preload__copy-line {
    font-size: clamp(12px, 1.5vw, 18px);
  }

  .home-hero {
    min-height: auto;
    padding-top: calc(var(--space-80) + 18px);
  }

  .hero-lead,
  .problem-section__intro p,
  .method-summary p {
    font-size: 17px;
    line-height: 1.68;
  }

  .home-hero__grid,
  .problem-section__grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
    gap: clamp(28px, 3vw, 40px);
  }

  .hero-title {
    max-width: 13ch;
  }

  .hero-card,
  .method-card,
  .problem-card,
  .cluster-panel,
  .result-card,
  .target-panel,
  .problem-aside,
  .final-cta {
    padding: 24px;
  }

  .trust-strip__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "copy brand"
      "signals signals"
      "partners partners";
    gap: 24px;
    min-height: auto;
    padding: 30px;
  }

  .trust-strip .partner-loop__item {
    min-width: 214px;
    min-height: 112px;
    padding: 18px 24px;
  }

  .trust-strip .partner-loop__item img {
    max-width: 200px;
    max-height: 57px;
  }

  .method-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .method-flow::before {
    left: 16%;
    right: 16%;
  }

  .problem-card {
    padding: 24px 20px;
  }

  .problem-cards {
    gap: 16px;
  }

  .clusters-shell {
    grid-template-columns: minmax(200px, 0.3fr) minmax(0, 1fr);
  }

  .cluster-panel {
    gap: 16px;
  }

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

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

  .target-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .final-cta__actions {
    justify-content: flex-start;
  }
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }

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

@keyframes cluster-tab-hint {
  0%,
  100% {
    transform: translateY(0);
    border-color: rgba(68, 68, 68, 0.1);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: none;
  }

  38% {
    transform: translateY(-6px) translateX(14px);
    border-color: rgba(198, 49, 51, 0.38);
    background: rgba(198, 49, 51, 0.08);
    box-shadow: 0 12px 24px rgba(198, 49, 51, 0.12);
  }

  68% {
    transform: translateY(0) translateX(-4px);
    box-shadow: 0 4px 10px rgba(198, 49, 51, 0.06);
  }
}

@keyframes cluster-list-rise {
  0% {
    opacity: 0;
    transform: translateY(22px);
  }

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

@media (prefers-reduced-motion: reduce) {
  .home-preload__dot,
  .hero-card,
  .partner-loop__track {
    animation: none;
  }

  .cluster-panel.is-list-animating .feature-list li {
    animation: none;
  }
}

@media (max-width: 1180px) {
  .results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .trust-strip__inner,
  .problem-section__grid,
  .target-panel,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .trust-strip__signals {
    justify-content: flex-start;
  }

  .trust-strip__inner {
    min-height: auto;
    grid-template-areas:
      "copy"
      "brand"
      "signals"
      "partners";
  }

  .problem-cards,
  .feature-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .home-preload {
    padding: 24px;
  }

  .home-preload__inner {
    gap: 9px;
  }

  .home-preload__logo-shell {
    width: min(100%, 160px);
  }

  .home-preload__copy-line {
    font-size: clamp(10.5px, 2.4vw, 15px);
  }

  .home-hero__grid,
  .clusters-shell {
    grid-template-columns: 1fr;
  }

  .method-flow {
    grid-template-columns: 1fr;
  }

  .method-flow::before {
    left: 24px;
    right: auto;
    top: 24px;
    bottom: 24px;
    width: 1px;
    height: auto;
    background: rgba(68, 68, 68, 0.14);
  }

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

  .final-cta__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .home-preload__logo-shell {
    width: min(100%, 143px);
  }

  .home-preload__copy {
    min-height: clamp(44px, 9vw, 56px);
  }

  .hero-lead,
  .problem-section__intro p,
  .final-cta__copy p {
    font-size: 17px;
  }

  .trust-strip__inner {
    padding: 24px;
    gap: 20px;
  }

  .trust-strip__copy,
  .trust-strip__brand,
  .trust-strip__signals,
  .trust-strip__partners,
  .trust-strip [data-ambient-layer] {
    transform: none !important;
  }

  .trust-strip__copy {
    max-width: none;
    justify-items: start;
  }

  .trust-strip__copy p,
  .trust-strip__partners-copy p {
    font-size: 16px;
    line-height: 1.65;
  }

  .trust-strip__brand {
    min-height: 112px;
    padding-block: 4px;
  }

  .trust-strip__brand::before {
    width: 136px;
    height: 136px;
  }

  .trust-strip__signals {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 10px;
  }

  .trust-strip__signals li {
    width: 100%;
    padding: 12px 14px;
    text-align: center;
    line-height: 1.35;
  }

  .trust-strip__partners {
    gap: 16px;
    padding-top: 20px;
  }

  .trust-strip .partner-loop__item {
    min-width: 326px;
    min-height: 164px;
    padding: 28px 31px;
  }

  .trust-strip .partner-loop__item img {
    max-width: 296px;
    max-height: 85px;
  }

  .problem-cards,
  .feature-list,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .cluster-panel,
  .problem-aside,
  .target-panel,
  .final-cta {
    padding: 24px;
  }

  .hero-actions,
  .final-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .final-cta__actions .button {
    width: 100%;
  }
}
