/* ── Hero ───────────────────────────────────────────────────── */
.safety-hero {
  padding: 100px 0 60px;
  text-align: center;
}

.safety-hero-inner {
  max-width: 760px;
  margin: auto;
}

.safety-hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.safety-hero h1 span {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.safety-hero p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 620px;
  margin: auto;
}

/* ── Pillars grid ───────────────────────────────────────────── */
.pillars-section {
  padding: 40px 0 80px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* ── Pillar card ────────────────────────────────────────────── */
.pillar-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  border-color: rgba(88, 101, 242, 0.3);
}

/* Gradient top-edge accent line */
.pillar-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-brand);
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.pillar-card:hover .pillar-accent {
  opacity: 1;
}

/* Highlighted card (Buyer Protection) */
.pillar-card.highlight {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.08), rgba(0, 209, 178, 0.05));
  border-color: rgba(88, 101, 242, 0.2);
}

.pillar-card.highlight .pillar-accent {
  opacity: 1;
}

.pillar-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  opacity: 0.6;
}

.pillar-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.pillar-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

/* ── Trust bar ──────────────────────────────────────────────── */
.trust-section {
  padding: 0 0 80px;
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
}

.trust-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.trust-value {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-divider {
  width: 1px;
  height: 52px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 40px;
}

/* ── CTA ────────────────────────────────────────────────────── */
.cta-section {
  padding: 0 0 100px;
}

.cta-box {
  background: linear-gradient(135deg, rgba(88, 101, 242, 0.15), rgba(0, 209, 178, 0.1));
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 70px 40px;
  text-align: center;
}

.cta-box h2 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-box p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .safety-hero h1 {
    font-size: 2.8rem;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    flex-direction: column;
    gap: 32px;
    padding: 32px;
  }

  .trust-divider {
    width: 60px;
    height: 1px;
    margin: 0;
  }
}
