/* ==============================================
   GRID SHIELD GENERATOR SERVICES LLC
   styles.css — Full site stylesheet
   ============================================== */

/* -----------------------------------------------
   1. CUSTOM PROPERTIES
----------------------------------------------- */
:root {
  /* Colors */
  --clr-black:        #000000;
  --clr-dark-1:       #060606;
  --clr-dark-2:       #0e0e0e;
  --clr-dark-3:       #141414;
  --clr-dark-4:       #1a1a1a;
  --clr-dark-5:       #222222;
  --clr-charcoal:     #2b2b2b;
  --clr-charcoal-lt:  #3a3a3a;
  --clr-gray-1:       #4a4a4a;
  --clr-gray-2:       #666666;
  --clr-gray-3:       #888888;
  --clr-gray-4:       #aaaaaa;
  --clr-gray-5:       #cccccc;
  --clr-white:        #ffffff;
  --clr-off-white:    #f4f4f4;
  --clr-light:        #e8e8e8;
  --clr-orange:       #f57c00;
  --clr-orange-lt:    #ff9800;
  --clr-orange-dk:    #e65100;
  --clr-orange-glow:  rgba(245, 124, 0, 0.12);
  --clr-orange-dim:   rgba(245, 124, 0, 0.06);

  /* Typography */
  --font-headline: 'Oswald', 'Impact', 'Arial Narrow', sans-serif;
  --font-body:     'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --section-py:    96px;
  --section-py-sm: 64px;

  /* Layout */
  --container-max: 1200px;
  --container-px:  24px;

  /* Transitions */
  --transition: 0.22s ease;

  /* Border radius */
  --radius: 5px;
  --radius-lg: 10px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--clr-white);
  background-color: var(--clr-dark-2);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  box-shadow:
    inset 120px 0 100px -60px rgba(0,0,0,0.75),
    inset -120px 0 100px -60px rgba(0,0,0,0.75);
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea, button {
  font-family: var(--font-body);
}

/* -----------------------------------------------
   3. CONTAINER
----------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* -----------------------------------------------
   4. TYPOGRAPHY
----------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-headline);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.3px;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1rem; letter-spacing: 1px; text-transform: uppercase; }

p {
  line-height: 1.75;
  color: var(--clr-gray-4);
}

strong {
  color: var(--clr-white);
  font-weight: 600;
}

/* -----------------------------------------------
   5. SECTION LABEL
----------------------------------------------- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 14px;
  text-shadow: 0 0 16px rgba(245,124,0,0.55), 0 0 32px rgba(245,124,0,0.25);
}

/* -----------------------------------------------
   6. SECTION HEADER
----------------------------------------------- */
.section-header {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--clr-gray-4);
}

.section-header--light h2 {
  color: var(--clr-white);
}

/* -----------------------------------------------
   7. BUTTONS
----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.4px;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform 0.15s ease,
              box-shadow var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

/* Sizes */
.btn-sm {
  font-size: 0.8rem;
  padding: 9px 18px;
}

.btn-lg {
  font-size: 0.95rem;
  padding: 15px 32px;
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Primary */
.btn-primary {
  background: linear-gradient(135deg, var(--clr-orange-dk) 0%, var(--clr-orange) 50%, var(--clr-orange-lt) 100%);
  background-size: 200% 100%;
  background-position: right center;
  color: var(--clr-white);
  border: 2px solid var(--clr-orange);
  box-shadow: 0 2px 12px rgba(245,124,0,0.2);
  transition: background-position 0.4s ease, box-shadow var(--transition),
              transform 0.15s ease, border-color var(--transition);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-position: left center;
  border-color: var(--clr-orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245,124,0,0.5), 0 0 40px rgba(245,124,0,0.2);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

/* Outline */
.btn-outline {
  background: transparent;
  color: var(--clr-white);
  border: 2px solid rgba(255,255,255,0.35);
  box-shadow: inset 0 0 0 0 rgba(255,255,255,0);
  transition: border-color var(--transition), color var(--transition),
              box-shadow var(--transition), transform 0.15s ease;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: rgba(255,255,255,0.85);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(255,255,255,0.12), 0 0 0 1px rgba(255,255,255,0.15);
}

/* Focus ring */
.btn:focus-visible {
  outline: 2px solid var(--clr-orange);
  outline-offset: 3px;
}

/* -----------------------------------------------
   8. IMAGE PLACEHOLDERS
----------------------------------------------- */
.img-placeholder {
  background: linear-gradient(145deg, #181818 0%, #1f1f1f 100%);
  border: 2px dashed rgba(245, 124, 0, 0.35);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245, 124, 0, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.ph-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.ph-icon {
  color: rgba(245, 124, 0, 0.45);
}

.ph-label {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245, 124, 0, 0.7);
  line-height: 1;
}

.ph-desc {
  font-size: 0.8rem;
  color: var(--clr-gray-2);
  max-width: 320px;
  line-height: 1.55;
}

/* Placeholder sizes */
.hero-img-ph    { min-height: 480px; }
.storm-img-ph   { min-height: 420px; }
.sales-img-ph   { min-height: 400px; }
.parts-img-ph   { min-height: 400px; }
.map-img-ph     { min-height: 440px; }

/* -----------------------------------------------
   9. LOGO
----------------------------------------------- */
.logo-link {
  text-decoration: none;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}

.site-logo {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.6));
}

/* Header logo — bright white glow so black elements read against the dark nav */
.site-header .site-logo {
  filter:
    drop-shadow(0 0 4px rgba(255,255,255,1))
    drop-shadow(0 0 12px rgba(255,255,255,0.90))
    drop-shadow(0 0 28px rgba(255,255,255,0.65))
    drop-shadow(0 0 48px rgba(255,255,255,0.35));
}

.footer-logo {
  height: 40px;
  filter:
    drop-shadow(0 0 4px rgba(255,255,255,1))
    drop-shadow(0 0 12px rgba(255,255,255,0.90))
    drop-shadow(0 0 28px rgba(255,255,255,0.65))
    drop-shadow(0 0 48px rgba(255,255,255,0.35));
}

/* -----------------------------------------------
   10. SITE HEADER
----------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(6, 6, 6, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(6, 6, 6, 0.99);
  box-shadow: 0 4px 24px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 72px;
  gap: 16px;
}

/* Main nav */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--clr-gray-4);
  padding: 8px 10px;
  transition: color var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--clr-orange);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-white);
  white-space: nowrap;
  transition: color var(--transition);
}

.header-phone:hover {
  color: var(--clr-orange);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  gap: 5px;
  border-radius: 4px;
  transition: background var(--transition);
}

.hamburger:hover {
  background: rgba(255,255,255,0.07);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform 0.28s ease, opacity 0.2s ease;
  transform-origin: center;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -----------------------------------------------
   11. MOBILE NAV OVERLAY
----------------------------------------------- */
/* Backdrop — fades in behind the sidebar */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay[hidden] {
  display: block !important;
  pointer-events: none;
}

.mobile-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

/* Sidebar panel — slides in from the right */
.mobile-overlay-inner {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 85vw);
  z-index: 951;
  display: flex;
  flex-direction: column;
  padding: 24px 28px 40px;
  overflow-y: auto;
  background: #080808;
  border-left: 1px solid rgba(245,124,0,0.2);
  box-shadow: -8px 0 40px rgba(0,0,0,0.7), -2px 0 0 rgba(245,124,0,0.06);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-overlay.is-open .mobile-overlay-inner {
  transform: translateX(0);
}

.mobile-close {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-bottom: 32px;
  transition: background var(--transition);
}

.mobile-close:hover {
  background: rgba(255,255,255,0.08);
}

.mobile-nav {
  flex: 1;
}

.mobile-nav ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav a {
  display: block;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--clr-white);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition), padding-left var(--transition);
}

