/* ============================= */
/* BASE */
/* ============================= */
body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #222;
  }
  
  /* ============================= */
  /* HEADER */
  /* ============================= */
  .header {
    width: 100%;
    background: #fff;
    padding: 8px 10px 4px;
    text-align: center;
    border-bottom: 1px solid #eee;
  }
  
  .logo {
    max-height: 60px;
    display: block;
    margin: 0 auto;
  }
  
  /* ============================= */
  /* TOP BAR */
  /* ============================= */
  .top-bar {
    background: #cb0000;
    color: #fff;
    padding: 6px;
    font-weight: 700;
  }
  
  /* ============================= */
/* HERO SECTION */
/* ============================= */
.hero-section {
  background: url('https://d3q7porexqyyxj.cloudfront.net/sites/5010/hero3.png') center/cover no-repeat;
  position: relative;

  /* NEW */
  padding: 50px 0;   /* desktop spacing */
}
  
  /* LIGHTER OVERLAY */
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.40),
      rgba(0,0,0,0.65)
    );
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  
    display: flex;
    flex-direction: column;
  
    /* CHANGE THIS */
    justify-content: flex-start;
  
    /* REMOVE THIS if exists */
    /* min-height: 100vh; */
  }
  /* ============================= */
  /* FORCE ALL HERO TEXT WHITE */
  /* ============================= */
  .hero-section,
  .hero-section h1,
  .hero-section h2,
  .hero-section h3,
  .hero-section p,
  .hero-section span,
  .hero-section label {
    color: #fff !important;
  }
  
  /* ============================= */
  /* TOP TEXT */
  /* ============================= */
  .hero-top-content {
    max-width: 1200px;
    margin: 0 auto 10px;
    text-align: center;
  }
  
  .main-headline {
   
    font-weight: 800;
    margin-bottom: 10px;
  }

    .main-headline.is-location-copy {
      font-size: 2.3rem !important;
      line-height: 1.25;
    }
  
  .sub-headline {
    font-size: 18px;
    margin-bottom: 6px;
  }
  
  .support-line {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  /* ============================= */
  /* STEP SYSTEM (CRITICAL FIX) */
  /* ============================= */
  .step {
    display: none; /* hide all */
    text-align: center;
  }
  
  .step.active {
    display: block; /* show only active */
    animation: fadeStep 0.4s ease;
  }
  
  /* ============================= */
  /* FORM AREA */
  /* ============================= */
  .form-area {
    max-width: 520px;
    margin: 5px auto 0;
  }

  #step1 .form-area {
    max-width: 300px;
  }
  
  /* INPUT GROUP */
  .custom-input {
    border-radius: 50px;
    overflow: hidden;
    border: 2px solid transparent;
  }
  
  /* INPUT ICON */
  .custom-input .input-group-text {
    background: #fff;
    border: none;
    color: #0d3b66;
  }
  
  /* INPUT FIELD (WHITE ONLY) */
  .custom-input .form-control {
    background: #fff !important;
    color: #000 !important;
    border: none;
    padding: 14px;
    box-shadow: none !important;
  }
  .custom-input .form-control:focus {
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
  }
  
  /* FOCUS - no colored border */
  .custom-input:focus-within {
    border-color: transparent;
    box-shadow: none;
  }
  
  /* ============================= */
  /* ERROR MESSAGE */
  /* ============================= */
  .error-msg {
    display: none;
    color: #ff6b6b !important;
    font-size: 13px;
    margin-top: 5px;
    text-align: left;
  }

  /* ============================= */
  /* FIELD ERROR (validation) */
  /* ============================= */
  .field-error {
    color: #fff;
    font-size: 0.85rem;
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
    padding: 0;
    border-radius: 4px;
    display: none;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .field-error:not(:empty) {
    display: block;
    background: rgba(220, 53, 69, 0.85);
    padding: 3px 10px;
    margin-top: 0.35rem;
    margin-bottom: 0.25rem;
  }
  .field-error:empty {
    display: none;
    background: transparent;
  }
  .form-control.is-invalid,
  .form-select.is-invalid {
    border-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
  }
  .form-control.is-valid,
  .form-select.is-valid {
    border-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
  }

  /* Override Bootstrap focus glow on validated fields */
  .form-control.is-invalid:focus,
  .form-control.is-valid:focus {
    box-shadow: none !important;
    border: none !important;
  }

  /* When field has validation state, color the wrapper border */
  .custom-input:has(.is-invalid) {
    border-color: #dc3545;
  }
  .custom-input:has(.is-valid) {
    border-color: #198754;
  }

  /* Validation icon inside input-group */
  .validation-icon {
    display: none !important;
    background: #fff;
    border: none;
    font-size: 1.15rem;
    padding: 0 12px !important;
    align-items: center;
    justify-content: center;
    color: transparent;
  }
  .validation-icon.show-valid {
    display: flex !important;
    color: #198754;
  }
  .validation-icon.show-invalid {
    display: flex !important;
    color: #dc3545;
  }
    .validation-icon.show-valid i {
      color: #198754 !important;
    }
    .validation-icon.show-invalid i {
      color: #dc3545 !important;
    }
  
  /* ============================= */
  /* BUTTON */
  /* ============================= */
  .btn-main {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color: #fff;
    border-radius: 50px;
    padding: 14px;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
  }
  
  .btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(13,110,253,0.35);
    background: linear-gradient(135deg, #0b5ed7, #084298);
  }

  .thank-clean-promo a.btn-main:hover,
  .thank-clean-promo a.btn-main:focus,
  .thank-clean-promo a.btn-main:active {
    color: #fff !important;
  }

  .thank-clean-promo a.btn-main::after {
    content: " \2192";
    display: inline-block;
    margin-left: 6px;
  }

  .homeowner-options {
    max-width: 460px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .homeowner-btn {
    width: 100%;
  }

  .homeowner-btn.is-selected {
    box-shadow: 0 12px 30px rgba(13,110,253,0.35);
    background: linear-gradient(135deg, #0b5ed7, #084298);
  }
  
  /* ============================= */
  /* IMAGE OPTION CARDS */
  /* ============================= */
  .img-card {
    background: #fff;
    padding: 10px;
    border-radius: 14px;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }
  
  .img-card img {
    width: 100%;
    height: 168px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    margin: 0 0 10px;
    display: block;
  }

  .img-card img.remodel-img-focus {
    object-position: center top;
  }
  
  /* TEXT INSIDE CARD (BLACK) */
  .img-card p {
    color: #222 !important;
    font-weight: 600;
  }
  
  .img-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
  }
  
  /* ============================= */
  /* PREVIOUS BUTTON */
  /* ============================= */
  .prev-btn {
    margin-top: 15px;
    color: #ddd;
    background: none;
    border: none;
  }
  
  .prev-btn:hover {
    color: #fff;
  }
  
  /* ============================= */
  /* FINAL STEP TITLE */
  /* ============================= */
  .final-title {
    color: #fff !important;
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  /* DISCLAIMER */
  .disclaimer {
    color: #ccc !important;
    font-size: 13px;
    margin-top: 15px;
  }
  /* ============================= */
/* FIX INPUT ICON COLOR */
/* ============================= */
.custom-input .input-group-text:not(.validation-icon) i {
  color: #0d6efd !important; /* Bootstrap blue */
}
  
  /* optional: change on focus */
  .custom-input:focus-within .input-group-text:not(.validation-icon) i {
    color: #0d6efd !important; /* blue highlight */
  }
  /* ============================= */
  /* ANIMATION */
  /* ============================= */
  @keyframes fadeStep {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* ============================= */
  /* MOBILE */
  /* ============================= */
  @media (max-width: 768px) {
    
    .support-line {
      font-size: 16px;
    }
  
    .img-card img {
      height: 136px;
    }
  }
  @media (max-width: 768px) {

  .hero-section {
    min-height: auto !important;
    padding: 40px 0 30px;
  }

  .hero-content {
    min-height: auto !important;
    padding: 0 15px;
    justify-content: flex-start;
  }

  .hero-top-content {
    margin-bottom: 10px;
  }

  .form-area {
    margin-top: 10px;
  }

  .main-headline {
    font-size: 26px;
  }

  .sub-headline {
    font-size: 14px;
  }
}
@media (max-width: 768px) {

  .hero-section {
    padding: 50px 0 40px;
    min-height: auto !important;
  }

  .hero-content {
    padding: 0 15px;
    justify-content: flex-start;
  }

}


  /* ============================= */
  /* WHY SECTION */
  /* ============================= */
  /* WHY SECTION */
.why-section {
  background: #ffffff;
  padding: 55px 0;
}

.why-title {
 
  font-weight: 700;
  margin-bottom: 30px;
  color: #0d3b66; /* deep blue */
}

/* ROW */
.why-row {
  position: relative;
}

/* CARD */
.why-card {
  background: #fff;
  padding: 45px 25px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.35s ease;
  border: 1px solid rgba(13,110,253,0.08); /* soft blue border */
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* HOVER EFFECT */
.why-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 60px rgba(13,110,253,0.15); /* blue shadow */
}

/* ICON WRAP */
.icon-wrap {
  width: 80px;
  height: 80px;
  margin: auto;
  margin-bottom: 15px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6efd, #0b5ed7); /* blue gradient */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  position: relative;
  transition: all 0.3s ease;
}

/* ICON GLOW EFFECT */
.icon-wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(13,110,253,0.25); /* blue glow */
  transform: scale(1.2);
  opacity: 0;
  transition: 0.3s;
  z-index: -1;
}

/* HOVER ICON EFFECT */
.why-card:hover .icon-wrap {
  transform: scale(1.1) rotate(5deg);
}

.why-card:hover .icon-wrap::after {
  opacity: 1;
  transform: scale(1.4);
}

/* SUBTITLE */
.why-subtitle {
  font-size: 18px;
  font-weight: 700;
  color: #0d3b66;
  margin: 30px 0 10px;
}

/* TEXT */
.why-card p {
  font-size: 15px;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .why-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .why-card {
    padding: 35px 20px;
  }
}
  
  /* ============================= */
/* WINDOW SECTION */
/* ============================= */
.window-section {
    background: #f4f8fc;
    padding: 55px 0;
}

/* TITLE */
.window-title {
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f2f56;
}

  /* CAROUSEL */
  .upgrade-carousel-wrap {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 54px;
  }

  .upgrade-carousel-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
  }

  .upgrade-carousel-track::-webkit-scrollbar {
    display: none;
  }

  .upgrade-card {
    min-width: 100%;
    scroll-snap-align: center;
    background: #ffffff;
    background-clip: padding-box;
    border-radius: 24px;
    border: 1px solid rgba(15, 47, 86, 0.08);
    box-shadow: 0 12px 28px rgba(15, 47, 86, 0.08);
    padding: 42px;
    text-align: left;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    align-items: center;
    gap: 36px;
    position: relative;
    overflow: hidden;
    isolation: isolate;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
}

  .upgrade-copy h3 {
    color: #0f2f56;
    font-size: 1.95rem;
    font-weight: 800;
    margin-bottom: 16px;
  }

  .upgrade-copy p {
    color: #3f4956;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 24px;
  }

  .upgrade-card-btn {
    min-width: 165px;
    padding: 12px 22px;
    border-radius: 999px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
  }

  .upgrade-media {
    background: #eef4fb;
    border-radius: 16px;
    padding: 12px;
    overflow: hidden;
    isolation: isolate;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 310px;
  }

  .upgrade-media img {
    width: 100%;
    max-height: 286px;
    object-fit: cover;
    display: block;
    background: #eef4fb;
    border-radius: 12px;
  }

  .upgrade-nav {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: #ffffff;
    color: #0d6efd;
    box-shadow: 0 10px 24px rgba(15, 47, 86, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

  .upgrade-nav:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 14px 30px rgba(15, 47, 86, 0.24);
}

  .upgrade-nav-prev {
    left: 0;
}

  .upgrade-nav-next {
    right: 0;
}

  .upgrade-nav:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: translateY(-50%);
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 992px) {
  .window-title {
      font-size: 2rem;
    }

    .upgrade-card {
      grid-template-columns: 1fr;
      gap: 16px;
      text-align: center;
    }

    .upgrade-copy {
      text-align: center;
    }

    .upgrade-card-btn {
      margin: 0 auto;
    }

    .upgrade-media {
      min-height: 240px;
    }
}

@media (max-width: 768px) {
  .window-title {
    font-size: 26px;
      margin-bottom: 26px;
  }

    .upgrade-carousel-wrap {
      padding: 0;
  }

    .upgrade-card {
      padding: 28px 22px;
      border-radius: 18px;
  }

    .upgrade-copy h3 {
      font-size: 1.65rem;
    }

    .upgrade-copy p {
      font-size: 1rem;
      line-height: 1.62;
    }

    .upgrade-media {
      min-height: 210px;
    }

    .upgrade-media img {
      max-height: 205px;
    }

    .upgrade-nav {
      width: 40px;
      height: 40px;
      top: auto;
      bottom: -54px;
      transform: none;
    }

    .upgrade-nav:hover,
    .upgrade-nav:disabled {
      transform: none;
    }

    .upgrade-nav-prev {
      left: calc(50% - 50px);
    }

    .upgrade-nav-next {
      right: calc(50% - 50px);
    }
}
  /* ============================= */
  /* CTA */
  /* ============================= */
  .cta-section {
    background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 55%, #084298 100%);
    color: #f4f9ff;
    padding: 55px 0;
  }

  .cta-title {
    color: #ffffff;
    margin-bottom: 10px;
    text-shadow: 0 10px 22px rgba(7, 35, 69, 0.25);
  }

  .cta-text {
    color: rgba(236, 246, 255, 0.92);
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.02rem;
    line-height: 1.65;
  }

  .how-works-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .how-work-card {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 69, 128, 0.2);
    border-radius: 20px;
    padding: 28px 20px 24px;
    text-align: left;
    box-shadow: 0 14px 30px rgba(6, 37, 78, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .how-work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 40px rgba(5, 30, 65, 0.28);
  }

  .how-work-step {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #6c757d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 14px;
    border: 1px solid rgba(74, 84, 91, 0.45);
    box-shadow: 0 8px 18px rgba(10, 41, 80, 0.14);
  }

  .how-works-cta-wrap {
    text-align: center;
  }

  .how-works-cta-btn {
    background: #ffffff;
    color: #0b4f95;
    border: 0;
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 700;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 24px rgba(6, 37, 78, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .how-works-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(6, 37, 78, 0.24);
    color: #083b72;
  }

  .how-work-card h3 {
    font-size: 1.1rem;
    line-height: 1.35;
    color: #0c3769;
    margin-bottom: 10px;
    font-weight: 700;
  }

  .how-work-card p {
    margin: 0;
    color: #4e6176;
    line-height: 1.62;
    font-size: 0.95rem;
  }

  @media (max-width: 1199px) {
    .how-works-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media (max-width: 767px) {
    .cta-section {
      padding: 62px 0;
    }

    .how-works-grid {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .how-work-card {
      border-radius: 16px;
      padding: 22px 16px 20px;
    }
  }
  
/* ============================= */
/* CTA 2 - DARK RED (FIXED) */
/* ============================= */
.cta-2 {
  background: linear-gradient(135deg, #b30000, #7a0000);
  color: #fff;
  padding: 55px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* FIXED OVERLAY */
.cta-2::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 60%);
  top: -20%;
  left: -20%;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* KEEP CONTENT ABOVE */
.cta-2 .container {
  position: relative;
  z-index: 2;
}

/* BUTTON */
.cta-2 .btn-main {
  background: #ffffff;
  color: #b30000;
}

.cta-2 .btn-main:hover {
  background: #f1f3f5;
  color: #7a0000;
}
  /* ============================= */
  /* TRUSTED */
  /* ============================= */
  /* TRUSTED SECTION */
.trusted-section {
  background: #ffffff;
  padding: 55px 0;
}

.trusted-title {
  
  font-weight: 700;
  color: #0d3b66; /* deep blue */
  margin-bottom: 10px;
}

.trusted-subtitle {
  font-size: 15px;
  color: #6c757d;
  max-width: 600px;
  margin: auto;
}

/* CARD */
.trusted-card {
  background: #fff;
  padding: 35px 20px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13, 110, 253, 0.08); /* soft blue border */
}

.trusted-section.trusted-animate-ready .trusted-card {
  opacity: 0;
  transform: translateY(26px) scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.trusted-section.trusted-animate-ready .trusted-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* PREMIUM HOVER EFFECT */
.trusted-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(13,110,253,0.15); /* blue shadow */
}

/* TOP GLOW LINE */
.trusted-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #0d6efd, #0b5ed7); /* blue gradient */
  transition: 0.4s;
  transform: translateX(-50%);
}

.trusted-card:hover::before {
  width: 80%;
}

/* ICON */
.trusted-icon {
  font-size: 36px;
  color: #0d6efd; /* main blue */
  margin-bottom: 12px;
  transition: 0.3s;
}

/* ICON EFFECT */
.trusted-card:hover .trusted-icon {
  transform: scale(1.2) rotate(5deg);
  color: #084298; /* darker blue on hover */
}

/* NUMBER */
.trusted-card h3 {
  font-size: clamp(2.3rem, 5.2vw, 3.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 5px;
  color: #0d3b66;
}

.trusted-card .metric-number {
  display: inline-block;
  text-shadow: 0 6px 16px rgba(13, 59, 102, 0.15);
}

.trusted-card .metric-number.is-done {
  animation: metricPop 0.35s ease-out;
}

@keyframes metricPop {
  0% {
    transform: scale(0.96);
  }
  60% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

/* TEXT */
.trusted-card p {
  font-size: 14px;
  color: #555;
  margin: 0;
}

/* BACKGROUND GLOW */
.trusted-card::after {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(13,110,253,0.08), transparent 60%);
  top: -20%;
  left: -20%;
  opacity: 0;
  transition: 0.4s;
}

.trusted-card:hover::after {
  opacity: 1;
}

/* MOBILE */
@media (max-width: 768px) {
  .trusted-title {
    font-size: 26px;
  }

  .trusted-card {
    padding: 25px 15px;
  }

  .trusted-card h3 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }
}
  /* ============================= */
  /* FAQ */
  /* ============================= */
  .faq-section {
    background: #f4f7fb;
    padding: 55px 0;
  }
  .faq-title{color: #0d3b66; font-weight: 700;}
  
  .faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: 0.3s;
  }
  
  .faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  }
  
  .faq-item summary {
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
  }
  
  .faq-item summary::-webkit-details-marker {
    display: none;
  }
  
  .faq-item p {
    padding: 0 20px 15px;
  }
  
  /* ============================= */
  /* FOOTER */
  /* ============================= */
  .footer {
    width: 100%;
    max-width: none;
    margin: 0;
    background: #f8f9fb;
    padding: 60px 20px;
  }
  
  .footer-links a {
    color: #0d3b66;
  }
  
  /* ============================= */
  /* MOBILE */
  /* ============================= */
  @media (max-width: 768px) {
    .main-headline {
      font-size: 28px;
    }

    .main-headline.is-location-copy {
      font-size: 1.9rem !important;
      line-height: 1.25;
    }
  
    .img-card img {
      height: 136px;
    }
  }

  /* ============================= */
/* SUB HERO (PAGE TITLE ONLY) */
/* ============================= */
.sub-hero {
  background: #0d3b66;
  color: #fff;
  padding: 40px 20px;
}

.sub-hero h1 {
  font-size: 32px;
  margin-bottom: 5px;
}

.sub-hero p {
  opacity: 0.9;
  font-size: 14px;
}

/* ============================= */
/* CLEAN THANK YOU SECTION */
/* ============================= */
.thank-clean {
  background: #f5f7fa;
  padding: 56px 20px;
}

/* Reduce spacing when two thank sections stack */
.thank-clean + .thank-clean {
  padding-top: 20px;
}

.thank-clean-main {
  padding-top: 24px;
  padding-bottom: 12px;
}

.thank-clean-main .thank-card {
  max-width: 920px;
  width: 100%;
}

.thank-heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.thank-main-title,
.promo-main-title {
  font-size: 2rem;
  line-height: 1.2;
}

.thank-buyer-logo-wrap {
  background-color: #ffffff;
  padding: 0;
  border-radius: 8px;
  margin-bottom: 0;
  line-height: 0;
}

.thank-buyer-logo {
  width: min(100%, 250px);
  height: auto;
  display: block;
  margin: 0 auto;
}

.thank-clean-promo {
  padding-top: 0;
}

.thank-clean-promo .thank-card {
  max-width: 920px;
  width: 100%;
}

.promo-offer-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promo-offer-row {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  grid-template-areas:
    "image title"
    "image copy";
  column-gap: 22px;
  row-gap: 10px;
  align-items: start;
  text-align: left;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid #e3e7ee;
  background: #f8fbff;
  min-height: 220px;
}

.promo-offer-image {
  grid-area: image;
  min-height: 100%;
  border-radius: 16px;
  border: 2px dashed #c5cfdd;
  background: #eef3fb;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #355073;
  font-weight: 600;
  text-align: center;
  padding: 10px;
}

.promo-offer-image i {
  font-size: 34px;
}

.promo-offer-image span {
  font-size: 14px;
}

.promo-offer-image.has-photo {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-style: solid;
  border-radius: 16px;
  line-height: 0;
}

.promo-offer-image.has-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: inherit;
}

.promo-offer-copy {
  grid-area: copy;
}

.promo-offer-copy p {
  margin: 0 0 14px;
}

.promo-offer-title {
  grid-area: title;
  margin: 0;
  font-size: 1.25rem;
}

/* CARD */
.thank-card {
  background: #fff;
  padding: 22px 28px;
  border-radius: 16px;
  width: 100%;
  max-width: 920px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  box-sizing: border-box;
}

/* ICON */
.success-icon {
  font-size: 46px;
  color: #28a745;
}

/* MINI STEPS */
.mini-step {
  font-size: 14px;
  color: #555;
}

.mini-step i {
  font-size: 22px;
  color: #0d6efd;
  display: block;
  margin-bottom: 8px;
}

/* MOBILE */
@media (max-width: 768px) {
  .thank-card {
    padding: 35px 20px;
  }

  .promo-offer-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "image"
      "copy";
    row-gap: 12px;
  }

  .thank-main-title,
  .promo-main-title {
    font-size: 1.65rem;
  }

  .thank-buyer-logo {
    width: min(100%, 280px);
  }

  .promo-offer-image {
    min-height: 140px;
  }

  .promo-offer-image i {
    font-size: 26px;
  }

  .promo-offer-image span {
    font-size: 12px;
  }

  .sub-hero h1 {
    font-size: 24px;
  }
}

.loading-modal-content {
  border: 0;
  border-radius: 16px;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.22);
}

