@charset "utf-8";
  :root {
      --ffp-navy: #336600;
      --ffp-blue: #0b2f74;
      --ffp-orange: #78C01C;
      --ffp-orange-dark: #336600;
      --ffp-orange-soft: #ebfbf0;
      --ffp-bg: #eef4fb;
      --ffp-card: #ffffff;
      --ffp-border: #d7e0ee;
      --ffp-muted: #61708a;
      --ffp-shadow: 0 18px 44px rgba(6, 27, 73, 0.10);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--ffp-navy);
      background:
        radial-gradient(circle at top left, rgba(184, 90, 36, 0.08), transparent 330px),
        linear-gradient(180deg, #ffffff 0%, var(--ffp-bg) 44%, #e8eff8 100%);
    }

    a {
      color: inherit;
    }

    .ffp-public-shell {
      width: min(100% - 32px, 1120px);
      margin: 0 auto;
    }

    /* Header */
    .ffp-public-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--ffp-border);
    }

    .ffp-public-header-inner {
      width: min(100% - 32px, 1120px);
      margin: 0 auto;
      min-height: 76px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .ffp-public-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      min-width: 0;
    }

    .ffp-public-brand img {
      width: 54px;
      height: 54px;
      object-fit: contain;
      border: 1px solid var(--ffp-border);
      border-radius: 14px;
      background: #ffffff;
    }

    .ffp-public-brand strong {
      display: block;
      font-size: 23px;
      line-height: 1;
      font-weight: 950;
      letter-spacing: -0.04em;
      color: var(--ffp-navy);
    }

    .ffp-public-brand span {
      display: block;
      margin-top: 4px;
      font-size: 12px;
      font-weight: 800;
      color: var(--ffp-muted);
    }

    .ffp-public-nav {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 13px;
      font-weight: 900;
    }

    .ffp-public-nav a {
      text-decoration: none;
      color: var(--ffp-navy);
      padding: 10px 12px;
      border-radius: 999px;
    }

    .ffp-public-nav a:hover {
      background: #f3f6fb;
    }

    .ffp-public-nav .is-primary {
      background: var(--ffp-orange);
      color: #ffffff;
      box-shadow: 0 10px 20px rgba(184, 90, 36, 0.14);
    }

    .ffp-public-nav .is-primary:hover {
      background: var(--ffp-orange-dark);
    }

    /* Hero */
    .ffp-hero {
      padding: 68px 0 36px;
    }

    .ffp-hero-grid {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      gap: 34px;
      align-items: center;
    }

    .ffp-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(184, 90, 36, 0.08);
      color: var(--ffp-orange);
      font-size: 11px;
      font-weight: 950;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .ffp-hero h1 {
      margin: 18px 0 16px;
      max-width: 680px;
      font-size: clamp(42px, 6vw, 72px);
      line-height: 0.95;
      letter-spacing: -0.07em;
      color: var(--ffp-navy);
    }

    .ffp-hero h1 span {
      color: var(--ffp-orange);
    }

    .ffp-hero-copy {
      max-width: 620px;
      margin: 0;
      color: #3f4f68;
      font-size: 18px;
      line-height: 1.55;
      font-weight: 650;
    }

    .ffp-hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .ffp-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      min-height: 50px;
      padding: 14px 19px;
      border-radius: 15px;
      border: 1px solid var(--ffp-border);
      text-decoration: none;
      font-size: 14px;
      font-weight: 950;
      letter-spacing: 0.02em;
    }

    .ffp-btn-primary {
      background: var(--ffp-orange);
      color: #ffffff;
      border-color: var(--ffp-orange);
      box-shadow: 0 12px 24px rgba(184, 90, 36, 0.14);
    }

    .ffp-btn-primary:hover {
      background: var(--ffp-orange-dark);
      border-color: var(--ffp-orange-dark);
    }

    .ffp-btn-secondary {
      background: #ffffff;
      color: var(--ffp-navy);
    }

    .ffp-btn-secondary:hover {
      background: #f6f8fc;
    }

    .ffp-trustline {
      margin-top: 18px;
      color: var(--ffp-muted);
      font-size: 13px;
      font-weight: 850;
    }

    /* Hero visual */
    .ffp-hero-card {
      position: relative;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid var(--ffp-border);
      border-radius: 28px;
      box-shadow: var(--ffp-shadow);
      padding: 22px;
      overflow: hidden;
    }

    .ffp-hero-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at top right, rgba(184, 90, 36, 0.13), transparent 40%),
        linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.88));
      pointer-events: none;
    }

    .ffp-mockup {
      position: relative;
      z-index: 2;
      display: grid;
      gap: 12px;
    }

    .ffp-mockup-row,
    .ffp-mockup-total,
    .ffp-mockup-payment {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      border: 1px solid #e4eaf3;
      background: #ffffff;
      border-radius: 16px;
      padding: 15px 16px;
    }

    .ffp-mockup-label {
      color: #7a879a;
      font-size: 11px;
      font-weight: 950;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .ffp-mockup-value {
      color: var(--ffp-navy);
      font-size: 18px;
      font-weight: 950;
    }

    .ffp-mockup-total {
      background: linear-gradient(180deg, var(--ffp-orange-soft), #ffffff);
      border-color: rgba(184, 90, 36, 0.22);
    }

    .ffp-mockup-total .ffp-mockup-value {
      font-size: 25px;
    }

    .ffp-mockup-payment {
      background: var(--ffp-navy);
      border-color: var(--ffp-navy);
      color: #ffffff;
    }

    .ffp-mockup-payment .ffp-mockup-label {
      color: rgba(255,255,255,0.7);
    }

    .ffp-mockup-payment .ffp-mockup-value {
      color: #ffffff;
      font-size: 28px;
    }

    .ffp-mockup-mini {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    /* Sections */
    .ffp-section {
      padding: 38px 0;
    }

    .ffp-section-head {
      max-width: 760px;
      margin-bottom: 22px;
    }

    .ffp-section-head h2 {
      margin: 0 0 10px;
      font-size: clamp(28px, 4vw, 44px);
      line-height: 1.03;
      letter-spacing: -0.055em;
      color: var(--ffp-navy);
    }

    .ffp-section-head p {
      margin: 0;
      color: #44536b;
      font-size: 16px;
      line-height: 1.55;
      font-weight: 650;
    }

    /* 3 steps */
    .ffp-step-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .ffp-step-card {
      background: rgba(255,255,255,0.96);
      border: 1px solid var(--ffp-border);
      border-radius: 24px;
      box-shadow: 0 12px 30px rgba(6, 27, 73, 0.07);
      padding: 22px;
      min-height: 240px;
    }

    .ffp-step-icon {
      width: 54px;
      height: 54px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: var(--ffp-orange-soft);
      color: var(--ffp-orange);
      font-size: 24px;
      margin-bottom: 18px;
    }

    .ffp-step-number {
      color: var(--ffp-orange);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .ffp-step-card h3 {
      margin: 8px 0 9px;
      font-size: 22px;
      line-height: 1.1;
      letter-spacing: -0.035em;
      color: var(--ffp-navy);
    }

    .ffp-step-card p {
      margin: 0;
      color: #4d5d74;
      font-size: 14px;
      line-height: 1.55;
      font-weight: 650;
    }

    /* Benefits */
    .ffp-benefit-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .ffp-benefit-card {
      background: #ffffff;
      border: 1px solid var(--ffp-border);
      border-radius: 20px;
      padding: 18px;
      box-shadow: 0 10px 24px rgba(6, 27, 73, 0.055);
    }

    .ffp-benefit-card i {
      color: var(--ffp-orange);
      font-size: 20px;
      margin-bottom: 12px;
    }

    .ffp-benefit-card h3 {
      margin: 0 0 8px;
      font-size: 17px;
      color: var(--ffp-navy);
    }

    .ffp-benefit-card p {
      margin: 0;
      color: #53627a;
      font-size: 13px;
      line-height: 1.5;
      font-weight: 650;
    }

    /* Industries */
    .ffp-industries-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .ffp-pill {
      padding: 10px 13px;
      border-radius: 999px;
      border: 1px solid var(--ffp-border);
      background: #ffffff;
      color: var(--ffp-navy);
      font-size: 13px;
      font-weight: 900;
      box-shadow: 0 8px 16px rgba(6, 27, 73, 0.045);
    }

    /* CTA */
    .ffp-final-cta {
      margin: 38px 0 54px;
      border-radius: 30px;
      border: 1px solid rgba(184, 90, 36, 0.22);
      background:
        radial-gradient(circle at top right, rgba(184, 90, 36, 0.12), transparent 360px),
        #ffffff;
      box-shadow: var(--ffp-shadow);
      padding: 34px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 26px;
    }

    .ffp-final-cta h2 {
      margin: 0 0 8px;
      font-size: clamp(26px, 4vw, 40px);
      line-height: 1.05;
      letter-spacing: -0.055em;
      color: var(--ffp-navy);
    }

    .ffp-final-cta p {
      margin: 0;
      color: #4b5b73;
      font-size: 15px;
      line-height: 1.5;
      font-weight: 650;
    }

    .ffp-final-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      flex: 0 0 auto;
    }

    /* Footer */
    .ffp-public-footer {
      border-top: 1px solid var(--ffp-border);
      background: rgba(255,255,255,0.7);
      padding: 24px 0;
      color: #68758a;
      font-size: 12px;
      font-weight: 700;
    }

    .ffp-footer-inner {
      width: min(100% - 32px, 1120px);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .ffp-footer-links {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .ffp-footer-links a {
      text-decoration: none;
      color: #526176;
    }

    /* Responsive */
    @media (max-width: 860px) {
      .ffp-public-header-inner {
        min-height: 68px;
      }

      .ffp-public-nav a:not(.is-primary) {
        display: none;
      }

      .ffp-hero {
        padding-top: 38px;
      }

      .ffp-hero-grid {
        grid-template-columns: 1fr;
      }

      .ffp-step-grid,
      .ffp-benefit-grid {
        grid-template-columns: 1fr;
      }

      .ffp-final-cta {
        display: block;
        padding: 26px;
      }

      .ffp-final-actions {
        margin-top: 20px;
      }
    }

    @media (max-width: 520px) {
      .ffp-public-shell,
      .ffp-public-header-inner,
      .ffp-footer-inner {
        width: min(100% - 24px, 1120px);
      }

      .ffp-public-brand img {
        width: 48px;
        height: 48px;
      }

      .ffp-public-brand strong {
        font-size: 20px;
      }

      .ffp-public-brand span {
        font-size: 11px;
      }

      .ffp-hero-copy {
        font-size: 16px;
      }

      .ffp-hero-actions .ffp-btn,
      .ffp-final-actions .ffp-btn {
        width: 100%;
      }

      .ffp-mockup-mini {
        grid-template-columns: 1fr;
      }
    }
	  .ffp-hr {
  width: min(100%, 1120px);
  margin: 34px auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.ffp-hr::before,
.ffp-hr::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(
    90deg,
    transparent,
    #d7e0ee,
    transparent
  );
}

.ffp-hr span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b85a24;
  box-shadow: 0 0 0 5px rgba(184, 90, 36, 0.09);
}
	  /* =========================================================
   FeeFactorPro - Splash Contact Form
========================================================= */

.ffp-contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
  border: 1px solid var(--ffp-border);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(184, 90, 36, 0.08), transparent 330px),
    #ffffff;
  box-shadow: var(--ffp-shadow);
  padding: 30px;
}

.ffp-contact-copy h2 {
  margin: 18px 0 12px;
  color: var(--ffp-navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.ffp-contact-copy p {
  margin: 0;
  color: #4b5b73;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 650;
}

.ffp-contact-form {
  display: grid;
  gap: 14px;
  margin: 0;
}

.ffp-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ffp-contact-form label {
  display: block;
  margin: 0 0 7px;
  color: var(--ffp-navy);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ffp-contact-form input,
.ffp-contact-form textarea {
  width: 100%;
  border: 1px solid var(--ffp-border);
  border-radius: 16px;
  background: #ffffff;
  color: var(--ffp-navy);
  padding: 14px 15px;
  font-size: 15px;
  font-weight: 750;
  font-family: Arial, Helvetica, sans-serif;
  box-shadow: inset 0 1px 0 rgba(6, 27, 73, 0.03);
}

.ffp-contact-form textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.45;
}

.ffp-contact-form input:focus,
.ffp-contact-form textarea:focus {
  outline: none;
  border-color: var(--ffp-orange);
  box-shadow: 0 0 0 4px rgba(184, 90, 36, 0.12);
}

.ffp-contact-submit {
  width: 100%;
  margin-top: 4px;
  border: 0;
  cursor: pointer;
}

.ffp-contact-flash {
  padding: 12px 14px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 850;
  line-height: 1.4;
}

.ffp-contact-flash.is-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.ffp-contact-flash.is-error {
  background: #fff5f5;
  border: 1px solid #ffd7d7;
  color: #b42318;
}

.ffp-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 820px) {
  .ffp-contact-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .ffp-contact-grid {
    grid-template-columns: 1fr;
  }
}
	  .ffp-feature-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--ffp-border);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: var(--ffp-shadow);
  padding: 30px;
}

.ffp-feature-card h2 {
  margin: 18px 0 12px;
  color: var(--ffp-navy);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.03;
  letter-spacing: -0.055em;
}

.ffp-feature-card p {
  color: #4b5b73;
  font-size: 15px;
  line-height: 1.6;
  font-weight: 650;
}

.ffp-upgrade-example {
  display: grid;
  gap: 10px;
}

.ffp-upgrade-row,
.ffp-upgrade-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid #d7e0ee;
  border-radius: 16px;
  background: #ffffff;
}

