/* ============================================================
   PROOF CONSTRUCTION — 2026 MASTER THEME
   Cyber-Industrial Design System — Consolidated v8
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --black:       #0a0a0a;
  --charcoal:    #111111;
  --dark:        #1a1a1a;
  --dark-2:      #222222;
  --dark-3:      #2a2a2a;
  --gray:        #888888;
  --light-gray:  #cccccc;
  --white:       #ffffff;
  --orange:      #ff6600;
  --orange-light:#ff8533;
  --orange-glow: rgba(255,102,0,0.35);
  --orange-dim:  rgba(255,102,0,0.12);

  --glass-bg:    rgba(255,255,255,0.04);
  --glass-bg-2:  rgba(255,255,255,0.07);
  --glass-border:rgba(255,255,255,0.08);
  --glass-border-hover:rgba(255,102,0,0.3);

  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading:'Oswald', 'Inter', sans-serif;

  --section-pad:  clamp(60px, 8vw, 120px);
  --container-max: 1280px;

  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--light-gray);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color 0.3s var(--ease); }
a:hover { color: var(--orange-light); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 0 8px rgba(255,107,0,0.85), 0 0 22px rgba(255,107,0,0.55);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1rem, 2vw, 1.4rem); }

p { margin-bottom: 1em; }
body, p, li, a, span, label, blockquote, td, th, dt, dd, small, strong, em, b, i, cite, figcaption, .section-label, .hero-subtitle, .hero-badge, .btn, .stat-value, .stat-label, .trust-ticker span {
  text-shadow: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 4px; }

/* ============================================================
   NAVIGATION — Sticky Floating Glass Nav
   ============================================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}

.site-nav.scrolled {
  padding: 10px 0;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(20px) saturate(1.8);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px);
}

.nav-logo img {
  height: 45px;
  width: auto;
  transition: height 0.3s var(--ease);
}

.site-nav.scrolled .nav-logo img { height: 36px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex-shrink: 0;
}

.nav-links li { position: relative; }

.nav-links a {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.3s var(--ease);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-shadow: 0 0 5px rgba(255, 102, 0, 0.2);
}

.nav-links a:hover {
  color: var(--orange);
  background: var(--glass-bg-2);
  text-shadow: 0 0 12px rgba(255, 107, 0, 0.9), 0 0 20px rgba(255, 107, 0, 0.4);
}

/* Dropdown - Pure CSS */
.nav-links .dropdown { position: relative; }
.nav-links .dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -20px;
  right: -20px;
  height: 30px;
  background: transparent;
  z-index: 10;
}

.nav-links .dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  min-width: 260px;
  background: rgba(15,15,15,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,102,0,0.15);
  border-top: 3px solid var(--orange);
  border-radius: 12px;
  padding: 8px;
  list-style: none;
  transition: all 0.3s var(--ease);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 20px rgba(255,102,0,0.05);
  z-index: 99999;
  margin: 0;
}

.nav-links .dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.82rem;
  border-radius: 8px;
  color: var(--light-gray);
  text-transform: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(255,102,0,0.1);
  color: var(--orange);
  padding-left: 20px;
}

.dropdown-menu li { width: 100%; border-bottom: none; }
.dropdown-menu li:last-child { border-bottom: none; }

/* Nav CTA */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

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

.nav-phone i { color: var(--orange); }

/* Nav special links */
.pe-link {
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--orange);
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.pe-link:hover {
  background: rgba(255,102,0,0.1);
  box-shadow: inset 0 0 10px rgba(255,102,0,0.2);
}

.storm-link {
  color: #00d4ff;
  font-weight: 800;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid #00d4ff;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.storm-link:hover {
  background: rgba(0,212,255,0.1);
  box-shadow: 0 0 10px rgba(0,212,255,0.15);
}

.storm-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  margin-right: 5px;
  animation: pulse-live 1.5s infinite;
  vertical-align: middle;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}

