/* Button Energy — Site chrome, components, and section primitives */

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 28px;
}
.section {
  padding: 96px 0;
  position: relative;
}
.section-tight { padding: 64px 0; }
.section-light {
  background: var(--paper);
  color: var(--char);
}
.section-light .eyebrow { color: #6b7669; }
.section-deep { background: var(--ink-950); }
.section-elev { background: var(--ink-850); }

/* ============================================================
   TYPE
   ============================================================ */
.h-display {
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0;
}
.h-1 {
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
}
.h-2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0;
}
.h-3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0;
}
.lede {
  font-size: 19px;
  line-height: 1.5;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0;
}

/* ============================================================
   PROMO BAR
   ============================================================ */
.promo-bar {
  background: linear-gradient(90deg, var(--be-green) 0%, #1a4d2c 100%);
  border-bottom: 1px solid rgba(243, 198, 35, 0.15);
  position: relative;
  overflow: hidden;
}
.promo-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(243, 198, 35, 0.08) 1px, transparent 0);
  background-size: 16px 16px;
  pointer-events: none;
}
.promo-bar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 9px 28px;
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.promo-bar-slides {
  flex: 1;
  min-width: 0;
  position: relative;
  min-height: 22px;
}
.promo-bar-slide {
  display: none;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 13px;
  line-height: 1.3;
  color: var(--fg);
  animation: promoSlideIn 0.4s var(--ease);
}
.promo-bar-slide.is-active { display: inline-flex; }
@keyframes promoSlideIn {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.promo-bar-label {
  flex-shrink: 0;
  padding: 3px 8px;
  border: 1px solid rgba(239, 222, 0, 0.35);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--be-gold);
  white-space: nowrap;
}
.promo-bar-text { font-weight: 500; }
.promo-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  color: var(--be-gold);
  font-weight: 600;
  white-space: nowrap;
}
.promo-bar-cta svg { transition: transform 0.2s var(--ease); }
.promo-bar-slide:hover .promo-bar-cta-label { text-decoration: underline; text-underline-offset: 3px; }
.promo-bar-slide:hover .promo-bar-cta svg { transform: translateX(2px); }
.promo-bar-dots { display: flex; gap: 6px; }
.promo-bar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, width 0.2s;
}
.promo-bar-dot:hover { background: rgba(255, 255, 255, 0.45); }
.promo-bar-dot.is-active { background: var(--be-yellow); width: 18px; border-radius: 3px; }
.promo-bar-close {
  background: transparent;
  border: 0;
  color: var(--fg-muted);
  cursor: pointer;
  padding: 4px;
  min-width: 28px;
  min-height: 28px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.promo-bar-close:hover { color: var(--fg); background: rgba(255, 255, 255, 0.06); }

/* Football pick'em slide — the bar becomes a strip of gridiron while it's up. */
.promo-bar { transition: background 0.5s var(--ease); }
.promo-bar::before { transition: opacity 0.5s var(--ease); }
.promo-bar[data-promo-theme="football"] { background: linear-gradient(90deg, #0b3d1f 0%, var(--ink-800) 55%, #0b3d1f 100%); }
.promo-bar[data-promo-theme="football"]::before {
  background-image:
    repeating-linear-gradient(90deg, rgba(244, 241, 230, 0.11) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(90deg, rgba(244, 241, 230, 0.05) 0 1px, transparent 1px 8px);
  background-size: auto, auto 6px;
  background-repeat: repeat, repeat-x;
  background-position: 0 0, 0 100%;
}
.promo-bar-ball { flex-shrink: 0; margin-right: 5px; vertical-align: -3px; color: var(--be-gold); }
.promo-bar-slide[data-promo-theme="football"] .promo-bar-label {
  display: inline-flex; align-items: center;
  border-color: rgba(239, 222, 0, 0.7);
  background: rgba(239, 222, 0, 0.08);
}
.promo-bar-lead { font-family: var(--font-serif); font-style: italic; font-weight: 400; font-size: 16px; line-height: 1; letter-spacing: 0.005em; color: #fff; margin-right: 2px; }

/* ============================================================
   UTILITY BAR
   ============================================================ */
.nav-utility {
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 12px;
}
.nav-utility-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 7px 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--fg-muted);
}
.nav-utility a {
  color: var(--fg);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-feature-settings: "tnum";
}
.nav-utility a:hover { color: var(--be-yellow); }
.nav-utility-sep { color: rgba(255, 255, 255, 0.15); }
.nav-utility-spacer { flex: 1; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 44, 23, 0.78);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-size: 17px;
  line-height: 1;
  color: var(--fg);
}
.nav-mark { width: 28px; height: 28px; display: grid; place-items: center; }
.nav-mark svg { display: block; }
.nav-links {
  display: flex;
  gap: 2px;
  margin-left: 12px;
  flex: 1;
}
.nav-link-wrap { position: relative; }
.nav-links > .nav-link-wrap > a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: var(--r-pill);
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
}
.nav-links > .nav-link-wrap > a:hover { color: var(--fg); background: rgba(255, 255, 255, 0.04); }
.nav-links > .nav-link-wrap > a.is-active { color: var(--fg); background: rgba(255, 255, 255, 0.06); }
.nav-link-caret { margin-left: 4px; opacity: 0.5; }
.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.nav-hamburger {
  display: none;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--fg);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.nav-hamburger:hover { background: rgba(243, 198, 35, 0.1); border-color: var(--be-gold); }

/* ============================================================
   MEGA MENU
   ============================================================ */
.mega-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 280px;
  background: rgba(15, 50, 28, 0.96);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 24px 64px -8px rgba(0, 0, 0, 0.5);
  padding: 18px;
  animation: megaIn 0.18s var(--ease);
  z-index: 60;
  display: none;
}
.mega-panel.is-open { display: block; }
.mega-panel::before {
  /* invisible 12px bridge so cursor can cross from nav link to panel */
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.mega-panel--wide { min-width: 720px; }
@keyframes megaIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mega-panel-grid { display: grid; gap: 18px; }
.mega-panel-grid--2 { grid-template-columns: 1fr 1fr; }
.mega-panel-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
.mega-col {
  padding: 8px;
  border-radius: 10px;
}
.mega-col--highlight {
  background: rgba(243, 198, 35, 0.05);
  border: 1px solid rgba(243, 198, 35, 0.12);
}
.mega-col-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-dim);
  font-weight: 500;
  margin-bottom: 10px;
  padding: 0 6px;
}
.mega-col-items { list-style: none; padding: 0; margin: 0; display: grid; gap: 1px; }
.mega-col-items a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}
.mega-col-items a:hover { background: rgba(255, 255, 255, 0.04); }
.mega-item-title {
  display: block;
  color: var(--fg);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.mega-item-desc {
  display: block;
  color: var(--fg-muted);
  font-size: 12px;
  margin-top: 2px;
  line-height: 1.4;
}
.mega-panel-footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.mega-panel-footer a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--be-yellow);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 6px;
}
.mega-panel-footer a:hover { background: rgba(243, 198, 35, 0.06); }

