/* ═══════════════════════════════════════
   Bugaboo Forest Hills — Main Stylesheet
   Converted from Tailwind/React source
   ═══════════════════════════════════════ */

/* ── CSS Variables (from Tailwind config + index.css) ── */
:root {
  --background: 210 20% 98%;
  --foreground: 220 40% 13%;
  --card: 0 0% 100%;
  --card-foreground: 220 40% 13%;
  --primary: 220 50% 20%;
  --primary-foreground: 210 40% 98%;
  --secondary: 145 55% 36%;
  --secondary-foreground: 0 0% 100%;
  --accent: 90 60% 45%;
  --accent-foreground: 220 50% 13%;
  --muted: 210 20% 95%;
  --muted-foreground: 215 16% 47%;
  --border: 214 32% 91%;
  --input: 214 32% 91%;
  --ring: 145 55% 36%;
  --navy: 220 50% 20%;
  --navy-light: 220 40% 30%;
  --navy-dark: 220 55% 12%;
  --green: 145 55% 36%;
  --green-light: 145 45% 50%;
  --green-dark: 145 60% 25%;
  --lime: 90 60% 45%;
  --lime-light: 90 65% 55%;
  --radius: 0.75rem;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', sans-serif;
  --container-max: 1400px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.5;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  overflow-x: hidden;
}
body.bfh-menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: hsl(var(--foreground)); }

/* ── Container (matches Tailwind container plugin) ── */
.bfh-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .bfh-container { max-width: 640px; } }
@media (min-width: 768px)  { .bfh-container { max-width: 768px; } }
@media (min-width: 1024px) { .bfh-container { max-width: 1024px; } }
@media (min-width: 1280px) { .bfh-container { max-width: 1280px; } }
@media (min-width: 1536px) { .bfh-container { max-width: 1400px; } }
.bfh-container--narrow { max-width: 900px; }
.page-template-page-legal .bfh-container--narrow{
  max-width: 768px;
}
/* ── Buttons ── */
.bfh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  white-space: nowrap;
  border: 1px solid transparent;
  text-decoration: none;
}
.bfh-btn--primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary));
}
.bfh-btn--primary:hover { background: hsl(var(--primary) / 0.9); }
.bfh-btn--secondary {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  border-color: hsl(var(--secondary));
}
.bfh-btn--secondary:hover { background: hsl(var(--secondary) / 0.9); }
.bfh-btn--lg { height: 2.75rem; padding: 0.5rem 2rem; }
.bfh-btn--sm { height: 2.25rem; padding: 0.5rem 0.75rem; }
.bfh-btn--outline {
  background: transparent;
  border: 2px solid hsl(var(--border));
  color: hsl(var(--foreground));
}
.bfh-btn--outline:hover { background: hsl(var(--accent)); color: hsl(var(--accent-foreground)); }
.bfh-btn--white-outline {
      background: #fff;
    border: 1px solid hsla(90, 60%, 45%, 0.4);
    color: hsla(var(--lime));
}
.bfh-btn--white-outline:hover { background: hsl(var(--lime) / 0.1); }
.bfh-btn--outline-dark {
  background: #fff;
  border-color: #ffffff4d;
  color: #000;
}
.bfh-btn--outline-dark:hover { background: #ffffff1a; }

/* ── Gradient text ── */
.bfh-text-gradient {
  background: linear-gradient(135deg, hsl(var(--green)), hsl(var(--lime)));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Angle clips ── */
.section-angle-top { clip-path: polygon(0 2rem, 100% 0, 100% 100%, 0 100%); padding-top: 4rem; }
.section-angle-bottom { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 2rem), 0 100%); padding-bottom: 4rem; }
@media (max-width: 768px) {
  .section-angle-top { clip-path: polygon(0 1rem, 100% 0, 100% 100%, 0 100%); padding-top: 3rem; }
}

/* ── Glass card ── */
.glass-card {
  background: hsl(var(--card) / 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid hsl(var(--border) / 0.4);
  border-radius: var(--radius);
}
.glass-card-dark {
  background: hsl(var(--navy) / 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid hsl(var(--navy-light) / 0.3);
  border-radius: 1rem;
}

/* ── Accent stripe ── */
.accent-stripe-left { border-left: 4px solid hsl(var(--green)); }

/* ── Glow ── */
.glow-green { box-shadow: 0 0 30px hsl(var(--green) / 0.3), 0 0 60px hsl(var(--green) / 0.1); }

/* ── Scroll reveal ── */
.bfh-scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.bfh-scroll-reveal.bfh-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════
   HEADER / NAV — white bg, matches source Navbar.tsx
   ══════════════════ */
.bfh-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid hsl(var(--border));
  transition: all 0.3s;
}
#bfh-main { padding-top: 4rem; }
@media (min-width: 1024px) { #bfh-main { padding-top: 5rem; } }
.bfh-header--scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.bfh-header--hidden { transform: translateY(-100%); }
.bfh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
  height: 4rem;
}
@media (min-width: 1024px) { .bfh-header__inner { height: 5rem; } }
.bfh-header__logo img { height: 3rem; width: auto; transition: transform 0.2s; }
@media (min-width: 1024px) { .bfh-header__logo img { height: 3.5rem; } }
.bfh-header__logo:hover img { transform: scale(1.05); }

.bfh-header__nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) { .bfh-header__nav { display: flex; } }
.bfh-header__link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  color: hsl(var(--foreground) / 0.7);
  transition: background 0.2s, color 0.2s;
}
.bfh-header__link:hover {
  color: hsl(var(--foreground));
  background: hsl(var(--muted));
}
.bfh-header__link--active,
.bfh-header__link--active:hover {
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
}

/* Dropdown (hover) */
.bfh-dropdown { position: relative; }
.bfh-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  color: hsl(var(--foreground) / 0.7);
  transition: background 0.2s, color 0.2s;
}
.bfh-dropdown__trigger:hover {
  color: hsl(var(--foreground));
  background: hsl(var(--muted));
}
.bfh-dropdown__trigger--active,
.bfh-dropdown__trigger--active:hover {
  color: hsl(var(--primary));
  background: hsl(var(--primary) / 0.1);
}
.bfh-dropdown__trigger svg { width: 14px; height: 14px; transition: transform 0.2s; }
.bfh-dropdown--open .bfh-dropdown__trigger svg { transform: rotate(180deg); }
.bfh-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.25rem;
  min-width: 13rem;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
}
.bfh-dropdown--open .bfh-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.bfh-dropdown__menu--wide { min-width: 13rem; }
.bfh-dropdown__menu a {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  color: hsl(var(--card-foreground));
  transition: background 0.15s;
}
.bfh-dropdown__menu a:hover { background: hsl(var(--muted)); }
.bfh-dropdown__menu a.bfh-dropdown__item--active,
.bfh-dropdown__menu a.bfh-dropdown__item--active:hover {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
}

/* Header right (CTA + toggle) */
.bfh-header__right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.bfh-header__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: hsl(var(--secondary));
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
}
.bfh-header__cta:hover { background: hsl(var(--secondary) / 0.9); }
.bfh-pulse-cta { position: relative; }
.bfh-pulse-cta::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  background: hsl(var(--secondary) / 0.3);
  animation: bfh-pulse 2s infinite;
}
@keyframes bfh-pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 0; }
}

/* Mobile toggle */
.bfh-header__toggle { display: flex; padding: 0.5rem; color: hsl(var(--foreground)); }
@media (min-width: 1024px) { .bfh-header__toggle { display: none; } }

