/* ============================================================
   FOUR LEAF — HERO SECTION CSS
   Paste into Code Snippets plugin → "CSS Snippet" type
   (or Snippet type: "Only CSS", load method: Frontend)

   Brand tokens — used exclusively, no extra accent colors added:
   --fl-green:      #039834   (primary / CTAs / accents)
   --fl-green-deep: #066224   (depth, hovers, dark accents)
   --fl-black:      #000000   (headlines, high-contrast text)
   Neutrals are the only additions, required for any real layout:
   --fl-bg, --fl-line, --fl-ink-soft
   Fonts: system stack only, per instruction — contrast comes from
   weight/tracking/scale, not from custom typefaces.
============================================================ */

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

#fl-hero {
  --fl-green: #039834;
  --fl-green-deep: #066224;
  --fl-black: #000000;
  --fl-bg: #FAFAF8;
  --fl-line: #E4E5E0;
  --fl-ink-soft: #53564F;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--fl-bg);
  color: var(--fl-black);
  position: relative;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
}

/* Ambient backdrop glow — subtle, fixed, gives the hero depth without a busy texture */
#fl-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  left: -120px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(3, 152, 52, 0.10) 0%, rgba(3, 152, 52, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* Entrance animation — fires once via JS adding .fl-in to #fl-hero */
.fl-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

#fl-hero.fl-in .fl-reveal {
  opacity: 1;
  transform: translateY(0);
}

#fl-hero.fl-in .fl-reveal:nth-of-type(1) { transition-delay: 0.02s; }
#fl-hero.fl-in .fl-reveal:nth-of-type(2) { transition-delay: 0.10s; }
#fl-hero.fl-in .fl-reveal:nth-of-type(3) { transition-delay: 0.18s; }
#fl-hero.fl-in .fl-reveal:nth-of-type(4) { transition-delay: 0.26s; }
#fl-hero.fl-in .fl-reveal:nth-of-type(5) { transition-delay: 0.34s; }

@media (prefers-reduced-motion: reduce) {
  .fl-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Intent micro-bar ---------- */
.fl-intentbar {
  background: var(--fl-black);
  width: 100%;
}

.fl-intentbar__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px 24px;
  flex-wrap: wrap;
}

.fl-intentbar__link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #ECECE9;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.fl-intentbar__link:hover {
  color: #FFFFFF;
}

.fl-intentbar__link--b2b {
  color: #FFFFFF;
  font-weight: 600;
}

.fl-intentbar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fl-green);
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(3, 152, 52, 0.25);
}

.fl-intentbar__sep {
  color: #4A4A47;
  font-size: 13px;
}

.fl-intentbar__link--b2c {
  color: #B9BBB5;
}

/* ---------- Hero grid ---------- */
.fl-hero__grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  padding: 64px 24px 56px;
  min-height: 560px;
}

.fl-hero__left {
  position: relative;
  z-index: 2;
}

.fl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fl-green-deep);
  margin: 0 0 22px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(3, 152, 52, 0.28);
  border-radius: 100px;
  background: rgba(3, 152, 52, 0.06);
}

.fl-eyebrow__leaf {
  color: var(--fl-green);
  display: inline-flex;
}

.fl-hero__title {
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.022em;
  margin: 0 0 24px;
  color: var(--fl-black);
}

.fl-hero__title-accent {
  color: var(--fl-green-deep);
}

.fl-hero__sub {
  font-size: 17px;
  line-height: 1.65;
  color: var(--fl-ink-soft);
  max-width: 480px;
  margin: 0 0 34px;
  font-weight: 400;
}

.fl-hero__ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.fl-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 8px;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}

.fl-btn--primary {
  background: var(--fl-green);
  color: #FFFFFF;
  border: 1px solid var(--fl-green);
}

.fl-btn--primary:hover {
  background: var(--fl-green-deep);
  border-color: var(--fl-green-deep);
  transform: translateY(-1px);
}

.fl-btn--primary svg {
  transition: transform 0.18s ease;
}

.fl-btn--primary:hover svg {
  transform: translateX(2px);
}

.fl-btn--ghost {
  background: transparent;
  color: var(--fl-black);
  border: 1px solid var(--fl-black);
}

.fl-btn--ghost:hover {
  background: var(--fl-black);
  color: #FFFFFF;
}

.fl-hero__microcopy {
  font-size: 13.5px;
  color: var(--fl-ink-soft);
  margin: 0;
  font-weight: 500;
}

.fl-hero__signature {
  display: block;
  margin-top: 28px;
}

/* ---------- Right: brand marquee field ---------- */
.fl-hero__right {
  position: relative;
}

