/* ============================= */
/* BASE */
/* ============================= */
body {
    margin: 0;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: #ffffff;
    color: #222;
  }
  
  /* ============================= */
  /* HEADER */
  /* ============================= */
  .header {
    width: 100%;
    background: #fff;
    padding: 0;
    line-height: 0;
    text-align: center;
    border-bottom: 1px solid #eee;
  }
  
  .logo {
    width: min(430px, 95vw);
    max-width: 300px;
    max-height: 120px;
    display: block;
    margin: 0 auto;
    height: auto;
    object-fit: contain;
  }
  
  /* ============================= */
  /* TOP BAR */
  /* ============================= */
  .top-bar {
    background: #b10000;
    color: #fff;
    padding: 6px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .top-bar h2 {
    margin: 0;
    line-height: 1.25;
  }

  .offer-mobile-break {
    display: none;
  }

  .promo-coupon-icon {
    display: inline-block;
    margin-right: 4px;
    transform: rotate(-14deg);
  }

  .coverage-banner {
    min-height: 36px;
    padding: 8px 16px;
    background: #ffffff;
    border-bottom: 1px solid #e3e8ed;
    color: #0d3b66;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.25;
    text-align: center;
  }

  .coverage-banner i {
    color: #d83434;
    font-size: 1rem;
  }

  @media (max-width: 480px) {
    .offer-mobile-break {
      display: inline;
    }

    .coverage-banner {
      font-size: 0.82rem;
      padding: 8px 12px;
    }
  }
  
  /* ============================= */
/* HERO SECTION */
/* ============================= */
.hero-section {
  background: url('../images/hero-bg.webp') center/cover no-repeat;
  position: relative;

  padding: 75px 0;
}
  
  /* LIGHTER OVERLAY */
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.45),
      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; */
  }

  .hero-content.is-transitioning {
    animation: heroContentFade 0.1s ease both;
  }
  /* ============================= */
  /* 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: 700;
    margin-bottom: 10px;
  }
  
  .sub-headline {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .feature-checkline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .feature-checkline i {
    color: #ffffff;
    font-size: 0.95em;
  }
  
  .support-line {
    font-size: 26px;
    font-weight: 700;
    margin-top: 16px;
    margin-bottom: 10px;
  }
  
  /* ============================= */
  /* STEP SYSTEM (CRITICAL FIX) */
  /* ============================= */
  .step {
    display: none; /* hide all */
    text-align: center;
  }
  
  .step.active {
    display: block; /* show only active */
    position: relative;
    z-index: 2;
    animation: fadeStepIn 0.1s ease both;
  }

  .step.is-exiting {
    display: block;
    pointer-events: none;
    animation: fadeStepOut 0.1s ease both;
  }
  
  /* ============================= */
  /* FORM AREA */
  /* ============================= */
  #leadForm {
    width: min(600px, 100%);
    margin: 0 auto;
    padding: 26px 32px 28px;
    background: rgba(8, 24, 44, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    box-shadow: 0 16px 36px rgba(4, 18, 38, 0.24);
    position: relative;
    overflow: hidden;
  }

  .form-area {
    max-width: 520px;
    margin: 5px auto 0;
  }

  #step1 .form-area {
    max-width: 300px;
  }

  .form-progress {
    width: min(520px, 100%);
    margin: 10px auto 18px;
    text-align: left;
  }

  .form-progress-track {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  }

  .form-progress-bar {
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #0ab57a, #26c281);
    transition: width 0.3s ease;
  }
  
  /* 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;
  }

  .email-suggestion-wrap {
    position: relative;
  }

  .email-suggestions {
    display: none;
    position: absolute;
    top: calc(100% - 8px);
    left: 0;
    right: 0;
    z-index: 20;
    padding: 6px 0;
    background: #fff;
    border: 1px solid #d9e2ec;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(32, 54, 78, 0.18);
    text-align: left;
  }

  .email-suggestions.is-visible {
    display: block;
  }

  .email-suggestion {
    display: block;
    width: 100%;
    padding: 9px 14px;
    color: #202124;
    background: #fff;
    border: 0;
    font: inherit;
    font-size: 0.95rem;
    line-height: 1.35;
    text-align: left;
    cursor: pointer;
  }

  .email-suggestion:hover,
  .email-suggestion:focus {
    color: #202124;
    background: #f1f3f4;
    outline: 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);
  }

  .step-next-btn {
    min-width: 220px;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* ============================= */
  /* IMAGE OPTION CARDS */
  /* ============================= */
  .img-card {
    background: #fff;
    padding: 12px;
    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: auto;

    object-fit: contain;
    margin: 0 auto 8px;
    display: block;
  }
  
  /* 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 fadeStepIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  @keyframes fadeStepOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }

  @keyframes heroContentFade {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* ============================= */
  /* MOBILE */
  /* ============================= */
  @media (max-width: 768px) {
    
    .support-line {
      font-size: 16px;
    }
  
    .img-card img {
      height: 100px;
    }
  }
  @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;
  }

  #leadForm {
    padding: 22px 18px 24px;
    border-radius: 16px;
  }

  .main-headline {
    font-size: 26px;
  }

  .sub-headline {
    font-size: 14px;
  }
}
@media (max-width: 768px) {

  .hero-section {
    padding: 25px 0 40px;
    min-height: auto !important;
  }

  .hero-content {
    padding: 0 15px;
    justify-content: flex-start;
  }

}


  /* ============================= */
  /* WHY SECTION */
  /* ============================= */
  /* WHY SECTION */