/* Mobile menu (slides down) */
.bfh-mobile-menu {
  display: none;
  border-top: 1px solid hsl(var(--border));
  background: #fff;
  overflow-y: auto;
  max-height: calc(100vh - 4rem);
}
.bfh-mobile-menu[aria-hidden="false"] { display: block; }
@media (min-width: 1024px) { .bfh-mobile-menu { display: none !important; } }
.bfh-mobile-menu__inner {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.25rem;
}
.bfh-mobile-menu__inner > a,
.bfh-mobile-dropdown > summary {
  display: block;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.375rem;
  color: hsl(var(--foreground) / 0.7);
  transition: background 0.2s;
}
.bfh-mobile-menu__inner > a:hover,
.bfh-mobile-dropdown > summary:hover { background: hsl(var(--muted)); }
.bfh-mobile-menu__link--active {
  color: hsl(var(--primary)) !important;
  background: hsl(var(--primary) / 0.1);
}
.bfh-mobile-dropdown__items a.bfh-mobile-menu__link--active {
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground)) !important;
}
.bfh-mobile-dropdown > summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
}
.bfh-mobile-dropdown > summary::-webkit-details-marker { display: none; }
.bfh-mobile-dropdown > summary svg { width: 14px; height: 14px; transition: transform 0.2s; }
.bfh-mobile-dropdown[open] > summary svg { transform: rotate(180deg); }
.bfh-mobile-dropdown__items {
  display: flex;
  flex-direction: column;
}
.bfh-mobile-dropdown__items a {
  padding: 0.5rem 1rem 0.5rem 2rem;
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  border-radius: 0.375rem;
  transition: color 0.2s;
}
.bfh-mobile-dropdown__items a:hover { color: hsl(var(--primary)); }
.bfh-mobile-menu__cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  padding: 0.625rem 1rem;
  color: hsl(var(--green-light));
  font-weight: 500;
  font-size: 0.875rem;
}

/* ══════════════════
   HOMEPAGE HERO
   ══════════════════ */
.bfh-hero {
  position: relative;
  min-height: fit-content;
  display: flex;
  align-items: center;
  padding-bottom: 0;
  overflow: hidden;
  background: linear-gradient(to bottom right, hsl(var(--navy-dark)), hsl(var(--navy)), hsl(var(--navy-light)));
  color: #fff;
}
@media (min-width: 1024px) { .bfh-hero { min-height: 90vh; } }
.bfh-hero__ant-trail {
  position: absolute;
  top: -1rem;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  object-fit: cover;
}
@media (min-width: 1024px) { .bfh-hero__ant-trail { top: -3rem; } }
.bfh-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: start;
  position: relative;
  z-index: 10;
      padding: 50px 0;
}
@media (min-width: 1024px) {
  .bfh-hero__grid { grid-template-columns: 1fr 1fr; gap: 3rem; padding: 48px 0 60px; }
}
.bfh-hero__content {
  margin-top: auto;
  padding-top: 2rem;
}
@media (min-width: 1024px) { .bfh-hero__content { padding-top: 2rem; } }

/* Hero left bar (accent + content side by side) */
.bfh-hero__left-bar {
  display: flex;
  gap: 1.5rem;
}
.bfh-hero__accent-bar {
  display: none;
  width: 6px;
  background: linear-gradient(to bottom, hsl(var(--secondary)), hsl(var(--accent)), hsl(var(--secondary) / 0.2));
  border-radius: 999px;
  flex-shrink: 0;
}
@media (min-width: 1024px) { .bfh-hero__accent-bar { display: block; } }

/* Hero badge */
.bfh-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  background: hsl(var(--secondary) / 0.2);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--lime));
  margin-bottom: 0.75rem;
}
.bfh-hero__badge svg { width: 16px; height: 16px; }

/* Hero title (typewriter heading) */
.bfh-hero__title {
  font-size: 2.25rem;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
@media (min-width: 768px) { .bfh-hero__title { font-size: 3rem; } }
@media (min-width: 1024px) { .bfh-hero__title { font-size: 3.75rem; } }
.bfh-typewriter-heading::after {
  content: '|';
  animation: bfh-blink 1s step-end infinite;
  color: hsl(var(--lime));
  margin-left: 2px;
}
@keyframes bfh-blink { 50% { opacity: 0; } }

/* Hero subtitle */
.bfh-hero__sub {
  font-size: 1.125rem;
  color: hsl(var(--primary-foreground) / 0.7);
  margin-bottom: 0.8rem;
  max-width: 42rem;
  font-weight: 400;
}

/* Hero actions */
.bfh-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero badges (trust badges) */
.bfh-hero__badges { margin-top: 0.75rem; margin-bottom: -0.5rem; }
.bfh-hero__badges-wrap {
  max-width: 200px;
  background: #fff;
  border-radius: var(--radius);
  padding: 0 0.5rem;
  box-shadow: 0 0 20px rgba(132,204,22,0.3);
  overflow: hidden;
}
@media (min-width: 1024px) { .bfh-hero__badges-wrap { max-width: 24rem; } }
.bfh-hero__badges-wrap img {
  width: 100%;
  height: 40px;
  object-fit: cover;
  object-position: center 40%;
}
@media (min-width: 1024px) { .bfh-hero__badges-wrap img { height: 55px; } }

/* Hero fade bottom */
.bfh-hero__fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4rem;
  background: linear-gradient(to top, hsl(var(--background)), transparent);
  pointer-events: none;
}
@media (min-width: 1024px) { .bfh-hero__fade-bottom { height: 8rem; } }

/* Hero form */
.bfh-hero__form-col { position: relative; z-index: 2; margin-top: 1rem; }
@media (min-width: 1024px) { .bfh-hero__form-col { margin-top: 2rem; } }
.bfh-hero__form-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / .25);
    display: flex;
    border: none;
}

/* ── Stats bar ── */
.bfh-stats {
  position: relative;
  z-index: 20;
}
.bfh-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
}
@media (min-width: 768px) { .bfh-stats__grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .bfh-stats{margin-top: -32px;} }
.bfh-stats__value {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: hsl(var(--lime));
  line-height: 1;
}
@media (min-width: 768px) { .bfh-stats__value { font-size: 3rem; } }
.bfh-stats__label {
  display: block;
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.7);
  margin-top: 0.25rem;
}

/* ══════════════════
   INTRO + PEST CARDS — left-aligned per source
   ══════════════════ */
.bfh-intro { padding: 5rem 0 2rem; }
@media (min-width: 1024px) { .bfh-intro { padding: 5rem 0 7rem; } }
.bfh-intro__content { max-width: 48rem; margin-bottom: 3rem; }
.bfh-intro__title { font-size: 1.875rem; margin-bottom: 1.5rem; }
@media (min-width: 768px) { .bfh-intro__title { font-size: 2.25rem; } }
.bfh-intro__text {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Desktop pest cards row */
.bfh-pest-row {
  display: none;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}
@media (min-width: 768px) { .bfh-pest-row { display: flex; } }
.bfh-pest-row::-webkit-scrollbar { display: none; }

.bfh-pest-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem;
  min-width: 130px;
  flex-shrink: 0;
  cursor: default;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.2s;
}
.bfh-pest-card:hover { transform: scale(1.05) translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.bfh-pest-card img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}
.bfh-pest-card span { font-size: 0.875rem; font-weight: 500; white-space: nowrap; color: hsl(var(--foreground)); }

/* Mobile pest marquee */
.bfh-pest-marquee {
  display: block;
  overflow: hidden;
}
@media (min-width: 768px) { .bfh-pest-marquee { display: none; } }
.bfh-pest-marquee__track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: bfh-scroll-left 30s linear infinite;
}
@keyframes bfh-scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════
   SERVICES HOME (alternating cards) — source: md:w-2/5 image + md:w-3/5 content
   ══════════════════ */