.fl-brandfield {
  position: relative;
  height: 460px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--fl-black);
  border: 1px solid var(--fl-line);
  padding: 28px 0;
  box-shadow: 0 24px 48px -24px rgba(0, 0, 0, 0.35);
}

.fl-brandfield__bgimg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: var(--fl-brandfield-bg, none);
  background-size: cover;
  background-position: center;
  opacity: 0.85;
}

.fl-brandfield__bgimg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(0,0,0,0.42) 0%, rgba(3,152,52,0.16) 50%, rgba(0,0,0,0.58) 100%);
}

.fl-brandfield__track {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  animation: fl-scroll-up 32s linear infinite;
  position: relative;
  z-index: 2;
}

.fl-brandfield__track--reverse {
  animation: fl-scroll-up 26s linear infinite reverse;
}

.fl-brandfield__item {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #FFFFFF;
  padding: 13px 26px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 78%;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.fl-brandfield__item:hover,
.fl-brandfield__item:focus-visible {
  background: rgba(3, 152, 52, 0.85);
  border-color: var(--fl-green);
  color: #FFFFFF;
  transform: scale(1.04);
}

.fl-brandfield__track .fl-brandfield__item:nth-child(odd) {
  color: #BFEFCF;
  align-self: flex-start;
  margin-left: 10%;
}

.fl-brandfield__track .fl-brandfield__item:nth-child(even) {
  align-self: flex-end;
  margin-right: 10%;
}

.fl-brandfield__track .fl-brandfield__item:nth-child(odd):hover {
  color: #FFFFFF;
}

@keyframes fl-scroll-up {
  from { transform: translateY(0); }
  to   { transform: translateY(-50%); }
}

.fl-brandfield__fade {
  position: absolute;
  left: 0;
  right: 0;
  height: 70px;
  pointer-events: none;
  z-index: 3;
}

.fl-brandfield__fade--top {
  top: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.65) 10%, transparent 100%);
}

.fl-brandfield__fade--bottom {
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 10%, transparent 100%);
}

.fl-brandfield__caption {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--fl-ink-soft);
  margin: 14px 0 0;
  letter-spacing: 0.01em;
}

/* ---------- Trust strip ---------- */
.fl-trust {
  max-width: 1320px;
  margin: 0 auto;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--fl-line);
  padding: 0 24px;
}

.fl-trust__item {
  padding: 22px 28px 26px 0;
  border-left: 1px solid var(--fl-line);
  padding-left: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.fl-trust__item:first-child {
  border-left: none;
  padding-left: 0;
}

.fl-trust__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fl-green);
}

.fl-trust__value {
  font-size: 15px;
  font-weight: 600;
  color: var(--fl-black);
  letter-spacing: -0.005em;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .fl-brandfield__track,
  .fl-brandfield__track--reverse {
    animation: none;
  }
}

/* ---------- Focus visibility (accessibility floor) ---------- */
.fl-btn:focus-visible,
.fl-intentbar__link:focus-visible {
  outline: 2px solid var(--fl-green);
  outline-offset: 3px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .fl-hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 48px 20px 44px;
    min-height: auto;
  }

  .fl-brandfield {
    height: 320px;
  }

  .fl-hero__sub {
    max-width: 100%;
  }

  .fl-trust {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 22px;
    padding: 0 20px;
  }

  .fl-trust__item:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 640px) {
  .fl-intentbar__inner {
    padding: 9px 16px;
    gap: 10px;
  }

  .fl-intentbar__link {
    font-size: 12px;
  }

  .fl-hero__title {
    font-size: 32px;
  }

  .fl-hero__sub {
    font-size: 15.5px;
  }

  .fl-btn {
    width: 100%;
    justify-content: center;
  }

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

  .fl-brandfield {
    height: 280px;
  }

  .fl-brandfield__item {
    font-size: 16px;
    max-width: 88%;
    padding: 11px 20px;
  }

  .fl-brandfield__track .fl-brandfield__item:nth-child(odd),
  .fl-brandfield__track .fl-brandfield__item:nth-child(even) {
    align-self: center;
    margin-left: 0;
    margin-right: 0;
  }

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

  .fl-trust__item {
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 1px solid var(--fl-line);
    padding-top: 18px;
  }

  .fl-trust__item:first-child {
    border-top: none;
  }
}

/* ============================================================
   FOUR LEAF — "WHY SALONS CHOOSE US" SECTION CSS
   Paste into Code Snippets plugin → "Only CSS" snippet, Frontend
   Same brand tokens as hero.css. System fonts only.
============================================================ */

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

