.bfl {
  --bfl-radius: var(--radius, 10px);
  --bfl-brand: var(--brand, oklch(60% 0.157 138.5));
  --bfl-brand-foreground: var(--brand-foreground, oklch(100% 0 0));
  --bfl-brand-soft: var(--brand-soft, oklch(96.5% 0.028 138.5));
  --bfl-ink: var(--ink, oklch(19.6% 0 0));
  --bfl-ink-2: var(--ink-2, oklch(20.8% 0 0));
  --bfl-background: var(--background, oklch(100% 0 0));
  --bfl-foreground: var(--foreground, oklch(21% 0 0));
  --bfl-card: var(--card, oklch(100% 0 0));
  --bfl-muted: var(--muted, oklch(96.8% 0.004 240));
  --bfl-muted-foreground: var(--muted-foreground, oklch(52% 0.01 240));
  --bfl-destructive: var(--destructive, oklch(57.7% 0.245 27.325));
  --bfl-destructive-foreground: var(
    --destructive-foreground,
    oklch(98.4% 0.003 247.858)
  );
  --bfl-border: var(--border, oklch(92% 0.005 240));
}

/* -- Reset-ish basics scoped to this page -- */
.bfl,
.bfl * {
  box-sizing: border-box;
}

.bfl {
  color: var(--bfl-foreground);
  background-color: var(--bfl-background);
  font-size: 16px !important;
  line-height: 1.5;
}

body.bfl-page {
  overflow-x: visible !important;
}

.bfl ul,
.bfl ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bfl a {
  text-decoration: none;
}

.bfl img {
  max-width: 100%;
  display: block;
}

.bfl h4,
.bfl .bfl-36,
.bfl .bfl-24,
.bfl .bfl-h4 {
  font-family: "Bitter", Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
}

.bfl-36 {
  font-size: 36px !important;
}

.bfl-24 {
  font-size: 24px !important;
}

.bfl-h4 {
  font-size: 18px !important;
}

@media (max-width: 640px) {
  .bfl-36 {
    font-size: 30px !important;
  }
}

.bfl-eyebrow {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px !important;
  font-weight: 700;
  color: var(--bfl-brand);
  margin-bottom: 12px;
}

.bfl-small {
  font-size: 14px !important;
}

/* -- Layout primitives -- */
.bfl-section {
  padding-block: 40px;
}

.bfl-section-80 {
  padding-block: 52px;
}

@media (min-width: 640px) {
  .bfl-section {
    padding-block: 56px;
  }

  .bfl-section-80 {
    padding-block: 80px;
  }
}

@media (min-width: 1024px) {
  .bfl-section--lg-tight {
    padding-block: 40px;
  }
}

/* Background variants */
.bfl-bg-ink {
  background-color: var(--bfl-ink);
  color: var(--bfl-brand-foreground);
}
.bfl-bg-ink-2 {
  background-color: var(--bfl-ink-2);
  color: var(--bfl-brand-foreground);
}
.bfl-bg-muted {
  background-color: var(--bfl-muted);
}
.bfl-bg-brand-soft {
  background-color: var(--bfl-brand-soft);
}
.bfl-bg-destructive-soft {
  background-color: color-mix(in oklch, var(--bfl-destructive) 5%, transparent);
}
.bfl-bg-white {
  background-color: var(--bfl-background);
}

.bfl-text-brand {
  color: var(--bfl-brand);
}
.bfl-text-white {
  color: var(--bfl-brand-foreground);
}
.bfl-text-muted {
  color: var(--bfl-muted-foreground);
}