.mobile-nav a:hover {
  color: var(--clr-orange);
  padding-left: 8px;
}

.mobile-nav-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}

.mobile-nav-footer .btn {
  padding: 16px 20px;
  font-size: 0.9rem;
}

.mobile-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--clr-white);
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  transition: border-color var(--transition), color var(--transition);
}

.mobile-phone:hover {
  border-color: var(--clr-orange);
  color: var(--clr-orange);
}

/* -----------------------------------------------
   12. HERO SECTION
----------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background:
    image-set(
      url('../images/hero-bg.webp') type('image/webp'),
      url('../images/hero-bg.png') type('image/png')
    ) center center / cover no-repeat;
}

/* Directional overlay: dense on the left for text legibility, clears toward the generator */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.78) 35%,
      rgba(0, 0, 0, 0.45) 58%,
      rgba(0, 0, 0, 0.10) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.35) 0%,
      transparent 20%,
      transparent 80%,
      rgba(0, 0, 0, 0.55) 100%
    );
  pointer-events: none;
  z-index: 0;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.014) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.014) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 1;
  mask-image: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 620px;
  position: relative;
  z-index: 2;
}

/* Hero text glow */
.hero-content .hero-eyebrow,
.hero-content .hero-headline,
.hero-content .hero-body,
.hero-content .hero-credentials,
.hero-content .hero-call-link {
  text-shadow:
    0 0 32px rgba(0,0,0,0.95),
    0 0 64px rgba(0,0,0,0.85),
    0 2px 6px rgba(0,0,0,0.9);
}

/* Hero content */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 20px;
}

.eyebrow-bar {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--clr-orange);
  flex-shrink: 0;
}

.hero-headline {
  color: var(--clr-white);
  margin-bottom: 22px;
  line-height: 1.08;
}

.hero-body {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
  max-width: 500px;
}

.hero-credentials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 36px;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.3px;
}

.cred-sep {
  color: var(--clr-orange);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-call-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--clr-gray-3);
  transition: color var(--transition);
}

.hero-call-link:hover {
  color: var(--clr-orange);
}


/* -----------------------------------------------
   13. TRUST STRIP — OPTION C
----------------------------------------------- */
.trust-strip {
  background: var(--clr-dark-3);
  border-top: 3px solid var(--clr-orange);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 0;
  overflow: hidden;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  position: relative;
  padding: 40px 32px 36px;
  border-right: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: background var(--transition);
}

.trust-item:last-child {
  border-right: none;
}

.trust-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--clr-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.trust-item:hover {
  background: rgba(245,124,0,0.04);
}

.trust-item:hover::after {
  transform: scaleX(1);
}

/* Large watermark number */
.trust-item-number {
  font-family: var(--font-headline);
  font-size: 5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--clr-orange);
  opacity: 0.12;
  position: absolute;
  top: 16px;
  right: 20px;
  letter-spacing: -2px;
  pointer-events: none;
  transition: opacity var(--transition);
}

.trust-item:hover .trust-item-number {
  opacity: 0.2;
}

.trust-item-body {
  position: relative;
  z-index: 1;
}

/* Orange top-left accent bar */
.trust-item-body::before {
  content: '';
  display: block;
  width: 28px;
  height: 3px;
  background: var(--clr-orange);
  margin-bottom: 18px;
  border-radius: 2px;
}

.trust-item-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: 0.2px;
}

.trust-item-body p {
  font-size: 0.83rem;
  color: var(--clr-gray-3);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1),
  .trust-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .trust-item { padding: 28px 22px 24px; }
}

@media (max-width: 600px) {
  /* Stay 2-column but get tight */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 18px 14px 16px; }
  .trust-item-number { font-size: 3rem; top: 10px; right: 10px; }
  .trust-item-body::before { width: 20px; height: 2px; margin-bottom: 10px; }
  .trust-item-body h3 { font-size: 0.8rem; margin-bottom: 6px; }
  .trust-item-body p { font-size: 0.74rem; line-height: 1.55; }
}

/* -----------------------------------------------
   CREDENTIALS STRIP — OPTION A (inactive)
----------------------------------------------- */
.cred-strip {
  background: var(--clr-dark-1);
  border-top: 2px solid var(--clr-orange);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0;
}

.cred-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.cred-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 24px;
  white-space: nowrap;
}

.cred-strip-item span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: var(--clr-white);
}

.cred-strip-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .cred-strip-inner {
    gap: 0;
  }
  .cred-strip-item {
    padding: 14px 16px;
  }
  .cred-strip-item span {
    font-size: 0.76rem;
  }
}

@media (max-width: 600px) {
  .cred-strip-divider {
    display: none;
  }
  .cred-strip-inner {
    justify-content: flex-start;
  }
  .cred-strip-item {
    padding: 10px 14px;
    flex: 0 0 50%;
  }
}

/* -----------------------------------------------
   14. SERVICES SECTION
----------------------------------------------- */
.services-section {
  padding: 56px 0 48px;
  background: var(--clr-dark-1);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,124,0,0.3) 30%, rgba(245,124,0,0.3) 70%, transparent);
}

.services-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 32px;
}

.services-section-header h2 { margin-bottom: 12px; }

/* ── HUB WRAP (desktop only) ── */
.hub-wrap {
  display: block;
}

.hub-hint {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-gray-2);
  margin-top: 20px;
}

/* Hub diagram container */
.hub-diagram {
  display: grid;
  grid-template-columns: 1fr 240px 1fr;
  align-items: stretch;
  gap: 0;
  position: relative;
}

/* SVG lines overlay */
.hub-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

.hub-line {
  stroke: rgba(245,124,0,0.25);
  stroke-width: 1.5;
  stroke-dasharray: 5 4;
  fill: none;
  transition: stroke var(--transition), stroke-opacity var(--transition);
}

.hub-line.is-active {
  stroke: rgba(245,124,0,0.8);
  stroke-dasharray: none;
  stroke-width: 2;
}

/* ── CENTER HUB ── */
.hub-center {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 240px;
  justify-self: center;
  align-self: center;
}

.hub-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,124,0,0.15);
  pointer-events: none;
  animation: hubRingPulse 4s ease-in-out infinite;
}

.hub-ring--1 { inset: 0;       animation-delay: 0s; }
.hub-ring--2 { inset: -28px;   animation-delay: 1.3s; border-color: rgba(245,124,0,0.08); }
.hub-ring--3 { inset: -56px;   animation-delay: 2.6s; border-color: rgba(245,124,0,0.04); }

@keyframes hubRingPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.03); }
}

.hub-shield-wrap {
  position: relative;
  z-index: 1;
}

.hub-shield-img {
  width: 190px;
  height: auto;
  display: block;
  animation: shieldGlow 3s ease-in-out infinite;
}

@keyframes shieldGlow {
  0%, 100% {
    filter:
      drop-shadow(0 0 12px rgba(245,124,0,0.6))
      drop-shadow(0 0 32px rgba(245,124,0,0.25))
      drop-shadow(0 0 2px rgba(255,255,255,0.15));
  }
  50% {
    filter:
      drop-shadow(0 0 22px rgba(245,124,0,0.9))
      drop-shadow(0 0 52px rgba(245,124,0,0.45))
      drop-shadow(0 0 4px rgba(255,255,255,0.2));
  }
}