#fl-why {
  --fl-green: #039834;
  --fl-green-deep: #066224;
  --fl-black: #000000;
  --fl-bg: #F6F8F4;
  --fl-card: #FFFFFF;
  --fl-line: #E0E3DC;
  --fl-ink-soft: #53564F;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--fl-bg);
  color: var(--fl-black);
  position: relative;
  margin: 0 !important;
  padding: 88px 24px 96px !important;
}

.fl-why__inner {
  max-width: 1320px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
.fl-why__head {
  max-width: 620px;
  margin: 0 0 64px;
}

#fl-why .fl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fl-green-deep);
  margin: 0 0 22px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(3, 152, 52, 0.28);
  border-radius: 100px;
  background: rgba(3, 152, 52, 0.06);
}

#fl-why .fl-eyebrow__leaf {
  color: var(--fl-green);
  display: inline-flex;
  font-size: 13px;
}

.fl-why__title {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--fl-black);
}

.fl-why__sub {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--fl-ink-soft);
  margin: 0;
  max-width: 480px;
}

/* ---------- Spine: continues the leaf-vein motif from the hero,
   stretched into a structural vertical rule down the left of the list ---------- */
.fl-why__spine {
  display: none;
}

/* ---------- List ---------- */
.fl-why__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.fl-why__row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 36px 32px 32px;
  background: var(--fl-card);
  border: 1px solid var(--fl-line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fl-why__row:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -16px rgba(3, 152, 52, 0.22);
  border-color: rgba(3, 152, 52, 0.35);
}

.fl-why__num {
  position: absolute;
  top: -10px;
  right: 6px;
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
  color: var(--fl-green);
  opacity: 0.07;
  letter-spacing: -0.04em;
  pointer-events: none;
  user-select: none;
}

.fl-why__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(3, 152, 52, 0.10);
  color: var(--fl-green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  position: relative;
  z-index: 1;
}

.fl-why__body {
  position: relative;
  z-index: 1;
}

.fl-why__q {
  font-size: clamp(18px, 1.6vw, 20px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fl-black);
  margin: 0 0 10px;
  line-height: 1.35;
}

.fl-why__a {
  font-size: 15px;
  line-height: 1.65;
  color: var(--fl-ink-soft);
  margin: 0;
}

/* ---------- CTA ---------- */
.fl-why__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 56px;
}

#fl-why .fl-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 8px;
  transition: transform 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

#fl-why .fl-btn--primary {
  background: var(--fl-green);
  color: #FFFFFF;
  border: 1px solid var(--fl-green);
}

#fl-why .fl-btn--primary:hover {
  background: var(--fl-green-deep);
  border-color: var(--fl-green-deep);
  transform: translateY(-1px);
}

.fl-why__cta-note {
  font-size: 13.5px;
  color: var(--fl-ink-soft);
  font-weight: 500;
}

/* ---------- Entrance reveal (mirrors hero pattern) ---------- */
.fl-why-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#fl-why.fl-why-in .fl-why-reveal {
  opacity: 1;
  transform: translateY(0);
}

.fl-why__head.fl-why-reveal { transition-delay: 0s; }

.fl-why__row:nth-of-type(1) .fl-why-reveal,
.fl-why__row:nth-of-type(1) { transition-delay: 0.05s; }
.fl-why__row:nth-of-type(2) { transition-delay: 0.12s; }
.fl-why__row:nth-of-type(3) { transition-delay: 0.19s; }
.fl-why__row:nth-of-type(4) { transition-delay: 0.26s; }

.fl-why__cta.fl-why-reveal { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  .fl-why-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Focus visibility ---------- */
#fl-why .fl-btn:focus-visible {
  outline: 2px solid var(--fl-green);
  outline-offset: 3px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .fl-why__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  #fl-why {
    padding: 64px 20px 72px !important;
  }

  .fl-why__head {
    margin-bottom: 36px;
  }

  .fl-why__row {
    padding: 28px 24px 26px;
  }

  .fl-why__num {
    font-size: 76px;
  }

  .fl-why__q {
    font-size: 18px;
  }

  .fl-why__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  #fl-why .fl-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   FOUR LEAF — B2B PARTNER FORM SECTION CSS
   Paste into Code Snippets plugin → "Only CSS" snippet, Frontend
   Same brand tokens as hero.css / why.css. System fonts only.

   Includes overrides for WPForms default markup so the embedded
   form matches the brand instead of looking like a stock plugin form.
============================================================ */

#fl-partner-form, #fl-partner-form * {
  box-sizing: border-box;
}

#fl-partner-form {
  --fl-green: #039834;
  --fl-green-deep: #066224;
  --fl-black: #000000;
  --fl-ink-soft: #B7B9B3;
  --fl-line: rgba(255, 255, 255, 0.14);

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--fl-black);
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
  margin: 0 !important;
  padding: 96px 24px !important;
}

