.hero { padding: 62px 0 34px; }

.hero-inner {
  min-height: calc(100vh - 86px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 18px;
}

.hero-title {
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 1.03;
}

.hero-title__line {
  display: block;
  font-weight: 900;
  font-size: clamp(2.2rem, 5.4vw, 4.2rem);
}

.hero-title__line--dark { color: rgba(15, 23, 42, 0.95); }

.hero-title__line--brand {
  background: linear-gradient(90deg, var(--brand-900), var(--brand-600), var(--brand-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  margin: 0;
  max-width: 68ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.3vw, 1.12rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 6px;
}

.trust-row {
  margin-top: 14px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--muted-2);
  font-weight: 600;
  font-size: 14px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: #fff;
}

.dot { width: 10px; height: 10px; border-radius: 999px; }
.dot--blue  { background: var(--brand-900); box-shadow: 0 0 0 4px rgba(3, 61, 146, 0.10); }
.dot--teal  { background: var(--brand-600); box-shadow: 0 0 0 4px rgba(22, 160, 169, 0.12); }
.dot--green { background: var(--brand-400); box-shadow: 0 0 0 4px rgba(139, 196, 93, 0.14); }

@media (max-width: 520px) {
  .hero { padding-top: 44px; }
  .badge { font-size: 12.5px; }
}