.why-section {
  background: #ffffff;
  padding: 34px 0;
}

.why-title {
 
  font-weight: 700;
  margin-bottom: 60px;
  color: #0d3b66; /* deep blue */
}

/* ROW */
.why-row {
  position: relative;
}

/* CARD */
.why-card {
  background: #fff;
  padding: 34px 22px 30px;
  border-radius: 14px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid #e8ecf2;
  height: 100%;
  position: relative;
  overflow: visible;
  box-shadow: 0 8px 24px rgba(17, 34, 68, 0.06);
}

/* HOVER EFFECT */
.why-card:hover {
  transform: translateY(-6px);
  border-color: #ffd4d4;
  box-shadow: 0 18px 34px rgba(17, 34, 68, 0.12);
}

/* ICON WRAP */
.icon-wrap {
  width: 72px;
  height: 72px;
  margin: auto;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #d83434;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  position: relative;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* ICON GLOW EFFECT */
.icon-wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid rgba(216, 52, 52, 0.18);
  transform: scale(1.08);
  opacity: 1;
  transition: transform 0.25s ease;
  z-index: -1;
}

/* HOVER ICON EFFECT */
.why-card:hover .icon-wrap {
  transform: scale(1.05);
  background: #c92a2a;
}

.why-card:hover .icon-wrap::after {
  transform: scale(1.15);
}

/* SUBTITLE */
.why-subtitle {
  font-size: 1.22rem;
  font-weight: 700;
  color: #12263a;
  margin: 8px 0 8px;
}

/* TEXT */
.why-card p {
  font-size: 1rem;
  color: #596273;
  margin: 0;
  line-height: 1.45;
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .why-title {
    font-size: 26px;
    margin-bottom: 40px;
  }

  .why-card {
    padding: 28px 18px 24px;
  }

  .icon-wrap {
    width: 64px;
    height: 64px;
    font-size: 21px;
  }
}
  
  /* ============================= */
/* WINDOW SECTION */
/* ============================= */
.coverage-section {
  background: linear-gradient(180deg, #f8fafc, #eef3f8);
  padding: 34px 0;
}

/* TITLE */
.coverage-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: #0d3b66; /* deep blue */
}

.coverage-subtitle {
  font-size: 15px;
  color: #6c757d;
  max-width: 600px;
  margin: 0 auto 20px;
}

.coverage-layout {
  margin-top: 8px;
}

