/* ============================================================
   hr-cta-module — Final CTA Section
   ============================================================ */

.hr-cta-module {
  padding: 120px 0;
  background: #ffffff;
  
  -webkit-font-smoothing: antialiased;
}

.hr-cta-module--light {
  background: #f8fafb;
}

.hr-cta-module__container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0px;
}

/* ---------- Card ---------- */
.hr-cta-module__card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 80px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #064367 0%, #0066a0 100%);
}

.hr-cta-module__card--gradient {
  background: linear-gradient(135deg, #064367 0%, #0066a0 60%, #087FCB 100%);
}

/* ---------- Blobs ---------- */
.hr-cta-module__blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hr-cta-module__blob--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 70%);
  top: -220px;
  left: -120px;
}

.hr-cta-module__blob--2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
  bottom: -160px;
  right: -100px;
}

.hr-cta--animated .hr-cta-module__blob--1 {
  animation: hr-cta-pulse 20s ease-in-out infinite;
}

.hr-cta--animated .hr-cta-module__blob--2 {
  animation: hr-cta-pulse 25s ease-in-out infinite reverse;
}

@keyframes hr-cta-pulse {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50%       { transform: scale(1.12) translate(20px, -20px); }
}

/* ---------- Icon ---------- */
.hr-cta-module__icon {
  font-size: 64px;
  line-height: 1;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  display: block;
}

.hr-cta--animated .hr-cta-module__icon--floating {
  animation: hr-cta-float 5s ease-in-out infinite;
}

@keyframes hr-cta-float {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-14px) rotate(5deg); }
}

/* ---------- Headline ---------- */
.hr-cta-module__headline {
  
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

/* ---------- Subtext ---------- */
.hr-cta-module__subtext {
  
  font-size: clamp(0.95rem, 1.1vw, 1rem)
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 44px;
  max-width: 600px;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* ---------- Buttons ---------- */
.hr-cta-module__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.hr-cta-module__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 26px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none !important;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.hr-cta-module__btn:hover {
  text-decoration: none !important;
}

/* Primary */
.hr-cta-module__btn--primary {
  background: #087FCB;
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(8, 127, 203, 0.35);
}

.hr-cta-module__btn--primary:hover {
  background: #0990e0;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(8, 127, 203, 0.5);
  color: #ffffff;
}

.hr-cta-module__btn-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.hr-cta-module__btn--primary:hover .hr-cta-module__btn-arrow {
  transform: translateX(4px);
}

/* Secondary */
.hr-cta-module__btn--secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}

.hr-cta-module__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  transform: translateY(-3px);
  color: #ffffff;
}

/* ---------- Trust line ---------- */
.hr-cta-module__trust {
  margin-top: 28px;
 
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  position: relative;
  z-index: 2;
  letter-spacing: 0.02em;
}

/* ---------- Scroll entrance (JS-driven) ---------- */
.hr-cta--animated .hr-cta-module__card {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.hr-cta--animated .hr-cta-module__card.hr-cta--visible {
  opacity: 1;
  transform: translateY(0);
}

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

  .hr-cta-module__container {
    padding: 0 20px;
  }

  .hr-cta-module__card {
    padding: 60px 28px;
    border-radius: 20px;
  }

  .hr-cta-module__icon {
    font-size: 48px;
  }

  .hr-cta-module__buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hr-cta-module__btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  .hr-cta-module__blob--1,
  .hr-cta-module__blob--2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .hr-cta-module__card {
    padding: 48px 20px;
  }
}