/**
 * Franchise Landing Page Styles
 *
 * CRO-optimized landing page for icodefranchise.com/franchise-landing.
 * Brand-consistent with the main iCode Franchise site.
 *
 * @package iCode
 */

/* ==========================================================================
   CSS Custom Properties (Brand Palette)
   ========================================================================== */

:root {
  --navy: #252e41;
  --navy-2: #343d4d;
  --yellow: #ffc803;
  --yellow-dark: #e6b400;
  --cyan: #0ef5fa;
  --blue: #196bd0;
  --orange: #f26c32;
  /* logo slash gradient */
  --g-blue: #1571B9;
  --g-purple: #833594;
  --g-orange: #F15827;
  --g-red: #EE2B24;
  --slash: linear-gradient(135deg, var(--g-blue) 0%, var(--g-purple) 38%, var(--g-orange) 72%, var(--g-red) 100%);
  --paper: #f8f9fa;
  --white: #ffffff;
  --ink: #212529;
  --muted: #6c757d;
  --line: #dee2e6;
  --radius: 10px;
  --shadow: 0 18px 50px -18px rgba(37,46,65,.35);
}

/* ==========================================================================
   Reset / Base
   ========================================================================== */

.fl-page * { margin: 0; padding: 0; box-sizing: border-box }
.fl-page { font-family: 'Roboto', sans-serif; color: var(--ink); background: var(--paper); line-height: 1.65; font-size: 16px }
.fl-page h1,
.fl-page h2,
.fl-page h3 { font-family: 'Oswald', sans-serif; line-height: 1.18; font-weight: 600; letter-spacing: .01em; color: inherit }
.fl-page img { max-width: 100%; height: auto }
/* Override main theme rules (html body p/span/a/li/strong { color:#fff }) */
.fl-page p,
.fl-page span,
.fl-page li,
.fl-page b,
.fl-page strong,
.fl-page dd,
.fl-page dt,
.fl-page address { color: inherit; font-size: inherit }
.fl-page a { color: inherit; text-decoration: none }
.fl-page a:hover { color: inherit }
.fl-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px }
.fl-page section { padding: 84px 0 }
@media (max-width: 760px) { .fl-page section { padding: 56px 0 } }

/* Eyebrow label */
.fl-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.fl-eyebrow::before {
  content: "";
  width: 22px;
  height: 4px;
  background: var(--slash);
  transform: skewX(-30deg);
}

/* ==========================================================================
   Sticky Nav
   ========================================================================== */

.fl-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(37,46,65,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.fl-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.fl-nav-right {
  display: flex;
  align-items: center;
  gap: 22px;
}
a.fl-nav-phone {
  color: #d6dce8;
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
}
a.fl-nav-phone:hover { color: #fff }
@media (max-width: 640px) { a.fl-nav-phone { display: none } }

/* ==========================================================================
   Buttons
   ========================================================================== */

.fl-btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.fl-btn:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px }
.fl-btn-primary,
.fl-page a.fl-btn-primary { background: var(--yellow); color: #252e41 }
.fl-btn-primary:hover {
  background: var(--yellow-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(255,200,3,.55);
}
.fl-btn-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
}
.fl-btn-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}

/* ==========================================================================
   Hero
   ========================================================================== */

.fl-hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 70%, #3c465a 100%);
  color: #fff;
  padding: 70px 0 92px;
  position: relative;
  overflow: clip;
  height: auto;
}
.fl-hero::before {
  content: "";
  position: absolute;
  top: -15%;
  right: -6%;
  width: 340px;
  height: 140%;
  background: var(--slash);
  opacity: .16;
  transform: skewX(-18deg);
  pointer-events: none;
}
.fl-hero::after {
  content: "";
  position: absolute;
  top: -15%;
  right: 24%;
  width: 46px;
  height: 140%;
  background: var(--slash);
  opacity: .10;
  transform: skewX(-18deg);
  pointer-events: none;
}
.fl-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: start;
  position: relative;
  z-index: 2;
}
.fl-hero h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.fl-hero h1 em { font-style: normal; color: var(--yellow) }
.fl-hero-sub {
  font-size: 18px;
  color: #d6dce8;
  max-width: 540px;
  margin-bottom: 24px;
}
.fl-hero-sub b { color: #fff }
.fl-hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 28px;
}

