/* CTA Section */
.cta-section {
  background:linear-gradient(153deg, #1e40af 0%, #3b82f6 80%, #60a5fa 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
h2.cta-section__title {
  font-size: 60px;
}
a.cta-section__button {
  color: #080C16;
}
/* Badge */
.cta-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid #FFFFFF1A;
  border-radius: 50px;
  padding: 8px 20px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.cta-section__badge::before {
  content: '';
  width: 20px;
  height: 20px;
  background: #5CE4FF;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cpolyline points='12,6 12,12 16,14'/%3E%3C/svg%3E") no-repeat center;
  mask-size: contain;
}

.cta-section__badge-text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #5CE4FF;
}

/* Title */
.cta-section__title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  margin: 0 0 40px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section__title-normal {
  color: #F9FAFB;
}

.cta-section__title-highlight {
  background: linear-gradient(98.57deg, #0582FF 0%, #5CE4FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* CTA Button */
.cta-section__cta {
  margin-top: 40px;
}

.cta-section__button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #5ce4ff;
  color: #0a1128;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(92, 228, 255, 0.3);
}

.cta-section__button:hover {
  background: #29cdff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(92, 228, 255, 0.4);
}

.cta-section__button:active {
  transform: translateY(0);
}

.cta-section__arrow {
  transition: transform 0.3s ease;
}

.cta-section__button:hover .cta-section__arrow {
  transform: translateX(4px);
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.2);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .cta-section {
    padding: 80px 0;
  }

  .cta-section__container {
    padding: 0 16px;
  }

  .cta-section__title {
    font-size: 45px;
    line-height: 45px;
    margin-bottom: 32px;
  }

  .cta-section__badge {
    padding: 6px 16px;
    margin-bottom: 24px;
  }

  .cta-section__badge-text {
    font-size: 14px;
    line-height: 20px;
  }

  .cta-section__badge::before {
    width: 18px;
    height: 18px;
  }

  .cta-section__button {
    font-size: 16px;
    padding: 14px 28px;
    gap: 10px;
  }

  .cta-section__arrow {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-section__title {
    font-size: 32px;
    line-height: 32px;
    margin-bottom: 24px;
  }

  .cta-section__button {
    font-size: 14px;
    padding: 12px 24px;
    gap: 8px;
  }

  .cta-section__arrow {
    width: 16px;
    height: 16px;
  }
}
