/* ============================================================
   FIREBRAND AGENCY — Design System CSS
   Mid-century modern / Shag-inspired. Bold, flat, no BS.
   ============================================================ */

/* ── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg-primary:   #F1EACF;  /* cream — page bg, header */
  --bg-dark:      #1A1A1A;  /* nearly black — hero, dark sections, footer */
  --bg-card:      #222222;  /* card bg on dark backgrounds */
  --bg-muted:     #E8E2D0;  /* slightly darker cream — trust bar, subtle stripes */

  /* Brand colors */
  --teal:         #2A9D8F;  /* primary accent — CTAs, links, borders */
  --teal-dark:    #238B7E;  /* teal hover */
  --orange:       #E8652A;  /* logo, secondary accent, highlight words */
  --orange-text:  #B04A18;  /* darkened orange for text on light bg — 4.58:1 on cream */
  --gold:         #E8A54B;  /* benefit titles, dividers, warm accents */
  --mustard:      #D4A843;  /* stars, ratings */
  --purple:       #6B5B8A;  /* tertiary — use sparingly */

  /* Text */
  --text-light:   #FAF7F2;  /* on dark backgrounds */
  --text-dark:    #1A1A1A;  /* headlines on light */
  --text-body:    #4A4540;  /* body copy on light */
  --text-muted:   #686460;  /* captions, secondary */
  --text-muted-dark: #B8B3AE; /* body copy on dark */

  /* Borders */
  --border-light: #E8E4DE;

  /* Spacing */
  --section-pad:  6rem;     /* 96px */
  --section-pad-lg: 7.5rem; /* 120px */
  --container-max: 1440px;
  --side-pad:     5rem;     /* 80px desktop */

  /* Radius */
  --radius-card:  16px;
  --radius-btn:   28px;
  --radius-sm:    12px;

  /* Transitions */
  --transition: 0.25s ease;
}

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  /* Fluid type scale: ~15px @ 320px → ~16px @ 768px → ~17px @ 1280px+ */
  font-size: clamp(0.9375em, 0.85em + 0.4vw, 1.0625em);
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--bg-primary);
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
a:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }
.fb-btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }
.fb-nav__item > a:focus-visible,
.fb-nav__links > li > a:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }
.fb-link-arrow:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; border-radius: 4px; }

ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
.font-display { font-family: 'Luckiest Guy', cursive; letter-spacing: 2px; }
.font-label   { font-family: 'Righteous', cursive; letter-spacing: 1px; }

h1, h2, h3 {
  font-family: 'Luckiest Guy', cursive;
  line-height: 1.05;
  font-weight: 400; /* Luckiest Guy has built-in weight */
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); letter-spacing: 3px; }
h2 { font-size: clamp(2.25rem, 4vw, 3.5rem); letter-spacing: 2px; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); letter-spacing: 2px; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── SKIP LINK ──────────────────────────────────────────── */
.fb-skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--teal);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-family: 'Righteous', cursive;
  z-index: 9999;
  transition: top 0.2s;
}
.fb-skip-link:focus { top: 0; }

/* ── CONTAINER ──────────────────────────────────────────── */
.fb-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

/* ── SECTION UTILITIES ──────────────────────────────────── */
.fb-section { padding: var(--section-pad) 0; }
.fb-section--lg { padding: var(--section-pad-lg) 0; }
.fb-section--dark { background: var(--bg-dark); }
.fb-section--teal { background: var(--teal); }
.fb-section--muted { background: var(--bg-muted); }

.fb-eyebrow {
  font-family: 'Righteous', cursive;
  font-size: 0.875rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #1A7268;
  display: block;
  margin-bottom: 1rem;
}
.fb-eyebrow--white { color: rgba(255,255,255,0.7); }
.fb-eyebrow--gold  { color: var(--gold); }
/* Restore readable teal on dark/teal section backgrounds */
.fb-section--dark .fb-eyebrow,
.fb-section--teal .fb-eyebrow,
.fb-benefits .fb-eyebrow { color: var(--teal); }

.fb-divider {
  display: block;
  width: 60px;
  height: 5px;
  background: var(--gold);
  border-radius: 3px;
  margin: 1.5rem 0;
}

