/* ==========================================================================
   SHARED COMPONENTS
   Reusable sections used across all WattKarma page types.
   Load after tokens.css, before page-specific stylesheets.

   Table of Contents:
   1.  Legacy governance tokens
   2.  Header utilities
   3.  Phone pill button
   4.  Floating phone button
   5.  Mobile responsive — header, phone
   7.  Section wrappers
   8.  Section inner containers
   9.  Section label + typography
   10. Video hero (.sp-hero)
   11. Trust bar (.biz-trust-bar)
   12. How It Works step visuals (.wk-step-visual)
   13. Green checklist (.biz-list)
   14. FAQ accordion (.biz-faq-*)
   15. Support card (.biz-support-*)
   16. Related links grid (.biz-links-grid)
   17. Blue CTA — business pages (.biz-cta)
   18. Blue CTA — supplier/industry pages (.sp-section-blue)
   19. Help card (.sp-help-card)
   20. Responsive — shared sections
   ========================================================================== */

/* ==========================================================================
   GLOBAL — Prevent horizontal overflow on all devices
   Use overflow-x:clip on html (not hidden on body) so position:sticky
   still works on descendant elements like the hero scroll-scrub stage.
   ========================================================================== */

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   HEADER STYLES
   ========================================================================== */

.header-nav-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.site-header .nav {
  padding-right: 0;
}

.header-mobile-toggle {
  width: 40px;
  height: 40px;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.header-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--wk-gray-900);
  transition: all 0.3s ease;
}

/* ==========================================================================
   3. PHONE PILL BUTTON
   ========================================================================== */

.phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--wk-blue, #3b82f6);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  margin-right: 24px;
  transition: background 0.2s ease;
  white-space: nowrap;
}

.phone-pill:hover {
  background: var(--wk-blue-500);
}

.phone-pill svg {
  width: 18px;
  height: 18px;
}

/* ==========================================================================
   FLOATING PHONE BUTTON
   ========================================================================== */

.floating-phone-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 9999px;
  background: linear-gradient(180deg, #60a5fa, var(--wk-blue, #3b82f6));
  color: #fff;
  text-decoration: none;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(16, 24, 39, 0.18);
  z-index: 1000;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    filter 0.18s ease,
    background 0.18s ease;
}

.floating-phone-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(16, 24, 39, 0.24);
  filter: saturate(1.05);
}

.floating-phone-button:active {
  transform: translateY(0);
  filter: saturate(1);
}

.floating-phone-button:focus {
  outline: 0;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.9),
    0 0 0 6px rgba(59, 130, 246, 0.45),
    0 14px 32px rgba(16, 24, 39, 0.24);
}

.floating-phone-button svg {
  width: 30px;
  height: 30px;
  display: block;
  color: currentColor;
}

/* ==========================================================================
   MOBILE RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .header-nav-wrapper {
    display: none;
  }
  .header-mobile-toggle {
    display: flex;
  }
  .phone-pill {
    display: none;
  }
}

@media (max-width: 768px) {
  .floating-phone-button {
    bottom: 15px;
    right: 15px;
    width: 56px;
    height: 56px;
  }

  .floating-phone-button svg {
    width: 26px;
    height: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .floating-phone-button {
    transition: none;
  }
  .header-mobile-toggle span {
    transition: none;
  }
  .phone-pill {
    transition: none;
  }
}


/* ══════════════════════════════════════════════════════════════════════════
   CANONICAL SECTION LIBRARY
   The 12 reusable section types used across all WattKarma page types.
   ══════════════════════════════════════════════════════════════════════════ */

/* ==========================================================================
   7. SECTION WRAPPERS
   Background + padding containers for page sections.
   ========================================================================== */

.biz-section {
  padding: 64px 0;
}
.biz-section--white { background: var(--wk-white); }
.biz-section--gray {
  background: var(--wk-bg-section-gray);
  border-top: 1px solid var(--wk-border-section);
  border-bottom: 1px solid var(--wk-border-section);
}
.biz-section--cream {
  background: var(--wk-cream);
}
/* Text-heavy single-column sections: cream-dominant + subtle blue hint at top
   Use for long-form content like "Why WattKarma", FAQs, articles. */
.biz-section--cream-glow {
  background:
    radial-gradient(ellipse 1600px 700px at 50% 0%, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0) 65%),
    var(--wk-cream);
}