/* ============================================================
   MOBILE NAV
   ============================================================ */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(6, 31, 16, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: fadeIn 0.2s var(--ease);
  display: none;
}
.mobile-nav-overlay.is-open { display: block; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 90vw);
  background: var(--ink-900);
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  animation: slideIn 0.3s var(--ease);
}
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav-close {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--fg);
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
}
.mobile-nav-close:hover { background: rgba(243, 198, 35, 0.1); border-color: var(--be-gold); }
.mobile-nav-links {
  flex: 1;
  overflow-y: auto;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  font-size: 17px;
  font-weight: 500;
  color: var(--fg-muted);
  border-radius: 10px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav-links a:hover { background: rgba(243, 198, 35, 0.06); color: var(--fg); }
.mobile-nav-links a.is-active { background: rgba(243, 198, 35, 0.1); color: var(--be-gold); }
.mobile-nav-links a svg { opacity: 0.5; }
.mobile-nav-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: var(--r-pill);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary {
  background: var(--be-gold);
  color: var(--ink-950);
  border-color: var(--be-gold);
}
.btn-primary:hover {
  background: #ffd84d;
  border-color: #ffd84d;
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.24); }
.btn-solid {
  background: var(--be-green);
  color: white;
  border-color: var(--be-green);
}
.btn-solid:hover { background: #00a04a; border-color: #00a04a; }
.btn-paper {
  background: rgba(244, 241, 230, 0.96);
  color: var(--ink-900);
  border-color: rgba(244, 241, 230, 0.96);
}
.btn-paper:hover { background: #ffffff; border-color: #ffffff; transform: translateY(-1px); }
.btn-lg { padding: 14px 22px; font-size: 15px; }
.btn-arrow svg { transition: transform 0.2s var(--ease); }
.btn-arrow:hover svg { transform: translateX(2px); }
.btn-block { width: 100%; justify-content: center; }

/* ============================================================
   CARDS / LIFT
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 24px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.lift {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.lift:hover { transform: translateY(-3px); }

/* ============================================================
   TAG / CHIP
   ============================================================ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.tag-pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(243, 198, 35, 0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(243, 198, 35, 0); }
}

/* ============================================================
   LINK REVEAL
   ============================================================ */
.link-reveal {
  position: relative;
  display: inline-block;
  color: var(--be-gold);
}
.link-reveal::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.link-reveal:hover::after { transform: scaleX(1); }

/* ============================================================
   STAT ROW
   ============================================================ */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-row--2 { grid-template-columns: repeat(2, 1fr); }
.stat-row--3 { grid-template-columns: repeat(3, 1fr); }
.stat {
  display: grid;
  gap: 4px;
}
.stat-value {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--fg);
  font-feature-settings: "tnum";
}
.stat-value--accent { color: var(--be-lime); }
.stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  background: var(--ink-950);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand-blurb {
  margin-top: 16px;
  color: var(--fg-muted);
  font-size: 14px;
  max-width: 320px;
  line-height: 1.6;
}
.footer-brand-tags {
  margin-top: 20px;
  display: flex;
  gap: 8px;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin: 0 0 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--fg); font-size: 14px; opacity: 0.86; }
.footer-col a:hover { opacity: 1; color: var(--accent); }
.footer-col li.footer-meta { color: var(--fg-muted); line-height: 1.6; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-dim);
  gap: 24px;
  flex-wrap: wrap;
}
.footer-legal a { color: inherit; text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover { color: var(--fg); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Progressive enhancement: default visible. JS adds .be-js to <html> and only
   then does fade-up start hidden. This guarantees no-JS / screenshot capture
   shows all content even before IntersectionObserver fires. */
.fade-up {
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.be-js .fade-up { opacity: 0; transform: translateY(12px); }
.be-js .fade-up.is-visible { opacity: 1; transform: translateY(0); }

@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}

/* ============================================================
   AUDIENCE SELECTOR (homepage)
   ============================================================ */
.audience-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.audience-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ink-850);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
  min-height: 380px;
  overflow: hidden;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease);
  text-decoration: none;
  color: inherit;
}
.audience-card:hover {
  background: var(--ink-800);
  border-color: var(--be-gold);
  transform: translateY(-4px);
}
.audience-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(239, 222, 0, 0.12), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.audience-card:hover .audience-card-glow { opacity: 1; }
.audience-card-watermark {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle at center, rgba(239, 222, 0, 0.18) 1.5px, transparent 1.8px);
  background-size: 14px 14px;
  opacity: 0.35;
  transition: opacity 0.4s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}
.audience-card:hover .audience-card-watermark { opacity: 0.9; transform: scale(1.05) rotate(8deg); }
.audience-card-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}
.audience-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.3s;
}
.audience-card:hover .audience-tag { color: var(--be-gold); }
.audience-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  display: grid;
  place-items: center;
  background: transparent;
  transition: all 0.3s;
}
.audience-card:hover .audience-icon {
  border-color: var(--be-gold);
  background: rgba(239, 222, 0, 0.12);
}
.audience-icon svg { stroke: var(--fg-muted); transition: stroke 0.3s; }
.audience-card:hover .audience-icon svg { stroke: var(--be-gold); }
.audience-title {
  position: relative;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.05;
}
.audience-desc {
  position: relative;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0 0 24px;
}
.audience-bullets {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 8px;
}
.audience-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.audience-bullets li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--be-gold);
  flex-shrink: 0;
}
.audience-card-foot {
  position: relative;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: border-color 0.3s;
}
.audience-card:hover .audience-card-foot { border-top-color: rgba(239, 222, 0, 0.3); }
.audience-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
  transition: color 0.3s;
}
.audience-card:hover .audience-cta { color: var(--be-gold); }
.audience-card-foot svg {
  stroke: var(--fg-muted);
  transition: stroke 0.3s, transform 0.3s var(--ease);
}
.audience-card:hover .audience-card-foot svg {
  stroke: var(--be-gold);
  transform: translateX(6px);
}

/* ============================================================
   PRICE PULSE STRIP
   ============================================================ */
.price-pulse {
  background: var(--ink-950);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.price-pulse-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 40px;
  align-items: center;
}
.price-pulse-quotes {
  display: flex;
  gap: 32px;
  font-family: var(--font-mono);
  font-size: 13px;
  flex-wrap: wrap;
}
.price-pulse-quotes b { color: var(--be-lime); font-weight: 500; }
.price-pulse-quotes .label { color: var(--fg-muted); }
.price-pulse-quotes .delta { color: var(--fg-dim); }

/* ============================================================
   HEARTH HERO (homepage)
   ============================================================ */
