/* GEBME home — Friendly Local / Brand Green revamp */
:root {
  --fl-green-deep: #16361d;
  --fl-green-dark: #1d4218;
  --fl-green-mid: #2f7a28;
  --fl-green-brand: #5eb057;
  --fl-green-soft: #f0f6ef;
  --fl-green-tint: #e8f3e6;
  --fl-accent: #f59e0b;
  --fl-text: #16361d;
  --fl-muted: #5a6b5e;
  --fl-border: #d4e5d2;
  --fl-white: #ffffff;
  --fl-shadow: 0 12px 40px rgba(22, 54, 29, 0.12);
  --fl-radius: 16px;
  --fl-radius-lg: 24px;
  --fl-max: 1140px;
}

body.fl-home {
  font-family: Inter, "Open Sans", system-ui, sans-serif;
  color: var(--fl-text);
  background: #f0f6ef;
  padding-top: 80px;
}

body.fl-home .fl-accent-serif,
body.fl-home .fl-hero-emphasis {
  font-family: MontserratAlternates, "Montserrat Alternates", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: var(--fl-green-mid);
}

body.fl-home .fl-hero-emphasis {
  color: #b8e8a8 !important;
}

/* Header */
.fl-header {
  --fl-header-h: 65px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--fl-border);
}

.fl-header .fl-header-inner {
  max-width: var(--fl-max);
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
}

.fl-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.fl-logo img {
  height: 48px;
  width: auto;
  max-width: min(220px, 42vw);
  display: block;
}

@media (max-width: 575.98px) {
  .fl-logo img {
    height: 40px;
    max-width: min(180px, 48vw);
  }
}

.fl-nav {
  display: none;
  align-items: center;
  gap: 28px;
}

.fl-nav a {
  color: var(--fl-text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
}

.fl-nav a:hover,
.fl-nav a.active {
  color: var(--fl-green-mid);
}

.fl-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.fl-btn-primary {
  background: var(--fl-green-mid);
  color: var(--fl-white);
}

.fl-btn-primary:hover {
  background: var(--fl-green-dark);
  color: var(--fl-white);
}

.fl-btn-outline {
  background: transparent;
  color: var(--fl-green-mid);
  border: 2px solid var(--fl-green-mid);
}

.fl-btn-ghost {
  background: transparent;
  color: var(--fl-text);
  border: none;
  padding: 8px 12px;
}

.fl-btn-light {
  background: var(--fl-white);
  color: var(--fl-green-deep);
}

.fl-mobile-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-right: -8px;
  border: none;
  background: transparent;
  font-size: 24px;
  color: var(--fl-green-deep);
}

/* Full-height overlay panel: fills from header bottom to viewport bottom so
   page content never peeks through below the menu. */
.fl-mobile-nav {
  position: fixed;
  top: var(--fl-header-h, 65px);
  left: 0;
  right: 0;
  /* Sized by viewport height, not bottom:0 — the header's backdrop-filter makes
     it the containing block for fixed children, so bottom:0 would collapse. */
  height: calc(100vh - var(--fl-header-h, 65px));
  height: calc(100dvh - var(--fl-header-h, 65px));
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 14px 20px calc(20px + env(safe-area-inset-bottom, 0px));
  background: var(--fl-white);
  overflow-y: auto;
  overscroll-behavior: contain;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.24s;
}

.fl-mobile-nav.open {
  visibility: visible;
  opacity: 1;
  transform: none;
}

.fl-mobile-nav a {
  padding: 13px 0;
  color: var(--fl-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 17px;
}

.fl-mobile-nav a.active {
  color: var(--fl-green-mid);
}

/* CTA cluster anchored to the bottom of the panel (thumb zone) */
.fl-mobile-nav .fl-btn {
  width: 100%;
  font-size: 16px;
  padding: 14px 20px;
}

.fl-mobile-nav .fl-btn-primary {
  margin-top: auto;
}

.fl-mobile-nav .fl-btn-outline {
  margin-top: 10px;
}

body.fl-nav-open {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .fl-mobile-nav { transition: visibility 0.01s; transform: none; }
}

@media (min-width: 992px) {
  .fl-nav { display: flex; }
  .fl-mobile-toggle { display: none; }
  .fl-mobile-nav { display: none; }
}

/* Sections common */
.fl-section {
  padding: 64px 20px;
}

.fl-section-inner {
  max-width: var(--fl-max);
  margin: 0 auto;
}

.fl-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.fl-section-sub {
  color: var(--fl-muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.fl-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(94, 176, 87, 0.15);
  color: var(--fl-green-mid);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.fl-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fl-muted);
  margin: 0 0 20px;
}

/* Hero — rounded shell + layered device mockups (design reference) */
body.fl-home section#hero.fl-hero {
  background: transparent !important;
  padding: 20px 16px 0 !important;
  height: auto !important;
  min-height: 0 !important;
  margin-top: 0 !important;
  width: 100% !important;
  position: relative;
  overflow: visible;
}

