.contact-cta {
  position: relative;
  overflow: hidden;
  margin-top: 26px;
  padding: 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, #173b3c 0%, #244f50 100%);
  color: #fff;
  text-align: left;
  box-shadow: 0 18px 38px rgba(23, 59, 60, .24);
}

.contact-cta::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 34px rgba(255, 255, 255, .035);
  pointer-events: none;
}

.contact-kicker {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #f4b4a1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-cta h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 9px;
  color: #fff;
  font: 600 27px/1.16 "Manrope", sans-serif;
  letter-spacing: -.035em;
}

.contact-cta p {
  position: relative;
  z-index: 1;
  max-width: 390px;
  margin: 0 0 20px;
  color: #c7d5d3;
  font-size: 13px;
}

.contact-button {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 13px;
  background: #fff;
  color: #173b3c;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .15);
  cursor: pointer;
  font: 700 15px "DM Sans", sans-serif;
  transition: transform .2s ease, box-shadow .2s ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(0, 0, 0, .22);
}

.contact-button:disabled {
  cursor: wait;
  opacity: .75;
  transform: none;
}

.contact-button span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #d06449;
  color: #fff;
  font-size: 12px;
}

.contact-error {
  display: none;
  position: relative;
  z-index: 1;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #fff0ed;
  color: #9e3f30;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.contact-error.show {
  display: block;
}

.contact-cta small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 11px;
  color: #9fb2b0;
  font-size: 10px;
  text-align: center;
}

.contact-success {
  display: none;
  align-items: flex-start;
  gap: 14px;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid #cfe1d3;
  border-radius: 18px;
  background: #edf7ef;
  color: #244b31;
  text-align: left;
}

.contact-success.show {
  display: flex;
}

.contact-success > span {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  background: #5a9c71;
  color: #fff;
  font-weight: 700;
}

.contact-success b {
  display: block;
  margin-bottom: 4px;
  font-size: 15px;
}

.contact-success p {
  margin: 0;
  color: #5f7766;
  font-size: 12px;
}

@media (max-width: 600px) {
  .contact-cta { padding: 23px 20px; }
  .contact-cta h3 { font-size: 23px; }
  .contact-button { font-size: 14px; }
}