/* Get Quote button */
.get-quote-btn, .btn-quote {
  background: linear-gradient(135deg, var(--orange) 0%, #cc5200 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(255,102,0,0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.get-quote-btn:hover, .btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,102,0,0.5);
  background: linear-gradient(135deg, var(--orange-light) 0%, #e65c00 100%);
}

/* Nav phone link */
.nav-phone-link {
  color: var(--orange);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.nav-phone-link:hover { color: #fff; text-shadow: 0 0 15px var(--orange); }

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 10px 12px;
  position: relative;
  z-index: 10001;
  background: var(--orange);
  border-radius: 8px;
  border: none;
  transition: all 0.3s var(--ease);
}

.nav-burger:hover {
  background: var(--orange-light);
  transform: scale(1.05);
}

.nav-burger span {
  width: 22px;
  height: 2.5px;
  background: #000000;
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.nav-burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(5,5,5,0.6);
  backdrop-filter: blur(24px) saturate(1.4);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.5s;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  padding: 24px 28px 100px;
  box-sizing: border-box;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay > * {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.mobile-menu-overlay.active > * {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-overlay > *:nth-child(1) { transition-delay: 0.05s; }
.mobile-menu-overlay > *:nth-child(2) { transition-delay: 0.10s; }
.mobile-menu-overlay > *:nth-child(3) { transition-delay: 0.15s; }
.mobile-menu-overlay > *:nth-child(4) { transition-delay: 0.20s; }
.mobile-menu-overlay > *:nth-child(5) { transition-delay: 0.25s; }
.mobile-menu-overlay > *:nth-child(6) { transition-delay: 0.30s; }
.mobile-menu-overlay > *:nth-child(7) { transition-delay: 0.35s; }
.mobile-menu-overlay > *:nth-child(8) { transition-delay: 0.40s; }
.mobile-menu-overlay > *:nth-child(9) { transition-delay: 0.45s; }
.mobile-menu-overlay > *:nth-child(10) { transition-delay: 0.50s; }
.mobile-menu-overlay > *:nth-child(11) { transition-delay: 0.55s; }
.mobile-menu-overlay > *:nth-child(12) { transition-delay: 0.60s; }
.mobile-menu-overlay > *:nth-child(13) { transition-delay: 0.65s; }

.mobile-logo-container { text-align: center; margin-bottom: 20px; }
.mobile-logo { height: 38px; filter: drop-shadow(0 0 12px rgba(255,107,0,0.3)); }

#mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.6rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
#mobile-close:hover {
  background: rgba(255,107,0,0.2);
  border-color: var(--orange);
  box-shadow: 0 0 20px rgba(255,107,0,0.15);
}

.mobile-menu-overlay > a:not(.mobile-sub) {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  margin: 2px 0;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent;
  border: none;
}
.mobile-menu-overlay > a:not(.mobile-sub):hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
  transform: translateX(4px);
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  margin: 2px 0;
  color: rgba(255,255,255,0.8);
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  text-align: left;
  font-family: inherit;
}
.mobile-menu-toggle:hover {
  background: rgba(255,255,255,0.06);
  color: #fff;
}
.mobile-menu-toggle i:first-child { width: 20px; color: var(--orange); }
.mobile-menu-toggle i:last-child {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}
.mobile-menu-toggle.active i:last-child { transform: rotate(180deg); }

.mobile-dropdown-content {
  display: none;
  padding-left: 16px;
  margin-left: 8px;
  border-left: 1px solid rgba(255,107,0,0.15);
}
.mobile-dropdown-content.active {
  display: block;
}

.mobile-sub {
  display: block;
  padding: 12px 18px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 10px;
  transition: all 0.3s;
}
.mobile-sub:hover {
  color: #fff;
  background: rgba(255,107,0,0.1);
  transform: translateX(4px);
}

.mobile-menu-overlay > a[href*="project-engineer"] {
  margin-top: 16px;
  background: rgba(255,102,0,0.08);
  border: 1px solid rgba(255,102,0,0.3);
  color: var(--orange);
  font-weight: 800;
  text-align: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(255,102,0,0.05);
}
.mobile-menu-overlay > a[href*="project-engineer"]:hover {
  background: rgba(255,102,0,0.15);
  border-color: var(--orange);
  box-shadow: 0 0 30px rgba(255,102,0,0.15);
}

.mobile-menu-overlay > a[href*="storm-tracker"] {
  margin-top: 8px;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.2);
  color: #00d4ff;
  font-weight: 700;
  justify-content: center;
}
.mobile-menu-overlay > a[href*="storm-tracker"]:hover {
  background: rgba(0,212,255,0.12);
  border-color: #00d4ff;
}

.mobile-phone-block {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.mobile-phone-block a {
  color: var(--orange);
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 20px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img,
.hero-bg video,
.hero-bg iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(0);
  transform: translateZ(0);
  backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.7) 0%, rgba(10,10,10,0.85) 50%, rgba(10,10,10,0.95) 100%);
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-dim);
  border: 1px solid rgba(255,102,0,0.25);
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero h1 {
  margin-bottom: 20px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.5);
}

.hero h1 .highlight {
  color: var(--orange);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--light-gray);
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */

.page-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 140px 20px 80px;
  text-align: center;
  flex-direction: column;
  border-bottom: 1px solid rgba(255,102,0,0.15);
}