.bfh-services-home {
  background: hsl(var(--navy-dark));
  padding: 5rem 0;
  color: #fff;
}
.bfh-services-home__title {
  font-size: 1.875rem;
  color: #fff;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .bfh-services-home__title { font-size: 2.25rem; } }
.bfh-services-home__subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 42rem;
  margin: 0 auto 3.5rem;
}
.bfh-services-home__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
.bfh-service-card {
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s;
  color: #fff;
}
.bfh-service-card:hover { transform: translateY(-4px); color: #fff; }
@media (min-width: 768px) {
  .bfh-service-card { flex-direction: row; }
  .bfh-service-card--reverse { flex-direction: row-reverse; }
}
.bfh-service-card__img-wrap { position: relative; height: 14rem; }
@media (min-width: 768px) { .bfh-service-card__img-wrap { width: 40%; height: auto; flex-shrink: 0; } }
.bfh-service-card__img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bfh-service-card__content {
  padding: 2rem 2.5rem;
  background: hsl(var(--navy) / 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) { .bfh-service-card__content { width: 60%; } }
.bfh-service-card__icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1.25rem;
  transition: background 0.2s;
}
.bfh-service-card:hover .bfh-service-card__icon-wrap { background: rgba(255,255,255,0.2); }
.bfh-service-card__title { font-size: 1.25rem; color: #fff; margin-bottom: 0.75rem; }
.bfh-service-card__desc { color: rgba(255,255,255,0.8); margin-bottom: 1rem; line-height: 1.7; font-size: 0.875rem; }
.bfh-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.875rem;
  transition: gap 0.2s;
}
.bfh-service-card:hover .bfh-service-card__link { gap: 0.5rem; }

/* ══════════════════
   WHY CHOOSE — bento grid with mixed spans, truck bg
   ══════════════════ */
.bfh-why-choose {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) { .bfh-why-choose { padding: 5rem 0 7rem; } }
.bfh-why-choose__bg {
  position: absolute;
  inset: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.03;
  pointer-events: none;
}
.bfh-why-choose__inner { position: relative; z-index: 10; }
.bfh-why-choose__title { font-size: 1.875rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .bfh-why-choose__title { font-size: 2.25rem; } }
.bfh-why-choose__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 1024px) { .bfh-why-choose__grid { grid-template-columns: repeat(3, 1fr); } }
.bfh-why-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  border-radius: var(--radius);
  transition: transform 0.2s;
}
.bfh-why-card:hover { transform: scale(1.03); }
.bfh-why-card--span-2-lg-1 { grid-column: span 2; }
@media (min-width: 1024px) { .bfh-why-card--span-2-lg-1 { grid-column: span 1; } }
.bfh-why-card--span-2 { grid-column: span 2; }
@media (min-width: 1024px) { .bfh-why-card--span-2 { grid-column: span 2; } }
.bfh-why-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius);
  background: hsl(var(--secondary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--secondary));
  flex-shrink: 0;
}
.bfh-why-card__text { font-size: 0.875rem; font-weight: 500; color: hsl(var(--foreground)); line-height: 1.5; }
.bfh-why-choose__action {
  text-align: center;
  margin-top: 2.5rem;
}

/* ══════════════════
   PROCESS STEPS — green numbered circles, horizontal connector
   ══════════════════ */
.bfh-process {
  background: hsl(var(--navy));
  padding: 5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.bfh-process__title { font-size: 1.875rem; text-align: center; color: #fff; margin-bottom: 1rem; }
.bfh-process__subtitle {
  text-align: center;
  color: hsl(var(--primary-foreground) / 0.6);
  font-size: 1rem;
  max-width: 36rem;
  margin: 0 auto 3.5rem;
}
.bfh-process__steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto;
  position: relative;
}
@media (min-width: 768px) {
  .bfh-process__steps {
    flex-direction: row;
    gap: 0;
  }
}
.bfh-process__step {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex: 1;
  position: relative;
}
@media (min-width: 768px) {
  .bfh-process__step {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1rem;
    text-align: center;
  }
}
.bfh-process__num {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: hsl(var(--secondary));
  color: hsl(var(--secondary-foreground));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  position: relative;
  z-index: 10;
}
.bfh-process__step-title { font-size: 1rem; color: #fff; margin-bottom: 0.25rem; font-family: var(--font-display); font-weight: 600; }
.bfh-process__step-desc { font-size: 0.75rem; color: hsl(var(--primary-foreground) / 0.6); line-height: 1.5; }
.bfh-process__connector {
  display: none;
}
@media (min-width: 768px) {
  .bfh-process__connector {
    display: block;
    position: absolute;
    top: 1.75rem;
    left: 100px;
    width: calc(100% - 190px);
    height: 2px;
    background: hsl(var(--secondary) / 0.3);
            z-index: -1;
  }
  .bfh-process__step { position: relative; }
}

/* Process — Light variant (pest pages) */
.bfh-process--light {
  background: hsl(var(--muted) / 0.3);
  color: inherit;
}
.bfh-process--light .bfh-process__title {
  color: inherit;
  margin-bottom: 3rem;
}
.bfh-process--light .bfh-process__steps {
  max-width: 72rem;
}
.bfh-process--light .bfh-process__step-wrap {
  flex: 1;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .bfh-process--light .bfh-process__steps { flex-direction: column; gap: 1rem; }
  .bfh-process--light .bfh-process__step-wrap { flex-direction: column; }
  .bfh-process--light .bfh-process__arrow { display: none; }
}
.bfh-process--light .bfh-process__step {
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.bfh-process--light .bfh-process__icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--secondary) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: hsl(var(--secondary));
}
.bfh-process--light .bfh-process__step-title {
  color: inherit;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 0.5rem;
}
.bfh-process--light .bfh-process__step-desc {
  color: hsl(var(--muted-foreground));
  font-size: 0.875rem;
  line-height: 1.6;
}
.bfh-process--light .bfh-process__arrow {
  display: none;
  color: hsl(var(--secondary) / 0.4);
  flex-shrink: 0;
  margin-top: 3rem;
  margin-inline: 0.25rem;
}
@media (min-width: 768px) {
  .bfh-process--light .bfh-process__arrow { display: block; }
}

/* ══════════════════
   CTA SECTION
   ══════════════════ */
.bfh-cta {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.bfh-cta--gradient { background: linear-gradient(135deg,hsl(var(--navy-dark)),hsl(var(--navy)),hsl(var(--navy-light))); }
.bfh-cta--image {}
.bfh-cta__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
}
.bfh-cta__overlay {
  position: absolute;
  inset: 0;
  background: hsl(var(--navy-dark) / 0.7);
}
.bfh-cta__inner { position: relative; z-index: 10; }
.bfh-cta__title { font-size: 1.875rem; color: #fff; margin-bottom: 1rem; }
@media (min-width: 768px) { .bfh-cta__title { font-size: 2.25rem; } }
.bfh-cta__text {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 32rem;
  margin: 0 auto 2rem;
}
.bfh-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ══════════════════
   INNER HERO
   ══════════════════ */
.bfh-hero-inner {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(135deg,hsl(var(--navy-dark)),hsl(var(--navy)),hsl(var(--navy-light)));
  color: #fff;
  overflow: hidden;
}
@media (min-width: 1024px) { .bfh-hero-inner { padding: 8rem 0; } }
.bfh-hero-inner--compact { padding: 5rem 0; }
.bfh-hero-inner__bug-overlay {
  position: absolute;
  top: -3rem;
  left: 0;
  width: 100%;
  z-index: 1;
  pointer-events: none;
  object-fit: cover;
}
.bfh-hero-inner--about { padding: 5rem 0; }
@media (min-width: 1024px) { .bfh-hero-inner--compact{ padding: 8rem 0; } .bfh-hero-inner--about { padding: 11rem 0; } }
.bfh-hero-inner--about .bfh-hero-inner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.bfh-hero-inner--about .bfh-hero-inner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsl(220 55% 12% /.92) , hsl(220 50% 20% /.85) , hsl(220 55% 12% /.7));
}
.bfh-hero-inner--diagonal {
  background: linear-gradient(to bottom right, hsl(var(--navy-dark)), hsl(var(--navy)));
}
.bfh-hero-inner__content { position: relative; z-index: 2; }
.bfh-hero-inner__watermark {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.03);
  pointer-events: none;
}
.bfh-hero-inner__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: hsl(var(--secondary));
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.bfh-hero-inner__title { font-size: 2.25rem; color: #fff; margin-bottom: 1rem; line-height: 1; }
@media (min-width: 768px) { .bfh-hero-inner__title { font-size: 3rem; } }
.bfh-hero-inner__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  max-width: 672px;
  margin-bottom: 2rem;
  font-weight: 400;
  line-height: 28px;
  font-family: var(--font-display);
}
.bfh-hero-inner__sub:last-child{
  margin-bottom: 0;
}
.bfh-hero-inner__sub--wide { max-width: 48rem; }

