/* Debt type multi-select styles */
#q-debt-type .checkbox-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  margin: 16px 0 8px;
  width: 100%;
}

#q-debt-type .checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 10px;
  border: 1px solid #e6e9ec;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(16,24,40,0.02);
  cursor: pointer;
  width: 100%;
  justify-content: flex-start;
  text-align: left;
}

#q-debt-type .checkbox-item input[type="checkbox"] {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid #d0d5dd;
}

#q-debt-type .checkbox-item span {
  font-size: 1rem; /* match other answer buttons */
  font-weight: 700; /* match other answer buttons */
  font-family: inherit; /* ensure Inter is used consistently */
  color: #1f2937;
}

@media (max-width: 576px) {
  #q-debt-type .checkbox-item span {
    font-size: 1rem; /* keep consistent with other buttons on mobile */
  }
  #q-debt-type .checkbox-item {
    padding: 10px 10px;
  }
}

/* Make the Continue button full width in this step */
#q-debt-type .form_input-block .form_button {
  width: 100%;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
:root {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 18px;
  scroll-behavior: smooth;
}
*, ::after, ::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: space-between;
  font-family: "Inter", sans-serif !important;
}
.input-error {
  border: 2px solid #ff0000 !important;
  transition: border-color 0.3s ease;
  animation: shake 0.5s ease-in-out;
}
/* State validation styles - simplified for form submission only */
.state-error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}
/* Submit button processing state */
.order-form-btn.processing, .order-form-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #6c757d !important;
  border-color: #6c757d !important;
}
/* Animated 3-dot loading icon */
.loading-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 8px;
}
.loading-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #007bff;
  display: inline-block;
  animation: loading-dots 1.4s infinite ease-in-out both;
}
.loading-dots span:nth-child(1) {
  animation-delay: -0.32s;
}
.loading-dots span:nth-child(2) {
  animation-delay: -0.16s;
}
.loading-dots span:nth-child(3) {
  animation-delay: 0s;
}
@keyframes loading-dots {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1.2);
    opacity: 1;
  }
}
/* Анимация тряски для полей с ошибкой */
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}
/* Стили для полей автозаполнения */
.form_input:focus {
  border-color: #006ac9;
  box-shadow: 0 0 0 2px rgba(0, 106, 201, 0.2);
}
/* Подсказка для автозаполнения */
.address-autocomplete-hint {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
  display: block;
  font-style: italic;
}
.address-autocomplete-hint.warning {
  color: #ff6b6b;
  font-weight: 500;
}
h1, h2, h3, p {
  margin-bottom: 1rem;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h2 {
  font-size: 1.8rem;
}
.imp {
  font-weight: 700;
  color: #006ac9;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
footer {
  padding: 2rem 0;
  background-color: #263238;
}
footer p {
  font-size: 0.6rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 100;
}
footer a {
  color: #fff;
  padding: 0 0.5rem;
}
.nav-button {
  font-weight: 700;
  background: #006ac9;
  color: #fff;
  text-decoration: none;
  padding: 10px 15px 10px 15px;
  border-radius: 12px;
  animation: pulsing 1s infinite;
}
.footer-menu {
  display: flex;
  justify-content: center;
}
/* removed empty main ruleset to satisfy linter */
main img {
  display: block;
  max-width: 100%;
  margin-bottom: 1rem;
  height: auto;
}
.container {
  max-width: 1240px;
  margin: 0 auto;
}
.italic {
  font-style: italic;
}
.text-green {
  color: rgb(34 197 94 / var(--tw-text-opacity, 1));
  font-weight: 700;
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
  margin-bottom: 1rem;
}
.underline {
  text-decoration-line: underline;
}
.text-blue-600 {
  --tw-text-opacity: 1;
  color: rgb(37 99 235 / var(--tw-text-opacity));
}
.h-1 {
  height: 0.25rem;
}
.copyright {
  margin-bottom: 0;
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.button {
  display: block;
  width: 100%;
  padding: 15px 0;
  margin-bottom: 1.125rem;
  border-radius: 3px;
  text-align: center;
  background-color: #006ac9;
  border-color: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
}

@media (max-width: 767px) {
  .button {
    font-size: 0.8rem;
  }
}


.selector {
  display: block;
  width: 100%;
  padding: 15px 0;
  margin-bottom: 1.125rem;
  border-radius: 3px;
  text-align: center;
  background-color: #006ac9;
  border-color: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
}
.divider {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.logo img {
  width: 220px;
}
header {
  padding: 20px 0;
  background: #3182ed;
}
header .container, footer .container {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
}
header .row {
  align-content: center;
}
.nav_area {
  text-align: right;
  display: none;
}
.phone a.phone-link {
  text-decoration: none;
  color: #000;
  transition: all 0.5s;
}
.phone a.phone-link:hover {
  color: #3a5cb0;
}
.phone-link {
  display: block;
  padding-left: 35px;
  background-image: url(../images/phone.svg);
  background-position: left -4px center;
  background-size: 30px;
  background-repeat: no-repeat;
}
.phone {
  display: inline-flex;
  vertical-align: middle;
}
.hide_this {
  display: none;
}
body .form_button {
  background: #3182ed;
  padding: 12px 0;
  height: auto;
  border: none;
  font-weight: 400;
  border-radius: 5px;
  width: 100%;
  /* max-width : 350px; */
  margin: 4px auto 0;
  transition: all 1s;
  transform: scale(1);
}
input.form_button:hover {
  background: #456ccf;
  transform: scale(0.97);
}
@media only screen and (min-width: 600px) {
  .review {
    max-width: 400px;
  }
}
@media only screen and (max-width: 600px) {
  .wrap_cover ul {
    padding: 0;
  }
  h1 {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  h2 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 1.5 0;
  }
  p {
    /*font-size: 1rem;*/
    letter-spacing: normal;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 1rem;
  }
  .little-text p {
    font-size: 0.40rem;
  }
  .rating-card-holder {
    flex-direction: column;
  }
}
.text-center {
  text-align: center;
}
.font-bold {
  font-weight: 700;
}
.boxme {
  text-align: center;
  padding: 20px 34px;
  background-color: #fff;
  border-top: 5px solid #3a5cb0;
  font-size: 14px;
  line-height: 1.75;
  font-weight: 400;
  box-shadow: 0 0 7px 0 rgb(0 0 0/20%);
  transition: all 0.2s ease;
}
.boxme h3 {
  font-size: 1rem;
}
p.greatnews {
  font-size: 1rem;
}
a {
  color: #3a5cb0;
  text-decoration: underline;
}
a:hover {
  color: #3a5cb0;
}
#callBtn {
  background: #3a5cb0;
}
.boxme h5 {
  text-align: center;
  font-size: 1.5rem;
  line-height: 2.5rem;
  margin: 0.5em 0;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#loan-qualify-two, #loan-qualify, #dontqualify, #loading1, #loading2, #loading3, #disclaimer, #loan-q0, #q0, #q-income, #q2, #q3, #q4, #qn1, #qn2, #qn3, #qn3-2, #qn4, #qn5, #qn6, #qn7, #mk-qualify {
  display: none;
}
#mk-qualify, #qualify {
  display: none;
}
@keyframes pulsing {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);
  }
  70% {
    transform: scale(1.034);
    box-shadow: 0 0 0 10px transparent;
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 transparent;
  }
}
.fade-in {
  animation: fade-in;
  animation-duration: 1s;
}
.fade-out {
  animation: fade-out;
  animation-duration: 1s;
}
.custom-social-proof {
  position: fixed;
  bottom: 20px;
  left: 15px;
  z-index: 9999999999999 !important;
  display: none;
}
.custom-notification {
  width: 355px;
  display: inline-block;
  vertical-align: middle;
  border: 0;
  text-align: left;
  z-index: 99999;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 400;
  border-radius: 600px;
  box-shadow: 0 0 7px 2px rgb(81 162 215 / 40%);
  background-color: #fff;
  position: relative;
  cursor: pointer
}
.custom-notification-container {
  display: block !important;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 355px;
  width: 100%;
  padding: 5px 5px;
}
.custom-notification-image-wrapper {
  float: left;
  width: 85px;
}
.custom-notification-image-wrapper img {
  max-height: 80px;
  width: auto;
  display: block;
  margin: 3px auto 5px;
  overflow: hidden;
  width: 80px;
  max-width: 100%;
  border-radius: 50%;
  padding: 0;
}
.custom-notification-content-wrapper {
  float: left;
  width: calc(100% - 85px);
  margin: 0;
  height: 100%;
  color: gray;
  padding: 5px 10px 10px 10px;
}
.custom-notification-content {
  font-family: inherit !important;
  padding: 0 !important;
  font-size: 14px;
  line-height: 24px;
  width: 100%;
  float: left;
  padding-bottom: 5px;
  color: #333;
}
#social-proof-customer {
  font-size: 14px;
  line-height: 21px;
  font-weight: bold;
  color: #000;
  margin-bottom: 5px;
  display: block;
  width: 90%;
  margin-top: 10px;
}
.time-very {
  width: 100%;
  float: left;
}
.time {
  font-size: 14px;
  line-height: 18px;
  color: #666666;
}
.verified-pop {
  font-size: 13px;
  line-height: 21px;
  letter-spacing: 0.3px;
  color: #0cc34d;
}
.verified-pop img {
  display: inline-block;
  vertical-align: middle;
  margin: -3px 3px 0 3px;
}
@media only screen and (max-width:420px) {
  .custom-notification {
    width: 310px;
  }
  .custom-notification-image-wrapper {
    width: 70px;
  }
  .custom-notification-content-wrapper {
    width: calc(100% - 70px);
    padding: 3px 6px 6px 8px;
  }
  #social-proof-customer {
    font-size: 13px;
  }
  .custom-notification-content {
    font-size: 13px;
    line-height: 22px;
  }
  .time {
    font-size: 13px;
  }
  .verified-pop {
    font-size: 11px;
    line-height: 20px;
  }
  .verified-pop img {
    width: 10px;
  }
}
*, *::before, *::after {
  box-sizing: border-box;
}
.from {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  /* box-shadow  : 0 0 96px 0 #efefef; */
  padding: 15px 35px;
  border-radius: 3px;
}
input[type="text"], input[type="tel"], input[type="number"] {
  font-family: inherit;
  /* 1 */
  font-size: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
}
.box_quest {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px
}
.form_input-block {
  width: 100%;
}
.none_block_quest {
  display: none;
}
/* стили для label */
.form_label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 16px;
  font-weight: bold;
}
/* стили для input */
.form_input {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #bdbdbd;
  border-radius: 8px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.form_input::placeholder {
  color: #212529;
  opacity: 0.4;
}
.form_input:focus {
  color: #212529;
  background-color: #fff;
  border-color: #bdbdbd;
  outline: 0;
  box-shadow: 0 0 0 0.1rem rgba(158, 158, 158, 0.25);
}
.form_input:disabled, .form_input[readonly] {
  background-color: #f5f5f5;
  opacity: 1;
}
/* Стили для поля дохода */
#annual_income_input {
  font-family: monospace;
  font-weight: 600;
}
#annual_income_input:focus {
  border-color: #006ac9;
  box-shadow: 0 0 0 2px rgba(0, 106, 201, 0.2);
}
.form_button {
  display: block;
  width: 100%;
  height: calc(2.25rem + 2px);
  padding: 0.375rem 0.75rem;
  font-family: inherit;
  background-color: #006ac9;
  background-clip: padding-box;
  border: 1px solid #bdbdbd;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
}
.thank-you .container {
  width: 100%;
  max-width: 580px;
}
.thank-you h3 {
  font-size: 20px;
  font-weight: 400;
}
.thank-you a {
  background: #3a5cb0;
  color: #fff;
  padding: 10px 35px;
  display: inline-block;
  border-radius: 3px;
  text-decoration: none;
  margin-top: 10px;
  font-size: 16px;
  transform: scale(1);
  transition: all 1s;
  width: 100%;
  font-weight: 700;
}
.thank-you a:hover {
  transform: scale(0.95);
}
section.thank-you {
  margin-bottom: 30px;
  text-align: center;
  margin-top: 30px;
  background-color: #fff;
  border-top: 5px solid #3a5cb0;
  box-shadow: 0 0 7px 0 rgb(0 0 0/20%);
}
.thank-you ul li, .wrap_cover ul li {
  margin-bottom: 6px;
  background: url(../images/pointing-right.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 22px;
  padding-left: 32px;
}
.logos {
  display: inline-flex;
  width: 100%;
  align-items: center;
  margin-top: 30px;
}
.logos img {
  width: 50%;
}
img.trustpillot {
  height: 60px;
  width: auto;
}
.cover_call {
  box-shadow: 0 0 96px 0 #efefef;
  padding: 20px;
  background: #f2f1f1;
  border-radius: 3px;
  margin-top: 15px !important;
}
.thank-you ul, .wrap_cover ul li {
  /*padding: 30px 30px 0;*/
  list-style: none;
  text-align: left;
  margin-top: 5px;
}
.thank-you ul li, .wrap_cover ul li {
  margin-bottom: 6px;
}
.thank-you h2 {
  padding: 0 30px;
  font-size: 20px;
  line-height: 1.4;
  margin-top: 13px;
}
.congratulatory-message {
  font-size: 17px;
  line-height: 1.4;
  margin: 10px 30px 20px;
  color: #333;
}
.wrap_cover ul {
  margin-top: 25px;
}
.wrap_cover {
  margin-bottom: 30px;
}
a.form_button_border {
  border: 1px solid #3a5cb0;
  padding: 5px 20px 9px;
  text-decoration: none;
  border-radius: 26px;
  margin: 0px 0;
  display: inline-block;
  font-size: 18px;
}
/* Стили для блоков информации о долге */
.debt-info-blocks {
  display: flex;
  justify-content: space-between;
  background: #fff;
  border-radius: 12px;
  margin: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
  flex-direction: column;
  padding: 20px 15px;
}
.debt-block {
  flex: 1;
  position: relative;
  padding: 15px 0;
  text-align: center;
}
.debt-amount {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-bottom: 8px;
  line-height: 1.2;
}
.debt-label {
  font-size: 14px;
  color: #666;
  line-height: 1.3;
}
/* Стили для информации о специалисте */
.specialist-contact-info {
  /*background: #f8f9fa;*/
  border-radius: 8px;
  padding: 15px;
  margin: 1px 0;
  text-align: left;
}
.specialist-contact-info p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
.specialist-contact-info p:first-child {
  font-weight: 500;
}
.specialist-contact-info ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0 0;
}
.specialist-contact-info li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-size: 15px;
  line-height: 1.4;
  color: #444;
}
.specialist-contact-info li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #006ac9;
  font-weight: bold;
  font-size: 18px;
}
.debt-block:not(:last-child)::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: #e0e0e0;
}
/* Адаптивность для мобильных устройств */
@media only screen and (max-width: 768px) {
  .debt-amount {
    font-size: 24px;
  }
  .debt-label {
    font-size: 13px;
  }
}
@media only screen and (max-width:480px) {
  .form_input-block {
    width: 100%;
  }
  section.thank-you {
    text-align: center;
  }
  .thank-you h2 {
    padding: 0;
    font-size: 20px;
    line-height: 1.3;
  }
  .congratulatory-message {
    font-size: 17px;
    line-height: 1.3;
    margin: 5px 0 10px;
  }
  .offer_box {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .offer_box img {
    max-width: 120px;
    height: 35px;
    width: auto;
  }
  .thank-you .container {
    max-width: 100%;
    padding: 0 10px;
  }
  .thank-you .offers_list {
    margin: 5px -5px 0;
  }
  .logos {
    display: block;
    text-align: center;
  }
  .logos img {
    width: 100%;
    height: auto;
  }
  .thank-you .col-md-12 {
    padding: 0;
  }
  .thank-you ul {
    padding-left: 0;
    padding-right: 0;
  }
  .thank-you ul li, .wrap_cover ul li {
    font-size: 16px;
    background-position: top left;
  }
  .logo img {
    width: 160px;
  }
  .nav_area a.phone-link {
    font-size: 15px;
  }
}
.little-text {
  font-size: 40%;
  text-align: center;
  margin: 20px auto
}
.little-text label {
  display: block;
  text-align: center;
  margin: 20px auto
}
.popup_bg {
  display: none;
  background-color: #000000ca;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  align-items: center;
  justify-content: center;
}
.popup {
  width: 450px;
  display: flex;
  max-width: 100%;
  background-color: #e9edee;
  padding: 20px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  text-align: center;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.flexpop {
  display: flex !important;
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  margin: 10px 0;
  background: linear-gradient(to right, #609fce 0%, #f0f5f8 0%);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  border-radius: 5px;
  height: 14px;
  cursor: pointer;
}
input[type="range"]:focus {
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 40px;
  background: #5F5F5F;
  border: 1px solid #5F5F5F;
  cursor: pointer;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 40px;
  background: #5F5F5F;
  border: 1px solid #5F5F5F;
  cursor: pointer;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
input[type="range"]::-ms-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 40px;
  height: 40px;
  background: #5F5F5F;
  border: 1px solid #5F5F5F;
  cursor: pointer;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.estimated {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  align-items: center;
  color: #737373;
  font-weight: 700;
}
.estimated .numb {
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: #3182ed;
}
.progress-container {
  width: 100%;
  max-width: 100%;
  background-color: #f5faff;
  /* border       : 1px solid #bdbdbd; */
  height: 10px;
  margin: 0px auto;
  margin-bottom: 10px;
  border-radius: 15px;
}
.progress-bar {
  height: 100%;
  width: 0%;
  background-color: #3182ed;
  transition: width 0.3s ease;
  border-radius: 15px;
}
.step-text {
  display: flex;
  gap: 10px;
  justify-content: start;
  padding-bottom: 10px;
  width: 100%;
  margin: 0 auto;
  color: #333;
}
.container.wrap {
  padding: 50px 0;
}
a#callBtn:hover {
  color: #fff;
}
.radio_wrap label {
  color: #3a5cb0;
  width: 100%;
  margin: 5px 0px;
  padding: 12px 0;
  border-radius: 25px;
  text-align: center;
  border: 1px solid #3a5cb0;
  transition: all 0.5s;
  cursor: pointer;
}
.radio_wrap label:hover {
  background: #3a5cb0;
  color: #fff;
}
.radio_wrap input {
  visibility: hidden;
}
.radio_wrap .active {
  background: #3a5cb0;
  color: #fff;
}
.wrap_cover img {
  margin: 0 auto;
  max-height: 60px;
}
.block {
  background: #eaf3fc;
  padding: 20px;
  border-radius: 3px;
  margin: 20px auto;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}
.amount {
  font-size: 40px;
  font-weight: bold;
  color: #1d3557;
}
.interest {
  font-size: 16px;
  color: #333;
}
.interest span {
  font-weight: bold;
}
.savings {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  margin-top: 20px;
}
.savings h3 {
  color: #2d3e50;
}
.savings .saving-amount {
  font-size: 40px;
  font-weight: bold;
  color: #28a745;
}
.yourplan {
  background: #ffffff;
  border-radius: 3px;
  max-width: 600px;
  margin: auto;
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
}
.header {
  font-size: 18px;
  font-weight: bold;
  padding: 10px;
  background: #eaf3fc;
}
.info-block {
  display: flex;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid #ddd;
  font-size: 16px;
  color: #333;
}
.info-block:last-child {
  border-bottom: none;
}
.highlight {
  font-weight: bold;
  color: #d9534f;
}
.small-text {
  font-size: 12px;
  color: #555;
}
.savings-block {
  background: #28a745;
  color: white;
  font-size: 20px;
  font-weight: bold;
  padding: 15px;
}
.info-block-span {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.flex-span-info {
  flex-direction: column;
  gap: 10px;
}
.h2_top {
  font-weight: bold;
  text-align: center;
}
.h4_top {
  text-align: center;
}
.how-it-works {
  padding: 40px 20px;
  text-align: center;
  font-family: 'Helvetica Neue', sans-serif;
  background: #f5faff;
}
section.why_choose_sec {
  background: #f5faff;
  padding: 30px 0;
}

@media (max-width: 767px) {
  section.why_choose_sec {
    padding: 15px 0;
  }
  .eligible-grid {
  gap: 0px!important;
}

}
.eligible-debts {
  padding: 40px 20px;
  text-align: center;
  font-family: 'Helvetica Neue', sans-serif;
  background: #f5faff;
}
.eligible-debts .section-title {
  font-size: 30px;
  font-weight: bold;
  color: #000c24;
  margin-bottom: 20px;
}
.eligible-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  max-width: 1024px;
}


.eligible-item {
  max-width: 300px;
  box-shadow: 0px 0px 10px #eee;
  padding: 25px;
  border-radius: 10px;
  background: #fff;
}
.eligible-item .emoji {
  width: 70px;
  margin: 0 auto 20px;
  font-size: 50px;
  line-height: 1;
  display: block;
}
.eligible-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e2d3a;
  margin-bottom: 10px;
}
.eligible-item p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.5;
  margin-bottom: 0;
}
.section-title {
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  color: #000c24;
  margin-bottom: 20px;
}
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 0 auto;
  max-width: 1024px;
}
.step_l {
  max-width: 300px;
  box-shadow: 0px 0px 10px #eee;
  padding: 25px;
  border-radius: 10px;
  background: #fff;
}
.step_l img {
  width: 70px;
  margin: 0 auto 20px;
}
.step-title {
  font-size: 18px;
  font-weight: 600;
  color: #1e2d3a;
  margin-bottom: 10px;
}
.step-description {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.5;
  margin-bottom: 0;
}
.call-button {
  display: inline-block;
  padding: 10px 18px 10px 40px;
  /* отступ слева под иконку */
  border: 2px solid #3a5cb0;
  border-radius: 999px;
  background-color: white;
  color: #3a5cb0;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  background-image: url("../images/call_icon.svg");
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 18px 18px;
  transition: all 0.3s ease;
}
.call-button:hover {
  background-color: #f0f0f0;
  box-shadow: 0 0 0 3px rgba(13, 13, 61, 0.1);
}
/*** my css ***/
.hero_back {
  background: #16A249;
  background: linear-gradient(350deg, rgba(22, 162, 73, 1) 0%, rgba(49, 130, 237, 1) 100%);
  padding: 20px 20px 40px;
  ;
}