.hero-hearth {
  position: relative;
  min-height: calc(100vh - 60px);
  overflow: hidden;
  background: var(--ink-900);
}
.hero-hearth-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
}
.hero-hearth-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 44, 23, 0.15) 0%, rgba(6, 31, 16, 0.30) 60%, rgba(6, 31, 16, 0.55) 100%),
    radial-gradient(ellipse 80% 60% at 50% 70%, rgba(6, 31, 16, 0.20) 0%, transparent 70%);
}
.hero-hearth-meta {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244, 241, 230, 0.85);
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.hero-hearth-body {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 28px 80px;
}
.hero-hearth-inner {
  max-width: 920px;
  text-align: center;
}
.hero-hearth h1 {
  font-size: clamp(54px, 7.4vw, 112px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 0 0 28px;
  color: var(--be-gold);
}
.hero-hearth h1 .serif { font-weight: 400; }
.hero-hearth-lede {
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: rgba(244, 241, 230, 0.85);
  max-width: 560px;
  margin: 0 auto 40px;
}
.hero-hearth-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero-hearth-ticks {
  display: flex;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(244, 241, 230, 0.78);
}
.hero-hearth-ticks span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   HEADLINE WITH ITALIC (utility)
   ============================================================ */
.headline-italic {
  font-style: italic;
  font-family: var(--font-serif);
  color: var(--be-gold);
  font-weight: 400;
}

/* ============================================================
   SECTION HEAD (eyebrow + h-1 + optional cta)
   ============================================================ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.section-head h2 { max-width: 720px; }
.section-head .eyebrow { margin-bottom: 16px; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq {
  display: grid;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.faq-item { background: var(--ink-900); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  font-size: 22px;
  color: var(--be-gold);
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; }
.faq-body {
  padding: 0 0 24px;
  color: var(--fg-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 760px;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  padding: 24px 0 8px;
}
.breadcrumb a { color: var(--fg-muted); }
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb .sep { color: var(--fg-dim); }
.breadcrumb .current { color: var(--be-gold); }

/* ============================================================
   HOW IT WORKS (4-step light section)
   ============================================================ */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.how-step {
  border-top: 1px solid #c5beb0;
  padding-top: 24px;
  cursor: default;
  transition: border-color 0.3s var(--ease), padding-top 0.3s var(--ease), border-top-width 0.3s var(--ease);
}
.how-step:hover {
  border-top-color: var(--be-green);
  border-top-width: 2px;
  padding-top: 23px;
}
.how-step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--be-green);
  margin-bottom: 32px;
}
.how-step-title {
  color: var(--char);
  margin-bottom: 8px;
}
.how-step-desc {
  font-size: 14px;
  color: #475048;
  line-height: 1.55;
  margin: 0;
}

/* ============================================================
   SERVICE AREA BAND (PA map)
   ============================================================ */
.service-area-band {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}
.service-area-band .stat-row { margin: 24px 0 0; }
.service-area-band .service-area-photo {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.service-area-band .service-area-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   TESTIMONIALS (3-up dark cards)
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  margin: 0;
  padding: 28px;
  background: var(--ink-850);
  border: 1px solid var(--line);
  border-radius: 16px;
  display: grid;
  gap: 24px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.testimonial-card:hover {
  border-color: rgba(239, 222, 0, 0.4);
  background: var(--ink-800);
}
.testimonial-q {
  font-size: 18px;
  line-height: 1.45;
  margin: 0;
  letter-spacing: -0.01em;
}
.testimonial-meta {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-muted);
}
.testimonial-meta strong { color: var(--fg); font-weight: 500; }

/* ============================================================
   CTA BAND (large final CTA section)
   ============================================================ */
.cta-band {
  background: var(--ink-900);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at center, rgba(243, 198, 35, 0.18) 1.4px, transparent 1.6px);
  background-size: 24px 24px;
  opacity: 0.5;
  pointer-events: none;
}
.cta-band-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin: 0 auto 32px;
  max-width: 15ch;
}
.cta-band-lede {
  margin: 0 auto 40px;
  text-align: center;
}
.cta-band-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   2-UP SPLIT (residential hub)
   ============================================================ */
.split-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.split-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ink-850);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 40px;
  min-height: 420px;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
  text-decoration: none;
  color: inherit;
}
.split-card:hover {
  border-color: var(--be-gold);
  transform: translateY(-3px);
}
.split-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--be-gold);
  margin-bottom: 16px;
}
.split-card h3 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 16px;
}
.split-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-muted);
  margin: 0 0 32px;
  max-width: 38ch;
}
.split-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
}
.split-card ul li { display: flex; align-items: center; gap: 10px; }
.split-card ul li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--be-gold);
  flex-shrink: 0;
}
.split-card-foot {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: var(--fg);
}
.split-card:hover .split-card-foot { border-top-color: rgba(239, 222, 0, 0.3); color: var(--be-gold); }

/* ============================================================
   FEATURE TILES (service detail "what you get" grid)
   ============================================================ */
.feature-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-tile {
  background: var(--ink-850);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.feature-tile:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.feature-tile-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(239, 222, 0, 0.08);
  display: grid;
  place-items: center;
  color: var(--be-gold);
  margin-bottom: 20px;
}
.feature-tile h3 { font-size: 18px; font-weight: 500; margin: 0 0 8px; letter-spacing: -0.01em; }
.feature-tile p { font-size: 14px; line-height: 1.55; color: var(--fg-muted); margin: 0; }

/* ============================================================
   FUEL DETAIL TEMPLATE (heating oil / propane)
   ============================================================ */
.fuel-hero {
  position: relative;
  min-height: 620px;
  background: linear-gradient(135deg, #0a2c17 0%, #114224 60%, #1a4d2c 100%);
  overflow: hidden;
  display: grid;
  align-items: center;
}
.fuel-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(243, 198, 35, 0.12) 1px, transparent 0);
  background-size: 22px 22px;
  opacity: 0.6;
  pointer-events: none;
}
.fuel-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 0 80px;
}
.fuel-hero h1 {
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.02;
  color: #fff;
  margin: 24px 0 28px;
}
.fuel-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--be-gold);
}
.fuel-hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(244, 241, 230, 0.78);
  max-width: 520px;
  margin: 0 0 32px;
}
.fuel-hero-trust {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.fuel-hero-trust .stat-num {
  font-size: 28px;
  font-weight: 500;
  color: var(--be-gold);
  font-feature-settings: "tnum";
  letter-spacing: -0.02em;
}
.fuel-hero-trust .stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.tank-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.tank-card-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--be-gold);
  margin-bottom: 18px;
}
.tank-vis {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
}
.tank-svg {
  position: absolute;
  inset: 24px;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
}
.tank-meter {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 16px;
}
.tank-meter .meter-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.tank-meter .meter-val {
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  font-feature-settings: "tnum";
}
.tank-meter .meter-val .pct { color: var(--be-lime); font-size: 22px; }
.tank-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(176, 208, 48, 0.12);
  border: 1px solid rgba(176, 208, 48, 0.3);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--be-lime);
}
.tank-status .pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--be-lime);
  box-shadow: 0 0 0 0 rgba(176, 208, 48, 0.5);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(176, 208, 48, 0.6); }
  50%      { box-shadow: 0 0 0 8px rgba(176, 208, 48, 0); }
}

.benefits-section { background: var(--paper); padding: 120px 0; color: var(--char); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 56px; }
.benefit-card {
  background: #fff;
  border: 1px solid #e0d9c8;
  border-radius: 20px;
  padding: 40px 32px;
  display: grid;
  gap: 16px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: var(--be-green);
  box-shadow: 0 24px 48px -16px rgba(0, 144, 64, 0.2);
}
.benefit-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(0, 144, 64, 0.08);
  color: var(--be-green);
  display: grid;
  place-items: center;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}