#fl-partner-form::before {
  content: "";
  position: absolute;
  bottom: -200px;
  right: -140px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(3, 152, 52, 0.16) 0%, rgba(3, 152, 52, 0) 70%);
  pointer-events: none;
  z-index: 0;
}

.fl-form__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* ---------- LEFT column ---------- */
#fl-partner-form .fl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9BE6AE;
  margin: 0 0 22px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(3, 152, 52, 0.45);
  border-radius: 100px;
  background: rgba(3, 152, 52, 0.14);
}

#fl-partner-form .fl-eyebrow__leaf {
  color: var(--fl-green);
  display: inline-flex;
  font-size: 13px;
}

.fl-form__title {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: #FFFFFF;
}

.fl-form__sub {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--fl-ink-soft);
  margin: 0 0 28px;
  max-width: 440px;
}

.fl-form__points {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.fl-form__points li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14.5px;
  font-weight: 500;
  color: #E7E8E4;
}

.fl-form__points i {
  color: var(--fl-green);
  font-size: 13px;
  flex-shrink: 0;
}

.fl-form__whatsapp {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--fl-line);
  border-radius: 12px;
  padding: 16px 18px;
  max-width: 440px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.fl-form__whatsapp:hover,
.fl-form__whatsapp:focus-visible {
  background: rgba(3, 152, 52, 0.16);
  border-color: rgba(3, 152, 52, 0.5);
  transform: translateY(-2px);
}

.fl-form__whatsapp-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex-shrink: 0;
}

.fl-form__whatsapp-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.fl-form__whatsapp-text strong {
  font-size: 14.5px;
  font-weight: 700;
  color: #FFFFFF;
}

.fl-form__whatsapp-text span {
  font-size: 13px;
  color: var(--fl-ink-soft);
}

.fl-form__whatsapp > i {
  color: var(--fl-ink-soft);
  font-size: 14px;
  flex-shrink: 0;
}

.fl-form__signature {
  display: block;
  margin-top: 36px;
}

/* ---------- RIGHT column: card + WPForms overrides ---------- */
.fl-form__card {
  background: #FFFFFF;
  border-radius: 16px;
  padding: 36px 36px 28px;
  box-shadow: 0 32px 64px -24px rgba(0, 0, 0, 0.45);
}

.fl-form__card-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fl-green-deep);
  margin: 0 0 6px;
}

.fl-form__card-title {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--fl-black);
  margin: 0 0 26px;
}

/* --- WPForms structural overrides --- */
.fl-form__embed .wpforms-container {
  margin: 0 !important;
}

.fl-form__embed .wpforms-form {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif !important;
}

/* Two-up grid: WPForms wraps each field in a container with a size
   class (small/medium/large). We use the "small" size class as the
   hook to sit two short fields side by side — assign "Small" size to
   Contact Person + Phone, and to Emirate + Chairs, in the field's
   Advanced settings to get the paired layout. Fields left at "Large"
   (Salon Name, Email, Message) stay full width automatically. */
.fl-form__embed .wpforms-field-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
}

.fl-form__embed .wpforms-field {
  padding: 0 0 20px !important;
  width: 100%;
}

.fl-form__embed .wpforms-field.wpforms-field-small,
.fl-form__embed .wpforms-field.wpforms-field-medium {
  width: calc(50% - 8px) !important;
  flex: 1 1 calc(50% - 8px);
}

@media (max-width: 480px) {
  .fl-form__embed .wpforms-field.wpforms-field-small,
  .fl-form__embed .wpforms-field.wpforms-field-medium {
    width: 100% !important;
    flex: 1 1 100%;
  }
}

.fl-form__embed .wpforms-field-label {
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em !important;
  color: var(--fl-black) !important;
  margin-bottom: 8px !important;
  display: block !important;
}

.fl-form__embed .wpforms-required-label {
  color: var(--fl-green) !important;
  font-weight: 700 !important;
}

.fl-form__embed input[type="text"],
.fl-form__embed input[type="email"],
.fl-form__embed input[type="tel"],
.fl-form__embed input[type="number"],
.fl-form__embed select,
.fl-form__embed textarea {
  font-family: inherit !important;
  font-size: 15px !important;
  color: var(--fl-black) !important;
  background: #F8F9F6 !important;
  border: 1.5px solid #E4E5E0 !important;
  border-radius: 9px !important;
  padding: 13px 15px !important;
  width: 100% !important;
  line-height: 1.4 !important;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease !important;
}

.fl-form__embed select {
  appearance: none !important;
  -webkit-appearance: none !important;
  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='%2353564F' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 15px center !important;
  padding-right: 38px !important;
}

