.cta-section {
  padding: 120px 0;
  background: radial-gradient(circle at top left, rgba(77,163,255,0.10), transparent 50%),
              radial-gradient(circle at bottom right, rgba(255,255,255,0.05), transparent 60%);
}

/* MAIN WRAPPER */
.cta-wrapper {
  display: flex;
  gap: 40px;
  padding: 60px;
  border-radius: 26px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

/* glow effect */
.cta-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% 25%, rgba(77,163,255,0.18), transparent 60%);
  pointer-events: none;
}

/* LEFT SIDE */
.cta-left {
  flex: 1;
}

.cta-tag {
  color: #4da3ff;
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 600;
}

.cta-left h2 {
  font-size: 44px;
  margin: 18px 0;
  line-height: 1.2;
  color: #fff;
}

.cta-left p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  max-width: 500px;
}

/* BUTTON */
.cta-btn {
  display: inline-block;
  margin-top: 25px;
  padding: 14px 30px;
  border-radius: 50px;
  background: linear-gradient(135deg, #4da3ff, #1b6fff);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(77,163,255,0.25);
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(77,163,255,0.35);
}

/* RIGHT SIDE */
.cta-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.cta-card {
  width: 100%;
  padding: 35px;
  border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s;
}

.cta-card:hover {
  transform: translateY(-6px);
  border-color: rgba(77,163,255,0.4);
}

.cta-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.cta-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* BADGES */
.cta-badges {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cta-badges span {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 12px;
  background: rgba(77,163,255,0.1);
  border: 1px solid rgba(77,163,255,0.2);
  color: #4da3ff;
}
@media (max-width: 768px) {

  .cta-section{
    padding: 60px 0;
  }

  .cta-wrapper{
    display: block;
    padding: 25px 20px;
    border-radius: 24px;
    text-align: center;
  }

  .cta-right{
    margin-bottom: 25px;
  }

  .cta-card{
    padding: 22px;
    border-radius: 18px;
  }

  .cta-card h3{
    font-size: 18px;
    margin-bottom: 8px;
  }

  .cta-card p{
    font-size: 13px;
  }

  .cta-left h2{
    font-size: 30px;
    line-height: 1.25;
    margin: 15px 0;
  }

  .cta-left p{
    font-size: 14px;
    max-width: 100%;
    margin-bottom: 25px;
  }

  .cta-btns{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 54px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 600;
  }

  .cta-badges{
    justify-content: center;
  }
}