﻿/* ============================================================
   EasyAsset â€” Finance Pages
   Shared styles for all equipment finance & business loan pages
   Fonts + base styles inherited from ea-style.min.css + styles.css
   ============================================================ */

/* --- VARIABLES --- */
:root {
  --fp-green:       #83ffc0;
  --fp-green-dim:   #5ecc97;
  --fp-green-pale:  #edfff5;
  --fp-dark:        #143A21;
  --fp-text:        #434343;
  --fp-muted:       #8a8a8a;
  --fp-border:      #e8e8e8;
  /* aligns content left edge with the site nav logo (nav container = 960px centered) */
  --fp-pad-h:       max(20px, calc((100% - 960px) / 2));
  /* site nav is position:fixed â€” compensate with padding-top on fp-wrap */
  --fp-nav-h:       70px;
}

/* ── Inset page variant: widens all sections to match sidebar+content (1240px) ── */
.fp-wrap--inset {
  --fp-pad-h: max(20px, calc((100% - 1240px) / 2));
}

/* styles.css sets overflow-x:hidden on html+body which breaks position:sticky.
   overflow-x:clip clips visually the same way but does NOT create a scroll
   container, so sticky works. Only applies on pages that load this stylesheet. */
html, body { overflow-x: clip !important; }

/* --- CONTENT WRAPPER --- */
/* .fp-wrap is a <div> between the site nav and site footer. */
/* Scoped reset so finance page sections are clean-slate. */
.fp-wrap *, .fp-wrap *::before, .fp-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.fp-wrap {
  color: var(--fp-text);
  padding-top: var(--fp-nav-h);
}


/* ============================================================
   SECTION NAV PILLS (mobile only â€” hidden on desktop)
   ============================================================ */
.fp-sec-nav {
  display: none;
  position: sticky;
  top: var(--fp-nav-h);
  z-index: 49;
  background: var(--fp-dark);
  padding: 20px 16px 12px 8px;
  gap: 6px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  height: auto;
  align-items: center;
}
.fp-sec-nav::-webkit-scrollbar { display: none; }
.fp-sec-nav-pill {
  flex-shrink: 0;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,.1);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
  letter-spacing: -.1px;
}
.fp-sec-nav-pill.active {
  background: var(--fp-green);
  color: #434343;
}

/* ============================================================
   HERO
   ============================================================ */
.fp-hero {
  background: var(--fp-dark);
  padding: 64px var(--fp-pad-h) 0;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
}
.fp-hero-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
}
.fp-hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--fp-green);
}
.fp-hero-label-text {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.fp-hero h1 {
  font-size: 54px;
  font-weight: 800;
  color: #fff;
  line-height: 1.0;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
.fp-hero h1 em {
  font-style: normal;
  color: var(--fp-green);
}
.fp-hero-sub {
  font-size: 16px;
  color: #fff;
  line-height: 1.75;
  margin-bottom: 30px;
  font-weight: 300;
  max-width: 480px;
}
.fp-hero-pills {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.fp-hero-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: rgba(255,255,255,.9);
}
.fp-hero-pill-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(131,255,192,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.fp-hero-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 56px;
}
.fp-hero-btn {
  background: var(--fp-green);
  border: none;
  padding: 15px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: var(--fp-dark);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.fp-hero-btn:hover { background: #aaffce; color: var(--fp-dark); text-decoration: none; }
.fp-hero-cta-sub {
  font-size: 13px;
  color: #fff;
}

/* ============================================================
   LEAD FORM (inside hero)
   ============================================================ */
.fp-lf {
  background: #fff;
  border-radius: 20px 20px 0 0;
  padding: 30px 26px 36px;
  align-self: flex-end;
  scroll-margin-top: calc(var(--fp-nav-h) + 20px);
}
.fp-lf-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--fp-dark);
  margin-bottom: 4px;
}
.fp-lf-sub {
  font-size: 12px;
  color: var(--fp-muted);
  margin-bottom: 20px;
}
.fp-lf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.fp-fg {
  margin-bottom: 12px;
}
.fp-fg label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #434343;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.fp-fg input,
.fp-fg select {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--fp-border);
  border-radius: 11px;
  font-size: 13px;
  color: var(--fp-text);
  background: #fafafa;
  appearance: none;
  -webkit-appearance: none;
}
.fp-fg input:focus,
.fp-fg select:focus {
  outline: none;
  border-color: var(--fp-green);
}
.fp-fg select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8a8a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.fp-lf-btn {
  width: 100%;
  background: var(--fp-green);
  border: none;
  padding: 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: var(--fp-dark);
  cursor: pointer;
  margin-top: 6px;
  transition: opacity .2s;
}
.fp-lf-btn:hover { opacity: .88; }
.fp-lf-btn:disabled { opacity: .55; cursor: not-allowed; }
.fp-lf-note {
  font-size: 11px;
  color: var(--fp-muted);
  text-align: center;
  margin-top: 10px;
}
.fp-lf-success {
  display: none;
}
.confirm-wrap {
  text-align: center;
  padding: 16px 8px;
}
.confirm-tick {
  margin-bottom: 16px;
  /* Tailwind preflight forces svg { display: block }, which left-aligns the
     tick despite .confirm-wrap's text-align:center (production has no Tailwind,
     so the svg is inline and centres). Centre the block svg explicitly. */
  display: flex;
  justify-content: center;
}
.confirm-heading {
  font-size: 18px;
  font-weight: 700;
  color: var(--fp-dark);
  margin-bottom: 8px;
}
.confirm-sub {
  font-size: 13px;
  color: var(--fp-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.confirm-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--fp-dark);
  border-radius: 10px;
  padding: 12px 16px;
  gap: 12px;
}
.confirm-contact > span {
  font-size: 13px;
  color: #fff;
}
.confirm-phone {
  font-size: 15px;
  font-weight: 700;
  color: var(--fp-green);
  text-decoration: none;
  white-space: nowrap;
}
.confirm-phone:hover {
  color: #fff;
}
.fp-lf-error {
  font-size: 12px;
  color: #e53e3e;
  text-align: center;
  margin-top: 8px;
  display: none;
}

/* ============================================================
   STATS BAND
   ============================================================ */
.fp-stats {
  background: var(--fp-green);
  padding: 22px var(--fp-pad-h);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.fp-stat {
  text-align: center;
}
.fp-stat:not(:last-child) {
  border-right: 1px solid rgba(20,58,33,.15);
}
.fp-stat-num {
  font-size: 26px;
  font-weight: 800;
  color: var(--fp-dark);
}
.fp-stat-label {
  font-size: 11px;
  color: rgba(20,58,33,.55);
  font-weight: 600;
  margin-top: 3px;
}

/* ============================================================
   INTRO
   ============================================================ */
.fp-intro {
  padding: 52px var(--fp-pad-h) 44px;
  border-bottom: 1px solid var(--fp-border);
}
.fp-intro p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--fp-text);
  max-width: 100%;
}
.fp-intro strong {
  color: var(--fp-dark);
  font-weight: 700;
}