/* ══════════════════
   PEST PAGE SECTIONS
   ══════════════════ */
.bfh-pest-info { padding: 5rem 0; }
.bfh-pest-info__title { font-size: 1.875rem; margin-bottom: 1.5rem; line-height: 36px; }
.bfh-pest-info__text { font-size: 18px; color: hsl(var(--muted-foreground)); line-height: 28px; margin-bottom: 1.5rem; }
.bfh-pest-info__signs-title { font-size: 1.25rem; margin-bottom: 1.5rem; }
.bfh-signs-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .bfh-signs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bfh-signs-grid { grid-template-columns: repeat(3, 1fr); } }
.bfh-sign-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: hsl(var(--background) / 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid hsl(var(--border));
  border-radius: var(--radius);
}
.bfh-sign-card svg { color: hsl(var(--secondary)); flex-shrink: 0; margin-top: 0.125rem; }
.bfh-sign-card span { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.bfh-pest-why { padding: 5rem 0; }
.bfh-pest-why__inner { display: flex; gap: 1.5rem; }
.bfh-pest-why__accent {
  display: none;
  width: 6px;
  border-radius: 3px;
  background: linear-gradient(to bottom, hsl(var(--secondary)), hsl(var(--secondary) / 0.5), transparent);
  flex-shrink: 0;
}
@media (min-width: 768px) { .bfh-pest-why__accent { display: block; } }
.bfh-pest-why__title { font-size: 1.875rem; margin-bottom: 32px; }
.bfh-pest-why__text { font-size: 18px; color: hsl(var(--muted-foreground)); line-height: 28px; margin-bottom: 1rem; }
.bfh-pest-why__text strong { color: hsl(var(--foreground)); }

/* ══════════════════
   ABOUT PAGE
   ══════════════════ */

/* Hero subtitle */
.bfh-hero-inner__subtitle { font-size: 1.5rem; font-family: var(--font-display); font-weight: 600; color: hsl(var(--secondary)); margin-bottom: 1.5rem; }
.bfh-hero-inner__content--narrow { max-width: 42rem; }

/* Floating stat pills */
.bfh-about-pills { position: relative; z-index: 20; margin-top: -2rem; margin-bottom: 2rem; }
.bfh-about-pills__wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.bfh-about-pill { border-radius: 999px; padding: 1rem 2rem; display: flex; align-items: center; gap: 0.75rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.bfh-about-pill__icon { color: hsl(var(--secondary)); }
.bfh-about-pill__label { font-family: var(--font-display); font-weight: 700; font-size: 0.875rem; color: hsl(var(--foreground)); margin: 0; }
.bfh-about-pill__sub { font-size: 0.75rem; color: hsl(var(--muted-foreground)); margin: 0; }

/* Why Choose bento section */
.bfh-about-why-choose { padding: 5rem 0; }
.bfh-about-why-choose__header { max-width: 56rem; margin: 0 auto 2.5rem; }
.bfh-about-why-choose__title-bar { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.bfh-about-why-choose__accent { width: 6px; height: 2.5rem; background: hsl(var(--secondary)); border-radius: 999px; }
.bfh-about-why-choose__title { font-size: 1.875rem; font-family: var(--font-display); font-weight: 700; }
.bfh-about-why-choose__desc { color: hsl(var(--muted-foreground)); font-size: 18px; line-height: 28px; padding-left: 1.25rem; }
.bfh-about-why-choose__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 64rem; margin: 0 auto 3rem; }
@media (min-width: 1024px) { .bfh-about-why-choose__grid { grid-template-columns: repeat(3, 1fr); } }
.bfh-about-why-item { padding: 1.25rem; display: flex; gap: 1rem; align-items: flex-start; border-radius: var(--radius); }
.bfh-about-why-item--span2 { grid-column: span 2; }
@media (min-width: 1024px) { .bfh-about-why-item--span2 { grid-column: span 2; } }
.bfh-about-why-item__icon { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: hsl(var(--secondary) / 0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: hsl(var(--secondary)); }
.bfh-about-why-item__text { color: hsl(var(--foreground)); font-weight: 500; margin: 0; }
.bfh-about-why-choose__closing { color: hsl(var(--muted-foreground)); text-align: center; max-width: 48rem; margin: 0 auto; line-height: 1.7; }

/* Mission */
.bfh-about-mission { padding: 5rem 0; background: linear-gradient(135deg,hsl(var(--green)),hsl(var(--green-dark))); color: #fff; }
.bfh-about-mission .bfh-container { max-width: 48rem; padding-top: 16px; padding-bottom: 16px;}
.bfh-about-mission__inner { display: flex; gap: 1.5rem; align-items: flex-start; }
.bfh-about-mission__quote-icon { display: none; color: rgba(255,255,255,0.2); flex-shrink: 0; }
@media (min-width: 1024px) { .bfh-about-mission__quote-icon { display: block; } }
.bfh-about-mission h2 { font-size: 24px; line-height: 32px; color: #fff; margin-bottom: 1.5rem; }
.bfh-about-mission p { font-size: 18px; color: rgba(255,255,255,0.85); line-height: 28px; }

/* Reviews */
.bfh-about-reviews { padding: 5rem 0; }
.bfh-about-reviews__title { font-size: 1.875rem; font-family: var(--font-display); font-weight: 700; text-align: center; margin-bottom: 3rem; }
.bfh-about-reviews__carousel { max-width: 48rem; margin: 0 auto; position: relative; }
.bfh-about-reviews__all { text-align: center; margin-top: 2rem; }
.bfh-about-reviews__all-link { display: inline-flex; align-items: center; gap: 0.5rem; color: hsl(var(--secondary)); font-weight: 600; }
.bfh-about-reviews__all-link:hover { text-decoration: underline; }
.m-0{margin: 0 !important;}
.mb_12{ margin-bottom: 56px; }

/* Integrity closing */
.bfh-about-integrity { padding: 5rem 0; position: relative; overflow: hidden; }
.bfh-about-integrity__bg { position: absolute; inset: 0; background: linear-gradient(135deg,hsl(var(--navy-dark)),hsl(var(--navy)),hsl(var(--navy-light))); }
.bfh-about-integrity__accent { position: absolute; top: 0; right: 0; width: 33%; height: 100%; background: linear-gradient(135deg,hsl(var(--green)),hsl(var(--green-dark))); clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%); display: none; }
@media (min-width: 1024px) { .bfh-about-integrity__accent { display: block; } }
.bfh-about-integrity__inner { position: relative; z-index: 10; }
.bfh-about-integrity__content { max-width: 48rem; }
.bfh-about-integrity__title { font-size: 1.875rem; font-family: var(--font-display); font-weight: 700; color: #fff; margin-bottom: 1.5rem; }
.bfh-about-integrity__text { color: rgba(255,255,255,0.7); font-size: 1.125rem; line-height: 1.7; margin-bottom: 2rem; }

/* ── Reviews ── */
.bfh-reviews-section { padding: 5rem 0; background: hsl(var(--muted) / 0.3); }
.bfh-reviews-section__title { font-size: 2rem; text-align: center; margin-bottom: 3rem; }
.bfh-reviews-page { padding: 4rem 0; }
.bfh-reviews-page .bfh-container { position: relative; }
.bfh-reviews-page__carousel { max-width: 48rem; margin: 0 auto; }
.bfh-reviews-carousel { position: relative; overflow: visible; }
.bfh-reviews-carousel__viewport { overflow: hidden; }
.bfh-reviews-carousel__track { display: flex; transition: transform 0.5s ease; }
.bfh-review-card { min-width: 100%; padding: 2.5rem; text-align: center; border-radius: 1rem; font-style: italic; }
@media (min-width: 768px) { .bfh-review-card { padding: 3.5rem; border-radius: 1rem; } }
.bfh-review-card__stars { display: flex; justify-content: center; gap: 0.25rem; margin-bottom: 1.5rem; color: hsl(var(--secondary)); }
.bfh-review-card__stars svg { fill: currentColor; stroke: none; }
.bfh-review-card__text { font-size: 1.125rem; color: hsl(var(--foreground)); line-height: 1.6; max-width: 600px; margin: 0 auto 2rem; }
@media (min-width: 768px) { .bfh-review-card__text { font-size: 1.25rem; line-height: 28px; } }
.bfh-review-card__author { font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; line-height: 28px; font-style: normal; color: hsl(var(--foreground)); }
.bfh-review-card__location { font-size: 0.875rem; color: hsl(var(--muted-foreground)); font-style: normal; line-height: 20px; }
.bfh-reviews-carousel__quote { position: absolute; color: hsl(var(--secondary) / 0.1); z-index: 0; pointer-events: none; }
.bfh-reviews-carousel__quote--tl { top: -2rem; left: -1rem; }
.bfh-reviews-carousel__quote--br { bottom: -1rem; right: -1rem; transform: rotate(180deg); }
.bfh-reviews-carousel__nav { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 2rem; }
.bfh-reviews-carousel__counter { font-size: 0.875rem; color: hsl(var(--muted-foreground)); font-weight: 500; }
.bfh-reviews-carousel__arrow { position: static; transform: none; z-index: 2; width: 3rem; height: 3rem; border-radius: 50%; border: none; display: flex; align-items: center; justify-content: center; transition: background 0.2s; cursor: pointer; }
.bfh-reviews-carousel__arrow:hover { background: hsl(var(--secondary) / 0.1); }
.bfh-reviews-carousel__edge-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 3rem; height: 3rem; border-radius: 50%; border: none; display: none; align-items: center; justify-content: center; transition: background 0.2s; cursor: pointer; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.bfh-reviews-carousel__edge-arrow--prev { left: 0; }
.bfh-reviews-carousel__edge-arrow--next { right: 0; }
.bfh-reviews-carousel__edge-arrow:hover { background: hsl(var(--secondary) / 0.1); }
@media (min-width: 768px) { .bfh-reviews-carousel__edge-arrow { display: flex; } }
.bfh-reviews-carousel__nav-mobile { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; align-items: center; }
.bfh-reviews-carousel__mob-arrow { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: hsl(var(--muted)); border: none; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; }
.bfh-reviews-carousel__mob-arrow:hover { background: hsl(var(--secondary) / 0.2); }
@media (min-width: 768px) { .bfh-reviews-carousel__mob-arrow { display: none; } }
.bfh-reviews-carousel__dots { display: flex; align-items: center; gap: 0.5rem; }
.bfh-reviews-carousel__dot { width: 0.625rem; height: 0.625rem; border-radius: 9999px; border: none; background: hsl(var(--muted-foreground) / 0.3); cursor: pointer; padding: 0; transition: all 0.3s; }
.bfh-reviews-carousel__dot--active { background: hsl(var(--secondary)); width: 1.5rem; }
.bfh-review-card__google { font-size: 0.875rem; color: hsl(var(--muted-foreground)); display: flex; align-items: center; justify-content: center; gap: 0.375rem; margin-top: 0.25rem; }
.bfh-reviews-page__quote { position: absolute; top: -1rem; left: 2rem; color: hsl(var(--secondary) / 0.1); pointer-events: none; display: none; }
@media (min-width: 768px) { .bfh-reviews-page__quote { display: block; } }
.bfh-reviews-page__badge { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 2rem; font-size: 0.9375rem; font-weight: 600; color: hsl(var(--foreground)); }
/* Reviews hero */
.bfh-hero-inner--reviews { padding-bottom: 6rem; }
.bfh-reviews-hero-split { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 1024px) { .bfh-reviews-hero-split { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.bfh-reviews-hero-split__content { flex: 1; }
.bfh-reviews-hero__cta { margin-top: 1.5rem; }
.bfh-reviews-hero__badge { border-radius: 1rem; padding: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.bfh-reviews-hero__stars span{ display: flex; }
.bfh-reviews-hero__stars { display: flex; gap: 0.25rem; color: hsl(var(--accent)); }
.bfh-reviews-hero__stars svg { fill: currentColor; stroke: none; }
.bfh-reviews-hero__counter { font-size: 2.25rem; line-height: 40px; font-family: var(--font-display); font-weight: 700; color: hsl(var(--lime)); }
.bfh-reviews-hero__label { color: rgba(255,255,255,0.7); font-size: 0.875rem; width: 65px; }
.bfh-review-card__stars--accent { color: hsl(var(--accent)); }

/* ══════════════════
   CONTACT PAGE
   ══════════════════ */
.bfh-contact { padding: 5rem 0; }
.bfh-contact__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 1024px) { .bfh-contact__grid { grid-template-columns: 1fr 1fr; } }
.bfh-contact__sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 1024px) { .bfh-contact__sidebar { position: sticky; top: 6rem; } }
.bfh-contact__quick-response { background: linear-gradient(135deg, hsl(var(--green)), hsl(var(--green-dark))); border-radius: var(--radius); padding: 1.5rem; color: #fff; }
.bfh-contact__quick-response h3 { font-size: 1.0625rem; color: #fff; margin-bottom: 0.5rem; }
.bfh-contact__quick-response p { font-size: 0.875rem; line-height: 20px; color: rgba(255,255,255,0.8); }
.bfh-contact__get-in-touch { font-size: 1.5rem; margin-bottom: 24px; }
.bfh-contact__intro-text { font-size: 0.9375rem; color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; line-height: 20px; }
.bfh-contact__info-card { display: flex; align-items: center; gap: 1rem; padding: 1.25rem; border-radius: var(--radius); box-shadow: 0 1px 3px rgba(0,0,0,0.05); transition: box-shadow 0.2s; }
.bfh-contact__info-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
.bfh-contact__info-icon { width: 3rem; height: 3rem; border-radius: var(--radius); background: hsl(var(--secondary) / 0.1); display: flex; align-items: center; justify-content: center; color: hsl(var(--secondary)); flex-shrink: 0; }
.bfh-contact__info-label { font-family: var(--font-display); font-weight: 600; font-size: 0.9375rem; }
.bfh-contact__info-value { font-weight: 700; font-size: 1.125rem; color: hsl(var(--secondary)); }
.bfh-contact__info-value--muted { color: hsl(var(--muted-foreground)); }
.bfh-contact__form-card { border-radius: 1rem; padding: 2rem; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }

/* ══════════════════
   QUOTE PAGE
   ══════════════════ */
.bfh-quote { padding: 4rem 0; }
.bfh-quote__steps { display: flex; align-items: center; justify-content: center; gap: 0; margin-bottom: 3rem; flex-wrap: wrap; }
.bfh-quote__step { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; padding: 0 1rem; }
.bfh-quote__step-num { width: 56px; height: 56px; border-radius: 50%; background: hsl(var(--secondary)); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 1.125rem; }
.bfh-quote__step-label {
    font-size: 12px;
    text-align: center;
    color: hsl(var(--foreground));
    line-height: 16px;
    font-weight: 600;
}
.bfh-quote__step-connector {
    width: 96px;
    height: 4px;
    background: hsl(var(--secondary) / .4);
    margin-bottom: 1.5rem;
}
.bfh-quote__form { border-radius: 1rem; padding: 1.5rem 2rem; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }

/* ══════════════════
   RESIDENTIAL PAGE
   ══════════════════ */
.bfh-numbered-steps { padding: 5rem 0; }
.bfh-numbered-steps__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 1024px) { .bfh-numbered-steps__grid { grid-template-columns: repeat( 2 , minmax( 0 , 1fr ) ); } }
.bfh-numbered-steps__content h2 { font-size: 2rem; margin-bottom: 2rem; }
.bfh-numbered-steps__list { position: relative; padding-left: 2rem; }
.bfh-numbered-steps__list::before { content: ''; position: absolute; left: 0.75rem; top: 0.5rem; bottom: 0.5rem; width: 2px; background: linear-gradient(to bottom, hsl(var(--secondary)), hsl(var(--secondary) / 0.5), transparent); border-radius: 2px; }
.bfh-step-item { position: relative; margin-bottom: 1.5rem; }
.bfh-step-dot { position: absolute; left: -1.25rem; top: 0.25rem; width: 1rem; height: 1rem; border-radius: 50%; background: hsl(var(--secondary)); border: 2px solid hsl(var(--background)); }
.bfh-step-card { border-radius: var(--radius); padding: 1rem; }
.bfh-step-num { font-family: var(--font-display); font-weight: 700; font-size: 0.75rem; color: hsl(var(--secondary)); margin-right: 0.5rem; }
.bfh-numbered-steps__img img { border-radius: var(--radius); width: 100%; height: auto; object-fit: cover; }
.bfh-pest-pills { margin-top: 2.5rem; }
.bfh-pest-pills h3 { font-size: 1.125rem; margin-bottom: 1rem; }
.bfh-pest-pills__grid { display: flex; gap: 0.75rem; overflow-x: auto; padding-bottom: 0.5rem; scrollbar-width: none; -ms-overflow-style: none; }
.bfh-pest-pills__grid::-webkit-scrollbar { display: none; }
.bfh-pest-pill { display: inline-flex; align-items: center; gap: 0.375rem; padding: 0.5rem 1rem; border-radius: 999px; font-size: 0.875rem; font-weight: 500; white-space: nowrap; flex-shrink: 0; cursor: default; box-shadow: 0 1px 2px rgba(0,0,0,0.05); transition: background 0.2s, border-color 0.2s; }
.bfh-pest-pill:hover { background: hsl(var(--secondary) / 0.1); border-color: hsl(var(--secondary) / 0.3); }
.bfh-pest-pill svg { color: hsl(var(--secondary)); }

/* Specialized services */
.bfh-specialized { padding: 5rem 0; background: hsl(var(--muted) / 0.3); }
.bfh-specialized__title { font-size: 2rem; text-align: center; margin-bottom: 3rem; }
.bfh-specialized__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) { .bfh-specialized__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bfh-specialized__grid { grid-template-columns: repeat(3, 1fr); } }
.bfh-specialized__card { background: hsl(var(--background)); border: 1px solid hsl(var(--border)); border-radius: var(--radius); padding: 1.5rem; transition: transform 0.2s, box-shadow 0.2s; }
.bfh-specialized__card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.bfh-specialized__icon { color: hsl(var(--secondary)); margin-bottom: 1rem; }
.bfh-specialized__card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; }
.bfh-specialized__card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.6; }

/* FAQ */
.bfh-faq { padding: 5rem 0; }
.bfh-faq__title { font-size: 2rem; text-align: center; margin-bottom: 3rem; }
.bfh-faq__list { display: flex; flex-direction: column; gap: 0.75rem; }
.bfh-faq__item { border-bottom: 1px solid hsl(var(--border)); }
.bfh-faq__question { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; font-weight: 600; font-size: 0.9375rem; cursor: pointer; list-style: none; }
.bfh-faq__question::-webkit-details-marker { display: none; }
.bfh-faq__question svg { transition: transform 0.3s; flex-shrink: 0; margin-left: 1rem; }
.bfh-faq__item[open] .bfh-faq__question svg { transform: rotate(180deg); }
.bfh-faq__answer { padding: 0 1.25rem 1rem; font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.4; }

/* ══════════════════
   COMMERCIAL PAGE
   ══════════════════ */
/* Quality section */
.bfh-commercial-quality { position: relative; padding: 5rem 0; min-height: 400px; display: flex; align-items: center; }
.bfh-commercial-quality__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.bfh-commercial-quality__overlay { position: absolute; inset: 0; background: hsl(var(--background) / 0.8); backdrop-filter: blur(4px); }
.bfh-commercial-quality .bfh-container { max-width: 72rem; position: relative; z-index: 2; }
.bfh-commercial-quality__card { border-radius: 1rem; padding: 2.5rem; max-width: 42rem; }
.bfh-commercial-quality__card h2 { font-size: 1.875rem; font-family: var(--font-display); font-weight: 700; margin-bottom: 1.5rem; }
.bfh-commercial-quality__card p { color: hsl(var(--muted-foreground)); font-size: 1.125rem; line-height: 1.6; }

/* General package section */
.bfh-commercial-general { padding: 5rem 0; background: hsl(var(--muted)); }
.bfh-commercial-general .bfh-container { max-width: 64rem; padding-top: 2rem; }
.bfh-commercial-general__img { border-radius: 1rem; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); margin-bottom: 2.5rem; }
.bfh-commercial-general__img img { width: 100%; height: 20rem; object-fit: cover; }
.bfh-commercial-general h2 { font-size: 1.875rem; font-family: var(--font-display); font-weight: 700; margin-bottom: 1.5rem; }
.bfh-commercial-general p { color: hsl(var(--muted-foreground)); margin-bottom: 1.5rem; }

/* Industries section */
.bfh-commercial-industries { padding: 5rem 0; }
.bfh-commercial-industries__title { font-size: 1.875rem; font-family: var(--font-display); font-weight: 700; text-align: center; margin-bottom: 3rem; }
.bfh-industries__grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 72rem; margin: 0 auto; }
@media (min-width: 640px) { .bfh-industries__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bfh-industries__grid { grid-template-columns: repeat(3, 1fr); } }
.bfh-industry-card { border-radius: var(--radius); padding: 1.5rem; transition: transform 0.2s, box-shadow 0.2s; }
.bfh-industry-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.bfh-industry-card__icon { width: 3rem; height: 3rem; border-radius: var(--radius); background: hsl(var(--secondary) / 0.1); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; color: hsl(var(--secondary)); }
.bfh-industry-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; margin-bottom: 0.5rem; }
.bfh-industry-card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.4; }
.bfh-commercial-section__cta { text-align: center; margin-top: 3rem; }