/* FT badge */
.fl-ft-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(14,245,250,.1);
  border: 1px solid rgba(14,245,250,.4);
  color: var(--cyan);
  border-radius: 99px;
  padding: 8px 18px;
  font-family: 'Oswald', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

/* Requirements chip */
.fl-req-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(255,200,3,.1);
  border: 1px solid rgba(255,200,3,.4);
  border-radius: 99px;
  padding: 8px 18px;
  margin-bottom: 26px;
}

/* Proof list */
.fl-proof-list {
  list-style: none;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.fl-proof-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 15.5px;
  color: #b8c2d3;
}
.fl-proof-list .tick {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}
.fl-proof-list strong { color: #fff }

/* Trust bar */
.fl-trustbar {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  align-items: center;
}
.fl-trustbar a { display: block }
.fl-trustbar img { height: 62px; width: auto; display: block }
@media (max-width: 560px) { .fl-trustbar { gap: 18px } .fl-trustbar img { height: 48px } }
@media (max-width: 980px) { .fl-hero-grid { grid-template-columns: 1fr; gap: 44px } }

/* ==========================================================================
   Form Card
   ========================================================================== */

.fl-form-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border-top: 6px solid transparent;
  border-image: linear-gradient(90deg, var(--g-blue), var(--g-purple), var(--g-orange), var(--g-red)) 1;
}
.fl-form-head {
  padding: 24px 28px 18px;
  border-bottom: 1px solid var(--line);
}
.fl-form-head h2 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: .03em;
  margin-bottom: 5px;
  color: var(--navy);
}
.fl-form-head p {
  font-size: 13.5px;
  color: var(--muted);
}

/* Progress bar */
.fl-progress {
  display: flex;
  gap: 6px;
  margin-top: 16px;
}
.fl-progress span {
  height: 6px;
  flex: 1;
  border-radius: 99px;
  background: #e9ecf1;
  overflow: hidden;
  position: relative;
}
.fl-progress span.on::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--slash);
}

/* Form body */
.fl-form-body { padding: 26px 28px 30px }

/* Steps (success screen toggle) */
.fl-step { display: none }
.fl-step.active { display: block; animation: flFadeUp .3s ease }
@keyframes flFadeUp { from { opacity: 0; transform: translateY(8px) } to { opacity: 1; transform: none } }

/* GF embed toggle */
.fl-gf-embed.fl-hidden { display: none }

/* Financing note (injected via JS after liquidity field) */
.fl-fin-note {
  display: none;
  font-size: 13px;
  line-height: 1.55;
  background: rgba(25,107,208,.07);
  border: 1px solid rgba(25,107,208,.3);
  border-radius: 10px;
  padding: 12px 14px;
  margin: -10px 0 22px;
  color: #174a8b;
}
.fl-fin-note.show { display: block }