.ffp-upgrade-row span,
.ffp-upgrade-total span {
  color: var(--ffp-navy);
  font-size: 14px;
  font-weight: 900;
}

.ffp-upgrade-row strong {
  color: var(--ffp-orange);
  font-size: 15px;
  font-weight: 950;
  white-space: nowrap;
}

.ffp-upgrade-total {
  background: var(--ffp-orange-soft);
  border-color: rgba(184, 90, 36, 0.22);
}

.ffp-upgrade-total strong {
  color: var(--ffp-navy);
  font-size: 14px;
  font-weight: 950;
  text-align: right;
}

.ffp-feature-card-simple {
  grid-template-columns: 1fr;
}

@media (max-width: 820px) {
  .ffp-feature-card {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}
	  /* =========================================================
   FeeFactorPro - Brand Divider Fix
========================================================= */

.ffp-brand-divider {
  width: min(100% - 32px, 1120px);
  max-width: 1120px;
  margin: 42px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  clear: both;
}

.ffp-brand-divider::before,
.ffp-brand-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(6, 27, 73, 0.18),
    transparent
  );
}

.ffp-brand-divider-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ffp-orange-soft, #fbf1eb);
  border: 1px solid rgba(184, 90, 36, 0.22);
  color: var(--ffp-orange, #b85a24);
  box-shadow: 0 8px 18px rgba(6, 27, 73, 0.06);
  flex: 0 0 auto;
}