/* Services section */
.bfh-commercial-services { padding: 5rem 0; background: hsl(var(--muted)); }
.bfh-commercial-services .bfh-container { max-width: 64rem; padding-top: 2rem; }
.bfh-commercial-services__header { text-align: center; margin-bottom: 3rem; }
.bfh-commercial-services__header h2 { font-size: 1.875rem; font-family: var(--font-display); font-weight: 700; margin-bottom: 1rem; }
.bfh-commercial-services__header p { color: hsl(var(--muted-foreground)); max-width: 48rem; margin: 0 auto; }
.bfh-commercial-services__list { display: flex; flex-direction: column; gap: 1.5rem; }
.bfh-commercial-service-card { border-radius: var(--radius); padding: 1.5rem; display: flex; gap: 1.5rem; align-items: flex-start; }
.bfh-commercial-service-card__num { font-size: 3.75rem; font-family: var(--font-display); font-weight: 700; color: hsl(var(--secondary) / 0.15); line-height: 1; flex-shrink: 0; user-select: none; }
.bfh-commercial-service-card__body { flex: 1; }
.bfh-commercial-service-card__header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.bfh-commercial-service-card__icon { width: 2.5rem; height: 2.5rem; border-radius: var(--radius); background: hsl(var(--secondary) / 0.1); display: flex; align-items: center; justify-content: center; color: hsl(var(--secondary)); }
.bfh-commercial-service-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.125rem; }
.bfh-commercial-service-card p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.6; }