.fl-hero-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 48px) clamp(40px, 6vw, 64px);
  border-radius: 32px;
  background:
    radial-gradient(800px 600px at 0% 100%, #1f5a1b 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 85% 40%, rgba(94, 176, 87, 0.35), transparent 55%),
    linear-gradient(160deg, #2b5d2a 0%, var(--fl-green-deep) 28%, #1a4d1c 62%, #2a6a24 100%);
  color: var(--fl-white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 42, 20, 0.22);
}

.fl-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.fl-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
  align-items: center;
}

.fl-hero-copy {
  max-width: 540px;
}

.fl-hero .fl-tag {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  letter-spacing: 0.01em;
}

body.fl-home section#hero.fl-hero h1 {
  color: var(--fl-white) !important;
  font-size: clamp(2.35rem, 4.8vw, 3.65rem) !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em;
  margin: 0 0 18px !important;
}

.fl-hero-emphasis {
  font-family: MontserratAlternates, "Montserrat Alternates", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  color: #b8e8a8 !important;
}

body.fl-home section#hero.fl-hero p {
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 500px;
}

.fl-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  align-items: center;
}

.fl-btn-hero-primary {
  background: var(--fl-green-brand);
  color: var(--fl-white);
  box-shadow: 0 10px 28px rgba(94, 176, 87, 0.45);
  padding: 12px 22px;
}

.fl-btn-hero-primary:hover {
  background: #6fc968;
  color: var(--fl-white);
}

.fl-btn-hero-ghost {
  background: transparent;
  color: rgba(255, 255, 255, 0.95);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  padding: 11px 18px;
}

.fl-btn-hero-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--fl-white);
}

.fl-hero-social {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.fl-hero-avatars {
  display: flex;
  flex-shrink: 0;
}

.fl-hero-avatars span {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--fl-green-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-left: -10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.fl-hero-avatars span:first-child {
  margin-left: 0;
}

.fl-hero-proof p {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.82) !important;
  max-width: 360px;
}

.fl-hero-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: var(--fl-accent);
}

.fl-hero-stars strong {
  color: rgba(255, 255, 255, 0.95);
  margin-left: 8px;
  font-size: 14px;
  font-weight: 600;
}

/* Layered POS devices */
.fl-hero-visual {
  position: relative;
  min-height: 400px;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
}

.fl-device {
  position: absolute;
  border-radius: 20px;
  background: var(--fl-white);
  box-shadow: 0 20px 50px rgba(8, 30, 12, 0.28);
  overflow: hidden;
}

.fl-device-back {
  width: 72%;
  max-width: 340px;
  right: 4%;
  top: 0;
  transform: rotate(2deg);
  z-index: 1;
  padding: 14px 16px 12px;
}

.fl-device-front {
  width: 96%;
  max-width: 480px;
  left: 0;
  bottom: 0;
  z-index: 2;
  transform: rotate(-1.5deg);
}

.fl-device-sales-label {
  font-size: 12px;
  color: var(--fl-muted);
}

.fl-device-sales strong {
  display: block;
  font-size: 1.6rem;
  color: var(--fl-green-deep);
  line-height: 1.1;
}

.fl-device-sales-trend {
  font-size: 12px;
  color: var(--fl-green-mid);
  font-weight: 600;
}

.fl-device-chart {
  width: 100%;
  height: 44px;
  margin-top: 8px;
  display: block;
}

/* POS tablet mock — matches merchant POS layout */
.fl-pos-app {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  background: var(--fl-white);
  font-size: 10px;
  line-height: 1.3;
}

.fl-pos-topbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: start;
  padding: 8px 10px 6px;
  border-bottom: 1px solid #e2e8e0;
}

.fl-pos-search {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid #c5d0c3;
  border-radius: 4px;
  font-size: 10px;
  color: #8a958c;
  background: var(--fl-white);
}

.fl-pos-search i {
  font-size: 11px;
  color: #9aa89a;
}

.fl-pos-order-head {
  position: relative;
  min-width: 128px;
  padding-right: 16px;
}

.fl-pos-order-title {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--fl-text);
  text-align: center;
  margin-bottom: 4px;
}

.fl-pos-menu-btn {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  background: none;
  padding: 0;
  color: var(--fl-text);
  font-size: 14px;
  line-height: 1;
}

.fl-pos-order-ctrls {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
}

.fl-pos-ctrl {
  border: none;
  background: var(--fl-white);
  padding: 2px 5px;
  font-size: 8px;
  font-weight: 600;
  color: var(--fl-green-mid);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.fl-pos-ctrl i {
  font-size: 7px;
}

.fl-pos-ctrl--outline {
  border: 1px solid var(--fl-green-brand);
  border-radius: 3px;
  color: var(--fl-text);
  padding: 2px 6px;
}

.fl-pos-ctrl--guest {
  color: var(--fl-text);
}

.fl-pos-body {
  display: grid;
  grid-template-columns: 1fr 34%;
  flex: 1;
  min-height: 0;
}

.fl-pos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  padding: 8px;
  align-content: start;
  background: var(--fl-white);
}

.fl-pos-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  min-height: 58px;
  padding: 8px 4px 6px;
  border: 1px solid #c8d4c6;
  border-radius: 2px;
  background: var(--fl-white);
  text-align: center;
}

