.npstudio-contact-buttons{display:flex;flex-wrap:wrap;gap:10px}.npstudio-contact-buttons a{display:inline-flex;align-items:center;justify-content:center;min-height:44px;padding:0 16px;border-radius:999px;background:#ff6b3d;color:#fff!important;font-weight:800;text-decoration:none}.npstudio-contact-buttons a:nth-child(2){background:#2aabee}.npstudio-contact-buttons a:nth-child(3){background:#7360f2}.npstudio-contact-buttons a:nth-child(4){background:#c13584}


/* v1.0.3: thank-you page after successful lead form */
.npstudio-thankyou {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 76px 18px;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 82, 53, .12) 0 16%, transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(23, 175, 167, .12) 0 16%, transparent 34%),
    linear-gradient(180deg, #fff8f1 0%, #fff 100%);
}
.npstudio-thankyou__card {
  width: min(860px, 100%);
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(16, 31, 56, .10);
  border-radius: 36px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 28px 80px rgba(16,31,56,.12);
  text-align: center;
}
.npstudio-thankyou__icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  background: linear-gradient(135deg, #ff5235, #ff8d38);
  color: #fff;
  font-size: 38px;
  font-weight: 950;
  box-shadow: 0 18px 38px rgba(255, 82, 53, .30);
}
.npstudio-thankyou__eyebrow {
  margin: 0 0 10px;
  color: #ff5235;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.npstudio-thankyou h1 {
  margin: 0;
  color: #101f38;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -.05em;
}
.npstudio-thankyou h1 + p {
  max-width: 660px;
  margin: 22px auto 0;
  color: #687386;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 650;
}
.npstudio-thankyou__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.npstudio-thankyou__actions a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background: #101f38;
  color: #fff !important;
  font-weight: 900;
  text-decoration: none;
}
.npstudio-thankyou__actions a:nth-child(2) { background: #2aabee; }
.npstudio-thankyou__actions a:nth-child(3) { background: #ff5235; }
.npstudio-thankyou__actions a:nth-child(4) { background: #7360f2; }

@media (max-width: 640px) {
  .npstudio-thankyou {
    padding: 48px 14px;
  }
  .npstudio-thankyou__card {
    border-radius: 26px;
  }
  .npstudio-thankyou__actions a {
    width: 100%;
  }
}


/* v1.0.5: thank-you action buttons in one row on desktop */
@media (min-width: 781px) {
  .npstudio-thankyou__actions {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    max-width: 980px;
    margin: 30px auto 0;
  }
  .npstudio-thankyou__actions a {
    width: 100%;
    min-width: 0;
    padding: 0 14px;
    font-size: 15px;
    white-space: nowrap;
  }
}

@media (min-width: 781px) and (max-width: 980px) {
  .npstudio-thankyou__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .npstudio-thankyou__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .npstudio-thankyou__actions a {
    width: 100%;
  }
}