/* Disclaimer footer */
.fl-form-foot {
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* ==========================================================================
   GF Form #4 – Native Embed Styles
   Actual GF 2.10+ markup: hash-based IDs, fieldset for radios,
   div.gchoice for radio items, div.gfield_radio (not ul).
   ========================================================================== */

/* Wrapper resets – force dark text (GF theme engine may inject white) */
.fl-form-card .gform_wrapper {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  color: var(--ink) !important;
}
.fl-form-card .gform_wrapper * { box-sizing: border-box }
.fl-form-card .gform-body { margin: 0; padding: 0 }

/* Hide GF built-in chrome we don't need */
.fl-form-card .gform_heading,
.fl-form-card .gform_required_legend,
.fl-form-card .gf_progressbar_wrapper { display: none }
/* Honeypot field (GF hides it but ensure it stays hidden) */
.fl-form-card .gform_validation_container { display: none !important }

/* Page transition animation */
.fl-form-card .gform_page { animation: flFadeUp .3s ease }

/* Field list reset */
.fl-form-card .gform_fields {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 12px;
}
/* Fieldset reset (radios use <fieldset>) */
.fl-form-card fieldset.gfield {
  border: none;
  margin: 0 0 16px;
  padding: 0;
  min-width: 0;
  width: 100%;
}
.fl-form-card .gfield {
  width: 100%;
  margin-bottom: 16px;
  padding: 0;
}

/* Labels + Legends */
.fl-form-card .gfield_label,
.fl-form-card legend.gfield_label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 17px;
  margin-bottom: 6px;
  padding: 0;
  color: var(--navy) !important;
  float: none;
  width: 100%;
}
/* Contact fields (page 2) – hidden_label hides them, placeholders used instead */
.fl-form-card .gfield.hidden_label .gfield_label { display: none }

/* Field descriptions (help text below radios) */
.fl-form-card .gfield_description {
  font-size: 13px;
  color: var(--muted) !important;
  margin-top: 6px;
  margin-bottom: 14px;
  line-height: 1.55;
}

/* Text / Email / Phone / Dropdown / Textarea inputs */
.fl-form-card .ginput_container input[type="text"],
.fl-form-card .ginput_container input[type="email"],
.fl-form-card .ginput_container input[type="tel"],
.fl-form-card .ginput_container input[type="number"],
.fl-form-card .ginput_container select,
.fl-form-card .ginput_container textarea {
  width: 100%;
  font: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: #fafbfc;
  color: var(--ink);
  -webkit-appearance: none;
  appearance: none;
}
.fl-form-card .ginput_container textarea {
  min-height: 100px;
  resize: vertical;
}
.fl-form-card .ginput_container input:focus,
.fl-form-card .ginput_container select:focus,
.fl-form-card .ginput_container textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(25,107,208,.15);
}
/* Select placeholder / default option – muted until a real choice is made */
.fl-form-card .ginput_container select.placeholder,
.fl-form-card .ginput_container select:has(> .gf_placeholder:checked),
.fl-form-card .ginput_container select:invalid {
  color: var(--muted);
}
.fl-form-card .ginput_container select option {
  color: var(--ink);
}

/* First / Last name side-by-side (GF gfield--width-half) */
.fl-form-card .gfield.gfield--width-half {
  width: calc(50% - 6px);
}
@media (max-width: 480px) {
  .fl-form-card .gfield.gfield--width-half {
    width: 100%;
  }
}

/* Radio buttons as pill buttons (Yes / No)
   GF 2.10+ uses: div.gfield_radio > div.gchoice > input + label */
