

:root {
  --neon: var(--c-green);
  --muted: var(--c-text-muted);
  --muted-light: var(--c-text-soft);
  --bg-card: rgba(17, 24, 39, 0.95);
}

h1, h2, h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  letter-spacing: -0.02em;
}

.hero-badge {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(34, 197, 94, 0.06));
  border: 1px solid rgba(34, 197, 94, 0.35);
  padding: 0.65rem 1.6rem;
  border-radius: 0;
  font-weight: 500;
  font-size: 0.9rem;
  gap: 0.6rem;
  color: var(--neon);
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.15);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.hero-badge:hover {
  box-shadow: 0 6px 25px rgba(34, 197, 94, 0.2);
  border-color: var(--neon);
}

.content-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 10;
}

.scroll-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

.hero-content {
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-content .container-narrow {
  width: 100%;
  max-width: 850px; 
}

.hero-content .mb-3:first-child {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem !important;
}

.hero-content .mb-3:first-child .badge {
  min-height: 44px;
  white-space: nowrap;
}

.hero-content .mb-3:nth-child(2) {
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem !important;
}

.hero-content .mb-3:nth-child(2) h1 {
  font-size: 3.5rem !important; 
  line-height: 1.15 !important;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 1rem !important;
}

.hero-content .mb-3:nth-child(2) p {
  font-size: 1.25rem !important; 
  line-height: 1.5 !important;
  min-height: 32px;
  margin: 0;
}

.hero-content .mb-4 {
  min-height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem !important;
}

.hero-content .mb-4 p {
  font-size: 1.15rem !important; 
  line-height: 1.8 !important;
  min-height: 140px;
  max-width: 780px;
}

.nav-bar {
  overflow-x: clip; 
  width: 100%;
  max-width: 100vw; 
}

.nav-bar::after {
  
  max-width: 100vw;
  left: 0;
  right: 0;
}

.nav-menu {
  overflow: visible; 
  flex-wrap: nowrap; 
}

@media (max-width: 1189px) {
  .nav-bar {
    overflow-x: clip !important; 
    overflow-y: visible !important; 
    max-width: 100vw;
  }

  
  .nav-menu {
    overflow-y: auto !important;
    overflow-x: hidden !important;
    max-width: 100vw;
  }
}

@media (max-width: 1189px) {
  .content-wrapper { padding: 1.5rem 1rem; }
  .scroll-section { min-height: auto; padding: 2rem 0; }
  .service-card { padding: 1.5rem; }

  .hero-content {
    min-height: 700px;
  }
  
  .hero-content .container-narrow {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .hero-content .mb-3:first-child {
    min-height: 45px;
    margin-bottom: 1rem !important;
  }

  .hero-content .mb-3:nth-child(2) {
    min-height: 200px;
    margin-bottom: 1.5rem !important;
  }
  
  .hero-content .mb-3:nth-child(2) h1 {
    font-size: 2rem !important; 
    min-height: 120px !important;
    line-height: 1.2 !important;
  }
  
  .hero-content .mb-3:nth-child(2) p {
    font-size: 1rem !important; 
    min-height: 28px;
  }

  .hero-content .mb-4 {
    min-height: 180px;
    margin-bottom: 1.5rem !important;
  }
  
  .hero-content .mb-4 p {
    font-size: 1rem !important; 
    line-height: 1.7 !important;
    min-height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in-up { animation-duration: 120ms !important; }
}

html, body {
  overflow-x: clip !important;
  max-width: 100%;
}

section:not(.hero-viewport), .container, .container-narrow {
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

body.home main, body.home .content-wrapper, body.home .container, body.home .container-narrow {
  position: relative;
  z-index: 2;
}

.stat-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

img[loading="lazy"] {
  min-height: 1px;
  min-width: 1px;
}

[data-lazy] {
  
  min-height: inherit;
}

[data-lazy].loaded {
  
  transition: opacity 0.3s ease-in;
}

section[data-lazy-section] {
  
  opacity: 1;
}

section[data-lazy-section].loaded {
  opacity: 1;
}

@media (max-width: 1189px) {
  
  section:nth-of-type(n+3) {
    content-visibility: auto;
    contain-intrinsic-size: 600px;
  }
  
  section[data-lazy-section] {
    content-visibility: auto;
    contain-intrinsic-size: 700px;
  }
}

@media (min-width: 1190px) {
  section[data-lazy-section] {
    
    content-visibility: visible;
  }

  section:nth-of-type(n+3) {
    content-visibility: visible;
  }
}

section:not(.fragment-branch-compliance):not(.benefits-section) {
  margin: 0;
  box-sizing: border-box;
}

section#hero {
  background: linear-gradient(180deg, rgba(34,197,94,0.03), rgba(2,6,23,0.0));
  padding-top: 4rem;
  padding-bottom: 4rem;
}
section#hero .container-narrow { max-width: 980px; text-align: center; }
section#hero h1 { color: #ffffff; font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 800; margin: 0 0 1rem; }
section#hero p { color: var(--muted); font-size: 1.1rem; margin: 0 0 1.25rem; }
section#hero .btn { min-width: 160px; }

section#benefits { 
  background: transparent;
}
section#benefits .container { max-width: var(--site-max-width, 1100px); }

section#industries { 
  background: transparent;
}

section#branch_compliance { 
  background: transparent;
}
section#branch_compliance .container { max-width: 1100px; }
section#branch_compliance h2 { color: var(--neon); }

section[data-lazy-url*="services"] { 
  background: transparent;
}
.service-card { background: var(--bg-card); padding: 2rem; border-radius: 0; color: var(--muted-light); }

.stat-box { background: rgba(17,24,39,0.9); padding: 1.5rem; border-radius: 0; color: var(--muted-light); }

main > section + section { border-top: none; }

.btn:focus { outline: 3px solid rgba(34,197,94,0.18); outline-offset: 3px; }