.fl-pos-tile-tag {
  display: inline-block;
  padding: 1px 6px;
  border: 1px solid var(--fl-text);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.35;
  color: var(--fl-text);
}

.fl-pos-tile-name {
  font-size: 8px;
  font-weight: 500;
  color: var(--fl-text);
  line-height: 1.25;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.fl-pos-cart {
  display: flex;
  flex-direction: column;
  border-left: 1px solid #e2e8e0;
  background: var(--fl-white);
  min-height: 0;
}

.fl-pos-cart-lines {
  list-style: none;
  margin: 0;
  padding: 6px 8px 4px;
  flex: 1;
  overflow: hidden;
}

.fl-pos-cart-line {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 5px;
  align-items: start;
  padding: 4px 0;
  border-bottom: 1px solid #f0f3ef;
}

.fl-pos-cart-line:last-child {
  border-bottom: none;
}

.fl-pos-qty {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  padding: 2px 4px;
  border-radius: 3px;
  background: #e8f5e6;
  color: var(--fl-green-mid);
  font-size: 8px;
  font-weight: 700;
}

.fl-pos-line-detail {
  min-width: 0;
}

.fl-pos-line-detail strong {
  display: block;
  font-size: 9px;
  font-weight: 700;
  color: var(--fl-text);
  line-height: 1.2;
}

.fl-pos-line-detail span {
  display: block;
  font-size: 7px;
  color: var(--fl-muted);
  line-height: 1.3;
}

.fl-pos-line-amt {
  font-size: 9px;
  font-weight: 600;
  color: var(--fl-text);
  white-space: nowrap;
}

.fl-pos-cart-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 4px 8px 6px;
}

.fl-pos-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  border: none;
  border-radius: 4px;
  background: var(--fl-green-brand);
  color: var(--fl-white);
  font-size: 8px;
  font-weight: 700;
  padding: 5px 4px;
}

.fl-pos-action-btn span {
  font-weight: 600;
}

.fl-pos-totals {
  margin: 0;
  padding: 4px 8px 6px;
  border-top: 1px solid #e2e8e0;
}

.fl-pos-totals div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 1px 0;
}

.fl-pos-totals dt,
.fl-pos-totals dd {
  margin: 0;
  font-size: 8px;
  font-weight: 500;
  color: var(--fl-muted);
}

.fl-pos-totals dd {
  color: var(--fl-text);
  font-weight: 600;
}

.fl-pos-total-grand dt,
.fl-pos-total-grand dd {
  font-size: 10px;
  font-weight: 700;
  color: var(--fl-text);
}

.fl-pos-pay-btns {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 5px;
  padding: 0 8px 8px;
  margin-top: auto;
}

.fl-pos-pay-btn {
  border: none;
  border-radius: 4px;
  background: var(--fl-green-brand);
  color: var(--fl-white);
  font-size: 9px;
  font-weight: 700;
  padding: 8px 6px;
}

.fl-pos-cats {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow: hidden;
  background: var(--fl-green-deep);
  color: rgba(255, 255, 255, 0.88);
  font-size: 7px;
  font-weight: 600;
  border-top: 2px solid #0f2414;
}

.fl-pos-cats > span {
  display: inline-flex;
  align-items: center;
  padding: 6px 5px;
  white-space: nowrap;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.fl-pos-cats > span.active {
  background: var(--fl-green-brand);
  color: var(--fl-white);
}

.fl-pos-cats-icon {
  flex-shrink: 0;
  gap: 3px;
  padding-left: 8px !important;
  padding-right: 8px !important;
}

.fl-pos-cats-icon i {
  font-size: 9px;
}

@media (min-width: 992px) {
  .fl-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 24px;
  }

  .fl-hero-visual {
    min-height: 440px;
    max-width: none;
    margin: 0;
  }

  .fl-device-back {
    right: 0;
    top: 8px;
  }

  .fl-device-front {
    left: 24px;
    bottom: 8px;
  }
}

@media (max-width: 991px) {
  .fl-hero-shell {
    border-radius: 24px;
    padding: 32px 20px 36px;
  }

  .fl-hero-visual {
    min-height: 340px;
    margin-top: 8px;
  }

  .fl-device-front {
    width: 96%;
    left: 2%;
  }

  .fl-device-back {
    width: 78%;
    right: 0;
  }
}

/* Why Gebme */
.fl-why-section {
  background: var(--fl-green-soft);
}

.fl-why-head {
  text-align: center;
  margin-bottom: 36px;
}

.fl-why-head .fl-tag {
  margin: 0 auto 12px;
}

.fl-why-grid {
  display: grid;
  gap: 20px;
}

@media (min-width: 992px) {
  .fl-why-grid {
    grid-template-columns: 1fr 1.8fr;
    align-items: stretch;
    gap: 28px;
  }
}

.fl-why-anchor {
  background: var(--fl-green-deep);
  border-radius: var(--fl-radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px;
}

.fl-why-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: auto;
}

