html {
  font-size: 1rem;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0 auto;
  font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI';
  font-size: 1rem;
}

header {
  text-align: -webkit-center;
  padding: 20px 20px 40px 20px;
  background-color: #F7F7F7;
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.logo img {
  width: 10rem;
  height: auto;
  margin-right: 8px;

}

.header-top {
  max-width: 70rem;
}

.option-card {
  background-color: #fff;
  border: 2px solid #eee;
  border-radius: 12px;
  padding: 28px 0px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: auto;
  min-width: 120px;
  flex: 1 1 0;
  text-align: center;
}

.option-card:hover,
.option-card.selected {
  border-color: #ff6600;
  background-color: #fff7f0;
}

.option-icon {
  font-size: 40px;
  margin-bottom: 15px;
  color: #ff6600;
}

.checks-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  
  gap: 28px 30px;
  max-width: 820px;
  margin: 0 auto 24px;
}

.checks-grid-call-time {
  grid-template-columns: repeat(2, minmax(336px, 1fr));
  gap: 18px 30px;
}

.option-label {
  font-size: 18px;
  font-weight: 400;
  color: #333;
}


form {
  padding: 0;
  place-self: center;
  border-radius: 10px;
  width: 100%;
  margin: 0 auto;
  max-width: 50rem;
  position: relative;
}

.step {
  display: none;
  /* display: flex; */
  flex-direction: column;
  gap: 15px;
  animation: fade 0.4s ease-in-out;
}

.step.active {
  display: flex;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-size: 1.35rem;
  font-weight: 500;
  color: #1e1e1e;
  user-select: none
}

.checks-grid-call-time .check-item {
  gap: 10px;
}

.accept-sms .check-item {
  text-align: left;
}

.check-item input {
  appearance: none;
  width: 28px;
  height: 28px;
  border: 2px solid #e5e5e5;
  border-radius: 6px;
  display: inline-block;
  position: relative;
  background: #fff;
  transition: .2s;
  box-sizing: border-box;
}

.check-item span {
  font-size: 1rem;
}

.checks-grid-call-time .check-item input {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 2px solid #d9d9d9;
}

.checks-grid-call-time .check-item input:checked {
  background: #f37019;
  border-color: #f37019;
}

.checks-grid-call-time .check-item input:checked::after {
  left: 7px;
  top: 1px;
  width: 10px;
  height: 17px;
}

.checks-grid-call-time .check-item span {
  font-size: 15px;
}

.check-item input:checked {
  background: #f37019;
  border-color: #f37019
}

.check-item input:checked::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 2px;
  width: 9px;
  height: 16px;
  border: 3px solid #fff;
  border-top: 0;
  border-left: 0;
  transform: rotate(45deg)
}

.step h2 {
  font-size: 24px;
}

input {
  padding: 12px;
  font-size: 16px;
  width: 23rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

h2 {
  text-align: center;
  font-size: 2.2rem;
}

.form-buttons {
  margin-top: 40px;
  display: flex;
  gap: 10px;
  /* space between buttons */
}

.form-button {
  box-sizing: border-box;
  padding: 15px;
  font-size: 1rem;
  background-color: #f37019;
  border: none;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  align-self: flex-end;
  width: 50%;
  text-transform: uppercase;
}

.form-button.form-button-disabled {
  background-color: #f37019;
  color: rgba(255, 255, 255, 0.5);
  pointer-events: none !important;
  cursor: not-allowed;
  opacity: .8;
}

a.form-button {
  text-decoration: none;
}

.first-step .form-button,
.thank-you-message .form-button {
  width: 100%;
}

.form-button.back {
  box-sizing: border-box;
  padding: 15px;
  background-color: #F2F3F4;
  border: none;
  color: black;
  border-radius: 5px;
  cursor: pointer;
  align-self: flex-end;
  width: 50%;
}

#addressContainer > input,
#zipCodeContainer > input {
  padding-right: 35px;
}
#addressContainer > svg,
#zipCodeContainer > svg {
  display: none;
  position: absolute;
  right: 16px;
  top: 16px;
}
#addressContainer.validated > svg,
#zipCodeContainer.validated > svg {
  display: block;
}

