
.page-services .services-framer-hero {
  min-height: auto;
  margin-top: calc(var(--header-height) * -1);
  padding-top: clamp(132px, 16vw, 204px);
  padding-bottom: clamp(58px, 9vw, 118px);
}

.page-services .services-framer-hero .hero-framer__content {
  max-width: 1080px;
}

.page-services .services-framer-hero h1 {
  max-width: 920px;
  font-size: clamp(44px, 7.2vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.075em;
}

.page-services .services-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  width: 100%;
}

.page-services .services-offers {
  padding-top: clamp(46px, 7vw, 96px);
}

.page-services .services-offers__grid {
  align-items: stretch;
}

.page-services .service-offer-card {
  min-height: 100%;
  grid-template-rows: auto auto 1fr auto;
}

.page-services .service-offer-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 18% 0%, rgba(223, 122, 254, 0.18), transparent 38%);
  opacity: 0;
  transition: opacity 0.22s ease;
}

.page-services .service-offer-card:hover::before {
  opacity: 1;
}

.page-services .service-offer-card__copy {
  display: grid;
  gap: 10px;
}

.page-services .service-offer-card__tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  border: 1px solid rgba(223, 122, 254, 0.24);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(129, 74, 200, 0.16);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
}

.page-services .service-checklist {
  display: grid;
  gap: 10px;
  margin-top: 2px;
  list-style: none;
}

.page-services .service-checklist li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 650;
  line-height: 1.35;
}

.page-services .service-checklist li > span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(129, 74, 200, 0.18);
  color: var(--color-primary-2);
  margin-top: 1px;
}

.page-services .service-offer-card__button {
  width: 100%;
  margin-top: 6px;
}

@media (max-width: 809.98px) {
  .page-services .services-framer-hero {
    margin-top: -84px;
    padding-top: 128px;
    padding-bottom: 54px;
  }

  .page-services .services-framer-hero h1 {
    font-size: clamp(38px, 12.2vw, 58px);
    line-height: 0.98;
  }

  .page-services .services-hero-actions .btn {
    width: 100%;
  }

  .page-services .service-offer-card {
    min-height: auto;
  }
}

.page-services .service-quote-modal__dialog {
  width: min(840px, calc(100vw - 30px));
  max-height: min(900px, calc(100svh - 28px));
  border-radius: 30px;
}

.page-services .service-quote-modal__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  margin-bottom: 18px;
}

.page-services .service-quote-modal__top .eyebrow,
.page-services .service-quote-form__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  color: var(--color-primary-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.page-services .service-quote-modal__top h2 {
  margin: 10px 0 0;
  max-width: 700px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .98;
  letter-spacing: -.065em;
  color: #fff;
}

.page-services .service-quote-modal__top p,
.page-services .service-quote-form__hint {
  margin: 12px 0 0;
  max-width: 720px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.55;
}

.page-services .service-quote-modal__body {
  display: grid;
  gap: 16px;
}

.page-services .service-quote-form {
  display: grid;
  gap: 18px;
}

.page-services .service-quote-form__intro {
  display: grid;
  gap: 8px;
  padding: 16px 18px;
  border: 1px solid rgba(223, 122, 254, .18);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.02)),
    rgba(129, 74, 200, .06);
}

.page-services .service-quote-form__field {
  display: grid;
  gap: 9px;
}

.page-services .service-quote-form__field > span,
.page-services .service-quote-form__field--select > span {
  color: rgba(255,255,255,.96);
  font-size: 14px;
  font-weight: 850;
}

.page-services .service-quote-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.page-services .service-quote-form .field-control,
.page-services .service-quote-form .field-textarea,
.page-services .service-quote-form .ui-select__trigger {
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02)),
    rgba(255,255,255,.03);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease;
}

.page-services .service-quote-form .field-control,
.page-services .service-quote-form .ui-select__trigger {
  min-height: 64px;
  padding: 16px 18px;
}

.page-services .service-quote-form .field-textarea {
  min-height: 220px;
  padding: 18px;
}

.page-services .service-quote-form .field-control:focus,
.page-services .service-quote-form .field-textarea:focus,
.page-services .service-quote-form .ui-select__trigger:focus-visible,
.page-services .service-quote-form .ui-select.is-open .ui-select__trigger {
  border-color: rgba(223, 122, 254, .52);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 4px rgba(129, 74, 200, .16);
}

.page-services .service-quote-form .ui-select {
  position: relative;
}

.page-services .service-quote-form .ui-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
}

.page-services .service-quote-form .ui-select__trigger-copy {
  display: grid;
  gap: 4px;
  text-align: left;
}

.page-services .service-quote-form .ui-select__trigger-copy strong {
  color: #fff;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 900;
  line-height: 1.1;
}