/*** New Mobile CSS ***/
@media (max-width: 767px) {
  .hero_back {
    padding: 0px!important;
  }
  .start_step_none{
    margin-left:10px!important;
    margin-right:10px!important;
  }
  #phone-only{
    margin-left:5%!important;
    margin-right:5%!important;
  }
  section.thank-you {
  margin-top: 0px!important;
  }
  .thank-you h2{
    margin-top:2px!important;
  }
}

.hero_back .flex_items_type {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.hero_back .text_block {
  flex: 0 0 55%;
  padding-right: 40px;
}
.hero_back .text_block h2 {
  font-size: 70px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
}
.hero_back .text_block ul {
  padding-left: 0px;
}
.hero_back .text_block ul li {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  list-style: none;
}
.hero_back .text_block ul li img {
  width: 25px;
  height: 25px;
}
.hero_back .form_block {
  flex: 0 0 45%;
  min-width: 550px;
  max-width: 550px;
  margin: 0 auto;
}
.thank-you .offers_list {
  margin: 10px -10px 0
}
.offers_list {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 10px;
}
.offer_box {
  flex: 0 0 calc(50% - 10px);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, .2);
  padding: 15px;
  border-radius: 10px;
  max-width: 47%;
  display: flex;
  flex-direction: column;
  /*height: 100%;*/
}
.offer_box h3 {
  font-size: 18px;
  font-weight: bold;
}