/* Two-column split layout */
.fb-split {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: center;
}
.fb-split--reverse { grid-template-columns: 45% 55%; }
.fb-split--reverse .fb-split__text { order: 2; }
.fb-split--reverse .fb-split__visual { order: 1; }

/* ── ILLUSTRATION PLACEHOLDERS ──────────────────────────── */
.fb-placeholder {
  border: 2px dashed rgba(255,255,255,0.2);
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  color: rgba(255,255,255,0.3);
  font-family: 'Righteous', cursive;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-align: center;
  padding: 2rem;
}
.fb-placeholder--light {
  border-color: rgba(0,0,0,0.12);
  color: rgba(0,0,0,0.25);
}

/* ── BUTTONS ────────────────────────────────────────────── */
.fb-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-btn);
  font-family: 'Righteous', cursive;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.fb-btn:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.fb-btn:active { transform: translateY(0); }

.fb-btn--primary {
  background: var(--teal);
  color: #1A1A1A;
}
.fb-btn--primary:hover { background: var(--teal-dark); color: #1A1A1A; }

.fb-btn--dark {
  background: var(--bg-dark);
  color: #fff;
}
.fb-btn--dark:hover { background: #111; color: #fff; }

.fb-btn--ghost {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}
.fb-btn--ghost:hover { background: var(--teal); color: #fff; }

.fb-link-arrow {
  color: #1A7268;
  font-family: 'Righteous', cursive;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition), color var(--transition);
}
.fb-link-arrow:hover { gap: 0.6rem; color: var(--teal-dark); }

/* ── NAVIGATION ─────────────────────────────────────────── */
.fb-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-primary);
  height: 80px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.fb-nav.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.fb-nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--side-pad);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.fb-nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.fb-nav__logo-text {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.75rem;
  letter-spacing: 4px;
  color: var(--orange);
  line-height: 1;
}
.fb-nav__logo img {
  height: 44px;
  width: auto;
}

.fb-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: flex-end;
}
.fb-nav__item { position: relative; }
.fb-nav__item > a,
.fb-nav__links > li > a {
  font-family: 'Righteous', cursive;
  font-size: 0.9375rem;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
}
.fb-nav__item > a:hover,
.fb-nav__links > li > a:hover { color: var(--teal); }
.fb-nav__item > a.active,
.fb-nav__links > li > a.active { color: var(--teal); }

/* ── LAVA LAMP "FREE SITE SCAN" NAV BUTTON ──────────────── */
.btn-site-scan {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Righteous', cursive;
  font-size: 0.875rem;
  letter-spacing: 0.5px;
  color: #fff !important;
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  background: var(--bg-dark) !important;
  border-radius: var(--radius-btn);
  white-space: nowrap;
  transition: background 0.2s ease;
}
.fb-nav__item > a.btn-site-scan { border-radius: var(--radius-btn); }
.btn-site-scan.active { background: #000 !important; }
.btn-site-scan:hover  { background: #000 !important; color: #fff !important; }

.btn-site-scan-icon { display: none; }

.btn-site-scan:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .btn-site-scan { width: 100%; padding: 12px 24px; font-size: 1rem; justify-content: center; }
}

/* CTA button in nav */
.fb-nav__cta {
  background: var(--teal) !important;
  color: #fff !important;
  border-radius: var(--radius-btn) !important;
  padding: 0.5rem 1.25rem !important;
  margin-left: 0.5rem;
}
.fb-nav__cta:hover { background: var(--teal-dark) !important; color: #fff !important; }

/* Dropdown */
.fb-nav__dropdown:hover .fb-nav__dropdown-menu,
.fb-nav__dropdown:focus-within .fb-nav__dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.fb-nav__arrow { font-size: 0.7rem; transition: transform var(--transition); }
.fb-nav__dropdown:hover .fb-nav__arrow { transform: rotate(180deg); }

.fb-nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  overflow: hidden;
}
.fb-nav__dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark) !important;
  border-radius: 0 !important;
  background: transparent !important;
  border-left: 3px solid transparent;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}
.fb-nav__dropdown-menu li a:hover {
  background: var(--bg-primary) !important;
  border-left-color: var(--teal);
  color: var(--teal) !important;
}