/* ── HUB COLUMNS ── */
.hub-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 60px;
  padding: 40px 0;
}

.hub-col--left  { align-items: stretch; padding-right: 20px; }
.hub-col--right { align-items: stretch; padding-left: 20px; }

/* ── HUB NODES ── */
.hub-node {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
  transition: transform var(--transition);
}

.hub-col--left  .hub-node { flex-direction: row; justify-content: flex-end; }
.hub-col--right .hub-node { flex-direction: row; justify-content: flex-start; }

.hub-node:hover { transform: translateX(-4px); }
.hub-col--right .hub-node:hover { transform: translateX(4px); }

/* Node label */
.hub-node-label {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 16px;
  flex: 1;
}

.hub-col--left  .hub-node-label { text-align: right; }
.hub-col--right .hub-node-label { text-align: left; }

.hub-node-label strong {
  font-family: var(--font-headline);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--clr-white);
  letter-spacing: 0.3px;
  line-height: 1.2;
  transition: color var(--transition);
}

.hub-node-label span {
  font-size: 0.88rem;
  color: var(--clr-gray-2);
  line-height: 1.45;
  transition: color var(--transition);
}

.hub-node-label em {
  font-size: 0.78rem;
  font-style: normal;
  color: rgba(245,124,0,0.6);
  line-height: 1.4;
  transition: color var(--transition);
}

.hub-node:hover .hub-node-label em { color: var(--clr-orange); }

.hub-node:hover .hub-node-label strong { color: var(--clr-orange); }
.hub-node:hover .hub-node-label span   { color: var(--clr-gray-4); }

/* Node icon circle */
.hub-node-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--clr-dark-4);
  border: 1.5px solid rgba(245,124,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-orange);
  transition: background var(--transition), border-color var(--transition),
              box-shadow var(--transition);
  position: relative;
  z-index: 2;
}

.hub-node:hover .hub-node-icon {
  background: rgba(245,124,0,0.12);
  border-color: var(--clr-orange);
  box-shadow: 0 0 16px rgba(245,124,0,0.35), 0 0 32px rgba(245,124,0,0.15);
}

.hub-node.is-active .hub-node-icon {
  background: var(--clr-orange);
  border-color: var(--clr-orange);
  color: #000;
  box-shadow: 0 0 20px rgba(245,124,0,0.5);
}

/* ── MOBILE / TABLET CARD GRID ── */
.services-cards-mobile {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.svc-card-mobile {
  background: var(--clr-dark-4);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.svc-card-mobile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--clr-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.svc-card-mobile:hover { border-color: rgba(245,124,0,0.25); transform: translateY(-3px); }
.svc-card-mobile:hover::after { transform: scaleX(1); }

.svc-card-mobile--featured { background: linear-gradient(145deg, #1a1209, #1a1a1a); border-color: rgba(245,124,0,0.2); }

.svc-card-icon {
  width: 48px; height: 48px;
  background: rgba(245,124,0,0.08);
  border: 1.5px solid rgba(245,124,0,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

.svc-card-mobile h3 { font-size: 1.05rem; color: var(--clr-white); margin-bottom: 8px; line-height: 1.2; }
.svc-card-mobile p  { font-size: 0.82rem; color: var(--clr-gray-3); line-height: 1.65; margin-bottom: 16px; }

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-gray-3);
  transition: color var(--transition);
}

.service-cta--strong,
.service-cta:hover { color: var(--clr-orange); }

.service-cta span { transition: transform var(--transition); }
.service-cta:hover span { transform: translateX(3px); }

/* ── SERVICE MODAL ── */
.svc-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.svc-modal-overlay[hidden] { display: flex !important; pointer-events: none; }
.svc-modal-overlay.is-open { opacity: 1; pointer-events: all; }

.svc-modal {
  background: var(--clr-dark-4);
  border: 1px solid rgba(245,124,0,0.25);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  padding: 44px 40px;
  position: relative;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.svc-modal-overlay.is-open .svc-modal {
  transform: translateY(0) scale(1);
}

.svc-modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: var(--clr-gray-4);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.svc-modal-close:hover { background: rgba(245,124,0,0.15); color: var(--clr-orange); }

.svc-modal-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 10px;
}

.svc-modal-title {
  font-family: var(--font-headline);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 16px;
  line-height: 1.1;
}

.svc-modal-body {
  font-size: 0.92rem;
  color: var(--clr-gray-4);
  line-height: 1.75;
  margin-bottom: 24px;
}

.svc-modal-includes-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-gray-3);
  margin-bottom: 12px;
}

.svc-modal-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin-bottom: 32px;
}

.svc-modal-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--clr-gray-5);
}

.svc-modal-list li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-orange);
  flex-shrink: 0;
}

/* Responsive — hide hub, show cards */
@media (max-width: 1024px) {
  .hub-wrap         { display: none; }
  .services-cards-mobile { display: grid; }
}

@media (max-width: 560px) {
  .services-cards-mobile { grid-template-columns: 1fr; }
  .svc-modal { padding: 32px 24px; }
  .svc-modal-list { grid-template-columns: 1fr; }
}

/* -----------------------------------------------
   15. STORM SECTION
----------------------------------------------- */
.storm-section {
  padding: var(--section-py) 0;
  background: var(--clr-dark-1);
  position: relative;
  overflow: hidden;
}

.storm-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 80% 50%, rgba(245,124,0,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 30%, rgba(245,124,0,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.storm-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 48px,
      rgba(255,255,255,0.008) 48px,
      rgba(255,255,255,0.008) 49px
    );
  pointer-events: none;
}

.storm-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.storm-content h2 {
  margin-bottom: 18px;
}

.storm-content p {
  margin-bottom: 30px;
  font-size: 1.02rem;
}

.storm-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 36px;
}

.storm-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-gray-5);
}

.storm-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.storm-photo {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg);
}

/* -----------------------------------------------
   16. INDUSTRIES SECTION
----------------------------------------------- */
.industries-section {
  padding: var(--section-py) 0;
  background: var(--clr-dark-2);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.industry-card {
  background: var(--clr-dark-4);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}

.industry-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--clr-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.industry-card:hover {
  border-color: rgba(245,124,0,0.25);
  transform: translateY(-4px);
}

.industry-card:hover::before {
  transform: scaleX(1);
}

.industry-icon {
  width: 60px;
  height: 60px;
  background: rgba(245,124,0,0.07);
  border: 1.5px solid rgba(245,124,0,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.industry-card h3 {
  font-size: 1.18rem;
  color: var(--clr-white);
  margin-bottom: 10px;
}

.industry-card p {
  font-size: 0.85rem;
  color: var(--clr-gray-3);
  line-height: 1.65;
}

/* -----------------------------------------------
   17. WHY CHOOSE SECTION
----------------------------------------------- */
.why-section {
  padding: var(--section-py) 0;
  background: var(--clr-dark-1);
  position: relative;
  overflow: hidden;
}

.why-grid-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(245,124,0,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: stretch;
  position: relative;
}

.why-content h2 {
  margin-bottom: 24px;
}

.credentials-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.credentials-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.credentials-list li:nth-last-child(-n+2) {
  border-bottom: none;
}

.credentials-list li:nth-child(odd) {
  padding-right: 20px;
  border-right: 1px solid rgba(255,255,255,0.05);
}

.credentials-list li:nth-child(even) {
  padding-left: 20px;
}

.cred-dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-orange);
  margin-top: 5px;
  box-shadow: 0 0 6px rgba(245,124,0,0.4);
}

.cred-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.cred-text strong {
  font-size: 0.82rem;
  color: var(--clr-white);
}

.cred-text span {
  font-size: 0.74rem;
  color: var(--clr-gray-3);
  line-height: 1.4;
}

/* Stat panel */
.why-stat-panel {
  display: flex;
  flex-direction: column;
}

.stat-block {
  background: var(--clr-dark-4);
  border: 1px solid rgba(245,124,0,0.2);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stat-number {
  font-family: var(--font-headline);
  font-size: 5rem;
  font-weight: 700;
  color: var(--clr-orange);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 20px;
}

.stat-rule {
  width: 40px;
  height: 2px;
  background: var(--clr-orange);
  margin: 0 auto 16px;
  opacity: 0.5;
}

.stat-applications {
  font-size: 0.75rem;
  color: var(--clr-gray-3);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.stat-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.stat-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(245,124,0,0.08);
  border: 1px solid rgba(245,124,0,0.2);
  border-radius: 4px;
  padding: 9px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-white);
}

.why-cta {
  margin-top: 0;
}

/* -----------------------------------------------
   18. GENERATOR SALES SECTION
----------------------------------------------- */
.sales-section {
  padding: var(--section-py) 0;
  background: var(--clr-dark-3);
  position: relative;
}

.sales-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,124,0,0.2) 50%, transparent);
}

