.service-form-dialog {
  position: fixed;
  inset: 0;
  z-index: 1000;
  width: min(362px, calc(100vw - 28px));
  max-width: none;
  max-height: min(652px, calc(100dvh - 32px));
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  outline: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96) translateY(12px);
  transition:
    opacity 180ms var(--ease-out),
    transform 180ms var(--ease-out),
    overlay 180ms var(--ease-out) allow-discrete,
    display 180ms var(--ease-out) allow-discrete;
}

.service-form-dialog[open],
.service-form-dialog.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
  transition:
    opacity 300ms var(--ease-out),
    transform 300ms var(--ease-out),
    overlay 300ms var(--ease-out) allow-discrete,
    display 300ms var(--ease-out) allow-discrete;
}

.service-form-dialog::backdrop {
  background: rgb(0 0 0 / 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition:
    background-color 250ms var(--ease-out),
    backdrop-filter 250ms var(--ease-out),
    -webkit-backdrop-filter 250ms var(--ease-out),
    overlay 250ms var(--ease-out) allow-discrete,
    display 250ms var(--ease-out) allow-discrete;
}

.service-form-dialog[open]::backdrop {
  background: rgb(0 0 0 / 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.service-form-shell {
  width: 100%;
  margin: 0;
}

.service-form-close {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 3;
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 0.34);
  border-radius: 50%;
  background: rgb(255 255 255 / 0.16);
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background-color var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .service-form-close:hover {
    background: rgb(255 255 255 / 0.26);
    transform: translateY(-1px);
  }
}

.service-form-close:active {
  transform: scale(0.94);
}

.service-form-close:focus-visible {
  outline: 2px solid rgb(var(--lime-rgb) / 0.78);
  outline-offset: 2px;
}
.service-form-close svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-request-form {
  box-sizing: border-box;
  overflow-y: auto;
  width: 100%;
  height: min(652px, calc(100dvh - 32px));
  max-height: min(652px, calc(100dvh - 32px));
  min-height: 0;
  border: 0;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgb(0 0 0 / 0.12);
  color: var(--ink);
  scrollbar-color: rgb(0 0 0 / 0.24) transparent;
  scrollbar-width: thin;
}

.service-request-form::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.service-request-form::-webkit-scrollbar-track {
  background: transparent;
}

.service-request-form::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgb(0 0 0 / 0.24);
  background-clip: padding-box;
}

.service-form-hero {
  position: relative;
  height: 157px;
  min-height: 157px;
  overflow: hidden;
  padding: 0;
  color: #ffffff;
  isolation: isolate;
}

.service-form-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: url("/assets/service-form-hero.webp");
  background-position: center;
  background-size: cover;
}

.service-form-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: none;
}

.service-form-logo {
  position: absolute;
  top: 21px;
  left: 22px;
  display: block;
  width: 86px;
  height: auto;
  border-radius: 6px;
  line-height: 0;
  text-decoration: none;
}

.service-form-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.service-form-logo:focus-visible {
  outline: 3px solid rgb(var(--lime-rgb) / 0.58);
  outline-offset: 4px;
}

.service-form-hero h2 {
  position: absolute;
  top: 73px;
  left: 16px;
  max-width: 260px;
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0;
}

.service-form-hero p {
  position: absolute;
  top: 103px;
  left: 16px;
  max-width: 180px;
  margin: 0;
  color: #ADADAD;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0;
}


.service-form-label-desktop {
  display: none;
}

.service-form-label-mobile {
  display: inline;
}
.service-form-body {
  box-sizing: border-box;
  height: calc(100% - 157px);
  padding: 18px 18px 16px;
  background: #ffffff;
}

.service-form-step[data-service-step="2"] {
  margin-bottom: 8px;
}

.service-form-body[hidden],
.service-form-step[hidden],
.service-form-success[hidden],
.service-request-form.is-success .service-form-body {
  display: none !important;
}

.service-form-step {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 180ms var(--ease-out),
    transform 180ms var(--ease-out);
}

.service-form-step.is-entering {
  opacity: 0;
  transform: translateY(8px);
}

.service-form-question {
  margin: 0 0 14px 2px;
  font-size: 15px;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 0;
}

.service-form-question + .service-form-options {
  margin-bottom: 8px;
}