/* ============================================================
   CONTENT + SIDEBAR LAYOUT
   ============================================================ */
/* Flexbox (not Grid) â€” with align-items:flex-start the flex CONTAINER
   becomes the sticky containing block (= main content height), so the
   sidebar can actually stick. Grid confines sticky to the grid *area*,
   which collapses under align-self:start and breaks with align-self:stretch. */
.fp-content-wrap {
  display: flex;
  align-items: flex-start;
  padding-left: max(0px, calc((100% - 960px) / 2 - 240px));
  padding-right: max(20px, calc((100% - 960px) / 2));
}

/* main content wrapper â€” must have min-width:0 so flex children can shrink */
.fp-content-wrap > div {
  flex: 1;
  min-width: 0;
}

/* --- SIDEBAR --- */
.fp-sidebar {
  flex: 0 0 240px;
  position: sticky;
  top: var(--fp-nav-h);
  height: calc(100vh - var(--fp-nav-h));
  overflow-y: auto;
  padding: 32px 20px 32px 15px;
  border-right: 1px solid var(--fp-border);
  background: #fff;
}

/* sections inside the content grid â€” no extra horizontal padding needed */
.fp-content-wrap .fp-sec {
  padding-left: 40px;
  padding-right: 0;
}

/* ── Inset variant: sidebar + content centered together as one unit ── */
.fp-content-wrap--inset {
  max-width: 1240px;   /* 240 sidebar + 960 content + 40 section padding */
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}
.fp-content-wrap--inset .fp-sec {
  padding-right: 40px;
}
.fp-content-wrap--inset .fp-sec.fp-sec-alt::before {
  right: -40px;   /* bleed only to container edge, not viewport edge */
}

/* grey-background sections break out to full viewport width */
.fp-content-wrap .fp-sec.fp-sec-alt {
  background: transparent;
  position: relative;
  overflow: visible;
}
.fp-content-wrap .fp-sec.fp-sec-alt::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -40px;   /* cover section's own left padding only — don't bleed behind sidebar */
  right: -9999px;
  background: #fafafa;
  z-index: -1;
}

.fp-sidebar-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--fp-muted);
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 16px;
}
.fp-sidebar-link {
  display: block;
  font-size: 14px;
  color: var(--fp-text);        /* task 3: #434343 */
  font-weight: 400;             /* task 3: unbold */
  padding: 7px 12px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 2px;
  line-height: 1.4;
  transition: all .2s;
  border-left: 2px solid transparent;
  white-space: nowrap;
}
.fp-sidebar-link:hover {
  color: var(--fp-dark);
  background: var(--fp-green-pale);
  border-left-color: var(--fp-green);
}
.fp-sidebar-link.active {
  color: var(--fp-dark);
  font-weight: 700;             /* task 3: bold when active */
  background: var(--fp-green-pale);
  border-left-color: var(--fp-green);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.fp-sec {
  padding: 52px var(--fp-pad-h);
}
.fp-sec-alt {
  background: #fafafa;
}
.fp-sec-label {
  margin-bottom: 14px;
}
.fp-sec-pill {
  background: var(--fp-green);
  color: var(--fp-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-block;
}
.fp-sh2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--fp-dark);
  line-height: 1.12;
  margin-bottom: 12px;
  letter-spacing: -.5px;
}
.fp-slead {
  font-size: 15px;
  color: var(--fp-text);
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 660px;
}