.sales-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.sales-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.sales-photo {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg);
}

.sales-content h2 {
  margin-bottom: 18px;
}

.sales-content p {
  margin-bottom: 28px;
  font-size: 1.02rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--clr-gray-4);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.feature-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--clr-orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* -----------------------------------------------
   19. PARTS SECTION
----------------------------------------------- */
.parts-section {
  padding: var(--section-py) 0;
  background: var(--clr-dark-2);
}

.parts-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.parts-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.parts-photo {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg);
}

.parts-content h2 {
  margin-bottom: 18px;
}

.parts-content p {
  margin-bottom: 28px;
  font-size: 1.02rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--clr-gray-4);
}

/* -----------------------------------------------
   20. SERVICE AREA SECTION
----------------------------------------------- */
.service-area-section {
  padding: var(--section-py) 0;
  background: var(--clr-dark-3);
}

.service-area-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.service-area-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: stretch;
}

.service-area-map-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
}

.service-area-photo {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.service-area-content h2 {
  margin-bottom: 16px;
}

.service-area-content > p {
  margin-bottom: 28px;
}

.service-area-cities {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin: 0;
  padding: 0;
}

.service-area-cities li {
  font-family: var(--font-headline);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-gray-4);
  border-bottom: 1px solid rgba(245, 124, 0, 0.35);
  padding-bottom: 2px;
}

.area-note {
  font-size: 0.82rem;
  color: var(--clr-gray-2);
  margin-bottom: 28px;
}

/* -----------------------------------------------
   20b. FAQ SECTION
----------------------------------------------- */
.faq-section {
  padding: var(--section-py) 0;
  background: var(--clr-dark-2);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--clr-white);
  padding: 20px 36px 20px 0;
  position: relative;
  transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--clr-orange);
  line-height: 1;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item summary:hover {
  color: var(--clr-orange-lt);
}

.faq-item p {
  padding: 0 0 22px;
  color: var(--clr-gray-4);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 68ch;
}

.faq-item a {
  color: var(--clr-orange);
  text-decoration: none;
}

.faq-item a:hover {
  color: var(--clr-orange-lt);
  text-decoration: underline;
}

/* -----------------------------------------------
   21. ABOUT SECTION
----------------------------------------------- */
.about-section {
  padding: var(--section-py) 0;
  background: var(--clr-dark-4);
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-content p {
  margin-bottom: 18px;
  font-size: 1rem;
}

.about-content p:last-of-type {
  margin-bottom: 36px;
}

.about-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.about-sidebar {
  position: sticky;
  top: 100px;
}

.about-stat {
  background: var(--clr-dark-2);
  border: 1px solid rgba(245,124,0,0.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-bottom: 16px;
}

.about-stat-number {
  font-family: var(--font-headline);
  font-size: 4rem;
  font-weight: 700;
  color: var(--clr-orange);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -1px;
}

.about-stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-gray-4);
  letter-spacing: 0.5px;
}

.about-badge-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--clr-dark-2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-white);
  transition: border-color var(--transition);
}

.about-badge:hover {
  border-color: rgba(245,124,0,0.3);
}

/* -----------------------------------------------
   22. CONTACT SECTION
----------------------------------------------- */
.contact-section {
  padding: var(--section-py) 0;
  background: var(--clr-dark-2);
}

.contact-section .section-header {
  max-width: 100%;
  text-align: left;
  margin-bottom: 48px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: start;
}

/* Form */
.contact-form {
  background: var(--clr-dark-4);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}

.form-group:last-of-type {
  margin-bottom: 0;
}

label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-gray-5);
  letter-spacing: 0.2px;
}

.req {
  color: var(--clr-orange);
}

.optional {
  font-weight: 400;
  color: var(--clr-gray-3);
  font-size: 0.76rem;
}

input,
select,
textarea {
  background: var(--clr-dark-2);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: var(--clr-white);
  font-size: 0.9rem;
  padding: 12px 14px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

input::placeholder,
textarea::placeholder {
  color: var(--clr-gray-2);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--clr-orange);
  box-shadow: 0 0 0 3px rgba(245,124,0,0.12);
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23888' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}

select option {
  background: var(--clr-dark-4);
  color: var(--clr-white);
}

textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn-block {
  margin-top: 24px;
}

.form-footnote {
  font-size: 0.78rem;
  color: var(--clr-gray-2);
  margin-top: 14px;
  text-align: center;
}

.form-footnote a {
  color: var(--clr-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Ensure [hidden] always wins over display rules */
.form-success[hidden],
.form-error-msg[hidden] {
  display: none !important;
}

/* Success card — replaces the form on submission */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-lg);
  padding: 48px 32px;
}

.form-success-icon {
  line-height: 0;
}

.form-success h3 {
  font-family: var(--font-headline);
  font-size: 1.5rem;
  font-weight: 700;
  color: #22c55e;
  margin: 0;
}

.form-success p {
  font-size: 0.92rem;
  color: var(--clr-gray-4);
  margin: 0;
  line-height: 1.6;
}

.form-success strong {
  color: var(--clr-white);
}

.form-success-urgent {
  font-size: 0.82rem !important;
  color: var(--clr-gray-3) !important;
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.06);
  width: 100%;
}

.form-success-urgent a {
  color: var(--clr-orange);
  font-weight: 600;
  text-decoration: none;
}

.form-success-urgent a:hover {
  text-decoration: underline;
}

/* Field-level validation errors */
.field-error {
  margin-top: 5px;
  font-size: 0.75rem;
  color: #f87171;
  font-weight: 500;
}

.field-invalid {
  border-color: #f87171 !important;
  box-shadow: 0 0 0 2px rgba(248, 113, 113, 0.15) !important;
}

/* Form-level error banner */
.form-error-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(248, 113, 113, 0.08);
  border: 1px solid rgba(248, 113, 113, 0.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-top: 12px;
  font-size: 0.84rem;
  color: #fca5a5;
  line-height: 1.5;
}

.form-error-msg svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #f87171;
}

/* Contact info */
.contact-info {
  padding-top: 8px;
}

.contact-info h3 {
  font-size: 1.15rem;
  color: var(--clr-white);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.contact-detail {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-detail:last-of-type {
  border-bottom: none;
}

.contact-detail-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--clr-orange);
  margin-bottom: 5px;
}