.fl-form__embed input[type="text"]:hover,
.fl-form__embed input[type="email"]:hover,
.fl-form__embed input[type="tel"]:hover,
.fl-form__embed input[type="number"]:hover,
.fl-form__embed select:hover,
.fl-form__embed textarea:hover {
  border-color: #C8CBC1 !important;
}

.fl-form__embed input[type="text"]:focus,
.fl-form__embed input[type="email"]:focus,
.fl-form__embed input[type="tel"]:focus,
.fl-form__embed input[type="number"]:focus,
.fl-form__embed select:focus,
.fl-form__embed textarea:focus {
  border-color: var(--fl-green) !important;
  background: #FFFFFF !important;
  box-shadow: 0 0 0 4px rgba(3, 152, 52, 0.12) !important;
  outline: none !important;
}

.fl-form__embed textarea {
  min-height: 104px !important;
  resize: vertical !important;
}

.fl-form__embed .wpforms-field-description {
  font-size: 12.5px !important;
  color: #8A8C85 !important;
  margin-top: 6px !important;
  line-height: 1.5 !important;
}

/* Divider before the submit button gives the form a clear "you're
   done, here's the action" moment instead of the button just trailing
   off the last field with the same spacing as everything else. */
.fl-form__embed .wpforms-submit-container {
  margin-top: 8px !important;
  padding-top: 22px !important;
  border-top: 1px solid #ECEEE8 !important;
}

.fl-form__embed button[type="submit"],
.fl-form__embed .wpforms-submit {
  background: var(--fl-green) !important;
  color: #FFFFFF !important;
  font-size: 15.5px !important;
  font-weight: 700 !important;
  letter-spacing: -0.005em !important;
  border: none !important;
  border-radius: 9px !important;
  padding: 15px 28px !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
}

.fl-form__embed button[type="submit"]:hover,
.fl-form__embed .wpforms-submit:hover {
  background: var(--fl-green-deep) !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px rgba(3, 152, 52, 0.45) !important;
}

.fl-form__embed button[type="submit"]:active,
.fl-form__embed .wpforms-submit:active {
  transform: translateY(0);
}

.fl-form__embed .wpforms-error,
.fl-form__embed label.wpforms-error {
  color: #D8453A !important;
  font-size: 12.5px !important;
  margin-top: 5px !important;
  display: block !important;
}

.fl-form__embed input.wpforms-error,
.fl-form__embed select.wpforms-error,
.fl-form__embed textarea.wpforms-error {
  border-color: #D8453A !important;
}

/* Success / confirmation message — give it its own visual moment
   rather than rendering as plain paragraph text where the form was. */
.fl-form__embed .wpforms-confirmation-container {
  font-family: inherit !important;
  color: var(--fl-black) !important;
  background: rgba(3, 152, 52, 0.06) !important;
  border: 1px solid rgba(3, 152, 52, 0.25) !important;
  border-radius: 12px !important;
  padding: 28px 26px !important;
  font-size: 15px !important;
  line-height: 1.65 !important;
}

.fl-form__embed .wpforms-confirmation-container::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--fl-green);
  color: #FFFFFF;
  font-size: 15px;
  margin-bottom: 14px;
}

/* ---------- Entrance reveal (mirrors hero/why pattern) ---------- */
.fl-form-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#fl-partner-form.fl-form-in .fl-form-reveal {
  opacity: 1;
  transform: translateY(0);
}

.fl-form__left .fl-form-reveal:nth-of-type(1) { transition-delay: 0.02s; }
.fl-form__left .fl-form-reveal:nth-of-type(2) { transition-delay: 0.08s; }
.fl-form__left .fl-form-reveal:nth-of-type(3) { transition-delay: 0.14s; }
.fl-form__left .fl-form-reveal:nth-of-type(4) { transition-delay: 0.20s; }
.fl-form__left .fl-form-reveal:nth-of-type(5) { transition-delay: 0.26s; }
.fl-form__right.fl-form-reveal { transition-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
  .fl-form-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Focus visibility ---------- */
#fl-partner-form a:focus-visible {
  outline: 2px solid var(--fl-green);
  outline-offset: 3px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 980px) {
  .fl-form__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 640px) {
  #fl-partner-form {
    padding: 64px 20px !important;
  }

  .fl-form__title {
    font-size: 30px;
  }

  .fl-form__card {
    padding: 26px 22px 22px;
  }
}

/* ============================================================
   FOUR LEAF — BRAND SHOWCASE SECTION CSS
   Paste into Code Snippets plugin → "Only CSS" snippet, Frontend
   Same brand tokens as hero.css / why.css / form.css.
============================================================ */

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