.fl-why-anchor-title {
  font-size: clamp(1.85rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--fl-green-brand);
  margin: 24px 0 14px;
}

.fl-why-anchor-body {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.fl-why-items {
  display: flex;
  flex-direction: column;
}

.fl-why-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--fl-border);
}

.fl-why-item:first-child {
  padding-top: 0;
}

.fl-why-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.fl-why-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--fl-green-mid);
  flex-shrink: 0;
  padding-top: 4px;
  min-width: 20px;
}

.fl-why-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--fl-text);
}

.fl-why-item p {
  color: var(--fl-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  margin: 0;
}

.fl-why-cta {
  margin-top: 32px;
}

.fl-why-more {
  color: var(--fl-green-mid);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.fl-why-more:hover {
  color: var(--fl-green-dark);
}

/* Business types */
.fl-business-types {
  background: var(--fl-green-soft);
}

#features.fl-business-types {
  overflow-x: clip;
}

#features .fl-features-head {
  padding-bottom: 0;
}

.fl-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  white-space: nowrap;
  background: var(--fl-white);
  border: 1px solid var(--fl-border);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
}

/* Features chips: single-row infinite marquee (full section width) */
#features .fl-chips-marquee {
  --fl-marquee-duration: 38s;
  --fl-marquee-fade-start: 10%;
  --fl-marquee-fade-end: 90%;
  position: relative;
  width: 100%;
  margin-top: 20px;
  overflow: hidden;
  touch-action: pan-y;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    oklch(0 0 0 / 1) var(--fl-marquee-fade-start),
    oklch(0 0 0 / 1) var(--fl-marquee-fade-end),
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    oklch(0 0 0 / 1) var(--fl-marquee-fade-start),
    oklch(0 0 0 / 1) var(--fl-marquee-fade-end),
    transparent 100%
  );
}

#features .fl-chips-track {
  display: flex;
  width: max-content;
  flex-wrap: nowrap;
  will-change: transform;
  animation: fl-chips-marquee-ltr var(--fl-marquee-duration) linear infinite;
}

#features .fl-chips-marquee:hover .fl-chips-track,
#features .fl-chips-marquee.is-paused .fl-chips-track {
  animation-play-state: paused;
}

#features .fl-chips-set {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  padding-inline: 5px;
}

#features .fl-chip {
  padding: 9px 14px;
  font-size: 13px;
}

@media (min-width: 480px) {
  #features .fl-chip {
    padding: 10px 16px;
    font-size: 14px;
  }

  #features .fl-chips-set {
    gap: 10px;
    padding-inline: 5px;
  }
}

@media (min-width: 768px) {
  #features .fl-chips-marquee {
    --fl-marquee-fade-start: 8%;
    --fl-marquee-fade-end: 92%;
    margin-top: 24px;
  }

  #features .fl-chips-set {
    gap: 12px;
    padding-inline: 6px;
  }
}

@media (min-width: 1200px) {
  #features .fl-chips-marquee {
    --fl-marquee-fade-start: 6%;
    --fl-marquee-fade-end: 94%;
  }
}

@keyframes fl-chips-marquee-ltr {
  from { transform: translate3d(-50%, 0, 0); }
  to   { transform: translate3d(0, 0, 0); }
}

.fl-chip-emoji {
  display: inline-block;
  line-height: 1;
  flex-shrink: 0;
}

/* Why cards */
.fl-cards-4 {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.fl-feature-card {
  background: var(--fl-white);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(22, 54, 29, 0.06);
}

.fl-feature-card .fl-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}

.fl-feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.fl-feature-card p {
  color: var(--fl-muted);
  font-size: 0.95rem;
  margin: 0;
}

@media (min-width: 768px) {
  .fl-cards-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .fl-cards-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Tools — design layout */
.fl-tools-section {
  background: var(--fl-white);
}

.fl-tools-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.fl-tools-pricing-link {
  color: var(--fl-green-mid);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.fl-tools-pricing-link:hover {
  color: var(--fl-green-dark);
}

.fl-tool-num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--fl-green-mid);
  margin-bottom: 10px;
}

.fl-tool-spotlight {
  display: grid;
  gap: 24px;
  background: var(--fl-green-soft);
  border: 1px solid var(--fl-border);
  border-radius: 22px;
  padding: 28px;
  margin-bottom: 20px;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s, transform 0.15s;
}

.fl-tool-spotlight:hover {
  box-shadow: 0 16px 40px rgba(22, 54, 29, 0.1);
  transform: translateY(-2px);
  color: inherit;
}

.fl-tool-spotlight h3 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.fl-tool-spotlight p {
  color: var(--fl-muted);
  margin-bottom: 14px;
  max-width: 520px;
}

.fl-tool-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  font-size: 13px;
  color: var(--fl-muted);
}

.fl-tool-bullets li::before {
  content: "•";
  color: var(--fl-green-brand);
  margin-right: 6px;
}

.fl-tool-spotlight-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.fl-tool-phone-mock {
  background: var(--fl-green-deep);
  color: var(--fl-white);
  border-radius: 24px;
  padding: 22px 20px;
  width: min(100%, 240px);
  box-shadow: 0 20px 40px rgba(15, 42, 20, 0.25);
}

