
    :root {
      --brand-blue: #2f55a2;
      --brand-dark-blue: #163c78;
      --brand-green: #35a63b;
      --brand-green-dark: #2e9233;
      --step-blue: #236ec4;
      --soft-blue: #edf4ff;
      --line: #dfe5ec;
      --text: #24324a;
      --muted: #66717c;
    }

    .step-card {
  position: relative;
}
.quote-ratings {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
}

.rating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 0 !important;
    min-width: 120px;
}
.back-arrow {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 38px;
  height: 38px;
  border: 1px solid #dfe5ec;
  border-radius: 50%;
  background: #fff;
  color: var(--brand-blue);
  font-size: 32px;
  line-height: 1;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, .08);
  z-index: 5;
  padding-bottom: 4px;
}

.back-arrow:hover {
  background: var(--brand-blue);
  color: #fff;
  border-color: var(--brand-blue);
}

@media (max-width: 575.98px) {
  .back-arrow {
    top: 14px;
    left: 14px;
    width: 34px;
    height: 34px;
    font-size: 28px;
  }
}
.site-header {
  background: #fff;
  border-bottom: 1px solid #e6ebf2;
  box-shadow: 0 2px 10px rgba(19, 38, 76, .05);
  position: relative;
  z-index: 20;
}

.site-header .navbar {
  min-height: 78px;
  padding: 0;
}

.site-brand-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  display: block;
}

.navbar-brand span {
  color: var(--brand-blue);
  font-size: 16px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -.4px;
  white-space: nowrap;
}

.navbar-nav .nav-link {
  color: #16233a !important;
  font-size: 15px;
  font-weight: 800;
  padding: 30px 0;
}

.navbar-nav .nav-link:hover {
  color: var(--brand-blue) !important;
}

.secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #757575;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.secure-badge svg {
  width: 24px;
  height: 24px;
  fill: #757575;
  flex: 0 0 auto;
}

