.hero {
  min-height: 35rem;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(17rem, 0.8fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  width: min(1160px, calc(100% - 3rem));
  margin-inline: auto;
  padding: 6rem 0 7rem;
}
.hero--solo {
  grid-template-columns: minmax(0, 1fr);
}
.hero--solo .hero-copy {
  max-width: 64rem;
}
.hero--solo h1 {
  max-width: 16ch;
}
.hero h1 {
  max-width: 14ch;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.97;
  letter-spacing: -0.065em;
}
.hero-description {
  max-width: 42rem;
  margin: 2rem 0 0;
  color: var(--site-muted-foreground);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.4rem;
  margin-top: 2.2rem;
}
.trust-card {
  padding: 2rem;
  border: 1px solid var(--site-border);
  border-radius: var(--site-radius-lg);
  background: var(--site-card);
  box-shadow: var(--site-shadow);
}
.trust-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--site-accent-tint-strong);
  color: var(--site-accent);
  font-weight: 900;
}
.trust-card p {
  color: var(--site-muted-foreground);
  line-height: 1.6;
}
.trust-card .trust-title {
  margin-bottom: 0;
  color: var(--site-foreground);
  font-size: 1.25rem;
  font-weight: 800;
}
@media (max-width: 760px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 4rem 0;
  }
  .hero h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }
}