.ffp-brand-divider-mark i {
  display: inline-block;
  line-height: 1;
  font-size: 15px;
  color: inherit;
}

@media (max-width: 520px) {
  .ffp-brand-divider {
    width: min(100% - 24px, 1120px);
    margin: 32px auto;
  }
}
	  /* Desktop/tablet default */
.mobile-hide {
  display: block;
}

.mobile-show {
  display: none;
}

/* Mobile: get to the punch */
@media (max-width: 760px) {
  .mobile-hide {
    display: none !important;
  }

  .mobile-show {
    display: block !important;
  }
}
	  /* Mobile: tighten vertical spacing */
@media (max-width: 760px) {
  .ffp-hero {
    padding: 28px 0 18px !important;
  }

  .ffp-section {
    padding: 22px 0 !important;
  }

  .ffp-section-head {
    margin-bottom: 16px !important;
  }

  .ffp-section-head h2 {
    margin-bottom: 8px !important;
  }

  .ffp-brand-divider,
  .ffp-section-divider {
    margin: 22px auto !important;
  }

  .ffp-step-grid,
  .ffp-benefit-grid {
    gap: 12px !important;
  }

  .ffp-step-card,
  .ffp-benefit-card,
  .ffp-feature-card,
  .ffp-contact-card {
    padding: 20px !important;
  }

  .ffp-final-cta {
    margin: 24px 0 32px !important;
    padding: 22px !important;
  }
}
	  .ffp-marker {
  background-image: linear-gradient(
    transparent 68%,
    rgba(184, 90, 36, 0.18) 68%
  );
  background-repeat: no-repeat;
  background-size: 100% 100%;
  font-style: italic;
}
	  /* Anchor link offset for sticky header */