/* Mobile hamburger */
.fb-nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition);
}
.fb-nav__toggle:hover { background: rgba(0,0,0,0.06); }
.fb-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.fb-nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.fb-nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.fb-nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO SECTION ───────────────────────────────────────── */
.fb-hero {
  background: var(--bg-dark);
  padding: 7rem 0 6rem;
  overflow: hidden;
  position: relative;
}
/* Subtle background decoration */
.fb-hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.04;
  pointer-events: none;
}
.fb-hero__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: center;
}
.fb-hero__headline {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  letter-spacing: 3px;
  line-height: 1.0;
  margin-bottom: 1.75rem;
}
.fb-hero__headline .line-white  { color: var(--text-light); display: block; }
.fb-hero__headline .line-gold   { color: var(--gold);       display: block; }
.fb-hero__headline .line-orange { color: var(--orange);     display: block; }

.fb-hero__sub {
  font-size: 1.0625rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.fb-hero__actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.fb-hero__visual { display: flex; align-items: center; justify-content: center; }
.fb-hero__visual img { border-radius: 20px; }

/* ── FULL-BLEED HERO (new pattern — sitewide) ───────────── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 125px 0 75px;
}

.hero > .fb-container {
  width: 100%;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right top;
  display: block;
}

.hero-card {
  position: relative;
  z-index: 1;
  max-width: 480px;
  background: rgba(26, 26, 26, 0.88);
  border-radius: 20px;
  padding: 32px 36px;
}

.hero-label {
  font-family: 'Righteous', cursive;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 16px;
}

.hero-headline {
  font-family: 'Luckiest Guy', cursive;
  color: var(--text-light);
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: 2px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-headline .line-white  { color: var(--text-light); }
.hero-headline .line-gold   { color: var(--gold); }
.hero-headline .line-orange { color: var(--orange); }

.hero-body {
  font-family: 'Inter', sans-serif;
  color: rgba(250, 247, 242, 0.82);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.hero-cta {
  display: inline-block;
  font-family: 'Righteous', cursive;
  font-size: 16px;
  background: var(--orange);
  color: #1A1A1A;
  padding: 14px 36px;
  border-radius: 28px;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-cta:hover { background: #d45a24; }

.hero-link {
  font-family: 'Righteous', cursive;
  font-size: 15px;
  color: var(--teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: opacity 0.2s;
}
.hero-link:hover { opacity: 0.8; }

@media (max-width: 768px) {
  .hero {
    position: static;
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  .hero-bg {
    position: static;
    height: 400px;
    flex-shrink: 0;
    width: 100%;
  }
  .hero-bg img { height: 100%; width: 100%; object-fit: cover; }
  .hero-card {
    max-width: 100%;
    border-radius: 20px;
    background: #1A1A1A;
    padding: 40px 24px;
    margin-top: -20px;
  }
  .hero-br { display: none; }
  .hero-headline { font-size: clamp(1.5rem, 7vw, 2rem); }
}

/* ── TRUST BAR ──────────────────────────────────────────── */
.fb-trust {
  background: var(--bg-muted);
  padding: 1.25rem 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.fb-trust__text {
  font-family: 'Righteous', cursive;
  font-size: 0.875rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
}
.fb-trust__sep {
  color: var(--gold);
  margin: 0 1rem;
}

/* ── SHORT VERSION / STORY SECTION ─────────────────────── */
.fb-story { background: var(--bg-primary); }
.fb-story__text p {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

/* ── WHAT YOU GET / BENEFITS ────────────────────────────── */
.fb-benefits { background: var(--bg-dark); }
.fb-benefits__header { text-align: center; margin-bottom: 3.5rem; }
.fb-benefits__header h2 .line-white { color: var(--text-light); display: block; }
.fb-benefits__header h2 .line-gold  { color: var(--gold);       display: block; }

.fb-benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.fb-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.fb-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.3); }

.fb-card__illustration {
  border-bottom: 1px dashed rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.2);
  font-family: 'Righteous', cursive;
  font-size: 0.75rem;
  letter-spacing: 2px;
  background: var(--bg-card);
  overflow: hidden;
}
/* Placeholder text (no image) gets fixed height */
.fb-card__illustration:not(:has(img)) { min-height: 200px; display: flex; align-items: center; justify-content: center; }
.fb-card__illustration img { width: 100%; height: auto; display: block; }