/* ============================================================
   FINANCE TYPE GRID (2Ã—3 cards)
   ============================================================ */
.fp-ftg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--fp-border);
  border: 1px solid var(--fp-border);
  border-radius: 18px;
  overflow: hidden;
}
.fp-ftc {
  background: #fff;
  padding: 24px 26px;
  transition: background .2s;
}
.fp-ftc:hover { background: var(--fp-green-pale); }
.fp-ftc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}
.fp-ftc-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--fp-dark);
}
.fp-ftc-badge {
  background: var(--fp-green);
  color: var(--fp-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 8px;
}
.fp-ftc-desc {
  font-size: 14px;
  color: var(--fp-text);
  line-height: 1.65;
}
.fp-ftc-desc strong {
  color: var(--fp-dark);
  display: block;
  margin-bottom: 2px;
  font-weight: 400;
  font-style: italic;
}

/* ============================================================
   ELIGIBILITY GRID
   ============================================================ */
.fp-elig {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fp-elig-item {
  padding: 20px 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--fp-border);
  border-left: 4px solid var(--fp-border);
}
.fp-elig-item.highlight {
  border-left-color: var(--fp-green);
}
.fp-elig-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--fp-dark);
  margin-bottom: 7px;
}
.fp-elig-body {
  font-size: 14px;
  color: var(--fp-text);
  line-height: 1.65;
}

/* ============================================================
   SCENARIO CARDS
   ============================================================ */
.fp-scen-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.fp-sc {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--fp-border);
  display: flex;
  flex-direction: column;
}
.fp-sc-head { padding: 22px 26px; }
.fp-sc-icon { margin-bottom: 10px; }
.fp-sc-icon svg { width: 52px !important; height: 52px !important; }
.fp-sc.entry .fp-sc-head { background: #edfff5; }
.fp-sc.mid   .fp-sc-head { background: #fff8ed; }
.fp-sc.high  .fp-sc-head { background: #f0edff; }

.fp-sc-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 14px;
}
.fp-sc.entry .fp-sc-badge { background: rgba(26,122,74,.15); color: #1a7a4a; }
.fp-sc.mid   .fp-sc-badge { background: rgba(140,82,0,.12);  color: #8c5200; }
.fp-sc.high  .fp-sc-badge { background: rgba(74,29,181,.12); color: #4a1db5; }

.fp-sc-price {
font-size: 14px;
  font-weight: 800;
  color: var(--fp-dark);
  line-height: 1;
  letter-spacing: -1px;
}
.fp-sc-vehicle {
  font-size: 12px;
  color: var(--fp-muted);
  margin-top: 6px;
  line-height: 1.5;
}
.fp-sc-body {
  padding: 22px 26px;
  background: #fff;
  flex: 1;
}
.fp-sc-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--fp-border);
}
.fp-sc-row:last-of-type { border-bottom: none; }
.fp-sc-row-label {
  font-size: 11px;
  color: var(--fp-text);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.fp-sc-row-val {
  font-size: 13px;
  font-weight: 700;
  color: var(--fp-dark);
}
.fp-sc-repayment {
  background: #fafafa;
  border-top: 1px solid var(--fp-border);
  padding: 18px 26px;
  text-align: center;
}
.fp-sc-rep-label {
  font-size: 10px;
  color: var(--fp-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 6px;
}
.fp-sc-rep-amount {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.5px;
}
.fp-sc.entry .fp-sc-rep-amount { color: #1a9960; }
.fp-sc.mid   .fp-sc-rep-amount { color: #b56b00; }
.fp-sc.high  .fp-sc-rep-amount { color: #4a1db5; }
.fp-sc-rep-sub {
  font-size: 11px;
  color: var(--fp-text);
  margin-top: 4px;
}
.fp-sc-operator {
  padding: 16px 26px;
  background: #fff;
  border-top: 1px solid var(--fp-border);
}
.fp-sc-op-who {
  font-size: 12px;
  font-weight: 700;
  color: var(--fp-dark);
  margin-bottom: 3px;
}
.fp-sc-op-desc {
  font-size: 11px;
  color: var(--fp-text);
  line-height: 1.55;
}
.fp-sc-disclaimer {
  font-size: 11px;
  color: var(--fp-muted);
  margin-top: 16px;
}

/* ============================================================
   NEW VS USED TABS
   ============================================================ */
.fp-nvu-tabs {
  display: flex;
  background: rgba(20,58,33,.06);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  margin-bottom: 20px;
  max-width: 380px;
}
.fp-nvu-tab {
  flex: 1;
  text-align: center;
  padding: 9px 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--fp-muted);
  cursor: pointer;
  transition: all .2s;
  user-select: none;
}
.fp-nvu-tab.active {
  background: var(--fp-dark);
  color: #fff;
}
.fp-nvu-panel { display: none; }
.fp-nvu-panel.active { display: block; }
.fp-nvu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}
.fp-nvu-col-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--fp-border);
}
.fp-nvu-col-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--fp-dark);
}
.fp-nvu-col-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}
.fp-nvu-badge-green {
  background: var(--fp-green);
  color: var(--fp-dark);
}
.fp-nvu-badge-dark {
  background: var(--fp-dark);
  color: #fff;
}
.fp-nvu-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--fp-border);
  font-size: 14px;
  color: var(--fp-text);
  line-height: 1.6;
}
.fp-nvu-item:last-child { border-bottom: none; }
.fp-nvu-item strong {
  font-weight: 700;
  color: var(--fp-dark);
  display: block;
  margin-bottom: 3px;
}