.fl-form-card .gfield--type-radio .ginput_container_radio { margin: 0 }
.fl-form-card .gfield_radio {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.fl-form-card .gchoice { margin: 0; padding: 0 }
/* Hide actual radio input */
.fl-form-card .gchoice input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
/* Style label AS the button */
.fl-form-card .gchoice label {
  display: block !important;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 14px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  background: #fafbfc;
  color: var(--navy) !important;
  cursor: pointer;
  text-align: center;
  transition: all .15s;
  margin: 0;
}
.fl-form-card .gchoice label:hover { border-color: var(--blue) }

/* Reorder radio fieldset: legend → description → radios (GF puts desc after inputs) */
.fl-form-card fieldset.gfield--type-radio {
  display: flex;
  flex-direction: column;
}
.fl-form-card fieldset.gfield--type-radio > .gfield_description {
  order: -1;
  margin-top: 0;
  margin-bottom: 10px;
}
.fl-form-card fieldset.gfield--type-radio > .ginput_container {
  order: 0;
}
/* Selected "Yes" */
.fl-form-card .gchoice input[value="Yes"]:checked + label {
  border-color: var(--yellow-dark);
  background: rgba(255,200,3,.16);
  color: var(--navy);
}
/* Selected "No" / "Not Yet" */
.fl-form-card .gchoice input[value="No"]:checked + label {
  border-color: var(--navy-2);
  background: #eef0f4;
}
.fl-form-card .gchoice input[type="radio"]:focus-visible + label {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}

/* Page footer (Next / Previous / Submit) */
.fl-form-card .gform_page_footer,
.fl-form-card .gform-page-footer {
  margin-top: 6px;
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
/* Reset GF theme button base styles */
.fl-form-card .gform-theme-button {
  -webkit-appearance: none !important;
  appearance: none !important;
}
/* Next + Submit = primary CTA style */
.fl-form-card .gform_next_button,
.fl-form-card .gform_button {
  display: block;
  width: 100%;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
  padding: 15px 28px !important;
  border-radius: 8px !important;
  border: none !important;
  cursor: pointer;
  background: var(--yellow) !important;
  color: #252e41 !important;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.fl-form-card .gform_next_button:hover,
.fl-form-card .gform_button:hover {
  background: var(--yellow-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -8px rgba(255,200,3,.55);
}
.fl-form-card .gform_next_button:focus-visible,
.fl-form-card .gform_button:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}
/* Previous = text link style, below Submit */
.fl-form-card .gform_previous_button {
  display: block !important;
  width: auto;
  background: none !important;
  border: none !important;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--muted) !important;
  cursor: pointer;
  text-decoration: underline;
  text-align: center;
  padding: 6px 0 !important;
  margin: 0 auto;
  order: 2;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.fl-form-card .gform_previous_button:hover {
  color: var(--navy) !important;
}
/* Disabled Next button (until all questions answered) */
.fl-form-card .gform_next_button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Disclaimer – hidden on page 1, shown on page 2 */
.fl-form-foot.fl-hidden { display: none }

/* Validation errors */
.fl-form-card .gfield_error .gfield_label,
.fl-form-card .gfield_error legend.gfield_label { color: #dc3545 !important }
.fl-form-card .gfield_error .ginput_container input[type="text"],
.fl-form-card .gfield_error .ginput_container input[type="email"],
.fl-form-card .gfield_error .ginput_container input[type="tel"],
.fl-form-card .gfield_error .ginput_container input[type="number"],
.fl-form-card .gfield_error .ginput_container select,
.fl-form-card .gfield_error .ginput_container textarea {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220,53,69,.1) !important;
}
.fl-form-card .validation_message,
.fl-form-card .gfield_validation_message {
  font-size: 12px;
  color: #dc3545 !important;
  margin-top: 4px;
}
.fl-form-card .validation_error,
.fl-form-card .gform_validation_errors {
  font-size: 13px;
  color: #dc3545 !important;
  padding: 10px 14px;
  background: rgba(220,53,69,.07);
  border-radius: 8px;
  margin-bottom: 16px;
}

/* Hide GF confirmation (we show our own success screen) */
.fl-form-card .gform_confirmation_wrapper,
.fl-form-card .gform_confirmation_message { display: none !important }

/* Hide Country field (default value set in GF admin) */
.fl-form-card #field_4_10 { display: none }

/* Success */
.fl-success { text-align: center; padding: 18px 0 8px }
.fl-success .big-tick {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255,200,3,.2);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin: 0 auto 16px;
}
.fl-success h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--navy);
}
.fl-success p {
  font-size: 14px;
  color: var(--muted);
  max-width: 300px;
  margin: 0 auto;
}
.fl-success a { color: var(--blue); font-weight: 700 }

/* Micro proof bar */
.fl-micro-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: #f2f5f9;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--muted);
}
.fl-micro-proof b { color: var(--navy) }