html {
  scroll-behavior: smooth;
}

section[id],
div[id],
[id] {
  scroll-margin-top: 60px;
}

/* =========================================================
   FeeFactorPro - Master Header / Navigation Override
   Use this on Home, Login, and New Account
========================================================= */

.ffp-sticky-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 99999 !important;
  width: 100% !important;

  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;

  border-bottom: 1px solid #d7deea !important;
  box-shadow: 0 4px 18px rgba(6, 27, 73, 0.05) !important;

  overflow: visible !important;
  box-sizing: border-box !important;
}

.ffp-sticky-header-inner {
  width: 100% !important;
  max-width: 1180px !important;
  min-height: 76px !important;

  margin: 0 auto !important;
  padding: 0 22px !important;
  box-sizing: border-box !important;

  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 22px !important;

  position: relative !important;
  overflow: visible !important;
}

.ffp-sticky-brand {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  text-decoration: none !important;
}

.ffp-sticky-brand img {
  display: block !important;
  width: auto !important;
  height: 44px !important;
  max-width: 230px !important;
  object-fit: contain !important;
}

.ffp-sticky-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  gap: 28px !important;

  margin: 0 0 0 auto !important;
  padding: 0 !important;

  list-style: none !important;
}

.ffp-sticky-nav a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  color: #061b49 !important;
  text-decoration: none !important;

  font-size: 14px !important;
  font-weight: 950 !important;
  letter-spacing: -0.01em !important;
  line-height: 1 !important;
  white-space: nowrap !important;

  transition: color 0.16s ease, background 0.16s ease, transform 0.16s ease !important;
}