.fb-card__body { padding: 1.75rem; }
.fb-card__title {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.75rem;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 0.75rem;
  line-height: 1.1;
}
.fb-card__desc {
  font-size: 1.0625rem;
  color: var(--text-muted-dark);
  line-height: 1.65;
  margin: 0;
}

/* ── FULL-WIDTH ILLUSTRATION ────────────────────────────── */
.fb-feature-illustration {
  background: var(--bg-dark);
  padding: 3rem 0;
}
.fb-feature-illustration__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}
.fb-feature-illustration__img {
  width: 100%;
  border-radius: var(--radius-card);
  border: 2px dashed rgba(255,255,255,0.1);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-family: 'Righteous', cursive;
  font-size: 0.8rem;
  letter-spacing: 2px;
}

/* ── STATS BAR ──────────────────────────────────────────── */
.fb-stats {
  background: var(--teal);
  padding: 3.5rem 0;
}
.fb-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.fb-stats__item {
  text-align: center;
  padding: 1rem 2rem;
}
.fb-stats__item + .fb-stats__item {
  border-left: 1px solid rgba(255,255,255,0.2);
}
.fb-stats__number {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  letter-spacing: 2px;
  line-height: 1;
  display: block;
}
.fb-stats__label {
  font-family: 'Righteous', cursive;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1A1A1A;
  display: block;
  margin-top: 0.35rem;
}

/* ── SOCIAL PROOF ───────────────────────────────────────── */
.fb-proof { background: var(--bg-primary); }
.fb-proof__grid {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 3rem;
  align-items: start;
}

/* Video embed placeholder */
.fb-video-placeholder {
  background: var(--bg-dark);
  border-radius: var(--radius-card);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.fb-video-placeholder__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
  position: relative;
  z-index: 2;
}
.fb-video-placeholder:hover .fb-video-placeholder__play {
  transform: scale(1.1);
  background: var(--teal-dark);
}
.fb-video-placeholder__play::after {
  content: '';
  border: 0 solid transparent;
  border-top-width: 12px;
  border-bottom-width: 12px;
  border-left: 20px solid #fff;
  margin-left: 4px;
}

/* Google Reviews card */
.fb-reviews {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.fb-reviews__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-light);
}
.fb-reviews__logo {
  font-family: 'Righteous', cursive;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--text-dark);
}
.fb-reviews__score {
  font-family: 'Luckiest Guy', cursive;
  font-size: 2rem;
  color: var(--text-dark);
  letter-spacing: 1px;
  margin-left: auto;
}
.fb-reviews__stars { color: var(--mustard); font-size: 1.1rem; letter-spacing: 2px; }
.fb-reviews__count { font-size: 0.8rem; color: var(--text-muted); display: block; }

.fb-review-item { padding: 1rem 0; border-bottom: 1px solid var(--border-light); }
.fb-review-item:last-child { border-bottom: none; padding-bottom: 0; }
.fb-review-item__header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.fb-review-item__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Righteous', cursive;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
}
.fb-review-item__name { font-weight: 600; font-size: 0.875rem; color: var(--text-dark); }
.fb-review-item__stars { color: var(--mustard); font-size: 0.7rem; letter-spacing: 1px; }
.fb-review-item__quote { font-size: 0.85rem; color: var(--text-body); line-height: 1.5; }