.page-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(10,10,10,0.8) 0%, rgba(10,10,10,0.92) 100%);
}

.page-hero h1 { margin-bottom: 16px; }

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 16px;
}

.breadcrumb a { color: var(--orange); }
.breadcrumb span { color: var(--gray); }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--orange);
  color: #000000;
  box-shadow: 0 4px 25px var(--orange-glow);
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--orange-glow);
  color: #000000;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--glass-border);
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-dim);
}

.btn-glass {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}

.btn-glass:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--orange);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ============================================================
   GLASSMORPHISM CARDS
   ============================================================ */

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px) saturate(1.5);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}

.glass-card:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 30px var(--orange-dim);
}

.glass-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.glass-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.glass-card p { color: var(--gray); font-size: 0.95rem; margin-bottom: 16px; }

/* ============================================================
   BLOG / HUB CARDS — Color-Coded Category System
   ============================================================ */

.blog-card, .asset-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card:hover, .asset-card:hover {
  border-color: var(--card-color, var(--orange));
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 30px rgba(255,102,0,0.08);
}

.asset-card .card-icon {
  font-size: 1.8rem;
  color: var(--card-color, var(--orange));
  margin-bottom: 16px;
  transition: transform 0.4s var(--ease-bounce);
}

.asset-card:hover .card-icon {
  transform: scale(1.1) rotate(3deg);
}

.asset-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--white);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.asset-card p {
  color: var(--gray);
  font-size: 0.88rem;
  margin-bottom: 16px;
  flex-grow: 1;
  line-height: 1.6;
}

.asset-card .card-footer {
  color: var(--card-color, var(--orange));
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--glass-border);
  transition: gap 0.3s var(--ease);
}

.asset-card:hover .card-footer {
  gap: 12px;
}

.asset-card .tag-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--card-color, var(--orange));
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 4px;
}

/* Blog Category Section */
.blog-cat-section {
  padding-top: 40px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.blog-cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.blog-cat-bar {
  width: 4px;
  height: 30px;
  background: var(--card-color, var(--orange));
  border-radius: 2px;
  flex-shrink: 0;
}

.blog-cat-header i {
  font-size: 1.2rem;
  color: var(--card-color, var(--orange));
  flex-shrink: 0;
}

.blog-cat-header h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 1rem;
  color: var(--white);
  margin: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-dark { background: var(--charcoal); }
.section-darker { background: var(--black); }
.section-gradient {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--black) 100%);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto clamp(40px, 5vw, 70px);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--orange);
  opacity: 0.4;
}

.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--gray); font-size: 1.05rem; }

/* ============================================================
   BENTO GRID
   ============================================================ */

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

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

/* Hub / Premium Grid (used on blog hub) */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.hub-section {
  padding: 50px 0;
}

