/* ================================================================
   ECON Tech — CTA Section
   Full-width dark section with headline, paragraph, buttons, trust row.
   ================================================================ */

#cta {
  background: var(--dark);
  padding: var(--section-pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(223,8,8,0.10) 0%, transparent 65%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

#cta .section-label { margin-bottom: 20px; }

#cta h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.15;
}

#cta h2 span { color: var(--red); }

.cta-inner > p {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Trust badges row ── */
.cta-trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 52px;
  flex-wrap: wrap;
}

.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

.cta-trust-item::before {
  content: '✓';
  color: var(--red);
  font-weight: 700;
}

/* ── Responsive ── */
@media (max-width: 600px) {
  .cta-trust-row { gap: 16px; }
  .cta-inner > p { font-size: 16px; }
}