/* Why Choose section */
.bfh-commercial-why { padding: 5rem 0; background: hsl(var(--navy)); color: #fff; }
.bfh-commercial-why__header { text-align: center; margin-bottom: 2rem; }
.bfh-commercial-why__header h2 { font-size: 1.875rem; color: #fff; }
.bfh-commercial-why__header p { color: rgba(255,255,255,0.7); margin-top: 1rem; }
.bfh-commercial-why .bfh-container { max-width: 64rem; }
.bfh-commercial-why__content { display: flex; gap: 2rem; max-width: 48rem; margin: 0 auto; }
.bfh-commercial-why__accent { display: none; width: 6px; background: linear-gradient(to bottom, hsl(var(--secondary)), hsl(var(--secondary) / 0.5), transparent); border-radius: 999px; flex-shrink: 0; }
@media (min-width: 768px) { .bfh-commercial-why__accent { display: block; } }
.bfh-commercial-why__reasons-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-bottom: 2rem; }
@media (max-width: 640px) { .bfh-commercial-why__reasons-grid { grid-template-columns: 1fr; } }
.bfh-commercial-why__reason { display: flex; align-items: flex-start; gap: 0.75rem; }
.bfh-commercial-why__reason span:first-child { color: hsl(var(--secondary)); flex-shrink: 0; margin-top: 0.125rem; }
.bfh-commercial-why__reason span:last-child { color: rgba(255,255,255,0.85); }
.bfh-commercial-why__closing { color: rgba(255,255,255,0.7); }

/* ══════════════════
   PEST LIBRARY
   ══════════════════ */
.bfh-pest-library__search { position: relative; max-width: 400px; margin-top: 1.5rem; }
.bfh-pest-library__input { width: 100%; padding: 0.75rem 1rem 0.75rem 2.75rem; border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius); background: rgba(255,255,255,0.1); color: #fff; font-size: 0.9375rem; outline: none; }
.bfh-pest-library__input::placeholder { color: rgba(255,255,255,0.5); }
.bfh-pest-library__search svg { position: absolute; left: 0.875rem; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.5); }
.bfh-pest-library { padding: 4rem 0; }
.bfh-pest-library__list { display: flex; flex-direction: column; gap: 0.75rem; }
.bfh-pest-library__item { border: 1px solid hsl(var(--border)); border-radius: var(--radius); overflow: hidden; }
.bfh-pest-library__header { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.25rem; cursor: pointer; font-weight: 600; list-style: none; }
.bfh-pest-library__header::-webkit-details-marker { display: none; }
.bfh-pest-library__name { display: flex; align-items: center; gap: 0.75rem; }
.bfh-pest-library__name svg { color: hsl(var(--secondary)); }
.bfh-pest-library__header > svg { transition: transform 0.3s; flex-shrink: 0; }
.bfh-pest-library__item[open] .bfh-pest-library__header > svg { transform: rotate(180deg); }
.bfh-pest-library__body { padding: 0 1.25rem 1.25rem; }
.bfh-pest-library__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 640px) { .bfh-pest-library__grid { grid-template-columns: repeat(3, 1fr); } }
.bfh-pest-library__grid h4 { font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.05em; color: hsl(var(--secondary)); margin-bottom: 0.25rem; }
.bfh-pest-library__grid p { font-size: 0.8125rem; color: hsl(var(--muted-foreground)); line-height: 1.5; }