.bfl-text-white-30 {
  color: color-mix(in oklch, var(--bfl-brand-foreground) 30%, transparent);
}
.bfl-text-white-45 {
  color: color-mix(in oklch, var(--bfl-brand-foreground) 45%, transparent);
}
.bfl-text-white-50 {
  color: color-mix(in oklch, var(--bfl-brand-foreground) 50%, transparent);
}
.bfl-text-white-60 {
  color: color-mix(in oklch, var(--bfl-brand-foreground) 60%, transparent);
}
.bfl-text-white-65 {
  color: color-mix(in oklch, var(--bfl-brand-foreground) 65%, transparent);
}
.bfl-text-white-70 {
  color: color-mix(in oklch, var(--bfl-brand-foreground) 70%, transparent);
}
.bfl-text-white-80 {
  color: color-mix(in oklch, var(--bfl-brand-foreground) 80%, transparent);
}

.bfl-underline-link {
  font-size: 14px !important;
  text-underline-offset: 4px;
}
.bfl-underline-link:hover {
  text-decoration: underline !important;
  color: var(--bfl-brand-foreground) !important;
}

/* -- Buttons -- */
.bfl-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 14px !important;
  font-weight: 500;
  color: var(--bfl-brand-foreground) !important;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.bfl-btn--lg {
  padding: 12px 28px;
  font-size: 14px !important;
}

.bfl-btn--brand {
  background-color: var(--bfl-brand);
  border-color: var(--bfl-brand);
  color: var(--bfl-brand-foreground) !important;
}
.bfl-btn--brand__sticky {
  padding: 8px 16px;
  line-height: 1.7;
}
.bfl-btn--brand:hover {
  background-color: color-mix(in oklch, var(--bfl-brand) 88%, black);
  border-color: color-mix(in oklch, var(--bfl-brand) 88%, black);
  color: var(--bfl-brand-foreground) !important;
}

.bfl-btn--sticky {
  padding: 8px 16px !important;
  background-color: transparent;
  color: var(--bfl-foreground) !important;
  box-shadow:
    0 1px 3px 0 var(--tw-shadow-color, #0000001a),
    0 1px 2px -1px var(--tw-shadow-color, #0000001a);
}
.bfl-btn--sticky svg {
  color: var(--bfl-brand) !important;
}
.bfl-btn--sticky:hover {
  background-color: var(--bfl-muted);
  color: var(--bfl-foreground) !important;
}

.bfl-btn--link {
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
  font-weight: 700;
  width: 100%;
  justify-content: space-between;
  text-align: left;
}

/* -- Checks / crosses / icon badges -- */
.bfl-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  border-radius: 12px;
  background-color: color-mix(in oklch, var(--bfl-brand) 10%, transparent);
  box-shadow: inset 0 0 0 1px
    color-mix(in oklch, var(--bfl-brand) 20%, transparent);
  flex-shrink: 0;
}
.bfl-icon-badge svg {
  color: var(--bfl-brand);
  height: 21.6px;
  width: 21.6px;
}

.bfl-check-badge,
.bfl-x-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  min-width: 20px;
  border-radius: 50%;
  font-size: 12px !important;
  color: var(--bfl-brand-foreground);
  flex-shrink: 0;
}
.bfl-check-badge {
  background-color: var(--bfl-brand);
}
.bfl-x-badge {
  background-color: var(--bfl-destructive);
}

.bfl-list-check li,
.bfl-list-x li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.bfl-list-check li:last-child,
.bfl-list-x li:last-child {
  margin-bottom: 0;
}

/* =========================================================
   Top banner
   ========================================================= */
.bfl-topbanner {
  background-color: var(--bfl-brand);
  color: var(--bfl-brand-foreground);
  text-align: center;
  padding: 8px 12px;
}
.bfl-topbanner p {
  margin: 0;
  font-weight: 500;
}

/* =========================================================
   Nav
   ========================================================= */
.bfl-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  background-color: color-mix(in oklch, var(--bfl-background) 95%, transparent);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--bfl-border);
}
.bfl-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 8px;
}
.bfl-nav__logo {
  height: 40px;
  width: auto;
}
.bfl-nav__right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.bfl-nav__phone {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 14px !important;
  font-weight: 500;
  color: var(--bfl-foreground);
}
.bfl-nav__phone:hover {
  color: var(--bfl-brand);
}
.bfl-nav__phone svg {
  color: var(--bfl-brand);
  height: 16px;
  width: 16px;
}