.benefit-card:hover .icon-wrap {
  background: var(--be-green);
  color: #fff;
  transform: scale(1.06);
}
.benefit-card h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.01em; color: var(--char); margin: 8px 0 0; }
.benefit-card p { font-size: 15px; line-height: 1.6; color: #4a5249; margin: 0; }

.fuel-photo { margin: 64px 0 0; }
.fuel-photo img { display: block; width: 100%; height: auto; border-radius: 20px; }
.fuel-photo figcaption { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #6b7669; margin-top: 14px; }

.advantage-section { background: var(--char); color: #f4f1e6; padding: 120px 0; }
.advantage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.advantage-list { list-style: none; padding: 0; margin: 40px 0 0; display: grid; gap: 28px; }
.advantage-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.advantage-list li:last-child { border-bottom: none; }
.advantage-list .check-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--be-gold);
  color: var(--char);
  display: grid;
  place-items: center;
}
.advantage-list h4 { font-size: 18px; font-weight: 500; letter-spacing: -0.01em; color: #fff; margin: 0 0 6px; }
.advantage-list p { font-size: 14px; line-height: 1.55; color: rgba(244, 241, 230, 0.7); margin: 0; }
.advantage-side {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 40px;
  position: sticky;
  top: 100px;
}
.advantage-side h3 { font-size: 22px; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 20px; color: #fff; }
.area-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.area-list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: rgba(244, 241, 230, 0.85);
  padding: 8px 0;
}
.area-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--be-lime);
  justify-self: center;
}

.pricing-teaser { background: var(--paper); padding: 100px 0; color: var(--char); }
.pricing-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.price-card {
  background: var(--char);
  color: #fff;
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(243, 198, 35, 0.08) 1px, transparent 0);
  background-size: 18px 18px;
  opacity: 0.7;
  pointer-events: none;
}
.price-card-content { position: relative; }
.price-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--be-gold);
  margin-bottom: 16px;
}
.price-big {
  font-size: 80px;
  font-weight: 300;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--be-lime);
  font-feature-settings: "tnum";
  font-family: var(--font-serif);
  font-style: italic;
}
.price-unit { font-size: 16px; color: rgba(255, 255, 255, 0.6); margin-top: 8px; }
.price-meta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 12px;
}
.price-meta-row { display: flex; justify-content: space-between; font-size: 14px; }
.price-meta-row .k { color: rgba(255, 255, 255, 0.6); }
.price-meta-row .v { color: #fff; font-weight: 500; font-feature-settings: "tnum"; }

.faq-section-fuel { background: #fff; padding: 120px 0; color: var(--char); }
.faq-section-fuel .faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: flex-start; }
.faq-section-fuel .faq-list { display: grid; gap: 4px; }
.faq-section-fuel .faq-item {
  background: #faf8f3;
  border: 1px solid #e8e2d2;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.faq-section-fuel .faq-item:hover { border-color: rgba(0, 144, 64, 0.4); }
.faq-section-fuel summary {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: 0;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--char);
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
  list-style: none;
}
.faq-section-fuel summary::-webkit-details-marker { display: none; }
.faq-section-fuel summary:hover { background: #f3eee2; color: var(--be-green); }
.faq-section-fuel summary svg { transition: transform 0.3s var(--ease); flex-shrink: 0; color: var(--be-green); }
.faq-section-fuel details[open] summary svg { transform: rotate(45deg); }
.faq-section-fuel .faq-a { padding: 0 24px 24px; color: #4a5249; line-height: 1.6; font-size: 15px; }

.final-cta { background: var(--char); color: #f4f1e6; padding: 120px 0; }
.final-cta-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: center; }
.final-cta h2 { font-size: clamp(40px, 5vw, 64px); font-weight: 300; letter-spacing: -0.025em; line-height: 1.05; margin: 0 0 24px; }
.final-cta h2 em { font-family: var(--font-serif); font-style: italic; color: var(--be-gold); }
.final-cta-sub { font-size: 18px; line-height: 1.5; color: rgba(244, 241, 230, 0.75); margin: 0; max-width: 480px; }
.final-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.final-cta-side {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
}
.final-cta-side h3 { font-size: 22px; font-weight: 500; color: #fff; margin: 0 0 12px; letter-spacing: -0.01em; }
.final-cta-side p { font-size: 14px; color: rgba(244, 241, 230, 0.7); line-height: 1.55; margin: 0 0 20px; }

@media (max-width: 1080px) {
  .fuel-hero-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .advantage-grid { grid-template-columns: 1fr; }
  .advantage-side { position: static; }
  .pricing-teaser-grid { grid-template-columns: 1fr; }
  .faq-section-fuel .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .final-cta-inner { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   STICKY FOOTER CTA (mobile)
   ============================================================ */
.sticky-cta { display: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1180px) {
  .nav-links { display: none; }
  .nav-hamburger { display: inline-flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 64px 0; }
  .audience-selector { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .price-pulse-inner { grid-template-columns: 1fr; gap: 16px; }
  .hero-hearth-body { padding: 96px 24px 64px; }
  .how-it-works { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .service-area-band { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .split-2 { grid-template-columns: 1fr; }
  .feature-tiles { grid-template-columns: repeat(2, 1fr); }
  .cta-band { padding: 80px 0; }
}

/* Phones: the bottom tab bar carries Call / Pay Bill / Order Fuel, so the
   utility strip is redundant and the hero must clear the tab bar. */
@media (max-width: 720px) {
  .nav-utility { display: none; }
  .hero-hearth,
  .hero-hearth-body { min-height: calc(100svh - 70px); }
  .hero-hearth-body { padding: 72px 20px 100px; }
  .hero-hearth-meta { top: 20px; right: 20px; }
  .hero-hearth h1 { font-size: clamp(40px, 12vw, 54px); margin-bottom: 22px; }
  .hero-hearth-lede { margin-bottom: 28px; }
  .hero-hearth-ctas { flex-direction: column; align-items: stretch; max-width: 360px; margin: 0 auto 36px; }
  .hero-hearth-ctas .btn { justify-content: center; }
  .hero-hearth-ticks { gap: 12px 28px; }
  .audience-card { padding: 28px 22px; min-height: 0; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .nav-utility-inner { padding: 7px 20px; gap: 8px; }
  .nav-utility .hide-sm { display: none; }
  .nav-inner { padding: 12px 20px; gap: 16px; }
  .promo-bar-inner { padding: 8px 12px 8px 16px; gap: 10px; }
  .promo-bar-slide { gap: 10px; }
  .promo-bar-text { text-wrap: balance; }
  .promo-bar-cta-label,
  .promo-bar-dots { display: none; }
  .footer { padding: 48px 0 28px; margin-top: 56px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 20px; margin-bottom: 40px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-col ul { gap: 8px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 16px; }
  .section-head { margin-bottom: 40px; }
}

/* ============================================================
   Wholesale-fuel page component (template: includes/templates/wholesale-fuel.php)
   Used by /wholesale/on-road-diesel, /off-road-dyed-diesel, /gasoline,
   /hd-5-propane, /2-heating-oil, /fuel-transports.
   ============================================================ */

.wp-hero { position: relative; background: linear-gradient(180deg, #061f10 0%, #0a2c17 60%, #0d361c 100%); overflow: hidden; border-bottom: 1px solid rgba(255,255,255,0.06); }
.wp-hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(243,198,35,0.08) 1px, transparent 0); background-size: 22px 22px; pointer-events: none; mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0)); -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0)); }
.wp-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center; padding-block: 80px 88px; }
.wp-crumb { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-dim); display: flex; align-items: center; gap: 10px; margin-bottom: 28px; }
.wp-crumb a { color: var(--fg-muted); text-decoration: none; transition: color 0.2s; }
.wp-crumb a:hover { color: var(--be-gold); }
.wp-crumb .sep { color: rgba(255,255,255,0.18); }
.wp-crumb .current { color: var(--be-gold); }
.wp-hero h1 { font-size: clamp(44px, 5.6vw, 76px); font-weight: 300; letter-spacing: -0.03em; line-height: 1.02; color: var(--fg); margin: 22px 0 24px; }
.wp-hero h1 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--be-gold); }
.wp-hero-lede { font-size: 19px; line-height: 1.55; color: rgba(244,241,230,0.78); max-width: 540px; margin: 0 0 32px; }
.wp-hero-facts { display: inline-flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.wp-hero-fact { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border: 1px solid rgba(243,198,35,0.18); background: rgba(243,198,35,0.04); border-radius: 999px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--be-gold); text-transform: uppercase; }
.wp-hero-fact .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--be-gold); box-shadow: 0 0 6px rgba(243,198,35,0.6); }
.wp-hero-trust { margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; gap: 40px; flex-wrap: wrap; }
.wp-hero-trust .stat-num { font-size: 28px; font-weight: 500; color: var(--be-gold); letter-spacing: -0.02em; font-feature-settings: "tnum"; line-height: 1; }
.wp-hero-trust .stat-label { font-size: 11px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }
.wp-datasheet { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.1); border-radius: 22px; padding: 28px; backdrop-filter: blur(14px); position: relative; }
.wp-datasheet::before { content: ''; position: absolute; inset: 0; border-radius: 22px; background: radial-gradient(circle at 80% 0%, rgba(243,198,35,0.06), transparent 50%); pointer-events: none; }
.wp-datasheet-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 18px; }
.wp-datasheet-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--be-gold); }
.wp-datasheet-rev { font-family: var(--font-mono); font-size: 10px; color: var(--fg-dim); letter-spacing: 0.08em; }
.wp-gauge { position: relative; aspect-ratio: 1.4 / 1; background: linear-gradient(180deg, rgba(0,0,0,0.25), rgba(0,0,0,0.45)); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; margin-bottom: 22px; overflow: hidden; }
.wp-gauge svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.wp-gauge-readout { position: absolute; left: 0; right: 0; bottom: 24px; text-align: center; }
.wp-gauge-readout .val { font-family: var(--font-serif); font-style: italic; font-size: 56px; line-height: 1; font-weight: 400; color: var(--be-gold); letter-spacing: -0.02em; font-feature-settings: "tnum"; }
.wp-gauge-readout .unit { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 4px; }
.wp-gauge-corner { position: absolute; top: 14px; left: 16px; font-family: var(--font-mono); font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; text-transform: uppercase; }
.wp-gauge-corner-r { position: absolute; top: 14px; right: 16px; font-family: var(--font-mono); font-size: 10px; color: var(--be-lime); letter-spacing: 0.1em; display: inline-flex; align-items: center; gap: 6px; }
.wp-gauge-corner-r .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--be-lime); animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%,100% { box-shadow: 0 0 0 0 rgba(176, 208, 48, 0.6); } 50% { box-shadow: 0 0 0 8px rgba(176, 208, 48, 0); } }
.wp-spec-rows { display: grid; gap: 0; list-style: none; padding: 0; margin: 0; }
.wp-spec-row { display: grid; grid-template-columns: 1fr auto; align-items: baseline; padding: 11px 0; border-bottom: 1px dashed rgba(255,255,255,0.08); font-size: 13px; }
.wp-spec-row:last-child { border-bottom: none; }
.wp-spec-row .k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg-dim); }
.wp-spec-row .v { font-family: var(--font-mono); color: var(--fg); font-feature-settings: "tnum"; letter-spacing: -0.01em; }
.wp-spec-row .v.accent { color: var(--be-gold); font-weight: 500; }

