.cta-section {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,6,8,0.95) 0%,
    rgba(6,6,8,0.8) 50%,
    rgba(6,6,8,0.7) 100%
  );
}

.cta-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(192,57,43,0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  animation: ctaPulse 4s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.7; }
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 7rem);
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.cta-sub {
  font-size: 0.95rem;
  color: var(--light-muted);
  margin-bottom: 48px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.cta-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.83rem;
  color: var(--muted);
}

.ci-item svg { flex-shrink: 0; color: var(--red); margin-top: 2px; }