.page-services .service-quote-form .ui-select__trigger-copy small {
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.3;
}

.page-services .service-quote-form .ui-select__menu {
  position: absolute;
  inset: calc(100% + 8px) 0 auto;
  z-index: 5;
  padding: 10px;
  border: 1px solid rgba(223,122,254,.18);
  border-radius: 20px;
  background: rgba(10,10,14,.98);
  box-shadow: 0 24px 56px rgba(0,0,0,.46);
}

.page-services .service-quote-form .ui-select__menu-scroll {
  display: grid;
  gap: 8px;
  max-height: min(320px, 48vh);
  overflow: auto;
}

.page-services .service-quote-form .ui-select__option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  background: rgba(255,255,255,.02);
  color: #fff;
  text-align: left;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.page-services .service-quote-form .ui-select__option-copy {
  display: grid;
  gap: 4px;
}

.page-services .service-quote-form .ui-select__option-copy strong {
  font-size: 15px;
  font-weight: 850;
}

.page-services .service-quote-form .ui-select__option-copy small {
  color: rgba(255,255,255,.58);
  font-size: 12px;
}

.page-services .service-quote-form .ui-select__option:hover,
.page-services .service-quote-form .ui-select__option.is-selected {
  border-color: rgba(223,122,254,.34);
  background: rgba(129,74,200,.14);
  transform: translateY(-1px);
}

.page-services .service-quote-form .ui-select__option-check {
  color: var(--color-primary-2);
  opacity: 0;
}

.page-services .service-quote-form .ui-select__option.is-selected .ui-select__option-check {
  opacity: 1;
}

.page-services .service-quote-form .field-control::placeholder,
.page-services .service-quote-form .field-textarea::placeholder {
  color: rgba(255,255,255,.34);
}

.page-services .service-quote-form .field-control[aria-invalid="true"],
.page-services .service-quote-form .field-textarea[aria-invalid="true"],
.page-services .service-quote-form .ui-select.is-invalid .ui-select__trigger {
  border-color: rgba(255,109,122,.52);
  background: rgba(255,109,122,.06);
  box-shadow: 0 0 0 4px rgba(255,109,122,.11);
}

.page-services .service-quote-modal .modal-alert--error {
  border: 1px solid rgba(255,109,122,.34);
  background: rgba(255,109,122,.10);
  color: #ffd6db;
}

.page-services .service-quote-modal .field-error {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffd6db;
  font-size: 12px;
  font-weight: 800;
}

.page-services .service-quote-modal .field-error::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ff6d7a;
  box-shadow: 0 0 12px rgba(255,109,122,.45);
}

.page-services .service-quote-modal .contact-modal__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.page-services .service-quote-form__cancel,
.page-services .service-quote-form__submit {
  min-height: 56px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
}

.page-services .service-quote-form__submit,
.page-services .service-quote-modal .service-quote-modal__actions > button.btn.btn-primary {
  background: linear-gradient(135deg, #8f59e8, #b96bff) !important;
  border-color: rgba(223,122,254,.48) !important;
  color: #fff !important;
  box-shadow: 0 18px 36px rgba(129,74,200,.26);
}

.page-services .service-quote-form__submit:hover,
.page-services .service-quote-modal .service-quote-modal__actions > button.btn.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(129,74,200,.30);
}

@media (max-width: 809.98px) {
  .page-services .service-quote-modal__dialog {
    width: calc(100vw - 16px);
    border-radius: 26px;
  }

  .page-services .service-quote-form__grid,
  .page-services .service-quote-modal .contact-modal__actions {
    grid-template-columns: 1fr;
  }

  .page-services .service-quote-form .field-control,
  .page-services .service-quote-form .ui-select__trigger {
    min-height: 58px;
  }

  .page-services .service-quote-form .field-textarea {
    min-height: 190px;
  }
}

.page-services .service-quote-modal .contact-modal__actions {
  align-items: stretch;
}

.page-services .service-quote-form__submit {
  order: 1;
}

.page-services .service-quote-form__cancel {
  order: 2;
}

.page-services .service-quote-form__submit,
.page-services .service-quote-form__submit.btn,
.page-services .service-quote-modal .contact-modal__actions .service-quote-form__submit.btn.btn-primary {
  background: linear-gradient(135deg, #8f59e8, #b96bff) !important;
  border-color: rgba(223,122,254,.5) !important;
  color: #fff !important;
  box-shadow: 0 18px 36px rgba(129,74,200,.26);
}

.page-services .service-quote-form__submit:hover,
.page-services .service-quote-form__submit.btn:hover,
.page-services .service-quote-modal .contact-modal__actions .service-quote-form__submit.btn.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 42px rgba(129,74,200,.30);
}