.ffp-sticky-nav a:hover,
.ffp-sticky-nav a:focus {
  color: #e15a1a !important;
}

.ffp-sticky-nav .ffp-nav-cta {
  min-height: 42px !important;
  padding: 0 18px !important;

  border-radius: 999px !important;
  background: #78C01C !important;
  color: #ffffff !important;

  box-shadow: 0 10px 22px rgba(255, 99, 25, 0.22) !important;
}

.ffp-sticky-nav .ffp-nav-cta:hover,
.ffp-sticky-nav .ffp-nav-cta:focus {
  background: #e65312 !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

.ffp-menu-toggle {
  display: none !important;

  width: 44px !important;
  height: 44px !important;

  border: 1px solid #d7deea !important;
  border-radius: 14px !important;
  background: #ffffff !important;

  padding: 0 !important;
  margin: 0 !important;

  cursor: pointer !important;
  flex: 0 0 auto !important;

  box-shadow: 0 8px 18px rgba(6, 27, 73, 0.06) !important;
}

.ffp-menu-toggle span {
  display: block !important;
  width: 20px !important;
  height: 2px !important;

  margin: 5px auto !important;
  border-radius: 999px !important;
  background: #061b49 !important;

  transition: transform 0.18s ease, opacity 0.18s ease !important;
}

/* Smooth anchor behavior below sticky header */
html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 105px;
}