/* Two-column feature sections: hero-style blue fade anchored to content side
   Use for sections with an image on one side + headline/copy on the other.
   Add .biz-section--hero-glow--right to anchor the glow on the right. */
.biz-section--hero-glow {
  background:
    radial-gradient(ellipse 1400px 900px at 22% 50%, rgba(37, 99, 235, 0.18) 0%, rgba(37, 99, 235, 0) 55%),
    radial-gradient(ellipse 900px 600px at 18% 50%, rgba(37, 99, 235, 0.10) 0%, rgba(37, 99, 235, 0) 60%),
    var(--wk-cream);
}
.biz-section--hero-glow.biz-section--hero-glow--right {
  background:
    radial-gradient(ellipse 1400px 900px at 78% 50%, rgba(37, 99, 235, 0.18) 0%, rgba(37, 99, 235, 0) 55%),
    radial-gradient(ellipse 900px 600px at 82% 50%, rgba(37, 99, 235, 0.10) 0%, rgba(37, 99, 235, 0) 60%),
    var(--wk-cream);
}

/* ──────────────────────────────────────────────────────────────────────────
   PAGE-FLOW GLOW SYSTEM
   One seamless gradient layer behind the entire page. Blue glows zig-zag
   diagonally down the page body — sections are just content on top.

   HOW IT WORKS:
     body.wk-glow gets a ::before with a repeating diagonal gradient
     that covers the full page height. Cream-background sections are
     transparent to let it show through. Dark sections (CTAs, navy cards)
     naturally cover it with their own opaque backgrounds.

   USAGE:
     1. Add class="wk-glow" to <body>
     2. Cream sections just use background: var(--wk-cream)
     3. That's it — no per-section glow classes needed
   ────────────────────────────────────────────────────────────────────────── */
/* ──────────────────────────────────────────────────────────────────────────
   PAGE-FLOW GLOW SYSTEM
   One seamless gradient on <body> — blue glows zig-zag diagonally down
   the full page. Cream sections are transparent so it shows through.
   Dark sections (CTAs, navy cards) cover it with their own backgrounds.

   USAGE:
     1. Add class="wk-glow" to <body>
     2. Use glow-a / glow-b on cream sections (makes them transparent)
   ────────────────────────────────────────────────────────────────────────── */