/* ── CTA SECTION ────────────────────────────────────────── */
.fb-cta { background: var(--teal); overflow: hidden; position: relative; }
.fb-cta::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  pointer-events: none;
}
.fb-cta__grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: center;
}
.fb-cta__headline { margin-bottom: 1rem; }
.fb-cta__headline .line-white { color: #fff; display: block; }
.fb-cta__headline .line-gold  { color: var(--gold); display: block; }
.fb-cta__body {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.fb-cta__phone {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.75rem;
  letter-spacing: 2px;
  color: #fff;
  display: block;
  margin-top: 1.25rem;
  text-decoration: none;
}
.fb-cta__phone:hover { color: var(--gold); }
.fb-cta__subtext { font-size: 0.875rem; color: rgba(255,255,255,0.65); margin-top: 0.4rem; }

/* ── FOOTER ─────────────────────────────────────────────── */
.fb-footer {
  background: var(--bg-dark);
  padding: 4rem 0 0;
}
.fb-footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}
.fb-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.fb-footer__brand {}
.fb-footer__logo { display: inline-block; margin-bottom: 0.75rem; text-decoration: none; }
.fb-footer__logo-text {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.75rem;
  letter-spacing: 4px;
  color: var(--orange);
  line-height: 1;
}
.fb-footer__tagline {
  font-family: 'Righteous', cursive;
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  margin-bottom: 0.35rem;
}
.fb-footer__location {
  font-size: 0.85rem;
  color: var(--text-muted-dark);
}
.fb-footer__heading {
  font-family: 'Righteous', cursive;
  font-size: 0.9rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}
.fb-footer__links li { margin-bottom: 0.6rem; }
.fb-footer__links a {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  transition: color var(--transition);
}
.fb-footer__links a:hover { color: var(--teal); }
.fb-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.875rem;
  color: var(--text-muted-dark);
  gap: 1rem;
  flex-wrap: wrap;
}
.fb-footer__bottom a { color: var(--text-muted-dark); }
.fb-footer__bottom a:hover { color: var(--teal); }