.wp-benefits { background: var(--paper); padding: 120px 0; color: var(--char); }
.wp-benefits-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 64px; }
.wp-benefits-head h2 { font-size: clamp(36px, 4.4vw, 56px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.02; color: var(--char); margin: 16px 0 0; }
.wp-benefits-head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--be-green); }
.wp-benefits-head p { font-size: 17px; line-height: 1.6; color: #4a5249; margin: 0; max-width: 480px; }
.wp-benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.wp-benefit { background: #fff; border: 1px solid #e0d9c8; border-radius: 18px; padding: 32px; display: grid; grid-template-columns: 56px 1fr; gap: 22px; align-items: start; transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease); position: relative; overflow: hidden; }
.wp-benefit::before { content: attr(data-num); position: absolute; top: 22px; right: 26px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: rgba(0,0,0,0.18); }
.wp-benefit:hover { transform: translateY(-4px); border-color: var(--be-green); box-shadow: 0 18px 36px -12px rgba(0,144,64,0.18); }
.wp-benefit-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(0,144,64,0.08); color: var(--be-green); display: grid; place-items: center; transition: all 0.3s var(--ease); }
.wp-benefit:hover .wp-benefit-icon { background: var(--be-green); color: #fff; transform: scale(1.05); }
.wp-benefit h3 { font-size: 20px; font-weight: 500; letter-spacing: -0.01em; color: var(--char); margin: 4px 0 8px; }
.wp-benefit p { font-size: 14.5px; line-height: 1.6; color: #4a5249; margin: 0; }

.wp-tech { background: var(--char); color: #f4f1e6; padding: 120px 0; position: relative; overflow: hidden; }
.wp-tech::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(243,198,35,0.06) 1px, transparent 0); background-size: 22px 22px; pointer-events: none; opacity: 0.5; }
.wp-tech-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.wp-tech-grid h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 300; letter-spacing: -0.025em; line-height: 1.04; color: #fff; margin: 16px 0 24px; }
.wp-tech-grid h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--be-gold); }
.wp-tech-lede { font-size: 17px; line-height: 1.6; color: rgba(244,241,230,0.78); margin: 0 0 24px; max-width: 540px; }
.wp-tech-callout { background: rgba(243,198,35,0.06); border-left: 3px solid var(--be-gold); padding: 20px 24px; border-radius: 0 12px 12px 0; margin: 24px 0 32px; }
.wp-tech-callout p { margin: 0; font-size: 15px; line-height: 1.55; color: #f4f1e6; }
.wp-tech-checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 0; }
.wp-tech-checks li { display: grid; grid-template-columns: 28px 1fr; gap: 14px; align-items: start; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.wp-tech-checks li:last-child { border-bottom: none; }
.wp-tech-checks .check-circle { width: 28px; height: 28px; border-radius: 50%; background: var(--be-gold); color: var(--char); display: grid; place-items: center; margin-top: 2px; }
.wp-tech-checks h4 { font-size: 16px; font-weight: 500; margin: 0 0 4px; color: #fff; letter-spacing: -0.01em; }
.wp-tech-checks p { font-size: 14px; line-height: 1.5; color: rgba(244,241,230,0.65); margin: 0; }
.wp-tech-aside { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.1); border-radius: 22px; padding: 40px; }
.wp-tech-aside-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--be-lime); margin-bottom: 24px; }
.wp-tech-aside h3 { font-size: 24px; font-weight: 500; letter-spacing: -0.01em; margin: 0 0 28px; color: #fff; }

/* Tech aside variants — kind: 'bars' | 'stats' | 'list' */
.wp-emissions { display: grid; gap: 22px; }
.wp-emissions-row .head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.wp-emissions-row .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(244,241,230,0.65); }
.wp-emissions-row .val { font-family: var(--font-serif); font-style: italic; font-size: 22px; color: var(--be-gold); letter-spacing: -0.02em; font-feature-settings: "tnum"; }
.wp-emissions-row .bar { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.06); overflow: hidden; }
.wp-emissions-row .bar > i { display: block; height: 100%; background: linear-gradient(90deg, var(--be-green) 0%, var(--be-gold) 100%); border-radius: 3px; }
.wp-aside-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.wp-aside-stat { padding: 18px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; }
.wp-aside-stat .num { font-family: var(--font-serif); font-style: italic; font-size: 32px; color: var(--be-gold); letter-spacing: -0.02em; line-height: 1; font-feature-settings: "tnum"; }
.wp-aside-stat .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(244,241,230,0.65); margin-top: 8px; }
.wp-aside-stat .sub { font-size: 12px; color: rgba(244,241,230,0.5); margin-top: 4px; line-height: 1.4; }
.wp-aside-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.wp-aside-list li { padding: 14px 16px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; display: grid; grid-template-columns: 1fr auto; align-items: baseline; gap: 14px; }
.wp-aside-list .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(244,241,230,0.78); }
.wp-aside-list .val { font-family: var(--font-mono); color: var(--be-gold); font-feature-settings: "tnum"; font-size: 14px; }
.wp-aside-list .sub { grid-column: 1 / -1; font-size: 12px; color: rgba(244,241,230,0.5); line-height: 1.4; }