/* =========================================================
   Mobile Header / Dropdown
========================================================= */

@media (max-width: 760px) {
  .ffp-sticky-header-inner {
    min-height: 68px !important;
    padding: 0 12px !important;
  }

  .ffp-sticky-brand img {
    height: 38px !important;
    max-width: 205px !important;
  }

  .ffp-menu-toggle {
    display: inline-block !important;
  }

  .ffp-sticky-nav {
    display: none !important;

    position: absolute !important;
    top: calc(100% + 10px) !important;
    left: 10px !important;
    right: 10px !important;
    z-index: 100000 !important;

    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;

    margin: 0 !important;
    padding: 8px 0 !important;

    border: 1px solid #d7deea !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.98) !important;

    box-shadow: 0 18px 38px rgba(6, 27, 73, 0.14) !important;
    overflow: hidden !important;
  }

  .ffp-sticky-nav.is-open {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  .ffp-sticky-nav a {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;

    min-height: 48px !important;
    padding: 0 18px !important;

    border-bottom: 1px solid #e4eaf3 !important;
    border-radius: 0 !important;

    background: transparent !important;
    color: #061b49 !important;

    text-align: left !important;
    font-size: 15px !important;
    font-weight: 950 !important;
  }

  .ffp-sticky-nav a:last-child {
    border-bottom: 0 !important;
  }

  .ffp-sticky-nav a:hover,
  .ffp-sticky-nav a:focus {
    background: #f3f7fc !important;
    color: #e15a1a !important;
  }

  .ffp-sticky-nav .ffp-nav-cta {
    justify-content: center !important;

    min-height: 46px !important;
    margin: 8px 12px 4px !important;
    padding: 0 18px !important;

    border-radius: 999px !important;
    border-bottom: 0 !important;

    background: #78C01C !important;
    color: #ffffff !important;
  }

  .ffp-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }

  .ffp-menu-toggle.is-open span:nth-child(2) {
    opacity: 0 !important;
  }

  .ffp-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  [id] {
    scroll-margin-top: 92px;
  }
}

/* =========================================================
   FeeFactorPro - Guided Next Step Highlights
   Put at the very bottom of the quote-builder CSS
========================================================= */

:root {
  --ffp-next-green: #78C01C;
  --ffp-next-green-dark: #336600;
  --ffp-next-green-soft: #ebfbf0;
  --ffp-next-glow: 0 0 0 4px rgba(120, 192, 28, 0.14),
                   0 0 28px rgba(120, 192, 28, 0.34),
                   0 18px 44px rgba(6, 27, 73, 0.10);
}

/* -------------------------------
   STEP 1: Custom job price input
-------------------------------- */

.ffp-price-card .ffp-money-box {
  position: relative !important;
  border-color: rgba(120, 192, 28, 0.72) !important;
  background:
    radial-gradient(circle at top right, rgba(120, 192, 28, 0.13), transparent 42%),
    #ffffff !important;
  box-shadow: var(--ffp-next-glow) !important;
}

.ffp-price-card .ffp-money-box::after {
  content: "NEXT STEP";
  position: absolute;
  top: -13px;
  right: 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 24px;
  padding: 0 10px;

  border-radius: 999px;
  background: var(--ffp-next-green);
  color: #ffffff;

  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  box-shadow: 0 8px 18px rgba(120, 192, 28, 0.28);
}

/* Make the dollar sign feel active too */
.ffp-price-card .ffp-money-symbol {
  color: var(--ffp-next-green-dark) !important;
}

/* Optional: when user clicks into the field, increase glow slightly */
.ffp-price-card .ffp-money-box:focus-within {
  border-color: var(--ffp-next-green) !important;
  box-shadow:
    0 0 0 5px rgba(120, 192, 28, 0.18),
    0 0 34px rgba(120, 192, 28, 0.42),
    0 18px 44px rgba(6, 27, 73, 0.12) !important;
}


