@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

.wd-page,
.wd-page * {
  font-family: "Inter", Arial, sans-serif !important;
}

  * {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    background: #f7f9fc;
    color: #0e1b3d;
  }

  .wd-page {
    width: 100%;
    overflow-x: hidden;
    background: #f7f9fc;
  }

  .wd-header {
    width: 100%;
    padding: 22px 8%;
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid #eef1f6;
  }

  .wd-logo {
    font-weight: 800;
    font-size: 22px;
    color: #2f9fe8;
    letter-spacing: -0.5px;
    white-space: nowrap;
  }

  .wd-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    font-size: 14px;
    color: #60708a;
  }

  .wd-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
  }

  .wd-trust-item img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .wd-button {
    display: inline-block;
    padding: 14px 24px;
    border: 0;
    border-radius: 8px;
    background: #2f9fe8;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    line-height: 1.15;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
  }

  .wd-button:hover {
    background: #238dd1;
    transform: translateY(-1px);
  }

  .wd-hero {
    padding: 90px 8%;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 70px;
    align-items: center;
    background: #f7f9fc;
  }

  .wd-badge {
    display: inline-block;
    margin-bottom: 22px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #e8f5ff;
    color: #2f9fe8;
    font-size: 14px;
    font-weight: 700;
  }

  .wd-hero h1 {
    margin: 0 0 24px;
    color: #0e1b3d;
    font-size: clamp(42px, 5vw, 68px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -2px;
  }

  .wd-hero-copy > p {
    max-width: 650px;
    margin: 0 0 34px;
    color: #60708a;
    font-size: 18px;
    line-height: 1.7;
  }

  .wd-benefits {
    display: grid;
    gap: 22px;
  }

  .wd-benefit {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .wd-icon {
    min-width: 48px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(14, 27, 61, 0.08);
  }

  .wd-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
  }

  .wd-benefit h3 {
    margin: 0 0 6px;
    color: #0e1b3d;
    font-size: 18px;
  }

  .wd-benefit p {
    margin: 0;
    color: #60708a;
    font-size: 15px;
    line-height: 1.5;
  }

  .wd-card {
    width: 100%;
    padding: 38px;
    border: 1px solid #e8edf5;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(14, 27, 61, 0.12);
  }

  .wd-card h2 {
    margin: 0 0 10px;
    color: #0e1b3d;
    font-size: 30px;
    line-height: 1.15;
  }

  .wd-card > p {
    margin: 0 0 26px;
    color: #60708a;
    font-size: 15px;
    line-height: 1.55;
  }

  .wd-form {
    margin-top: 25px;
    text-align: left;
  }

  .wd-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
  }

  .wd-input-group {
    min-width: 0;
  }

  .wd-input-group.wd-full {
    margin-bottom: 15px;
  }

  .wd-input-group label {
    display: block;
    margin-bottom: 5px;
    color: #4a5568;
    font-size: 12px;
    font-weight: 700;
  }

  .wd-form-control {
    width: 100%;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #ffffff;
    color: #0e1b3d;
    font: inherit;
    font-size: 14px;
    outline: none;
  }

  .wd-form-control:focus {
    border-color: #2f9fe8;
    box-shadow: 0 0 0 3px rgba(47, 159, 232, 0.14);
  }

  .wd-submit {
    width: 100%;
    margin-top: 10px;
    padding: 16px;
    border: 0;
    border-radius: 8px;
    background: #2f9fe8;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    cursor: pointer;
  }

  .wd-form-message {
    display: none;
    margin-top: 14px;
    padding: 12px;
    border-radius: 8px;
    background: #e8f5ff;
    color: #176c9f;
    font-size: 13px;
    text-align: center;
  }

  .wd-secure {
    margin-top: 20px;
    color: #7a8799;
    font-size: 13px;
    text-align: center;
  }

  .wd-stats {
    padding: 55px 8%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    border-top: 1px solid #eef1f6;
    border-bottom: 1px solid #eef1f6;
    background: #ffffff;
  }

  .wd-stat {
    padding: 30px;
    border-radius: 18px;
    background: #f7f9fc;
    text-align: center;
  }

  .wd-stat h3 {
    margin: 0 0 8px;
    color: #2f9fe8;
    font-size: 42px;
    font-weight: 900;
  }

  .wd-stat p {
    margin: 0;
    color: #60708a;
    font-size: 16px;
    font-weight: 700;
  }

  .wd-testimonials {
    padding: 80px 8%;
    background: #f8fafc;
    text-align: center;
  }

  .wd-testimonials h2 {
    margin: 0 0 10px;
    color: #1a202c;
    font-size: 36px;
    font-weight: 800;
  }

  .wd-testimonials .wd-subtitle {
    margin: 0 0 50px;
    color: #718096;
    font-size: 18px;
  }

  .wd-testimonial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
  }

  .wd-testimonial-card {
    padding: 40px;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    text-align: left;
    transition: transform 0.3s ease;
  }

  .wd-testimonial-card:hover {
    transform: translateY(-5px);
  }

  .wd-stars {
    margin-bottom: 20px;
    color: #f6ad55;
    font-size: 20px;
    letter-spacing: 2px;
  }

  .wd-quote {
    margin: 0 0 25px;
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
  }

  .wd-author-info b {
    display: block;
    color: #2d3748;
    font-size: 16px;
  }

  .wd-author-info span {
    color: #a0aec0;
    font-size: 14px;
  }

  .wd-footer {
    padding: 60px 8% 40px;
    border-top: 1px solid #eef1f6;
    background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
    text-align: center;
  }

  .wd-footer-links {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .wd-footer-links a {
    color: #60708a;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
  }

  .wd-footer-links a:hover {
    color: #2f9fe8;
  }

  .wd-copyright {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
  }

  .wd-copyright p {
    margin: 0;
    color: #a0aec0;
    font-size: 14px;
  }

  @media (max-width: 1050px) {
    .wd-hero {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .wd-card {
      max-width: 720px;
      margin: 0 auto;
    }
  }

  @media (max-width: 760px) {
    .wd-header {
      padding: 18px 6%;
      flex-direction: column;
    }

    .wd-header-right {
      justify-content: center;
      flex-wrap: wrap;
      gap: 14px;
    }

    .wd-hero {
      padding: 55px 6%;
    }

    .wd-hero h1 {
      font-size: 42px;
      letter-spacing: -1.3px;
    }

    .wd-form-row,
    .wd-stats,
    .wd-testimonial-grid {
      grid-template-columns: 1fr;
    }

    .wd-card {
      padding: 26px 20px;
    }

    .wd-stats,
    .wd-testimonials {
      padding-left: 6%;
      padding-right: 6%;
    }
  }

/* Final typography and form styling */
.wd-logo img {
  width: 210px;
  max-width: 100%;
  height: auto;
  display: block;
}

.wd-hero {
  padding: 115px 8% 105px;
  gap: 85px;
}

.wd-hero h1 {
  font-size: clamp(58px, 5vw, 78px);
  line-height: 1.04;
  letter-spacing: -3px;
  font-weight: 900;
  color: #0e1b3d;
}

.wd-hero-copy > p {
  font-size: 19px;
  line-height: 1.75;
}

.wd-card {
  padding: 50px;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(14, 27, 61, 0.12);
}

.wd-card h2 {
  font-size: 39px;
  line-height: 1.12;
  letter-spacing: -1px;
  font-weight: 800;
  color: #0e1b3d;
}

.wd-card > p {
  font-size: 17px;
  line-height: 1.65;
}

.wd-card label {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #4a5568 !important;
}

.wd-card input,
.wd-card select,
.wd-card textarea {
  font-family: "Inter", Arial, sans-serif !important;
  font-size: 16px !important;
  color: #4a5568 !important;
  background: #ffffff !important;
  border: 1px solid #dce4ef !important;
  border-radius: 10px !important;
  box-shadow: none !important;
  outline: none !important;
  min-height: 52px;
}

.wd-card input:focus,
.wd-card select:focus,
.wd-card textarea:focus {
  border-color: #2f9fe8 !important;
  box-shadow: 0 0 0 3px rgba(47, 159, 232, 0.12) !important;
}

.wd-card button {
  min-height: 58px;
  font-size: 17px !important;
  font-weight: 800 !important;
}

.wd-benefit h3 {
  font-size: 20px;
  font-weight: 800;
}

.wd-benefit p {
  font-size: 16px;
  line-height: 1.55;
}

/* Full-width Elementor fix */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

.wd-page {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
}

.elementor-widget-html,
.elementor-widget-html > .elementor-widget-container {
  width: 100% !important;
  max-width: none !important;
}

.wd-hero {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
}

.wd-header {
  width: 100%;
}

.wd-card {
  width: 100%;
  min-width: 500px;
}

@media (max-width: 900px) {
  .wd-hero {
    padding: 60px 7%;
    gap: 45px;
  }

  .wd-hero h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .wd-card {
    min-width: 0;
    padding: 32px;
  }
}

.wd-logo img{height:32px!important;width:auto!important;max-width:260px!important;display:block!important;}
.wd-form-message--success { background:#e9f9ef!important; color:#166534!important; }
.wd-form-message--error { background:#fff1f2!important; color:#9f1239!important; }
.wdcl-canvas { margin:0; background:#f7f9fc; }

/* Version 1.1: decorative hero and two-step application form */
.wd-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 11% 17%, rgba(47, 159, 232, 0.12) 0 80px, transparent 82px),
    radial-gradient(circle at 44% 2%, rgba(47, 159, 232, 0.07) 0 150px, transparent 152px),
    linear-gradient(135deg, rgba(47, 159, 232, 0.035) 25%, transparent 25%) 0 0 / 52px 52px,
    #f7f9fc;
}

.wd-hero::before,
.wd-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
  border: 2px solid rgba(47, 159, 232, 0.10);
  border-radius: 999px;
  transform: rotate(-12deg);
}

.wd-hero::before {
  width: 560px;
  height: 180px;
  left: -210px;
  top: 105px;
}

.wd-hero::after {
  width: 720px;
  height: 230px;
  right: -410px;
  bottom: 70px;
}

.wd-hero-copy,
.wd-card {
  position: relative;
  z-index: 1;
}

.wd-form-progress {
  margin: 4px 0 22px;
}

.wd-form-progress__top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
  color: #60708a;
  font-size: 12px;
  font-weight: 700;
}

.wd-form-progress__track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eef6;
}