#fl-brands {
  --fl-green: #039834;
  --fl-green-deep: #066224;
  --fl-black: #000000;
  --fl-bg: #F6F8F4;
  --fl-card: #FFFFFF;
  --fl-line: #E0E3DC;
  --fl-ink-soft: #53564F;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--fl-bg);
  color: var(--fl-black);
  position: relative;
  margin: 0 !important;
  padding: 96px 24px !important;
}

.fl-brands__inner {
  max-width: 1320px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
.fl-brands__head {
  max-width: 620px;
  margin: 0 0 56px;
}

#fl-brands .fl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fl-green-deep);
  margin: 0 0 22px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(3, 152, 52, 0.28);
  border-radius: 100px;
  background: rgba(3, 152, 52, 0.06);
}

#fl-brands .fl-eyebrow__leaf {
  color: var(--fl-green);
  display: inline-flex;
  font-size: 13px;
}

.fl-brands__title {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--fl-black);
}

.fl-brands__sub {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--fl-ink-soft);
  margin: 0;
  max-width: 480px;
}

/* ---------- Grid ---------- */
.fl-brands__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fl-brands__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 22px 24px;
  background: var(--fl-card);
  border: 1px solid var(--fl-line);
  border-radius: 16px;
  text-decoration: none;
  color: var(--fl-black);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

.fl-brands__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--fl-green);
  opacity: 0.55;
  transition: opacity 0.22s ease;
}

.fl-brands__card:hover,
.fl-brands__card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(3, 152, 52, 0.4);
  box-shadow: 0 20px 36px -20px rgba(3, 152, 52, 0.28);
}

.fl-brands__card:hover::before {
  opacity: 1;
}

.fl-brands__media {
  width: 100%;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAF8;
  border: 1px solid var(--fl-line);
  border-radius: 10px;
  padding: 14px;
}

.fl-brands__media img {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fl-brands__initial {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(3, 152, 52, 0.10);
  color: var(--fl-green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
}

.fl-brands__name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fl-black);
  line-height: 1.3;
}

.fl-brands__count {
  font-size: 13px;
  font-weight: 500;
  color: var(--fl-ink-soft);
  margin-top: -12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fl-brands__count::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fl-green);
  display: inline-block;
  flex-shrink: 0;
}

.fl-brands__arrow {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FAFAF8;
  border: 1px solid var(--fl-line);
  color: var(--fl-ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.fl-brands__card:hover .fl-brands__arrow {
  background: var(--fl-green);
  border-color: var(--fl-green);
  color: #FFFFFF;
  transform: translateX(2px);
}

/* ---------- CTA ---------- */
.fl-brands__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

#fl-brands .fl-btn--ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 8px;
  background: transparent;
  color: var(--fl-black);
  border: 1px solid var(--fl-black);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

#fl-brands .fl-btn--ghost-dark:hover {
  background: var(--fl-black);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* ---------- Entrance reveal (mirrors hero/why/form pattern) ---------- */
.fl-brands-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#fl-brands.fl-brands-in .fl-brands-reveal {
  opacity: 1;
  transform: translateY(0);
}

.fl-brands__grid .fl-brands__card:nth-child(1) { transition-delay: 0.02s; }
.fl-brands__grid .fl-brands__card:nth-child(2) { transition-delay: 0.06s; }
.fl-brands__grid .fl-brands__card:nth-child(3) { transition-delay: 0.10s; }
.fl-brands__grid .fl-brands__card:nth-child(4) { transition-delay: 0.14s; }
.fl-brands__grid .fl-brands__card:nth-child(5) { transition-delay: 0.18s; }
.fl-brands__grid .fl-brands__card:nth-child(6) { transition-delay: 0.22s; }
.fl-brands__grid .fl-brands__card:nth-child(7) { transition-delay: 0.26s; }
.fl-brands__grid .fl-brands__card:nth-child(8) { transition-delay: 0.30s; }

.fl-brands__cta.fl-brands-reveal { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .fl-brands-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Focus visibility ---------- */
#fl-brands .fl-brands__card:focus-visible,
#fl-brands .fl-btn--ghost-dark:focus-visible {
  outline: 2px solid var(--fl-green);
  outline-offset: 3px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .fl-brands__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  #fl-brands {
    padding: 64px 20px !important;
  }

  .fl-brands__head {
    margin-bottom: 40px;
  }

  .fl-brands__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .fl-brands__card {
    padding: 22px 18px 20px;
  }

  .fl-brands__media {
    height: 84px;
  }

  .fl-brands__name {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .fl-brands__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FOUR LEAF — CATEGORY SHOWCASE SECTION CSS
   Paste into Code Snippets plugin → "Only CSS" snippet, Frontend
   Same brand tokens as hero.css / why.css / form.css / brands.css.
   White section background — alternates with the tinted Brands
   section above it so each section reads as its own block.
============================================================ */

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

#fl-cats {
  --fl-green: #039834;
  --fl-green-deep: #066224;
  --fl-black: #000000;
  --fl-bg: #FFFFFF;
  --fl-card: #FFFFFF;
  --fl-line: #E4E5E0;
  --fl-ink-soft: #53564F;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--fl-bg);
  color: var(--fl-black);
  position: relative;
  margin: 0 !important;
  padding: 96px 24px !important;
}

.fl-cats__inner {
  max-width: 1320px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
.fl-cats__head {
  max-width: 620px;
  margin: 0 0 56px;
}

#fl-cats .fl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fl-green-deep);
  margin: 0 0 22px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(3, 152, 52, 0.28);
  border-radius: 100px;
  background: rgba(3, 152, 52, 0.06);
}

#fl-cats .fl-eyebrow__leaf {
  color: var(--fl-green);
  display: inline-flex;
  font-size: 13px;
}

