.cta-hire-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  position: relative;
}
.cta-hire-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
}

.cta-hire-card {
  width: 100%;
  max-width: 1200px;
  padding: 70px 40px;
  border-radius: 36px;
  background: linear-gradient(135deg, #0fb9b1, #1dd1a1);
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.cta-hire-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.cta-hire-subtitle {
  font-size: 18px;
  color: #eafffb;
  max-width: 760px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-hire-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.cta-hire-btn {
  padding: 14px 26px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  background: #ffffff;
  color: #0fb9b1;
  border: 2px solid transparent;
  transition: all 0.35s ease;
}

.cta-hire-btn.outline {
  background: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

.cta-hire-btn:hover {
  background: #ffffff;
  color: #0fb9b1;
  border-color: #1dd1a1;
  box-shadow: 0 0 18px rgba(29, 209, 161, 0.9);
  transform: translateY(-3px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .cta-hire-card {
    padding: 50px 24px;
  }

  .cta-hire-title {
    font-size: 32px;
  }

  .cta-hire-subtitle {
    font-size: 16px;
  }

  .cta-hire-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}