.wd-form-progress__track span {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #2f9fe8, #56b7f3);
  transition: width 0.28s ease;
}

.wd-form-step[hidden] {
  display: none !important;
}

.wd-next {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.wd-form-actions {
  display: grid;
  grid-template-columns: minmax(120px, 0.35fr) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  margin-top: 10px;
}

.wd-form-actions .wd-submit {
  margin-top: 0;
}

.wd-back {
  min-height: 58px;
  padding: 14px 18px;
  border: 1px solid #dce4ef;
  border-radius: 8px;
  background: #ffffff;
  color: #4a5568;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

.wd-back:hover {
  border-color: #2f9fe8;
  color: #238dd1;
}

@media (max-width: 760px) {
  .wd-hero {
    padding-top: 44px;
    background:
      radial-gradient(circle at 8% 10%, rgba(47, 159, 232, 0.13) 0 62px, transparent 64px),
      radial-gradient(circle at 100% 25%, rgba(47, 159, 232, 0.08) 0 120px, transparent 122px),
      linear-gradient(135deg, rgba(47, 159, 232, 0.04) 25%, transparent 25%) 0 0 / 42px 42px,
      #f7f9fc;
  }

  .wd-hero::before {
    width: 390px;
    height: 120px;
    left: -210px;
    top: 75px;
  }

  .wd-hero::after {
    width: 430px;
    height: 140px;
    right: -290px;
    bottom: 280px;
  }

  .wd-form-actions {
    grid-template-columns: 1fr;
  }

  .wd-form-actions .wd-submit,
  .wd-back {
    width: 100%;
  }
}

/* Version 1.2: photo hero background */
.wd-hero {
  background-color: #f7f9fc;
  background-image:
    linear-gradient(90deg,
      rgba(247, 249, 252, 0.98) 0%,
      rgba(247, 249, 252, 0.94) 39%,
      rgba(247, 249, 252, 0.76) 63%,
      rgba(247, 249, 252, 0.86) 100%),
    url("hero-car.webp");
  background-repeat: no-repeat, no-repeat;
  background-size: cover, cover;
  background-position: center, center 66%;
}

.wd-hero::before,
.wd-hero::after {
  display: none;
}

.wd-hero-copy {
  padding: 28px 30px 30px;
  margin-left: -30px;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(247, 249, 252, 0.78), rgba(247, 249, 252, 0.28));
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
}

.wd-card {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (max-width: 1050px) {
  .wd-hero {
    background-image:
      linear-gradient(180deg,
        rgba(247, 249, 252, 0.90) 0%,
        rgba(247, 249, 252, 0.94) 36%,
        rgba(247, 249, 252, 0.98) 64%,
        #f7f9fc 100%),
      url("hero-car.webp");
    background-size: cover, auto 820px;
    background-position: center, 72% top;
  }

  .wd-hero-copy {
    margin-left: 0;
    padding: 24px;
    background: rgba(247, 249, 252, 0.72);
  }
}

@media (max-width: 760px) {
  .wd-hero {
    background-image:
      linear-gradient(180deg,
        rgba(247, 249, 252, 0.84) 0%,
        rgba(247, 249, 252, 0.94) 31%,
        rgba(247, 249, 252, 0.99) 53%,
        #f7f9fc 100%),
      url("hero-car.webp");
    background-size: cover, auto 590px;
    background-position: center, 68% top;
  }

  .wd-hero-copy {
    padding: 18px 14px 22px;
    border-radius: 20px;
  }
}

/* Version 1.3: make the car photo prominent on phones */
.wd-mobile-hero-photo {
  display: none;
}

@media (max-width: 760px) {
  .wd-hero {
    padding: 0 6vw 56px;
    gap: 28px;
    background: #f7f9fc;
  }

  .wd-mobile-hero-photo {
    display: block;
    position: relative;
    width: calc(100% + 12vw);
    min-height: 440px;
    margin: 0 -6vw 0;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
    background-image:
      linear-gradient(180deg,
        rgba(14, 27, 61, 0.02) 0%,
        rgba(14, 27, 61, 0.00) 62%,
        rgba(247, 249, 252, 0.78) 88%,
        #f7f9fc 100%),
      url("hero-car.webp");
    background-repeat: no-repeat, no-repeat;
    background-size: cover, cover;
    background-position: center, 58% 72%;
    box-shadow: 0 18px 42px rgba(14, 27, 61, 0.12);
  }

  .wd-hero-copy {
    z-index: 2;
    margin: -66px 0 0;
    padding: 24px 20px 26px;
    border: 1px solid rgba(226, 232, 240, 0.92);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 44px rgba(14, 27, 61, 0.10);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .wd-hero h1 {
    font-size: clamp(39px, 11vw, 48px);
    line-height: 1.02;
  }

  .wd-card {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .wd-mobile-hero-photo {
    min-height: 400px;
    background-position: 60% 72%;
  }

  .wd-hero-copy {
    margin-top: -54px;
    padding: 22px 18px 24px;
  }
}