/* ══════════════════
   LEGAL PAGES
   ══════════════════ */
.bfh-legal { padding: 6rem 0 4rem; }
.bfh-legal__title { font-size: 2rem; margin-bottom: 2rem; }
.bfh-content h2 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.bfh-content p { font-size: 16px; color: hsl(var(--muted-foreground)); line-height: 1.5; margin-bottom: 1rem; }
.bfh-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.bfh-content ul li { font-size: 16px; color: hsl(var(--muted-foreground)); line-height: 1.5; margin-bottom: 0.5rem; list-style: disc; }
.bfh-content a { color: hsl(var(--navy)); font-weight: 600; transition: color 0.2s; }
.bfh-content a:hover { color: hsl(var(--navy-light)); }
.bfh-accessibility-contact { background: hsl(var(--muted) / 0.5); border-radius: 0.5rem; padding: 1.5rem; margin-top: 2rem; }
.bfh-accessibility-contact h3 { font-size: 1.125rem; font-weight: 600; color: hsl(var(--foreground)); margin-bottom: 1rem; }
.bfh-accessibility-contact p { margin-bottom: 0.75rem; font-size: 0.875rem; }
.bfh-accessibility-contact__item a { display: inline-flex; align-items: center; gap: 0.5rem; }
.bfh-accessibility-contact__item svg { flex-shrink: 0; }
.bfh-accessibility-contact__item:last-child a{ text-decoration: underline; }
/* ══════════════════
   FOOTER — white bg, matches source Footer.tsx
   ══════════════════ */
.bfh-footer {
  background: #fff;
  color: hsl(var(--foreground));
}
.bfh-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
}
@media (min-width: 768px) { .bfh-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .bfh-footer__grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.bfh-footer__brand { display: flex; flex-direction: column; gap: 1rem; }
.bfh-footer__logo { height: 3.5rem; width: auto; }
.bfh-footer__tagline {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}
.bfh-footer__guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--primary));
}
.bfh-footer__heading {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-bottom: 1rem;
  line-height: 28px;
}
.bfh-footer__links { display: flex; flex-direction: column; gap: 0.5rem; }
.bfh-footer__links li{
  display: block;
}
.bfh-footer__links li a {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
  display: block;
  line-height: 20px;
}
.bfh-footer__links li a:hover { color: hsl(var(--primary)); }
.bfh-footer__contact-info { display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
.bfh-footer__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--primary));
  font-weight: 600;
  transition: color 0.2s;
}
.bfh-footer__phone:hover { color: hsl(var(--primary) / 0.8); }
.bfh-footer__address {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}
.bfh-footer__address:hover { color: hsl(var(--primary)); }
.bfh-footer__address svg { flex-shrink: 0; margin-top: 0.125rem; }
.bfh-footer__sameday {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--muted-foreground));
}
.bfh-footer__bottom {
  border-top: 1px solid hsl(var(--border));
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
}
.bfh-footer__bottom-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 640px) {
  .bfh-footer__bottom-row {
    flex-direction: row;
    justify-content: space-between;
  }
}
.bfh-footer__bottom-tagline {
  font-weight: 500;
  color: hsl(var(--primary) / 0.7);
}
.bfh-footer__legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
}
.bfh-footer__legal a {
  color: hsl(var(--muted-foreground));
  transition: color 0.2s;
}
.bfh-footer__legal a:hover { color: hsl(var(--primary)); }
.bfh-footer__legal span { color: hsl(var(--muted-foreground)); }

/* ── Form placeholder ── */
.bfh-form-placeholder { padding: 2rem; border: 2px dashed hsl(var(--border)); border-radius: var(--radius); text-align: center; color: hsl(var(--muted-foreground)); }
.bfh-form-placeholder__title { margin: 0 0 0.5rem; font-weight: 600; font-size: 1rem; }
.bfh-form-placeholder__desc { margin: 0; font-size: 0.875rem; }

/* ══════════════════
   MOBILE RESPONSIVE
   ══════════════════ */