body.wk-glow {
  background-color: var(--wk-cream);
  background-image:
    radial-gradient(ellipse 900px 900px at 5% 6%, rgba(37, 99, 235, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 900px 900px at 92% 13%, rgba(37, 99, 235, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 900px 900px at 5% 22%, rgba(37, 99, 235, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 900px 900px at 92% 32%, rgba(37, 99, 235, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 900px 900px at 5% 43%, rgba(37, 99, 235, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 900px 900px at 92% 54%, rgba(37, 99, 235, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 900px 900px at 5% 64%, rgba(37, 99, 235, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 900px 900px at 92% 72%, rgba(37, 99, 235, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 900px 900px at 5% 82%, rgba(37, 99, 235, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 900px 900px at 92% 92%, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
}

.biz-section--glow-a,
.biz-section--glow-b {
  background: transparent !important;
}

/* Supplier page section variants */
.sp-section {
  padding: 56px 0;
}
.sp-section-blue {
  background: linear-gradient(135deg, var(--wk-blue-600) 0%, var(--wk-blue-500) 50%, #4338ca 100%);
}
.sp-section-light {
  background: linear-gradient(to bottom, #f8fafc, var(--wk-white));
}
.sp-section-slate {
  background: var(--wk-bg-slate-50);
}
.sp-section-white {
  background: var(--wk-white);
}

/* Blue section text overrides */
.sp-section-blue .wk-label {
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: .16em;
}
.sp-section-blue .wk-section-heading {
  color: var(--wk-white);
  font-weight: 400;
}
.sp-section-blue .wk-section-sub {
  color: rgba(255, 255, 255, 0.85);
  max-width: none;
  margin-bottom: 36px;
}

.sp-section-light .wk-section-heading,
.sp-section-white .wk-section-heading,
.sp-section-slate .wk-section-heading {
  font-weight: 400;
}

/* ==========================================================================
   8. SECTION INNER CONTAINERS
   Max-width + centered content wrappers.
   ========================================================================== */

.biz-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

.biz-inner--wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.sp-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   9. SECTION LABEL + TYPOGRAPHY DEFAULTS
   ========================================================================== */

.biz-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wk-blue-500);
  margin-bottom: 10px;
}

.biz-section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  color: var(--wk-near-black);
  margin: 0 0 16px;
  line-height: 1.25;
}

/* Bold variant — used for state section headings on areas-served hub */
.biz-section h2.biz-state-heading {
  font-weight: 700;
  margin: 4px 0 24px;
}

/* Generic centered page title + subtitle — used for FAQ-style hero sections */
.wk-page-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--wk-near-black);
  margin: 0 0 12px;
  line-height: 1.2;
}
.wk-page-subtitle {
  font-size: 16px;
  color: var(--wk-gray-600);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.biz-section p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--wk-gray-600);
  margin: 0 0 16px;
}

.biz-section p:last-child { margin-bottom: 0; }

/* ==========================================================================
   10. VIDEO HERO (.sp-hero)
   Full-bleed background video with glass-card overlay.
   Used by: industry pages, supplier pages, hub pages.
   ========================================================================== */

.sp-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #060e1d;
}

.sp-hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 0;
}

.sp-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(4, 10, 26, 0.72) 0%, rgba(4, 10, 26, 0.82) 100%);
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.sp-hero.sp-hero-revealed .sp-hero-overlay {
  opacity: 1;
}

.sp-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px 20px 40px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.sp-hero.sp-hero-revealed .sp-hero-inner {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1024px) {
  .sp-hero-inner {
    padding-top: 56px;
    padding-bottom: 60px;
  }
}

.sp-hero-glass {
  max-width: 560px;
  min-height: 0;
  padding: 28px 28px 30px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.sp-hero-glass .sp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--wk-white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.sp-hero-glass .sp-hero-badge svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.sp-hero-glass h1 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--wk-white);
  margin: 0 0 12px;
}

.sp-hero-glass .sp-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0 0 18px;
  max-width: 52ch;
}

/* ---- Shared supplier/industry text + rate card ---- */
.sp-intro-text {
  font-size: 15px;
  color: var(--wk-gray-600);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ---- Rate card + ZIP search row ---- */
.sp-rate-card {
  background: var(--wk-white);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .10);
  padding: 24px;
  margin-bottom: 16px;
}

.sp-rate-card h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 19px;
  font-weight: 500;
  color: var(--wk-near-black);
  margin: 0 0 14px;
}

.sp-zip-row {
  display: flex;
  gap: 10px;
}

.sp-zip-row input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--wk-border-slate);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 15px;
  outline: none;
  transition: .15s;
}

.sp-zip-row input:focus {
  border-color: var(--wk-blue-500);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .18);
}

.sp-go-btn {
  background: var(--wk-blue-500);
  border: none;
  border-radius: 10px;
  color: var(--wk-white);
  padding: 10px 22px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: .15s ease;
}

.sp-go-btn:hover {
  background: var(--wk-blue-600);
  transform: translateY(-1px);
}

.sp-rate-hint {
  margin: 10px 0 0;
  font-size: 11px;
  color: var(--wk-gray-400);
}

/* Hero glass — rate card overrides */
.sp-hero-glass .sp-rate-card {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 14px;
}
.sp-hero-glass .sp-rate-card h2,
.sp-hero-glass .sp-rate-card h3 {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--wk-white);
  margin: 0 0 10px;
}
.sp-hero-glass .sp-zip-row input {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.4);
}
.sp-hero-glass .zip-radios { margin-top: 10px; }
.sp-hero-glass .zip-radios label { color: rgba(255, 255, 255, 0.90); }
.sp-hero-glass .zip-radios input[type="radio"] { accent-color: #FACC15; }
.sp-hero-glass .sp-rate-hint {
  color: rgba(255, 255, 255, 0.8);
}

/* Hero glass — trust stats */
.sp-hero-glass .sp-trust-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}
.sp-hero-glass .sp-trust-stat {
  text-align: center;
  padding: 12px 10px;
}
.sp-hero-glass .sp-trust-stat + .sp-trust-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}
.sp-hero-glass .sp-trust-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--wk-white);
  line-height: 1;
}
.sp-hero-glass .sp-trust-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}
.sp-hero-glass .sp-trust-label a {
  color: rgba(255, 255, 255, 0.95);
}
.sp-hero-glass .sp-trust-label a:hover {
  color: var(--wk-white);
}