.hub-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
}

.hub-section-header i {
  color: var(--orange);
  font-size: 1.5rem;
}

.hub-section-header h2 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
}

.hub-section-header .line {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,102,0,0.3), transparent);
}

.hub-hero {
  padding: 140px 20px 40px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ============================================================
   STATS COUNTER BAR
   ============================================================ */

.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  padding: 50px 0;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  transition: all 0.3s var(--ease);
}

.stat-item:hover {
  border-color: var(--glass-border-hover);
  transform: translateY(-3px);
}

.stat-icon {
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 12px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   SERVICE AREAS BADGES
   ============================================================ */

.area-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--glass-bg-2);
  border: 1px solid var(--glass-border);
  color: var(--light-gray);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.3s var(--ease);
}

.area-badge i { color: var(--orange); font-size: 0.7rem; }
.area-badge:hover { border-color: var(--orange); color: var(--orange); }

/* ============================================================
   IMAGE GALLERY
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay i {
  color: var(--white);
  font-size: 1.5rem;
  background: var(--orange);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--orange);
  opacity: 0.3;
  position: absolute;
  top: 16px;
  left: 24px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--light-gray);
  margin-bottom: 20px;
  padding-top: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-stars { color: var(--orange); font-size: 0.85rem; }

.testimonial-name {
  font-weight: 600;
  color: var(--white);
  font-size: 0.9rem;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--glass-bg);
  transition: border-color 0.3s var(--ease);
}

.faq-item.active { border-color: var(--glass-border-hover); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  color: var(--white);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.3s;
}

.faq-question:hover { color: var(--orange); }

.faq-question i {
  transition: transform 0.3s var(--ease);
  color: var(--orange);
  font-size: 0.8rem;
}

.faq-item.active .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
  padding: 0 24px;
  color: var(--gray);
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 24px;
}

/* ============================================================
   FORMS
   ============================================================ */

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.form-group {
  flex: 1;
  min-width: 200px;
}

.form-input {
  width: 100%;
  padding: 14px 20px;
  background: var(--glass-bg-2);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
  outline: none;
}

.form-input::placeholder { color: var(--gray); }

.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 20px var(--orange-dim), 0 0 4px rgba(255,102,0,0.2);
  background: rgba(255,255,255,0.06);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.form-submit { width: 100%; }

/* ============================================================
   CTA BAR
   ============================================================ */

.cta-bar {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 100%);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.cta-bar h2 { margin-bottom: 24px; }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--charcoal);
  border-top: 1px solid var(--glass-border);
  position: relative;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding: 60px 0;
}

.footer-brand img {
  height: 50px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-license {
  font-size: 0.8rem;
  color: var(--gray);
  opacity: 0.7;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: var(--gray);
  font-size: 0.88rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover { color: var(--orange); }
.footer-links i { font-size: 0.75rem; color: var(--orange); width: 16px; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--gray);
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--orange);
  font-size: 0.85rem;
  margin-top: 4px;
  width: 16px;
}

.footer-contact-item a { color: var(--gray); }
.footer-contact-item a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--glass-border);
  font-size: 0.82rem;
  color: var(--gray);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a { color: var(--gray); }
.footer-bottom-links a:hover { color: var(--orange); }

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-dim);
}

/* ============================================================
   AI SUMMARY BOX
   ============================================================ */

.ai-summary-box {
  background: rgba(255,107,0,0.08);
  border: 1px solid var(--orange);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.ai-summary-box .ai-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--orange);
  color: #000;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom-left-radius: 8px;
}

.ai-summary-box h4 {
  margin-top: 0;
  color: var(--orange);
}

.ai-summary-box ul {
  margin-bottom: 0;
  padding-left: 20px;
  color: #eee;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ============================================================
   TWO-COLUMN LAYOUT
   ============================================================ */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: center;
}

.two-col-img {
  border-radius: 16px;
  overflow: hidden;
}

.two-col-img img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