/* Form flash animation */
@keyframes flFormFlash {
  0%   { box-shadow: var(--shadow), 0 0 0 0 rgba(255,200,3,.65) }
  60%  { box-shadow: var(--shadow), 0 0 0 14px rgba(255,200,3,0) }
  100% { box-shadow: var(--shadow), 0 0 0 0 rgba(255,200,3,0) }
}
.fl-form-card.flash { animation: flFormFlash 1.1s ease 2 }
@media (prefers-reduced-motion: reduce) { .fl-form-card.flash { animation: none } }

/* SendGrid email validation inline messages */
.fl-sgev-message {
  font-size: 13px;
  line-height: 1.4;
  margin-top: 6px;
  padding: 6px 10px;
  border-radius: 6px;
  display: none;
}
.fl-sgev-message.visible { display: block }
.fl-sgev-message.sgev-error { background: rgba(255,77,77,.1); color: #ff4d4d }
.fl-sgev-message.sgev-warning { background: rgba(255,200,3,.1); color: #e6b400 }
.fl-sgev-message.sgev-suggestion { background: rgba(25,107,208,.07); color: #196bd0 }
.fl-sgev-message.sgev-success { background: rgba(102,204,102,.1); color: #4caf50 }
.fl-sgev-message a { color: inherit; font-weight: 700 }

/* ==========================================================================
   Stats Strip
   ========================================================================== */

.fl-stats {
  background: var(--navy);
  color: #fff;
  padding: 0;
  position: relative;
}
.fl-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--slash);
}
.fl-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.fl-stat {
  padding: 36px 28px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.fl-stat:last-child { border-right: none }
.fl-stat .n {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 2.8vw, 38px);
  color: var(--yellow);
}
.fl-stat .l {
  font-size: 13px;
  color: #aeb8cb;
  margin-top: 6px;
  line-height: 1.5;
}
@media (max-width: 860px) {
  .fl-stats-grid { grid-template-columns: 1fr 1fr }
  .fl-stat { border-bottom: 1px solid rgba(255,255,255,.1) }
}

/* ==========================================================================
   Section Headings
   ========================================================================== */

.fl-sec-head {
  max-width: 700px;
  margin-bottom: 46px;
}
.fl-sec-head h2 {
  font-size: clamp(28px, 3.2vw, 38px);
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 14px;
}
.fl-sec-head p {
  color: var(--muted);
  font-size: 17px;
}

/* ==========================================================================
   Split Layout
   ========================================================================== */

.fl-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
}
@media (max-width: 900px) { .fl-split { grid-template-columns: 1fr; gap: 30px } }
.fl-photo {
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: block;
  width: 100%;
  height: auto;
  position: relative;
}
.fl-photo-frame { position: relative; overflow: hidden }
.fl-photo-frame::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56%;
  height: 8px;
  background: var(--slash);
  border-radius: 99px;
}

/* ==========================================================================
   Cards (Why Choose iCode)
   ========================================================================== */

.fl-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.fl-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  position: relative;
  overflow: hidden;
}
.fl-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--slash);
  opacity: 0;
  transition: opacity .2s;
}
.fl-card:hover::before { opacity: 1 }
.fl-card .ic {
  font-size: 22px;
  margin-bottom: 14px;
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255,200,3,.18);
}
.fl-icon-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 14px;
}
.fl-card h3 {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--navy);
  margin-bottom: 8px;
}
.fl-card p {
  font-size: 14px;
  color: var(--muted);
}
@media (max-width: 980px) { .fl-cards { grid-template-columns: 1fr 1fr } }
@media (max-width: 560px) { .fl-cards { grid-template-columns: 1fr } }

/* ==========================================================================
   Investment
   ========================================================================== */

.fl-invest {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.fl-invest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) { .fl-invest-grid { grid-template-columns: 1fr; gap: 36px } }

