/* ===== CTA SECTION ===== */

#cta {
  padding: 80px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(212, 0, 26, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-label {
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-dim);
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 600;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 40px;
  line-height: 1.1;
}

.cta-title span { color: var(--red); }

/* Main CTA Button — Liquid Glass */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 52px;
  border-radius: 60px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  color: white;

  /* Liquid glass */
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.06) 40%,
    rgba(255,255,255,0.12) 100%
  );
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 8px 32px rgba(0,0,0,0.3),
    0 0 0 1px rgba(255,255,255,0.05),
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -1px 0 rgba(0,0,0,0.15);
}

/* Top shine */
.btn-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 45%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%, transparent 100%);
  border-radius: 60px 60px 0 0;
  pointer-events: none;
}

/* Slide shimmer on hover */
.btn-cta::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  transition: left 0.6s ease;
}

.btn-cta:hover::after { left: 100%; }

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 -1px 0 rgba(0,0,0,0.2);
}

.btn-cta:active {
  transform: translateY(-1px) scale(0.99);
}

.btn-cta-icon {
  font-size: 18px;
  transition: transform var(--transition);
}

.btn-cta:hover .btn-cta-icon { transform: translateX(4px); }

/* ===== FOOTER ===== */

footer {
  padding: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.footer-logo span { color: var(--red); }

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 13px;
  color: var(--white-dim);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--white); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-dim);
  font-size: 16px;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  #cta { padding: 60px 24px; }
  .btn-cta { padding: 18px 36px; font-size: 13px; }
  footer { padding: 36px 24px; justify-content: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}