/* ── FILTER BUTTONS (work + blog) ──────────────────────── */
.fb-filter-btn {
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--border-light);
  border-radius: 20px;
  background: #fff;
  font-family: 'Righteous', cursive;
  font-size: 0.875rem;
  letter-spacing: 1px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all .2s;
}
.fb-filter-btn:hover { border-color: var(--teal); color: var(--teal); }
.fb-filter-btn--active { background: var(--teal); border-color: var(--teal); color: #fff; }

/* ── CONTACT PAGE ───────────────────────────────────────── */
.fb-contact__hero { background: var(--bg-dark); padding: 5rem 0; text-align: center; }
.fb-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.fb-contact__big-phone {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: 3px;
  color: var(--teal);
  text-decoration: none;
  display: block;
  margin: 1.5rem 0 0.5rem;
  line-height: 1;
}
.fb-contact__big-phone:hover { color: var(--teal-dark); }

/* ── FORMS ──────────────────────────────────────────────── */
.fb-form { display: flex; flex-direction: column; gap: 1.25rem; }
.fb-form__group { display: flex; flex-direction: column; gap: 0.4rem; }
.fb-form__label {
  font-family: 'Righteous', cursive;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
}
.fb-form__label--light { color: rgba(255,255,255,0.8); }
.fb-form__input,
.fb-form__textarea {
  padding: 0.875rem 1.125rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.fb-form__input:focus,
.fb-form__textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,157,143,0.15);
}
.fb-form__textarea { resize: vertical; min-height: 120px; }
.fb-form__input::placeholder,
.fb-form__textarea::placeholder { color: #bbb; }
.fb-form__submit {
  align-self: flex-start;
}
.fb-form__status {
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  display: none;
}
.fb-form__status--success { display: block; background: rgba(42,157,143,0.12); color: #1a7168; border: 1px solid rgba(42,157,143,0.3); }
.fb-form__status--error   { display: block; background: rgba(220,60,60,0.08); color: #9b2020; border: 1px solid rgba(220,60,60,0.2); }

/* ── INTERIOR PAGE HERO ─────────────────────────────────── */
.fb-page-hero {
  background: var(--bg-dark);
  padding: 5rem 0 4rem;
  text-align: center;
}
.fb-page-hero h1 { color: var(--text-light); margin-bottom: 1rem; }
.fb-page-hero p  { color: var(--text-muted-dark); font-size: 1.125rem; max-width: 640px; margin: 0 auto; }

/* ── SERVICES GRID ──────────────────────────────────────── */
.fb-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.fb-service-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  display: block;
}
.fb-service-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.fb-service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--bg-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.fb-service-card__title {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.375rem;
  letter-spacing: 1.5px;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.fb-service-card__desc {
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.fb-service-card__link {
  font-family: 'Righteous', cursive;
  font-size: 0.875rem;
  color: var(--teal);
  letter-spacing: 0.5px;
}

/* ── PRICING ────────────────────────────────────────────── */
.fb-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.fb-pricing-grid--two-col {
  grid-template-columns: repeat(2, 1fr);
}
.fb-pricing-card {
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 2.5rem 2rem;
  position: relative;
}
.fb-pricing-card--featured {
  border-color: var(--teal);
  box-shadow: 0 8px 40px rgba(42,157,143,0.15);
}
.fb-pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-family: 'Righteous', cursive;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}
.fb-pricing-card__name {
  font-family: 'Righteous', cursive;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.fb-pricing-card__range {
  font-family: 'Luckiest Guy', cursive;
  font-size: 2.25rem;
  letter-spacing: 1px;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.fb-pricing-card__desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.fb-pricing-card__features { font-size: 0.9rem; color: var(--text-body); }
.fb-pricing-card__features li { padding: 0.4rem 0; border-bottom: 1px solid var(--border-light); padding-left: 1.25rem; position: relative; }
.fb-pricing-card__features li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* ── WORK / PORTFOLIO ────────────────────────────────────── */
.fb-work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.fb-work-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--border-light);
  transition: transform var(--transition), box-shadow var(--transition);
}
.fb-work-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.fb-work-card__thumb {
  aspect-ratio: 4/3;
  background: var(--bg-muted);
  overflow: hidden;
}
.fb-work-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.fb-work-card:hover .fb-work-card__thumb img { transform: scale(1.04); }
.fb-work-card__body { padding: 1.25rem; }
.fb-work-card__cat {
  font-family: 'Righteous', cursive;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.fb-work-card__title { font-family: 'Luckiest Guy', cursive; font-size: 1.1rem; letter-spacing: 1px; color: var(--text-dark); }
.fb-work-card--featured { grid-column: span 2; }
.fb-work-card--featured .fb-work-card__thumb { aspect-ratio: 16/7; }

/* ── BLOG ───────────────────────────────────────────────── */
.fb-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.fb-blog-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.fb-blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0,0,0,0.09); }
.fb-blog-card__thumb { aspect-ratio: 16/9; background: var(--bg-muted); overflow: hidden; }
.fb-blog-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.fb-blog-card__body { padding: 1.5rem; }
.fb-blog-card__cat {
  font-family: 'Righteous', cursive;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 0.5rem;
}
.fb-blog-card__title { font-family: 'Luckiest Guy', cursive; font-size: 1.25rem; letter-spacing: 1px; color: var(--text-dark); margin-bottom: 0.75rem; }
.fb-blog-card__excerpt { font-size: 0.9rem; color: var(--text-body); line-height: 1.6; }

/* ── SCROLL REVEAL ANIMATIONS ───────────────────────────── */
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-up    { transform: translateY(24px); }
.reveal-left.revealed,
.reveal-right.revealed,
.reveal-up.revealed { opacity: 1; transform: none; }

/* ── UTILITIES ──────────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.text-center { text-align: center; }
.text-orange { color: var(--orange-text); }
.text-gold   { color: var(--gold); }
.text-teal   { color: var(--teal); }
.text-white  { color: #fff; }
.text-muted  { color: var(--text-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.d-flex  { display: flex; }
.gap-2   { gap: 1rem; }
.gap-3   { gap: 1.5rem; }
.align-center { align-items: center; }
.flex-wrap { flex-wrap: wrap; }

/* ── RESPONSIVE ─────────────────────────────────────────── */

/* Tablet: 768px–1279px */
@media (max-width: 1279px) {
  :root {
    --side-pad: 2.5rem;
    --section-pad: 5rem;
  }
  .fb-nav__inner { padding: 0 2.5rem; }
  .fb-benefits__grid { gap: 1.25rem; }
  .fb-pricing-grid { grid-template-columns: 1fr 1fr; }
  .fb-pricing-grid .fb-pricing-card:last-child { grid-column: 1 / -1; max-width: 500px; margin: 0 auto; }
  .fb-pricing-grid--two-col { grid-template-columns: repeat(2, 1fr); }
  .fb-pricing-grid--two-col .fb-pricing-card:last-child { grid-column: auto; max-width: none; margin: 0; }
}

/* Tablet portrait: under 1024px */
@media (max-width: 1023px) {
  .fb-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .fb-split--reverse .fb-split__text { order: 1; }
  .fb-split--reverse .fb-split__visual { order: 2; }
  .fb-hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .fb-hero__visual { order: -1; min-height: 260px; }
  .fb-proof__grid { grid-template-columns: 1fr; }
  .fb-cta__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .fb-footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .fb-work-grid { grid-template-columns: repeat(2, 1fr); }
  .fb-work-card--featured { grid-column: span 1; }
}

/* Mobile: under 768px */
@media (max-width: 767px) {
  :root {
    --side-pad: 1.5rem;
    --section-pad: 3.5rem;
    --section-pad-lg: 4.5rem;
  }

  /* Nav */
  .fb-nav__toggle { display: flex; }
  .fb-nav__links {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
    gap: 0.25rem;
    border-bottom: 2px solid var(--border-light);
  }
  .fb-nav__links.is-open { display: flex; }
  .fb-nav__item > a,
  .fb-nav__links > li > a { padding: 0.75rem 0.5rem; font-size: 1rem; }
  .fb-nav__dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding-left: 1rem;
  }
  .fb-nav__dropdown-menu li a { padding: 0.5rem 0.5rem; border-left: none; color: var(--text-muted) !important; }
  .fb-nav__cta { margin-left: 0; text-align: center; justify-content: center; }

  /* Typography */
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }

  /* Hero */
  .fb-hero { padding: 4rem 0; }
  .fb-hero__headline { font-size: 3rem; }
  .fb-hero__actions { flex-direction: column; align-items: flex-start; gap: 1rem; }

  /* Trust */
  .fb-trust__text { font-size: 0.7rem; letter-spacing: 2px; line-height: 1.8; }

  /* Benefits */
  .fb-benefits__grid { grid-template-columns: 1fr; }

  /* Stats */
  .fb-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .fb-stats__item:nth-child(odd) { border-left: none; }
  .fb-stats__item:nth-child(3), .fb-stats__item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.2); }

  /* Footer */
  .fb-footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .fb-footer__bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

  /* Grids */
  .fb-services-grid { grid-template-columns: 1fr; }
  .fb-pricing-grid  { grid-template-columns: 1fr; }
  .fb-pricing-grid--two-col { grid-template-columns: 1fr; }
  .fb-work-grid     { grid-template-columns: 1fr; }
  .fb-blog-grid     { grid-template-columns: 1fr; }
  .fb-contact__grid { grid-template-columns: 1fr; }

  /* CTA */
  .fb-cta__phone { font-size: 2rem; }

  /* Buttons */
  .fb-btn { padding: 0.75rem 1.5rem; }
}

