/* ─── Hero Section ───────────────────────────────────────── */
.hero-section {
  padding: 28px 0 72px;
  text-align: center;
  background: #ffffff;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

/* ─── Badge ──────────────────────────────────────────────── */
.hero-badge-wrapper {
  margin-bottom: 28px;
}

/* ─── Headline ───────────────────────────────────────────── */
.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.hero-title .text-red { color: var(--red); }

.hero-subtitle {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 400;
}

/* ─── CTA Block ──────────────────────────────────────────── */
.hero-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.btn-hero-download {
  padding: 14px 32px;
  font-size: 15.5px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  letter-spacing: -0.02em;
}

.btn-hero-download i { font-size: 18px; }

/* ─── OS Pills ───────────────────────────────────────────── */
.os-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
}

.os-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  background: #ffffff;
  border: 1px solid var(--border);
  transition: all 0.14s ease;
  cursor: pointer;
}

.os-chip:hover, .os-chip.active {
  border-color: var(--border-strong);
  color: var(--text-primary);
  background: var(--bg-subtle);
}

/* ─── Trust Row ──────────────────────────────────────────── */
.hero-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--text-muted);
  padding: 0 20px;
  position: relative;
}

.trust-item + .trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: var(--border);
}

.trust-item i {
  font-size: 14px;
  color: var(--text-secondary);
  flex-shrink: 0;
}

/* ─── Mobile ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-section { padding: 20px 0 52px; }
  .hero-title { font-size: 34px; letter-spacing: -0.025em; }
  .hero-subtitle { font-size: 16.5px; margin-bottom: 32px; }
  .btn-hero-download { width: 100%; }
  .trust-item { padding: 6px 14px; }
  .trust-item + .trust-item::before { display: none; }
}