.fl-tool-phone-top {
  font-weight: 700;
  font-size: 15px;
}

.fl-tool-phone-table {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 14px;
}

.fl-tool-phone-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 5px 0;
  opacity: 0.92;
}

.fl-tool-phone-total {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

.fl-tool-phone-badge {
  display: inline-block;
  margin-top: 14px;
  background: var(--fl-green-brand);
  color: var(--fl-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 10px;
  border-radius: 6px;
}

.fl-tool-quartet {
  display: grid;
  gap: 16px;
}

.fl-tool-rich-card {
  display: flex;
  flex-direction: column;
  background: var(--fl-white);
  border: 1px solid var(--fl-border);
  border-radius: 22px;
  padding: 22px;
  text-decoration: none;
  color: inherit;
  min-height: 100%;
  transition: box-shadow 0.15s, transform 0.15s;
}

.fl-tool-rich-card:hover {
  box-shadow: 0 12px 32px rgba(22, 54, 29, 0.08);
  transform: translateY(-2px);
  color: inherit;
}

.fl-tool-rich-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.fl-tool-rich-card p {
  font-size: 0.9rem;
  color: var(--fl-muted);
  margin-bottom: 16px;
  flex: 1;
}

.fl-tool-rich-visual {
  margin-top: auto;
  border-radius: 14px;
  background: var(--fl-green-soft);
  border: 1px solid var(--fl-border);
  padding: 14px;
  min-height: 100px;
}

.fl-mini-receipt-head {
  font-size: 11px;
  font-weight: 700;
  color: var(--fl-muted);
  margin-bottom: 8px;
}

.fl-mini-receipt-line {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  padding: 3px 0;
}

.fl-mini-receipt-badge {
  margin-top: 10px;
  font-size: 10px;
  font-weight: 700;
  color: var(--fl-green-mid);
}

.fl-mini-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
}

.fl-mini-chart-bars span {
  flex: 1;
  background: linear-gradient(180deg, #7bc874, var(--fl-green-mid));
  border-radius: 4px 4px 0 0;
  min-height: 8px;
}

.fl-mini-chart-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--fl-muted);
  margin-top: 8px;
}

.fl-mini-pay-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.fl-mini-pay-grid span {
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  background: var(--fl-white);
  border: 1px solid var(--fl-border);
  border-radius: 8px;
  padding: 7px 4px;
  color: var(--fl-green-deep);
}

.fl-mini-stock-line {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  padding: 5px 0;
  border-bottom: 1px dashed var(--fl-border);
}

.fl-mini-stock-line:last-child {
  border-bottom: none;
}

.fl-mini-stock-line .low {
  color: #c0392b;
  font-weight: 700;
}

@media (min-width: 768px) {
  .fl-tool-quartet {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* --- Wide variant for a featured tool card (card-04 Payments) --- */
.fl-tool-rich-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

@media (min-width: 768px) {
  .fl-tool-rich-card--wide {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 24px;
    align-items: stretch;
  }

  .fl-tool-rich-card--wide .fl-tool-rich-visual {
    flex: 0 0 220px;
    margin-top: 0;
    align-self: center;
  }

  .fl-tool-rich-card--wide .fl-mini-pay-grid--gateways {
    gap: 10px;
  }

  .fl-tool-rich-card--wide .fl-mini-pay-grid--gateways span {
    padding: 12px 8px;
    min-height: 56px;
  }

  .fl-tool-rich-card--wide .fl-mini-pay-grid img {
    height: 26px;
  }
}

@media (min-width: 992px) {
  .fl-tool-spotlight {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    padding: 36px 40px;
  }

  .fl-tool-spotlight-visual {
    justify-content: flex-end;
  }
}

.fl-merchant-foot {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--fl-green-mid);
}

/* Merchant list strip */
.fl-merchant-list {
  margin-top: 32px;
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius);
  overflow: hidden;
  background: var(--fl-white);
}

.fl-merchant-list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--fl-border);
  text-align: left;
  transition: background 0.18s var(--ease-out-quint);
}

.fl-merchant-list-item:last-child {
  border-bottom: none;
}

.fl-merchant-list-item:hover {
  background: var(--fl-green-soft);
}

.fl-mli-emoji {
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 40px;
  text-align: center;
}

.fl-mli-name {
  flex: 1;
  min-width: 0;
}

.fl-mli-name strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fl-text);
}

.fl-mli-name span {
  font-size: 13px;
  color: var(--fl-muted);
}

.fl-mli-stats {
  display: flex;
  gap: 28px;
  flex-shrink: 0;
}

.fl-mli-stat {
  text-align: right;
}

.fl-mli-stat strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fl-text);
}

.fl-mli-stat span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fl-muted);
}

.fl-merchant-note {
  font-size: 12px;
  color: var(--fl-muted);
  text-align: center;
  margin-top: 10px;
  opacity: 0.75;
}

@media (max-width: 575px) {
  .fl-mli-stats {
    display: none;
  }
}