.contact-detail-value {
  font-size: 0.92rem;
  color: var(--clr-white);
  font-weight: 500;
}

.contact-detail-value a {
  color: var(--clr-white);
  transition: color var(--transition);
}

.contact-detail-value a:hover {
  color: var(--clr-orange);
}

.contact-detail--area .contact-detail-value {
  font-size: 0.85rem;
  color: var(--clr-gray-4);
  font-weight: 400;
  line-height: 1.65;
}

.contact-cred-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.contact-cred-badge {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--clr-orange);
  border: 1px solid rgba(245,124,0,0.3);
  border-radius: 3px;
  padding: 5px 10px;
  background: rgba(245,124,0,0.06);
}

/* -----------------------------------------------
   23. FOOTER
----------------------------------------------- */
.site-footer {
  background: var(--clr-dark-1);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo-link {
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--clr-gray-3);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 340px;
}

.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-gray-3);
  transition: color var(--transition);
  word-break: break-all;
}

.footer-contact-link:hover {
  color: var(--clr-orange);
}

.footer-links-col h4,
.footer-area-col h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--clr-gray-3);
  margin-bottom: 18px;
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-links-col a {
  font-size: 0.88rem;
  color: var(--clr-gray-3);
  padding: 5px 0;
  transition: color var(--transition);
  display: block;
}

.footer-links-col a:hover {
  color: var(--clr-white);
}

.footer-area-list {
  font-size: 0.82rem;
  color: var(--clr-gray-3);
  line-height: 1.9;
  margin-bottom: 18px;
}

.footer-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-creds span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--clr-orange);
  border: 1px solid rgba(245,124,0,0.25);
  border-radius: 3px;
  padding: 4px 9px;
  background: rgba(245,124,0,0.05);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 20px 0;
  text-align: center;
}

.footer-copy,
.footer-location {
  font-size: 0.78rem;
  color: var(--clr-gray-2);
}

.privacy-link {
  background: none;
  border: none;
  padding: 2px 0;
  font-size: 0.72rem;
  color: var(--clr-gray-2);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition);
}

.privacy-link:hover {
  color: var(--clr-orange);
}

/* ── Built By Bar ── */
.built-by-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  text-decoration: none;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.built-by-bar:hover {
  opacity: 1;
}

.built-by-text {
  font-size: 0.72rem;
  color: #555;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.built-by-bar:hover .built-by-text {
  color: #888;
}

.built-by-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.2s ease;
}

.built-by-bar:hover .built-by-logo {
  opacity: 0.85;
}

/* ── Privacy Policy Modal ── */
.privacy-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.privacy-overlay[hidden] {
  display: flex !important;
  pointer-events: none;
}

.privacy-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.privacy-modal {
  background: var(--clr-dark-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.6);
  transform: translateY(16px);
  transition: transform 0.25s ease;
}

.privacy-overlay.is-open .privacy-modal {
  transform: translateY(0);
}

.privacy-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.privacy-modal-header h2 {
  font-family: var(--font-headline);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--clr-white);
  margin: 0;
  -webkit-text-fill-color: unset;
  background: none;
}

.privacy-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--clr-gray-3);
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}

.privacy-close:hover {
  background: rgba(255,255,255,0.08);
  color: var(--clr-white);
}

.privacy-modal-body {
  overflow-y: auto;
  padding: 24px 28px 32px;
  scroll-behavior: smooth;
}

.privacy-effective {
  font-size: 0.75rem;
  color: var(--clr-gray-2);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.privacy-modal-body h3 {
  font-family: var(--font-headline);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-orange);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 24px 0 8px;
}

.privacy-modal-body h3:first-of-type {
  margin-top: 0;
}

.privacy-modal-body p {
  font-size: 0.84rem;
  color: var(--clr-gray-3);
  line-height: 1.7;
  margin-bottom: 10px;
}

.privacy-modal-body ul {
  margin: 6px 0 10px 16px;
  list-style: disc;
}

.privacy-modal-body ul li {
  font-size: 0.84rem;
  color: var(--clr-gray-3);
  line-height: 1.7;
  padding: 2px 0;
}

.privacy-modal-body a {
  color: var(--clr-orange);
  text-decoration: none;
}

.privacy-modal-body a:hover {
  text-decoration: underline;
}

.privacy-modal-body strong {
  color: var(--clr-white);
  font-weight: 600;
}

/* -----------------------------------------------
   24. BACK TO TOP
----------------------------------------------- */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 44px;
  height: 44px;
  background: var(--clr-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(245,124,0,0.3);
  transition: background var(--transition), transform var(--transition), opacity var(--transition);
  opacity: 0;
}

.back-to-top:not([hidden]) {
  opacity: 1;
}

.back-to-top:hover {
  background: var(--clr-orange-lt);
  transform: translateY(-3px);
}