@media (max-width:1024px){
  .mb_12{ margin-bottom: 48px; }
}
@media (max-width: 767px) {
  /* Container */
  .bfh-container { padding-inline: 20px; }

  /* Border radius reduction */
  :root { --radius: 0.5rem; }
  .mb_12{ margin-bottom: 32px; }

  /* Section padding — ~30% reduction (5rem → 3rem) */
  .bfh-intro,
  .bfh-services-home,
  .bfh-why-choose,
  .bfh-process,
  .bfh-cta,
  .bfh-pest-info,
  .bfh-pest-why,
  .bfh-about-why,
  .bfh-about-mission,
  .bfh-about-integrity,
  .bfh-reviews-section,
  .bfh-contact,
  .bfh-numbered-steps,
  .bfh-specialized,
  .bfh-faq,
  .bfh-commercial-quality,
  .bfh-commercial-general,
  .bfh-industries,
  .bfh-commercial-timeline,
  .bfh-commercial-why,
  .bfh-pest-library { padding: 3rem 0; }

  /* Hero */
  .bfh-hero__grid { padding: 30px 0; }
  .bfh-hero__title { font-size: 2rem; }
  .bfh-hero__sub { font-size: 1rem; line-height: 1.5; margin-bottom: 1rem; }
  .bfh-hero__form-card { border-radius: 0.75rem; }

  /* Inner hero */
  .bfh-hero-inner { padding: 5rem 0; }
  .bfh-hero-inner--about { padding: 3.5rem 0 2.5rem; }
  .bfh-hero-inner__title { font-size: 1.75rem; line-height: normal; }
  .bfh-hero-inner__sub { font-size: 1rem; line-height: 1.5; }

  .bfh-commercial-quality__card h2{ font-size: 24px; line-height: 30px; margin-bottom: 16px; }

  .bfh-numbered-steps__content,
  .bfh-numbered-steps__grid {
      display: flex;
      flex-direction: column;
  }

  /* Section heading sizes */
  .bfh-intro__title,
  .bfh-services-home__title,
  .bfh-why-choose__title,
  .bfh-process__title,
  .bfh-cta__title,
  .bfh-pest-info__title,
  .bfh-pest-why__title,
  .bfh-about-why__title,
  .bfh-about-integrity h2,
  .bfh-reviews-section__title,
  .bfh-specialized__title,
  .bfh-faq__title,
  .bfh-industries__title,
  .bfh-commercial-timeline__title,
  .bfh-commercial-why h2,
  .bfh-commercial-general h2,
  .bfh-legal__title,
  .bfh-numbered-steps__content h2 { font-size: 1.5rem; }

  .bfh-about-mission h2 { font-size: 1.25rem; }

  /* Card padding ~30% reduction */
  .bfh-why-card { padding: 1rem; }
  .bfh-specialized__card { padding: 1rem; }
  .bfh-industry-card { padding: 1rem; }
  .bfh-sign-card { padding: 0.75rem; }
  .bfh-service-card__content { padding: 1.5rem; }
  .bfh-commercial-quality__card { padding: 1.5rem; }
  .bfh-about-why__card { padding: 1rem; }

  /* FAQ */
  .bfh-faq__question { padding: 0.875rem 1rem; font-size: 0.875rem; line-height: 1.4; }
  .bfh-faq__answer { padding: 0 1rem 0.875rem; }

  /* Grids — single column and reduced gaps */
  .bfh-why-choose__grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .bfh-why-card--span-2-lg-1,
  .bfh-why-card--span-2 { grid-column: span 1; }
  .bfh-services-home__list { gap: 1.5rem; }
  .bfh-about-why__grid { gap: 0.75rem; }

  /* Stats */
  .bfh-stats__grid { padding: 1.25rem; gap: 1rem; border-radius: 12px; }
  .bfh-stats__value { font-size: 1.5rem; }

  /* Process */
  .bfh-process__subtitle { margin-bottom: 2rem; }

  /* Buttons */
  .bfh-btn,
  .bfh-btn--lg { padding: 0 1rem; border-radius: 10px; }

  /* Angle clips */
  .section-angle-top { clip-path: polygon(0 2%, 100% 0%, 100% 100%, 0% 100%); }
  .section-angle-bottom { clip-path: polygon(0 0%, 100% 0%, 100% 98%, 0% 100%); }

  /* Footer */
  .bfh-footer__grid { padding: 2.75rem 0; gap: 2rem; }
  .bfh-footer__bottom { padding: 1rem 0; }
  .bfh-footer__bottom-row { justify-content: center; }

  /* About page */
  .bfh-about-pills__wrap { gap: 0.75rem; }
  .bfh-about-pill { padding: 0.75rem 1.25rem; }
  .bfh-about-why-choose { padding: 3rem 0; }
  .bfh-about-why-choose__title { font-size: 1.5rem; }
  .bfh-about-why-choose__desc { font-size: 1rem; }
  .bfh-about-why-choose__grid { grid-template-columns: 1fr; }
  .bfh-about-why-item--span2 { grid-column: span 1; }
  .bfh-about-mission p { font-size: 1rem; }
  .bfh-about-reviews { padding: 3rem 0; }
  .bfh-about-integrity { padding: 3rem 0; }
  .bfh-about-integrity__title { font-size: 1.5rem; }
  .bfh-about-integrity__text { font-size: 1rem; }
  .bfh-hero-inner__subtitle { font-size: 1.25rem; }

  /* Reviews */
  .bfh-review-card { padding: 1.5rem 1.25rem; }
  .bfh-review-card__text { font-size: 1rem; }
  .bfh-reviews-hero__counter { font-size: 2.5rem; }
  .bfh-reviews-carousel__quote { display: none; }

  /* Contact */
  .bfh-contact__grid { gap: 2rem; }
  .bfh-contact__info-card { padding: 1rem; }
  .bfh-contact__info-icon { width: 2.5rem; height: 2.5rem; }
  .bfh-contact__form-card { padding: 0.25rem; }
  .bfh-contact__quick-response { padding: 1.25rem; }

  /* Quote */
  .bfh-quote { padding: 3rem 0; }
  .bfh-quote__step-connector { width: 40px; }
  .bfh-quote__step-num{ width: 40px; height: 40px; }

  /* Commercial timeline */
  .bfh-timeline-item { flex-direction: column; gap: 1rem; }
  .bfh-commercial-timeline__list { gap: 1.5rem; }


  /* Description text sizes */
  .bfh-services-home__subtitle,
  .bfh-process__subtitle,
  .bfh-cta__text { font-size: 1rem; line-height: 1.5; }
  .bfh-pest-info__text,
  .bfh-pest-why__text,
  .bfh-about-mission p,
  .bfh-about-integrity p,
  .bfh-commercial-general p,
  .bfh-commercial-quality__card p { font-size: 1rem; line-height: 1.5; }
  .bfh-commercial-service-card{
    padding: 20px;
  }
  .bfh-contact__intro-text,
  .bfh-contact__get-in-touch,
  .bfh-about-integrity__text,
  .bfh-about-integrity__title,
  .bfh-review-card__text,
  .bfh-review-card__stars,
  .bfh-about-mission h2,
  .bfh-pest-why__title,
  .bfh-pest-info__signs-title,
  .bfh-pest-info__title,
  .bfh-cta__text,
  .bfh-intro__title{
    margin-bottom: 1rem;
  }
  .bfh-about-reviews__title,
  .bfh-commercial-general__img,
  .bfh-services-home__subtitle{
    margin-bottom: 2rem;
  }
  .bfh-commercial-general__img,
  .bfh-commercial-quality__card,
  .bfh-service-card{
    border-radius: 12px;
  }
  .bfh-footer__bottom,
  .bfh-footer__bottom-row{
    gap: 12px;
  }
  .bfh-footer__heading{
    margin-bottom: 8px;
  }
  .bfh-commercial-service-card{
    flex-direction: column;
    gap: 16px;
  }
  .bfh-commercial-service-card__num{
    font-size: 2.5rem;
  }
  .bfh-commercial-section__cta{
    margin-top: 2rem;
  }
  .bfh-quote__step-num svg{
    width: 20px; height: 20px;
  }
  .bfh-quote__form{
    padding: 0;
  }
  .bfh-legal{
    padding: 5rem 0 4rem;
  }
}

@media (max-width: 440px) {
  .bfh-header__right { gap: 0.25rem; }
  .bfh-header__cta { padding: 0.5rem 0.75rem; }
  .bfh-quote__step{
    padding: 0 6px;
  }
}

/* ── Print ── */
@media print {
  .bfh-header, .bfh-footer, .bfh-cta, .bfh-mobile-menu { display: none; }
  body { color: #000; }
}