.wp-uses { background: var(--paper); padding: 100px 0; }
.wp-uses-head { margin-bottom: 48px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end; }
.wp-uses-head h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 500; letter-spacing: -0.025em; color: var(--char); margin: 16px 0 0; }
.wp-uses-head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--be-green); }
.wp-uses-head .meta { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: #6b7669; text-transform: uppercase; padding-bottom: 8px; }
.wp-uses-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.wp-use { background: #fff; border: 1px solid #e0d9c8; border-radius: 16px; padding: 28px 24px; display: grid; gap: 16px; transition: all 0.3s var(--ease); }
.wp-use:hover { border-color: var(--be-green); transform: translateY(-3px); box-shadow: 0 16px 32px -12px rgba(0,144,64,0.16); }
.wp-use-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(0,144,64,0.08); color: var(--be-green); display: grid; place-items: center; }
.wp-use h3 { font-size: 17px; font-weight: 500; letter-spacing: -0.01em; color: var(--char); margin: 0; }
.wp-use p { font-size: 14px; line-height: 1.55; color: #4a5249; margin: 0; }
.wp-use-volume { margin-top: 6px; display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--be-green); }
.wp-use-volume::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--be-green); }

.wp-ops { background: var(--ink-900); color: var(--fg); padding: 120px 0; }
.wp-ops-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: start; }
.wp-ops-content h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 300; letter-spacing: -0.025em; line-height: 1.04; margin: 16px 0 24px; }
.wp-ops-content h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--be-gold); }
.wp-ops-content p { font-size: 17px; line-height: 1.6; color: rgba(244,241,230,0.78); margin: 0 0 24px; max-width: 460px; }
.wp-ops-meta { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.wp-ops-meta .num { font-family: var(--font-serif); font-style: italic; font-size: 44px; line-height: 1; color: var(--be-gold); letter-spacing: -0.02em; }
.wp-ops-meta .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 6px; }
.wp-ops-steps { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.1); border-radius: 22px; padding: 32px; }
.wp-ops-steps-head { display: flex; justify-content: space-between; align-items: center; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 8px; }
.wp-ops-steps-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--be-gold); }
.wp-ops-step { display: grid; grid-template-columns: 56px 1fr auto; gap: 20px; align-items: center; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.wp-ops-step:last-child { border-bottom: none; }
.wp-ops-step-num { width: 44px; height: 44px; border-radius: 50%; background: rgba(243,198,35,0.1); border: 1px solid rgba(243,198,35,0.3); color: var(--be-gold); display: grid; place-items: center; font-family: var(--font-mono); font-size: 14px; font-weight: 500; letter-spacing: -0.02em; }
.wp-ops-step-body h4 { font-size: 16px; font-weight: 500; margin: 0 0 4px; color: #fff; letter-spacing: -0.01em; }
.wp-ops-step-body p { font-size: 13.5px; line-height: 1.5; color: rgba(244,241,230,0.65); margin: 0; }
.wp-ops-step-time { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--be-lime); white-space: nowrap; }

.wp-pricing { background: var(--paper); padding: 120px 0; }
.wp-pricing-head { text-align: center; margin-bottom: 56px; max-width: 720px; margin-left: auto; margin-right: auto; }
.wp-pricing-head h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 500; letter-spacing: -0.025em; line-height: 1.04; color: var(--char); margin: 16px 0 16px; }
.wp-pricing-head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--be-green); }
.wp-pricing-head p { font-size: 17px; line-height: 1.6; color: #4a5249; margin: 0; }
.wp-pricing-grid { display: grid; gap: 20px; }
.wp-price-card { background: #fff; border: 1px solid #e0d9c8; border-radius: 20px; padding: 36px 32px; transition: all 0.3s var(--ease); display: flex; flex-direction: column; position: relative; }
.wp-price-card.featured { background: var(--char); color: #f4f1e6; border-color: var(--char); }
.wp-price-card:hover { transform: translateY(-4px); box-shadow: 0 24px 48px -16px rgba(13,20,17,0.18); }
.wp-price-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: #6b7669; margin-bottom: 14px; display: flex; justify-content: space-between; align-items: center; }
.wp-price-card.featured .wp-price-eyebrow { color: var(--be-gold); }
.wp-price-eyebrow .badge { background: var(--be-gold); color: var(--char); padding: 3px 8px; border-radius: 4px; font-size: 10px; letter-spacing: 0.06em; }
.wp-price-card h3 { font-size: 24px; font-weight: 500; letter-spacing: -0.01em; color: var(--char); margin: 0 0 10px; }
.wp-price-card.featured h3 { color: #fff; }
.wp-price-card .desc { font-size: 14px; line-height: 1.55; color: #4a5249; margin: 0 0 24px; min-height: 40px; }
.wp-price-card.featured .desc { color: rgba(244,241,230,0.7); }
.wp-price-formula { font-family: var(--font-mono); font-size: 24px; font-weight: 400; color: var(--be-green); letter-spacing: -0.02em; padding: 18px 0; border-top: 1px solid #e0d9c8; border-bottom: 1px solid #e0d9c8; margin-bottom: 20px; font-feature-settings: "tnum"; }
.wp-price-card.featured .wp-price-formula { color: var(--be-gold); border-color: rgba(255,255,255,0.1); }
.wp-price-formula .small { display: block; font-size: 12px; color: var(--fg-dim); letter-spacing: 0.04em; margin-top: 4px; }
.wp-price-card.featured .wp-price-formula .small { color: rgba(255,255,255,0.45); }
.wp-price-features { list-style: none; padding: 0; margin: 0 0 24px; display: grid; gap: 10px; flex: 1; }
.wp-price-features li { display: grid; grid-template-columns: 16px 1fr; gap: 10px; align-items: start; font-size: 13.5px; line-height: 1.5; color: #4a5249; }
.wp-price-card.featured .wp-price-features li { color: rgba(244,241,230,0.78); }
.wp-price-features li::before { content: '✓'; color: var(--be-green); font-weight: 600; line-height: 1.5; }
.wp-price-card.featured .wp-price-features li::before { color: var(--be-gold); }
.wp-price-card .btn { width: 100%; justify-content: center; }
.wp-price-card:not(.featured) .btn-ghost { color: var(--be-green); border-color: rgba(0, 144, 64, 0.35); }
.wp-price-card:not(.featured) .btn-ghost:hover { background: rgba(0, 144, 64, 0.06); border-color: var(--be-green); }

.wp-faq { background: #fff; padding: 120px 0; }
.wp-faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: flex-start; }
.wp-faq-grid h2 { font-size: clamp(32px, 3.6vw, 44px); font-weight: 500; letter-spacing: -0.025em; color: var(--char); margin: 16px 0 0; }
.wp-faq-grid h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--be-green); }
.wp-faq-grid > div p { font-size: 15px; line-height: 1.55; color: #4a5249; margin-top: 16px; max-width: 320px; }
.wp-faq-list { display: grid; gap: 4px; }
.wp-faq-item { background: #faf8f3; border: 1px solid #e8e2d2; border-radius: 12px; overflow: hidden; transition: border-color 0.2s var(--ease); }
.wp-faq-item[open] { border-color: rgba(0,144,64,0.4); }
.wp-faq-item summary { list-style: none; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; font-size: 16px; font-weight: 500; color: var(--char); cursor: pointer; transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.wp-faq-item summary::-webkit-details-marker { display: none; }
.wp-faq-item summary:hover { background: #f3eee2; color: var(--be-green); }
.wp-faq-item summary::after {
  content: ''; width: 16px; height: 16px;
  background: linear-gradient(currentColor, currentColor) center/16px 2px no-repeat,
              linear-gradient(currentColor, currentColor) center/2px 16px no-repeat;
  flex-shrink: 0; transition: transform 0.3s var(--ease); color: var(--be-green);
}
.wp-faq-item[open] summary::after { transform: rotate(45deg); }
.wp-faq-a { padding: 0 24px 24px; color: #4a5249; line-height: 1.6; font-size: 15px; }

.wp-related { background: #faf8f3; border-top: 1px solid #e8e2d2; padding: 48px 0; }
.wp-related-inner { display: flex; flex-wrap: wrap; align-items: baseline; gap: 16px 32px; }
.wp-related-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--be-green); }
.wp-related-links { display: flex; flex-wrap: wrap; gap: 10px 28px; }
.wp-related-links a { font-size: 15px; color: var(--char); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(0,144,64,0.35); transition: text-decoration-color 0.2s var(--ease); }
.wp-related-links a:hover { text-decoration-color: var(--be-green); }

.wp-cta { background: var(--char); color: #f4f1e6; padding: 120px 0; position: relative; overflow: hidden; }
.wp-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 80% 20%, rgba(0,144,64,0.18), transparent 50%), radial-gradient(circle at 20% 80%, rgba(243,198,35,0.08), transparent 60%); pointer-events: none; }
.wp-cta-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: center; }
.wp-cta h2 { font-size: clamp(40px, 5vw, 64px); font-weight: 300; letter-spacing: -0.025em; line-height: 1.05; margin: 0 0 24px; }
.wp-cta h2 em { font-family: var(--font-serif); font-style: italic; color: var(--be-gold); }
.wp-cta-sub { font-size: 18px; line-height: 1.5; color: rgba(244,241,230,0.75); margin: 0; max-width: 480px; }
.wp-cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.wp-cta-aside { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 32px; }
.wp-cta-aside-label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--be-lime); margin-bottom: 14px; }
.wp-cta-aside h3 { font-size: 22px; font-weight: 500; color: #fff; margin: 0 0 8px; letter-spacing: -0.01em; }
.wp-cta-aside .num { font-family: var(--font-serif); font-style: italic; font-size: 38px; color: var(--be-gold); margin: 16px 0 6px; letter-spacing: -0.02em; text-decoration: none; display: block; }
.wp-cta-aside .hours { font-family: var(--font-mono); font-size: 12px; color: rgba(244,241,230,0.55); letter-spacing: 0.06em; margin-bottom: 20px; }

@media (max-width: 1080px) {
  .wp-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .wp-benefits-head { grid-template-columns: 1fr; gap: 24px; }
  .wp-benefits-grid { grid-template-columns: 1fr; }
  .wp-tech-grid { grid-template-columns: 1fr; gap: 48px; }
  .wp-uses-grid { grid-template-columns: 1fr 1fr; }
  .wp-uses-head { grid-template-columns: 1fr; gap: 16px; }
  .wp-ops-grid { grid-template-columns: 1fr; gap: 48px; }
  .wp-pricing-grid { grid-template-columns: 1fr !important; }
  .wp-faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .wp-cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .wp-aside-stats { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .wp-uses-grid { grid-template-columns: 1fr; }
  .wp-benefit { grid-template-columns: 1fr; }
}

/* ============================================================
   Commercial-service page component
   (template: includes/templates/commercial-service.php)
   Used by /on-site-fueling, /mobile-fleet-fueling, /construction-site-fueling.
   Reuses .wp-hero / .wp-benefits / .wp-ops / .wp-faq / .wp-cta from above.
   ============================================================ */

/* Hero spotlight aside (replaces datasheet for services) */
.cs-spotlight { background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.1); border-radius: 22px; padding: 32px; backdrop-filter: blur(14px); position: relative; overflow: hidden; }
.cs-spotlight::before { content: ''; position: absolute; inset: 0; border-radius: 22px; background: radial-gradient(circle at 80% 0%, rgba(176,208,48,0.08), transparent 60%); pointer-events: none; }
.cs-spotlight-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--be-lime); display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; }
.cs-spotlight-eyebrow .pulse { width: 7px; height: 7px; border-radius: 50%; background: var(--be-lime); animation: pulse-dot 2s infinite; }
.cs-spotlight h3 { font-size: 28px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.1; color: #fff; margin: 0 0 14px; }
.cs-spotlight h3 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--be-gold); }
.cs-spotlight p { font-size: 15px; line-height: 1.55; color: rgba(244,241,230,0.78); margin: 0 0 28px; }
.cs-spotlight-stats { display: grid; gap: 0; padding-top: 22px; border-top: 1px solid rgba(255,255,255,0.08); }
.cs-spotlight-stat { display: grid; grid-template-columns: 1fr auto; align-items: baseline; padding: 14px 0; border-bottom: 1px dashed rgba(255,255,255,0.08); }
.cs-spotlight-stat:last-child { border-bottom: none; }
.cs-spotlight-stat .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(244,241,230,0.55); }
.cs-spotlight-stat .val { font-family: var(--font-mono); color: var(--be-gold); font-feature-settings: "tnum"; font-size: 14px; }

/* Asset grid (what we fuel / fill) — paper-section, larger cards than wp-uses */
.cs-assets { background: var(--paper); padding: 120px 0; }
.cs-assets-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 56px; }
.cs-assets-head h2 { font-size: clamp(36px, 4.4vw, 56px); font-weight: 500; letter-spacing: -0.03em; line-height: 1.02; color: var(--char); margin: 16px 0 0; }
.cs-assets-head h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--be-green); }
.cs-assets-head p { font-size: 17px; line-height: 1.6; color: #4a5249; margin: 0; max-width: 480px; }
.cs-assets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cs-asset { background: #fff; border: 1px solid #e0d9c8; border-radius: 18px; padding: 28px; transition: all 0.3s var(--ease); position: relative; }
.cs-asset:hover { border-color: var(--be-green); transform: translateY(-3px); box-shadow: 0 18px 36px -12px rgba(0,144,64,0.16); }
.cs-asset-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(0,144,64,0.08); color: var(--be-green); display: grid; place-items: center; margin-bottom: 18px; transition: all 0.3s var(--ease); }
.cs-asset:hover .cs-asset-icon { background: var(--be-green); color: #fff; transform: scale(1.04); }
.cs-asset h3 { font-size: 18px; font-weight: 500; letter-spacing: -0.01em; color: var(--char); margin: 0 0 8px; }
.cs-asset p { font-size: 14px; line-height: 1.55; color: #4a5249; margin: 0; }

/* Industries pill grid */
.cs-industries { background: var(--char); color: #f4f1e6; padding: 100px 0; position: relative; overflow: hidden; }
.cs-industries::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(243,198,35,0.06) 1px, transparent 0); background-size: 22px 22px; opacity: 0.5; pointer-events: none; }
.cs-industries-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 2fr; gap: 80px; align-items: start; }
.cs-industries-inner h2 { font-size: clamp(32px, 4vw, 48px); font-weight: 300; letter-spacing: -0.025em; line-height: 1.04; color: #fff; margin: 16px 0 18px; }
.cs-industries-inner h2 em { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--be-gold); }
.cs-industries-inner > div:first-child p { font-size: 15px; line-height: 1.6; color: rgba(244,241,230,0.65); margin: 0 0 24px; max-width: 360px; }
.cs-industries-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.cs-industry-tag { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 999px; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: rgba(244,241,230,0.85); transition: all 0.2s var(--ease); }
.cs-industry-tag:hover { background: rgba(243,198,35,0.06); border-color: rgba(243,198,35,0.4); color: var(--be-gold); }
.cs-industry-tag .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--be-lime); }
.cs-fuels-list { margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1); }
.cs-fuels-list .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(244,241,230,0.5); margin-bottom: 12px; }
.cs-fuels-list-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cs-fuel-tag { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; background: rgba(243,198,35,0.04); border: 1px solid rgba(243,198,35,0.18); border-radius: 999px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; color: var(--be-gold); text-transform: uppercase; }
.cs-fuel-tag .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--be-gold); }