.fl-nav-soon {
  color: var(--fl-muted) !important;
}

.fl-anchor {
  height: 0;
  overflow: hidden;
}

/* Legacy tools grid (feature pages may still reference) */
.fl-tools-grid {
  display: grid;
  gap: 20px;
  margin-top: 32px;
}

.fl-tool-hero {
  grid-column: 1 / -1;
  background: var(--fl-green-soft);
  border-radius: var(--fl-radius-lg);
  padding: 28px;
  display: grid;
  gap: 24px;
}

.fl-tool-hero h3 {
  font-size: 1.35rem;
  font-weight: 700;
}

.fl-tool-phone {
  background: var(--fl-green-deep);
  color: var(--fl-white);
  border-radius: 20px;
  padding: 20px;
  max-width: 220px;
}

.fl-tool-subgrid {
  display: grid;
  gap: 16px;
}

.fl-tool-mini {
  background: var(--fl-white);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius);
  padding: 20px;
}

.fl-tool-mini h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.fl-payment-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.fl-payment-logos span {
  font-size: 11px;
  font-weight: 600;
  background: var(--fl-green-soft);
  padding: 6px 10px;
  border-radius: 8px;
}

@media (min-width: 992px) {
  .fl-tools-grid { grid-template-columns: 1.2fr 1fr; }
  .fl-tool-hero { grid-template-columns: 1fr 1fr; align-items: center; }
  .fl-tool-subgrid { grid-template-columns: 1fr 1fr; }
}

/* Merchants */
.fl-merchant-row {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.fl-merchant-card {
  background: var(--fl-white);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius);
  padding: 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(22, 54, 29, 0.06);
}

.fl-merchant-card:nth-child(1) { background: #fff4e8; }
.fl-merchant-card:nth-child(2) { background: #eef8ee; }
.fl-merchant-card:nth-child(3) { background: #eef4ff; }
.fl-merchant-card:nth-child(4) { background: #fdeef4; }

.fl-merchant-card .emoji {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

.fl-merchant-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.fl-merchant-card p {
  font-size: 13px;
  color: var(--fl-muted);
  margin: 0;
}

@media (min-width: 768px) {
  .fl-merchant-row { grid-template-columns: repeat(4, 1fr); }
}

/* About */
.fl-about-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.fl-about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.fl-stat {
  background: var(--fl-green-soft);
  border-radius: var(--fl-radius);
  padding: 20px;
  text-align: center;
}

.fl-stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--fl-green-mid);
}

.fl-stat span {
  font-size: 13px;
  color: var(--fl-muted);
}

.fl-partners {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.fl-partners span {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  background: var(--fl-white);
  border: 1px solid var(--fl-border);
  border-radius: 8px;
}

@media (min-width: 992px) {
  .fl-about-grid { grid-template-columns: 1.1fr 0.9fr; }
}

/* About section — white background breaks the green-soft run */
#about {
  background: var(--fl-white);
}

/* About credential strip — replaces hero-metric stat boxes */
.fl-about-creds {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.fl-about-cred {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 20px 0;
  border-bottom: 1px solid var(--fl-border);
}

.fl-about-cred:last-child {
  border-bottom: none;
}

.fl-about-cred strong {
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--fl-green-mid);
  flex-shrink: 0;
  line-height: 1;
}

.fl-about-cred span {
  font-size: 0.93rem;
  color: var(--fl-text);
  line-height: 1.4;
}

/* FAQ */
.fl-faq {
  background: var(--fl-green-soft);
}

.fl-faq-item {
  background: var(--fl-white);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius);
  margin-bottom: 10px;
  overflow: hidden;
}

.fl-faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--fl-text);
}