/* ============================================================
   TRUST / AUTHORITY BAR
   ============================================================ */

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 40px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.trust-bar img {
  height: 50px;
  opacity: 0.5;
  transition: opacity 0.3s;
  filter: grayscale(1);
}

.trust-bar img:hover { opacity: 1; filter: none; }

/* ============================================================
   CONTENT — Article / Blog Post
   ============================================================ */

.article-content {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.9;
  color: #ccc;
}

.article-content h2 {
  margin-top: 2.5em;
  margin-bottom: 0.8em;
  font-size: 1.6rem;
}

.article-content h3 {
  margin-top: 2em;
  margin-bottom: 0.6em;
  font-size: 1.3rem;
}

.article-content ul, .article-content ol {
  margin: 1em 0;
  padding-left: 1.5em;
}

.article-content li { margin-bottom: 0.5em; }

.article-content img {
  border-radius: 12px;
  margin: 2em 0;
}

.article-content blockquote {
  border-left: 3px solid var(--orange);
  padding: 16px 24px;
  margin: 2em 0;
  background: var(--glass-bg);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--light-gray);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-animate="zoom"] { transform: scale(0.92); }
[data-animate="slide-left"] { transform: translateX(-40px); }
[data-animate="slide-right"] { transform: translateX(40px); }

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1) translateX(0);
}

[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }
[data-delay="6"] { transition-delay: 0.6s; }
[data-delay="7"] { transition-delay: 0.7s; }
[data-delay="8"] { transition-delay: 0.8s; }

/* ============================================================
   KEYFRAMES
   ============================================================ */

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 25px var(--orange-glow); }
  50%      { box-shadow: 0 4px 40px var(--orange-glow), 0 0 60px rgba(255,102,0,0.2); }
}

.pulse-glow { animation: pulse-glow 2.5s ease-in-out infinite; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.float-anim { animation: float 3s ease-in-out infinite; }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   DIVIDER & UTILITIES
   ============================================================ */

.divider {
  height: 1px;
  background: var(--glass-border);
  margin: 40px 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.mt-1 { margin-top: 16px; }
.mt-2 { margin-top: 32px; }
.mt-3 { margin-top: 48px; }
.mb-1 { margin-bottom: 16px; }
.mb-2 { margin-bottom: 32px; }
.mb-3 { margin-bottom: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ============================================================
   RANGE SLIDER & SELECT
   ============================================================ */

input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  background: transparent;
}
input[type=range]:focus { outline: none; }
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 8px;
  cursor: pointer;
  background: rgba(0,0,0,0.5);
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
}
input[type=range]::-webkit-slider-thumb {
  border: 4px solid var(--black);
  height: 28px;
  width: 28px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -11px;
  box-shadow: 0 0 15px rgba(255,102,0,0.4);
  transition: transform 0.2s;
}
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.15); }

select.form-input, select {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--dark);
  color: var(--white);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  padding: 12px 40px 12px 14px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s ease;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23ff6600%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 10px auto;
}
select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(255,102,0,0.15);
}
select option {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 10px;
}
select option:checked,
select option:hover {
  background-color: #2a2a2a;
  color: var(--orange);
}

/* ============================================================
   PANEL SYSTEM (Storm Tracker, etc)
   ============================================================ */

.panel {
  background: #111;
  border: 1px solid #222;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
}
.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #222;
}
.panel-title {
  font-family: 'Oswald', sans-serif;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.panel-tag {
  font-size: 0.7rem;
  padding: 4px 8px;
  border-radius: 4px;
  background: #222;
  color: #888;
}

/* Status Bar */
.status-bar {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.9);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 0.75rem;
  font-family: 'Inter', sans-serif;
  border-bottom: 1px solid #222;
}
.status-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  box-shadow: 0 0 10px var(--orange);
}
.active-text { color: var(--orange); font-weight: 700; }

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

@media (max-width: 1150px) {
  .nav-inner { padding: 8px 15px; }
  .nav-links { gap: 6px; }
  .nav-links a { font-size: 0.72rem; letter-spacing: 0; }
  .nav-phone { font-size: 0.8rem; }
  .get-quote-btn { font-size: 0.72rem; padding: 8px 14px; }
}