.offer_box img {
  max-width: 175px;
  margin: 0 auto 15px;
  height: 40px;
}
.offer_box ul {
  padding: 0 0 0 10px;
  text-align: left;
  flex-grow: 1;
}
.offer_box ul li {
  line-height: normal;
  /*margin-bottom: 10px;*/
  font-size: 13px;
}
.offer_box .cta_direct {
  margin-top: 0px;
}
.offer_box .cta_direct a {
  display: inline-block;
  background: #333;
  padding: 4px 15px;
  border-radius: 1000px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 5px;
}
.offer_box .cta_direct a:hover {
  background: #000;
}
.offer_box .box_disc {
  margin-top: 10px;
  font-size: 10px;
  line-height: normal;
}
.box_disc ul {
  margin-top: 10px;
	padding: 0;
}
.box_disc ul li {
  font-size: 9px;
  list-style: none;
  text-align: center;
	background: none;
	padding: 0;
}
/* Specific styling for above 10k error page */
/* Hide regular content immediately on error offers page to prevent splash effect */
.error-offers-page .specialist-contact-info,
.error-offers-page .debt-info-blocks,
.error-offers-page .cover_call {
  display: none !important;
}

.error-offers-page .offer_box {
  flex: 0 0 43% !important;
  max-width: 43% !important;
  width: 43% !important;
}

