.home-contact-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 44px;
  overflow: hidden;
  background: radial-gradient(circle at 100% 0, rgba(245, 166, 35, .14), transparent 38%), #0d1524;
}

.home-contact-cta::after {
  content: '';
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  border: 1px solid rgba(245, 166, 35, .12);
  border-radius: 50%;
  pointer-events: none;
}

.home-contact-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #06090f;
  background: linear-gradient(135deg, #f5a623, #e0900d);
  box-shadow: 0 12px 30px rgba(245, 166, 35, .22);
  font-size: 20px;
  margin-bottom: 22px;
}

.home-contact-label {
  color: #f5a623;
  font: 700 11px 'Outfit', sans-serif;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.home-contact-cta h3 {
  max-width: 470px;
  color: #eef1f6;
  font: 700 clamp(26px, 3vw, 37px)/1.15 'Outfit', sans-serif;
  letter-spacing: -1px;
  margin: 0 0 15px;
}

.home-contact-cta > p {
  max-width: 500px;
  color: #8f9db2;
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 24px;
}

.home-contact-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.home-contact-services span {
  padding: 8px 11px;
  color: #b7c2d2;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  font-size: 11px;
}

.home-contact-services i {
  color: #f5a623;
  margin-right: 5px;
}

.home-contact-button {
  position: relative;
  z-index: 1;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: #090c12;
  background: linear-gradient(135deg, #f5a623, #e0900d);
  border-radius: 10px;
  font: 700 13px 'Outfit', sans-serif;
  box-shadow: 0 10px 26px rgba(245, 166, 35, .18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.home-contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(245, 166, 35, .28);
}

.home-contact-note {
  color: #68778d;
  font-size: 11px;
  margin-top: 16px;
}

.home-contact-note i {
  color: #50d7a0;
  margin-right: 5px;
}

@media (max-width: 600px) {
  .home-contact-cta {
    padding: 35px 24px;
  }

  .home-contact-button {
    width: 100%;
    justify-content: center;
  }
}