.loading-header h5 {
  font-weight: 700;
  color: #12313e;
}

.loading-main-copy {
  color: #1d2935;
  font-size: 0.98rem;
  line-height: 1.5;
}

.loading-sub-copy {
  color: #536171;
  font-size: 0.9rem;
}

.loading-map {
  position: relative;
  height: 140px;
  margin-top: 14px;
  margin-bottom: 12px;
  border: 1px solid #d5e0ea;
  border-radius: 12px;
  background: #e8eef4;
  overflow: hidden;
}

.loading-map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(68, 95, 123, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(68, 95, 123, 0.1) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.28;
  z-index: 1;
}

.loading-map-pulse {
  position: absolute;
  left: 14%;
  top: 42%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(7, 157, 112, 0.65);
  background: rgba(9, 170, 122, 0.15);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 0 rgba(10, 181, 122, 0.35);
  animation: mapPulse 2.4s ease infinite;
  transition: left 0.45s ease, top 0.45s ease;
  z-index: 4;
}

.loading-map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  color: #8fa1b3;
  font-size: 1.08rem;
  transition: transform 0.35s ease, color 0.35s ease;
  z-index: 5;
}

.loading-map-pin.current {
  color: #0aaf79;
  transform: translate(-50%, -50%) scale(1.2);
}