.service-form-options {
  display: grid;
  gap: 12px 17px;
}

.service-form-options.is-repair {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-form-options.is-bike {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.service-form-option {
  display: block;
  min-width: 0;
  cursor: pointer;
}

.service-form-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.service-form-option-inner {
  display: grid;
  min-height: 74px;
  grid-template-columns: 32px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgb(115 115 115 / 0.62);
  border-radius: 8px;
  background: transparent;
  color: #4a4a4a;
  transition:
    border-color var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

.service-form-options.is-bike .service-form-option-inner {
  min-height: 62px;
  grid-template-columns: 1fr;
  grid-template-rows: 30px 14px;
  justify-items: center;
  align-content: center;
  gap: 2px;
  padding: 7px;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  .service-form-option:hover .service-form-option-inner {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgb(0 0 0 / 0.08);
  }
}

.service-form-option:active .service-form-option-inner {
  transform: scale(0.98);
  box-shadow: 0 4px 12px rgb(0 0 0 / 0.06);
}

.service-form-option input:checked + .service-form-option-inner {
  border-color: var(--lime);
  background: transparent;
  color: var(--lime);
  box-shadow: none;
}

.service-form-option input:focus-visible + .service-form-option-inner {
  outline: 3px solid var(--focus);
  outline-offset: 2px;
}

.service-form-option-icon {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  justify-self: center;
  color: #4a4a4a;
}
.service-form-option-icon img,
.service-form-option-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-form-option-icon img {
  filter: grayscale(1) brightness(0);
  opacity: 0.62;
  transition:
    filter var(--duration-fast) var(--ease-out),
    opacity var(--duration-fast) var(--ease-out);
}

.service-form-option input:checked + .service-form-option-inner .service-form-option-icon {
  color: var(--lime);
}

.service-form-option input:checked + .service-form-option-inner .service-form-option-icon img {
  filter: none;
  opacity: 1;
}

.service-form-option-copy {
  display: block;
  min-width: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.18;
  color: currentColor;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  transition: color var(--duration-fast) var(--ease-out);
}

.service-form-options.is-bike .service-form-option-copy {
  font-size: 12px;
  line-height: 1.15;
}


.service-form-selected {
  display: grid;
  gap: 13px;
  margin: 8px 0 16px;
  padding: 13px 14px 14px;
  border: 1px solid rgb(0 0 0 / 0.22);
  border-radius: 8px;
  background: #ffffff;
}

.service-form-selected-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 3px;
}

.service-form-selected-label {
  color: #000000;
  font-size: 15px;
  font-weight: 800;
  line-height: normal;
  text-transform: none;
}

.service-form-change {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--lime);
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  cursor: pointer;
  text-underline-offset: 3px;
  transition:
    color var(--duration-fast) var(--ease-out),
    opacity var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .service-form-change:hover {
    color: #5fb100;
    text-decoration: underline;
  }
}

.service-form-change:active {
  opacity: 0.74;
  transform: scale(0.97);
}

.service-form-selected-pills {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-form-pill {
  display: inline-grid;
  min-width: 0;
  min-height: 46px;
  grid-template-columns: 26px minmax(0, auto);
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgb(var(--lime-rgb) / 0.58);
  border-radius: 7px;
  background: rgb(var(--lime-rgb) / 0.045);
  color: #202020;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0;
}

.service-form-pill img {
  display: block;
  justify-self: center;
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.service-form-fields {
  display: grid;
  gap: 12px;
}

.service-form-field {
  display: grid;
  gap: 8px;
}

.service-form-field label {
  font-size: 15px;
  font-weight: 800;
  line-height: normal;
}

.service-form-input {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgb(0 0 0 / 0.22);
  border-radius: 8px;
  background: #fafafa;
  padding: 0 14px;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  outline: 0;
  transition:
    border-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.service-form-input::placeholder {
  color: #b3b3b3;
  font-weight: 500;
}

.service-form-input:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 3px rgb(var(--lime-rgb) / 0.2);
}

.service-form-input:focus-visible {
  outline: 2px solid #111111;
  outline-offset: 2px;
}

.service-form-input.is-invalid {
  border-color: #d92d20;
  box-shadow: 0 0 0 3px rgb(217 45 32 / 0.12);
}

.service-form-hint,
.service-form-error {
  margin: 0;
  font-size: 10px;
  line-height: 1.35;
}

.service-form-hint {
  color: var(--muted);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.service-form-error,
.service-form-status.is-error {
  color: #b42318;
  font-weight: 700;
}

.service-form-field + .service-form-agreement {
  margin-top: 4px;
}

.service-form-agreement {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  color: #333333;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  cursor: pointer;
}

.service-form-agreement input {
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0;
  appearance: none;
  border: 1px solid rgb(0 0 0 / 0.22);
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  transition:
    border-color var(--duration-fast) var(--ease-out),
    background-color var(--duration-fast) var(--ease-out),
    transform 140ms var(--ease-out);
}

.service-form-agreement:active input {
  transform: scale(0.92);
}

.service-form-agreement input:focus-visible {
  outline: 2px solid rgb(var(--lime-rgb) / 0.72);
  outline-offset: 2px;
}

.service-form-agreement input:checked {
  border-color: var(--lime);
  background: var(--lime);
}

.service-form-agreement input:checked::after {
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.service-form-agreement a {
  color: var(--lime);
  font-weight: 500;
  text-decoration: none;
}

.service-form-status {
  min-height: 13px;
  margin: 2px 0 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.service-form-progress {
  overflow: hidden;
  height: 3px;
  border-radius: 0;
  background: #bdbdbd;
}

.service-form-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: var(--lime);
  transform: scaleX(0.5);
  transform-origin: left center;
  transition: transform var(--duration-base) var(--ease-out);
}

.service-form-step-count {
  margin: 7px 0 7px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.service-form-submit {
  display: inline-flex;
  width: 100%;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 10px;
  background: var(--lime);
  color: #000000;
  font: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  cursor: pointer;
  box-shadow: none;
  transition:
    background-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .service-form-submit:not(:disabled):not(.is-submitting):hover {
    background: var(--lime-hover);
    box-shadow: var(--button-lime-shadow-hover);
    transform: translateY(-1px);
  }
}

.service-form-submit:not(:disabled):not(.is-submitting):active {
  transform: var(--button-active-scale);
}

.service-form-submit:disabled,
.service-form-submit.is-submitting {
  cursor: wait;
  opacity: 0.82;
  transform: none;
  box-shadow: none;
}

.service-form-submit.is-submitting::after {
  width: 16px;
  height: 16px;
  border: 2px solid rgb(0 0 0 / 0.2);
  border-top-color: #000000;
  border-radius: 999px;
  content: "";
  animation: service-submit-spin 720ms linear infinite;
}

.service-form-submit-icon {
  display: none;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.service-form-success {
  display: flex;
  min-height: 495px;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 60px 20px;
  text-align: center;
}

.service-form-success-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.service-form-success-icon {
  display: grid;
  width: clamp(88px, 12vw, 104px);
  height: clamp(88px, 12vw, 104px);
  margin-bottom: 14px;
  place-items: center;
  animation: service-success-scale-in 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-form-success-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-form-success h3 {
  margin: 0 0 12px;
  color: #1a1a1a;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.15;
}

.service-form-success p {
  max-width: 280px;
  margin: 0;
  color: #666666;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .service-form-success {
    min-height: calc(100% - 157px);
    height: calc(100% - 157px);
    padding: 22px 24px 54px;
    transform: translateY(-22px);
  }
}

@keyframes service-success-scale-in {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (min-width: 769px) {
  .service-form-dialog {
    width: min(960px, calc(100vw - 40px));
    height: min(720px, calc(100dvh - 40px));
    max-height: min(720px, calc(100dvh - 40px));
    border-radius: 20px;
    background: transparent;
    overflow: hidden;
  }

  .service-form-dialog[open]::backdrop {
    background: rgb(0 0 0 / 0.48);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  .service-form-close {
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border: 0;
    background: rgb(0 0 0 / 0.08);
    color: #333333;
    box-shadow: none;
  }

  @media (hover: hover) and (pointer: fine) {
    .service-form-close:hover {
      background: rgb(0 0 0 / 0.14);
      color: #111111;
    }
  }

  .service-form-close svg {
    width: 15px;
    height: 15px;
  }

  .service-form-shell,
  .service-request-form {
    height: min(720px, calc(100dvh - 40px));
    max-height: min(720px, calc(100dvh - 40px));
  }

  .service-request-form {
    display: grid;
    grid-template-columns: 370px minmax(0, 1fr);
    overflow: hidden;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgb(0 0 0 / 0.28);
  }

  .service-form-hero {
    display: flex;
    min-height: 0;
    height: auto;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px 30px 46px;
    overflow: hidden;
  }

  .service-form-hero::before {
    background-image: url("/assets/service-form-hero.webp");
    background-position: 88% center;
    background-size: cover;
  }

  .service-form-hero::after {
    background:
      linear-gradient(90deg, rgb(0 0 0 / 0.46) 0%, rgb(0 0 0 / 0.16) 58%, rgb(0 0 0 / 0.04) 100%),
      linear-gradient(180deg, rgb(0 0 0 / 0.04) 0%, rgb(0 0 0 / 0.22) 45%, rgb(0 0 0 / 0.76) 100%);
  }

  .service-form-logo {
    position: relative;
    z-index: 1;
    top: auto;
    left: auto;
    width: 114px;
    margin: 0 0 20px;
  }

  .service-form-hero > h2,
  .service-form-hero > p {
    position: relative;
    z-index: 1;
    top: auto;
    left: auto;
    display: block;
  }

  .service-form-hero > h2 {
    max-width: 300px;
    margin: 18px 0 6px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0;
    text-shadow: 0 2px 16px rgb(0 0 0 / 0.45);
  }

  .service-form-hero > p {
    max-width: 280px;
    margin: 0;
    color: rgb(255 255 255 / 0.86);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: 0;
    text-shadow: 0 2px 14px rgb(0 0 0 / 0.55);
  }
  .service-form-body {
    display: flex;
    height: auto;
    min-height: 0;
    flex-direction: column;
    justify-content: space-between;
    padding: 38px 36px 34px;
    overflow-y: hidden;
    background: #ffffff;
    scrollbar-width: thin;
  }

  .service-request-form.is-desktop-flow .service-form-step {
    display: block;
  }

  .service-request-form.is-desktop-flow .service-form-step[data-service-step="1"] {
    margin: 0;
  }

  .service-request-form.is-desktop-flow .service-form-step[data-service-step="2"] {
    margin: 0;
  }

  .service-request-form.is-desktop-flow .service-form-selected {
    display: none;
  }

  .service-form-question {
    margin: 0 0 11px;
    color: #111111;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
  }

  .service-form-question + .service-form-options {
    margin-bottom: 28px;
  }

  .service-form-options {
    gap: 14px;
  }

  .service-form-options.is-repair {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-form-options.is-bike {
    grid-template-columns: repeat(3, minmax(0, 170px));
    gap: 14px;
  }

  .service-form-option-inner,
  .service-form-options.is-bike .service-form-option-inner {
    display: grid;
    min-height: 60px;
    grid-template-columns: 28px minmax(0, 1fr);
    grid-template-rows: none;
    justify-items: stretch;
    align-content: center;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border: 1.5px solid rgb(158 158 158 / 0.28);
    border-radius: 9px;
    background: #ffffff;
    color: #444444;
    text-align: left;
  }

  @media (hover: hover) and (pointer: fine) {
    .service-form-option:hover .service-form-option-inner {
      border-color: rgb(122 204 6 / 0.54);
      background: #fbfff5;
      box-shadow: none;
    }
  }

  .service-form-option input:checked + .service-form-option-inner {
    border-color: var(--lime);
    background: rgb(var(--lime-rgb) / 0.06);
    color: var(--lime);
    box-shadow: none;
  }

  .service-form-option-icon,
  .service-form-options.is-bike .service-form-option-icon {
    width: 24px;
    height: 24px;
    transform: none;
    justify-self: center;
  }

  .service-form-option-copy,
  .service-form-options.is-bike .service-form-option-copy {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.18;
    overflow-wrap: normal;
  }

  .service-form-fields {
    gap: 16px;
  }

  .service-form-field {
    gap: 8px;
  }

  .service-form-field label {
    display: flex;
    align-items: baseline;
    gap: 12px;
    font-size: 15px;
    line-height: 1.2;
  }

  .service-form-field label small {
    color: #9a9a9a;
    font-size: 13px;
    font-weight: 700;
  }

  .service-form-label-mobile {
    display: none;
  }

  .service-form-label-desktop {
    display: inline;
  }

  .service-form-input {
    min-height: 52px;
    border-color: rgb(158 158 158 / 0.32);
    border-radius: 9px;
    background: #ffffff;
    font-size: 15px;
    font-weight: 600;
  }

  .service-form-hint,
  .service-form-error {
    font-size: 12px;
  }

  .service-form-hint {
    color: #9a9a9a;
    font-weight: 600;
  }

  .service-form-agreement {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
    align-items: flex-start;
    margin-top: 2px;
    color: #555555;
    font-size: 13px;
    line-height: 1.35;
  }

  .service-form-agreement input {
    width: 22px;
    height: 22px;
    border-radius: 5px;
  }

  .service-form-progress,
  .service-form-step-count {
    display: none;
  }

  .service-form-status {
    min-height: 18px;
    margin: 0;
    font-size: 12px;
    text-align: left;
  }

  .service-form-submit {
    min-height: 56px;
    border-radius: 10px;
    font-size: 19px;
    font-weight: 800;
  }

  .service-form-submit-icon {
    display: block;
    width: 21px;
    height: 21px;
  }

  .service-form-success {
    grid-column: 2;
    min-height: 100%;
    padding: 40px;
  }
}
@media (max-width: 520px) {
  .service-form-dialog {
    width: min(362px, calc(100vw - 20px));
    max-height: calc(100dvh - 20px);
  }

  .service-form-close {
    top: 6px;
    right: 6px;
    width: 44px;
    height: 44px;
  }

  .service-request-form {
    height: min(652px, calc(100dvh - 20px));
    max-height: calc(100dvh - 20px);
    min-height: 0;
  }

  .service-form-submit {
    min-height: 44px;
  }
}

@media (max-width: 520px) and (max-height: 700px) {
  .service-form-hero {
    height: 126px;
    min-height: 126px;
  }

  .service-form-logo {
    top: 15px;
    width: 78px;
  }

  .service-form-hero h2 {
    top: 57px;
    font-size: 18px;
  }

  .service-form-hero p {
    top: 84px;
    max-width: 220px;
    font-size: 13px;
  }

  .service-form-body {
    height: calc(100% - 126px);
    padding: 14px 16px 12px;
  }

  .service-form-options {
    row-gap: 8px;
  }

  .service-form-option-inner {
    min-height: 70px;
    padding-block: 8px;
  }

  .service-form-options.is-bike .service-form-option-inner {
    min-height: 56px;
  }
}

@keyframes service-submit-spin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-form-dialog,
  .service-form-dialog::backdrop,
  .service-form-close,
  .service-form-step,
  .service-form-option-inner,
  .service-form-change,
  .service-form-agreement input,
  .service-form-progress span,
  .service-form-submit {
    transition: none;
  }

  .service-form-step.is-entering {
    opacity: 1;
    transform: none;
  }

  .service-form-submit.is-submitting::after {
    animation: none;
  }

  .service-form-success-icon {
    animation: none;
  }
}

@media (min-width: 769px) {
  .service-request-form.has-active-turnstile .service-form-body {
    justify-content: flex-start;
    gap: 10px;
    padding-top: 28px;
    padding-bottom: 28px;
    overflow-y: auto;
  }

  .service-request-form.has-active-turnstile .service-form-question + .service-form-options {
    margin-bottom: 14px;
  }

  .service-request-form.has-active-turnstile .service-form-options,
  .service-request-form.has-active-turnstile .service-form-options.is-bike {
    gap: 10px;
  }

  .service-request-form.has-active-turnstile .service-form-option-inner,
  .service-request-form.has-active-turnstile .service-form-options.is-bike .service-form-option-inner {
    min-height: 52px;
    padding-inline: 14px;
  }

  .service-request-form.has-active-turnstile .service-form-fields {
    gap: 12px;
  }

  .service-request-form.has-active-turnstile .service-form-input {
    min-height: 48px;
  }

  .service-request-form.has-active-turnstile .service-form-submit {
    min-height: 52px;
  }
}