.fl-cats__title {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--fl-black);
}

.fl-cats__sub {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--fl-ink-soft);
  margin: 0;
  max-width: 480px;
}

/* ---------- Grid ---------- */
.fl-cats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fl-cats__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 22px 24px;
  background: var(--fl-card);
  border: 1px solid var(--fl-line);
  border-radius: 16px;
  text-decoration: none;
  color: var(--fl-black);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

.fl-cats__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--fl-green);
  opacity: 0.55;
  transition: opacity 0.22s ease;
}

.fl-cats__card:hover,
.fl-cats__card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(3, 152, 52, 0.4);
  box-shadow: 0 20px 36px -20px rgba(3, 152, 52, 0.28);
}

.fl-cats__card:hover::before {
  opacity: 1;
}

.fl-cats__media {
  width: 100%;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFAF8;
  border: 1px solid var(--fl-line);
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
}

.fl-cats__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fl-cats__initial {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(3, 152, 52, 0.10);
  color: var(--fl-green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
}

.fl-cats__name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fl-black);
  line-height: 1.3;
}

.fl-cats__count {
  font-size: 13px;
  font-weight: 500;
  color: var(--fl-ink-soft);
  margin-top: -12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.fl-cats__count::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--fl-green);
  display: inline-block;
  flex-shrink: 0;
}

.fl-cats__arrow {
  position: absolute;
  top: 22px;
  right: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #FAFAF8;
  border: 1px solid var(--fl-line);
  color: var(--fl-ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.fl-cats__card:hover .fl-cats__arrow {
  background: var(--fl-green);
  border-color: var(--fl-green);
  color: #FFFFFF;
  transform: translateX(2px);
}

/* ---------- CTA ---------- */
.fl-cats__cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

#fl-cats .fl-btn--ghost-dark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 8px;
  background: transparent;
  color: var(--fl-black);
  border: 1px solid var(--fl-black);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

#fl-cats .fl-btn--ghost-dark:hover {
  background: var(--fl-black);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* ---------- Entrance reveal (mirrors pattern from other sections) ---------- */
.fl-cats-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#fl-cats.fl-cats-in .fl-cats-reveal {
  opacity: 1;
  transform: translateY(0);
}

.fl-cats__grid .fl-cats__card:nth-child(1) { transition-delay: 0.02s; }
.fl-cats__grid .fl-cats__card:nth-child(2) { transition-delay: 0.06s; }
.fl-cats__grid .fl-cats__card:nth-child(3) { transition-delay: 0.10s; }
.fl-cats__grid .fl-cats__card:nth-child(4) { transition-delay: 0.14s; }
.fl-cats__grid .fl-cats__card:nth-child(5) { transition-delay: 0.18s; }
.fl-cats__grid .fl-cats__card:nth-child(6) { transition-delay: 0.22s; }
.fl-cats__grid .fl-cats__card:nth-child(7) { transition-delay: 0.26s; }
.fl-cats__grid .fl-cats__card:nth-child(8) { transition-delay: 0.30s; }

.fl-cats__cta.fl-cats-reveal { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
  .fl-cats-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Focus visibility ---------- */
#fl-cats .fl-cats__card:focus-visible,
#fl-cats .fl-btn--ghost-dark:focus-visible {
  outline: 2px solid var(--fl-green);
  outline-offset: 3px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .fl-cats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  #fl-cats {
    padding: 64px 20px !important;
  }

  .fl-cats__head {
    margin-bottom: 40px;
  }

  .fl-cats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .fl-cats__card {
    padding: 22px 18px 20px;
  }

  .fl-cats__media {
    height: 84px;
  }

  .fl-cats__name {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .fl-cats__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   FOUR LEAF — "HOW IT WORKS" PROCESS SECTION CSS
   Paste into Code Snippets plugin → "Only CSS" snippet, Frontend
   Tinted background — alternates with the white Categories section
   above it, same rhythm as Why (tint) / Brands (tint) / Categories (white).
============================================================ */

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

#fl-steps {
  --fl-green: #039834;
  --fl-green-deep: #066224;
  --fl-black: #000000;
  --fl-bg: #F6F8F4;
  --fl-line: #DCDFD6;
  --fl-ink-soft: #53564F;

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--fl-bg);
  color: var(--fl-black);
  position: relative;
  margin: 0 !important;
  padding: 96px 24px !important;
}