#zip-success-message {
  font-size: 13px;
  display: none;
  align-items: center;
  gap: 8px;
  line-height: 1;
  color: #21A435;
}

#zip-success-message svg{
  display: block;
  flex: 0 0 auto;
}

#zip-success-message.validated {
  display: inline-flex;
  margin-top: 10px;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.progress-bar {
  margin: 0 auto;
  display: flex;
  gap: 6px;
  width: 25rem;
  justify-content: center;
  margin-bottom: 0px;
  place-self: center;
}

.progress-bar .bar {
  flex: 1;
  height: 6px;
  background: #ccc;
  border-radius: 1px;
  transition: background 0.3s ease;
}

.thank-you {
  text-align: center;
  padding: 50px;
  background: white;
  border-radius: 10px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.progress-bar .bar.active {
  background: #f37019;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 20px;
  margin-bottom: 1rem;
  flex-direction: column;
}

.step-header h2 {
  flex: 1;
  margin: 0;
}

.step-illustration {
  flex: 0 0 180px;
  max-width: 400px;
}

.step-illustration img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.commercial-block {
  display: none;
  background: #fff;
  border-radius: 24px;
  margin-top: 24px;
  text-align: center;
  padding: 32px 0px;
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.08);
}

.commercial-block img {
  width: 100%;
  max-width: 480px;
  margin: 0 auto 24px;
  display: block;
  border-radius: 16px;
}

.commercial-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.comm-btn {
  border: none;
  padding: 14px 22px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  min-width: 180px;
  text-decoration: none;
  text-align: center;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.2s ease;
  font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI';
}

.comm-btn:active {
  transform: translateY(1px);
}

.comm-btn-ghost {
  background: #f2f4f7;
  color: #101828;
  box-shadow: inset 0 0 0 1px #e4e7ec;
}

.comm-btn-ghost:hover {
  background: #e7eaef;
}

.comm-btn-primary {
  background: #f37019;
  color: #fff;
  box-shadow: 0 12px 24px rgba(243, 112, 25, 0.22);
}

.comm-btn-primary:hover {
  filter: brightness(0.95);
}

.benefits-section {
  background-color: #fff3ec;
  padding: 60px 20px;
}

.container-benefits {
  max-width: 70rem;
  margin: 0 auto;
}

.benefits-section h2 {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000;

}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.benefit {
  background: transparent;
  padding: 10px;
}

.benefit .icon {
  font-size: 24px;
  color: #ff6a00;
  margin-bottom: 10px;
}

.benefit h3 {
  font-size: 1rem;
  font-weight: bold;
  margin: 0px;
}

h3 {
  font-size: 18px;
  font-weight: 500;
}

.benefit p {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.5;
}

.form-section {
  background-color: #F7F7F7;
  padding: 0 5% 55px 5%;
}

.form-section-inner {
  background-color: #fff;
  box-sizing: border-box;
  max-width: 800px;
  margin: auto;
  border-radius: 24px;
  padding: 44px;
}

.form-note,
.form-note-down {
  min-width: 0;
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  /* flex-wrap: wrap; */
}

.form-note {
  justify-content: flex-start;
}

.form-note-cards {
  flex-wrap: nowrap;
  gap: 12px;
  justify-content: center;
  align-items: stretch;
}

.form-note.option-group {
  flex-wrap: nowrap;
  gap: 12px;
}

.floating-input,
.floating-input2,
.floating-input-phone {
  flex: 1 1 auto;
  min-width: 0;
}

.floating-input input {
  border: 1px solid #beb8b8;
  border-radius: 5px;
  padding: 24px 10px 6px;
  font-size: 1.2rem;
  width: 23rem;
  background-color: white;
  font-family: sans-serif;
}

.floating-input {
  position: relative;
}

.floating-input label {
  position: absolute;
  left: 10px;
  top: 1.1rem;
  color: #999;
  font-size: 1rem;
  pointer-events: none;
  transition: 0.2s ease all;
}

.floating-input input:focus+label,
.floating-input input:not(:placeholder-shown)+label {
  top: 5px;
  font-size: 12px;
  color: #555;
}