.fl-faq-a {
  padding: 0 20px 18px;
  color: var(--fl-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}

.fl-faq-item.open .fl-faq-a {
  display: block;
}

.fl-faq-item.open .fl-faq-q i {
  transform: rotate(180deg);
}

/* Pricing (legacy block) */
.fl-pricing {
  text-align: center;
}

.fl-pricing .pricing-table-img {
  max-width: 100%;
  height: auto;
}

/* Demo form */
.fl-demo {
  background: linear-gradient(180deg, var(--fl-green-soft) 0%, var(--fl-white) 100%);
}

.fl-demo-grid {
  display: grid;
  gap: 40px;
  align-items: start;
}

.fl-demo-perks {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.fl-demo-perks li {
  padding: 8px 0;
  color: var(--fl-muted);
  font-size: 0.95rem;
}

.fl-demo-form {
  background: var(--fl-white);
  border: 1px solid var(--fl-border);
  border-radius: var(--fl-radius-lg);
  padding: 28px;
  box-shadow: var(--fl-shadow);
}

.fl-demo-form .form-control,
.fl-demo-form .form-select {
  border-radius: 10px;
  border-color: var(--fl-border);
  padding: 12px 14px;
}

.fl-demo-form label {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--fl-muted);
}

.fl-demo-form .fl-form-row {
  margin-bottom: 14px;
}

@media (min-width: 992px) {
  .fl-demo-grid { grid-template-columns: 1fr 1fr; }
}

/* Footer */
.fl-footer {
  background: var(--fl-green-deep);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 20px 24px;
}

.fl-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.fl-footer a:hover {
  color: var(--fl-white);
}

.fl-footer-grid {
  max-width: var(--fl-max);
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.fl-footer h5 {
  color: var(--fl-white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
}

.fl-footer-copyright {
  max-width: var(--fl-max);
  margin: 24px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
}

@media (min-width: 768px) {
  .fl-footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

/* Back to top */
body.fl-home .back-to-top {
  background: var(--fl-green-mid);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

body.fl-home .back-to-top.active {
  opacity: 1;
  visibility: visible;
}

/* Hide legacy landing chrome conflicts */
body.fl-home #header.fixed-top {
  display: none;
}

/* Loading overlay hidden until Angular showLoading() */
body.fl-home #loadingModal:not(.show) {
  display: none !important;
}

body.fl-home .modal-backdrop {
  display: none !important;
}

body.fl-home #loadingModal.show ~ .modal-backdrop,
body.fl-home .modal-backdrop.show {
  display: block !important;
}

/* =============================================
   Motion system
   ============================================= */

:root {
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3,  1);
}

@keyframes fl-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fl-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fl-device-enter-back {
  from { opacity: 0; transform: translateX(44px) rotate(2deg); }
  to   { opacity: 1; transform: translateX(0) rotate(2deg); }
}

@keyframes fl-device-enter-front {
  from { opacity: 0; transform: translateY(44px) rotate(-1.5deg); }
  to   { opacity: 1; transform: translateY(0) rotate(-1.5deg); }
}

@keyframes fl-float-back {
  0%, 100% { transform: rotate(2deg) translateY(0); }
  50%       { transform: rotate(2deg) translateY(-10px); }
}

@keyframes fl-float-front {
  0%, 100% { transform: rotate(-1.5deg) translateY(0); }
  50%       { transform: rotate(-1.5deg) translateY(-7px); }
}

@keyframes fl-chart-draw {
  to { stroke-dashoffset: 0; }
}

/* --- H1 word-by-word color reveal --- */

@keyframes fl-word-wave {
  0%, 100% { color: rgba(255, 255, 255, 1); }
  50%       { color: oklch(0.87 0.10 143); }
}

.fl-hero-copy h1 .fl-h1-w {
  display: inline;
  animation: fl-word-wave 2.8s ease-in-out calc(var(--d, 0) * 0.12s) infinite;
}

/* --- Hero copy entrance --- */

.fl-hero-copy .fl-tag {
  animation: fl-fade-up 0.55s var(--ease-out-quint) 0.05s both;
}

.fl-hero-copy h1 {
  animation: fl-fade-up 0.65s var(--ease-out-quint) 0.14s both;
}

.fl-hero-copy > p {
  animation: fl-fade-up 0.6s var(--ease-out-quint) 0.24s both;
}

.fl-hero-copy .fl-hero-cta {
  animation: fl-fade-up 0.6s var(--ease-out-quint) 0.34s both;
}

.fl-hero-copy .fl-hero-social {
  animation: fl-fade-up 0.6s var(--ease-out-quint) 0.44s both;
}

/* --- Device entrances --- */

.fl-device-back {
  animation: fl-device-enter-back 0.88s var(--ease-out-expo) 0.22s both;
}

.fl-device-front {
  animation: fl-device-enter-front 0.9s var(--ease-out-expo) 0.46s both;
}

.fl-device-back.fl-floating {
  animation: fl-float-back 6.5s ease-in-out infinite;
  will-change: transform;
}

.fl-device-front.fl-floating {
  animation: fl-float-front 7.5s ease-in-out 0.6s infinite;
  will-change: transform;
}

/* --- SVG chart line draws in --- */

.fl-device-chart path:first-child {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: fl-chart-draw 1.1s var(--ease-out-quint) 0.9s forwards;
}

.fl-device-chart path:last-child {
  animation: fl-fade-in 0.9s var(--ease-out-quint) 1.1s both;
}

/* --- Scroll reveal --- */

.fl-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.52s var(--ease-out-quint),
    transform 0.52s var(--ease-out-quint);
}

.fl-reveal.fl-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* --- Features: eyebrow scroll reveal --- */

#features.fl-business-types .fl-features-eyebrow.fl-reveal {
  opacity: 0;
  transform: translateY(14px);
  letter-spacing: 0.12em;
  transition:
    opacity 0.5s var(--ease-out-quint),
    transform 0.5s var(--ease-out-quint),
    letter-spacing 0.62s var(--ease-out-quint);
}

#features.fl-business-types .fl-features-eyebrow.fl-reveal.fl-revealed {
  opacity: 1;
  transform: translateY(0);
  letter-spacing: 0.08em;
}

@media (prefers-reduced-motion: reduce) {
  #features .fl-chips-track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 auto;
    padding: 0 12px;
  }

  #features .fl-chips-set {
    flex-wrap: wrap;
    justify-content: center;
    padding-inline: 0;
  }

  #features .fl-chips-set[aria-hidden="true"] {
    display: none;
  }

  #features .fl-chips-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* --- Improved button interactions --- */