/* Single-quote testimonial card */
.cs-testimonial { background: var(--paper); padding: 100px 0; }
.cs-testimonial-card { max-width: 920px; margin: 0 auto; background: #fff; border: 1px solid #e0d9c8; border-radius: 24px; padding: 56px 64px; position: relative; }
.cs-testimonial-card::before { content: '"'; position: absolute; top: 28px; left: 36px; font-family: var(--font-serif); font-style: italic; font-size: 120px; line-height: 1; color: var(--be-gold); opacity: 0.35; }
.cs-testimonial-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--be-green); margin-bottom: 18px; position: relative; z-index: 1; }
.cs-testimonial blockquote { font-family: var(--font-serif); font-style: italic; font-size: clamp(22px, 2.4vw, 28px); line-height: 1.4; color: var(--char); margin: 0 0 28px; max-width: 720px; position: relative; z-index: 1; }
.cs-testimonial-cite { display: flex; align-items: center; gap: 14px; padding-top: 24px; border-top: 1px solid #e8e2d2; }
.cs-testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--be-green); color: #fff; display: grid; place-items: center; font-family: var(--font-mono); font-size: 14px; font-weight: 500; letter-spacing: -0.02em; }
.cs-testimonial-meta .name { font-size: 15px; font-weight: 500; color: var(--char); letter-spacing: -0.01em; }
.cs-testimonial-meta .role { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.04em; color: #6b7669; margin-top: 2px; }

@media (max-width: 1080px) {
  .cs-assets-head { grid-template-columns: 1fr; gap: 24px; }
  .cs-assets-grid { grid-template-columns: 1fr 1fr; }
  .cs-industries-inner { grid-template-columns: 1fr; gap: 40px; }
  .cs-testimonial-card { padding: 40px 32px; }
}
@media (max-width: 720px) {
  .cs-assets-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Mobile tab bar — fixed bottom nav, ≤720px only.
   App-style quick access. Coexists with mobile-nav.php drawer.
   Designed for 30+/70s+ users: large tap targets, readable
   labels, triple-redundant active state (icon + label + bg).
============================================================ */
.mobile-tabbar {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 80;
  align-items: stretch;
  justify-content: space-around;
  gap: 4px;
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  background: rgba(13, 54, 28, 0.86);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.32);
}
.mobile-tabbar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.06) 22%,
    rgba(239, 222, 0, 0.22) 50%,
    rgba(255, 255, 255, 0.06) 78%,
    transparent 100%
  );
  pointer-events: none;
}
.mobile-tabbar-item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 56px;
  padding: 8px 4px;
  border-radius: 14px;
  color: var(--fg-muted);
  text-decoration: none;
  transition:
    color 200ms var(--ease-out),
    background-color 200ms var(--ease-out),
    transform 120ms var(--ease-out);
  -webkit-tap-highlight-color: transparent;
}
.mobile-tabbar-item:active {
  transform: scale(0.94);
  background-color: rgba(255, 255, 255, 0.05);
}
.mobile-tabbar-item.is-active {
  color: var(--be-gold);
  background-color: rgba(239, 222, 0, 0.1);
}
.mobile-tabbar-icon {
  display: block;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}
.mobile-tabbar-item.is-active .mobile-tabbar-icon { stroke-width: 2; }
.mobile-tabbar-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.01em;
}
.mobile-tabbar-item.is-active .mobile-tabbar-label { font-weight: 600; }

@media (max-width: 720px) {
  .mobile-tabbar { display: flex; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom)); }
}
@media (prefers-reduced-motion: reduce) {
  .mobile-tabbar-item,
  .mobile-tabbar-item:active {
    transition: none;
    transform: none;
  }
}
