.fl-hero-pills,
.fl-hero-pills * {
  box-sizing: border-box;
}

.fl-hero-pills {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: Outfit, Arial, Helvetica, sans-serif;
}

.fl-hero-pills__row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.fl-hero-pills__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 15px;
  line-height: 20px;
  font-weight: 500;
  letter-spacing: 0;
  white-space: nowrap;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  margin-right: 10px;
}

.fl-hero-pills__pill .link_wrap{display: none !important;}

.fl-hero-pills__pill:link,
.fl-hero-pills__pill:visited,
.fl-hero-pills__pill:hover,
.fl-hero-pills__pill:active {
  color: #ffffff !important;
  text-decoration: none !important;
}

.fl-hero-pills__pill:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
}

.fl-hero-pills__pill:focus {
  outline: 3px solid #f85354;
  outline-offset: 3px;
}

@media (max-width: 767px) {
  .fl-hero-pills__row {
    gap: 8px;
  }

  .fl-hero-pills__pill {
    min-height: 36px;
    padding: 8px 14px;
    font-size: 14px;
    line-height: 18px;
  }
}

@media (max-width: 479px) {
  .fl-hero-pills__row {
    gap: 8px;
  }

  .fl-hero-pills__pill {
    width: 100%;
    justify-content: flex-start;
    white-space: normal;
    text-align: left;
  }
}