@media (max-width: 1024px) {
  .nav-links, .nav-cta.desktop-only { display: none; }
  .nav-burger { display: flex; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .bento-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .bento-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
}

@media (max-width: 992px) {
  body { padding-top: 90px; }
}

@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding: 0 15px; }
  .section { padding: 50px 0; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.4rem; }
  .hero { padding: 100px 15px 60px; min-height: 90vh; }
  .hero h2 { font-size: 1.8rem; line-height: 1.2; }
  .btn { padding: 12px 24px; font-size: 0.85rem; }
  .nav-inner { padding: 0 15px; }
  .nav-logo img { height: 32px; }
  .glass-card { padding: 20px; }
  .bento-grid { gap: 15px; }
  .section-header { margin-bottom: 30px; }
  .page-hero { padding: 120px 16px 60px; min-height: 35vh; }
  .nav-cta { display: none; }
  .footer-main { grid-template-columns: 1fr; text-align: center; }
  .footer-contact-item { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .footer-social { justify-content: center; }
  .bento-grid-2, .bento-grid-3, .bento-grid-4 { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .premium-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: stretch; }
  h1 { font-size: 1.8rem; }
}

/* ============================================================
   FORENSIC SUMMARY BOXES
   ============================================================ */

#ai-summary, .ai-summary-box { opacity: 0.9; }
#ai-summary > div:first-child, .ai-summary-box > div:first-child { font-weight: 600; opacity: 0.7; font-size: 0.75rem; }
#ai-summary strong, .ai-summary-box strong { font-weight: 600; opacity: 0.8; }
#ai-summary p, .ai-summary-box p { font-size: 0.9rem; opacity: 0.85; }

/* ============================================================
   DOMINATION MAP
   ============================================================ */

#domination-map {
  max-width: 1200px;
  margin: 40px auto;
  border: 3px solid var(--orange);
  border-radius: 4px;
  background-color: #1A1A1A;
}

/* ============================================================
   PULSE COMPOSITED KEYFRAME
   ============================================================ */

.pulse-glow { position: relative; }
.pulse-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  box-shadow: 0 0 15px rgba(255,102,0,0.8);
  opacity: 0;
  transition: opacity 0.3s ease;
  animation: pulse-composited 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
  pointer-events: none;
}

@keyframes pulse-composited {
  0% { transform: scale(0.95); opacity: 0; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0; }
}

/* ============================================================
   FOOTER LICENSE FIX
   ============================================================ */

.footer-license {
  color: #E65C00;
  font-weight: 800;
}

/* ============================================================
   SKIP LINK / SCREEN READER HIDE
   ============================================================ */

.skip-link, .screen-reader-text, [href="#main"] { display: none; }
.header-bleed-fix { display: none; }

/* ============================================================
   FONT DISPLAY SWAP PATCH
   ============================================================ */

@font-face { font-family: 'Font Awesome 5 Free'; font-display: swap; }
@font-face { font-family: 'Montserrat'; font-display: swap; }

/* ============================================================
   BLOG CATEGORY LABEL
   ============================================================ */

.blog-category {
  display: inline-block;
  background: rgba(255,102,0,0.12);
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}

/* ============================================================
   MOBILE RESPONSIVE OVERRIDES FOR TABLETS (993-1150px)
   ============================================================ */

@media (min-width: 993px) and (max-width: 1150px) {
  .nav-inner { padding: 8px 10px; }
  .nav-links { gap: 4px; }
  .nav-links a { font-size: 0.7rem; padding: 6px 10px; letter-spacing: 0; }
  .nav-phone { font-size: 0.78rem; }
  .nav-phone-link { font-size: 0.85rem; }
  .get-quote-btn { font-size: 0.7rem; padding: 6px 12px; }
  .nav-links li:last-child a { padding-right: 0; }
  .pe-link, .storm-link { font-size: 0.68rem; padding: 3px 8px; }
}
