.cta-section {
  background: linear-gradient(to right, #6b21a8, #0891b2, #4c1d95);
  text-align: center;
  padding: 3rem 1.5rem;
  color: white;
}

.cta-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-title {
    font-size: 2.5rem;
  }
}

.cta-subtext {
  color: #d4d4d8;
  margin-bottom: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #9333ea;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: 0.3s ease;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.cta-button:hover {
  background: #7e22ce;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.7);
}

.footer {
  background: black;
  color: #a1a1aa;
  font-size: 0.875rem;
  padding: 3rem 1.5rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-container {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

.footer-title {
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a,
.footer-socials a {
  color: #a1a1aa;
  transition: color 0.3s;
  text-decoration: none;
}

.footer-links a:hover,
.footer-socials a:hover {
  color: #a855f7;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.75rem;
}

@media (min-width: 768px) {
  .footer-socials {
    justify-content: flex-start;
  }
}

.footer-bottom {
  text-align: center;
  margin-top: 2.5rem;
  color: #71717a;
  font-size: 0.75rem;
}
