/*=====================================
CALL TO ACTION
=====================================*/

.cta-section {
  padding: 44px 0 112px;
  background: #fff;
}

.cta-container {
  width: min(92%, 1320px);
  margin: auto;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: linear-gradient(112deg, #2449db 0%, #753cf0 52%, #0fb3d0 100%);
  box-shadow: 0 22px 46px rgba(68, 69, 219, .16);
}

.cta-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .33;
  background-image: radial-gradient(rgba(255, 255, 255, .5) 1.2px, transparent 1.2px);
  background-size: 36px 36px;
  background-position: -12px -12px;
}

.cta-panel::after {
  position: absolute;
  width: 390px;
  height: 390px;
  right: -150px;
  bottom: -250px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 55px rgba(255, 255, 255, .035), 0 0 0 110px rgba(255, 255, 255, .025);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 42px 24px;
  text-align: center;
  color: #fff;
}

.cta-content h2 {
  margin: 0;
  font-size: clamp(31px, 3.25vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.75px;
}

.cta-content p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .91);
  font-size: clamp(16px, 1.55vw, 21px);
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 38px;
}

.cta-actions a {
  display: inline-flex;
  min-width: 260px;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 25px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-size: 18px;
  font-weight: 700;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.cta-primary {
  background: #fff;
  color: #1f4cf0;
  box-shadow: 0 12px 26px rgba(24, 26, 126, .16);
}

.cta-secondary {
  border-color: rgba(255, 255, 255, .35) !important;
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.cta-actions a i {
  font-size: 19px;
  transition: transform .25s ease;
}

.cta-actions a:hover {
  transform: translateY(-4px);
}

.cta-primary:hover {
  color: #1f4cf0;
  box-shadow: 0 17px 30px rgba(24, 26, 126, .27);
}

.cta-secondary:hover {
  color: #fff;
  background: rgba(255, 255, 255, .19);
  box-shadow: 0 14px 27px rgba(24, 26, 126, .18);
}

.cta-actions a:hover i {
  transform: translateX(4px);
}

.cta-actions a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

@media (max-width: 680px) {
  .cta-section { padding: 28px 0 76px; }
  .cta-container { width: min(90%, 500px); }
  .cta-panel { min-height: 0; border-radius: 22px; }
  .cta-content { padding: 54px 20px; }
  .cta-content h2 { letter-spacing: -.45px; }
  .cta-content p { margin-top: 14px; }
  .cta-break { display: none; }
  .cta-actions { flex-direction: column; gap: 12px; margin-top: 28px; }
  .cta-actions a { width: 100%; min-width: 0; min-height: 58px; font-size: 16px; border-radius: 13px; }
}