/* -----------------------------------------------
   25. SCROLL ANIMATIONS
----------------------------------------------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -----------------------------------------------
   26. FOCUS STYLES (Accessibility)
----------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--clr-orange);
  outline-offset: 3px;
  border-radius: 2px;
}

/* -----------------------------------------------
   27. RESPONSIVE — 1024px
----------------------------------------------- */
@media (max-width: 1024px) {
  :root {
    --section-py: 80px;
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .header-phone {
    display: none;
  }

  /* Hide quote button on mobile, push hamburger to far right */
  .header-actions .btn-sm {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-layout {
    max-width: 100%;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Why section stays 2-column on tablet/mobile — credentials left, stat right */
  .why-layout {
    grid-template-columns: 1fr minmax(0, 280px);
    gap: 28px;
    align-items: start;
  }

  .why-stat-panel {
    max-width: none;
  }

  .stat-block {
    padding: 24px 18px;
  }

  /* Credentials list — single column within the left panel */
  .credentials-list {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .credentials-list li:nth-child(odd) {
    padding-right: 0;
    border-right: none;
  }

  .credentials-list li:nth-child(even) {
    padding-left: 0;
  }

  .credentials-list li:nth-last-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .credentials-list li:last-child {
    border-bottom: none;
  }

  .why-about-blurb {
    font-size: 0.78rem;
  }

  /* Right-side vignette only on mobile — left removed */
  body::after {
    box-shadow: inset -120px 0 100px -60px rgba(0,0,0,0.75) !important;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* -----------------------------------------------
   28. RESPONSIVE — 768px
----------------------------------------------- */
@media (max-width: 768px) {
  :root {
    --section-py: 64px;
    --container-px: 20px;
  }

  .hero-section {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-img-ph {
    min-height: 280px;
  }

  /* Why section — tighter at 768px but still side-by-side */
  .why-layout {
    grid-template-columns: 1fr minmax(0, 240px);
    gap: 20px;
  }

  .stat-block {
    padding: 20px 14px;
  }

  .stat-number {
    font-size: 2.8rem;
  }

  .stat-applications {
    font-size: 0.62rem;
    letter-spacing: 0.3px;
  }

  .stat-badge {
    font-size: 0.65rem;
    padding: 6px 10px;
  }

  .stat-mini-value {
    font-size: 0.95rem;
  }

  .stat-mini-label {
    font-size: 0.58rem;
  }

  .stat-mini {
    padding: 10px 4px;
  }

  .stat-phone-cta {
    font-size: 0.82rem;
  }

  .stat-footnote {
    font-size: 0.64rem;
  }

  /* Right-side vignette only on mobile — left removed */
  body::after {
    box-shadow: inset -120px 0 100px -60px rgba(0,0,0,0.75) !important;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .storm-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .storm-checklist {
    grid-template-columns: 1fr;
  }

  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  .sales-layout,
  .parts-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .service-area-top {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
  }

  .service-area-map-wrap {
    min-height: 200px;
  }

  .area-grid li {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  /* Reverse parts image order on mobile */
  .parts-image-wrap {
    order: -1;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .about-sidebar {
    grid-template-columns: 1fr;
  }

  .area-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* -----------------------------------------------
   29. RESPONSIVE — 480px
----------------------------------------------- */
@media (max-width: 480px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .hero-ctas .btn {
    width: 100%;
    max-width: 280px;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  /* Why section — stays 2-column even at 480px */
  .why-layout {
    grid-template-columns: 1fr minmax(0, 200px);
    gap: 14px;
  }

  .why-content h2 {
    font-size: 1.3rem;
  }

  .cred-text strong {
    font-size: 0.72rem;
  }

  .cred-text span {
    font-size: 0.65rem;
  }

  .credentials-list li {
    gap: 7px;
    padding: 4px 0;
  }

  .cred-dot {
    width: 5px;
    height: 5px;
    margin-top: 4px;
  }

  .stat-block {
    padding: 16px 10px;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
  }

  .storm-img-ph,
  .sales-img-ph,
  .parts-img-ph,
  .map-img-ph {
    min-height: 280px;
  }

  .service-area-top {
    gap: 12px;
  }

  .service-area-map-wrap {
    min-height: 200px;
  }

  .service-area-content h2 {
    font-size: 1.1rem;
  }

  .service-area-content > p {
    font-size: 0.75rem;
    margin-bottom: 0;
  }

  .area-note {
    font-size: 0.72rem;
  }
}

/* -----------------------------------------------
   VISUAL FLOURISHES — accent flows, glows, depth
----------------------------------------------- */

/* Gradient text on section h2 headings */
.services-section-header h2,
.storm-content h2,
.why-content h2,
.sales-content h2,
.parts-content h2,
.service-area-content h2,
.about-content h2,
.section-header h2 {
  background: linear-gradient(110deg, #ffffff 0%, #ffffff 60%, #ffcc80 88%, #f57c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Richer section divider lines */
.services-section::before,
.storm-section::before {
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(245,124,0,0.15) 20%, rgba(245,124,0,0.55) 50%, rgba(245,124,0,0.15) 80%, transparent 100%);
}

/* Orange bloom behind hub center */
.hub-center::before {
  content: '';
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at center, rgba(245,124,0,0.12) 0%, rgba(245,124,0,0.04) 40%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  z-index: 0;
  animation: hubBloom 4s ease-in-out infinite;
}

@keyframes hubBloom {
  0%, 100% { opacity: 0.7; transform: scale(1);    }
  50%       { opacity: 1;   transform: scale(1.08); }
}

/* Hub lines — more vivid dashes */
.hub-line {
  stroke: rgba(245,124,0,0.35);
  stroke-width: 1.5;
  stroke-dasharray: 6 5;
}

.hub-line.is-active {
  stroke: rgba(245,124,0,0.95);
  stroke-width: 2.5;
  filter: drop-shadow(0 0 4px rgba(245,124,0,0.6));
}

/* Industry card — orange glow on hover */
.industry-card:hover {
  box-shadow: 0 0 28px rgba(245,124,0,0.12), 0 8px 32px rgba(0,0,0,0.4);
}

/* Credential dot glow — merged into primary rule above */

/* Why section stat panel — stronger orange accent */
.stat-block {
  background: linear-gradient(145deg, #1a1209 0%, #1a1a1a 100%);
  border: 1px solid rgba(245,124,0,0.2);
  box-shadow: 0 0 40px rgba(245,124,0,0.08), inset 0 1px 0 rgba(245,124,0,0.12);
}

.stat-number {
  background: linear-gradient(135deg, #ffffff 30%, #ffb74d 70%, #f57c00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Storm section — richer left orange glow */
.storm-section::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 40%;
  background: radial-gradient(ellipse 80% 60% at 0% 50%, rgba(245,124,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Mobile service cards — richer hover */
.svc-card-mobile:hover {
  box-shadow: 0 0 24px rgba(245,124,0,0.1), 0 8px 32px rgba(0,0,0,0.4);
}

/* Trust strip — more vivid number and bar */
.trust-item:hover .trust-item-number {
  opacity: 0.28;
}

/* Footer — orange gradient glow along the top */
.site-footer {
  border-top: 1px solid rgba(245,124,0,0.2);
  box-shadow: 0 -1px 0 rgba(245,124,0,0.08), 0 -40px 80px -20px rgba(245,124,0,0.04);
}

/* Contact section — subtle orange atmosphere */
.contact-section {
  background: linear-gradient(180deg, var(--clr-dark-1) 0%, #0a0804 100%);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(245,124,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Hub node — orange underline on active */
.hub-node.is-active .hub-node-label strong {
  color: var(--clr-orange);
  text-shadow: 0 0 16px rgba(245,124,0,0.4);
}

/* Section label bar — add a trailing glow line */
.section-label::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(245,124,0,0.4), transparent);
  margin-top: 6px;
}

/* -----------------------------------------------
   GLOW & ACCENT LINE ENHANCEMENTS
----------------------------------------------- */

/* Contact form box — orange border glow */
.contact-form {
  border-color: rgba(245,124,0,0.15);
  box-shadow: 0 0 0 1px rgba(245,124,0,0.06),
              0 8px 40px rgba(0,0,0,0.4),
              inset 0 1px 0 rgba(245,124,0,0.08);
}

/* Form inputs — orange glow on focus */
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(245,124,0,0.6) !important;
  box-shadow: 0 0 0 3px rgba(245,124,0,0.12), 0 0 16px rgba(245,124,0,0.08);
}

/* Stat block — stronger orange glow */
.stat-block {
  box-shadow: 0 0 0 1px rgba(245,124,0,0.1),
              0 0 40px rgba(245,124,0,0.1),
              0 16px 48px rgba(0,0,0,0.5),
              inset 0 1px 0 rgba(245,124,0,0.15);
}

/* Stat badge — left orange accent bar + hover glow */
.stat-badge {
  border-left: 2px solid var(--clr-orange);
  transition: box-shadow var(--transition), background var(--transition);
}

.stat-badge:hover {
  background: rgba(245,124,0,0.12);
  box-shadow: 0 0 12px rgba(245,124,0,0.18);
}

/* Stat rule — full orange glow */
.stat-rule {
  opacity: 1;
  box-shadow: 0 0 8px rgba(245,124,0,0.6);
}

/* About badges — orange left bar + hover glow */
.about-badge {
  border-left: 2px solid rgba(245,124,0,0.4);
}

.about-badge:hover {
  border-color: var(--clr-orange);
  border-left-color: var(--clr-orange);
  box-shadow: 0 0 16px rgba(245,124,0,0.15), inset 0 0 12px rgba(245,124,0,0.04);
  background: rgba(245,124,0,0.06);
}

/* Contact cred badges — glow on hover */
.contact-cred-badge {
  transition: box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.contact-cred-badge:hover {
  background: rgba(245,124,0,0.12);
  border-color: rgba(245,124,0,0.6);
  box-shadow: 0 0 12px rgba(245,124,0,0.2);
}

/* Contact info h3 — orange left accent bar */
.contact-info h3 {
  border-bottom-color: rgba(245,124,0,0.2);
  padding-left: 12px;
  border-left: 3px solid var(--clr-orange);
  box-shadow: -8px 0 16px rgba(245,124,0,0.08);
}

/* Trust items — orange glow on hover (no layout shift) */
.trust-item {
  border-left: 2px solid transparent;
  transition: background var(--transition), border-color var(--transition);
}

.trust-item:hover {
  border-left-color: rgba(245,124,0,0.5);
}

/* Industry cards — bottom orange accent + stronger glow */
.industry-card {
  position: relative;
}

.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--clr-orange), transparent);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.industry-card:hover::after {
  transform: scaleX(1);
}

.industry-icon {
  box-shadow: 0 0 16px rgba(245,124,0,0.1);
  transition: box-shadow var(--transition), background var(--transition);
}

.industry-card:hover .industry-icon {
  background: rgba(245,124,0,0.12);
  box-shadow: 0 0 24px rgba(245,124,0,0.25);
}

/* Hub node icon — stronger hover glow */
.hub-node:hover .hub-node-icon {
  box-shadow: 0 0 20px rgba(245,124,0,0.5), 0 0 40px rgba(245,124,0,0.2), 0 0 60px rgba(245,124,0,0.08);
}

/* Service modal — brighter orange border + glow */
.svc-modal {
  border-color: rgba(245,124,0,0.4);
  box-shadow: 0 0 0 1px rgba(245,124,0,0.1),
              0 0 60px rgba(245,124,0,0.12),
              0 24px 64px rgba(0,0,0,0.7);
}

/* Mobile service cards — left accent bar */
.svc-card-mobile {
  border-left: 2px solid rgba(245,124,0,0.15);
  transition: border-color var(--transition), border-left-color var(--transition),
              transform var(--transition), box-shadow var(--transition);
}

.svc-card-mobile:hover {
  border-left-color: var(--clr-orange);
}

/* Storm checklist — icon glow */
.storm-checklist li svg {
  filter: drop-shadow(0 0 4px rgba(245,124,0,0.6));
  flex-shrink: 0;
}

/* Header phone — subtle glow on hover */
.header-phone:hover {
  text-shadow: 0 0 12px rgba(245,124,0,0.4);
}

/* Footer contact links — glow on hover */
.footer-contact-link:hover {
  text-shadow: 0 0 10px rgba(245,124,0,0.3);
}

/* Footer creds — orange glow */
.footer-creds span {
  text-shadow: 0 0 10px rgba(245,124,0,0.3);
}

/* ── Stat block fill content ── */
.stat-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,124,0,0.3), transparent);
  margin: 24px 0;
}

.stat-phone-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-headline);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--clr-white);
  margin-bottom: 24px;
  transition: color var(--transition);
  text-shadow: 0 0 20px rgba(245,124,0,0.2);
}

.stat-phone-cta:hover {
  color: var(--clr-orange);
  text-shadow: 0 0 20px rgba(245,124,0,0.5);
}

.stat-phone-cta svg {
  filter: drop-shadow(0 0 4px rgba(245,124,0,0.5));
}

.stat-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(245,124,0,0.1);
  border: 1px solid rgba(245,124,0,0.12);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 18px;
}

.stat-mini {
  background: var(--clr-dark-3);
  padding: 14px 8px;
  text-align: center;
  transition: background var(--transition);
}

.stat-mini:hover {
  background: rgba(245,124,0,0.06);
}

.stat-mini-value {
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clr-orange);
  letter-spacing: 0.5px;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-mini-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--clr-gray-3);
  text-transform: uppercase;
  line-height: 1.3;
}

.stat-footnote {
  font-size: 0.72rem;
  color: var(--clr-gray-2);
  text-align: center;
  line-height: 1.8;
}

/* Why section — about blurb below credentials list */
.why-about-blurb {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--clr-gray-3);
  line-height: 1.75;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

/* ==============================================
   INDUSTRIAL BACKGROUNDS — diagonal lines,
   I-beam silhouettes, orange/grey glow blobs,
   corner bracket accents, power rings
   ============================================== */

/* ── Services section — concentric power rings ── */
.services-section {
  position: relative;
  overflow: hidden;
}

.services-bg-rings {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

.sbr-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,124,0,0.1);
  transform: translate(-50%, -50%);
  top: 0; left: 0;
}

.sbr-ring--1 { width: 440px; height: 440px; border-color: rgba(245,124,0,0.12); }
.sbr-ring--2 { width: 680px; height: 680px; border-color: rgba(245,124,0,0.07); }
.sbr-ring--3 { width: 940px; height: 940px; border-color: rgba(245,124,0,0.04); }

/* Diagonal dot-grid overlay on services section */
.services-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      -52deg,
      transparent 0,
      transparent 42px,
      rgba(245,124,0,0.028) 42px,
      rgba(245,124,0,0.028) 43px
    ),
    repeating-linear-gradient(
      38deg,
      transparent 0,
      transparent 72px,
      rgba(255,255,255,0.012) 72px,
      rgba(255,255,255,0.012) 73px
    );
}

/* Make sure services content sits above decoratives */
.services-section .container { position: relative; z-index: 1; }

/* ── Industries section — structural I-beam SVGs ── */
.industries-section {
  position: relative;
  overflow: hidden;
}

.industries-bg-beams {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.industries-bg-beams svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.industries-section .container { position: relative; z-index: 1; }

/* Orange glow behind left beam */
.industries-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 300px; height: 100%;
  background: radial-gradient(ellipse 120px 60% at 0% 60%, rgba(245,124,0,0.07) 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Grey glow behind right beam */
.industries-section::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 100%;
  background: radial-gradient(ellipse 120px 60% at 100% 40%, rgba(160,160,160,0.05) 0%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* Diagonal stripe on industries cards area */
.industries-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -60deg,
    transparent 0,
    transparent 36px,
    rgba(255,255,255,0.014) 36px,
    rgba(255,255,255,0.014) 37px
  );
  pointer-events: none;
  border-radius: inherit;
}

/* ── Why / About section ── */
.why-section {
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 480px; height: 480px;
  background: radial-gradient(ellipse at top right, rgba(245,124,0,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.why-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -48deg,
      transparent 0,
      transparent 44px,
      rgba(245,124,0,0.02) 44px,
      rgba(245,124,0,0.02) 45px
    );
  pointer-events: none;
  z-index: 0;
}

.why-section .container { position: relative; z-index: 1; }

/* ── Storm section — big bolt SVG ── */
.storm-bg-bolt {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 160px;
  opacity: 0.055;
  pointer-events: none;
  z-index: 0;
  filter: blur(1px);
}

/* ── Sales section diagonal stripe + left glow ── */
.sales-section {
  position: relative;
  overflow: hidden;
}

.sales-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 80% at 0% 55%, rgba(245,124,0,0.055) 0%, transparent 60%),
    repeating-linear-gradient(
      -44deg,
      transparent 0,
      transparent 38px,
      rgba(255,255,255,0.013) 38px,
      rgba(255,255,255,0.013) 39px
    );
  pointer-events: none;
  z-index: 0;
}

.sales-section .container { position: relative; z-index: 1; }

/* ── Parts section diagonal stripe + right glow ── */
.parts-section {
  position: relative;
  overflow: hidden;
}

.parts-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 35% 70% at 100% 45%, rgba(140,140,140,0.05) 0%, transparent 65%),
    repeating-linear-gradient(
      -50deg,
      transparent 0,
      transparent 34px,
      rgba(255,255,255,0.014) 34px,
      rgba(255,255,255,0.014) 35px
    );
  pointer-events: none;
  z-index: 0;
}

.parts-section .container { position: relative; z-index: 1; }

/* ── Service area section — orange right glow ── */
.service-area-section {
  position: relative;
  overflow: hidden;
}

.service-area-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 100% 50%, rgba(245,124,0,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.service-area-section .container { position: relative; z-index: 1; }

/* ── Contact section diagonal stripe ── */
.contact-section {
  position: relative;
  overflow: hidden;
}

.contact-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 30% 50% at 50% 0%, rgba(245,124,0,0.05) 0%, transparent 70%),
    repeating-linear-gradient(
      -56deg,
      transparent 0,
      transparent 46px,
      rgba(245,124,0,0.018) 46px,
      rgba(245,124,0,0.018) 47px
    );
  pointer-events: none;
  z-index: 0;
}

.contact-section .container { position: relative; z-index: 1; }

/* ── Orange corner bracket accents on real photo panels ── */
/* Top-left bracket */
.storm-image-wrap::before,
.sales-image-wrap::before,
.parts-image-wrap::before,
.service-area-map-wrap::before {
  content: '';
  position: absolute;
  top: 14px; left: 14px;
  width: 28px; height: 28px;
  border-top: 2px solid rgba(245,124,0,0.8);
  border-left: 2px solid rgba(245,124,0,0.8);
  z-index: 4;
  pointer-events: none;
  border-radius: 2px 0 0 0;
  filter: drop-shadow(0 0 6px rgba(245,124,0,0.5));
}

/* Bottom-right bracket */
.storm-image-wrap::after,
.sales-image-wrap::after,
.parts-image-wrap::after,
.service-area-map-wrap::after {
  content: '';
  position: absolute;
  bottom: 14px; right: 14px;
  width: 28px; height: 28px;
  border-bottom: 2px solid rgba(245,124,0,0.8);
  border-right: 2px solid rgba(245,124,0,0.8);
  z-index: 4;
  pointer-events: none;
  border-radius: 0 0 2px 0;
  filter: drop-shadow(0 0 6px rgba(245,124,0,0.5));
}

/* ── Stronger orange rim on all section-label spans ── */
.section-label {
  text-shadow: 0 0 20px rgba(245,124,0,0.65), 0 0 40px rgba(245,124,0,0.25);
}

/* ── Trust strip — stronger orange glow on hover ── */
.trust-item:hover {
  box-shadow: 0 0 0 1px rgba(245,124,0,0.25), 0 4px 24px rgba(245,124,0,0.1);
}

/* ── Industry cards — more dramatic hover glow ── */
.industry-card:hover {
  box-shadow: 0 0 0 1px rgba(245,124,0,0.2), 0 8px 40px rgba(245,124,0,0.12), 0 2px 8px rgba(0,0,0,0.4);
}

/* ── Hub center — stronger bloom glow (no square border) ── */
.hub-center {
  box-shadow: none;
}

/* ── Hub nodes — orange edge glow on hover ── */
.hub-node:hover .hub-node-icon {
  box-shadow: 0 0 0 1px rgba(245,124,0,0.35), 0 0 20px rgba(245,124,0,0.3);
}

/* ── Primary button — sharper orange glow ── */
.btn-primary:hover {
  box-shadow: 0 0 0 1px rgba(245,124,0,0.4), 0 4px 32px rgba(245,124,0,0.35), 0 2px 8px rgba(0,0,0,0.4);
}

/* ── Section divider accent bar (top of select sections) ── */
.why-section .container::before,
.industries-section .container::before {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-orange), transparent);
  margin-bottom: 12px;
  opacity: 0.7;
}