@media (max-width: 767px) {
  .error-offers-page .offer_box {
    flex: 0 0 90% !important;
    max-width: 90% !important;
    width: 90% !important;
  }
}

/* Mobile override */
@media (max-width: 767px) {
  .hero_back .form_block {
    flex: 0 0 90%; /* take up 90% */
    min-width: unset; /* remove fixed min-width */
    /*max-width: 90%;  cap it at 90% */
  }
  
  .offer_box h3 {
    font-size: 20px;
  }

  .offer_box {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }
  .offer_box img {
    max-width: 120px;
    height: 35px;
    width: auto;
  }
  .thank-you .container {
    max-width: 100%;
    padding: 0 10px;
  }
  .thank-you .offers_list {
    margin: 5px -5px 0
  }
}
.hero_back .form_block {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
}
.hero_back .h4_top {
  font-size: 18px;
  /* text-transform: uppercase; */
  margin-bottom: 30px;
  border-bottom: 4px solid #333;
  padding-bottom: 20px;
}
.hero_back h2.h2_top.start_step_none {
  text-transform: uppercase;
  font-size: 30px;
  margin-bottom: 8px;
}
.form_top {
  text-align: center;
}
.form_top p {
  color: #607a9f;
  font-size: 16px;
  margin-bottom: 25px;
}
.form_top h3 {
  color: #000c24;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.question form.from {
  padding-left: 0;
  padding-right: 0;
}
.form_block h2 {
  font-size: 24px;
  font-weight: bold;
  color: #000c24;
  margin-bottom: 0px;
}
/* Ensure all question headings share the same size across steps */
.question h2 {
  font-size: 24px;
}
.debt_relief {
  display: flex;
  flex-flow: row wrap;
}
.debt_left {
  flex: 0 0 50%;
}
.debt_right {
  flex: 0 0 50%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
.card_box_r {
  flex: 0 0 47%;
  text-align: center;
  background: #ffffff;
  padding: 20px;
  box-shadow: 0px 0px 10px 0px #eee;
  margin-bottom: 30px;
  border-radius: 10px;
}
.debt_left ul li {
  list-style: none;
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  color: #607a9f;
}
.debt_left ul {
  padding: 0;
}
.debt_left ul li img {
  width: 25px;
  height: 25px;
}
.card_box_r img {
  width: 35px;
  margin: 0 auto 15px;
}
.debt_left h2 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 600;
}
.card_box_r h4 {
  font-size: 24px;
  font-weight: 600;
}
.card_box_r p {
  margin: 0;
  font-size: 15px;
  color: #607a9f;
}
section.ratings_block {
  padding: 40px 0;
  text-align: center;
}
.rating_top {
  max-width: 700px;
  margin: 0 auto 20px;
}
.rating_top h2 {
  font-size: 48px;
}
.rating_top p {
  color: #607a9f;
  font-size: 20px;
}
.ready_box {
  background: #3182ED;
  background: linear-gradient(90deg, rgba(49, 130, 237, 1) 0%, rgba(22, 162, 73, 1) 100%);
  padding: 30px;
  text-align: center;
  border-radius: 30px;
  margin-bottom: 50px;
}
.ready_box ul li {
  list-style: none;
}
.ready_box h5 {
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}
.ready_box p {
  color: #fff;
  margin-bottom: 20px;
}
.ready_box ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.ready_box ul li {
  background: rgba(0, 0, 0, .1);
  border-radius: 5px;
  padding: 10px;
  color: #fff;
  backdrop-filter: blur(100px);
  font-size: 15px;
  padding: 10px 20px;
  box-shadow: 0px 0px 2px 0px #fff;
}
.ft_menu {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.ft_menu li {
  list-style: none;
}
.ft_menu li a {
  font-size: 14px;
  text-decoration: none;
}
.rating_boxes {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
.rating_card {
  flex: 0 0 31%;
  padding: 30px;
  text-align: left;
  box-shadow: 0px 0px 5px 0px #eee;
  position: relative;
}
.rating_card:before {
  content: "";
  background-image: url("../images/quotes.png");
  background-size: contain;
  width: 40px;
  height: 40px;
  display: inline-block;
  position: absolute;
  right: 20px;
  top: 20px;
  filter: invert(.9);
}
.rating_card img {
  width: 100px;
}
.rating_card ul {
  padding: 0;
  background: #e9fcf0;
  padding: 20px;
  display: flex;
  justify-content: space-between;
}
.rating_card li {
  list-style: none;
  text-align: center;
}
.rating_card li h2 {
  color: #16a249;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.rating_card p i {
  font-size: 15px;
  color: #607a9f;
}
.rating_card li p {
  color: #16a249;
  margin: 0;
  font-size: 15px;
}
.user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.user .profile {
  background: #3182ed;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1000px;
  color: #fff;
}
.user p span {
  display: block;
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  color: #607a9f;
}
.user p {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}
div#q2 form.from.order_form .form_input-block {
  margin-bottom: 15px;
}
.ct_sta {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

/* Ensure City and State inputs fill available width with no side gaps */
.ct_sta { justify-content: flex-start; }
.ct_sta .form_input-block { flex: 1 1 0; margin: 0; }
.ct_sta .form_input-block .form_input { width: 100%; }
@media only screen and (max-width: 1024px) {
  .hero_back .flex_items_type {
    display: block;
  }
  .rating_boxes {
    display: block;
    max-width: 450px;
    margin: 0 auto 30px;
  }
  .debt_relief {
    display: block;
    padding: 0 30px;
  }
  .rating_card {
    margin-bottom: 30px;
  }
  .hero_back .text_block {
    padding-right: 0;
    text-align: center;
    margin: 0 auto;
  }
  .hero_back .text_block h2 {
    font-size: 40px;
  }
  .hero_back .text_block ul {
    padding-left: 0px;
    text-align: center;
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  .hero_back h2.h2_top.start_step_none {
    font-size: 24px;
    margin-bottom: 5px;
    line-height: normal;
  }
  .hero_back .h4_top {
    font-size: 16px;
    text-transform: none;
  }
  /* Mobile: unify all question headings */
  .question h2 {
    font-size: 20px;
    line-height: normal;
  }
  .from {
    padding: 10px;
  }
  .debt_right {
    display: block;
  }
  .ready_box ul {
    display: block;
    padding: 0;
  }
  .ready_box ul li {
    margin-bottom: 10px;
  }
  
  /* Additional mobile spacing reductions for 767px */
  .eligible-item {
    padding: 15px;
    margin-bottom: 10px;
  }
  
  .step_l {
    padding: 15px;
    margin-bottom: 10px;
  }
  
  .card_box_r {
    padding: 15px;
    margin-bottom: 15px;
  }
  
  .rating_card {
    padding: 20px;
    margin-bottom: 15px;
  }
  
  .debt-info-blocks {
    margin: 10px 0;
    padding: 15px 10px;
  }
  
  .specialist-contact-info {
    padding: 10px;
  }
  
  .cover_call {
    padding: 15px;
    margin-top: 10px !important;
  }
}
.rating_result {
  border: 2px solid #3a5cb0;
  background-color: #fff;
  border-radius: 10px;
  width: 100%;
  margin-bottom: 30px;
  padding: 45px 10px 10px;
  position: relative;
}
.rating_result:before {
  content: "";
  background: #3a5cb0;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 8px 0;
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.rating_result .rating_data {
  text-align: left;
  margin-bottom: 30px;
  display: block;
}
.rating_data h3 {
  font-size: 22px;
  font-weight: 600;
}
.rating_data ul {
  padding: 0;
}
.rating_data ul li {
  display: flex;
  background: none;
  padding: 0;
  margin-bottom: 10px;
  align-items: center;
  line-height: normal;
}
.rating_data ul li img {
  margin: 0 10px 0 0;
}
.rating_stars ul {
  display: flex;
  padding: 0;
  margin: 0 0 5px;
}
.rating_stars ul li {
  background: none;
  padding: 0;
  margin: 0 5px 0 0;
}
.rating_stars ul li img {
  margin: 0;
  width: 20px;
}
.teb_out_ten {
  max-width: 120px;
  text-align: center;
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 5px;
}
.teb_out_ten p {
  margin: 0;
  font-size: 14px;
}
.rating_result.one_lt:before {
  content: "1";
}
.rating_result.two_lt:before {
  content: "2";
}
.rating_result.three_lt:before {
  content: "3";
}
.rating_result.four_lt:before {
  content: "4";
}
.rating_result.five_lt:before {
  content: "5";
}
.rating_result.six_lt:before {
  content: "6";
}
@media only screen and (max-width: 767px) {
  .hero_back {
    padding-top: 10px;
    padding-bottom: 40px;
  }
  .hero_back .text_block h2 {
    font-size: 30px;
    margin-bottom: 15px;
  }
  .hero_back .text_block {
    margin-bottom: 20px;
    padding-right: 0;
  }
  .hero_back h2.h2_top.start_step_none {
    font-size: 24px;
    margin-bottom: 10px;
    line-height: normal;
  }
  .hero_back .text_block ul li {
    font-size: 15px;
    margin-bottom: 0;
    text-align: left
  }
  .hero_back .text_block ul li img {
    width: 20px;
    height: 20px;
  }
  .hero_back .form_block {
    padding: 20px;
  }
  .hero_back .h4_top {
    font-size: 16px;
    text-transform: none;
  }
  /* Mobile: unify all question headings */
  .question h2 {
    font-size: 20px;
    line-height: normal;
  }
  .from {
    padding: 10px;
  }
  .how-it-works {
    padding: 10px 15px;
  }
  .section-title {
    margin-bottom: 10px;
  }
  .debt_left ul {
    margin-bottom: 10px;
  }
  .debt_left ul li {
    margin-bottom: 5px;
    font-size: 15px;
  }
  .debt_left ul li img {
    width: 18px;
    height: 18px;
    margin: 3px 0 0;
  }
  section.ratings_block {
    padding: 10px 0;
  }
  .rating_top h2 {
    font-size: 32px;
  }
  section.ratings_block {
    padding-bottom: 5px;
  }
}
/* Валидация имени */
.form_input.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
/* Стили для полей с ошибками валидации */
.form_input.input-error {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  animation: shake 0.5s ease-in-out;
}
/* Анимация тряски для полей с ошибками */
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-5px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(5px);
  }
}
/* Дополнительные стили для полей с ошибками */
.form_input.input-error:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
/* Стили для селекта с ошибками */
.form_input.input-error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}
.name-validation-hint {
  transition: color 0.3s ease;
}
/* Анимация для подсказки */
.name-validation-hint {
  animation: fadeIn 0.3s ease-in;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Common style (applies to all screens) */
#phone-only {
  margin-top: 20px;
  align-content: center !important; /* note: valid only for grid/flex containers */
}
/* Desktop only (min-width: 1024px, adjust as needed) */
@media (min-width: 1024px) {
  #phone-only {
    margin-top: 20px;
    margin-left: 32%;
    display: none;
  }
}
/* Mobile/tablet */
@media (max-width: 1023px) {
  #phone-only {
    margin-top: 20px;
    margin-left: 0; /* reset for smaller screens */
  }
}
.text_block#desktop-only ul.features {
  list-style: none;
  padding: 0;
  margin: 0 auto; /* center the ul itself */
  margin-top: 20px; /* center the ul itself */
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: center !important; /* center items inside ul */
  gap: 20px; /* spacing between items */
  width: fit-content; /* make ul shrink to fit content */
}
.text_block#desktop-only ul.features li {
  display: flex;
  align-items: center; /* vertically center the text and image */
  font-size: 16px;
}
.text_block#desktop-only ul.features img {
  margin: 0 8px 0 0; /* top & bottom margin 0, right 8px */
  vertical-align: middle; /* ensure middle alignment */
}
/* Hide on phone */
@media (max-width: 600px) {
  .text_block#desktop-only {
    display: none !important;
  }
}
/* Callback time button styles */
.callback-time-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}
.callback-btn {
  padding: 14px 20px !important;
  border: 2px solid #d1d5db !important;
  background-color: #ffffff !important;
  color: #374151 !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  text-align: center !important;
  min-height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  font-family: inherit !important;
  width: 100% !important;
  margin: 0 !important;
  outline: none !important;
}
.callback-btn:hover {
  border-color: #006ac9 !important;
  color: #006ac9 !important;
  background-color: #f0f7ff !important;
  box-shadow: 0 4px 8px rgba(0, 106, 201, 0.2) !important;
  transform: translateY(-1px) !important;
}
.callback-btn.active {
  border-color: #006ac9 !important;
  background-color: #006ac9 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 106, 201, 0.3) !important;
  transform: translateY(-1px) !important;
}
.callback-btn.active:hover {
  background-color: #0056b3 !important;
  border-color: #0056b3 !important;
  box-shadow: 0 6px 16px rgba(0, 106, 201, 0.4) !important;
}
/* Error state for buttons */
.callback-btn.input-error {
  border-color: #dc3545;
  color: #dc3545;
  background-color: #fff5f5;
}
.callback-btn.input-error:hover {
  border-color: #dc3545;
  color: #dc3545;
  background-color: #fff5f5;
}
/* Responsive design for mobile */
@media (max-width: 480px) {
  .callback-time-buttons {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .callback-btn {
    padding: 10px 14px;
    font-size: 0.9rem;
    min-height: 44px;
  }
}
/* Phone Validation Styles */
.phone-validation-message {
  font-size: 12px;
  margin-top: 5px;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.phone-validation-message.phone-validating {
  color: #0066cc;
  background-color: #e6f3ff;
  border: 1px solid #b3d9ff;
}
.phone-validation-message.phone-valid {
  color: #16a249;
  background-color: #e6f7e6;
  border: 1px solid #b3e6b3;
}
.phone-validation-message.phone-invalid {
  color: #dc3545;
  background-color: #ffe6e6;
  border: 1px solid #ffb3b3;
}
.phone-validation-message.phone-warning {
  color: #ff8c00;
  background-color: #fff2e6;
  border: 1px solid #ffd9b3;
}
/* Submit Button States */
.order-form-btn.submit-disabled {
  background-color: #bdc3c7 !important;
  border-color: #bdc3c7 !important;
  color: #7f8c8d !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}
.order-form-btn.submit-enabled {
  background-color: #3498db !important;
  border-color: #3498db !important;
  color: white !important;
  cursor: pointer !important;
  opacity: 1 !important;
}
.order-form-btn:disabled {
  background-color: #bdc3c7 !important;
  border-color: #bdc3c7 !important;
  color: #7f8c8d !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}
/* Phone Input Validation States */
.form_input.phone-validating {
  border-color: #0066cc;
  box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%230066cc' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 16V8a2 2 0 0 0-1-1.73l-7-4a2 2 0 0 0-2 0l-7 4A2 2 0 0 0 3 8v8a2 2 0 0 0 1 1.73l7 4a2 2 0 0 0 2 0l7-4A2 2 0 0 0 21 16z'/%3E%3Cpolyline points='3.27,6.96 12,12.01 20.73,6.96'/%3E%3Cline x1='12' y1='22.08' x2='12' y2='12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  animation: pulse-blue 1.5s ease-in-out infinite;
}
.form_input.phone-valid {
  border-color: #16a249;
  box-shadow: 0 0 0 0.2rem rgba(22, 162, 73, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2316a249' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20,6 9,17 4,12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
.form_input.phone-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23dc3545' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='15' y1='9' x2='9' y2='15'/%3E%3Cline x1='9' y1='9' x2='15' y2='15'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
.form_input.phone-warning {
  border-color: #ff8c00;
  box-shadow: 0 0 0 0.2rem rgba(255, 140, 0, 0.25);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ff8c00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m21.73 18-8-14a2 2 0 0 0-3.48 0l-8 14A2 2 0 0 0 4 21h16a2 2 0 0 0 1.73-3Z'/%3E%3Cline x1='12' y1='9' x2='12' y2='13'/%3E%3Cline x1='12' y1='17' x2='12.01' y2='17'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
}
/* Animation for validating state */
@keyframes pulse-blue {
  0% {
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
  }
  50% {
    box-shadow: 0 0 0 0.4rem rgba(0, 102, 204, 0.15);
  }
  100% {
    box-shadow: 0 0 0 0.2rem rgba(0, 102, 204, 0.25);
  }
}
/* Ensure validation messages don't interfere with form layout */
.form_input-block .phone-validation-message {
  display: block;
  margin-top: 4px;
  line-height: 1.3;
}
/* Mobile responsive adjustments for phone validation */
@media (max-width: 480px) {
  .phone-validation-message {
    font-size: 11px;
    padding: 3px 6px;
  }
  .form_input.phone-validating, .form_input.phone-valid, .form_input.phone-invalid, .form_input.phone-warning {
    background-position: right 8px center;
    background-size: 14px;
    padding-right: 32px;
  }
  
  /* Additional mobile spacing reductions */
  .eligible-item {
    padding: 15px;
    margin-bottom: 10px;
  }
  
  .step_l {
    padding: 15px;
    margin-bottom: 10px;
  }
  
  .card_box_r {
    padding: 15px;
    margin-bottom: 15px;
  }
  
  .rating_card {
    padding: 20px;
    margin-bottom: 15px;
  }
  
  .debt-info-blocks {
    margin: 10px 0;
    padding: 15px 10px;
  }
  
  .specialist-contact-info {
    padding: 10px;
  }
  
  .cover_call {
    padding: 15px;
    margin-top: 10px !important;
  }
}

/* FAQ Section Styles */
.faq-section {
  padding: 40px 20px;
  background: #f5faff;
  font-family: 'Helvetica Neue', sans-serif;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #f8f9fa;
}

.faq-question h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1e2d3a;
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  font-size: 16px;
  color: #006ac9;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #f8f9fa;
}

.faq-item.active .faq-answer {
  padding: 0 30px 25px 30px;
  max-height: 1000px;
}

.faq-answer p {
  font-size: 16px;
  color: #4a4a4a;
  line-height: 1.6;
  margin: 0;
  padding-top: 5px;
  margin-bottom:10px;
}

/* Mobile responsive FAQ styles */
@media (max-width: 768px) {
  .faq-section {
    padding: 10px 15px;
  }
  
  .faq-question {
    padding: 15px;
  }
  
  .faq-question h3 {
    font-size: 16px;
    padding-right: 15px;
  }
  
  .faq-icon {
    font-size: 14px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 15px 15px 15px;
    max-height: 1000px;
  }
  
  .faq-answer p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 10px;
  }
  
  .faq-question h3 {
    font-size: 15px;
    padding-right: 10px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 10px 10px 10px;
    max-height: 1000px;
  }
  
  .faq-answer p {
    font-size: 14px;
  }
}