@media (min-width: 640px) {
  .bfl-nav__phone {
    display: inline-flex;
  }
}

/* =========================================================
   Hero
   ========================================================= */
.bfl-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 40px;
  padding-block: 40px;
}

@media (min-width: 1024px) {
  .bfl-hero__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding-block: 64px;
  }
}

.bfl-hero__copy p {
  max-width: 576px;
}

.bfl-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-block: 32px;
}

.bfl-hero__media {
  position: relative;
}

.bfl-hero__img-wrap {
  position: relative;
  height: 380px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 0 0 1px
    color-mix(in oklch, var(--bfl-brand-foreground) 10%, transparent);
}
.bfl-hero__img-wrap img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}

@media (min-width: 640px) {
  .bfl-hero__img-wrap {
    height: 460px;
  }
}

.bfl-hero__img-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent 60%);
  pointer-events: none;
}

.bfl-hero__badge {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -24px;
  background-color: color-mix(in oklch, var(--bfl-ink-2) 95%, transparent);
  border: 1px solid
    color-mix(in oklch, var(--bfl-brand-foreground) 10%, transparent);
  border-radius: 12px;
  padding: 16px 20px;
  backdrop-filter: blur(6px);
}
@media (min-width: 640px) {
  .bfl-hero__badge {
    right: auto;
    width: 62%;
  }
}

.bfl-hero__stats {
  border-top: 1px solid
    color-mix(in oklch, var(--bfl-brand-foreground) 10%, transparent);
}

.bfl-hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 8px;
  padding-block: 32px;
}
@media (min-width: 640px) {
  .bfl-hero__stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding-block: 0;
  }
}

.bfl-hero__stat {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding-inline: 4px;
}
@media (min-width: 640px) {
  .bfl-hero__stat {
    padding-block: 40px;
    padding-inline: 24px;
  }
  .bfl-hero__stat:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}

.bfl-hero__stat-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 9999px;
  background-color: color-mix(in oklch, var(--bfl-brand) 15%, transparent);
  color: var(--bfl-brand);
}
.bfl-hero__stat-icon svg {
  width: 20px;
  height: 20px;
}

.bfl-hero__stat-body {
  min-width: 0;
}

.bfl-hero__stat-value {
  font-family: var(--bfl-font-serif, serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--bfl-brand);
}
@media (min-width: 640px) {
  .bfl-hero__stat-value {
    font-size: 24px;
  }
}
.bfl-hero__stat-label {
  color: #fff;
}

.bfl-hero__stat-desc {
  margin-top: 2px;
  line-height: 1.4;
}

/* =========================================================
   Quick facts
   ========================================================= */
.bfl-quickfacts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .bfl-quickfacts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .bfl-quickfacts__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .bfl-quickfacts__item {
    padding-inline: 32px;
  }
  .bfl-quickfacts__item + .bfl-quickfacts__item {
    border-left: 1px solid var(--bfl-border);
  }
}

/* =========================================================
   How it works — steps
   ========================================================= */
.bfl-steps__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 48px !important;
}

.bfl-steps__grid > li {
  position: relative;
}

.bfl-step-line {
  display: none;
}

@media (min-width: 1024px) {
  .bfl-step-line {
    display: block;
    position: absolute;
    left: 40px;
    right: 0;
    top: 20px;
    height: 1px;
    background-color: var(--bfl-border);
  }
}
@media (min-width: 640px) {
  .bfl-steps__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .bfl-steps__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.bfl-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: var(--bfl-brand);
  color: var(--bfl-brand-foreground);
  font-family: "Bitter", Georgia, serif;
  font-weight: 700;
  box-shadow: 0 0 0 4px var(--bfl-background);
}

/* =========================================================
   What you get
   ========================================================= */
.bfl-whatyouget__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .bfl-whatyouget__grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
  .bfl-whatyouget__intro {
    position: sticky;
    top: 112px;
    align-self: start;
  }
}