/* ── PRINT ──────────────────────────────────────────────── */
@media print {
  .fb-nav, .fb-footer, .fb-cta, .fb-trust { display: none; }
  body { background: white; color: black; }
}

/* ============================================================
   WEBBART TOOL PAGE COMPATIBILITY LAYER
   Allows scanner, report, review, and packages pages to render
   correctly using the Firebrand design tokens.
   ============================================================ */

/* Container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--side-pad);
}

/* Page hero (used in scanner, ai-leads, web-fixer) */
.page-hero {
  background: var(--bg-dark);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero__bg-image { display: none; } /* hide bg images for now */
.page-hero__gradient { display: none; }
.page-hero__title {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  letter-spacing: 2px;
  color: var(--text-light);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.page-hero__title em { color: var(--gold); font-style: normal; }
.page-hero__breadcrumb {
  font-family: 'Righteous', cursive;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
  display: block;
}
.page-hero__subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
}

/* Sections */
.section { padding: var(--section-pad) 0; }
.section--dark { background: var(--bg-dark); }
.section--teal { background: var(--teal); }
.section--muted { background: var(--bg-muted); }
.section__eyebrow {
  font-family: 'Righteous', cursive;
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 0.75rem;
}
.section__eyebrow--white { color: rgba(255,255,255,0.55); }
.section__title {
  font-family: 'Luckiest Guy', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 2px;
  color: var(--text-dark);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.section--dark .section__title { color: var(--text-light); }
.section__title em { color: var(--gold); font-style: normal; }
.section__subtitle {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 640px;
}
.section--dark .section__subtitle { color: var(--text-muted-dark); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-btn);
  font-family: 'Righteous', cursive;
  font-size: 1rem;
  letter-spacing: 1px;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--teal); color: #fff; }
.btn--primary:hover { background: var(--teal-dark); color: #fff; }
.btn--outline { background: transparent; color: var(--teal); border: 2px solid var(--teal); }
.btn--outline:hover { background: var(--teal); color: #fff; }
.btn--dark { background: var(--bg-dark); color: #fff; }
.btn--dark:hover { background: #111; color: #fff; }
.btn--white { background: #fff; color: var(--teal); }
.btn--white:hover { background: var(--bg-primary); }

/* Form styles (webbart naming) */
.form { display: flex; flex-direction: column; gap: 1.25rem; }
.form__group { display: flex; flex-direction: column; gap: 0.4rem; }
.form__label {
  font-family: 'Righteous', cursive;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dark);
}
.form__input,
.form__textarea,
.form__select {
  padding: 0.875rem 1.125rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--text-dark);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}
.form__input:focus, .form__textarea:focus, .form__select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,157,143,0.15);
}
.form__textarea { resize: vertical; min-height: 120px; }
.form__status { font-size: 0.9rem; padding: 0.75rem 1rem; border-radius: var(--radius-sm); }
.form__status--success { background: rgba(42,157,143,0.1); color: #1a7168; border: 1px solid rgba(42,157,143,0.3); }
.form__status--error   { background: rgba(220,60,60,0.07); color: #9b2020; border: 1px solid rgba(220,60,60,0.2); }

/* Grid layout helpers */
.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Scan report & review page specifics */
.scan-card, .report-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.score-ring { display: flex; align-items: center; justify-content: center; }

/* Concierge section */
.concierge-section { background: var(--bg-dark); }
.concierge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.concierge-cards { display: flex; flex-direction: column; gap: 1.25rem; }
.concierge-card {
  background: var(--bg-card);
  border-radius: var(--radius-card);
  padding: 1.75rem;
  border: 1px solid rgba(255,255,255,0.07);
}
.concierge-card--featured { border-color: var(--teal); }
.concierge-card__title {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.25rem;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.concierge-card__desc { font-size: 0.9375rem; color: var(--text-muted-dark); margin-bottom: 1rem; line-height: 1.6; }
.concierge-card__price { font-family: 'Luckiest Guy', cursive; font-size: 1.5rem; color: #fff; letter-spacing: 1px; }
.concierge-card__note { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.4rem; }

/* Plan cards (packages.php) */
.plan-card {
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-card);
  padding: 2rem;
  position: relative;
}
.plan-card--featured { border-color: var(--teal); box-shadow: 0 8px 40px rgba(42,157,143,0.15); }
.plan-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-family: 'Righteous', cursive;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-card__name {
  font-family: 'Righteous', cursive;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.plan-card__price {
  font-family: 'Luckiest Guy', cursive;
  font-size: 2.25rem;
  letter-spacing: 1px;
  color: var(--text-dark);
  line-height: 1.1;
}
.plan-card__period { font-size: 0.9rem; color: var(--text-muted); }
.plan-card__desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.plan-card__features { font-size: 0.9rem; color: var(--text-body); list-style: none; }
.plan-card__features li { padding: 0.4rem 0; border-bottom: 1px solid var(--border-light); padding-left: 1.25rem; position: relative; }
.plan-card__features li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 700; }

/* Review funnel page */
.review-gate { max-width: 540px; margin: 0 auto; text-align: center; padding: 3rem 1.5rem; }
.star-rating { display: flex; justify-content: center; gap: 0.5rem; margin: 2rem 0; }
.star-btn {
  width: 52px; height: 52px;
  font-size: 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #ddd;
  transition: color 0.15s, transform 0.15s;
  line-height: 1;
}
.star-btn:hover, .star-btn.active { color: var(--mustard); transform: scale(1.15); }

/* AI-leads page specifics */
.math-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; text-align: center; }
.math-stat { padding: 1.5rem; background: var(--bg-card); border-radius: var(--radius-card); }
.math-stat__number { font-family: 'Luckiest Guy', cursive; font-size: 2.5rem; color: var(--gold); letter-spacing: 2px; }
.math-stat__label { font-size: 0.85rem; color: var(--text-muted-dark); margin-top: 0.35rem; }

/* Responsive compat */
@media (max-width: 767px) {
  .concierge-grid { grid-template-columns: 1fr; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .math-grid { grid-template-columns: 1fr; }
}