.floating-input input:focus {
  outline: none;
  border-color: #ff6b00;
}

.floating-input2 input {
  border: 1px solid #beb8b8;
  border-radius: 5px;
  padding: 24px 10px 6px;
  font-size: 1.2rem;
  /* width: 23rem; */
  background-color: white;
  font-family: sans-serif;
}

.floating-input2 {
  position: relative;
}

.floating-input2 label {
  position: absolute;
  left: 10px;
  top: 1.1rem;
  color: #999;
  font-size: 1rem;
  pointer-events: none;
  transition: 0.2s ease all;
}

.floating-input2 input:focus+label,
.floating-input2 input:not(:placeholder-shown)+label {
  top: 5px;
  font-size: 12px;
  color: #555;
}

.floating-input2 input:focus {
  outline: none;
  border-color: #ff6b00;
}


.security-text {
  display: flex;
  text-align: center;
  font-size: 0.9rem;
  gap: 5px;
  place-self: center;
  font-weight: 500;
  margin-top: 20px;
  justify-content: center;
}

.floating-input input.error {
  color: red;
  border: 2px solid red;
}

.floating-input-phone input {
  border: 1px solid #beb8b8;
  border-radius: 5px;
  padding: 24px 10px 6px;
  font-size: 12px;
  width: 44.3rem;
  background-color: white;
  font-family: sans-serif;
}

.floating-input-phone {
  position: relative;
}

.floating-input-phone label {
  position: absolute;
  left: 3.5rem;
  top: 5px;
  color: #999;
  font-size: 12px;
  pointer-events: none;
  transition: 0.2s ease all;
}

.floating-input-phone input:focus+label,
.floating-input-phone input:not(:placeholder-shown)+label {
  top: 5px;
  font-size: 12px;
  color: #555;
}

.floating-input-phone input:focus {
  outline: none;
  border-color: #ff6b00;
}

.form-note>.floating-input,
.form-note>.floating-input2,
.form-note>.floating-input-phone,
.form-note-down>.floating-input,
.form-note-down>.floating-input2,
.form-note-down>.floating-input-phone {
  flex: 1 1 0;
  /* each child takes equal width */
  min-width: 0;
  /* allows shrinking properly */
}

.form-note input[type="text"],
.form-note input[type="tel"],
.form-note-down input[type="text"],
.form-note-down input[type="tel"],
.floating-input input,
.floating-input2 input,
.floating-input-phone input {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}


.email-suggestions {
  list-style: none;
  margin: 0px;
  padding: 0;
  border: 1px solid #ccc;
  max-height: 150px;
  overflow-y: auto;
  background-color: white;
  position: absolute;
  z-index: 1000;
  overflow-y: scroll;
  width: 100%;
  border-radius: 5px;
  font-size: 1.1rem;
  border: 1px solid #beb8b8;
}

.email-suggestions li {
  padding: 10px;
  cursor: pointer;
}

.email-suggestions li:hover {
  background-color: #f0f0f0;
}

.hidden {
  display: none;
}

.rental-warning {
  margin: 10px auto 0;
  text-align: center;
  color: #F37110;
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.5;
  max-width: 620px;
}

.rent-unavailable {
  text-align: center;
  padding: 34px 10px 24px;
}

.rent-unavailable__image {
  max-width: 180px;
  width: 100%;
  display: block;
  margin: 0 auto 18px;
}

.rent-unavailable h2 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.3;
  color: #2c2c2c;
}

.rent-unavailable__subtitle {
  line-height: 1.5;
  font-weight: 500;
  margin: 0 0 26px;
  font-size: 18px;
  color: #363636;
}

.rent-unavailable .accent {
  color: #F37110;
  font-weight: 500;
  text-decoration: none;
}

.rent-unavailable__cta {
  display: inline-flex;
  justify-content: center;
  width: 100%;
}


.error-msg {
  color: red;
  display: flex;
  font-size: 1.1rem;
  gap: 5px;
}

input.error {
  border-color: red !important;
}


.phone-wrapper {
  position: relative;
}