.bfl-what-item {
  border-left: 2px solid var(--bfl-brand);
  background-color: color-mix(in oklch, var(--bfl-card) 60%, transparent);
  padding: 8px 16px 8px 20px;
  border-radius: 0 12px 12px 0;
  transition: background-color 0.2s ease;
  margin-bottom: 24px;
}
.bfl-what-item:last-child {
  margin-bottom: 0;
}
.bfl-what-item:hover {
  background-color: var(--bfl-card);
}
.bfl-what-item__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* =========================================================
   Why it matters
   ========================================================= */
.bfl-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 48px;
}
@media (min-width: 1024px) {
  .bfl-why__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.bfl-why__img {
  height: 460px;
  overflow: hidden;
  border-radius: 16px;
}
.bfl-why__img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

/* =========================================================
   Trust: certifications + clients
   ========================================================= */
.bfl-certs__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 56px;
  row-gap: 32px;
  margin-top: 28px;
}
.bfl-cert-logo {
  height: 96px;
  width: 96px;
  border-radius: 50%;
  object-fit: contain;
}
@media (min-width: 640px) {
  .bfl-cert-logo {
    height: 128px;
    width: 128px;
  }
}

.bfl-hr {
  border: none;
  margin-block: 56px;
  border-top: 1px solid
    color-mix(in oklch, var(--bfl-brand-foreground) 40%, transparent);
}

.bfl-clients__grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 640px) {
  .bfl-clients__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .bfl-clients__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bfl-client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 112px;
  border: 1px solid
    color-mix(in oklch, var(--bfl-brand-foreground) 10%, transparent);
  background-color: color-mix(in oklch, var(--bfl-background) 95%, transparent);
  border-radius: 12px;
  padding: 16px 20px;
  transition: transform 0.3s ease;
}
.bfl-client-card:hover {
  transform: translateY(-4px);
}
.bfl-client-card img {
  height: 80px;
}

/* =========================================================
   Ideal candidate
   ========================================================= */
.bfl-fit__grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--bfl-border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .bfl-fit__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.bfl-fit__panel {
  padding: 32px;
}
@media (min-width: 640px) {
  .bfl-fit__panel {
    padding: 40px;
  }
}

/* =========================================================
   Numbers
   ========================================================= */
.bfl-city-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}
.bfl-city-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid color-mix(in oklch, var(--bfl-brand) 30%, transparent);
  background-color: var(--bfl-brand-soft);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px !important;
  font-weight: 500;
}
.bfl-city-pill__soon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--bfl-border);
  background-color: var(--bfl-card);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px !important;
  color: var(--bfl-muted-foreground);
  font-weight: 500;
}
.bfl-city-dot {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--bfl-brand);
}
.bfl-city-dot__soon {
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: color-mix(
    in oklab,
    var(--bfl-muted-foreground) 50%,
    transparent
  );
}

.bfl-numbers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .bfl-numbers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bfl-number-card {
  border: 1px solid var(--bfl-border);
  background-color: var(--bfl-card);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.bfl-number-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklch, var(--bfl-brand) 40%, transparent);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

/* =========================================================
   CTA band
   ========================================================= */
.bfl-ctaband__grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (min-width: 1024px) {
  .bfl-ctaband__grid {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .bfl-ctaband__actions {
    text-align: right;
  }
}
.bfl-ctaband__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* =========================================================
   FAQ (plain JS accordion — see franchise-landing.js)
   ========================================================= */
.bfl-faq {
  max-width: 768px;
  margin-inline: auto;
  margin-top: 48px;
}

.bfl-faq-item {
  border: 1px solid var(--bfl-border);
  background-color: var(--bfl-card);
  border-radius: 12px;
  padding: 0 20px;
  margin-bottom: 12px;
  transition: border-color 0.2s ease;
}
.bfl-faq-item:last-child {
  margin-bottom: 0;
}
.bfl-faq-item:hover {
  border-color: color-mix(in oklch, var(--bfl-brand) 40%, transparent);
}

.bfl-faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px !important;
  color: var(--bfl-foreground) !important;
  padding: 20px 0;
}
.bfl-faq-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.bfl-faq-item.is-open .bfl-faq-btn svg {
  transform: rotate(180deg);
}