/* -------------------------------
   STEP 2: Choose Term
   Uses :has() so it only hits the card containing #termSelect
-------------------------------- */

.ffp-select-card:has(#termSelect) {
  position: relative !important;
  border-color: rgba(120, 192, 28, 0.72) !important;
  background:
    radial-gradient(circle at top right, rgba(120, 192, 28, 0.12), transparent 44%),
    #ffffff !important;
  box-shadow: var(--ffp-next-glow) !important;
}

.ffp-select-card:has(#termSelect)::before {
  content: "NEXT STEP";
  position: absolute;
  top: -13px;
  right: 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 24px;
  padding: 0 10px;

  border-radius: 999px;
  background: var(--ffp-next-green);
  color: #ffffff;

  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  box-shadow: 0 8px 18px rgba(120, 192, 28, 0.28);
}

.ffp-select-card:has(#termSelect) label {
  color: var(--ffp-next-green-dark) !important;
}

.ffp-select-card:has(#termSelect) select {
  border-color: rgba(120, 192, 28, 0.72) !important;
  box-shadow: inset 0 1px 0 rgba(6, 27, 73, 0.03) !important;
}


/* -------------------------------
   STEP 3: Choose Rate
-------------------------------- */

.ffp-select-card:has(#rateSelect) {
  position: relative !important;
  border-color: rgba(120, 192, 28, 0.72) !important;
  background:
    radial-gradient(circle at top right, rgba(120, 192, 28, 0.12), transparent 44%),
    #ffffff !important;
  box-shadow: var(--ffp-next-glow) !important;
}

.ffp-select-card:has(#rateSelect)::before {
  content: "NEXT STEP";
  position: absolute;
  top: -13px;
  right: 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 24px;
  padding: 0 10px;

  border-radius: 999px;
  background: var(--ffp-next-green);
  color: #ffffff;

  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  box-shadow: 0 8px 18px rgba(120, 192, 28, 0.28);
}

.ffp-select-card:has(#rateSelect) label {
  color: var(--ffp-next-green-dark) !important;
}

.ffp-select-card:has(#rateSelect) select {
  border-color: rgba(120, 192, 28, 0.72) !important;
}


/* -------------------------------
   Add-on stage after payment exists
   This makes the upsell step feel intentional, but lighter than required steps.
-------------------------------- */

.ffp-addon-list {
  position: relative !important;
}

.ffp-addon-divider {
  color: var(--ffp-next-green-dark) !important;
}

.ffp-addon-card,
.ffp-addon-card--compact {
  border-color: rgba(120, 192, 28, 0.34) !important;
}

.ffp-addon-card select,
.ffp-addon-compact-form select {
  border-color: rgba(120, 192, 28, 0.42) !important;
}


/* -------------------------------
   Motion: very subtle breathing glow
-------------------------------- */

@keyframes ffp-next-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 4px rgba(120, 192, 28, 0.12),
      0 0 24px rgba(120, 192, 28, 0.28),
      0 18px 44px rgba(6, 27, 73, 0.10);
  }

  50% {
    box-shadow:
      0 0 0 5px rgba(120, 192, 28, 0.18),
      0 0 36px rgba(120, 192, 28, 0.42),
      0 18px 44px rgba(6, 27, 73, 0.12);
  }
}

.ffp-price-card .ffp-money-box,
.ffp-select-card:has(#termSelect),
.ffp-select-card:has(#rateSelect) {
  animation: ffp-next-pulse 2.2s ease-in-out infinite;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .ffp-price-card .ffp-money-box,
  .ffp-select-card:has(#termSelect),
  .ffp-select-card:has(#rateSelect) {
    animation: none !important;
  }
}


/* -------------------------------
   Mobile tuning
-------------------------------- */

@media (max-width: 760px) {
  .ffp-price-card .ffp-money-box::after,
  .ffp-select-card:has(#termSelect)::before,
  .ffp-select-card:has(#rateSelect)::before {
    right: 14px;
    top: -12px;
    min-height: 22px;
    font-size: 9px;
  }
}