/* ==========================================================================
   11. TRUST BAR (.biz-trust-bar)
   Horizontal stat strip — used below heroes on industry pages.
   ========================================================================== */

.biz-trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-top: 1px solid var(--wk-border-section);
  border-bottom: 1px solid var(--wk-border-section);
  padding: 0 24px;
}
.biz-trust-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  border-right: 1px solid var(--wk-border-section);
}
.biz-trust-stat:last-child { border-right: none; }
.biz-trust-num {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--wk-text-charcoal);
  white-space: nowrap;
}
.biz-trust-label {
  font-size: 13px;
  color: var(--wk-gray-500);
  line-height: 1.3;
}

/* ==========================================================================
   12. HOW IT WORKS — Step Visuals (.wk-step-visual)
   Video thumbnails in the How It Works section.
   Used by: homepage, city pages, industry pages.
   ========================================================================== */

.wk-step-visual {
  height: 200px;
  overflow: hidden;
  background: #e8f0fb;
}
.wk-step-visual--video {
  cursor: pointer;
}
.wk-step-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wk-how-it-works.biz-section--gray {
  background: var(--wk-bg-section-gray);
}

/* ==========================================================================
   13. GREEN CHECKLIST (.biz-list)
   Bullet list with green check circles.
   Used by: business pages, industry pages.
   ========================================================================== */

.biz-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.biz-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--wk-gray-700);
}

.biz-list-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--wk-green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.biz-list-check svg { display: block; }

/* ==========================================================================
   14. FAQ ACCORDION (.biz-faq-*)
   Expandable question/answer section.
   Used by: industry pages, FAQ page, business pages.
   ========================================================================== */

.biz-faq-list {
  margin-top: 32px;
  border-top: 1px solid var(--wk-border-section);
}
.biz-faq-item {
  border-bottom: 1px solid var(--wk-border-section);
}
.biz-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--wk-text-charcoal);
}
.biz-faq-chevron {
  flex-shrink: 0;
  color: var(--wk-blue-500);
  transition: transform 0.25s ease;
}
.biz-faq-item.open .biz-faq-chevron { transform: rotate(180deg); }
.biz-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.biz-faq-answer-inner {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--wk-gray-600);
  line-height: 1.7;
}

/* ==========================================================================
   15. SUPPORT CARD (.biz-support-*)
   Contact/help callout with phone number.
   Used by: industry pages, business pages.
   ========================================================================== */

.biz-support-card {
  display: flex;
  gap: 32px;
  align-items: center;
  background: var(--wk-white);
  border: 1px solid var(--wk-border-section);
  border-radius: 16px;
  padding: 28px 32px;
  margin-top: 32px;
}
.biz-support-text { flex: 1; }
.biz-support-title {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--wk-text-charcoal);
  margin-bottom: 6px;
}
.biz-support-desc {
  font-size: 14px;
  color: var(--wk-gray-500);
  line-height: 1.6;
}
.biz-support-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.biz-support-phone {
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--wk-text-charcoal);
  text-decoration: none;
  white-space: nowrap;
}
.biz-support-phone:hover { color: var(--wk-blue-500); }
.biz-support-hours {
  font-size: 12px;
  color: var(--wk-gray-400);
}

/* ==========================================================================
   16. RELATED LINKS GRID (.biz-links-grid)
   Flowing text-link list for related pages.
   Used by: industry pages, city pages, hub pages.
   ========================================================================== */

.biz-links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 32px;
  margin-top: 20px;
}

.biz-link-card {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 0;
  background: none;
  border: none;
  border-radius: 0;
  text-decoration: none;
  color: var(--wk-blue-500);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  transition: color 0.15s ease;
}

.biz-link-card::after {
  content: '\2192';
  font-size: 12px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.biz-link-card:hover {
  color: var(--wk-blue-600);
  box-shadow: none;
}

.biz-link-card:hover::after {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   17. BLUE CTA BANNER — Business Pages (.biz-cta)
   Solid blue conversion section with ZIP form.
   Used by: business pages (small-biz, C&I, multi-loc).
   ========================================================================== */

.biz-cta {
  background: var(--wk-blue-slate);
  padding: 80px 0;
  text-align: center;
}

.biz-cta-inner {
  max-width: 540px;
  margin: 0 auto;
  padding: 0 24px;
}

.biz-cta h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 400;
  color: var(--wk-white);
  margin: 0 0 12px;
  line-height: 1.2;
}

.biz-cta p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 32px;
}

