/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 68px);
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.hero-content {
  position: relative;
  z-index: var(--z-above);
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.hero-title {
  font-size: var(--text-6xl);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  align-items: center;
}

/* ─── Hero trust bar ─────────────────────────────────────────── */
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.hero-trust-item svg {
  color: var(--color-primary);
  flex-shrink: 0;
}
.hero-trust-item strong {
  color: var(--color-text-primary);
  font-weight: 600;
}
.hero-trust-sep {
  color: var(--color-border);
  user-select: none;
}

/* ─── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    min-height: calc(100svh - 68px);
    padding-top: var(--space-12);
    padding-bottom: var(--space-12);
  }
  .hero-title {
    font-size: var(--text-4xl);
  }
  .hero-content {
    gap: var(--space-5);
  }
}

@media (max-width: 480px) {
  .hero-title { font-size: var(--text-3xl); }
  .hero-subtitle { font-size: var(--text-base); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