/* ── Services section — ensure container above rings ── */
.hub-wrap { position: relative; z-index: 1; }
.services-section-header { position: relative; z-index: 1; }

/* ==============================================
   THEMATIC INDUSTRIAL ELEMENTS — round 2
   Power symbols, crackle arcs, rain streaks,
   hazard stripes, circuit traces, scan line
   ============================================== */

/* ── Hero: large power button symbol (upper-right) ── */
.hero-power-symbol {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 480px;
  height: 480px;
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
  animation: powerSymbolPulse 6s ease-in-out infinite;
}

.hero-power-symbol svg {
  width: 100%;
  height: 100%;
}

@keyframes powerSymbolPulse {
  0%, 100% { opacity: 0.035; transform: scale(1); }
  50%       { opacity: 0.065; transform: scale(1.015); }
}

/* ── Hero: electrical crackle arcs ── */
.hero-crackle {
  position: absolute;
  right: 8%;
  top: 10%;
  width: 220px;
  height: 380px;
  pointer-events: none;
  z-index: 0;
}

.hero-crackle svg {
  width: 100%;
  height: 100%;
}

.crackle-a {
  animation: crackleFlash 4.5s ease-in-out infinite;
  opacity: 0.12;
}

.crackle-b {
  animation: crackleFlash 4.5s ease-in-out infinite 1.8s;
  opacity: 0.08;
}