.coverage-media {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(13, 59, 102, 0.12);
  box-shadow: 0 8px 24px rgba(15, 35, 70, 0.1);
}

.coverage-media img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.coverage-media img.is-swapping {
  opacity: 0.2;
  transform: scale(1.015);
}

.coverage-checklist-title {
  color: #0d3b66;
  font-weight: 700;
  margin-bottom: 14px;
}

.coverage-checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 18px;
}

.coverage-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.coverage-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  color: #384355;
  font-size: 1rem;
  line-height: 1.4;
  transition: none;
  cursor: default;
}

.coverage-checklist li i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #26b36a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  flex-shrink: 0;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 992px) {
  .coverage-title {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .coverage-title {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .coverage-subtitle {
    margin-bottom: 20px;
  }

  .coverage-layout {
    margin-top: 4px;
  }

  .coverage-checklist-title {
    margin-top: 12px;
  }

  .coverage-checklist-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .coverage-checklist li {
    margin-bottom: 6px;
    padding: 7px 8px;
  }
}

@media (max-width: 480px) {
  .coverage-checklist li {
    font-size: 0.95rem;
  }
}
  /* ============================= */
  /* CTA */
  /* ============================= */
  .cta-section {
    background: linear-gradient(135deg, #0d3b66, #1976d2);
    color: #ffffff;
    padding: 36px 0;
  }

  .cta-promo-grid {
    display: grid;
    grid-template-columns: minmax(240px, 320px) 1fr;
    align-items: center;
    gap: 28px;
  }

  .cta-promo-title {
    font-size: clamp(2rem, 2.8vw, 3rem);
    line-height: 1.06;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 12px;
    max-width: 300px;
  }

  .cta-promo-text {
    font-size: 1.03rem;
    line-height: 1.45;
    color: #d8e7f7;
    margin-bottom: 12px;
    max-width: 290px;
  }

  .cta-promo-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 20px;
  }

  .repair-card {
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid rgba(0, 28, 52, 0.08);
    box-shadow: 0 6px 18px rgba(0, 26, 48, 0.12);
    padding: 18px 16px 20px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .repair-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 26, 48, 0.18);
  }

  .repair-icon {
    width: 68px;
    height: 68px;
    border-radius: 999px;
    background: #eef3f7;
    color: #0f68a7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 2rem;
  }

  .repair-card h3 {
    color: #003459;
    font-size: 1.9rem;
    font-weight: 700;
    margin: 0 0 10px;
  }

  .repair-label {
    color: #c24349;
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.2;
  }

  .repair-range {
    color: #b11127;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0;
    line-height: 1.2;
  }

  @media (max-width: 1200px) {
    .cta-promo-cards {
      grid-template-columns: repeat(3, minmax(160px, 1fr));
      gap: 14px;
    }

    .repair-card h3 {
      font-size: 1.45rem;
    }

    .repair-label {
      font-size: 0.95rem;
    }

    .repair-range {
      font-size: 1.1rem;
    }
  }

  @media (max-width: 992px) {
    .cta-promo-grid {
      grid-template-columns: 1fr;
      gap: 22px;
    }

    .cta-promo-copy {
      text-align: center;
    }

    .cta-promo-title,
    .cta-promo-text {
      max-width: none;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-promo-cards {
      grid-template-columns: repeat(2, minmax(180px, 1fr));
    }
  }

  @media (max-width: 640px) {
    .cta-section {
      padding: 34px 0;
    }

    .cta-promo-cards {
      grid-template-columns: 1fr;
    }

  }
  
/* ============================= */
/* CTA 2 - DARK RED (FIXED) */
/* ============================= */
.cta-2 {
  background: linear-gradient(135deg, #b30000, #7a0000);
  color: #fff;
  padding: 42px 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: 36px 0;
}

.trusted-title {
  font-weight: 700;
  color: #0d3b66; /* deep blue */
  margin-bottom: 12px;
}

.trusted-subtitle {
  font-size: 1rem;
  line-height: 1.6;
  color: #5f6877;
  max-width: 920px;
  margin: 0 auto;
}

/* CARD */
.trusted-card {
  background: #fff;
  padding: 18px 18px 20px;
  border-radius: 14px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(13, 59, 102, 0.1);
  height: 100%;
  box-shadow: 0 8px 24px rgba(15, 35, 70, 0.06);
}

.trusted-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(15, 35, 70, 0.14);
}


.trusted-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center top;
  border-radius: 10px;
  margin-bottom: 14px;
  display: block;
}