.bfl-faq-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}
.bfl-faq-item.is-open .bfl-faq-panel {
  max-height: 640px;
}
.bfl-faq-panel__inner {
  padding-bottom: 20px;
  font-size: 15px !important;
  color: var(--bfl-muted-foreground);
}

/* =========================================================
   Enquiry
   ========================================================= */
.bfl-enquiry__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 1024px) {
  .bfl-enquiry__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bfl-enquiry__intro {
    position: sticky;
    top: 112px;
    align-self: start;
  }
}

.bfl-form-card {
  background-color: var(--bfl-card);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  padding: 24px;
}
@media (min-width: 640px) {
  .bfl-form-card {
    padding: 40px;
  }
}

.bfl-form-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border: 1px solid #fcd34d;
  background-color: #fffbeb;
  color: #78350f;
  border-radius: 8px;
  padding: 16px;
  font-size: 14px !important;
  margin-bottom: 24px;
}

/* =========================================================
   Contact Form 7 — styled to match the target design.
   CF7 renders its own markup (wpcf7-form-control-wrap, <p>
   wrappers, a trailing <br> per field) so we style CF7's own
   classes rather than swap the markup.
   ========================================================= */
.bfl-form-card .wpcf7-form p {
  margin: 0 0 16px;
}
.bfl-form-card .wpcf7-form p:last-child {
  margin-bottom: 0;
}

.bfl-form-card .wpcf7-form label {
  display: block;
  font-size: 14px !important;
  font-weight: 500;
  line-height: 1;
  color: var(--bfl-foreground);
}

/* Hide CF7's default <br> tags — spacing is handled by CSS instead */
.bfl-form-card .wpcf7-form label br,
.bfl-form-card .wpcf7-form-control-wrap br {
  display: none;
}

.bfl-form-card .wpcf7-form-control-wrap {
  display: block;
  margin-top: 6px;
}

.bfl-form-card input.wpcf7-form-control,
.bfl-form-card select.wpcf7-form-control,
.bfl-form-card textarea.wpcf7-form-control {
  display: block;
  width: 100%;
  height: 36px;
  border-radius: 6px;
  border: 1px solid var(--bfl-border);
  background-color: transparent;
  padding: 4px 12px;
  font-size: 16px !important;
  font-family: inherit;
  color: var(--bfl-foreground);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.bfl-form-card textarea.wpcf7-form-control {
  height: auto;
  min-height: 60px;
  padding-block: 8px;
  resize: vertical;
}

.bfl-form-card .wpcf7-form-control::placeholder {
  color: var(--bfl-muted-foreground);
}

.bfl-form-card .wpcf7-form-control:focus,
.bfl-form-card .wpcf7-form-control:focus-visible {
  outline: none;
  border-color: var(--bfl-brand);
  box-shadow: 0 0 0 3px color-mix(in oklch, var(--bfl-brand) 50%, transparent);
}

.bfl-form-card .wpcf7-form-control.wpcf7-not-valid {
  border-color: var(--bfl-destructive);
}

.bfl-form-card .wpcf7-not-valid-tip {
  display: block;
  margin-top: 4px;
  font-size: 12px !important;
  color: var(--bfl-destructive);
}

.bfl-form-card input.wpcf7-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  height: auto !important;
  border: none !important;
  border-radius: 999px !important;
  background-color: var(--bfl-brand) !important;
  color: var(--bfl-brand-foreground) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  padding: 8px 32px !important;
  cursor: pointer !important;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1) !important;
  transition: background-color 0.2s ease !important;
}

.bfl-form-card input.wpcf7-submit:hover {
  background-color: color-mix(in oklch, var(--bfl-brand) 88%, black) !important;
  border-color: color-mix(in oklch, var(--bfl-brand) 88%, black) !important;
  color: var(--bfl-brand-foreground) !important;
}