.crackle-c {
  animation: crackleFlash 4.5s ease-in-out infinite 3.1s;
  opacity: 0.06;
}

@keyframes crackleFlash {
  0%, 88%, 100% { opacity: 0; }
  90%, 94%      { opacity: 0.22; }
  92%           { opacity: 0.08; }
  96%           { opacity: 0.18; }
}

/* ── Storm: diagonal rain streaks ── */
.storm-rain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: repeating-linear-gradient(
    108deg,
    transparent 0,
    transparent 7px,
    rgba(180,210,255,0.028) 7px,
    rgba(180,210,255,0.028) 8px,
    transparent 8px,
    transparent 18px,
    rgba(180,210,255,0.018) 18px,
    rgba(180,210,255,0.018) 18.5px
  );
  animation: rainDrift 8s linear infinite;
}

@keyframes rainDrift {
  0%   { background-position: 0 0; }
  100% { background-position: -200px 600px; }
}

/* ── Industries: hazard warning stripe band ── */
.hazard-stripe-band {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 10px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(245,124,0,0.22) 0px,
    rgba(245,124,0,0.22) 10px,
    rgba(0,0,0,0.35) 10px,
    rgba(0,0,0,0.35) 20px
  );
  pointer-events: none;
  z-index: 2;
}

/* Second hazard stripe at the bottom */
.hazard-stripe-band::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0; right: 0;
  height: 10px;
  background: repeating-linear-gradient(
    -45deg,
    rgba(245,124,0,0.22) 0px,
    rgba(245,124,0,0.22) 10px,
    rgba(0,0,0,0.35) 10px,
    rgba(0,0,0,0.35) 20px
  );
}

/* ── Services: animated horizontal scan line ── */
.services-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(245,124,0,0.0) 20%,
    rgba(245,124,0,0.5) 48%,
    rgba(255,160,0,0.8) 50%,
    rgba(245,124,0,0.5) 52%,
    rgba(245,124,0,0.0) 80%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
  animation: scanSweep 8s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(245,124,0,0.4), 0 0 20px rgba(245,124,0,0.15);
}

@keyframes scanSweep {
  0%   { top: 10%; opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { top: 90%; opacity: 0; }
}

/* ── Contact: PCB circuit trace SVG ── */
.contact-circuit {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 360px;
  pointer-events: none;
  z-index: 0;
  opacity: 1;
}

.contact-circuit svg {
  width: 100%;
  height: 100%;
}

/* ── Hero: z-index stacking (above dark overlay, below text) ── */
.hero-power-symbol { z-index: 1; }
.hero-crackle      { z-index: 1; }
.hero-grid-overlay { z-index: 1; }
.hero-section .container { position: relative; z-index: 2; }