.fl-hero-actions,
    .fl-hero-actions * {
      box-sizing: border-box;
    }

    .fl-hero-actions {
      width: 100%;
      margin: 0;
      padding: 0;
      font-family: Outfit, Arial, Helvetica, sans-serif;
    }

    .fl-hero-actions__wrap {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin: 0;
      padding: 0;
    }

    .fl-hero-actions__cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      margin: 0;
      padding: 0;
    }

    .fl-hero-actions__jump-group {
      width: 100%;
      margin: 0;
      padding: 0;
    }

    .fl-hero-actions__jump-label {
      display: block;
      margin: 0 0 10px 0;
      padding: 0;
      font-size: 12px;
      line-height: 16px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.72);
    }

    .fl-hero-actions__jump-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      width: 100%;
      margin: 0;
      padding: 0;
    }

    .fl-hero-actions__btn,
    .fl-hero-actions__jump {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none !important;
      transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, filter 0.2s ease;
      -webkit-appearance: none;
      appearance: none;
      white-space: nowrap;
    }

    .fl-hero-actions__btn {
      min-height: 48px;
      padding: 12px 22px;
      border-radius: 999px;
      font-size: 16px;
      line-height: 20px;
      font-weight: 700;
    }

    .fl-hero-actions__btn:focus,
    .fl-hero-actions__jump:focus {
      outline: 3px solid #f85354;
      outline-offset: 3px;
    }

    .fl-hero-actions__btn-primary,
    .fl-hero-actions__btn-primary:link,
    .fl-hero-actions__btn-primary:visited,
    .fl-hero-actions__btn-primary:hover,
    .fl-hero-actions__btn-primary:active {
      background: #f85354;
      border: 1px solid #f85354;
      color: #ffffff !important;
    }

    .fl-hero-actions__btn-primary:hover {
      filter: brightness(1.06);
    }

    .fl-hero-actions__btn-secondary,
    .fl-hero-actions__btn-secondary:link,
    .fl-hero-actions__btn-secondary:visited,
    .fl-hero-actions__btn-secondary:hover,
    .fl-hero-actions__btn-secondary:active {
      background: transparent;
      border: 1px solid rgba(255, 255, 255, 0.24);
      color: #ffffff !important;
    }

    .fl-hero-actions__btn-secondary:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .fl-hero-actions__jump,
    .fl-hero-actions__jump:link,
    .fl-hero-actions__jump:visited,
    .fl-hero-actions__jump:hover,
    .fl-hero-actions__jump:active {
      width: 100%;
      min-height: 64px;
      padding: 18px 20px;
      justify-content: flex-start;
      text-align: left;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: #ffffff !important;
      font-size: 15px;
      line-height: 20px;
      font-weight: 600;
      white-space: normal;
    }

    .fl-hero-actions__jump:hover {
      background: rgba(255, 255, 255, 0.10);
      border-color: rgba(255, 255, 255, 0.28);
    }

    @media (max-width: 767px) {
      .fl-hero-actions__wrap {
        gap: 14px;
      }

      .fl-hero-actions__cta-row,
      .fl-hero-actions__jump-row {
        gap: 10px;
      }

      .fl-hero-actions__btn {
        min-height: 46px;
        padding: 12px 18px;
        font-size: 15px;
        line-height: 19px;
      }

      .fl-hero-actions__jump,
      .fl-hero-actions__jump:link,
      .fl-hero-actions__jump:visited,
      .fl-hero-actions__jump:hover,
      .fl-hero-actions__jump:active {
        min-height: 58px;
        padding: 16px 18px;
        border-radius: 16px;
        font-size: 15px;
        line-height: 19px;
      }
    }

    @media (max-width: 640px) {
      .fl-hero-actions__cta-row {
        flex-direction: column;
        align-items: stretch;
      }

      .fl-hero-actions__jump-row {
        grid-template-columns: 1fr;
      }

      .fl-hero-actions__btn,
      .fl-hero-actions__jump {
        width: 100%;
      }

      .fl-hero-actions__btn {
        justify-content: center;
      }
    }

    .flfaq-path-section,
    .flfaq-path-section * {
      box-sizing: border-box;
    }

    .flfaq-path-section {
      width: 100%;
      padding: 24px 16px;
      background: transparent;
      font-family: Outfit, Arial, Helvetica, sans-serif;
    }

    .flfaq-path-wrap {
      max-width: 1120px;
      margin: 0 auto;
      background: #042640;
      color: #ffffff;
      border-radius: 24px;
      padding: 28px 24px;
      box-shadow: 0 10px 30px rgba(4, 38, 64, 0.12);
    }

    .flfaq-path-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      align-items: center;
    }

    /* Foyle eyebrow style in red */
    .flfaq-path-eyebrow {
      display: inline-flex !important;
      align-items: center;
      gap: 10px;
      margin: 0 0 10px 0;
      padding: 0 !important;
      background: transparent !important;
      border: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      font-size: 12px;
      line-height: 1;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 700;
      color: #f85354 !important;
    }

    .flfaq-path-eyebrow::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: #f85354;
      flex: 0 0 auto;
    }

    .flfaq-path-heading {
      margin: 0;
      font-size: clamp(1.9rem, 1.35rem + 1.8vw, 2.625rem);
      line-height: clamp(2.2rem, 1.7rem + 1.2vw, 3rem);
      letter-spacing: -1px;
      font-weight: 700;
      color: #ffffff;
    }

    .flfaq-path-copy {
      margin: 16px 0 0 0;
      max-width: 760px;
      font-size: 18px;
      line-height: 28px;
      font-weight: 400;
      color: rgba(255, 255, 255, 0.86);
    }

    .flfaq-path-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .flfaq-path-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 12px 22px;
      border-radius: 999px;
      text-decoration: none !important;
      font-size: 16px;
      line-height: 20px;
      font-weight: 700;
      transition: all 0.2s ease;
      border: 1px solid transparent;
      white-space: nowrap;
      -webkit-appearance: none;
      appearance: none;
    }

    .flfaq-path-btn:focus {
      outline: 3px solid #f85354;
      outline-offset: 3px;
    }

    .flfaq-path-btn-primary,
    .flfaq-path-btn-primary:link,
    .flfaq-path-btn-primary:visited,
    .flfaq-path-btn-primary:hover,
    .flfaq-path-btn-primary:active {
      background: #f85354;
      color: #ffffff !important;
      border-color: #f85354;
    }

    .flfaq-path-btn-primary:hover {
      filter: brightness(1.06);
    }

    .flfaq-path-btn-secondary,
    .flfaq-path-btn-secondary:link,
    .flfaq-path-btn-secondary:visited,
    .flfaq-path-btn-secondary:hover,
    .flfaq-path-btn-secondary:active {
      background: transparent;
      color: #ffffff !important;
      border-color: rgba(255, 255, 255, 0.24);
    }

    .flfaq-path-btn-secondary:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .flfaq-path-note {
      margin: 10px 0 0 0;
      font-size: 14px;
      line-height: 22px;
      color: rgba(255, 255, 255, 0.72);
    }

    @media (min-width: 900px) {
      .flfaq-path-wrap {
        padding: 36px 40px;
      }

      .flfaq-path-grid {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 32px;
      }

      .flfaq-path-actions {
        justify-content: flex-end;
      }
    }

    @media (max-width: 639px) {
      .flfaq-path-section {
        padding: 20px 14px;
      }

      .flfaq-path-wrap {
        border-radius: 20px;
        padding: 24px 18px;
      }

      .flfaq-path-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .flfaq-path-btn {
        width: 100%;
      }

      .flfaq-path-copy {
        font-size: 16px;
        line-height: 26px;
      }
    }

    .fl-location-banner,
    .fl-location-banner * {
      box-sizing: border-box;
    }

    .fl-location-banner {
      --fl-navy: #042640;
      --fl-deep-blue: #084574;
      --fl-accent: #f85354;
      --fl-white: #ffffff;
      --fl-copy: rgba(255, 255, 255, 0.90);
      --fl-soft: rgba(255, 255, 255, 0.78);
      --fl-border: rgba(255, 255, 255, 0.14);
      --fl-shadow: 0 18px 44px rgba(4, 38, 64, 0.16);
      margin: 0;
      padding: 0;
      font-family: "Outfit", Arial, sans-serif;
      color: var(--fl-white);
    }

    .fl-location-banner__wrap {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      background:
        radial-gradient(circle at top right, rgba(248, 83, 84, 0.18) 0, rgba(248, 83, 84, 0) 34%),
        linear-gradient(135deg, #042640 0%, #084574 100%);
      box-shadow: var(--fl-shadow);
      padding: clamp(22px, 4vw, 34px);
    }

    .fl-location-banner__wrap::after {
      content: "";
      position: absolute;
      right: -40px;
      bottom: -40px;
      width: 180px;
      height: 180px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
      pointer-events: none;
    }

    .fl-location-banner .fl-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 14px;
      padding: 0 !important;
      background: transparent !important;
      border: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      font-family: "Outfit", Arial, sans-serif;
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: #f85354;
      position: relative;
      z-index: 1;
    }

    .fl-location-banner .fl-eyebrow::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: #f85354;
      flex: 0 0 auto;
    }

    .fl-location-banner__grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
      gap: clamp(18px, 3vw, 30px);
      align-items: center;
    }

    .fl-location-banner__title {
      margin: 0 0 10px;
      font-family: "Outfit", Arial, sans-serif;
      font-size: clamp(30px, 4.3vw, 42px);
      line-height: 1.14;
      letter-spacing: -1px;
      font-weight: 700;
      color: var(--fl-white);
      text-wrap: balance;
      max-width: 18ch;
    }

    .fl-location-banner__copy {
      margin: 0;
      max-width: 52rem;
      font-family: "Outfit", Arial, sans-serif;
      font-size: 18px;
      line-height: 24px;
      font-weight: 400;
      color: var(--fl-copy);
    }

    .fl-location-banner__facts {
      display: grid;
      gap: 10px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      margin: 18px 0 0;
      padding: 0;
      list-style: none;
      max-width: 34rem;
    }

    .fl-location-banner__facts li {
      min-width: 0;
      border: 1px solid var(--fl-border);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.06);
      padding: 12px 12px 11px;
      list-style: none;
    }

    .fl-location-banner__facts li::marker {
      content: "";
    }

    .fl-location-banner__fact-label {
      display: block;
      margin: 0 0 4px;
      font-family: "Outfit", Arial, sans-serif;
      font-size: 11px;
      line-height: 1.1;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, 0.68);
    }

    .fl-location-banner__fact-value {
      display: block;
      font-family: "Outfit", Arial, sans-serif;
      font-size: 16px;
      line-height: 22px;
      font-weight: 500;
      color: var(--fl-white);
    }

    .fl-location-banner__side {
      display: grid;
      gap: 14px;
      align-content: center;
      justify-items: start;
    }

    .fl-location-banner__support {
      margin: 0;
      width: 100%;
      border: 1px solid var(--fl-border);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.08);
      padding: 15px 16px;
      font-family: "Outfit", Arial, sans-serif;
      font-size: 16px;
      line-height: 24px;
      font-weight: 400;
      color: var(--fl-soft);
    }

    .fl-location-banner__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
    }

    .fl-location-banner__btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 18px;
      border-radius: 999px;
      border: 1px solid transparent;
      text-decoration: none;
      font-family: "Outfit", Arial, sans-serif;
      font-size: 15px;
      line-height: 1.2;
      font-weight: 700;
      transition: transform 0.18s ease, opacity 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
      white-space: nowrap;
    }

    .fl-location-banner__btn:hover,
    .fl-location-banner__btn:focus-visible {
      transform: translateY(-1px);
      opacity: 0.98;
      outline: none;
    }

    .fl-location-banner__btn--primary {
      background: #f85354;
      color: #ffffff !important;
      box-shadow: 0 12px 28px rgba(248, 83, 84, 0.26);
    }

    .fl-location-banner__btn--secondary {
      background: transparent;
      color: #ffffff !important;
      border-color: rgba(255, 255, 255, 0.24);
    }

    .fl-location-banner__btn:visited,
    .fl-location-banner__btn--primary:visited,
    .fl-location-banner__btn--secondary:visited {
      color: inherit;
    }

    @media (max-width: 980px) {
      .fl-location-banner__grid {
        grid-template-columns: 1fr;
      }

      .fl-location-banner__title {
        max-width: none;
      }
    }

    @media (max-width: 760px) {
      .fl-location-banner__wrap {
        border-radius: 24px;
        padding: 18px;
      }

      .fl-location-banner__facts {
        grid-template-columns: 1fr;
        max-width: none;
      }

      .fl-location-banner__side {
        justify-items: stretch;
      }

      .fl-location-banner__actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
      }

      .fl-location-banner__btn {
        width: 100%;
        max-width: none;
        text-align: center;
      }
    }

    /*FL MVA Jump Guide*/

    .fl-mva-jump-guide,
    .fl-mva-jump-guide * {
      box-sizing: border-box;
    }

    .fl-mva-jump-guide {
      margin: 28px 0 32px;
      font-family: Outfit, Arial, sans-serif;
      color: #676767;
    }

    .fl-mva-jump-guide__shell {
      background: #ffffff;
      border: 1px solid rgba(4, 38, 64, 0.10);
      border-radius: 24px;
      box-shadow: 0 18px 40px rgba(4, 38, 64, 0.06);
      padding: 24px;
      overflow: hidden;
    }

    .fl-mva-jump-guide__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 12px;
      padding: 0 !important;
      background: transparent !important;
      border: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      color: #f85354;
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .fl-mva-jump-guide__eyebrow::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: #f85354;
      flex: 0 0 auto;
    }

    .fl-mva-jump-guide__title {
      margin: 0 0 10px;
      color: #042640;
      font-size: clamp(30px, 3vw, 42px);
      line-height: 1.14;
      letter-spacing: -1px;
      font-weight: 700;
      text-wrap: balance;
    }

    .fl-mva-jump-guide__intro {
      margin: 0 0 18px;
      max-width: 860px;
      color: #676767;
      font-size: 18px;
      line-height: 24px;
      font-weight: 400;
    }

    .fl-mva-jump-guide__intro a {
      color: #084574;
      font-weight: 700;
      text-decoration: none;
    }

    .fl-mva-jump-guide__intro a:hover,
    .fl-mva-jump-guide__intro a:focus {
      text-decoration: underline;
    }

    .fl-mva-jump-guide__grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .fl-mva-jump-guide__link {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      min-height: 100%;
      padding: 14px;
      border: 1px solid rgba(4, 38, 64, 0.10);
      border-radius: 16px;
      background: #ffffff;
      text-decoration: none;
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    }

    .fl-mva-jump-guide__link:hover,
    .fl-mva-jump-guide__link:focus {
      text-decoration: none;
      transform: translateY(-1px);
      box-shadow: 0 12px 24px rgba(4, 38, 64, 0.07);
      border-color: rgba(8, 69, 116, 0.22);
      background: #fbfdff;
    }

    .fl-mva-jump-guide__link:focus {
      outline: 3px solid rgba(8, 69, 116, 0.18);
      outline-offset: 2px;
    }

    .fl-mva-jump-guide__num {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: #042640;
      color: #ffffff;
      font-size: 14px;
      line-height: 34px;
      text-align: center;
      font-weight: 700;
      flex: 0 0 34px;
    }

    .fl-mva-jump-guide__copy {
      min-width: 0;
      flex: 1 1 auto;
    }

    .fl-mva-jump-guide__copy strong {
      display: block;
      margin: 0 0 4px;
      color: #042640;
      font-size: 20px;
      line-height: 30px;
      font-weight: 500;
      letter-spacing: 0;
    }

    .fl-mva-jump-guide__copy span {
      display: block;
      color: #676767;
      font-size: 18px;
      line-height: 24px;
      font-weight: 400;
    }

    .fl-mva-jump-guide__arrow {
      color: #f85354;
      font-size: 20px;
      line-height: 1;
      flex: 0 0 auto;
      padding-top: 4px;
    }

    .fl-mva-jump-guide__note {
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid rgba(4, 38, 64, 0.10);
      color: #676767;
      font-size: 18px;
      line-height: 24px;
      font-weight: 400;
    }

    .fl-mva-jump-guide__note a {
      color: #084574;
      font-weight: 700;
      text-decoration: none;
    }

    .fl-mva-jump-guide__note a:hover {
      text-decoration: underline;
    }

    @media (max-width: 900px) {
      .fl-mva-jump-guide__shell {
        padding: 20px;
      }

      .fl-mva-jump-guide__grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .fl-mva-jump-guide {
        margin: 24px 0 28px;
      }

      .fl-mva-jump-guide__shell {
        border-radius: 20px;
        padding: 16px;
      }

      .fl-mva-jump-guide__title {
        font-size: clamp(26px, 7vw, 34px);
        line-height: 1.15;
      }

      .fl-mva-jump-guide__intro,
      .fl-mva-jump-guide__copy span,
      .fl-mva-jump-guide__note {
        font-size: 18px;
        line-height: 24px;
      }

      .fl-mva-jump-guide__link {
        padding: 12px;
        border-radius: 14px;
      }

      .fl-mva-jump-guide__num {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 13px;
        flex-basis: 30px;
      }

      .fl-mva-jump-guide__copy strong {
        font-size: 20px;
        line-height: 30px;
      }
    }

    /*MVA CTA Block*/

    .foyle-mva-cta-block,
    .foyle-mva-cta-block * {
      box-sizing: border-box;
    }

    .foyle-mva-cta-shell {
      width: 100%;
      margin: 32px 0;
      padding: 0;
      font-family: 'Outfit', Arial, sans-serif;
    }

    .foyle-mva-cta-card {
      background: linear-gradient(135deg, #042640 0%, #084574 100%);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 24px;
      box-shadow: 0 18px 40px rgba(4, 38, 64, 0.18);
      overflow: hidden;
      position: relative;
    }

    .foyle-mva-cta-card:before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top right, rgba(248, 83, 84, 0.16), transparent 32%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 28%);
      pointer-events: none;
    }

    .foyle-mva-cta-inner {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      padding: 34px 36px;
    }

    .foyle-mva-cta-copy {
      flex: 1 1 0%;
      min-width: 0;
    }

    /* Fixed: true Foyle-style eyebrow label */
    .foyle-mva-cta-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 14px 0;
      padding: 0 !important;
      background: transparent !important;
      border: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      color: #ffffff;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.2;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .foyle-mva-cta-kicker::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: #f85354;
      flex: 0 0 auto;
    }

    .foyle-mva-cta-kicker-dot {
      display: none !important;
    }

    .foyle-mva-cta-title {
      margin: 0 0 12px 0;
      color: #ffffff;
      font-size: clamp(28px, 3vw, 40px);
      line-height: 1.08;
      font-weight: 700;
      letter-spacing: -0.02em;
      text-wrap: balance;
    }

    .foyle-mva-cta-text {
      max-width: 760px;
      margin: 0;
      color: rgba(255, 255, 255, 0.92);
      font-size: 18px;
      line-height: 1.6;
      font-weight: 400;
    }

    .foyle-mva-cta-actions {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      justify-content: center;
      gap: 12px;
      flex: 0 0 280px;
      width: 280px;
    }

    .foyle-mva-cta-button,
    .foyle-mva-cta-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-height: 54px;
      padding: 14px 18px;
      border-radius: 14px;
      text-decoration: none;
      text-align: center;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
      font-weight: 700;
      font-size: 16px;
      line-height: 1.3;
      white-space: normal;
    }

    .foyle-mva-cta-button {
      background: #f85354;
      color: #ffffff !important;
      box-shadow: 0 12px 24px rgba(248, 83, 84, 0.22);
    }

    .foyle-mva-cta-button:hover,
    .foyle-mva-cta-button:focus {
      background: #ff6667;
      color: #ffffff !important;
      transform: translateY(-1px);
      box-shadow: 0 14px 28px rgba(248, 83, 84, 0.28);
    }

    .foyle-mva-cta-link {
      background: rgba(255, 255, 255, 0.08);
      color: #ffffff !important;
      border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .foyle-mva-cta-link:hover,
    .foyle-mva-cta-link:focus {
      background: rgba(255, 255, 255, 0.14);
      color: #ffffff !important;
      transform: translateY(-1px);
    }

    .foyle-mva-cta-button:focus,
    .foyle-mva-cta-link:focus {
      outline: 3px solid rgba(255, 255, 255, 0.34);
      outline-offset: 2px;
    }

    .foyle-mva-cta-note {
      margin-top: 12px;
      color: rgba(255, 255, 255, 0.75);
      font-size: 14px;
      line-height: 1.5;
    }

    @media (max-width: 960px) {
      .foyle-mva-cta-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
      }

      .foyle-mva-cta-copy {
        flex: 0 0 auto;
        width: 100%;
      }

      .foyle-mva-cta-actions {
        width: 100%;
        max-width: none;
        flex: 0 0 auto;
      }

      .foyle-mva-cta-text {
        max-width: none;
      }
    }

    @media (max-width: 640px) {
      .foyle-mva-cta-shell {
        margin: 24px 0;
      }

      .foyle-mva-cta-card {
        border-radius: 20px;
      }

      .foyle-mva-cta-inner {
        padding: 24px 18px;
        gap: 16px;
      }

      .foyle-mva-cta-kicker {
        font-size: 12px;
        margin-bottom: 12px;
      }

      .foyle-mva-cta-title {
        font-size: clamp(24px, 7vw, 32px);
        line-height: 1.12;
        margin-bottom: 10px;
      }

      .foyle-mva-cta-text {
        font-size: 16px;
        line-height: 1.55;
      }

      .foyle-mva-cta-note {
        font-size: 13px;
        margin-top: 10px;
      }

      .foyle-mva-cta-actions {
        gap: 10px;
      }

      .foyle-mva-cta-button,
      .foyle-mva-cta-link {
        min-height: 50px;
        padding: 13px 16px;
        font-size: 15px;
        border-radius: 12px;
      }
    }

    /*MVA Related*/

    .fl-mva-related,
    .fl-mva-related * {
      box-sizing: border-box;
    }

    .fl-mva-related {
      margin: 40px 0;
      font-family: Outfit, Arial, sans-serif;
      color: #16324d;
    }

    .fl-mva-related__shell {
      background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
      border: 1px solid #dbe5ee;
      border-radius: 24px;
      box-shadow: 0 18px 40px rgba(4, 38, 64, 0.08);
      overflow: hidden;
    }

    .fl-mva-related__head {
      padding: 26px 24px 18px;
      border-bottom: 1px solid #e7eef5;
      background: linear-gradient(135deg, rgba(4, 38, 64, 0.03) 0%, rgba(8, 69, 116, 0.06) 100%);
    }

    /* Fixed: true Foyle-style eyebrow label */
    .fl-mva-related__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 12px;
      padding: 0 !important;
      background: transparent !important;
      border: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      color: #f85354;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      line-height: 1;
    }

    .fl-mva-related__eyebrow:before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: #f85354;
      display: inline-block;
      flex: 0 0 auto;
    }

    .fl-mva-related__title {
      margin: 0 0 10px;
      color: #042640;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.08;
      font-weight: 700;
      letter-spacing: -0.02em;
      text-wrap: balance;
    }

    .fl-mva-related__intro {
      margin: 0;
      max-width: 860px;
      color: #5f7387;
      font-size: 17px;
      line-height: 1.65;
    }

    .fl-mva-related__body {
      padding: 24px;
      display: grid;
      gap: 18px;
    }

    .fl-mva-related__group {
      border: 1px solid #e3ebf2;
      border-radius: 20px;
      background: #ffffff;
      padding: 20px;
    }

    .fl-mva-related__group-head {
      margin-bottom: 14px;
    }

    .fl-mva-related__group-title {
      margin: 0 0 6px;
      color: #042640;
      font-size: clamp(22px, 3vw, 30px);
      line-height: 1.12;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .fl-mva-related__group-text {
      margin: 0;
      color: #6b8095;
      font-size: 15px;
      line-height: 1.6;
      max-width: 860px;
    }

    .fl-mva-related__grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 16px;
    }

    .fl-mva-related__link {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 14px;
      min-height: 100%;
      padding: 15px 16px;
      border: 1px solid #dbe5ee;
      border-radius: 16px;
      background: #ffffff;
      text-decoration: none;
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    }

    .fl-mva-related__link:hover,
    .fl-mva-related__link:focus {
      text-decoration: none;
      transform: translateY(-1px);
      box-shadow: 0 12px 24px rgba(4, 38, 64, 0.07);
      border-color: #b8c9d8;
      background: #fbfdff;
    }

    .fl-mva-related__link:focus {
      outline: 3px solid rgba(8, 69, 116, 0.18);
      outline-offset: 2px;
    }

    .fl-mva-related__link-copy strong {
      display: block;
      margin: 0 0 4px;
      color: #16324d;
      font-size: 16px;
      line-height: 1.35;
      font-weight: 700;
    }

    .fl-mva-related__link-copy span {
      display: block;
      color: #70859a;
      font-size: 14px;
      line-height: 1.5;
      font-weight: 400;
    }

    .fl-mva-related__arrow {
      flex: 0 0 auto;
      color: #f85354;
      font-size: 22px;
      line-height: 1;
      padding-top: 1px;
    }

    @media (max-width: 900px) {
      .fl-mva-related {
        margin: 32px 0;
      }

      .fl-mva-related__head,
      .fl-mva-related__body {
        padding: 20px;
      }

      .fl-mva-related__grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .fl-mva-related__shell {
        border-radius: 20px;
      }

      .fl-mva-related__head,
      .fl-mva-related__body {
        padding: 18px;
      }

      .fl-mva-related__group {
        padding: 16px;
        border-radius: 16px;
      }

      .fl-mva-related__title {
        font-size: clamp(24px, 7vw, 34px);
      }

      .fl-mva-related__group-title {
        font-size: clamp(20px, 6vw, 26px);
      }

      .fl-mva-related__intro,
      .fl-mva-related__group-text {
        font-size: 15px;
      }

      .fl-mva-related__link {
        padding: 14px 14px;
      }

      .fl-mva-related__link-copy strong {
        font-size: 15px;
      }

      .fl-mva-related__link-copy span {
        font-size: 13px;
      }
    }

    /*Process CLaim*/

    .fl-process-snapshot,
    .fl-process-snapshot * {
      box-sizing: border-box;
    }

    .fl-process-snapshot {
      --fl-navy: #042640;
      --fl-deep-blue: #084574;
      --fl-accent: #f85354;
      --fl-body: #676767;
      --fl-card-bg: #ffffff;
      --fl-card-bg-hover: #f7fafc;
      --fl-border: #c9d6e3;
      --fl-border-hover: #b7c9dc;
      --fl-pill-bg: #eef2f6;
      --fl-shadow: 0 18px 44px rgba(4, 38, 64, 0.08);
      --fl-shadow-hover: 0 24px 52px rgba(4, 38, 64, 0.12);
      --fl-radius: 28px;
      width: 100%;
      margin: 0;
      padding: 0;
      background: transparent;
      font-family: Outfit, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    .fl-process-snapshot__inner {
      width: 100%;
      max-width: 1360px;
      margin: 0 auto;
    }

    .fl-process-snapshot .section-kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 16px;
      color: var(--fl-accent);
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .fl-process-snapshot .section-kicker::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: var(--fl-accent);
      flex: 0 0 auto;
    }

    .fl-process-snapshot .major {
      margin: 0;
      color: var(--fl-navy);
      font-size: clamp(32px, 5vw, 58px);
      line-height: 1.07;
      letter-spacing: -0.03em;
      font-weight: 700;
    }

    .fl-process-snapshot .lead {
      margin: 18px 0 0;
      color: var(--fl-body);
      font-size: 18px;
      line-height: 1.65;
      font-weight: 400;
      max-width: 980px;
    }

    .fl-process-snapshot__grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-top: 28px;
    }

    .fl-process-snapshot .step {
      min-width: 0;
      height: 100%;
      background: var(--fl-card-bg);
      border: 1px solid var(--fl-border);
      border-radius: 24px;
      padding: 22px;
      box-shadow: var(--fl-shadow);
      transition:
        transform 0.22s ease,
        background-color 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
    }

    .fl-process-snapshot .step-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 16px;
      background: var(--fl-pill-bg);
      color: var(--fl-deep-blue);
      font-size: 14px;
      line-height: 1;
      font-weight: 800;
    }

    .fl-process-snapshot .step h3 {
      margin: 18px 0 14px;
      color: var(--fl-navy);
      font-size: clamp(22px, 2.2vw, 30px);
      line-height: 1.2;
      letter-spacing: -0.03em;
      font-weight: 700;
    }

    .fl-process-snapshot .step p {
      margin: 0;
      color: var(--fl-body);
      font-size: 18px;
      line-height: 1.55;
      font-weight: 400;
    }

    .fl-process-snapshot .step:focus-within {
      transform: translateY(-4px);
      background: var(--fl-card-bg-hover);
      border-color: var(--fl-border-hover);
      box-shadow: var(--fl-shadow-hover);
    }

    @media (hover: hover) and (pointer: fine) {
      .fl-process-snapshot .step:hover {
        transform: translateY(-6px);
        background: var(--fl-card-bg-hover);
        border-color: var(--fl-border-hover);
        box-shadow: var(--fl-shadow-hover);
      }
    }

    @media (max-width: 1100px) {
      .fl-process-snapshot__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 767px) {
      .fl-process-snapshot .major {
        font-size: clamp(28px, 10vw, 42px);
      }

      .fl-process-snapshot .lead,
      .fl-process-snapshot .step p {
        font-size: 18px;
        line-height: 1.65;
      }

      .fl-process-snapshot__grid {
        grid-template-columns: 1fr;
      }

      .fl-process-snapshot .step {
        padding: 20px 18px;
        border-radius: 22px;
      }

      .fl-process-snapshot .step h3 {
        margin: 16px 0 12px;
        font-size: clamp(20px, 7vw, 28px);
      }
    }

    /*Claim Intro Cards*/

    .fl-claim-intro-cards,
    .fl-claim-intro-cards * {
      box-sizing: border-box;
    }

    .fl-claim-intro-cards {
      --fl-navy: #042640;
      --fl-deep-blue: #084574;
      --fl-accent: #f85354;
      --fl-body: #676767;
      --fl-card-bg: #ffffff;
      --fl-border: #c9d6e3;
      --fl-shadow: 0 18px 44px rgba(4, 38, 64, 0.08);
      --fl-radius: 28px;
      font-family: Outfit, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      background: transparent;
      padding: 0;
      margin: 0;
      width: 100%;
    }

    .fl-claim-intro-cards__inner {
      width: 100%;
      max-width: 1360px;
      margin: 0 auto;
    }

    .fl-claim-intro-cards__grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: clamp(18px, 2.6vw, 30px);
      align-items: stretch;
    }

    .fl-claim-intro-cards__card {
      min-width: 0;
      background: var(--fl-card-bg);
      border: 1px solid var(--fl-border);
      border-radius: var(--fl-radius);
      box-shadow: var(--fl-shadow);
      padding: clamp(24px, 4vw, 38px);
    }

    .fl-claim-intro-cards .fl-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 14px;
      padding: 0;
      background: transparent;
      border: 0;
      border-radius: 0;
      box-shadow: none;
      color: var(--fl-accent);
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .fl-claim-intro-cards .fl-eyebrow::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: var(--fl-accent);
      flex: 0 0 auto;
    }

    .fl-claim-intro-cards__title {
      margin: 0 0 18px;
      color: var(--fl-navy);
      font-size: clamp(32px, 5vw, 58px);
      line-height: 1.06;
      letter-spacing: -0.03em;
      font-weight: 700;
      text-wrap: balance;
    }

    .fl-claim-intro-cards__copy,
    .fl-claim-intro-cards__copy p {
      margin: 0;
      color: var(--fl-body);
      font-size: clamp(18px, 2vw, 22px);
      line-height: 1.65;
      font-weight: 400;
    }

    .fl-claim-intro-cards__copy p + p {
      margin-top: 20px;
    }

    .fl-claim-intro-cards__insight {
      position: relative;
      padding-left: clamp(18px, 2.2vw, 24px);
    }

    .fl-claim-intro-cards__insight::before {
      content: "";
      position: absolute;
      left: 0;
      top: 4px;
      bottom: 4px;
      width: 4px;
      border-radius: 4px;
      background: var(--fl-accent);
    }

    .fl-sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    @media (max-width: 980px) {
      .fl-claim-intro-cards__grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .fl-claim-intro-cards__card {
        border-radius: 24px;
        padding: 22px 18px;
      }

      .fl-claim-intro-cards .fl-eyebrow {
        font-size: 11px;
      }

      .fl-claim-intro-cards__title {
        font-size: clamp(28px, 10vw, 42px);
      }

      .fl-claim-intro-cards__copy,
      .fl-claim-intro-cards__copy p {
        font-size: 18px;
        line-height: 1.7;
      }
    }

    /* Claim Process Page Jump */

    .fl-page-jump-nav,
    .fl-page-jump-nav * {
      box-sizing: border-box;
    }

    .fl-page-jump-nav {
      --fl-navy: #042640;
      --fl-deep-blue: #084574;
      --fl-accent: #f85354;
      --fl-body: #676767;
      --fl-white: #ffffff;
      --fl-border: #d9e4ef;
      --fl-border-strong: #c7d7e6;
      --fl-soft: #f7fbfe;
      --fl-soft-2: #eef4f9;
      --fl-shadow: 0 18px 44px rgba(4, 38, 64, 0.08);
      width: 100%;
      margin: 0;
      padding: 0;
      background: transparent;
      font-family: Outfit, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    .fl-page-jump-nav__inner {
      width: 100%;
      max-width: 1360px;
      margin: 0 auto;
    }

    .fl-page-jump-nav__panel {
      display: grid;
      grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
      gap: 22px;
      align-items: center;
      padding: 22px 24px;
      border: 1px solid var(--fl-border);
      border-radius: 28px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 254, 0.96) 100%);
      box-shadow: var(--fl-shadow);
    }

    .fl-page-jump-nav__label-wrap {
      min-width: 0;
      padding-right: 6px;
    }

    .fl-page-jump-nav__label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0;
      color: var(--fl-accent);
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .fl-page-jump-nav__label::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: var(--fl-accent);
      flex: 0 0 auto;
    }

    .fl-page-jump-nav__links-wrap {
      min-width: 0;
      position: relative;
    }

    .fl-page-jump-nav__links-wrap::before {
      content: "";
      position: absolute;
      left: -11px;
      top: 4px;
      bottom: 4px;
      width: 1px;
      background: var(--fl-border);
    }

    .fl-page-jump-nav__links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .fl-page-jump-nav__link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 12px 18px;
      border-radius: 999px;
      border: 1px solid var(--fl-border-strong);
      background: rgba(255, 255, 255, 0.9);
      color: var(--fl-navy);
      text-decoration: none;
      font-size: 16px;
      line-height: 1.2;
      font-weight: 700;
      white-space: nowrap;
      box-shadow: 0 8px 24px rgba(4, 38, 64, 0.04);
      transition:
        transform 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        color 0.18s ease;
    }

    .fl-page-jump-nav__link:hover,
    .fl-page-jump-nav__link:focus-visible {
      text-decoration: none;
      outline: none;
      background: var(--fl-soft-2);
      border-color: #b6cadc;
      color: var(--fl-navy);
      box-shadow: 0 12px 26px rgba(4, 38, 64, 0.08);
    }

    @media (hover: hover) and (pointer: fine) {
      .fl-page-jump-nav__link:hover {
        transform: translateY(-2px);
      }
    }

    .fl-page-jump-nav__link:focus-visible {
      box-shadow:
        0 0 0 3px rgba(248, 83, 84, 0.16),
        0 12px 26px rgba(4, 38, 64, 0.08);
    }

    @media (max-width: 980px) {
      .fl-page-jump-nav__panel {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 18px;
      }

      .fl-page-jump-nav__links-wrap::before {
        left: 0;
        right: 0;
        top: -8px;
        bottom: auto;
        width: auto;
        height: 1px;
      }
    }

    @media (max-width: 767px) {
      .fl-page-jump-nav__panel {
        border-radius: 24px;
      }

      .fl-page-jump-nav__label {
        font-size: 11px;
      }

      .fl-page-jump-nav__links {
        gap: 10px;
      }

      .fl-page-jump-nav__link {
        min-height: 46px;
        padding: 11px 16px;
        font-size: 15px;
        white-space: normal;
        text-align: center;
      }
    }

    /*Claim Process Closing CTA*/

    .fl-closing-cta,
    .fl-closing-cta * {
      box-sizing: border-box;
    }

    .fl-closing-cta {
      --fl-navy: #042640;
      --fl-deep-blue: #084574;
      --fl-accent: #f85354;
      --fl-white: #ffffff;
      --fl-text-soft: rgba(255, 255, 255, 0.92);
      --fl-btn-border: rgba(255, 255, 255, 0.22);
      --fl-btn-bg-soft: rgba(255, 255, 255, 0.08);
      --fl-shadow: 0 28px 72px rgba(4, 38, 64, 0.16);
      width: 100%;
      margin: 0;
      padding: 0;
      background: transparent;
      font-family: Outfit, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    .fl-closing-cta__inner {
      width: 100%;
      max-width: 1360px;
      margin: 0 auto;
    }

    .fl-closing-cta__panel {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      padding: clamp(28px, 4vw, 42px);
      background:
        radial-gradient(circle at 12% 100%, rgba(248, 83, 84, 0.14), transparent 28%),
        linear-gradient(135deg, var(--fl-navy) 0%, #063454 56%, var(--fl-deep-blue) 100%);
      box-shadow: var(--fl-shadow);
    }

    .fl-closing-cta__panel::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 90%);
    }

    .fl-closing-cta__content {
      position: relative;
      z-index: 1;
      max-width: 920px;
    }

    .fl-closing-cta h2,
    .fl-closing-cta h2 a,
    .fl-closing-cta h2 a:visited,
    .fl-closing-cta h2 a:hover,
    .fl-closing-cta h2 a:focus {
      margin: 0;
      color: #ffffff !important;
      -webkit-text-fill-color: #ffffff !important;
      font-size: clamp(32px, 5vw, 58px);
      line-height: 1.08;
      letter-spacing: -0.03em;
      font-weight: 700;
      text-wrap: balance;
      text-decoration: none;
    }

    .fl-closing-cta p,
    .fl-closing-cta p a,
    .fl-closing-cta p a:visited,
    .fl-closing-cta p a:hover,
    .fl-closing-cta p a:focus {
      margin: 16px 0 0;
      max-width: 820px;
      color: rgba(255, 255, 255, 0.92) !important;
      -webkit-text-fill-color: rgba(255, 255, 255, 0.92) !important;
      font-size: 18px;
      line-height: 1.6;
      font-weight: 400;
      text-decoration: none;
    }

    .fl-closing-cta__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
      align-items: center;
    }

    .fl-closing-cta__btn,
    .fl-closing-cta__btn:link,
    .fl-closing-cta__btn:visited,
    .fl-closing-cta__btn:hover,
    .fl-closing-cta__btn:focus,
    .fl-closing-cta__btn:active {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 0 22px;
      border-radius: 999px;
      text-decoration: none !important;
      font-size: 16px;
      line-height: 1.2;
      font-weight: 700;
      white-space: nowrap;
      transition:
        transform 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        color 0.18s ease;
    }

    .fl-closing-cta__btn--primary,
    .fl-closing-cta__btn--primary:link,
    .fl-closing-cta__btn--primary:visited,
    .fl-closing-cta__btn--primary:hover,
    .fl-closing-cta__btn--primary:focus,
    .fl-closing-cta__btn--primary:active {
      background: var(--fl-accent);
      color: #ffffff !important;
      -webkit-text-fill-color: #ffffff !important;
      border: 1px solid transparent;
      box-shadow: 0 18px 40px rgba(248, 83, 84, 0.24);
    }

    .fl-closing-cta__btn--secondary,
    .fl-closing-cta__btn--secondary:link,
    .fl-closing-cta__btn--secondary:visited,
    .fl-closing-cta__btn--secondary:hover,
    .fl-closing-cta__btn--secondary:focus,
    .fl-closing-cta__btn--secondary:active {
      background: var(--fl-btn-bg-soft);
      color: #ffffff !important;
      -webkit-text-fill-color: #ffffff !important;
      border: 1px solid var(--fl-btn-border);
      box-shadow: none;
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
    }

    .fl-closing-cta__btn:hover,
    .fl-closing-cta__btn:focus-visible {
      text-decoration: none !important;
      outline: none;
    }

    @media (hover: hover) and (pointer: fine) {
      .fl-closing-cta__btn--primary:hover,
      .fl-closing-cta__btn--secondary:hover {
        transform: translateY(-1px);
      }

      .fl-closing-cta__btn--primary:hover {
        filter: brightness(0.98);
      }

      .fl-closing-cta__btn--secondary:hover {
        background: rgba(255, 255, 255, 0.12);
      }
    }

    .fl-closing-cta__btn:focus-visible {
      box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.18),
        0 0 0 6px rgba(248, 83, 84, 0.18);
    }

    @media (max-width: 767px) {
      .fl-closing-cta__panel {
        border-radius: 24px;
        padding: 24px 18px;
      }

      .fl-closing-cta h2 {
        font-size: clamp(28px, 10vw, 42px);
      }

      .fl-closing-cta p {
        font-size: 18px;
        line-height: 1.65;
      }

      .fl-closing-cta__actions {
        flex-direction: column;
        align-items: stretch;
      }

      .fl-closing-cta__btn,
      .fl-closing-cta__btn:link,
      .fl-closing-cta__btn:visited,
      .fl-closing-cta__btn:hover,
      .fl-closing-cta__btn:focus,
      .fl-closing-cta__btn:active {
        width: 100%;
        min-height: 52px;
        padding: 0 18px;
        text-align: centre;
        white-space: normal;
      }
    }


    @import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;700&display=swap");

    .fl-related-guides,
    .fl-related-guides * {
      box-sizing: border-box;
    }

    .fl-related-guides {
      --fl-navy: #042640;
      --fl-deep-blue: #084574;
      --fl-accent: #f85354;
      --fl-body: #676767;
      --fl-muted: #5e7486;
      --fl-card-bg: #ffffff;
      --fl-border: #d7e1ea;
      --fl-border-hover: #cfd9e3;
      --fl-shadow-soft: 0 10px 24px rgba(4, 38, 64, 0.06);
      --fl-radius-panel: 30px;
      --fl-radius-card: 24px;
      margin: 0;
      padding: 0;
      font-family: "Outfit", Arial, sans-serif;
      color: var(--fl-body);
    }

    .fl-related-guides__panel {
      border: 1px solid var(--fl-border);
      border-radius: var(--fl-radius-panel);
      background: #ffffff;
      padding: clamp(22px, 4vw, 36px);
      box-shadow: 0 18px 44px rgba(4, 38, 64, 0.06);
    }

    .fl-related-guides .fl-eyebrow {
      --fl-text: #f85354;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 14px;
      padding: 0 !important;
      background: transparent !important;
      border: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      font-family: "Outfit", Arial, sans-serif;
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--fl-text);
    }

    .fl-related-guides .fl-eyebrow::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: var(--fl-accent);
      flex: 0 0 auto;
    }

    .fl-related-guides__head {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
      gap: clamp(18px, 3vw, 28px);
      align-items: end;
      margin-bottom: clamp(22px, 3vw, 30px);
    }

    .fl-related-guides__title {
      margin: 0 0 10px;
      font-family: "Outfit", Arial, sans-serif;
      font-size: clamp(34px, 4.4vw, 42px);
      line-height: 1.14;
      letter-spacing: -1px;
      font-weight: 700;
      color: var(--fl-navy);
      text-wrap: balance;
    }

    .fl-related-guides__intro {
      margin: 0;
      font-family: "Outfit", Arial, sans-serif;
      font-size: 18px;
      line-height: 24px;
      font-weight: 400;
      color: var(--fl-body);
      max-width: 44rem;
    }

    .fl-related-guides__support {
      margin: 0;
      padding: 16px 18px;
      border: 1px solid rgba(8, 69, 116, 0.14);
      border-left: 4px solid var(--fl-accent);
      border-radius: 18px;
      background: #f8fbfd;
      font-family: "Outfit", Arial, sans-serif;
      font-size: 16px;
      line-height: 24px;
      font-weight: 400;
      color: var(--fl-muted);
    }

    .fl-related-guides__rows {
      display: grid;
      gap: 18px;
    }

    .fl-related-guides__row {
      border: 1px solid rgba(4, 38, 64, 0.08);
      border-radius: 24px;
      padding: clamp(18px, 2.5vw, 24px);
      background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
    }

    .fl-related-guides__row-head {
      margin-bottom: 16px;
    }

    .fl-related-guides__row-title {
      margin: 0 0 6px;
      font-family: "Outfit", Arial, sans-serif;
      font-size: clamp(26px, 3vw, 30px);
      line-height: 1.2;
      letter-spacing: -0.75px;
      font-weight: 700;
      color: var(--fl-navy);
    }

    .fl-related-guides__row-copy {
      margin: 0;
      font-family: "Outfit", Arial, sans-serif;
      font-size: 18px;
      line-height: 24px;
      font-weight: 400;
      color: var(--fl-body);
      max-width: 42rem;
    }

    .fl-related-guides__grid {
      display: grid;
      gap: 14px;
    }

    .fl-related-guides__grid--faq {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .fl-related-guides__grid--claims {
      grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .fl-related-guides__card {
      display: flex;
      flex-direction: column;
      min-width: 0;
      min-height: 100%;
      padding: 20px 18px;
      border: 1px solid var(--fl-border);
      border-radius: var(--fl-radius-card);
      background: var(--fl-card-bg);
      box-shadow: var(--fl-shadow-soft);
      text-decoration: none;
      transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
    }

    .fl-related-guides__card:hover,
    .fl-related-guides__card:focus-visible {
      transform: translateY(-1px);
      box-shadow: 0 14px 30px rgba(4, 38, 64, 0.08);
      border-color: var(--fl-border-hover);
      background: #ffffff;
      outline: none;
    }

    .fl-related-guides__kicker {
      display: inline-block;
      margin: 0 0 14px;
      font-family: "Outfit", Arial, sans-serif;
      font-size: 11px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--fl-deep-blue);
    }

    .fl-related-guides__card-title {
      margin: 0 0 10px;
      font-family: "Outfit", Arial, sans-serif;
      font-size: clamp(20px, 2vw, 22px);
      line-height: 1.25;
      letter-spacing: -0.3px;
      font-weight: 700;
      color: var(--fl-navy);
      text-wrap: balance;
    }

    .fl-related-guides__card-copy {
      margin: 0 0 14px;
      font-family: "Outfit", Arial, sans-serif;
      font-size: 18px;
      line-height: 24px;
      font-weight: 400;
      color: var(--fl-body);
      flex: 1 1 auto;
    }

    .fl-related-guides__link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: auto;
      font-family: "Outfit", Arial, sans-serif;
      font-size: 15px;
      line-height: 1.3;
      font-weight: 700;
      color: var(--fl-accent);
      text-decoration: none;
    }

    .fl-related-guides__link::after {
      content: "→";
      font-size: 16px;
      line-height: 1;
      transition: transform 0.18s ease;
    }

    .fl-related-guides__card:hover .fl-related-guides__link::after,
    .fl-related-guides__card:focus-visible .fl-related-guides__link::after {
      transform: translateX(2px);
    }

    @media (max-width: 1280px) {
      .fl-related-guides__grid--claims {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 1180px) {
      .fl-related-guides__grid--faq {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 920px) {
      .fl-related-guides__head {
        grid-template-columns: 1fr;
      }

      .fl-related-guides__grid--claims {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      .fl-related-guides__panel {
        border-radius: 24px;
        padding: 18px;
      }

      .fl-related-guides__row {
        border-radius: 20px;
        padding: 16px;
      }

      .fl-related-guides__grid--faq,
      .fl-related-guides__grid--claims {
        grid-template-columns: 1fr;
      }

      .fl-related-guides__card {
        border-radius: 20px;
        padding: 18px 16px;
      }

      .fl-related-guides__title {
        font-size: clamp(30px, 9vw, 38px);
        line-height: 1.14;
      }

      .fl-related-guides__row-title {
        font-size: 26px;
        line-height: 1.2;
      }
    }

    @import url("https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;700&display=swap");

    .fl-qa-panel,
    .fl-qa-panel *,
    .fl-qa-panel *::before,
    .fl-qa-panel *::after {
      box-sizing: border-box;
    }

    .fl-qa-panel {
      --fl-navy: #042640;
      --fl-deep-blue: #084574;
      --fl-accent: #f85354;
      --fl-body: #676767;
      --fl-muted: #5e7486;
      --fl-border: #dbe5ee;
      --fl-bg: #ffffff;
      --fl-soft: #f8fbfd;
      --fl-shadow: 0 18px 44px rgba(4, 38, 64, 0.06);
      --fl-radius-panel: 34px;
      --fl-radius-card: 28px;
      margin: 0;
      padding: 0;
      font-family: "Outfit", Arial, sans-serif;
      color: var(--fl-body);
    }

    .fl-qa-panel__wrap {
      background: var(--fl-bg);
      border: 1px solid var(--fl-border);
      border-radius: var(--fl-radius-panel);
      box-shadow: var(--fl-shadow);
      padding: clamp(28px, 4vw, 40px);
    }

    .fl-qa-panel__grid {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(280px, 320px);
      gap: clamp(24px, 4vw, 42px);
      align-items: start;
    }

    .fl-qa-panel__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      padding: 0 !important;
      background: transparent !important;
      border: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      color: var(--fl-accent);
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .fl-qa-panel__eyebrow::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: var(--fl-accent);
      flex: 0 0 auto;
    }

    .fl-qa-panel__title {
      margin: 0;
      color: var(--fl-navy);
      font-size: clamp(2.2rem, 4.7vw, 3.5rem);
      line-height: 1.08;
      letter-spacing: -0.05em;
      font-weight: 700;
      text-wrap: balance;
      max-width: 820px;
    }

    .fl-qa-panel__text {
      margin: 18px 0 0;
      max-width: 860px;
      color: var(--fl-body);
      font-size: 18px;
      line-height: 1.65;
      font-weight: 400;
    }

    .fl-qa-panel__text p {
      margin: 0;
    }

    .fl-qa-panel__text p + p {
      margin-top: 16px;
    }

    .fl-qa-panel__factors {
      list-style: none !important;
      margin: 0 !important;
      padding: 0 !important;
      display: grid;
      gap: 10px;
      max-width: 680px;
    }

    .fl-qa-panel__factors li {
      position: relative;
      list-style: none !important;
      margin: 0 !important;
      padding: 0 0 0 18px !important;
      color: var(--fl-body);
      font-size: 18px;
      line-height: 1.6;
      font-weight: 500;
    }

    .fl-qa-panel__factors li::marker {
      content: "";
    }

    .fl-qa-panel__factors li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.78em;
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: var(--fl-accent);
      transform: translateY(-50%);
    }

    .fl-qa-panel__side {
      border: 1px solid var(--fl-border);
      border-radius: var(--fl-radius-card);
      background: var(--fl-soft);
      padding: 24px 24px 22px;
      min-height: 100%;
    }

    .fl-qa-panel__side-title {
      margin: 0 0 18px;
      color: var(--fl-navy);
      font-size: 18px;
      line-height: 1.3;
      font-weight: 700;
      letter-spacing: -0.02em;
    }

    .fl-qa-panel__list {
      list-style: none !important;
      margin: 0 !important;
      padding: 0 !important;
      display: grid;
      gap: 14px;
    }

    .fl-qa-panel__list li {
      list-style: none !important;
      margin: 0 !important;
      padding: 0 !important;
    }

    .fl-qa-panel__list li::before,
    .fl-qa-panel__list li::marker,
    .fl-qa-panel__list a::before {
      content: none !important;
    }

    .fl-qa-panel__list a {
      display: inline-block;
      padding-left: 0;
      color: var(--fl-body);
      font-size: 18px;
      line-height: 1.55;
      font-weight: 400;
      text-decoration: none;
      transition: color 0.18s ease, transform 0.18s ease;
    }

    .fl-qa-panel__list a:hover,
    .fl-qa-panel__list a:focus-visible {
      color: var(--fl-deep-blue);
      transform: translateX(1px);
      text-decoration: underline;
      text-underline-offset: 2px;
      outline: none;
    }

    @media (max-width: 980px) {
      .fl-qa-panel__grid {
        grid-template-columns: 1fr;
      }

      .fl-qa-panel__side {
        max-width: 520px;
      }
    }

    @media (max-width: 640px) {
      .fl-qa-panel__wrap {
        border-radius: 26px;
        padding: 22px 18px;
      }

      .fl-qa-panel__side {
        border-radius: 22px;
        padding: 20px 18px;
      }

      .fl-qa-panel__title {
        font-size: clamp(2rem, 9vw, 2.65rem);
        line-height: 1.1;
      }

      .fl-qa-panel__text,
      .fl-qa-panel__factors li,
      .fl-qa-panel__list a {
        font-size: 17px;
        line-height: 1.6;
      }
    }


    .fl-next-step-band,
    .fl-next-step-band *,
    .fl-next-step-band *::before,
    .fl-next-step-band *::after {
      box-sizing: border-box;
    }

    .fl-next-step-band {
      --fl-navy: #042640;
      --fl-deep-blue: #084574;
      --fl-accent: #f85354;
      --fl-white: #ffffff;
      --fl-text-on-dark: rgba(255, 255, 255, 0.92);
      --fl-text-on-dark-soft: rgba(255, 255, 255, 0.86);
      --fl-stroke: rgba(255, 255, 255, 0.18);
      --fl-max: 1280px;

      font-family: "Outfit", Arial, sans-serif;
      margin: 0;
      padding: 0;
    }

    /* Full-bleed breakout so it spans the whole page width */
    .fl-next-step-band--full {
      position: relative;
      left: 50%;
      right: 50%;
      margin-left: -50vw;
      margin-right: -50vw;
      width: 100vw;
      max-width: 100vw;
    }

    .fl-next-step-band__outer {
      background: linear-gradient(135deg, #042640 0%, #063454 56%, #084574 100%);
      width: 100%;
      overflow: hidden;
      position: relative;
    }

    .fl-next-step-band__outer::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top right, rgba(248, 83, 84, 0.10), transparent 28%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.04), transparent 22%);
      pointer-events: none;
    }

    .fl-next-step-band__inner {
      position: relative;
      z-index: 1;
      max-width: var(--fl-max);
      margin: 0 auto;
      padding: 38px 24px;
      display: grid;
      grid-template-columns: minmax(0, 1.3fr) minmax(280px, 310px);
      gap: 36px;
      align-items: start;
    }

    .fl-next-step-band__main {
      min-width: 0;
    }

    .fl-next-step-band__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 16px;
      padding: 0 !important;
      background: transparent !important;
      border: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      color: var(--fl-accent);
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .fl-next-step-band__eyebrow::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: var(--fl-accent);
      flex: 0 0 auto;
    }

    .fl-next-step-band__title {
      margin: 0;
      color: var(--fl-white);
      font-size: clamp(2rem, 4.4vw, 3.35rem);
      line-height: 1.08;
      letter-spacing: -0.05em;
      font-weight: 700;
      max-width: 860px;
      text-wrap: balance;
    }

    .fl-next-step-band__copy {
      margin: 16px 0 0;
      max-width: 900px;
      color: var(--fl-text-on-dark-soft);
      font-size: 18px;
      line-height: 1.62;
      font-weight: 400;
    }

    .fl-next-step-band__actions {
      display: grid;
      gap: 12px;
      align-self: center;
      width: 100%;
    }

    .fl-next-step-band__btn,
    .fl-next-step-band__btn:link,
    .fl-next-step-band__btn:visited {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      min-height: 50px;
      padding: 13px 18px;
      border-radius: 18px;
      text-align: center;
      text-decoration: none !important;
      font-size: 16px;
      line-height: 1.3;
      font-weight: 700;
      transition:
        transform 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
    }

    .fl-next-step-band__btn--primary {
      background: var(--fl-accent);
      color: var(--fl-white) !important;
      box-shadow: 0 14px 28px rgba(248, 83, 84, 0.22);
    }

    .fl-next-step-band__btn--primary:hover,
    .fl-next-step-band__btn--primary:focus-visible {
      background: #fb5f60;
      transform: translateY(-1px);
      outline: none;
    }

    .fl-next-step-band__btn--secondary {
      background: rgba(255, 255, 255, 0.10);
      border: 1px solid var(--fl-stroke);
      color: var(--fl-white) !important;
    }

    .fl-next-step-band__btn--secondary:hover,
    .fl-next-step-band__btn--secondary:focus-visible {
      background: rgba(255, 255, 255, 0.14);
      transform: translateY(-1px);
      outline: none;
    }

    .fl-next-step-band__phone,
    .fl-next-step-band__phone:link,
    .fl-next-step-band__phone:visited {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 4px;
      color: var(--fl-white) !important;
      text-decoration: underline;
      text-underline-offset: 3px;
      font-size: 16px;
      line-height: 1.4;
      font-weight: 700;
    }

    .fl-next-step-band__phone:hover,
    .fl-next-step-band__phone:focus-visible {
      text-decoration-thickness: 2px;
      outline: none;
    }

    @media (max-width: 900px) {
      .fl-next-step-band__inner {
        grid-template-columns: 1fr;
        gap: 24px;
      }

      .fl-next-step-band__actions {
        max-width: 360px;
      }
    }

    @media (max-width: 640px) {
      .fl-next-step-band__inner {
        padding: 28px 18px;
      }

      .fl-next-step-band__title {
        font-size: clamp(1.9rem, 9vw, 2.6rem);
        line-height: 1.1;
      }

      .fl-next-step-band__copy {
        font-size: 17px;
        line-height: 1.58;
      }

      .fl-next-step-band__actions {
        max-width: none;
      }
    }

    .fl-next-pages,
    .fl-next-pages *,
    .fl-next-pages *::before,
    .fl-next-pages *::after {
      box-sizing: border-box;
    }

    .fl-next-pages {
      --fl-navy: #042640;
      --fl-deep-blue: #084574;
      --fl-accent: #f85354;
      --fl-body: #676767;
      --fl-muted: #5e7486;
      --fl-bg: transparent;
      --fl-card-bg: #ffffff;
      --fl-border: #dbe5ee;
      --fl-border-strong: #cfd9e3;
      --fl-shadow: 0 14px 32px rgba(4, 38, 64, 0.07);
      --fl-shadow-soft: 0 10px 24px rgba(4, 38, 64, 0.06);
      --fl-radius-panel: 34px;
      --fl-radius-card: 24px;
      --fl-radius-cta: 30px;

      margin: 0;
      padding: 0;
      font-family: "Outfit", Arial, sans-serif;
      color: var(--fl-body);
    }

    .fl-next-pages__wrap {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(300px, 360px);
      gap: 38px;
      align-items: start;
      background: transparent;
      border-radius: var(--fl-radius-panel);
      padding: clamp(24px, 3.5vw, 40px);
    }

    .fl-next-pages__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      padding: 0 !important;
      background: transparent !important;
      border: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      color: var(--fl-accent);
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .fl-next-pages__eyebrow::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: var(--fl-accent);
      flex: 0 0 auto;
    }

    .fl-next-pages__title {
      margin: 0;
      color: var(--fl-navy);
      font-size: clamp(2.3rem, 4.8vw, 3.6rem);
      line-height: 1.08;
      letter-spacing: -0.05em;
      font-weight: 700;
      text-wrap: balance;
      max-width: 760px;
    }

    .fl-next-pages__intro {
      margin: 18px 0 0;
      max-width: 760px;
      color: var(--fl-body);
      font-size: 18px;
      line-height: 1.6;
      font-weight: 400;
    }

    .fl-next-pages__grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 28px;
    }

    .fl-next-pages__card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
      padding: 20px 18px 18px;
      background: var(--fl-card-bg);
      border: 1px solid var(--fl-border);
      border-radius: var(--fl-radius-card);
      box-shadow: var(--fl-shadow-soft);
      text-decoration: none !important;
      transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease;
    }

    .fl-next-pages__card:hover,
    .fl-next-pages__card:focus-visible {
      transform: translateY(-1px);
      border-color: var(--fl-border-strong);
      box-shadow: 0 16px 30px rgba(4, 38, 64, 0.08);
      background: #ffffff;
      outline: none;
    }

    .fl-next-pages__card-title {
      display: block;
      margin: 0 0 10px;
      color: var(--fl-navy);
      font-size: 18px;
      line-height: 1.3;
      font-weight: 700;
      letter-spacing: -0.02em;
      text-wrap: balance;
    }

    .fl-next-pages__card-copy {
      display: block;
      margin: 0;
      color: var(--fl-body);
      font-size: 15px;
      line-height: 1.6;
      font-weight: 400;
    }

    .fl-next-pages__cta {
      background: linear-gradient(135deg, #042640 0%, #063454 56%, #084574 100%);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: var(--fl-radius-cta);
      box-shadow: 0 24px 56px rgba(4, 38, 64, 0.16);
      padding: 32px 30px 28px;
      color: #ffffff;
      position: relative;
      overflow: hidden;
    }

    .fl-next-pages__cta::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top right, rgba(248, 83, 84, 0.12), transparent 32%),
        radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.06), transparent 28%);
      pointer-events: none;
    }

    .fl-next-pages__cta > * {
      position: relative;
      z-index: 1;
    }

    .fl-next-pages__cta-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 18px;
      padding: 0;
      color: #ffffff;
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .fl-next-pages__cta-eyebrow::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: #f85354;
      flex: 0 0 auto;
    }

    .fl-next-pages__cta-title {
      margin: 0;
      color: #ffffff;
      font-size: clamp(2rem, 3vw, 2.6rem);
      line-height: 1.08;
      letter-spacing: -0.04em;
      font-weight: 700;
      text-wrap: balance;
    }

    .fl-next-pages__cta-copy {
      margin: 18px 0 0;
      color: rgba(255, 255, 255, 0.9);
      font-size: 18px;
      line-height: 1.65;
      font-weight: 400;
    }

    .fl-next-pages__cta-actions {
      display: grid;
      gap: 14px;
      margin-top: 26px;
    }

    .fl-next-pages__btn,
    .fl-next-pages__btn:link,
    .fl-next-pages__btn:visited {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      width: 100%;
      padding: 14px 18px;
      border-radius: 18px;
      text-align: center;
      text-decoration: none !important;
      font-size: 16px;
      line-height: 1.3;
      font-weight: 700;
      transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease,
        border-color 0.18s ease;
    }

    .fl-next-pages__btn--primary {
      background: var(--fl-accent);
      color: #ffffff !important;
      box-shadow: 0 14px 28px rgba(248, 83, 84, 0.22);
    }

    .fl-next-pages__btn--primary:hover,
    .fl-next-pages__btn--primary:focus-visible {
      transform: translateY(-1px);
      background: #fb5f60;
      outline: none;
    }

    .fl-next-pages__btn--secondary {
      background: rgba(255, 255, 255, 0.08);
      border: 1px solid rgba(255, 255, 255, 0.18);
      color: #ffffff !important;
    }

    .fl-next-pages__btn--secondary:hover,
    .fl-next-pages__btn--secondary:focus-visible {
      transform: translateY(-1px);
      background: rgba(255, 255, 255, 0.14);
      outline: none;
    }

    .fl-next-pages__phone,
    .fl-next-pages__phone:link,
    .fl-next-pages__phone:visited {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 6px;
      color: #ffffff !important;
      font-size: 16px;
      line-height: 1.4;
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .fl-next-pages__phone:hover,
    .fl-next-pages__phone:focus-visible {
      text-decoration-thickness: 2px;
      outline: none;
    }

    @media (max-width: 1180px) {
      .fl-next-pages__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 980px) {
      .fl-next-pages__wrap {
        grid-template-columns: 1fr;
      }

      .fl-next-pages__cta {
        max-width: 440px;
      }
    }

    @media (max-width: 640px) {
      .fl-next-pages__wrap {
        padding: 20px 16px;
        border-radius: 26px;
      }

      .fl-next-pages__grid {
        grid-template-columns: 1fr;
      }

      .fl-next-pages__card {
        border-radius: 20px;
      }

      .fl-next-pages__cta {
        border-radius: 24px;
        padding: 24px 20px 22px;
      }

      .fl-next-pages__title {
        font-size: clamp(2rem, 9vw, 2.9rem);
        line-height: 1.1;
      }

      .fl-next-pages__intro,
      .fl-next-pages__cta-copy {
        font-size: 17px;
        line-height: 1.6;
      }
    }

    /*Personal Injury*/

    #fl-pi-jumpnav,
    #fl-pi-jumpnav * {
      box-sizing: border-box;
    }

    #fl-pi-jumpnav {
      --fl-navy: #042640;
      --fl-deep-blue: #084574;
      --fl-accent: #f85354;
      --fl-text: #676767;
      --fl-border: #d9e2ea;
      --fl-border-strong: #cfd9e3;
      --fl-bg: #ffffff;
      --fl-soft: #f7fafc;
      --fl-soft-hover: #f2f6fa;
      --fl-arrow-bg: #e8eef4;
      --fl-arrow-bg-hover: #e1e9f1;
      margin: 28px 0;
      font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    #fl-pi-jumpnav .fl-pi-jumpnav-wrap {
      background: var(--fl-bg);
      border: 1px solid var(--fl-border);
      border-radius: 18px;
      padding: 24px;
      box-shadow: 0 8px 24px rgba(4, 38, 64, 0.06);
    }

    /* Hard-reset eyebrow label: no pill, no fill, no inherited badge styling */
    #fl-pi-jumpnav .fl-pi-jumpnav-label {
      display: inline-flex !important;
      align-items: center;
      gap: 10px;
      margin: 0 0 12px;
      padding: 0 !important;
      background: transparent !important;
      border: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      color: var(--fl-accent) !important;
      font-size: 12px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    #fl-pi-jumpnav .fl-pi-jumpnav-label::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: var(--fl-accent);
      flex: 0 0 auto;
    }

    #fl-pi-jumpnav h2 {
      margin: 0 0 12px;
      color: var(--fl-navy);
      font-size: clamp(30px, 4vw, 42px);
      line-height: 1.14;
      letter-spacing: -1px;
      font-weight: 700;
    }

    #fl-pi-jumpnav .fl-pi-jumpnav-sub {
      margin: 0 0 18px;
      color: var(--fl-text);
      font-size: 18px;
      line-height: 1.333;
      font-weight: 400;
    }

    #fl-pi-jumpnav .fl-pi-jumpnav-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    #fl-pi-jumpnav .fl-pi-jumpnav-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      min-height: 60px;
      padding: 14px 16px;
      border: 1px solid var(--fl-border);
      border-radius: 14px;
      background: var(--fl-soft);
      color: var(--fl-navy);
      text-decoration: none;
      font-size: 16px;
      line-height: 1.5;
      font-weight: 600;
      transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.18s ease,
        box-shadow 0.2s ease;
    }

    #fl-pi-jumpnav .fl-pi-jumpnav-link:hover,
    #fl-pi-jumpnav .fl-pi-jumpnav-link:focus-visible {
      background: var(--fl-soft-hover);
      border-color: var(--fl-border-strong);
      color: var(--fl-navy);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(4, 38, 64, 0.04);
      outline: none;
    }

    #fl-pi-jumpnav .fl-pi-jumpnav-link span:first-child {
      flex: 1 1 auto;
    }

    #fl-pi-jumpnav .fl-pi-jumpnav-arrow {
      flex: 0 0 auto;
      width: 28px;
      height: 28px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--fl-arrow-bg);
      color: var(--fl-deep-blue);
      font-size: 15px;
      line-height: 1;
      transition: background-color 0.2s ease, transform 0.18s ease;
    }

    #fl-pi-jumpnav .fl-pi-jumpnav-link:hover .fl-pi-jumpnav-arrow,
    #fl-pi-jumpnav .fl-pi-jumpnav-link:focus-visible .fl-pi-jumpnav-arrow {
      background: var(--fl-arrow-bg-hover);
      transform: translateX(1px);
    }

    #legal-help,
    #evidence-timing,
    #liability-value,
    #fees-costs,
    #perth-regional {
      scroll-margin-top: 130px;
    }

    @media (max-width: 767px) {
      #fl-pi-jumpnav .fl-pi-jumpnav-wrap {
        padding: 18px;
        border-radius: 16px;
      }

      #fl-pi-jumpnav h2 {
        font-size: clamp(28px, 8vw, 34px);
        line-height: 1.16;
        letter-spacing: -0.8px;
      }

      #fl-pi-jumpnav .fl-pi-jumpnav-sub {
        font-size: 18px;
        line-height: 1.333;
      }

      #fl-pi-jumpnav .fl-pi-jumpnav-grid {
        grid-template-columns: 1fr;
      }

      #fl-pi-jumpnav .fl-pi-jumpnav-link {
        min-height: 56px;
        padding: 13px 14px;
      }

      #legal-help,
      #evidence-timing,
      #liability-value,
      #fees-costs,
      #perth-regional {
        scroll-margin-top: 110px;
      }
    }


    .fl-claim-path-cta,
    .fl-claim-path-cta * {
      box-sizing: border-box;
    }

    .fl-claim-path-cta {
      --fl-navy: #042640;
      --fl-deep-blue: #084574;
      --fl-accent: #f85354;
      --fl-text: #676767;
      --fl-white: #ffffff;
      --fl-border: rgba(255, 255, 255, 0.18);
      margin: 36px 0;
      font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .fl-claim-path-cta .fl-claim-path-cta-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 22px;
      padding: 32px 30px;
      background: linear-gradient(135deg, var(--fl-navy) 0%, var(--fl-deep-blue) 100%);
      box-shadow: 0 16px 36px rgba(4, 38, 64, 0.16);
    }

    .fl-claim-path-cta .fl-claim-path-cta-wrap::after {
      content: "";
      position: absolute;
      inset: auto -80px -80px auto;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: rgba(248, 83, 84, 0.08);
      pointer-events: none;
    }

    /* Pill row uses div/span instead of ul/li to avoid theme bullets entirely */
    .fl-claim-path-cta .fl-claim-path-cta-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 0 0 16px;
      padding: 0;
    }

    .fl-claim-path-cta .fl-claim-path-cta-chip,
    .fl-claim-path-cta .fl-claim-path-cta-chip::before,
    .fl-claim-path-cta .fl-claim-path-cta-chip::after {
      list-style: none !important;
      content: none;
    }

    .fl-claim-path-cta .fl-claim-path-cta-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 7px 11px;
      border: 1px solid var(--fl-border);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      color: rgba(255, 255, 255, 0.92);
      font-size: 12px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: 0.03em;
      white-space: nowrap;
    }

    .fl-claim-path-cta h2 {
      margin: 0 0 12px;
      color: var(--fl-white);
      font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
      font-size: clamp(30px, 4vw, 42px);
      line-height: 1.14;
      letter-spacing: -1px;
      font-weight: 700;
      max-width: 760px;
    }

    .fl-claim-path-cta .fl-claim-path-cta-text {
      max-width: 760px;
      margin: 0 0 22px;
      color: rgba(255, 255, 255, 0.9);
      font-size: 18px;
      line-height: 1.333;
      font-weight: 400;
    }

    .fl-claim-path-cta .fl-claim-path-cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .fl-claim-path-cta .fl-claim-path-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 14px 20px;
      border-radius: 12px;
      text-decoration: none;
      font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
      font-size: 16px;
      font-weight: 700;
      line-height: 1.2;
      transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
    }

    .fl-claim-path-cta .fl-claim-path-cta-btn:hover,
    .fl-claim-path-cta .fl-claim-path-cta-btn:focus {
      transform: translateY(-1px);
      outline: none;
    }

    .fl-claim-path-cta .fl-claim-path-cta-btn--primary {
      background: var(--fl-accent);
      color: var(--fl-white);
      border: 1px solid var(--fl-accent);
    }

    .fl-claim-path-cta .fl-claim-path-cta-btn--primary:hover,
    .fl-claim-path-cta .fl-claim-path-cta-btn--primary:focus {
      opacity: 0.96;
      color: var(--fl-white);
    }

    .fl-claim-path-cta .fl-claim-path-cta-btn--ghost {
      background: transparent;
      color: var(--fl-white);
      border: 1px solid rgba(255, 255, 255, 0.28);
    }

    .fl-claim-path-cta .fl-claim-path-cta-btn--ghost:hover,
    .fl-claim-path-cta .fl-claim-path-cta-btn--ghost:focus {
      background: rgba(255, 255, 255, 0.08);
      color: var(--fl-white);
      border-color: rgba(255, 255, 255, 0.4);
    }

    @media (max-width: 767px) {
      .fl-claim-path-cta .fl-claim-path-cta-wrap {
        padding: 24px 18px;
        border-radius: 18px;
      }

      .fl-claim-path-cta h2 {
        font-size: clamp(28px, 8vw, 34px);
        line-height: 1.16;
        letter-spacing: -0.8px;
      }

      .fl-claim-path-cta .fl-claim-path-cta-text {
        font-size: 18px;
        line-height: 1.333;
      }

      .fl-claim-path-cta .fl-claim-path-cta-actions {
        flex-direction: column;
      }

      .fl-claim-path-cta .fl-claim-path-cta-btn {
        width: 100%;
      }
    }



    .fl-faq-related {
      --fl-navy: #042640;
      --fl-blue: #084574;
      --fl-red: #f85354;
      --fl-text: #676767;
      --fl-white: #ffffff;
      --fl-border: #dfe7ef;
      --fl-shadow: 0 10px 24px rgba(4, 38, 64, 0.06);
  
      font-family: 'Outfit', system-ui, sans-serif;
      padding: 18px 0 32px;
    }
  
    .fl-faq-related__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 10px;
      color: var(--fl-red);
      font-size: 0.78rem;
      line-height: 1.2;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 700;
    }
  
    .fl-faq-related__eyebrow::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: var(--fl-red);
    }
  
    .fl-faq-related__heading {
      margin: 0 0 8px;
      color: var(--fl-navy);
      font-size: clamp(1.9rem, 3.2vw, 2.5rem);
      line-height: 1.1;
      letter-spacing: -0.04em;
      font-weight: 700;
    }
  
    .fl-faq-related__sub {
      margin: 0 0 18px;
      color: var(--fl-text);
      font-size: 1rem;
      line-height: 1.65;
      font-weight: 400;
      max-width: 760px;
    }
  
    .fl-faq-related__grid {
      display: grid;
      gap: 16px;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  
    .fl-faq-related__card {
      display: grid;
      gap: 0;
      min-height: 100%;
      padding: 22px;
      background: var(--fl-white);
      border: 1px solid var(--fl-border);
      border-radius: 16px;
      box-shadow: var(--fl-shadow);
      text-decoration: none;
      transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
    }
  
    .fl-faq-related__card:hover {
      transform: translateY(-2px);
      border-color: #d2dce6;
      box-shadow: 0 14px 30px rgba(4, 38, 64, 0.08);
    }
  
    .fl-faq-related__card:focus-visible {
      outline: 3px solid rgba(248, 83, 84, 0.26);
      outline-offset: 2px;
    }
  
    .fl-faq-related__tag {
      display: inline-block;
      margin: 0 0 10px;
      color: var(--fl-blue);
      font-size: 0.76rem;
      line-height: 1.2;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 700;
    }
  
    .fl-faq-related__title {
      display: block;
      margin: 0 0 10px;
      color: var(--fl-navy);
      font-size: 1.18rem;
      line-height: 1.28;
      letter-spacing: -0.02em;
      font-weight: 700;
    }
  
    .fl-faq-related__desc {
      display: block;
      margin: 0;
      color: var(--fl-text);
      font-size: 0.97rem;
      line-height: 1.65;
      font-weight: 400;
    }
  
    .fl-faq-related__arrow {
      display: inline-flex;
      align-items: center;
      margin: 0;
      color: var(--fl-red);
      font-size: 0.94rem;
      line-height: 1.3;
      font-weight: 700;
    }
  
    @media (max-width: 767px) {
      .fl-faq-related__grid {
        grid-template-columns: 1fr;
      }
    }

    
    /*WORKER COMPENSATION*/
    .fl-wc-jumpnav {
      --fl-navy: #042640;
      --fl-deep-blue: #084574;
      --fl-accent: #f85354;
      --fl-white: #ffffff;
      --fl-body: #676767;
      --fl-border: #dbe5ee;
      --fl-bg: #ffffff;
      --fl-chip: rgba(8, 69, 116, 0.08);
      --fl-shadow: 0 12px 30px rgba(4, 38, 64, 0.06);
      --fl-radius-xl: 28px;
      --fl-radius-lg: 18px;
      font-family: Outfit, Arial, sans-serif;
      margin: 32px 0 40px;
    }

    .fl-wc-jumpnav *,
    .fl-wc-jumpnav *::before,
    .fl-wc-jumpnav *::after {
      box-sizing: border-box;
    }

    .fl-wc-jumpnav__wrap {
      background: var(--fl-bg);
      border: 1px solid var(--fl-border);
      border-radius: var(--fl-radius-xl);
      box-shadow: var(--fl-shadow);
      padding: 22px 18px;
    }

    /* Fixed: Foyle-style eyebrow, not a pill */
    .fl-wc-jumpnav__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 10px;
      padding: 0 !important;
      background: transparent !important;
      border: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      color: var(--fl-accent);
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .fl-wc-jumpnav__eyebrow::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: var(--fl-accent);
      flex: 0 0 auto;
    }

    .fl-wc-jumpnav__title {
      margin: 0;
      color: var(--fl-navy);
      font-size: clamp(28px, 4vw, 40px);
      line-height: 1.1;
      letter-spacing: -0.04em;
      font-weight: 700;
      max-width: 780px;
    }

    .fl-wc-jumpnav__text {
      margin: 14px 0 0;
      color: var(--fl-body);
      font-size: 17px;
      line-height: 1.6;
      max-width: 760px;
    }

    .fl-wc-jumpnav__grid {
      display: grid;
      gap: 12px;
      margin-top: 22px;
    }

    .fl-wc-jumpnav__link,
    .fl-wc-jumpnav__link:link,
    .fl-wc-jumpnav__link:visited {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      min-height: 58px;
      padding: 15px 16px;
      background: #ffffff;
      border: 1px solid var(--fl-border);
      border-radius: var(--fl-radius-lg);
      color: var(--fl-navy) !important;
      text-decoration: none !important;
      font-size: 16px;
      line-height: 1.4;
      font-weight: 600;
      transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, color 0.18s ease;
    }

    .fl-wc-jumpnav__link:hover,
    .fl-wc-jumpnav__link:focus {
      border-color: rgba(8, 69, 116, 0.35);
      box-shadow: 0 10px 22px rgba(4, 38, 64, 0.08);
      transform: translateY(-1px);
      color: var(--fl-deep-blue) !important;
    }

    .fl-wc-jumpnav__link:focus {
      outline: 2px solid var(--fl-accent);
      outline-offset: 2px;
    }

    .fl-wc-jumpnav__arrow {
      flex: 0 0 auto;
      color: var(--fl-accent);
      font-size: 18px;
      line-height: 1;
    }

    .fl-wc-jumpnav__support {
      margin-top: 18px;
      color: var(--fl-body);
      font-size: 15px;
      line-height: 1.7;
      max-width: 760px;
    }

    .fl-wc-jumpnav__support a,
    .fl-wc-jumpnav__support a:link,
    .fl-wc-jumpnav__support a:visited {
      color: var(--fl-deep-blue) !important;
      text-decoration: underline;
      text-underline-offset: 2px;
      font-weight: 600;
    }

    .fl-wc-jumpnav__support a:hover,
    .fl-wc-jumpnav__support a:focus {
      color: var(--fl-accent) !important;
    }

    @media (min-width: 768px) {
      .fl-wc-jumpnav__wrap {
        padding: 26px 24px;
      }

      .fl-wc-jumpnav__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (min-width: 1200px) {
      .fl-wc-jumpnav__grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
      }
    }

    .fl-wc-nextstep {
      --fl-navy: #042640;
      --fl-deep-blue: #084574;
      --fl-accent: #f85354;
      --fl-white: #ffffff;
      --fl-body: #e6edf3;
      --fl-border: rgba(255, 255, 255, 0.12);
      --fl-shadow: 0 14px 40px rgba(4, 38, 64, 0.18);
      --fl-radius: 32px;
      font-family: Outfit, Arial, sans-serif;
      margin: 48px 0;
    }

    .fl-wc-nextstep__wrap {
      background:
        radial-gradient(circle at top right, rgba(248, 83, 84, 0.14), transparent 26%),
        radial-gradient(circle at left center, rgba(255, 255, 255, 0.08), transparent 22%),
        linear-gradient(180deg, var(--fl-deep-blue) 0%, var(--fl-navy) 100%);
      border-radius: var(--fl-radius);
      box-shadow: var(--fl-shadow);
      overflow: hidden;
      position: relative;
    }

    .fl-wc-nextstep__inner {
      padding: 36px 24px;
      position: relative;
      z-index: 1;
    }

    .fl-wc-nextstep__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 10px;
      padding: 0 !important;
      background: transparent !important;
      border: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      color: var(--fl-accent);
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .fl-wc-nextstep__eyebrow::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: var(--fl-accent);
      flex: 0 0 auto;
    }

    .fl-wc-nextstep__title {
      margin: 0;
      color: var(--fl-white);
      font-size: clamp(30px, 4.6vw, 42px);
      line-height: 1.1;
      letter-spacing: -0.04em;
      font-weight: 700;
      max-width: 820px;
    }

    .fl-wc-nextstep__text {
      margin: 16px 0 0;
      color: var(--fl-body);
      font-size: 18px;
      line-height: 1.65;
      max-width: 760px;
    }

    .fl-wc-nextstep__points {
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .fl-wc-nextstep__points li {
      color: rgba(255, 255, 255, 0.92);
      font-size: 16px;
      line-height: 1.5;
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .fl-wc-nextstep__points li::before {
      content: "";
      width: 8px;
      height: 8px;
      margin-top: 8px;
      flex: 0 0 8px;
      border-radius: 999px;
      background: var(--fl-accent);
    }

    .fl-wc-nextstep__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 28px;
    }

    .fl-wc-nextstep__btn,
    .fl-wc-nextstep__btn:link,
    .fl-wc-nextstep__btn:visited {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 24px;
      border-radius: 999px;
      text-decoration: none !important;
      font-size: 16px;
      line-height: 1.2;
      font-weight: 600;
      transition: all 0.2s ease;
      box-sizing: border-box;
      text-align: center;
      box-shadow: none;
      background-image: none !important;
    }

    .fl-wc-nextstep__btn--primary,
    .fl-wc-nextstep__btn--primary:link,
    .fl-wc-nextstep__btn--primary:visited {
      background: #f85354 !important;
      border: 1px solid #f85354 !important;
      color: #ffffff !important;
    }

    .fl-wc-nextstep__btn--primary:hover,
    .fl-wc-nextstep__btn--primary:focus,
    .fl-wc-nextstep__btn--primary:active {
      background: #e64a4b !important;
      border-color: #e64a4b !important;
      color: #ffffff !important;
      transform: translateY(-1px);
    }

    .fl-wc-nextstep__btn--secondary,
    .fl-wc-nextstep__btn--secondary:link,
    .fl-wc-nextstep__btn--secondary:visited {
      background: rgba(255, 255, 255, 0.08) !important;
      border: 1px solid rgba(255, 255, 255, 0.18) !important;
      color: #ffffff !important;
    }

    .fl-wc-nextstep__btn--secondary:hover,
    .fl-wc-nextstep__btn--secondary:focus,
    .fl-wc-nextstep__btn--secondary:active {
      background: rgba(255, 255, 255, 0.14) !important;
      border-color: rgba(255, 255, 255, 0.28) !important;
      color: #ffffff !important;
      transform: translateY(-1px);
    }

    .fl-wc-nextstep__btn:focus {
      outline: 2px solid #ffffff;
      outline-offset: 2px;
    }

    @media (min-width: 768px) {
      .fl-wc-nextstep__inner {
        padding: 44px 40px;
      }

      .fl-wc-nextstep__points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 639px) {
      .fl-wc-nextstep__actions {
        flex-direction: column;
      }

      .fl-wc-nextstep__btn,
      .fl-wc-nextstep__btn:link,
      .fl-wc-nextstep__btn:visited {
        width: 100%;
      }
    }



    .fl-wc-related {
      --fl-navy: #042640;
      --fl-deep-blue: #084574;
      --fl-accent: #f85354;
      --fl-white: #ffffff;
      --fl-body: #676767;
      --fl-muted-bg: #f7fafc;
      --fl-border: #dbe5ee;
      --fl-shadow: 0 14px 32px rgba(4, 38, 64, 0.07);
      --fl-radius-xl: 28px;
      --fl-radius-lg: 20px;
      font-family: Outfit, Arial, sans-serif;
      margin: 44px 0;
    }

    .fl-wc-related *,
    .fl-wc-related *::before,
    .fl-wc-related *::after {
      box-sizing: border-box;
    }

    .fl-wc-related__wrap {
      background: #ffffff;
      border: 1px solid var(--fl-border);
      border-radius: var(--fl-radius-xl);
      box-shadow: var(--fl-shadow);
      overflow: hidden;
    }

    .fl-wc-related__inner {
      padding: 24px 18px;
    }

    /* Fixed: Foyle-style eyebrow, not a pill */
    .fl-wc-related__eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 10px;
      padding: 0 !important;
      background: transparent !important;
      border: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      color: var(--fl-accent);
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .fl-wc-related__eyebrow::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: var(--fl-accent);
      flex: 0 0 auto;
    }

    .fl-wc-related__title {
      margin: 0;
      color: var(--fl-navy);
      font-size: clamp(30px, 4.4vw, 42px);
      line-height: 1.08;
      letter-spacing: -0.04em;
      font-weight: 700;
      max-width: 760px;
    }

    .fl-wc-related__intro {
      margin: 14px 0 0;
      color: var(--fl-body);
      font-size: 17px;
      line-height: 1.6;
      max-width: 760px;
    }

    .fl-wc-related__grid {
      display: grid;
      gap: 14px;
      margin-top: 22px;
    }

    .fl-wc-related__group {
      background: var(--fl-muted-bg);
      border: 1px solid var(--fl-border);
      border-radius: var(--fl-radius-lg);
      padding: 18px 14px;
    }

    .fl-wc-related__group-title {
      margin: 0;
      color: var(--fl-navy);
      font-size: clamp(22px, 2.2vw, 30px);
      line-height: 1.15;
      letter-spacing: -0.03em;
      font-weight: 700;
    }

    .fl-wc-related__group-text {
      margin: 8px 0 0;
      color: var(--fl-body);
      font-size: 15px;
      line-height: 1.55;
    }

    .fl-wc-related__list {
      list-style: none !important;
      margin: 14px 0 0 !important;
      padding: 0 !important;
      display: grid;
      gap: 9px;
    }

    .fl-wc-related__list li,
    .fl-wc-related__item {
      list-style: none !important;
      margin: 0 !important;
      padding: 0 !important;
    }

    .fl-wc-related__list li::marker,
    .fl-wc-related__item::marker {
      content: "" !important;
    }

    .fl-wc-related__link,
    .fl-wc-related__link:link,
    .fl-wc-related__link:visited {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
      width: 100%;
      padding: 12px 13px;
      background: #ffffff;
      border: 1px solid var(--fl-border);
      border-radius: 16px;
      text-decoration: none !important;
      color: var(--fl-navy) !important;
      transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
      box-shadow: 0 4px 12px rgba(4, 38, 64, 0.025);
    }

    .fl-wc-related__link:hover,
    .fl-wc-related__link:focus {
      border-color: rgba(8, 69, 116, 0.35);
      box-shadow: 0 8px 18px rgba(4, 38, 64, 0.07);
      transform: translateY(-1px);
      color: var(--fl-deep-blue) !important;
    }

    .fl-wc-related__link:focus {
      outline: 2px solid var(--fl-accent);
      outline-offset: 2px;
    }

    .fl-wc-related__link-main {
      min-width: 0;
    }

    .fl-wc-related__link-title {
      display: block;
      color: inherit;
      font-size: 16px;
      line-height: 1.4;
      font-weight: 600;
    }

    .fl-wc-related__link-desc {
      display: block;
      margin-top: 3px;
      color: var(--fl-body);
      font-size: 13px;
      line-height: 1.45;
      font-weight: 400;
    }

    .fl-wc-related__arrow {
      flex: 0 0 auto;
      color: var(--fl-accent);
      font-size: 18px;
      line-height: 1;
      margin-top: 2px;
    }

    @media (min-width: 768px) {
      .fl-wc-related__inner {
        padding: 30px 24px;
      }
    }

    @media (min-width: 1024px) {
      .fl-wc-related__inner {
        padding: 34px 28px;
      }

      .fl-wc-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
      }

      .fl-wc-related__group {
        padding: 18px 16px;
      }
    }