.bfl-form-card input.wpcf7-submit:disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
}

.bfl-form-card .wpcf7-spinner {
  margin-left: 0;
  margin-top: 10px;
}

.bfl-form-card .wpcf7-response-output {
  margin-top: 16px;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px !important;
}

/* =========================================================
   Footer
   ========================================================= */
.bfl-footer {
  padding-block: 48px;
  text-align: center;
}
.bfl-footer__logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-inline: auto;
  margin-bottom: 12px;
}
.bfl-footer__copy {
  font-size: 11px !important;
}

@media (max-width: 1024px) {
  .bfl-footer {
    padding-bottom: 96px;
  }
}

.bfl-footer--full {
  padding-block: 56px 24px;
  text-align: left;
}

.bfl-footer__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .bfl-footer__grid {
    grid-template-columns: 1.4fr 1.2fr 1fr 1fr;
  }
}

.bfl-footer__col--brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bfl-footer__logo--left {
  margin-inline: 0;
  margin-bottom: 0;
  height: 40px;
}

.bfl-footer__desc {
  max-width: 380px;
  line-height: 1.6;
  margin: 0;
}

.bfl-footer__email {
  display: inline-block;
  text-decoration: none;
  transition: color 0.2s ease;
}
.bfl-footer__email:hover {
  color: var(--bfl-brand) !important;
}

.bfl-footer__heading {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
}
.bfl-footer__heading--spaced {
  margin-top: 32px;
}

.bfl-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bfl-footer__link {
  text-decoration: none;
  transition: color 0.2s ease;
}
.bfl-footer__link:hover {
  color: var(--bfl-brand) !important;
}

.bfl-footer__list--locations {
  gap: 16px;
}
.bfl-footer__list--locations li {
  display: flex;
  flex-direction: column;
}
.bfl-footer__loc-city {
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.bfl-footer__loc-address {
  line-height: 1.5;
}
.bfl-footer__loc-phone {
  margin-top: 4px;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.bfl-footer__loc-phone:hover {
  color: var(--bfl-brand) !important;
}

.bfl-footer__badges {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.bfl-footer__badge {
  height: 48px;
  width: auto;
  border-radius: 4px;
  background-color: #fff;
  padding: 4px;
}

.bfl-footer__bottom {
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}
.bfl-footer__bottom .bfl-footer__copy {
  color: inherit;
  opacity: 0.4;
}

/* =========================================================
   Mobile sticky CTA
   ========================================================= */
.bfl-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: color-mix(in oklch, var(--bfl-background) 95%, transparent);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--bfl-border);
  padding: 12px;
}
.bfl-mobile-cta .bfl-btn {
  flex: 1;
}
.bfl-mobile-cta .bfl-btn--brand {
  flex: 2;
}

@media (min-width: 1024px) {
  .bfl-mobile-cta {
    display: none;
  }
}

/* =========================================================
   Scroll reveal (see franchise-landing.js)
   ========================================================= */
.bfl-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  transition-delay: var(--bfl-delay, 0ms);
}
.bfl-reveal.bfl-is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* =========================================================
   Quote band
   ========================================================= */
.bfl-quote {
  border-top: 1px solid color-mix(in oklch, var(--bfl-brand) 20%, transparent);
  border-bottom: 1px solid
    color-mix(in oklch, var(--bfl-brand) 20%, transparent);
  background-color: var(--bfl-brand-soft);
}

.bfl-quote__inner {
  max-width: 1024px;
  margin-inline: auto;
  padding: 40px 16px;
  text-align: center;
}

@media (min-width: 640px) {
  .bfl-quote__inner {
    padding-inline: 24px;
  }
  .bfl-quote__inner p {
    font-size: 20px !important;
  }
}

@media (min-width: 1024px) {
  .bfl-quote__inner p {
    font-size: 24px !important;
    white-space: nowrap;
  }
}

.footer-card {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