@media (min-width: 768px) {
  .fp-nvu-tabs { display: none; }
  .fp-nvu-grid .fp-nvu-panel { display: block; }
}

/* ============================================================
   REPAYMENT CALCULATOR
   ============================================================ */
.fp-calc {
  background: var(--fp-dark);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.fp-calc-left {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fp-calc-left h3 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: -.3px;
}
.fp-calc-left p {
  font-size: 14px;
  color: #fff;
  line-height: 1.65;
  margin-bottom: 28px;
}
.fp-calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fp-ci-label {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fp-ci-label span {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
}
.fp-range {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  border: none;
  background: rgba(255,255,255,.15);
  cursor: pointer;
}
.fp-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--fp-green);
  cursor: pointer;
  border: 2px solid #fff;
}
.fp-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--fp-green);
  cursor: pointer;
  border: 2px solid #fff;
}
.fp-calc-toggle {
  display: flex;
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  margin-top: 4px;
}
.fp-calc-toggle-btn {
  flex: 1;
  text-align: center;
  padding: 6px 0;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all .2s;
  border: none;
  background: none;
}
.fp-calc-toggle-btn.on {
  background: var(--fp-green);
  color: var(--fp-dark);
}
.fp-calc-right {
  background: rgba(255,255,255,.04);
  border-left: 1px solid rgba(255,255,255,.07);
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.fp-calc-result-label {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.fp-calc-result-amount {
  font-size: 52px;
  font-weight: 800;
  color: var(--fp-green);
  line-height: 1;
  letter-spacing: -2px;
}
.fp-calc-result-period {
  font-size: 14px;
  color: #fff;
  margin-top: 6px;
  margin-bottom: 28px;
}
.fp-calc-breakdown {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.08);
}
.fp-calc-bd-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.fp-calc-bd-row:last-child { border-bottom: none; }
.fp-calc-bd-label {
  font-size: 12px;
  color: #fff;
}
.fp-calc-bd-val {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
}
.fp-calc-cta {
  margin-top: 24px;
  width: 100%;
  background: var(--fp-green);
  border: none;
  padding: 13px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--fp-dark);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.fp-calc-cta:hover { background: #aaffce; color: var(--fp-dark); text-decoration: none; }
.fp-calc-disclaimer {
  font-size: 10px;
  color: #fff;
  margin-top: 12px;
  line-height: 1.5;
}

/* ============================================================
   TAX BENEFITS
   ============================================================ */
.fp-tax-list { display: flex; flex-direction: column; }
.fp-tax-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 24px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--fp-border);
}
.fp-tax-item:last-child { border-bottom: none; }
.fp-tax-num {
  font-size: 38px;
  font-weight: 800;
  color: var(--fp-green);
  line-height: 1;
}
.fp-tax-head {
  font-size: 15px;
  font-weight: 700;
  color: var(--fp-dark);
  margin-bottom: 5px;
}
.fp-tax-body {
  font-size: 14px;
  color: var(--fp-text);
  line-height: 1.65;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.fp-hiw {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 36px;
  position: relative;
}
.fp-hiw::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1.5px;
  background: var(--fp-border);
}
.fp-hiw-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 14px;
}
.fp-hiw-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--fp-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 15px;
  font-weight: 800;
  color: var(--fp-dark);
}
.fp-hiw-step h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--fp-dark);
  margin-bottom: 6px;
}
.fp-hiw-step p {
  font-size: 14px;
  color: var(--fp-text);
  line-height: 1.55;
}
.fp-hiw-cta-wrap {
  text-align: center;
  margin-top: 40px;
}
.fp-hiw-cta {
  background: var(--fp-green);
  border: none;
  padding: 15px 36px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  color: var(--fp-dark);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.fp-hiw-cta:hover { background: #aaffce; color: var(--fp-dark); text-decoration: none; }
.fp-hiw-cta-sub {
  font-size: 12px;
  color: var(--fp-muted);
  margin-top: 20px;
}

/* ============================================================
   AI STRUCTURE RECOMMENDER
   ============================================================ */
.fp-ai {
  background: var(--fp-dark);
  border-radius: 20px;
  overflow: hidden;
}
.fp-ai-inner { padding: 40px 48px; }
.fp-ai-inner h3 {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -.3px;
}
.fp-ai-sub {
  font-size: 14px;
  color: #fff;
  margin-bottom: 32px;
  line-height: 1.6;
}
.fp-ai-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 32px;
}
.fp-ai-prog-step {
  height: 3px;
  flex: 1;
  border-radius: 2px;
  background: rgba(255,255,255,.1);
  transition: background .3s;
}
.fp-ai-prog-step.done   { background: var(--fp-green); }
.fp-ai-prog-step.active { background: rgba(131,255,192,.45); }
.fp-ai-q-label {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 12px;
}
.fp-ai-q-text {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.3;
}
.fp-ai-opts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.fp-ai-opt {
  padding: 11px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.15);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  cursor: pointer;
  transition: all .2s;
}
.fp-ai-opt:hover { border-color: var(--fp-green); color: #fff; }
.fp-ai-opt.selected {
  background: var(--fp-green);
  border-color: var(--fp-green);
  color: var(--fp-dark);
  font-weight: 700;
}
.fp-ai-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.fp-ai-back {
  background: transparent;
  border: none;
  font-size: 13px;
  color: #fff;
  cursor: pointer;
  padding: 0;
}
.fp-ai-next {
  background: var(--fp-green);
  border: none;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--fp-dark);
  cursor: pointer;
  opacity: .4;
  pointer-events: none;
  transition: opacity .2s;
}
.fp-ai-next.ready { opacity: 1; pointer-events: all; }
.fp-ai-loading {
  text-align: center;
  padding: 40px 0;
  display: none;
}
.fp-ai-loading-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.fp-ai-loading-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fp-green);
  animation: fpPulse 1.2s ease-in-out infinite;
}
.fp-ai-loading-dot:nth-child(2) { animation-delay: .2s; }
.fp-ai-loading-dot:nth-child(3) { animation-delay: .4s; }
@keyframes fpPulse {
  0%, 100% { opacity: .18; }
  50%       { opacity: 1; }
}
.fp-ai-loading p {
  font-size: 14px;
  color: #fff;
}
.fp-ai-result { display: none; }
.fp-ai-result-top {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 24px;
}
.fp-ai-result-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(131,255,192,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.fp-ai-result-rec-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(131,255,192,.75);
  text-transform: uppercase;
  letter-spacing: .07em;
  margin-bottom: 6px;
}
.fp-ai-result-rec-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--fp-green);
  letter-spacing: -.5px;
}
.fp-ai-result-body {
  font-size: 14px;
  color: #fff;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 680px;
}
.fp-ai-reasons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.fp-ai-reason {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.fp-ai-reason-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(131,255,192,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.fp-ai-reason-dot svg { width: 10px; height: 10px; }
.fp-ai-reason-text {
  font-size: 13px;
  color: #fff;
  line-height: 1.6;
}
.fp-ai-result-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.fp-ai-result-cta {
  background: var(--fp-green);
  border: none;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--fp-dark);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.fp-ai-result-cta:hover { background: #aaffce; color: var(--fp-dark); text-decoration: none; }
.fp-ai-result-restart {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.25);
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
}
.fp-ai-result-restart:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.fp-ai-error {
  font-size: 13px;
  color: rgba(255,100,100,.7);
  margin-top: 8px;
  display: none;
}

/* ============================================================
   FAQ
   ============================================================ */
.fp-faq { max-width: 760px; }
.fp-faq-item {
  border-bottom: 1px solid var(--fp-border);
  padding: 20px 0;
}
.fp-faq-item:first-child { border-top: 1px solid var(--fp-border); }
.fp-faq-q {
  font-size: 15px;
  font-weight: 600;
  color: var(--fp-dark);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  user-select: none;
  line-height: 1.4;
}
.fp-faq-q:hover { color: #000; }
.fp-faq-plus {
  font-size: 24px;
  color: var(--fp-green-dim);
  flex-shrink: 0;
  font-weight: 300;
  line-height: 1;
  transition: transform .25s;
}
.fp-faq-item.open .fp-faq-plus {
  transform: rotate(45deg);
  color: var(--fp-dark);
}
.fp-faq-a {
  font-size: 14px;
  color: var(--fp-text);
  line-height: 1.7;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, margin-top .3s ease;
}

/* ============================================================
   BOTTOM CTA
   ============================================================ */
.fp-bcta {
  background: var(--fp-dark);
  padding: 64px var(--fp-pad-h);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
/* PORT FIX: in the original cshtml .fp-bcta sits INSIDE .fp-wrap--inset and
   inherits its 1240px --fp-pad-h. The React template owns .fp-wrap--inset and
   each product page renders .fp-bcta as a sibling AFTER it, so the variable
   falls back to the narrower :root 960px value and the CTA renders too narrow.
   Re-supply the inset padding on .fp-bcta itself (a custom property set on an
   element is visible to that element's own `padding`). Skipped at <=768px,
   where the rule above is overridden with a fixed 20px padding anyway. */
.fp-bcta {
  --fp-pad-h: max(20px, calc((100% - 1240px) / 2));
}
.fp-bcta-overline {
  font-size: 12px;
  font-weight: 700;
  color: var(--fp-green);
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 12px;
}
.fp-bcta h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -.5px;
  margin-bottom: 10px;
}
.fp-bcta p {
  font-size: 14px;
  color: #fff;
}
.fp-bcta-btn {
  background: var(--fp-green);
  border: none;
  padding: 18px 40px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  color: var(--fp-dark);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.fp-bcta-btn:hover {
  background: #aaffce;
  color: var(--fp-dark);
  text-decoration: none;
}

/* ============================================================
   MOBILE STICKY CTA (mobile only â€” never on desktop)
   ============================================================ */
.fp-sticky-cta {
  display: none !important; /* hidden on desktop always */
  position: sticky;
  bottom: 0;
  z-index: 99;
  background: #fff;
  border-top: 1px solid var(--fp-border);
  padding: 12px 20px 16px;
  flex-direction: column;
  gap: 4px;
}
.fp-sticky-cta-btn {
  width: 100%;
  background: var(--fp-green);
  border: none;
  padding: 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  color: var(--fp-dark);
  cursor: pointer;
  letter-spacing: -.2px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.fp-sticky-cta-btn:hover { background: #aaffce; color: var(--fp-dark); text-decoration: none; }
.fp-sticky-cta-note {
  font-size: 10px;
  color: var(--fp-muted);
  text-align: center;
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE â€” TABLET/MOBILE (< 1024px)
   ============================================================ */
@media (max-width: 1023px) {

  /* Section pills nav â€” show on mobile */
  .fp-sec-nav { display: flex; }
  /* --fp-nav-h stays at desktop value (70px) — nav height is the same on mobile */

  /* Sticky CTA â€” show on mobile (unless JS hides it) */
  .fp-sticky-cta { display: flex !important; }
  .fp-sticky-cta.fp-sticky-hidden { display: none !important; }

  /* Hero â€” stack */
  .fp-hero {
    grid-template-columns: 1fr;
    padding: 28px 20px 0;
    gap: 0;
  }
  .fp-hero h1 {
    font-size: 50px;
    letter-spacing: -2px;
    margin-bottom: 12px;
  }
  .fp-hero-sub {
    font-size: 13px;
    color: #fff;
    margin-bottom: 20px;
  }
  .fp-hero-pill { font-size: 12px; }
  .fp-hero-pill-icon { width: 26px; height: 26px; font-size: 11px; }
  .fp-hero-pills { margin-bottom: 0; }
  .fp-hero-cta { display: none; }

  /* Lead form â€” mobile */
  .fp-lf {
    border-radius: 20px 20px 0 0;
    padding: 22px 18px 28px;
    margin-top: 20px;
  }
  .fp-lf-title { font-size: 25px; }
  .fp-lf-row { gap: 8px; }
  .fp-lf-btn { font-size: 14px; padding: 13px; }

  /* Stats */
  .fp-stats {
    padding: 14px 20px;
    grid-template-columns: repeat(3, 1fr);
  }
  .fp-stats .fp-stat:nth-child(4),
  .fp-stats .fp-stat:nth-child(5) { display: none; }
  .fp-stat-num { font-size: 20px; }
  .fp-stat-label { font-size: 9px; }

  /* Intro */
  .fp-intro { padding: 22px 20px; }
  .fp-intro p { font-size: 13px; line-height: 1.75; }

  /* Content layout â€” remove sidebar */
  .fp-content-wrap { display: block; padding-left: 20px; padding-right: 20px; }
  .fp-content-wrap .fp-sec { padding-left: 0; padding-right: 0; }
  .fp-sidebar { display: none; }

  /* Scroll offset: nav (70px) + section pills bar (~48px) = 118px */
  .fp-sec { scroll-margin-top: 118px; }

  /* Sections */
  .fp-sec { padding: 26px 20px; }
  .fp-sh2 { font-size: 22px; letter-spacing: -.5px; }
  .fp-slead { font-size: 13px; margin-bottom: 20px; }

  /* Finance type grid â†’ list */
  .fp-ftg {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }
  .fp-ftc { padding: 14px 16px; }
  .fp-ftc-name { font-size: 14px; }
  .fp-ftc-desc { font-size: 12px; }

  /* Eligibility grid â†’ list */
  .fp-elig { grid-template-columns: 1fr; gap: 10px; }
  .fp-elig-item { padding: 14px 16px; border-radius: 12px; }
  .fp-elig-title { font-size: 13px; }
  .fp-elig-body { font-size: 12px; }

  /* Scenarios â†’ stack */
  .fp-scen-wrap { grid-template-columns: 1fr; gap: 14px; }
  .fp-sc-head { padding: 14px 16px; }
  .fp-sc-price { font-size: 14px; }
  .fp-sc-body { padding: 12px 16px; }
  .fp-sc-repayment { padding: 12px 16px; }
  .fp-sc-rep-amount { font-size: 24px; }

  /* NVU tabs */
  .fp-nvu-tabs { max-width: 100%; }

  /* Calculator â†’ stack */
  .fp-calc { grid-template-columns: 1fr; border-radius: 16px; }
  .fp-calc-left { padding: 20px 18px 16px; }
  .fp-calc-left h3 { font-size: 16px; }
  .fp-calc-left p { font-size: 11px; margin-bottom: 16px; }
  .fp-calc-right {
    border-left: none;
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 18px 18px;
  }
  .fp-calc-result-amount { font-size: 44px; letter-spacing: -2px; }
  .fp-calc-result-period { font-size: 12px; margin-bottom: 16px; }
  .fp-calc-bd-label { font-size: 11px; }
  .fp-calc-bd-val { font-size: 12px; }

  /* Tax */
  .fp-tax-item { grid-template-columns: 46px 1fr; gap: 12px; padding: 14px 0; }
  .fp-tax-num { font-size: 28px; }
  .fp-tax-head { font-size: 13px; }
  .fp-tax-body { font-size: 12px; }

  /* How it works â†’ vertical */
  .fp-hiw { grid-template-columns: 1fr; gap: 0; margin-top: 0; }
  .fp-hiw::before { display: none; }
  .fp-hiw-step { text-align: left; display: flex; gap: 14px; padding: 14px 0; position: relative; }
  .fp-hiw-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 21px;
    top: 50px;
    width: 2px;
    height: calc(100% - 36px);
    background: var(--fp-border);
  }
  .fp-hiw-dot { margin: 0; flex-shrink: 0; }
  .fp-hiw-step-content { padding-top: 9px; }
  .fp-hiw-step h4 { text-align: left; }
  .fp-hiw-step p { text-align: left; }

  /* AI recommender */
  .fp-ai-inner { padding: 20px 18px; }
  .fp-ai-inner h3 { font-size: 17px; }
  .fp-ai-sub { font-size: 12px; margin-bottom: 18px; }
  .fp-ai-progress { margin-bottom: 18px; }
  .fp-ai-q-text { font-size: 16px; margin-bottom: 14px; }
  .fp-ai-opts { gap: 8px; margin-bottom: 18px; }
  .fp-ai-opt { padding: 12px 14px; border-radius: 12px; font-size: 13px; font-weight: 600; }
  .fp-ai-result-rec-name { font-size: 22px; }
  .fp-ai-result-body { font-size: 13px; }
  .fp-ai-result-actions { flex-direction: column; }
  .fp-ai-result-cta, .fp-ai-result-restart { width: 100%; padding: 12px; font-size: 13px; }

  /* FAQ */
  .fp-faq { max-width: 100%; }
  .fp-faq-item { padding: 13px 0; }
  .fp-faq-q { font-size: 13px; }
  .fp-faq-plus { font-size: 20px; }
  .fp-faq-a { font-size: 12px; }

  /* Bottom CTA â†’ stack */
  .fp-bcta { padding: 32px 20px; grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .fp-bcta h2 { font-size: 24px; letter-spacing: -.5px; }
  .fp-bcta-btn { width: 100%; padding: 14px 30px; font-size: 14px; }
}

/* ── Business Loan: Mechanics flow diagram ──────────────────────── */
.fp-mechanics { display: flex; flex-direction: column; gap: 0; }
.fp-mechanic-step { display: grid; grid-template-columns: 52px 1fr; gap: 20px; position: relative; }
.fp-mechanic-step:not(:last-child) { padding-bottom: 32px; }
.fp-mechanic-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 25px;
  top: 52px;
  width: 2px;
  height: calc(100% - 20px);
  background: linear-gradient(to bottom, var(--fp-green), rgba(131,255,192,0.15));
}
.fp-mechanic-num {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--fp-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: var(--fp-green);
  flex-shrink: 0; z-index: 1;
}
.fp-mechanic-body { padding-top: 12px; }
.fp-mechanic-body h4 { font-size: 15px; font-weight: 700; color: var(--fp-dark); margin-bottom: 6px; }
.fp-mechanic-body p { font-family: var(--fp-font); font-size: 14px; color: var(--fp-text); line-height: 1.65; }
.fp-mechanic-tag {
  display: inline-block;
  background: var(--fp-green-pale); border: 1px solid var(--fp-green-pale);
  color: var(--fp-dark); font-size: 11px; font-weight: 400;
  padding: 3px 10px; border-radius: 999px; margin-top: 8px;
}

/* ── Business Loan: Product type grid ───────────────────────────── */
.fp-itype-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--fp-border);
  border: 1px solid var(--fp-border); border-radius: 18px; overflow: hidden;
}
.fp-itype-card { background: #fff; padding: 28px 24px; transition: background .2s; }
.fp-itype-card:hover { background: var(--fp-green-pale); }
.fp-itype-icon { font-size: 28px; margin-bottom: 14px; display: block; }
.fp-itype-name {
  font-size: 16px; font-weight: 700; color: var(--fp-dark);
  margin-bottom: 6px; display: flex; align-items: center; gap: 10px;
}
.fp-itype-badge {
  font-size: 9px; font-weight: 700;
  padding: 3px 10px; border-radius: 999px;
  background: var(--fp-green); color: var(--fp-dark);
}
.fp-itype-desc {
  font-family: var(--fp-font); font-size: 14px;
  color: var(--fp-text); line-height: 1.65; margin-bottom: 16px;
}
.fp-itype-pros { display: flex; flex-direction: column; gap: 6px; }
.fp-itype-pro {
  display: flex; align-items: flex-start; gap: 8px;
  font-family: var(--fp-font); font-size: 14px; color: var(--fp-text);
}
.fp-itype-pro-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--fp-green-dim); flex-shrink: 0; margin-top: 5px;
}

/* ── Business Loan: 4-column itype grid variant ─────────────────── */
.fp-itype-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Business Loan: Costs & fees ───────────────────────────────── */
.fp-costs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 28px; }
.fp-cost-card {
  background: #fff; border: 1px solid var(--fp-border);
  border-radius: 14px; padding: 22px 24px;
}
.fp-cost-icon { font-size: 24px; margin-bottom: 10px; display: block; }
.fp-cost-name { font-size: 15px; font-weight: 700; color: var(--fp-dark); margin-bottom: 6px; }
.fp-cost-range {
  display: inline-block; font-size: 12px; font-weight: 700;
  color: var(--fp-dark); background: var(--fp-green-pale);
  border: 1px solid var(--fp-green-pale); padding: 3px 12px;
  border-radius: 999px; margin-bottom: 10px;
}
.fp-cost-desc { font-family: var(--fp-font); font-size: 14px; color: var(--fp-text); line-height: 1.65; }
.fp-cost-note {
  background: var(--fp-dark); border-radius: 14px;
  padding: 22px 28px; display: flex; align-items: center; gap: 20px;
}
.fp-cost-note-icon { font-size: 28px; flex-shrink: 0; }
.fp-cost-note-text { font-family: var(--fp-font); font-size: 14px; color: #fff; line-height: 1.65; }
.fp-cost-note-text strong { color: #fff; font-family: 'Montserrat', sans-serif; }

/* ── Business Loan: Scenario card head (industry/icon variant) ───── */
.fp-sc-ico { font-size: 24px; margin-bottom: 8px; display: block; }
.fp-sc-industry { font-size: 14px; font-weight: 700; color: var(--fp-dark); margin-bottom: 4px; }
.fp-sc-sub { font-family: var(--fp-font); font-size: 11px; color: var(--fp-muted); line-height: 1.4; }
.fp-sc-highlight { background: #fafafa; border-top: 1px solid var(--fp-border); padding: 16px 22px; }
.fp-sc-hl-label {
  font-size: 10px; color: var(--fp-muted); font-family: var(--fp-font);
  text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 5px;
}
.fp-sc-hl-amount { font-size: 26px; font-weight: 800; letter-spacing: -0.5px; line-height: 1; }
.fp-sc.entry .fp-sc-hl-amount { color: #1a9960; }
.fp-sc.mid .fp-sc-hl-amount { color: #0052b4; }
.fp-sc.high .fp-sc-hl-amount { color: #b46400; }
.fp-sc.entry .fp-sc-hl-amount,
.fp-sc-highlight .fp-sc-hl-amount { color: #1a9960; }
.fp-sc.mid .fp-sc-highlight .fp-sc-hl-amount { color: #0052b4; }
.fp-sc.high .fp-sc-highlight .fp-sc-hl-amount { color: #b46400; }
.fp-sc-hl-sub { font-size: 11px; color: var(--fp-muted); font-family: var(--fp-font); margin-top: 3px; }

/* Scenario row labels reused (sc-rl / sc-rv aliases for readability in BL views) */
.fp-sc-rl { font-size: 10px; color: var(--fp-muted); font-family: var(--fp-font); text-transform: uppercase; letter-spacing: 0.04em; }
.fp-sc-rv { font-size: 13px; font-weight: 700; color: var(--fp-text); }

/* ── Fitout: specialty split grid (Chair bays vs support, Kitchen vs FOH, etc.) */
.fvs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.fvs-col h3 { font-size: 17px; font-weight: 700; color: var(--fp-dark); margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.fvs-tag { font-size: 10px; font-weight: 700; padding: 4px 12px; border-radius: 999px; }
.fvs-tag.fit { background: var(--fp-dark); color: #fff; }
.fvs-tag.single { background: var(--fp-green); color: var(--fp-dark); }
.fvs-item { padding: 13px 0; border-bottom: 1px solid var(--fp-border); font-size: 14px; color: var(--fp-text); line-height: 1.65; }
.fvs-item:last-child { border-bottom: none; }
.fvs-item strong { color: var(--fp-dark); display: block; font-size: 14px; margin-bottom: 3px; }

/* NVU grid: single column on mobile where tabs toggle panels one at a time */
@media (max-width: 767px) {
  .fp-nvu-grid { grid-template-columns: 1fr; }
}

/* ── Business Loan: responsive overrides ─────────────────────────── */
@media (max-width: 767px) {
  .fp-mechanic-step { grid-template-columns: 40px 1fr; gap: 12px; }
  .fp-mechanic-num { width: 40px; height: 40px; border-radius: 10px; font-size: 16px; }
  .fp-mechanic-step:not(:last-child)::after { left: 19px; top: 40px; }
  .fp-mechanic-body { padding-top: 8px; }
  .fp-mechanic-body h4 { font-size: 13px; }
  .fp-mechanic-body p { font-size: 12px; }
  .fp-itype-grid { grid-template-columns: 1fr; }
  .fp-itype-grid-4 { grid-template-columns: 1fr; }
  .fp-itype-card { padding: 22px 18px; }
  .fp-itype-name { font-size: 14px; }
  .fp-costs-grid { grid-template-columns: 1fr; }
  .fp-cost-note { flex-direction: column; gap: 12px; }
  .fp-sc-hl-amount { font-size: 20px; }
  .fvs-grid { grid-template-columns: 1fr; gap: 24px; }
  .fp-sc-industry { font-size: 13px; }
  .fp-sc-sub { font-size: 10px; }
  .fp-sc-highlight { padding: 12px 16px; }
  .fp-sc-hl-label { font-size: 9px; }
  .fp-cost-card { padding: 16px 18px; }
  .fp-cost-name { font-size: 13px; }
  .fp-cost-desc { font-size: 13px; }
  .fp-cost-note-text { font-size: 13px; }
}