/* NUMBER */
.trusted-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0d3b66;
}

/* TEXT */
.trusted-card p {
  font-size: 0.96rem;
  line-height: 1.65;
  color: #535d6b;
  margin: 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .trusted-title {
    font-size: 26px;
  }

  .trusted-subtitle {
    font-size: 0.95rem;
  }

  .trusted-card {
    padding: 16px 14px 18px;
  }

  .trusted-image {
    height: 120px;
  }
}
  /* ============================= */
  /* FAQ */
  /* ============================= */
  .faq-section {
    background: #f4f7fb;
    padding: 42px 0;
  }

  .faq-intro {
    margin-bottom: 20px;
  }

  .faq-intro p {
    color: #5f6877;
    margin: 10px 0 0;
  }

  .faq-title{color: #0d3b66; font-weight: 700;}

  .faq-list {
    max-width: 860px;
    margin: 0 auto;
  }

  .faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 12px;
    border: 1px solid rgba(13, 59, 102, 0.12);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
  }

  .faq-item:hover {
    border-color: rgba(177, 0, 0, 0.3);
    box-shadow: 0 8px 22px rgba(15, 35, 70, 0.08);
  }

  .faq-item summary {
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: #0d3b66;
    list-style: none;
  }

  .faq-item summary::after {
    content: '+';
    color: #b10000;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
  }

  .faq-item[open] summary::after {
    content: '−';
  }

  .faq-item summary::-webkit-details-marker {
    display: none;
  }

  .faq-item p {
    color: #535d6b;
    line-height: 1.6;
    padding: 0 22px 20px;
    margin: 0;
  }

  @media (max-width: 768px) {
    .faq-section {
      padding: 42px 0;
    }

    .faq-title {
      font-size: 26px;
    }

    .faq-item summary {
      padding: 16px;
      font-size: 0.98rem;
    }

    .faq-item p {
      padding: 0 16px 18px;
      font-size: 0.94rem;
    }
  }
  
  /* ============================= */
  /* FOOTER */
  /* ============================= */
  .footer {
    width: 100%;
    margin: 0;
    background: #ffffff;
    padding: 60px 20px;
  }

  .footer-logo {
    width: min(300px, 90vw);
    max-height: 88px;
    height: auto;
    object-fit: contain;
  }
  
  .footer-links a {
    color: #0d3b66;
  }
  
  /* ============================= */
  /* MOBILE */
  /* ============================= */
  @media (max-width: 768px) {
    .main-headline {
      font-size: 28px;
    }

    .logo {
      width: min(320px, 92vw);
      max-height: 92px;
    }

    .footer-logo {
      width: min(240px, 88vw);
      max-height: 72px;
    }
  
    .img-card img {
      height: 100px;
    }
  }

  /* ============================= */
/* 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;
}

/* 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;
}

.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-title {
  grid-area: title;
  margin: 0;
  font-size: 1.25rem;
}

.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;
}

.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;
}

/* MOBILE */
@media (max-width: 768px) {
  .thank-card {
    padding: 35px 20px;
  }

  .thank-main-title,
  .promo-main-title {
    font-size: 1.65rem;
  }

  .promo-offer-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "image"
      "copy";
    row-gap: 12px;
  }

  .promo-offer-image {
    min-height: 140px;
  }

  .thank-buyer-logo {
    width: min(100%, 280px);
  }

  .promo-offer-image i {
    font-size: 26px;
  }

  .promo-offer-image span {
    font-size: 12px;
  }

  .sub-hero h1 {
    font-size: 24px;
  }
}