.fl-btn {
  transition:
    transform 0.15s var(--ease-out-quint),
    box-shadow 0.15s var(--ease-out-quint),
    background-color 0.15s,
    color 0.15s;
}

.fl-btn:hover {
  transform: translateY(-1px);
}

.fl-btn:active {
  transform: scale(0.96) translateY(0) !important;
  transition-duration: 0.08s;
}

/* --- Card hover lift --- */

.fl-feature-card {
  transition: transform 0.22s var(--ease-out-quint), box-shadow 0.22s var(--ease-out-quint);
}

.fl-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(22, 54, 29, 0.1);
}

.fl-merchant-card {
  transition: transform 0.22s var(--ease-out-quint), box-shadow 0.22s var(--ease-out-quint);
}

.fl-merchant-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(22, 54, 29, 0.1);
}

.fl-chip {
  transition: transform 0.15s var(--ease-out-quint), box-shadow 0.15s var(--ease-out-quint);
}

.fl-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(22, 54, 29, 0.08);
}

/* --- FAQ smooth height transition --- */

.fl-faq-q i {
  transition: transform 0.3s var(--ease-out-quint);
}

.fl-faq-a {
  display: block;
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  transition:
    max-height 0.38s var(--ease-out-quint),
    padding-bottom 0.38s var(--ease-out-quint);
}

.fl-faq-item.open .fl-faq-a {
  max-height: 280px;
  padding-bottom: 18px;
}

/* --- Ambient light orbs (@property animated gradients) --- */

@property --orb1-x { syntax: '<percentage>'; inherits: false; initial-value: 15%; }
@property --orb1-y { syntax: '<percentage>'; inherits: false; initial-value: 82%; }
@property --orb2-x { syntax: '<percentage>'; inherits: false; initial-value: 78%; }
@property --orb2-y { syntax: '<percentage>'; inherits: false; initial-value: 26%; }
@property --orb3-x { syntax: '<percentage>'; inherits: false; initial-value: 48%; }
@property --orb3-y { syntax: '<percentage>'; inherits: false; initial-value: 58%; }

@keyframes fl-orb1-drift {
  0%   { --orb1-x: 15%; --orb1-y: 82%; }
  30%  { --orb1-x: 24%; --orb1-y: 73%; }
  65%  { --orb1-x: 8%;  --orb1-y: 91%; }
  100% { --orb1-x: 15%; --orb1-y: 82%; }
}

@keyframes fl-orb2-drift {
  0%   { --orb2-x: 78%; --orb2-y: 26%; }
  38%  { --orb2-x: 66%; --orb2-y: 38%; }
  72%  { --orb2-x: 84%; --orb2-y: 18%; }
  100% { --orb2-x: 78%; --orb2-y: 26%; }
}

@keyframes fl-orb3-drift {
  0%   { --orb3-x: 48%; --orb3-y: 58%; }
  50%  { --orb3-x: 60%; --orb3-y: 46%; }
  100% { --orb3-x: 48%; --orb3-y: 58%; }
}

.fl-hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(480px 380px at var(--orb1-x) var(--orb1-y), rgba(245, 158, 11, 0.11), transparent 70%),
    radial-gradient(420px 360px at var(--orb2-x) var(--orb2-y), rgba(94, 176, 87, 0.22), transparent 70%),
    radial-gradient(560px 450px at var(--orb3-x) var(--orb3-y), rgba(184, 232, 168, 0.08), transparent 65%);
  animation:
    fl-orb1-drift 20s ease-in-out infinite,
    fl-orb2-drift 27s ease-in-out infinite,
    fl-orb3-drift 17s ease-in-out infinite;
}

/* --- Merchant photo thumbnails (replaces emoji in merchant list) --- */
.fl-mli-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--fl-border);
  background: var(--fl-green-soft);
}

/* --- Payment gateway logo grid (2×2, used in tools section card) --- */
.fl-mini-pay-grid--gateways {
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.fl-mini-pay-grid--gateways span {
  padding: 8px 6px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fl-mini-pay-grid img {
  height: 20px;
  width: auto;
  max-width: 90%;
  object-fit: contain;
  display: block;
}

/* --- Device images strip (bottom of tools section) --- */
.fl-devices-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: flex-start;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--fl-border);
}

.fl-devices-strip-label {
  width: 100%;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--fl-muted);
  margin-bottom: 4px;
}

.fl-device-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1 1 140px;
  min-width: 120px;
  max-width: 200px;
}

/* Dark container — device photos have a black background; use forest-deep per design token */
.fl-device-chip-img {
  width: 100%;
  background: var(--fl-green-deep);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  height: 148px;
  overflow: hidden;
}

.fl-device-chip-img img {
  max-width: 100%;
  height: 120px;
  width: auto;
  object-fit: contain;
  display: block;
}

.fl-device-chip-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--fl-muted);
  text-align: center;
  line-height: 1.3;
}

/* --- Reduced motion: kill all animation --- */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