.loading-map-pin.done {
  color: #8fa1b3;
}

.loading-map-caption {
  position: absolute;
  right: 10px;
  bottom: 9px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #d8e4ef;
  border-radius: 999px;
  padding: 4px 10px;
  color: #2f4253;
  font-size: 0.77rem;
  font-weight: 600;
  z-index: 6;
}

.loading-progress-wrap {
  width: 100%;
  height: 12px;
  background: #e9eef3;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 16px;
}

.loading-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #08a36a, #0ab57a);
  transition: width 0.45s ease;
}

.loading-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #415163;
  font-size: 0.84rem;
}

.loading-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.loading-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border: 1px solid #d9e2ea;
  border-radius: 10px;
  color: #5c6978;
  background: #f8fafc;
  transition: all 0.35s ease;
}

.loading-card-icon {
  width: 20px;
  text-align: center;
  color: #95a3b3;
  flex-shrink: 0;
}

.loading-card.active {
  border-color: #0ab57a;
  background: #eefaf5;
  color: #1f3342;
  transform: translateX(2px);
}

.loading-card.active .loading-card-icon {
  color: #0ab57a;
}

.loading-card.done {
  border-color: #b8dfcf;
  background: #f5fcf8;
  color: #2c3f4f;
}

.loading-card.done .loading-card-icon {
  color: #08a36a;
}

.loading-delay-note {
  font-size: 0.9rem;
  font-weight: 600;
  color: #8a5b00;
  background: #fff6df;
  border: 1px solid #ffe1a0;
  padding: 9px 10px;
  border-radius: 8px;
}

.loading-keep-open {
  color: #4a5664;
  font-size: 0.82rem;
}

@keyframes mapPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 181, 122, 0.35);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(10, 181, 122, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 181, 122, 0);
  }
}

@media (max-width: 575px) {
  .loading-main-copy {
    font-size: 0.92rem;
  }

  .loading-map {
    height: 124px;
  }

  .loading-card {
    font-size: 0.9rem;
    padding: 8px 10px;
  }
}