/* ===== CTA CONTAINER ===== */
.cta {
  padding: 70px 24px;
  margin: 50px 20px;
  border-radius: 18px;

  background: linear-gradient(135deg, rgba(0,198,255,0.1), rgba(0,255,204,0.1));
  border: 1px solid rgba(0,255,204,0.15);

  box-shadow: 0 20px 50px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

/* subtle glow background */
.cta::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(0,255,204,0.2);
  filter: blur(100px);
  top: -50px;
  right: -50px;
}

/* ===== INNER ===== */
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ===== TEXT ===== */
.cta-text h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 10px;

  background: linear-gradient(90deg, #00c6ff, #00ffcc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-text p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
  max-width: 500px;
}

/* ===== FEATURES BADGES ===== */
.cta-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-features span {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;

  background: rgba(0, 198, 255, 0.08);
  border: 1px solid rgba(0, 198, 255, 0.2);
  color: var(--muted);

  transition: 0.25s;
}

.cta-features span:hover {
  color: #00ffcc;
  border-color: #00ffcc;
  transform: translateY(-2px);
}

/* ===== BUTTONS ===== */
.cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* primary button */
.cta .btn.primary {
  transition: all 0.25s ease;
}

.cta .btn.primary:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0,255,204,0.3);
}

/* outline button */
.cta .btn.outline:hover {
  border-color: #00ffcc;
  color: #00ffcc;
}
@media (max-width: 700px) {

  /* 🎯 section spacing */
  .cta {
    padding: 60px 18px;
    text-align: center;
  }

  /* 🧱 layout */
  .cta-inner {
    flex-direction: column;
    align-items: center;
    gap: 20px; /* 🔥 spacing between elements */
  }

  /* ✨ text */
  .cta-text h3 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .cta-text p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
  }

  /* 🚀 buttons container */
  .cta-buttons {
    width: 100%;
    display: flex;
    flex-direction: column; /* 🔥 stack buttons */
    gap: 12px;
    align-items: center;
  }

  /* 🔘 buttons */
  .cta-buttons a {
    width: 90%;
    text-align: center;
    padding: 12px 14px;
    font-size: 14px;
    border-radius: 8px;
  }
}