.fl-invest-copy h2 {
  font-size: clamp(26px, 3vw, 34px);
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
}
.fl-invest-copy p {
  color: var(--muted);
  margin-bottom: 16px;
}
.fl-invest-copy .note {
  font-size: 13.5px;
  color: var(--navy-2);
  border-left: 4px solid var(--yellow);
  padding: 12px 14px;
  background: rgba(255,200,3,.07);
  border-radius: 0 8px 8px 0;
}
.fl-chart-img {
  border-radius: 12px;
  background: var(--navy);
  padding: 22px 18px;
  margin-top: 22px;
  box-shadow: 0 14px 36px -16px rgba(37,46,65,.45);
}
.fl-chart-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
}
.fl-chart-cap {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 8px;
}

/* Ledger */
.fl-ledger {
  background: var(--navy);
  border-radius: 14px;
  padding: 30px;
  color: #e8ecf3;
  box-shadow: var(--shadow);
  position: relative;
  overflow: clip;
}
.fl-ledger::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--slash);
}
.fl-ledger .hd {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #aeb8cb;
  margin-bottom: 12px;
}
.fl-ledger .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: nowrap;
  gap: 12px;
  padding: 12px 0;
  margin: 0;
  border-bottom: 1px dashed rgba(255,255,255,.16);
  font-size: 14.5px;
}
/* Neutralise Bootstrap .row > * (width:100%, flex-shrink:0, gutter padding) */
.fl-ledger .row > * {
  width: auto;
  max-width: none;
  padding: 0;
}
.fl-ledger .row:last-child { border: none }
.fl-ledger .row span {
  flex: 1 1 auto;
  min-width: 0;
}
.fl-ledger .row b {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--yellow);
  letter-spacing: .03em;
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
}
.fl-ledger .row.req b { color: var(--cyan) }
@media (max-width: 1080px) and (min-width: 901px) {
  .fl-ledger { padding: 24px }
  .fl-ledger .row { font-size: 13.5px; gap: 8px; padding: 10px 0 }
}
@media (max-width: 480px) {
  .fl-ledger { padding: 20px 16px }
  .fl-ledger .row { font-size: 13px; gap: 8px; padding: 10px 0 }
}

/* ==========================================================================
   Testimonial Videos
   ========================================================================== */

.fl-vid-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.fl-vid {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px -12px rgba(37,46,65,.3);
  cursor: pointer;
  border: 1px solid var(--line);
  background: #000;
  aspect-ratio: 16/9;
}
.fl-vid img,
.fl-vid svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .92;
  transition: opacity .2s, transform .25s;
}
.fl-vid:hover img { opacity: 1; transform: scale(1.03) }
.fl-vid .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 20px;
  padding-left: 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,.35);
}
.fl-vid .vname {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 14px 10px;
  background: linear-gradient(transparent, rgba(37,46,65,.92));
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  letter-spacing: .04em;
}
@media (max-width: 760px) { .fl-vid-grid { grid-template-columns: 1fr 1fr } }
@media (max-width: 520px) { .fl-vid-grid { grid-template-columns: 1fr } }

/* ==========================================================================
   Google Reviews
   ========================================================================== */

.fl-gr-head {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.fl-gr-score {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 44px;
  color: var(--navy);
  line-height: 1;
}
.fl-stars {
  color: var(--yellow-dark);
  font-size: 19px;
  letter-spacing: 2px;
}
.fl-gr-meta {
  font-size: 13px;
  color: var(--muted);
}
.fl-gr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.fl-gr-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}
.fl-gr-card .fl-stars {
  font-size: 15px;
  margin-bottom: 10px;
  display: block;
}
.fl-gr-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 14px;
}
.fl-gr-card .gname {
  font-weight: 700;
  font-size: 13.5px;
  color: var(--navy);
}
.fl-gr-card .gsrc {
  font-size: 12px;
  color: var(--muted);
}
@media (max-width: 900px) { .fl-gr-grid { grid-template-columns: 1fr 1fr } }
@media (max-width: 560px) { .fl-gr-grid { grid-template-columns: 1fr } }

/* ==========================================================================
   Process Steps
   ========================================================================== */