.phone-prefix {
  position: absolute;
  top: 1.7rem;
  left: 10px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  pointer-events: none;
}

.phone-prefix img {
  border-radius: 2px;
  width: 2rem;
}

.phone-prefix .prefix {
  font-size: 1.2rem;
  padding-top: 1.1rem;
  padding-left: 0.9rem;
  color: #000;
}

#phoneNumber {
  padding-left: 5rem !important;
  font-size: 1.2rem;
}



.thank-you-message {
  text-align: center;
  /* padding: 3rem 1rem; */
  /* border-radius: 12px;
  background-color: #f6f6f6;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05); */
}

.thank-you-message h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #333;
}

.thank-you-message p {
  font-size: 16px;
  color: #666;
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 20px;
}

/* Loading state for primary buttons */

.form-button.is-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.85;
}

.form-button.is-loading::after {
  content: "";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnspin .8s linear infinite;
}

@keyframes btnspin {
  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

@media screen and (max-width: 768px) {

  h2 {
    font-size: 1.5em;
  }

  .step h2 {
    font-size: 22px;
  }

  .form-note {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .form-note-down {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .form-note-cards {
    flex-wrap: wrap;
    gap: 1.2rem;
    align-items: center;
  }

  .form-section {
    padding: 5%;
  }

  .form-section-inner {
    background-color: #fff;
    box-sizing: border-box;
    max-width: 800px;
    margin: auto;
    border-radius: 24px;
    padding: 40px 20px;
  }

  .progress-bar {
    width: 100%;
  }

  .floating-input input,
  .floating-input2 input {
    width: 97%;
    padding: 24px 10px 6px;
  }

  .email-suggestions {
    width: 100%;
  }

  .floating-input-phone input {
    width: 72%;
  }

  .security-text {
    display: block;
  }

  .phone-prefix img {
    width: 100%;
  }

  .phone-prefix .prefix {
    padding-top: 18px;
    padding-left: 20px;
  }

  .phone-prefix {
    top: 27px;
    font-family: 'Mona Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI';
    left: 8px;
  }

  #phoneNumber {
    padding-left: 77px !important;
  }

  .checks-grid {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 4%;
  }

  .form-note.option-group {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .option-card {
    background-color: #fff;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 5% 2%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 47%;
    min-width: 0;
    flex: 0 0 47%;
  }

  #step-job-types .form-note.option-group {
    flex-direction: column;
  }

  #step-job-types .option-card {
    background-color: #fff;
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 5% 2%;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    min-width: 0;
    flex: 0 0 41%;
  }
  .rent-unavailable {
    text-align: center;
    padding: 25px 0 0 0;
  }
}

/*
  DQ Exit style
*/
.adt-card {
  width: 100%;
  border: 1px solid #0061AA;
  border-radius: 12px;
  padding: 16px;
  color: #111;
  box-sizing: border-box; /* щоб padding не ламав ширину */
}

.adt-header {
  display: flex;
  gap: 18px;
  align-items: center;
}

.adt-logo {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
}

.adt-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

.adt-titles {
  display: flex;
  flex-direction: column;
  font-size: 20px;
  font-weight: 700;
}

.adt-title-main {
  text-align: left;
  line-height: 1.05;
  margin-bottom: 6px;
}

.adt-title-sub {
  text-align: left;
  color: #2162A6;
  line-height: 1.05;
}

.adt-list {
  margin-top: 22px;
  font-size: 16px;
  line-height: 1.35;
  text-align: left;
}

.adt-item {
  position: relative;
  padding-left: 17px; /* місце під bullet */
  margin: 0;
  line-height: 1.5;
}

.adt-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.56em;
  width: 5px;
  height: 5px;
  background: #111; /* колір bullet */
  border-radius: 50%; /* круглий маркер */
}

.adt-button {
  display: block;
  text-decoration: none;
  margin-top: 20px;
  background: #0061AA;
  color: #ffffff;
  text-align: center;
  padding: 20px 18px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.6px;
  cursor: pointer;
  user-select: none;
  text-transform: uppercase;
}

.adt-button-home {
  text-transform: uppercase;
  background: #F2F3F4;
  color: #1A1A1A;
}