.biz-cta .zip-form { margin: 0 auto; }

.biz-cta-or {
  margin: 16px 0 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}

.biz-cta-phone {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}

.biz-cta-phone a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-weight: 600;
}

.biz-cta-phone a:hover { color: var(--wk-white); }

/* ==========================================================================
   18. BLUE CTA — Supplier/Industry Pages (.sp-section-blue)
   Gradient blue CTA with white + outline buttons.
   Used by: industry pages, supplier pages.
   ========================================================================== */

.sp-cta-inner {
  text-align: center;
  padding: 8px 0;
}

.sp-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.sp-cta-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wk-white);
  color: var(--wk-blue-500);
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: .15s;
  text-decoration: none;
}

.sp-cta-btn-white:hover {
  background: #eff6ff;
}

.sp-cta-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--wk-white);
  border: 2px solid var(--wk-white);
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: .15s;
  text-decoration: none;
}

.sp-cta-btn-outline:hover {
  background: rgba(255, 255, 255, .12);
}

.sp-cta-tools-link {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, .55);
}
.sp-cta-tools-link a {
  color: rgba(255, 255, 255, .8);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.sp-cta-tools-link a:hover {
  color: var(--wk-white);
}

/* ==========================================================================
   19. HELP CARD (.sp-help-card)
   Centered support/contact card with action buttons.
   Used by: industry pages, supplier pages.
   ========================================================================== */

.sp-help-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--wk-white);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, .09);
}

.sp-help-card .wk-section-heading {
  font-weight: 400;
  color: var(--wk-text-charcoal);
}

.sp-help-card .wk-section-sub {
  font-size: 15px;
  color: #475569;
  margin: 0 auto 28px;
  max-width: 52ch;
}

.sp-help-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.sp-help-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wk-blue-500);
  color: var(--wk-white);
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: .15s;
}

.sp-help-btn-primary:hover {
  background: var(--wk-blue-600);
}

.sp-help-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wk-white);
  color: var(--wk-gray-700);
  border: 1px solid var(--wk-border-slate);
  border-radius: 10px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: .15s;
}

.sp-help-btn-outline:hover {
  background: #f8fafc;
}

/* ==========================================================================
   20. RESPONSIVE — Shared Sections
   ========================================================================== */

@media (max-width: 900px) {
  .sp-hero {
    height: auto;
    min-height: 420px;
  }
  .sp-hero-glass {
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .biz-section { padding: 48px 0; }
  .biz-cta { padding: 60px 0; }
}

@media (max-width: 600px) {
  .sp-hero { min-height: 320px; }
  .biz-trust-bar { flex-direction: column; }
  .biz-trust-stat { border-right: none; border-bottom: 1px solid var(--wk-border-section); width: 100%; }
  .biz-support-card { flex-direction: column; }
  .biz-support-actions { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  .sp-hero-overlay { transition: none; }
  .sp-hero-inner { transition: none; }
}

/* ==========================================================================
   MAIN CONTENT FOCUS TARGET
   The #main-content anchor after each <header> is the landing target for
   Cayden's JS-injected skip link (.wk-skip-link in mega-menu.css / mega-menu.js).
   This rule prevents a visible outline when keyboard focus lands on the wrapper.
   ========================================================================== */
#main-content:focus {
  outline: none;
}

/* ==========================================================================
   NOTICE / WARNING COMPONENT
   Used on partial-deregulation city pages (Austin, Denton, San Antonio, etc.)
   to warn users about mixed-utility coverage. Accessible amber/orange palette.
   ========================================================================== */
.wk-notice-warning {
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  padding: 24px 20px;
  max-width: 900px;
  margin: 32px auto;
  border-radius: 0 8px 8px 0;
}
.wk-notice-warning__title {
  margin: 0 0 8px;
  font-weight: 700;
  color: #92400e;
  font-size: 1.05rem;
  line-height: 1.4;
}
.wk-notice-warning p {
  margin: 0 0 12px;
  color: #78350f;
  line-height: 1.6;
}
.wk-notice-warning p:last-child {
  margin-bottom: 0;
}