.call-cta {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 7px;
  background: linear-gradient(180deg, #78a94c 0%, #5d8f34 100%);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .15), 0 3px 8px rgba(35, 78, 15, .14);
  white-space: nowrap;
}

.call-cta:hover {
  background: linear-gradient(180deg, #6f9f43 0%, #54852e 100%);
  color: #fff;
}

.call-cta svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
  flex: 0 0 auto;
}

@media (max-width: 1199.98px) {
  .navbar-brand span {
    font-size: 21px;
  }

  .secure-badge {
    font-size: 16px;
  }

  .call-cta {
    font-size: 18px;
    padding: 0 18px;
  }
}

@media (max-width: 991.98px) {
  .site-header .navbar {
    padding: 12px 0;
  }

  .navbar-collapse {
    padding-top: 16px;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 10px 0;
  }

  .secure-badge {
    justify-content: center;
  }

  .call-cta {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand span {
    font-size: 19px;
  }

  .site-brand-img {
    width: 32px;
    height: 32px;
  }

  .call-cta {
    font-size: 16px;
  }
}
    * {
      box-sizing: border-box;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      color: var(--text);
      background: #fff;
      margin: 0;
    }

    .text-brand {
      color: var(--brand-blue);
    }

    .text-brand-dark {
      color: var(--brand-dark-blue);
    }

    .brand-icon {
      width:100px;
      height: 100px;
      border-radius: 10px;
      object-fit: contain;
    }

    .logo-fallback {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: var(--brand-blue);
      color: #fff;
      display: none;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 900;
    }

   .hero {
  min-height: calc(100vh - 100px);
  background-image: url("../assets/bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.step-mode .hero {
  background-image:linear-gradient(180deg,#f7f9ff,#e6efff);
}
    .hero-title {
      font-size: clamp(38px, 4vw, 56px);
      line-height: 1.05;
      letter-spacing: -1px;
    }

    .quote-box,
    .step-card {
      width: 100%;
      max-width: 430px;
      background: #fff;
      border: 1px solid #dfe5ec;
      border-radius: 7px;
      box-shadow: 0 3px 12px rgba(0, 0, 0, .16);
      padding: 22px 22px 16px;
    }

    .quote-title {
      color: #263442;
      font-size: 16px;
      line-height: 1.25;
      font-weight: 700;
      margin: 0 0 16px;
    }

    .quote-input,
    .form-input {
      width: 100%;
      height: 46px;
      border: 1px solid #d9dde3;
      border-radius: 0;
      background: #fff;
      color: #333;
      font-size: 17px;
      padding: 0 16px;
      outline: none;
      margin-bottom: 12px;
    }

    .quote-input::placeholder,
    .form-input::placeholder {
      color: #9a9a9a;
    }

    .quote-input:focus,
    .form-input:focus {
      border-color: #b7c0ca;
    }

    .quote-submit,
    .primary-btn {
      width: 100%;
      height: 56px;
      border: 0;
      border-radius: 4px;
      background: linear-gradient(#5abd45, #36a428);
      color: #fff;
      font-size: 24px;
      line-height: 1;
      font-weight: 900;
      box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .18);
      margin-bottom: 15px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .quote-submit span {
      font-size: 22px;
      margin-left: 6px;
    }

    .quote-submit:hover,
    .primary-btn:hover {
      background: linear-gradient(#51b33d, #319523);
      color: #fff;
    }

    .quote-secure {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      color: #40495a;
      font-size: 12px;
      font-weight: 600;
      margin-bottom: 14px;
      text-align: center;
    }

    .secure-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: #8fc54a;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 900;
      flex: 0 0 auto;
    }

   

    .rating-item {
      min-height: 56px;
    padding: 8px 12px;
    color: #38455d;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 900;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-right: 0;
    }

    .rating-item:last-child {
      border-right: 0;
    }

    .rating-item small {
      font-size: 9px;
      font-weight: 800;
    }

    .shield {
      width: 27px;
      height: 27px;
      border-radius: 50%;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 17px;
      font-weight: 900;
      flex: 0 0 auto;
    }

    .green {
      background: #3ab54a;
    }

    .gold {
      background: #f0b324;
    }

    .google-rating {
      display: block;
      padding-top: 7px;
    }

    .g-blue {
      color: #4285f4;
    }

    .g-red {
      color: #db4437;
    }

    .g-yellow {
      color: #f4b400;
    }

    .g-green {
      color: #0f9d58;
    }

    .stars {
      color: #f4b400;
      font-size: 12px;
      letter-spacing: -1px;
    }

    .google-rating strong {
      display: block;
      color: #38455d;
      font-size: 13px;
      margin-top: 2px;
    }

    .benefit-item {
      min-height: 112px;
      padding: 22px 10px 16px;
      border-right: 1px solid #edf0f3;
    }

    .benefit-img {
      width: 42px;
      height: 42px;
      object-fit: contain;
      margin-bottom: 8px;
    }

    .benefit-icon {
      width: 42px;
      height: 42px;
      margin: 0 auto 8px;
      border-radius: 50%;
      background: var(--soft-blue);
      color: var(--brand-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
    }

    .benefit-item h3 {
      color: #24344c;
      font-size: 17px;
      font-weight: 900;
      margin: 0 0 6px;
    }

    .benefit-item p {
      color: #66717c;
      font-size: 12px;
      font-weight: 600;
      margin: 0;
    }

    footer {
      background: var(--soft-blue);
      border-top: 1px solid #d5e2f4;
    }

    .hidden {
      display: none !important;
    }

    /* .step-mode header .container {
      padding-top: 40px !important;
      padding-bottom: 40px !important;
    } */

    /* .step-mode .brand-icon {
      width: 26px;
      height: 26px;
    }

    .step-mode .brand-name {
      font-size: 16px !important;
    } */

    .step-mode .hero {
      min-height: calc(100vh - 86px - 58px);
      display: flex;
      align-items: center;
      justify-content: center;
      background-position: center top;
    }

    .step-mode .hero .container {
      width: 100%;
      padding-top: 26px !important;
      padding-bottom: 26px !important;
    }

    .step-mode .benefits {
      display: block;
    }

    .step-card {
      max-width: 540px;
      padding: 28px 28px 22px;
      margin: 0 auto;
      text-align: center;
    }

    .progress-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      color: #697589;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 18px;
      background: transparent;
      height: auto;
    }

    .progress-circle {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--brand-green);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 900;
      box-shadow: 0 1px 3px rgba(0, 0, 0, .2);
    }

    .step-title {
      color: var(--brand-blue);
      font-size: clamp(24px, 3vw, 32px);
      font-weight: 800;
      line-height: 1.2;
      margin: 0 0 12px;
    }

    .step-sub {
      color: var(--muted);
      font-size: 14px;
      font-weight: 600;
      line-height: 1.45;
      margin: 0 0 22px;
    }

    .choice-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin: 0 auto 26px;
      max-width: 430px;
    }

    .choice-grid.three {
      grid-template-columns: repeat(3, 1fr);
      max-width: 500px;
    }

    .choice {
      min-height: 56px;
      border: 1px solid #e1e6ee;
      border-radius: 12px;
      background: #fff;
      color: #788395;
      font-size: 17px;
      font-weight: 800;
      box-shadow: 0 3px 8px rgba(0, 0, 0, .08);
      transition: .16s ease;
      cursor: pointer;
      padding: 10px;
    }

    .choice:hover,
    .choice.active {
      border-color: var(--brand-green-dark);
      background: linear-gradient(#4dbb46, #35a63b);
      color: #fff;
    }

    .secondary-btn {
      width: 100%;
      max-width: 285px;
      height: 54px;
      border: 0;
      border-radius: 8px;
      background: linear-gradient(#2f7fd3, #236ec4);
      color: #fff;
      font-size: 17px;
      font-weight: 800;
      box-shadow: inset 0 -3px 0 rgba(0, 0, 0, .18), 0 2px 6px rgba(0, 0, 0, .13);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      cursor: pointer;
    }

    .secondary-btn:hover {
      background: linear-gradient(#2b76c4, #1e63b0);
      color: #fff;
    }

    .form-grid {
      display: grid;
      gap: 12px;
      text-align: left;
    }

    .form-grid label {
      display: block;
      color: #263442;
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .form-input {
      margin-bottom: 0;
    }

    .tcpa {
      color: #66717c;
      font-size: 11px;
      line-height: 1.45;
      font-weight: 600;
      text-align: left;
      background: #f6f8fb;
      border: 1px solid #e3e8ef;
      border-radius: 5px;
      padding: 10px;
      margin: 2px 0 4px;
    }

    .trust-row {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 14px;
      color: #627085;
      font-size: 11px;
      font-weight: 800;
      margin-top: 24px;
    }

    .trust-item {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      white-space: nowrap;
    }

    .trust-icon {
      width: 17px;
      height: 17px;
      border-radius: 50%;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 900;
      flex: 0 0 auto;
    }

    .trust-icon.blue {
      background: var(--step-blue);
    }

    .trust-icon.star {
      width: auto;
      height: auto;
      border-radius: 0;
      background: transparent;
      color: #f0b324;
      font-size: 18px;
      line-height: 1;
    }

    .call-box {
      text-align: center;
      padding: 8px 0;
    }

    .loader {
      width: 54px;
      height: 54px;
      border: 6px solid #dce7f5;
      border-top-color: var(--step-blue);
      border-radius: 50%;
      margin: 0 auto 18px;
      animation: spin .9s linear infinite;
    }

    .notice {
      display: inline-block;
      color: #2f55a2;
      background: #edf4ff;
      border: 1px solid #d5e2f4;
      border-radius: 999px;
      padding: 8px 14px;
      font-size: 13px;
      font-weight: 800;
      margin-top: 4px;
    }

    .step-mode footer {
      background: rgba(255, 255, 255, .74);
      border-top: 1px solid rgba(213, 226, 244, .8);
      padding-top: 10px !important;
      padding-bottom: 10px !important;
    }

    .step-mode footer .d-flex {
      margin-bottom: 4px !important;
    }

    .step-mode footer a,
    .step-mode footer .small {
      font-size: 11px;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    @media (min-width: 992px) and (max-height: 820px) {
      .hero .container {
        padding-top: 32px !important;
        padding-bottom: 36px !important;
      }

      .hero-title {
        font-size: 44px;
      }

      .hero-subtitle {
        font-size: 20px !important;
      }

      .quote-box {
        max-width: 410px;
        padding: 20px 20px 14px;
      }

      .quote-submit {
        height: 52px;
        font-size: 22px;
      }
    }

    @media (max-width: 991.98px) {
      .hero {
        min-height: auto;
        background-position: 36% center;
      }

      .step-mode .hero {
        min-height: calc(100vh - 96px - 94px);
      }
    }

    @media (max-width: 767.98px) {
      /* .brand-name {
        font-size: 16px !important;
      } */

      .hero-title {
        font-size: 34px;
      }

      .quote-box,
      .step-card {
        max-width: 100%;
      }
/*.quote-ratings {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: stretch;*/
/*    gap: 20px;*/
/*    background: #fff;*/
/*    flex-wrap: wrap;*/
/*}*/

      .quote-ratings {
        grid-template-columns: 1fr;
      }

      .rating-item {
        border-right: 0;
        border-bottom: 1px solid #edf0f3;
      }

      .rating-item:last-child {
        border-bottom: 0;
      }

      .benefit-item {
        border-right: 0;
        border-bottom: 1px solid #edf0f3;
      }

      .benefits .col-md-4:last-child .benefit-item {
        border-bottom: 0;
      }

      .step-card {
        padding: 24px 18px 20px;
      }

      .choice-grid,
      .choice-grid.three {
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .choice {
        min-height: 52px;
      }

      .trust-row {
        gap: 12px;
      }
    }
 