.fl-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
.fl-pstep {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}
.fl-pstep::before {
  counter-increment: step;
  content: counter(step);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #fff;
  background: var(--slash);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.fl-pstep h3 {
  font-size: 16px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.fl-pstep p {
  font-size: 13.5px;
  color: var(--muted);
}
@media (max-width: 900px) { .fl-steps-grid { grid-template-columns: 1fr 1fr } }
@media (max-width: 540px) { .fl-steps-grid { grid-template-columns: 1fr } }

/* ==========================================================================
   Quotes / Testimonials (text)
   ========================================================================== */

.fl-quotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.fl-quote {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 5px solid var(--yellow);
}
.fl-quote p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 16px;
}
.fl-quote .who b {
  font-family: 'Oswald', sans-serif;
  color: var(--navy);
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 2px;
}
.fl-quote .who span {
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 760px) { .fl-quotes { grid-template-columns: 1fr } }

/* ==========================================================================
   FAQ
   ========================================================================== */

.fl-faq { max-width: 780px }
.fl-faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  margin-bottom: 12px;
  padding: 0 22px;
}
.fl-faq summary {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: .02em;
  color: var(--navy);
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fl-faq summary::after {
  content: "+";
  font-size: 22px;
  color: var(--blue);
}
.fl-faq details[open] summary::after { content: "\2212" }
.fl-faq details p {
  padding: 0 0 18px;
  font-size: 14.5px;
  color: var(--muted);
}
/* Remove default marker in WebKit/Blink */
.fl-faq summary::-webkit-details-marker { display: none }

/* ==========================================================================
   Final CTA
   ========================================================================== */

.fl-final {
  background: linear-gradient(160deg, var(--navy), var(--navy-2));
  color: #fff;
  text-align: center;
  position: relative;
  overflow: clip;
  height: auto;
}
.fl-final::before {
  content: "";
  position: absolute;
  top: -20%;
  left: -4%;
  width: 220px;
  height: 150%;
  background: var(--slash);
  opacity: .14;
  transform: skewX(-18deg);
}
.fl-final h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  text-transform: uppercase;
  max-width: 720px;
  margin: 0 auto 16px;
  position: relative;
}
.fl-final h2 em { font-style: normal; color: var(--yellow) }
.fl-final p {
  color: #d6dce8;
  max-width: 540px;
  margin: 0 auto 30px;
  position: relative;
}
.fl-final-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;
  text-align: left;
  position: relative;
  z-index: 2;
}
@media (max-width: 880px) {
  .fl-final-grid { grid-template-columns: 1fr; text-align: center }
  .fl-final-grid .fl-photo-frame { display: none }
}

/* ==========================================================================
   Footer
   ========================================================================== */

.fl-footer {
  background: var(--navy);
  color: #aeb8cb;
  font-size: 13px;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.fl-footer .fl-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.fl-footer a {
  color: #d6dce8;
  text-decoration: none;
}

/* ==========================================================================
   Mobile Sticky CTA
   ========================================================================== */

.fl-m-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 16px;
  background: rgba(37,46,65,.96);
  backdrop-filter: blur(8px);
}
.fl-m-cta .fl-btn { width: 100%; text-align: center }
@media (max-width: 760px) {
  .fl-m-cta { display: block }
  .fl-page { padding-bottom: 72px }
}

/* ==========================================================================
   Video Modal
   ========================================================================== */

.fl-vmodal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,14,22,.85);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.fl-vmodal.open { display: flex }
.fl-vmodal-box {
  width: 100%;
  max-width: 920px;
  position: relative;
}
.fl-vmodal-title {
  font-family: 'Oswald', sans-serif;
  color: #fff;
  font-size: 16px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.fl-vframe {
  position: relative;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.fl-vframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.fl-vmodal-close {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--yellow);
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 6px 16px rgba(0,0,0,.4);
}
.fl-vmodal-close:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px }

/* ==========================================================================
   Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .fl-page * { animation: none !important; transition: none !important }
  html { scroll-behavior: auto }
}