.fl-steps__inner {
  max-width: 1320px;
  margin: 0 auto;
}

/* ---------- Header ---------- */
.fl-steps__head {
  max-width: 620px;
  margin: 0 0 64px;
}

#fl-steps .fl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fl-green-deep);
  margin: 0 0 22px;
  padding: 6px 14px 6px 10px;
  border: 1px solid rgba(3, 152, 52, 0.28);
  border-radius: 100px;
  background: rgba(3, 152, 52, 0.06);
}

#fl-steps .fl-eyebrow__leaf {
  color: var(--fl-green);
  display: inline-flex;
  font-size: 13px;
}

.fl-steps__title {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  color: var(--fl-black);
}

.fl-steps__sub {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--fl-ink-soft);
  margin: 0;
  max-width: 480px;
}

/* ---------- Track: connecting line + steps ---------- */
.fl-steps__track {
  position: relative;
}

.fl-steps__line {
  position: absolute;
  top: 27px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--fl-line);
  z-index: 0;
}

.fl-steps__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.fl-steps__step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.fl-steps__num {
  display: none;
}

.fl-steps__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--fl-green);
  color: var(--fl-green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  box-shadow: 0 0 0 6px var(--fl-bg);
}

.fl-steps__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--fl-black);
  margin: 4px 0 0;
}

.fl-steps__desc {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--fl-ink-soft);
  margin: 0;
  max-width: 280px;
}

/* ---------- CTA ---------- */
.fl-steps__cta {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

#fl-steps .fl-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 8px;
  transition: transform 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

#fl-steps .fl-btn--primary {
  background: var(--fl-green);
  color: #FFFFFF;
  border: 1px solid var(--fl-green);
}

#fl-steps .fl-btn--primary:hover {
  background: var(--fl-green-deep);
  border-color: var(--fl-green-deep);
  transform: translateY(-1px);
}

/* ---------- Entrance reveal (mirrors pattern from other sections) ---------- */
.fl-steps-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

#fl-steps.fl-steps-in .fl-steps-reveal {
  opacity: 1;
  transform: translateY(0);
}

.fl-steps__row .fl-steps__step:nth-child(1) { transition-delay: 0.05s; }
.fl-steps__row .fl-steps__step:nth-child(2) { transition-delay: 0.14s; }
.fl-steps__row .fl-steps__step:nth-child(3) { transition-delay: 0.23s; }
.fl-steps__row .fl-steps__step:nth-child(4) { transition-delay: 0.32s; }

.fl-steps__cta.fl-steps-reveal { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .fl-steps-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ---------- Focus visibility ---------- */
#fl-steps .fl-btn:focus-visible {
  outline: 2px solid var(--fl-green);
  outline-offset: 3px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .fl-steps__line {
    display: none;
  }

  .fl-steps__row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .fl-steps__step {
    position: relative;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 36px;
  }

  .fl-steps__row .fl-steps__step:last-child {
    padding-bottom: 0;
  }

  .fl-steps__step::before {
    content: "";
    position: absolute;
    top: 56px;
    bottom: 8px;
    left: 27px;
    width: 2px;
    background: var(--fl-line);
  }

  .fl-steps__row .fl-steps__step:last-child::before {
    display: none;
  }

  .fl-steps__icon {
    flex-shrink: 0;
  }

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

  .fl-steps__text .fl-steps__name {
    margin-top: 6px;
  }

  .fl-steps__desc {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  #fl-steps {
    padding: 64px 20px !important;
  }

  .fl-steps__head {
    margin-bottom: 44px;
  }

  .fl-steps__icon {
    width: 48px;
    height: 48px;
    font-size: 17px;
  }

  .fl-steps__step {
    padding-left: 24px;
  }

  .fl-steps__step::before {
    left: 23px;
    top: 48px;
  }
}