
/* ------------------------------- section - Navbar ----------------------------------------- */




/* End Section - Navbar */


/* -------------------------------------------------------------------------------------------------------- */


/* Footer Style */


@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

.main-footer {
  background: #0b0f2b; /* Deepened to premium rich midnight navy */
  padding-top: 80px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #94a3b8;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Luxury Soft Radial Glows */
.footer-glow-accent {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
  z-index: 1;
}

.mb-40 { margin-bottom: 40px; }
.mb-30 { margin-bottom: 30px; }

/* --- ARCHITECTURAL HEADINGS --- */
.main-footer .title {
  /* font-family: 'Plus Jakarta Sans', sans-serif; */
  font-family: 'Sitka Display', serif;
  font-size: 1.55rem;
  color: #10b981; /* High contrast energetic green accent tag */
  margin-bottom: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* --- PREMIUM LINKS STRUCTURING --- */
.cmp-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cmp-links li { 
  margin-bottom: 14px; 
}

.cmp-links li a {
  text-decoration: none;
  color: #cbd5e1;
  font-size: 0.935rem;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-block;
  opacity: 0.85;
}

.cmp-links li a:hover {
  color: #ffffff;
  opacity: 1;
  transform: translateX(4px);
}

/* --- PRECISE ALIGNED END DECK --- */
.footer-column-end {
  display: flex;
  flex-direction: column;
}

/* --- SOCIAL BUTTON PLATFORM MODIFICATION --- */
/* --- THE SOCIAL CONTAINER CONTAINER --- */
.social-premium-container {
  padding: 0;
  margin-top: 40px;
  margin-bottom: 40px;
  display: flex;
  justify-content: flex-start;
}

.social-links-row {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 14px; /* Enhanced geometric layout separation */
}

/* --- THE LINK CARD (PREMIUM DEEP GLASSMORPHISM) --- */
.social-link {
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #94a3b8; /* Calmed down initial brand color for premium layout neutrality */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 14px; /* Sleeker hyper-smooth squircle geometry */
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05), 
              0 4px 12px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  
  /* Advanced hardware-accelerated micro timing physics */
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: visible;
}

/* --- AMBIENT GLOW BACKDROP LAYER --- */
.social-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0) 70%);
  border-radius: 14px;
  z-index: 1;
  transform: scale(0.7);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- LOGO / VECTOR ICONS CONTROL --- */
.social-link i, 
.social-link svg {
  position: relative;
  z-index: 2;
  font-size: 0.95rem;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========================================================
   HIGH-END INTERACTIVE HOVER ENGINE PHENOMENA
   ======================================================== */
.social-link:hover {
  transform: translateY(-5px) scale(1.02);
  color: #ffffff; /* Illuminates icon crisp white on hover state */
  border-color: rgba(16, 185, 129, 0.35); /* Elegant premium brand border glow tint */
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.1),
              0 12px 24px -6px rgba(16, 185, 129, 0.25), 
              0 20px 40px -12px rgba(0, 0, 0, 0.4);
}

.social-link:hover .social-bg {
  transform: scale(1.2);
  opacity: 1;
}

.social-link:hover i,
.social-link:hover svg {
  transform: scale(1.05);
}

/* ========================================================
   PREMIUM MINIMALIST TOOLTIP LUXURY SYSTEM
   ======================================================== */
.social-tooltip {
  position: absolute;
  bottom: -38px; /* Perfectly aligned clear layout position */
  background: rgba(15, 23, 42, 0.85); /* Premium matte dark glass overlay */
  color: #e2e8f0;
  padding: 5px 11px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase; /* Clean editorial tracking look */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px) scale(0.95);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Seamless activation tracking triggers */
.social-link:hover .social-tooltip {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* --- CERTIFICATION SPACE BRANDING --- */
.cert-box {
  margin-top: 5px;
}

.certificate {
  max-width: 200px;
  height: auto;
  /* filter: grayscale(1) brightness(1.4) contrast(0.9);
  opacity: 0.6; */
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.certificate:hover {
  filter: none;
  opacity: 1;
}

/* ========================================================
   SUB-FOOTER SYSTEM - FIXED ROW FLEX LOGIC
   ======================================================== */
.sub-footer {  
  background: #080b21;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 24px 0;
  margin-top: 60px;
}

.sub-footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Perfect fluid tracking across screen scales */
  gap: 24px; 
  flex-wrap: wrap;
}

.policy-links {
  display: flex;
  align-items: center;
}

.policy-links a {
  font-size: 0.815rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #94a3b8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy-links a:hover { 
  color: #ffffff; 
}

.divider { 
  color: rgba(255, 255, 255, 0.08); 
  margin: 0 16px; 
  font-size: 0.85rem;
}

.copyright-text p {
  font-size: 0.815rem;
  font-weight: 400;
  color: #64748b;
  margin: 0;
  letter-spacing: 0.01em;
}

/* ========================================================
   STRICT RESPONSIVE HARDWARE BREAKPOINTS
   ======================================================== */
@media (max-width: 991px) {
  .main-footer { 
    padding-top: 60px; 
  }
  .social-premium-container { 
    justify-content: flex-start; 
  }
  .sub-footer-flex {
    flex-direction: column;
    align-items: flex-start; /* Clean stack matching corporate layouts */
    gap: 16px;
  }
  .cmp-links li a:hover { 
    transform: none; 
  }
}

@media (max-width: 767px) {
  /* Aligns grid reading structure cleanly on tablet vertical/mobile layouts */
  .main-footer {
    text-align: left;
  }
  .main-footer .title {
    margin-top: 15px;
    margin-bottom: 16px;
  }
  .mb-40 {
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
  .main-footer {
    padding-top: 48px;
  }
  .social-links-row {
    gap: 10px;
  }
  .social-link {
    width: 40px;
    height: 40px;
  }
  .social-tooltip {
    display: none; /* Strip tooltip DOM calculations on touch screen frames */
  }
  .sub-footer {
    margin-top: 40px;
    padding: 20px 0;
  }
  .policy-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .divider {
    display: none; /* Safely hides standard pipes on micro rows */
  }
}


/* End - Footer Section */


/* ---------------------------------------------------------------------------------------------------------- */



/* Index Banner */




/* End Section - Index Banner */







/* Why Choose NeoEHS Architecture? */


@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --clay-bg-pure: #ffffff;
  --clay-bg-alt: #f8fafc;
  --clay-text-lead: #0f172a;
  --clay-text-body: #475569;
  --clay-text-muted: #94a3b8;
  
  /* Precision Accent Colors */
  --clay-accent-cyan: #06b6d4;
  --clay-accent-violet: #6366f1;
  --clay-gradient-primary: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
  
  /* High-Fidelity Claymorphic Mechanical Specs */
  --clay-shadow-surface: 0 10px 30px rgba(15, 23, 42, 0.02), 0 30px 60px -12px rgba(15, 23, 42, 0.03);
  --clay-shadow-hover: 0 20px 40px -10px rgba(15, 23, 42, 0.05), 0 50px 80px -20px rgba(15, 23, 42, 0.06);
  --clay-inset-highlight: inset 0 4px 12px #ffffff;
  --clay-inset-shadow: inset 0 -8px 16px rgba(148, 163, 184, 0.06);
  
  --bezier-fluid: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: var(--clay-bg-pure);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: var(--clay-text-lead);
  -webkit-font-smoothing: antialiased;
}

.premium-editorial-container {
  max-width: 1600px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: row;
  min-height: 100vh;
  background: var(--clay-bg-pure);
}

/* ====================================================
   LEFT COLUMN: STICKY BRAND & META PANEL
   ==================================================== */
.editorial-sticky-panel {
  position: sticky;
  top: 0;
  width: 40%;
  height: 100vh;
  padding: 100px 60px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(15, 23, 42, 0.04);
  overflow: hidden;
  z-index: 20;
}

/* Volumetric Ambient Lighting Layers */
.editorial-sticky-panel::before {
  content: '';
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.03) 0%, rgba(99, 102, 241, 0.02) 60%, transparent 100%);
  z-index: -1;
  pointer-events: none;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--clay-accent-violet);
}

.brand-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--clay-gradient-primary);
  border-radius: 50%;
  position: relative;
}

.brand-badge .dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1.5px solid rgba(99, 102, 241, 0.3);
  border-radius: 50%;
  animation: badgePulse 2.5s infinite ease-out;
}

@keyframes badgePulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.editorial-header-group h2 {
  font-family: 'Sitka Display', serif;
  font-size: 70px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--clay-text-lead);
  margin: 36px 0 24px 0;
}

.editorial-header-group h2 span {
  font-family: 'Sitka Display', serif;
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--clay-text-muted);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.editorial-header-group h2 strong {
  font-family: 'Sitka Display', serif;
  font-size: 76px;
  font-weight: 800;
  background: var(--clay-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.editorial-lead-text {
  font-size: 1.05rem;
  color: var(--clay-text-body);
  line-height: 1.75;
  font-weight: 500;
}

.editorial-meta-stack {
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  padding-top: 40px;
}

.meta-metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.meta-metric-item span {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--clay-text-muted);
  margin-bottom: 6px;
}

.meta-metric-item p {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--clay-text-lead);
}

/* ====================================================
   RIGHT COLUMN: SCROLLING CLAYMORPHIC POD ENGINE
   ==================================================== */
.editorial-scrolling-flow {
  width: 60%;
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.flow-row-strip {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 40px;
  padding: 44px 40px;
  background: #ffffff;
  border-radius: 32px;
  border: 1px solid rgba(226, 232, 240, 0.7);
  
  /* Claymorphic Mechanical Stack Base */
  box-shadow: var(--clay-shadow-surface), var(--clay-inset-highlight), var(--clay-inset-shadow);
  
  opacity: 0;
  transform: translate3d(0, 60px, 0);
  transition: 
    opacity 1.2s var(--bezier-fluid), 
    transform 1.2s var(--bezier-fluid), 
    box-shadow 0.5s var(--bezier-fluid), 
    border-color 0.5s var(--bezier-fluid), 
    background-color 0.5s var(--bezier-fluid);
  will-change: transform, opacity;
}

.flow-row-strip.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.flow-index-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-index-number {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--clay-text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* High-End Tactile Glass Inner Capsule */
.flow-icon-glass-capsule {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 8px 20px rgba(15, 23, 42, 0.03),
    inset 0 2px 4px #ffffff,
    inset 0 -2px 4px rgba(148, 163, 184, 0.05);
  transition: all 0.6s var(--bezier-fluid);
}

.glass-vector-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clay-text-body);
  transition: all 0.5s var(--bezier-fluid);
}

.glass-vector-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-content-block h3,
.flow-content-block h4,
.flow-content-block h5 {
  font-family: 'Sitka Display', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--clay-text-lead);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.3;
  transition: color 0.4s ease;
}

.flow-content-block p {
  font-size: 16px;
  color: var(--clay-text-body);
  line-height: 1.7;
  font-weight: 400;
  max-width: 720px;
}

/* ====================================================
   KINETIC INTERACTIVE STATES (CLAYMorphic TRANSFORMS)
   ==================================================== */
.flow-row-strip:hover {
  background-color: #ffffff;
  border-color: rgba(99, 102, 241, 0.15);
  box-shadow: var(--clay-shadow-hover), var(--clay-inset-highlight), inset 0 -4px 12px rgba(15, 23, 42, 0.01);
  transform: translateY(-4px) scale(1.01);
}

/* Color Dynamic Accent Transformations */
.flow-row-strip[data-accent="cyan"]:hover .flow-icon-glass-capsule { background: #ecfeff; border-color: #cffafe; color: #0891b2; }
.flow-row-strip[data-accent="violet"]:hover .flow-icon-glass-capsule { background: #f5f3ff; border-color: #ddd6fe; color: #6d28d9; }
.flow-row-strip[data-accent="emerald"]:hover .flow-icon-glass-capsule { background: #ecfdf5; border-color: #d1fae5; color: #059669; }
.flow-row-strip[data-accent="rose"]:hover .flow-icon-glass-capsule { background: #fff1f2; border-color: #ffe4e6; color: #e11d48; }
.flow-row-strip[data-accent="amber"]:hover .flow-icon-glass-capsule { background: #fffbeb; border-color: #fef3c7; color: #d97706; }

.flow-row-strip:hover .glass-vector-icon {
  transform: scale(1.08);
  color: inherit;
}

.flow-row-strip:hover .flow-content-block h3,
.flow-row-strip:hover .flow-content-block h4,
.flow-row-strip:hover .flow-content-block h5 {
  color: #000000;
}

/* ====================================================
   PREMIUM ARCHITECTURAL COMPLIANCE FOOTER
   ==================================================== */
.editorial-blueprint-footer {
  width: 100%;
  background: var(--clay-bg-alt);
  border-top: 1px solid rgba(15, 23, 42, 0.05);
  padding: 100px 80px;
  clear: both;
}

.footer-blueprint-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.footer-blueprint-lead {
  max-width: 800px;
  margin-bottom: 60px;
}

.footer-blueprint-lead span {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--clay-accent-cyan);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.footer-blueprint-lead h3 {
  font-family: 'Sitka Display', serif;
  font-size: 37px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--clay-text-lead);
  line-height: 1.25;
}

.footer-blueprint-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 50px;
}

.blueprint-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blueprint-col h4 {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--clay-text-lead);
  letter-spacing: 0.5px;
}

.blueprint-col p {
  font-size: 0.96rem;
  color: var(--clay-text-body);
  line-height: 1.75;
}

/* ====================================================
   ADVANCED FLEXIBLE RESPONSIVE GRID ENGINE
   ==================================================== */
@media (max-width: 1200px) {
  .premium-editorial-container { flex-direction: column; }
  .editorial-sticky-panel {
    position: relative;
    width: 100%;
    height: auto;
    padding: 80px 40px 40px 40px;
    border-right: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  }
  .editorial-header-group h2 { font-size: 38px; margin: 24px 0 16px 0; }
  .editorial-scrolling-flow { width: 100%; padding: 60px 40px; }
  .editorial-blueprint-footer { padding: 80px 40px; }
}

@media (max-width: 768px) {
  .editorial-sticky-panel { padding: 60px 24px 30px 24px; }
  .editorial-header-group h2 { font-size: 32px; }
  .meta-metric-row { grid-template-columns: 1fr; gap: 14px; }
  .editorial-scrolling-flow { padding: 40px 20px; gap: 24px; }
  .flow-row-strip { grid-template-columns: 1fr; gap: 24px; padding: 36px 28px; border-radius: 24px; }
  .flow-index-wrapper { flex-direction: row; justify-content: space-between; align-items: center; width: 100%; border-bottom: 1px solid #f1f5f9; padding-bottom: 16px; }
  .flow-index-number { margin-bottom: 0; }
  .flow-icon-glass-capsule { width: 52px; height: 52px; border-radius: 14px; }
  .glass-vector-icon { width: 20px; height: 20px; }
  .footer-blueprint-grid { grid-template-columns: 1fr; gap: 40px; }
  .editorial-blueprint-footer { padding: 60px 24px; }
  .footer-blueprint-lead h3 { font-size: 1.75px; }
}

@media (max-width: 480px) {
  .editorial-header-group h2 { font-size: 28px; }
  .flow-content-block h3, .flow-content-block h4, .flow-content-block h5 { font-size: 1.25rem; }
  .flow-content-block p { font-size: 0.95rem; }
  .flow-row-strip { padding: 28px 20px; }
}


 /* --------------- End Section -  Why Choose NeoEHS Architecture? ------------------------ */




/* One Intelligent EHS Software Platform for Workplace Safety, Compliance & ESG Management */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;600&display=swap');

:root {
  --bg-primary: #ffffff;
  --surface-primary: #ffffff;
  --surface-secondary: #f8fafc;
  --border-light: rgba(226, 232, 240, 0.8);
  --border-hover: rgba(203, 213, 225, 0.9);
  
  --text-main: #090d16;
  --text-sub: #475569;
  --text-muted: #94a3b8;
  
  --primary-blue: #2563eb;
  --primary-indigo: #4f46e5;
  --accent-teal: #0d9488;
  
  --brand-gradient: linear-gradient(135deg, #1d4ed8 0%, #2563eb 40%, #0d9488 100%);
  --glow-gradient: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(13, 148, 136, 0.08) 100%);
  
  --shadow-subtle: 0 4px 20px -2px rgba(15, 23, 42, 0.03);
  --shadow-hover: 0 12px 32px -4px rgba(15, 23, 42, 0.08);
  --shadow-active: 0 20px 40px -6px rgba(37, 99, 235, 0.12);
  --shadow-viewport: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
}

.enterprise-centerpiece-section {
  position: relative;
  background-color: var(--bg-primary);
  font-family: 'Plus Jakarta Sans', sans-serif;
  padding: 120px 24px;
  overflow: hidden;
  color: var(--text-main);
}

/* Background Layers */
.glow-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(226, 232, 240, 0.3) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(226, 232, 240, 0.3) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
}

.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.3;
}

.glow-blue {
  width: 600px;
  height: 600px;
  background: #60a5fa;
  top: -100px;
  left: 10%;
}

.glow-teal {
  width: 500px;
  height: 500px;
  background: #2dd4bf;
  bottom: -100px;
  right: 10%;
}

.ent-container {
  max-width: 1360px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

/* Header Design */
.ent-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 72px auto;
}

.ent-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 99px;
  background: rgba(241, 245, 249, 0.8);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(8px);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-blue);
  margin-bottom: 24px;
  box-shadow: var(--shadow-subtle);
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary-blue);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.ent-title {
  font-family: 'Sitka Display', serif;
  font-size: 49px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 20px 0;
}

.ent-gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ent-subtitle {
  font-size: 1.15rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin: 0 auto;
}

/* Grid Layout */
.ent-grid {
  display: grid;
  grid-template-columns: 1fr 480px 1fr;
  align-items: center;
  gap: 32px;
}

.ent-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Premium Navigation Cards */
.ent-card {
  position: relative;
  background: var(--surface-primary);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.card-glow {
  position: absolute;
  inset: 0;
  background: var(--glow-gradient);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.3s ease;
}

.active-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary-blue);
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.3s ease;
}

.card-content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
}

.card-content p {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.55;
  margin: 0;
}

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--brand-gradient);
  transition: width 0.35s ease;
}

/* Card Hover & Active States */
.ent-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.ent-card.active {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-active);
  background: var(--surface-primary);
}

.ent-card.active .card-glow {
  opacity: 1;
}

.ent-card.active .card-num {
  color: var(--primary-blue);
}

.ent-card.active .active-badge {
  opacity: 1;
  transform: translateY(0);
}

.ent-card.active .card-content h3 {
  color: var(--primary-blue);
}

.ent-card.active .progress-bar {
  width: 100%;
}

/* Center Viewport Module */
.ent-viewport-column {
  position: sticky;
  top: 40px;
}

.viewport-frame {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.frame-halo {
  position: absolute;
  inset: -12px;
  background: var(--brand-gradient);
  border-radius: 28px;
  opacity: 0.08;
  filter: blur(12px);
  transition: opacity 0.5s ease;
}

.viewport-chassis {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.12;
  background: var(--surface-primary);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  box-shadow: var(--shadow-viewport);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Top Window Control Header */
.window-bar {
  height: 38px;
  background: var(--surface-secondary);
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.window-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Screen and Slide Pipeline */
.viewport-screen {
  flex: 1;
  position: relative;
  background: #090d16;
  overflow: hidden;
}

.image-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Floating Live Tag */
.status-pill {
  position: absolute;
  bottom: -18px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--surface-primary);
  border: 1px solid var(--border-light);
  border-radius: 99px;
  box-shadow: var(--shadow-hover);
  z-index: 10;
}

.live-indicator {
  width: 6px;
  height: 6px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
}

.status-text {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-sub);
}

/* Responsive Adaptability */
@media (max-width: 1200px) {
  .ent-grid {
    grid-template-columns: 1fr 400px 1fr;
    gap: 24px;
  }
  .ent-title { font-size: 2.75rem; }
}

@media (max-width: 992px) {
  .enterprise-centerpiece-section { padding: 80px 20px; }
  
  .ent-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ent-viewport-column {
    order: -1;
    position: relative;
    top: 0;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .ent-column.side-left { order: 1; }
  .ent-column.side-right { order: 2; }
}

@media (max-width: 576px) {
  .enterprise-centerpiece-section { padding: 60px 16px; }
  .ent-title { font-size: 2.1rem; }
  .ent-subtitle { font-size: 1rem; }
  .ent-card { padding: 18px; }
}
/* End Section -  One Intelligent EHS Software Platform for Workplace Safety, Compliance & ESG Management */




/* Context-Aware AI for Modern EHS, HSE & ESG Management */


:root {
        --bg-canvas: #fafbfc;
        --bg-card: #ffffff;
        --bg-subtle: #f1f5f9;
        
        --text-primary: #0f172a;
        --text-secondary: #334155;
        --text-muted: #64748b;
        
        --brand-blue: #2563eb;
        --brand-blue-hover: #1d4ed8;
        --brand-dark: #091e42;
        --brand-soft-bg: #eff6ff;
        
        --border-light: #e2e8f0;
        
        --shadow-card: 0 4px 20px -2px rgba(15, 23, 42, 0.04), 0 2px 6px -1px rgba(15, 23, 42, 0.02);
        --shadow-elevated: 0 20px 40px -12px rgba(15, 23, 42, 0.08), 0 8px 16px -6px rgba(15, 23, 42, 0.04);
        --shadow-glow: 0 10px 30px -5px rgba(37, 99, 235, 0.3);

        --radius-sm: 12px;
        --radius-md: 16px;
        --radius-lg: 24px;
        --radius-pill: 9999px;
        
        --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    body {
        background-color: var(--bg-canvas);
        font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
        color: var(--text-secondary);
        line-height: 1.6;
        -webkit-font-smoothing: antialiased;
    }

    /* SECTION CONTAINER */
    .ehs-hero-pro-section {
        position: relative;
        padding: clamp(60px, 8vw, 100px) 0 clamp(80px, 10vw, 120px) 0;
        overflow: hidden;
        background: radial-gradient(120% 80% at 50% 0%, #ffffff 30%, #f8fafc 100%);
    }

    .ehs-hero-pro-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(148, 163, 184, 0.15) 1px, transparent 1px);
        background-size: 32px 32px;
        mask-image: radial-gradient(circle at 50% 30%, black 30%, transparent 80%);
        -webkit-mask-image: radial-gradient(circle at 50% 30%, black 30%, transparent 80%);
        pointer-events: none;
    }

    .pro-restrictor {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 clamp(16px, 4vw, 32px);
        position: relative;
        z-index: 1;
    }

    /* HEADER BLOCK */
    .pro-editorial-header {
        max-width: 900px;
        margin: 0 auto clamp(40px, 6vw, 80px) auto;
        text-align: center;
    }

    .pro-pill-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 20px;
        border-radius: var(--radius-pill);
        background: #ffffff;
        border: 1px solid rgba(37, 99, 235, 0.2);
        color: var(--brand-blue);
        font-size: clamp(0.75rem, 1.5vw, 0.8125rem);
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        margin-bottom: 24px;
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.06);
    }

    .pro-badge-pulse {
        width: 8px;
        height: 8px;
        background: var(--brand-blue);
        border-radius: 50%;
        position: relative;
        flex-shrink: 0;
    }

    .pro-badge-pulse::after {
        content: '';
        position: absolute;
        inset: -4px;
        border-radius: 50%;
        border: 1.5px solid var(--brand-blue);
        animation: pulseRing 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    @keyframes pulseRing {
        0% { transform: scale(0.6); opacity: 1; }
        100% { transform: scale(2.2); opacity: 0; }
    }

    .pro-editorial-title {
        font-family: 'Sitka Display', Georgia, serif;
        font-size: 37px;
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -0.03em;
        color: var(--text-primary);
        margin-bottom: 20px;
    }

    .pro-editorial-title .highlight-gradient {
        background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-dark) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* Lead paragraph: Line clamp removed to display full content dynamically */
    .pro-editorial-lead {
        font-size: clamp(0.975rem, 1.8vw, 16px);
        color: var(--text-secondary);
        line-height: 1.75;
        font-weight: 400;
        max-width: 860px;
        margin: 0 auto;
        display: block;
        overflow: visible;
    }

    /* FEATURE GRID */
    .pro-streamline-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(16px, 3vw, 24px);
        margin-bottom: clamp(40px, 6vw, 80px);
    }

    .pro-stream-card {
        background: var(--bg-card);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-lg);
        padding: clamp(24px, 4vw, 36px);
        transition: var(--transition-smooth);
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        overflow: hidden;
        box-shadow: var(--shadow-card);
    }

    .pro-stream-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--brand-blue), transparent);
        opacity: 0;
        transition: var(--transition-smooth);
    }

    .pro-stream-card:hover {
        border-color: rgba(37, 99, 235, 0.3);
        box-shadow: var(--shadow-elevated);
        transform: translateY(-4px);
    }

    .pro-stream-card:hover::before {
        opacity: 1;
    }

    .pro-card-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 20px;
    }

    .pro-icon-frame {
        width: 52px;
        height: 52px;
        border-radius: var(--radius-md);
        background: var(--brand-soft-bg);
        border: 1px solid rgba(37, 99, 235, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition-smooth);
        flex-shrink: 0;
    }

    .pro-icon-frame svg {
        width: 24px;
        height: 24px;
        stroke: var(--brand-blue);
        transition: var(--transition-smooth);
    }

    .pro-stream-card:hover .pro-icon-frame {
        background: var(--brand-blue);
        border-color: var(--brand-blue);
    }

    .pro-stream-card:hover .pro-icon-frame svg {
        stroke: #ffffff;
    }

    .pro-node-serial {
        font-family: 'Space Grotesk', system-ui, sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--text-muted);
        letter-spacing: 0.08em;
        text-transform: uppercase;
        background: var(--bg-subtle);
        padding: 4px 10px;
        border-radius: var(--radius-pill);
    }

    .pro-node-narrative h3 {
        font-size: clamp(1.15rem, 2vw, 1.35rem);
        font-weight: 700;
        color: var(--text-primary);
        letter-spacing: -0.015em;
        margin-bottom: 8px;
    }

    .pro-node-narrative p {
        font-size: clamp(0.875rem, 1.5vw, 0.975rem);
        color: var(--text-secondary);
        line-height: 1.6;
        font-weight: 400;
    }

    /* EXECUTIVE FOOTER BOARD */
    .pro-footer-board {
        background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        border-radius: var(--radius-lg);
        padding: clamp(32px, 5vw, 56px) clamp(24px, 5vw, 64px);
        box-shadow: 0 24px 48px -12px rgba(15, 23, 42, 0.25);
        position: relative;
        overflow: hidden;
        color: #ffffff;
    }

    .pro-footer-board::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 300px;
        height: 100%;
        background: radial-gradient(circle at 100% 50%, rgba(37, 99, 235, 0.25), transparent 70%);
        pointer-events: none;
    }

    .pro-footer-layout {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: clamp(24px, 4vw, 48px);
        position: relative;
        z-index: 1;
    }

    .pro-footer-text h3 {
        font-size: clamp(1.35rem, 2.5vw, 1.85rem);
        font-weight: 800;
        letter-spacing: -0.025em;
        color: #ffffff;
        margin-bottom: 8px;
    }

    .pro-footer-text p {
        font-size: clamp(0.9rem, 1.5vw, 1.05rem);
        color: #94a3b8;
        line-height: 1.6;
        max-width: 640px;
    }

    .pro-hyper-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 16px 32px;
        background: var(--brand-blue);
        color: #ffffff;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        border-radius: var(--radius-pill);
        box-shadow: var(--shadow-glow);
        transition: var(--transition-smooth);
        white-space: nowrap;
    }

    .pro-hyper-cta:hover {
        background: var(--brand-blue-hover);
        transform: translateY(-2px);
        box-shadow: 0 16px 36px -4px rgba(37, 99, 235, 0.45);
    }

    .cta-arrow {
        transition: transform 0.25s ease;
    }

    .pro-hyper-cta:hover .cta-arrow {
        transform: translateX(4px);
    }

    /* RESPONSIVE BREAKPOINTS */
    @media (max-width: 900px) {
        .pro-streamline-grid {
            grid-template-columns: 1fr;
        }

        .pro-footer-layout {
            flex-direction: column;
            align-items: flex-start;
        }

        .pro-footer-action {
            width: 100%;
        }

        .pro-hyper-cta {
            width: 100%;
        }
    }

    @media (max-width: 480px) {
        .pro-pill-badge {
            width: 100%;
            justify-content: center;
        }

        .pro-card-header {
            align-items: flex-start;
        }
    }
/* End Section - Context-Aware AI for Modern EHS, HSE & ESG Management */





/* Improve Operational Performance with Connected EHS Workflows  */

:root {
    --primary: #0f172a;
    --primary-accent: #2563eb;
    --primary-accent-hover: #1d4ed8;
    --accent-light: #eff6ff;
    --success: #10b981;
    --text-dark: #0f172a;
    --text-muted: #475569;
    --text-light: #64748b;
    --bg-surface: #ffffff;
    --bg-alt: #f8fafc;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .ehs-outcomes-section {
    background-color: var(--bg-alt);
    padding: 80px 24px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.5;
  }

  .neo-container {
    max-width: 1280px;
    margin: 0 auto;
  }

  /* Two-Column Responsive Layout */
  .outcomes-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
  }

  @media (min-width: 1024px) {
    .outcomes-split-grid {
      grid-template-columns: 5fr 6fr;
      gap: 64px;
    }
  }

  /* Sticky Left Column */
  .outcomes-hero-card {
    position: relative;
  }

  @media (min-width: 1024px) {
    .outcomes-hero-card {
      position: sticky;
      top: 40px;
    }
  }

  /* Pill Tag */
  .tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent-light);
    color: var(--primary-accent);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 9999px;
    margin-bottom: 20px;
    border: 1px solid rgba(37, 99, 235, 0.15);
  }

  .tag-pill-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary-accent);
    border-radius: 50%;
  }

  /* Typography */
  .outcomes-hero-card h2 {
    font-family: 'Sitka Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--primary);
    line-height: 1.15;
    margin: 0 0 20px 0;
  }

  .main-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 32px 0;
  }

  /* Metrics Strip */
  .metrics-pod-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    background-color: var(--bg-surface);
    padding: 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
  }

  .metric-cell {
    text-align: center;
    padding: 8px;
  }

  .metric-cell:not(:last-child) {
    border-right: 1px solid var(--border-color);
  }

  .metric-cell h3 {
    font-size: clamp(1.5rem, 2.5vw, 2.25rem);
    font-weight: 800;
    color: var(--primary-accent);
    margin: 0;
    line-height: 1;
  }

  .metric-cell p {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-light);
    margin: 8px 0 0 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }

  /* Feature List */
  .checklist-wrapper {
    list-style: none;
    padding: 0;
    margin: 0 0 36px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .checklist-wrapper li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
  }

  .check-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #d1fae5;
    color: var(--success);
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
  }

  /* Primary CTA Button */
  .cta-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--primary-accent);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
    transition: var(--transition);
    width: 100%;
  }

  @media (min-width: 640px) {
    .cta-btn-primary {
      width: auto;
    }
  }

  .cta-btn-primary:hover {
    background-color: var(--primary-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
  }

  /* Right Side Card List */
  .benefits-asymmetric-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .asymmetric-item-card {
    background-color: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
  }

  .asymmetric-item-card:hover {
    border-color: var(--primary-accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
  }

  /* Number Badge */
  .hex-number-tag {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: var(--accent-light);
    color: var(--primary-accent);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
  }

  .item-text-body h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 8px 0;
  }

  .item-text-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
  }

  /* Responsive Tweaks */
  @media (max-width: 639px) {
    .ehs-outcomes-section {
      padding: 48px 16px;
    }

    .metrics-pod-container {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .metric-cell:not(:last-child) {
      border-right: none;
      border-bottom: 1px solid var(--border-color);
      padding-bottom: 16px;
    }

    .asymmetric-item-card {
      flex-direction: column;
      gap: 16px;
      padding: 20px;
    }
  }
/* End Section - Improve Operational Performance with Connected EHS Workflows */








/* Explore NeoEHS Software Solutions */


:root {
            --bg-canvas: #f8fafc;
            --surface-white: #ffffff;
            --surface-glass: rgba(255, 255, 255, 0.85);
            
            --text-title: #0f172a;
            --text-paragraph: #475569;
            --text-subtle: #64748b;
            
            --brand-blue: #2563eb;
            --brand-cyan: #06b6d4;
            --brand-amber: #d97706;
            --brand-emerald: #059669;
            
            --grad-brand: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
            --grad-accent-1: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
            --grad-accent-2: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            --grad-accent-3: linear-gradient(135deg, #10b981 0%, #047857 100%);
            
            --bento-border: 1px solid rgba(226, 232, 240, 0.9);
            --bento-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.04), 0 1px 3px 0 rgba(15, 23, 42, 0.02);
            --bento-shadow-hover: 0 20px 40px -10px rgba(37, 99, 235, 0.12), 0 0 0 2px rgba(37, 99, 235, 0.2);
            
            --radius-bento: 24px;
            --radius-pill: 9999px;
            --radius-block: 32px;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background-color: var(--bg-canvas);
            font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
            color: var(--text-paragraph);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .kinetic-wrapper {
            max-width: 1280px;
            margin: 0 auto;
            padding: 80px 24px;
        }

        .text-center {
            text-align: center;
        }

        /* ====================================================
           HEADER: GLOWING BADGE & MODERN TYPOGRAPHY
           ==================================================== */
        .kinetic-header-block {
            max-width: 800px;
            margin: 0 auto 56px auto;
        }

        .kinetic-tag-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: #eff6ff;
            border: 1px solid #dbeafe;
            border-radius: var(--radius-pill);
            color: var(--brand-blue);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 20px;
        }

        .kinetic-tag-badge span {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--brand-blue);
            box-shadow: 0 0 8px var(--brand-blue);
        }

        .kinetic-header-block h2 {
            font-family: 'Sitka Display', serif;
            font-size: clamp(2.2rem, 4vw, 3.2rem);
            font-weight: 800;
            color: var(--text-title);
            letter-spacing: -0.03em;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .kinetic-header-block h2 span {
            font-family: 'Sitka Display', serif;
            background: var(--grad-brand);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .kinetic-header-block p {
            font-size: 1.05rem;
            color: var(--text-paragraph);
            line-height: 1.7;
        }

        /* ====================================================
           PRIMARY CARDS: BENTO GRID CONCEPT
           ==================================================== */
        .bento-grid-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-bottom: 48px;
        }

        .bento-card-item {
            position: relative;
            background: var(--surface-white);
            border: var(--bento-border);
            border-radius: var(--radius-bento);
            padding: 36px 30px;
            box-shadow: var(--bento-shadow);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
            overflow: hidden;
        }

        /* Kinetic Accent Glow Lines */
        .bento-card-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: transparent;
            transition: background 0.35s ease;
        }

        .bento-card-item:nth-child(1):hover::after { background: var(--grad-accent-1); }
        .bento-card-item:nth-child(2):hover::after { background: var(--grad-accent-2); }
        .bento-card-item:nth-child(3):hover::after { background: var(--grad-accent-3); }

        .bento-card-item:hover {
            transform: translateY(-6px);
            box-shadow: var(--bento-shadow-hover);
            border-color: transparent;
        }

        .bento-icon-capsule {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.35rem;
            margin-bottom: 24px;
            transition: transform 0.35s ease;
        }

        .bento-card-item:nth-child(1) .bento-icon-capsule { background: #eff6ff; color: #2563eb; }
        .bento-card-item:nth-child(2) .bento-icon-capsule { background: #fffbebf5; color: #d97706; }
        .bento-card-item:nth-child(3) .bento-icon-capsule { background: #ecfdf5; color: #059669; }

        .bento-card-item:hover .bento-icon-capsule {
            transform: scale(1.1);
        }

        .bento-card-item h3 {
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-title);
            margin-bottom: 12px;
            letter-spacing: -0.01em;
        }

        .bento-card-item p {
            font-size: 0.95rem;
            color: var(--text-paragraph);
            line-height: 1.6;
            margin-bottom: 28px;
            flex-grow: 1;
        }

        .bento-card-action {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--brand-blue);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: gap 0.3s ease;
        }

        .bento-card-item:hover .bento-card-action {
            gap: 12px;
        }

        /* ====================================================
           SOLUTION NAVIGATION LINK STRIP
           ==================================================== */
        .kinetic-pill-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            max-width: 1050px;
            margin: 0 auto;
        }

        .kinetic-pill-link {
            padding: 12px 22px;
            background: var(--surface-white);
            border: var(--bento-border);
            border-radius: var(--radius-pill);
            color: var(--text-title);
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            box-shadow: var(--bento-shadow);
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .kinetic-pill-link:hover {
            background: var(--brand-blue);
            color: #ffffff;
            border-color: var(--brand-blue);
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -5px rgba(37, 99, 235, 0.3);
        }

        /* ====================================================
           SERVICES FEATURE BANNER
           ==================================================== */
        .kinetic-services-banner {
            margin-top: 72px;
            background: var(--surface-white);
            border: var(--bento-border);
            border-radius: var(--radius-block);
            padding: 56px 40px;
            box-shadow: var(--bento-shadow);
            position: relative;
            overflow: hidden;
        }

        .kinetic-services-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--grad-brand);
        }

        .kinetic-services-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .kinetic-services-content h3 {
            font-family: 'Sitka Display', serif;
            font-size: clamp(1.6rem, 3vw, 2.25rem);
            font-weight: 800;
            color: var(--text-title);
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }

        .kinetic-services-content p {
            font-size: 1rem;
            color: var(--text-paragraph);
            line-height: 1.75;
            margin-bottom: 16px;
        }

        .kinetic-btn-wrap {
            margin-top: 36px;
        }

        .kinetic-theme-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 14px 32px;
            background: var(--grad-brand);
            color: #ffffff;
            font-size: 0.95rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: var(--radius-pill);
            box-shadow: 0 8px 20px -4px rgba(37, 99, 235, 0.35);
            transition: all 0.3s ease;
        }

        .kinetic-theme-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 25px -4px rgba(37, 99, 235, 0.45);
        }

        /* ====================================================
           RESPONSIVE DESIGN
           ==================================================== */
        @media (max-width: 1024px) {
            .bento-grid-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .kinetic-wrapper {
                padding: 48px 16px;
            }

            .bento-grid-container {
                grid-template-columns: 1fr;
            }

            .kinetic-services-banner {
                padding: 36px 20px;
                border-radius: 20px;
            }

            .kinetic-pill-link {
                width: 100%;
                justify-content: space-between;
            }
        }

/* End Section -  Explore NeoEHS Software Solutions */



/* Industry-Specific EHS & HSE Solutions Built for Complex Operations */


:root {
    --bg-light-lux: #f8fafc;
    --card-glass-bg: rgba(255, 255, 255, 0.45);
    --card-glass-border: rgba(255, 255, 255, 0.6);
    --card-glass-hover-border: rgba(16, 185, 129, 0.35);
    
    --text-primary: #0f172a;
    --text-muted: #64748b;
    
    --primary-emerald: #10b981;
    --emerald-glow: rgba(16, 185, 129, 0.15);
    
    --radius-premium: 32px;
    --radius-button: 16px;
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Sitka Display',serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
  }

  .industries-section {
    position: relative;
    padding: 140px 0;
    background-color: var(--bg-light-lux);
    font-family: var(--font-body);
    color: var(--text-primary);
    overflow: hidden;
  }

  /* Ambient Radial Glow Engine */
  .ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(160px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.35;
  }
  .glow-1 {
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(16,185,129,0.4) 0%, rgba(255,255,255,0) 70%);
  }
  .glow-2 {
    bottom: -5%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(14,165,233,0.35) 0%, rgba(255,255,255,0) 70%);
  }


  /* Premium Split Header System */
  /* .section-control-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto 72px auto;
    padding: 0 40px;
    box-sizing: border-box;
  }

  .section-header-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 64px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    padding-bottom: 40px;
  }

  .header-left {
    max-width: 620px;
    flex-shrink: 0;
  }

  .header-right {
    max-width: 480px;
  }

  .section-micro-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--primary-emerald);
    margin-bottom: 16px;
    background: rgba(16, 185, 129, 0.08);
    padding: 6px 16px;
    border-radius: 100px;
  }

  .section-title {
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0;
    color: var(--text-primary);
  }

  .accent-dot {
    color: var(--primary-emerald);
    display: inline-block;
  }

  .section-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
  } */



  /* Premium Asymmetric Grid Header System */
  .section-control-wrapper {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    margin: 0 auto 92px auto;
    padding: 0 40px;
    box-sizing: border-box;
  }

  .section-header-unique {
    position: relative;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: flex-start;
    padding-top: 32px;
  }

  /* Architectural top border anchor */
  .header-architecture-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, 
      rgba(16, 185, 129, 0.4) 0%, 
      rgba(15, 23, 42, 0.08) 30%, 
      rgba(15, 23, 42, 0.02) 100%
    );
  }

  .header-grid-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  /* Refined Minimal Geometric Micro-Tag */
  .section-micro-tag {
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--primary-emerald);
    margin-bottom: 24px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(16, 185, 129, 0.02) 100%);
    padding: 8px 18px;
    border-radius: 4px; /* Crisp modern geometric radius instead of generic pill shape */
    border-left: 3px solid var(--primary-emerald);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.03);
  }

  /* Modern Editorial Luxury Title */
  .section-title {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--text-primary);
  }

  /* Subtle metallic/emerald gradient overlay for key tech phrasing */
  .title-gradient-accent {
    background: linear-gradient(135deg, #0f172a 30%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
  }

  /* Unique Geometric Title Accent instead of a standard period */
  .geometric-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--primary-emerald);
    margin-left: 6px;
    transform: rotate(45deg);
    box-shadow: 0 0 12px var(--primary-emerald);
  }

  /* Contextual Glassmorphism Box for Description */
  .header-grid-right {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .description-card-context {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.01);
    backdrop-filter: blur(8px);
  }

  .section-description {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin: 0 0 24px 0;
    font-weight: 400;
  }

  /* Micro-interaction helper for the horizontal slider loop */
  .interactive-cue-arrow {
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .cue-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    opacity: 0.8;
  }

  .pulse-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, var(--primary-emerald), transparent);
    position: relative;
    overflow: hidden;
  }

  .pulse-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: white;
    animation: linePulse 2.5s infinite linear;
  }

  @keyframes linePulse {
    0% { left: -100%; }
    100% { left: 130%; }
  }

  /* Responsive Engine Additions/Overrides */
  @media (max-width: 1200px) {
    .section-title { font-size: 48px; }
    .section-header-unique { gap: 40px; }
  }

  @media (max-width: 991px) {
    .section-header-unique {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    .description-card-context {
      padding: 24px;
    }
    .section-control-wrapper {
      margin-bottom: 54px;
    }
  }

  @media (max-width: 768px) {
    .section-control-wrapper {
      padding: 0 24px;
    }
    .section-title {
      font-size: 34px;
    }
    .section-micro-tag {
      margin-bottom: 16px;
    }
  }


  
  /* Infinite Scroll Viewport Track */
  .carousel-viewport {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    z-index: 2;
    mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  }

  .marquee-wrapper {
    display: flex;
    width: max-content;
    animation: continuousMarquee 50s linear infinite;
  }

  .industry-container {
    display: flex;
    gap: 40px;
    padding: 0 20px;
  }

  /* Asymmetric Glassmorphism Premium Frame */
  .industry-card {
    width: 420px;
    background: var(--card-glass-bg);
    border-radius: var(--radius-premium);
    overflow: hidden;
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border: 1px solid var(--card-glass-border);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
  }

  /* Fluid Curved Geometry Image Area */
  .card-img-wrapper {
    position: relative;
    height: 260px;
    margin: 16px 16px 0 16px;
    border-radius: 20px;
    overflow: hidden;
  }

  .card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(95%) brightness(95%);
    transition: var(--transition-smooth);
  }

  .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.1) 100%);
    transition: var(--transition-smooth);
  }

  .card-content {
    padding: 32px 36px 40px 36px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .card-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 14px 0;
    letter-spacing: -0.01em;
  }

  .card-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0 0 32px 0;
    font-weight: 400;
  }

  /* Floating Clean Control Button */
  .learn-more-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: #0f172a;
    border: 1px solid #0f172a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-button);
    transition: var(--transition-smooth);
    width: fit-content;
    box-sizing: border-box;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
  }

  .learn-more-btn svg {
    transition: var(--transition-smooth);
  }

  /* Premium Micro-Interactions */
  .industry-card:hover {
    transform: translateY(-14px) scale(1.01);
    border-color: var(--card-glass-hover-border);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(16, 185, 129, 0.05);
  }

  .industry-card:hover img {
    transform: scale(1.06);
  }

  .industry-card:hover .learn-more-btn {
    background: var(--primary-emerald);
    border-color: var(--primary-emerald);
    box-shadow: 0 10px 28px var(--emerald-glow);
  }

  .industry-card:hover .learn-more-btn svg {
    transform: translateX(6px);
  }

  .marquee-wrapper:hover,
  .marquee-wrapper:focus-within,
  .marquee-wrapper.is-paused {
    animation-play-state: paused;
  }

  @keyframes continuousMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* Responsive Engine */
  @media (max-width: 1200px) {
    .section-title { font-size: 44px; }
    .industry-card { width: 380px; }
  }

  @media (max-width: 991px) {
    .industries-section { padding: 100px 0; }
    .section-header-split { flex-direction: column; align-items: flex-start; gap: 24px; }
    .header-left { max-width: 100%; }
    .header-right { max-width: 100%; }
    .section-title { font-size: 38px; }
    .industry-card { width: 350px; }
    .card-content { padding: 24px 28px 32px 28px; }
  }

  @media (max-width: 768px) {
    .industries-section { padding: 80px 0; }
    
    .section-control-wrapper {
      padding: 0 24px;
      margin-bottom: 40px;
    }

    .section-header-split {
      padding-bottom: 24px;
      gap: 16px;
    }

    .section-title {
      font-size: 30px;
    }

    .section-description {
      font-size: 0.98rem;
    }

    .carousel-viewport {
      mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, #000 4%, #000 96%, transparent);
    }

    .industry-container { gap: 24px; padding: 0 12px; }
    .industry-card { width: 300px; border-radius: 24px; }
    .card-img-wrapper { height: 200px; margin: 12px 12px 0 12px; border-radius: 16px; }
    .card-content { padding: 24px; }
    .card-content h3 { font-size: 1.6rem; margin-bottom: 10px; }
    .card-content p { margin-bottom: 24px; font-size: 0.95rem; }
    .learn-more-btn { width: 100%; padding: 14px 20px; }
  }

  
/* End Section - Industry-Specific EHS & HSE Solutions Built for Complex Operations */




/* Resources */


/* Base Styles */
.neo-hub-resources-section {
  padding: 120px 24px;
  background: #ffffff; /* Clean white background */
  position: relative;
  overflow: hidden;
}

/* Premium Heading */
.neo-hub-header-group {
  text-align: center;
  margin-bottom: 80px;
}

.neo-hub-accent-pill {
  color: #7c3aed;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
  background: #f1f5f9;
  padding: 6px 16px;
  border-radius: 50px;
}

.neo-hub-prime-headline {
  font-family: 'Sitka Display', serif;
  font-size: 55px;
  color: #0f172a;
  margin: 20px 0;
  font-weight: 800;
}

.gradient-text {
  font-family: 'Sitka Display', serif;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.neo-hub-sub-headline {
  color: #64748b;
  font-size: 1.1rem;
}

/* Grid & Cards */
.neo-hub-deck-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1240px;
  margin: 0 auto;
}

.neo-hub-card-shell {
  height: 450px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  transition: transform 0.5s ease;
}

.neo-hub-back-canvas {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s ease;
}

.neo-hub-glass-plate {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 20px;
  transition: all 0.4s ease;
}

/* Hover Effects */
.neo-hub-deck-item:hover .neo-hub-card-shell { transform: translateY(-10px); }
.neo-hub-deck-item:hover .neo-hub-back-canvas { transform: scale(1.05); }
.neo-hub-deck-item:hover .neo-hub-glass-plate { background: rgba(255, 255, 255, 0.9); }

/* Responsive */
@media (max-width: 991px) {
  .neo-hub-deck-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 650px) {
  .neo-hub-deck-grid { grid-template-columns: 1fr; }
  .neo-hub-prime-headline { font-size: 2.5rem; }
}


/* End Section - Resources */




/* Driving Safer, Smarter & Compliant Operations */


@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --clay-hub-bg: #ffffff;
  --clay-text-dark: #0f172a;
  --clay-text-slate: #475569;
  --clay-gradient-primary: linear-gradient(135deg, #3b82f6 0%, #2dd4bf 100%);
  --clay-glow-1: rgba(59, 130, 246, 0.08);
  --clay-glow-2: rgba(45, 212, 191, 0.08);
  --bezier-fluid: cubic-bezier(0.34, 1.56, 0.64, 1);
  --marquee-speed: 35s;
}

.premium-clay-brands-hub {
  padding: 140px 24px;
  background-color: var(--clay-hub-bg);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  position: relative;
  overflow: hidden;
}

/* Soft Volumetric Clay Backdrops */
.clay-ambient-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}
.clay-ambient-sphere.sphere-left {
  width: 450px;
  height: 450px;
  background: var(--clay-glow-1);
  top: -10%;
  left: -5%;
}
.clay-ambient-sphere.sphere-right {
  width: 500px;
  height: 500px;
  background: var(--clay-glow-2);
  bottom: -15%;
  right: -5%;
}

.clay-hub-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* ====================================================
   ASYMMETRIC EDITORIAL HEADING LAYOUT
   ==================================================== */
.clay-editorial-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: flex-end;
  margin-bottom: 80px;
}

.clay-meta-identity {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.clay-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: var(--clay-text-slate);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 20px;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.clay-badge-dot {
  width: 6px;
  height: 6px;
  background: #2dd4bf;
  border-radius: 50%;
  position: relative;
}
.clay-badge-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(45, 212, 191, 0.4);
  animation: clayBadgePulse 2s infinite ease-out;
}

@keyframes clayBadgePulse {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.clay-editorial-title {
  font-family: 'Sitka Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--clay-text-dark);
  margin: 0;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.clay-gradient-chroma {
  background: var(--clay-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.clay-editorial-description {
  font-size: 1.1rem;
  color: var(--clay-text-slate);
  line-height: 1.7;
  margin: 0;
  font-weight: 500;
  border-left: 3px solid #e2e8f0;
  padding-left: 28px;
  margin-bottom: 8px;
}

/* ====================================================
   CLAYMORPHIC TRACK ENGINE
   ==================================================== */
.clay-marquee-viewport {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 24px 0;
}

/* Soft fading gradient edge elements to melt boundaries */
.clay-marquee-viewport::before,
.clay-marquee-viewport::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 200px;
  z-index: 15;
  pointer-events: none;
}
.clay-marquee-viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--clay-hub-bg) 15%, transparent 100%);
}
.clay-marquee-viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--clay-hub-bg) 15%, transparent 100%);
}

.clay-marquee-track {
  display: flex;
  width: max-content;
}

.clay-marquee-loop {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 36px;
  padding-right: 36px;
  animation: clayMarqueeScroll var(--marquee-speed) linear infinite;
}

@keyframes clayMarqueeScroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-100%, 0, 0); }
}

.clay-marquee-track:hover .clay-marquee-loop {
  animation-play-state: paused;
}

/* Smooth Soft-Shell Clay Pill Structural Frame */
.clay-brand-capsule {
  width: 220px;
  height: 110px;
  background: #ffffff;
  border-radius: 40px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  box-sizing: border-box;
  cursor: pointer;
  
  /* Dual-Depth Clay Shadow Engine (Outward Soft + Inward Light Highlight) */
  box-shadow: 
    0 10px 20px rgba(15, 23, 42, 0.02),
    0 24px 48px -8px rgba(15, 23, 42, 0.03),
    inset 0 -8px 16px rgba(148, 163, 184, 0.05),
    inset 0 4px 10px #ffffff;
    
  transition: 
    transform 0.5s var(--bezier-fluid), 
    box-shadow 0.5s var(--bezier-fluid), 
    border-color 0.5s var(--bezier-fluid),
    background-color 0.5s var(--bezier-fluid);
}

.clay-brand-capsule img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  /* filter: grayscale(100%) opacity(0.5); */
  transition: all 0.5s var(--bezier-fluid);
}

/* Kinetic Interactive Morph States */
.clay-brand-capsule:hover {
  transform: translateY(-8px) scale(1.04);
  border-color: rgba(59, 130, 246, 0.2);
  background-color: var(--brand-hover-target, #ffffff);
  
  box-shadow: 
    0 20px 35px -10px rgba(15, 23, 42, 0.06),
    0 40px 70px -15px rgba(15, 23, 42, 0.04),
    inset 0 -4px 10px rgba(15, 23, 42, 0.01),
    inset 0 4px 12px #ffffff;
}

.clay-brand-capsule:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* ====================================================
   FLUID RESPONSIVE ENGINE
   ==================================================== */
@media (max-width: 1100px) {
  .clay-editorial-grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px; }
  .clay-editorial-description { border-left: none; padding-left: 0; }
  .clay-editorial-title { font-size: 38px; }
  .clay-marquee-viewport::before, .clay-marquee-viewport::after { width: 130px; }
}

@media (max-width: 768px) {
  .premium-clay-faq-hub { padding: 90px 20px; }
  .clay-editorial-title { font-size: 32px; }
  .clay-editorial-description { font-size: 1rem; }
  .clay-marquee-viewport::before, .clay-marquee-viewport::after { width: 70px; }
  .clay-brand-capsule { width: 180px; height: 94px; border-radius: 32px; padding: 12px 24px; }
  .clay-marquee-loop { gap: 24px; padding-right: 24px; }
}

@media (max-width: 480px) {
  .premium-clay-faq-hub { padding: 70px 16px; }
  .clay-editorial-title { font-size: 26px; }
  .clay-pill-badge { padding: 6px 14px; font-size: 0.7rem; }
  .clay-brand-capsule { width: 160px; height: 86px; border-radius: 28px; }
  .clay-marquee-viewport::before, .clay-marquee-viewport::after { width: 40px; }
}

/* End Section - Driving Safer, Smarter & Compliant Operations */




/* Frequently Asked Questions (FAQs) */


@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --clay-bg: #ffffff;
  --text-primary: #0f172a;
  --text-muted: #64748b;
  --clay-brand-gradient: linear-gradient(135deg, #0d9488 0%, #10b981 100%);
  --clay-brand-solid: #10b981;
  --bezier-bounce: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-speed: 0.5s;
}

.premium-clay-faq-hub {
  padding: 140px 24px;
  background-color: var(--clay-bg);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  position: relative;
  overflow: hidden;
}

/* Organic 3D Depth Soft Ambient Elements */
.faq-clay-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}
.faq-clay-blob.blob-top {
  width: 550px;
  height: 550px;
  background: #10b981;
  top: -10%;
  right: -5%;
}
.faq-clay-blob.blob-bottom {
  width: 650px;
  height: 650px;
  background: #0d9488;
  bottom: -15%;
  left: -5%;
}

.faq-central-container {
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* ====================================================
   PREMIUM EDITORIAL HEADLINE STRUCTURE
   ==================================================== */
.faq-header-assembly {
  text-align: center;
  margin-bottom: 70px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-micro-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 24px;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.faq-badge-pulse {
  width: 6px;
  height: 6px;
  background: var(--clay-brand-solid);
  border-radius: 50%;
  position: relative;
}
.faq-badge-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(16, 185, 129, 0.4);
  animation: badgePulseRing 2s infinite ease-out;
}

@keyframes badgePulseRing {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.faq-supreme-title {
  font-size: 52px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 20px 0;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.faq-gradient-text {
  background: var(--clay-brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-subtext-para {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ====================================================
   CLAYMORPHIC PILLED MATRIX ENGINE
   ==================================================== */
.faq-clay-matrix {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-matrix-row {
  background: #ffffff;
  border-radius: 32px;
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all var(--transition-speed) var(--bezier-bounce);
  
  /* High-End Soft Dual Inner Shadow Engine */
  box-shadow: 
    0 12px 24px rgba(15, 23, 42, 0.03),
    0 30px 60px -15px rgba(15, 23, 42, 0.03),
    inset 0 -10px 20px rgba(148, 163, 184, 0.06),
    inset 0 4px 12px #ffffff;
}

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

.faq-row-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 36px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-trigger-text {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  letter-spacing: -0.01em;
  transition: color var(--transition-speed) var(--bezier-bounce);
}

/* Rounded Geometric Clay Icon Button Frame */
.faq-icon-sphere {
  width: 40px;
  height: 40px;
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 20px;
  box-shadow: 
    0 4px 8px rgba(15, 23, 42, 0.02),
    inset 0 -3px 6px rgba(148, 163, 184, 0.1);
  transition: all var(--transition-speed) var(--bezier-bounce);
}

.faq-icon-sphere i {
  font-size: 0.9rem;
  color: #475569;
  transition: transform var(--transition-speed) var(--bezier-bounce), color var(--transition-speed) var(--bezier-bounce);
}

/* Clay Structural Interaction States */
.faq-matrix-row:hover {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: 
    0 20px 40px rgba(16, 185, 129, 0.05),
    0 45px 80px -20px rgba(15, 23, 42, 0.04),
    inset 0 -10px 20px rgba(16, 185, 129, 0.02),
    inset 0 4px 12px #ffffff;
}

.faq-matrix-row:hover .faq-trigger-text {
  color: var(--clay-brand-solid);
}

.faq-matrix-row:hover .faq-icon-sphere {
  background: #ffffff;
  border-color: rgba(16, 185, 129, 0.3);
  transform: scale(1.05);
}
.faq-matrix-row:hover .faq-icon-sphere i {
  color: var(--clay-brand-solid);
}

/* Expanded Dynamic Target Configurations */
.faq-matrix-row[open] {
  background: #ffffff;
  border-color: rgba(16, 185, 129, 0.35);
  box-shadow: 
    0 30px 60px -20px rgba(16, 185, 129, 0.08),
    inset 0 -12px 24px rgba(16, 185, 129, 0.04),
    inset 0 4px 12px #ffffff;
}

.faq-matrix-row[open] .faq-trigger-text {
  color: var(--clay-brand-solid);
}

.faq-matrix-row[open] .faq-icon-sphere {
  background: var(--clay-brand-gradient);
  border-color: transparent;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.25);
}

.faq-matrix-row[open] .faq-icon-sphere i {
  transform: rotate(180deg);
  color: #ffffff;
}

/* Interior Core Output Drawers */
.faq-row-body {
  padding: 0 36px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--transition-speed) var(--bezier-bounce), opacity var(--transition-speed) var(--bezier-bounce);
}

.faq-matrix-row[open] .faq-row-body {
  padding-bottom: 32px;
}

.faq-row-body p {
  margin: 0;
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.8;
  font-weight: 500;
}

/* ====================================================
   FLUID RESPONSIVE SCALING ADAPTATIONS
   ==================================================== */
@media (max-width: 1024px) {
  .faq-supreme-title { font-size: 42px; }
}

@media (max-width: 768px) {
  .premium-clay-faq-hub { padding: 90px 20px; }
  .faq-header-assembly { margin-bottom: 48px; }
  .faq-supreme-title { font-size: 32px; }
  .faq-subtext-para { font-size: 0.98rem; }
  
  .faq-clay-matrix { gap: 14px; }
  .faq-row-trigger { padding: 24px 24px; }
  .faq-trigger-text { font-size: 1.05rem; }
  .faq-icon-sphere { width: 34px; height: 34px; border-radius: 10px; margin-left: 12px; }
  .faq-row-body { padding: 0 24px; }
  .faq-matrix-row[open] .faq-row-body { padding-bottom: 24px; }
  .faq-row-body p { font-size: 0.98rem; line-height: 1.7; }
  
  .faq-matrix-row:hover { transform: none; }
}

@media (max-width: 480px) {
  .premium-clay-faq-hub { padding: 70px 14px; }
  .faq-supreme-title { font-size: 26px; }
  .faq-matrix-row { border-radius: 24px; }
  .faq-row-trigger { padding: 20px 18px; }
  .faq-row-body { padding: 0 18px; }
}

/* End Section - Frequently Asked Questions (FAQs) */



/* Client Testimonials */


:root {
      --neo-testi-bg: #ffffff;
      --neo-testi-card-bg: #ffffff;
      --neo-testi-card-border: #e2e8f0;
      
      --neo-testi-text-head: #0f172a;
      --neo-testi-text-body: #475569;
      --neo-testi-text-quote: #334155;
      --neo-testi-text-muted: #64748b;
      
      --neo-testi-brand: #2563eb;
      --neo-testi-grad: linear-gradient(135deg, #2563eb 0%, #0284c7 100%);
      
      --neo-testi-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
      --neo-testi-shadow-hover: 0 20px 40px -10px rgba(37, 99, 235, 0.12);
      
      --neo-testi-radius-card: 20px;
      --neo-testi-radius-pill: 9999px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--neo-testi-bg);
      font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
      color: var(--neo-testi-text-body);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* Section & Container */
    .neo-white-testi-section {
      padding: 90px 24px;
      background: var(--neo-testi-bg);
      position: relative;
    }

    .neo-white-testi-container {
      max-width: 1140px;
      margin: 0 auto;
    }

    /* Header Assembly */
    .neo-white-testi-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 32px;
      margin-bottom: 48px;
    }

    .neo-white-testi-title-block {
      max-width: 580px;
    }

    .neo-white-testi-badge {
      display: inline-flex;
      align-items: center;
      padding: 6px 14px;
      background: #eff6ff;
      border: 1px solid #dbeafe;
      border-radius: var(--neo-testi-radius-pill);
      color: var(--neo-testi-brand);
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .neo-white-testi-title {
      font-family: 'Sitka Display', serif;
      font-size: 50px;
      font-weight: 800;
      color: var(--neo-testi-text-head);
      letter-spacing: -0.03em;
      line-height: 1.2;
    }

    .neo-white-testi-lead {
      font-size: 0.98rem;
      color: var(--neo-testi-text-body);
      line-height: 1.65;
      max-width: 440px;
      font-weight: 500;
    }

    /* Slider Node Item */
    .neo-white-testi-node {
      padding: 10px 5px 25px 5px;
    }

    /* ====================================================
       WHITE THEME CARD CHASSIS
       ==================================================== */
    .neo-white-testi-card {
      position: relative;
      background: var(--neo-testi-card-bg);
      border: 1px solid var(--neo-testi-card-border);
      border-radius: var(--neo-testi-radius-card);
      padding: 32px 28px;
      box-shadow: var(--neo-testi-shadow);
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 290px;
    }

    /* Floating Accent Quote Icon */
    .neo-white-testi-quote-icon {
      position: absolute;
      top: 24px;
      right: 28px;
      width: 38px;
      height: 38px;
      background: #f1f5f9;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--neo-testi-brand);
      font-size: 0.95rem;
      pointer-events: none;
    }

    /* Star Ratings */
    .neo-white-testi-stars {
      margin-bottom: 18px;
      font-size: 0.85rem;
      display: flex;
      gap: 4px;
    }
    .neo-white-testi-stars .starchecked {
      color: #f59e0b;
    }
    .neo-white-testi-stars .fa-star-o, 
    .neo-white-testi-stars .fa-star-half-stroke {
      color: #cbd5e1;
    }

    /* Quote Text Typography */
    .neo-white-testi-text {
      font-size: 0.96rem;
      color: var(--neo-testi-text-quote);
      line-height: 1.65;
      font-weight: 500;
      margin-bottom: 24px;
      letter-spacing: -0.01em;
    }

    /* Identity Section & Avatar Ring */
    .neo-white-testi-identity {
      display: flex;
      align-items: center;
      gap: 16px;
      border-top: 1px solid #f1f5f9;
      padding-top: 20px;
    }

    .neo-white-testi-avatar-wrapper {
      flex-shrink: 0;
    }

    .neo-white-testi-avatar-ring {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      padding: 2px;
      background: var(--neo-testi-grad);
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

    .neo-white-testi-avatar-img {
      width: 100% !important;
      height: 100% !important;
      object-fit: cover;
      border-radius: 50%;
      background: #f8fafc;
    }

    .neo-white-testi-info {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .neo-white-testi-name {
      font-size: 1.02rem;
      font-weight: 700;
      color: var(--neo-testi-text-head);
      letter-spacing: -0.01em;
    }

    .neo-white-testi-role {
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--neo-testi-text-muted);
      margin: 0;
    }

    /* ====================================================
       HOVER STATES
       ==================================================== */
    .neo-white-testi-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--neo-testi-shadow-hover);
      border-color: rgba(37, 99, 235, 0.3);
    }

    .neo-white-testi-card:hover .neo-white-testi-avatar-ring {
      transform: scale(1.05);
    }

    /* ====================================================
       OWL CAROUSEL CUSTOM DOTS (ENTERPRISE THEME)
       ==================================================== */
    .owl-theme .owl-dots {
      margin-top: 20px !important;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
    }

    .owl-theme .owl-dots .owl-dot span {
      width: 10px;
      height: 10px;
      margin: 0;
      background: #cbd5e1;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      border-radius: var(--neo-testi-radius-pill);
    }

    .owl-theme .owl-dots .owl-dot.active span,
    .owl-theme .owl-dots .owl-dot:hover span {
      background: var(--neo-testi-brand);
      width: 26px;
    }

    /* ====================================================
       RESPONSIVE BREAKPOINTS
       ==================================================== */
    @media (max-width: 992px) {
      .neo-white-testi-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 36px;
      }
      .neo-white-testi-lead {
        max-width: 100%;
      }
    }

    @media (max-width: 640px) {
      .neo-white-testi-section {
        padding: 60px 16px;
      }
      .neo-white-testi-title {
        font-size: 1.75rem;
      }
      .neo-white-testi-card {
        padding: 24px 20px;
        min-height: auto;
      }
      .neo-white-testi-avatar-ring {
        width: 56px;
        height: 56px;
      }
    }

/* End Section - Client Testimonials */



/* Looking for a Complete EHS Management System? */

:root {
      --neo-cta-bg: #ffffff;
      --neo-cta-card-bg: #f8fafc;
      --neo-cta-card-border: rgba(226, 232, 240, 0.9);
      
      --neo-cta-text-head: #0f172a;
      --neo-cta-text-body: #475569;
      
      --neo-cta-primary: #2563eb;
      --neo-cta-sky: #0284c7;
      --neo-cta-grad: linear-gradient(135deg, #2563eb 0%, #0284c7 100%);
      
      --neo-cta-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.05);
      --neo-cta-shadow-hover: 0 25px 50px -12px rgba(37, 99, 235, 0.15);
      
      --neo-cta-radius: 24px;
      --neo-cta-pill: 9999px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background-color: var(--neo-cta-bg);
      font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
      color: var(--neo-cta-text-body);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    /* Outer Wrapper Section */
    .neo-white-cta-wrapper {
      position: relative;
      padding: 80px 24px;
      background-color: var(--neo-cta-bg);
      overflow: hidden;
    }

    /* Ambient Soft Radial Light Gradients */
    .neo-white-cta-glow {
      position: absolute;
      border-radius: 50%;
      filter: blur(100px);
      opacity: 0.5;
      pointer-events: none;
      z-index: 1;
    }

    .neo-white-cta-glow.glow-left {
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
      top: -20%;
      left: -10%;
    }

    .neo-white-cta-glow.glow-right {
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(2, 132, 199, 0.08) 0%, transparent 70%);
      bottom: -20%;
      right: -10%;
    }

    .neo-white-cta-gate {
      max-width: 980px;
      margin: 0 auto;
      position: relative;
      z-index: 10;
    }

    /* ====================================================
       COMPACT ENTERPRISE CARD POD
       ==================================================== */
    .neo-white-cta-pod {
      background: var(--neo-cta-card-bg);
      border: 1px solid var(--neo-cta-card-border);
      border-radius: var(--neo-cta-radius);
      padding: 48px 40px;
      text-align: center;
      box-shadow: var(--neo-cta-shadow);
      transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .neo-white-cta-pod:hover {
      box-shadow: var(--neo-cta-shadow-hover);
      border-color: rgba(37, 99, 235, 0.3);
      transform: translateY(-2px);
    }

    .neo-white-cta-inner {
      max-width: 720px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* Pill Tag */
    .neo-white-cta-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: #eff6ff;
      border: 1px solid #dbeafe;
      border-radius: var(--neo-cta-pill);
      color: var(--neo-cta-primary);
      font-size: 0.78rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 20px;
    }

    .neo-white-cta-pill span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--neo-cta-primary);
    }

    /* Title & Description */
    .neo-white-cta-title {
      font-family: 'Sitka Display', serif;
      font-size: 42px;
      font-weight: 800;
      color: var(--neo-cta-text-head);
      line-height: 1.25;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
      text-align: center;
    }

    .neo-white-cta-desc {
      font-size: 0.98rem;
      color: var(--neo-cta-text-body);
      line-height: 1.65;
      font-weight: 500;
      margin-bottom: 32px;
      text-align: center;
      max-width: 640px;
    }

    /* ====================================================
       INTERACTIVE BUTTON ACTIONS
       ==================================================== */
    .neo-white-cta-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }

    .neo-white-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 13px 28px;
      font-size: 0.92rem;
      font-weight: 700;
      border-radius: var(--neo-cta-pill);
      text-decoration: none;
      transition: all 0.3s ease;
      letter-spacing: -0.01em;
    }

    /* Primary Gradient Control */
    .neo-white-btn-primary {
      background: var(--neo-cta-grad);
      color: #ffffff;
      gap: 8px;
      box-shadow: 0 8px 20px -4px rgba(37, 99, 235, 0.35);
    }

    .neo-white-btn-primary i {
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }

    .neo-white-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 25px -4px rgba(37, 99, 235, 0.45);
    }

    .neo-white-btn-primary:hover i {
      transform: translateX(4px);
    }

    /* Secondary Outline Control */
    .neo-white-btn-secondary {
      background: #ffffff;
      color: var(--neo-cta-text-head);
      border: 1px solid #cbd5e1;
      box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
    }

    .neo-white-btn-secondary:hover {
      background: #f1f5f9;
      border-color: #94a3b8;
      color: var(--neo-cta-text-head);
    }

    /* ====================================================
       RESPONSIVE BREAKPOINTS
       ==================================================== */
    @media (max-width: 768px) {
      .neo-white-cta-wrapper {
        padding: 60px 16px;
      }
      .neo-white-cta-pod {
        padding: 36px 24px;
        border-radius: 20px;
      }
      .neo-white-cta-title {
        font-size: 1.6rem;
      }
      .neo-white-cta-actions {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
        gap: 12px;
      }
      .neo-white-cta-btn {
        width: 100%;
      }
    }
/* End Section - Looking for a Complete EHS Management System?*/












@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800&display=swap');
 
/* ===============================
   SCOPE / RESET
   (scoped to this component so it never leaks onto the rest of the site)
================================= */
.neo-hero-slider-section {
  --neo-ink: #0f172a;
  --neo-ink-soft: #334155;
  --neo-muted: #64748b;
  --neo-line: rgba(15,23,42,.08);
  --neo-surface: rgba(255,255,255,.86);
  --neo-card-shadow: 0 20px 50px -12px rgba(15,23,42,.16);
  --neo-green: #34d399;
  --neo-green-strong: #059669;
  --neo-orange: #f97316;
  --neo-orange-strong: #c2410c;
  --neo-blue: #2563eb;
  --neo-light-blue: #0ea5e9;
  --font-display: 'Sitka Display', serif;
  --font-body: 'Inter', sans-serif;
 
  width: 100%;
  padding: 105px 0 80px;
  background: #ffffff;
  font-family: var(--font-body);
  color: var(--neo-ink);
}
 
.neo-hero-slider-section, .neo-hero-slider-section * { box-sizing: border-box; }
.neo-hero-slider-section img { max-width: 100%; display: block; }
.neo-hero-slider-section a { text-decoration: none; }
.neo-hero-slider-section button { font-family: inherit; }
.neo-hero-slider-section svg.neo-icon { width: 16px; height: 16px; flex-shrink: 0; stroke: currentColor; fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
 
/* every inline icon svg (button arrows/play, nav chevrons, checklist marks, chip + sync icons)
   needs the same stroke treatment — scoped by container so the hidden sprite and the
   sparkline chart (which style their own paths) are left untouched */
.neo-hero-slider-section .neo-btn svg,
.neo-hero-slider-section .neo-nav-btn svg,
.neo-hero-slider-section .neo-checklist svg,
.neo-hero-slider-section .neo-alert-chip svg,
.neo-hero-slider-section .neo-sync-row svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
 
/* ===============================
   SHELL / CONTAINER
================================= */
.neo-hero-shell { width: 95%; max-width: 1720px; margin: 0 auto; }
 
.neo-slider-container {
  position: relative;
  width: 100%;
  height: 680px;
  min-height: 680px;
  border-radius: 32px;
  overflow: hidden;
  background: #0a0f1a;
  box-shadow: 0 30px 80px -20px rgba(15,23,42,.35);
}
 
/* ===============================
   SLIDE
================================= */
.neo-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .9s ease, visibility .9s ease;
  z-index: 1;
}
 
.neo-slide.active { opacity: 1; visibility: visible; z-index: 2; }
 
.neo-slide-bg-media { position: absolute; inset: 0; overflow: hidden; }
 
.neo-slide-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  filter: saturate(1.02);
}
 
/* darkening scrim so text stays legible over any photo */
.neo-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(100deg,
    rgba(6,10,20,.94) 0%,
    rgba(6,10,20,.88) 26%,
    rgba(6,10,20,.66) 46%,
    rgba(6,10,20,.32) 66%,
    rgba(6,10,20,.06) 86%);
}
 
/* per-slide brand-color glow, tying photography back to the module color system */
.neo-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(620px 620px at 84% 26%, var(--accent-glow, transparent) 0%, transparent 72%);
  mix-blend-mode: screen;
  opacity: .55;
  pointer-events: none;
}
 
.neo-accent-green  { --accent-glow: rgba(52,211,153,.6); }
.neo-accent-orange { --accent-glow: rgba(249,115,22,.6); }
.neo-accent-blue   { --accent-glow: rgba(37,99,235,.65); }
.neo-accent-cyan   { --accent-glow: rgba(14,165,233,.6); }
 
.neo-slide-content-wrap {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 680px;
  min-height: 680px;
  padding: 64px 72px;
  gap: 40px;
}
 
.neo-slide-content {
  max-width: 620px;
  transform: translateY(24px);
  opacity: 0;
  transition: transform .9s cubic-bezier(.34,1.56,.64,1), opacity .7s ease;
}
 
.neo-slide.active .neo-slide-content { transform: translateY(0); opacity: 1; }
 
/* ===============================
   BADGE
================================= */
.neo-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 9px 18px 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .01em;
  margin-bottom: 24px;
}
 
.neo-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dot-color, #fff);
  box-shadow: 0 0 0 5px rgba(255,255,255,.18);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--dot-color, #fff) 22%, transparent);
  animation: neoPulseDot 2.2s ease-in-out infinite;
}
 
@keyframes neoPulseDot {
  0%, 100% { box-shadow: 0 0 0 4px color-mix(in srgb, var(--dot-color, #fff) 20%, transparent); }
  50% { box-shadow: 0 0 0 8px color-mix(in srgb, var(--dot-color, #fff) 8%, transparent); }
}
 
.neo-dot-green  { --dot-color: #34d399; }
.neo-dot-orange { --dot-color: #fb923c; }
.neo-dot-blue   { --dot-color: #60a5fa; }
.neo-dot-cyan   { --dot-color: #38bdf8; }
 
/* ===============================
   TITLE / TEXT
================================= */
.neo-main-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 2.4vw + 20px, 43px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  max-width: 620px;
}
 
.neo-main-title span {
  font-weight: 700;
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
 
.neo-orange-text { background: none !important; color: #fdba74 !important; -webkit-text-fill-color: initial !important; }
.neo-blue-text { background: none !important; color: #93c5fd !important; -webkit-text-fill-color: initial !important; }
.neo-cyan-text { background: none !important; color: #7dd3fc !important; -webkit-text-fill-color: initial !important; }
 
.neo-description {
  max-width: 520px;
  font-size: 15.5px;
  line-height: 1.75;
  color: rgba(255,255,255,.78);
  margin-bottom: 30px;
  font-weight: 400;
}
 
/* ===============================
   BUTTONS
================================= */
.neo-cta-group { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }
 
.neo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
}
 
.neo-btn:hover { transform: translateY(-2px); }
.neo-btn:focus-visible { outline: 2px solid #7dd3fc; outline-offset: 3px; }
 
.neo-btn-arrow { display: inline-flex; transition: transform .25s ease; }
.neo-btn:hover .neo-btn-arrow { transform: translateX(3px); }
 
.neo-btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  color: #0a1122;
  box-shadow: 0 16px 34px -10px rgba(0,0,0,.45);
}
.neo-btn-primary:hover { box-shadow: 0 20px 42px -10px rgba(0,0,0,.55); }
 
.neo-btn-secondary {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.28);
  backdrop-filter: blur(10px);
}
.neo-btn-secondary:hover { background: rgba(255,255,255,.16); }
 
.neo-btn-orange { background: linear-gradient(135deg,#fb923c,#ea580c); color: #fff; box-shadow: 0 16px 34px -10px rgba(234,88,12,.55); }
.neo-btn-blue { background: linear-gradient(135deg,#3b82f6,#1d4ed8); color: #fff; box-shadow: 0 16px 34px -10px rgba(29,78,216,.55); }
 
/* ===============================
   FEATURES / METRICS
================================= */
.neo-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
 
.neo-feature-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.92);
  font-size: 12.5px;
  font-weight: 500;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
 
.neo-feature-item:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.32); transform: translateY(-2px); }
 
.neo-metrics-row {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.14);
}
 
.neo-metric-box {
  min-width: 128px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
 
.neo-metric-box:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.28); transform: translateY(-3px); }
 
.neo-num {
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  font-variant-numeric: tabular-nums;
}
 
.neo-lbl {
  font-size: 10.5px;
  line-height: 1.4;
  color: rgba(255,255,255,.62);
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
}
 
/* ===============================
   FLOATING UI MOCKUP / GLASS CARDS
================================= */
.neo-ui-mockup-container { position: relative; width: 500px; height: 520px; flex-shrink: 0; }
 
.neo-glass-card {
  position: absolute;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 24px;
  box-shadow: var(--neo-card-shadow);
  color: var(--neo-ink);
  overflow: hidden;
  transition: box-shadow .3s ease;
}
 
.neo-glass-card:hover { animation-play-state: paused; box-shadow: 0 28px 60px -12px rgba(15,23,42,.28); }
 
.neo-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--neo-ink);
  margin-bottom: 14px;
}
 
.neo-card-header-left { display: flex; align-items: center; gap: 8px; }
 
.neo-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg,#22c55e,#16a34a);
  box-shadow: 0 0 0 4px rgba(34,197,94,.16);
  display: inline-block;
  flex-shrink: 0;
}
 
.neo-risk-card { width: 216px; top: 0; right: 0; padding: 22px 20px; }
.neo-cctv-card { width: 288px; left: 0; top: 128px; padding: 16px; }
.neo-incident-card { width: 240px; right: 0; bottom: 0; padding: 18px; }
 
.neo-permit-status-card { width: 232px; right: 0; top: 0; padding: 20px; }
.neo-loto-card { width: 262px; left: 0; bottom: 0; padding: 18px; }
 
.neo-timeline-card { width: 268px; right: 0; top: 0; padding: 20px; }
.neo-actions-card { width: 216px; left: 0; bottom: 20px; padding: 18px; }
 
.neo-detect-card { width: 288px; left: 0; top: 0; padding: 16px; }
.neo-actionlog-card { width: 256px; right: 0; bottom: 0; padding: 18px; }
 
.neo-inspection-card { width: 254px; right: 0; top: 0; padding: 18px; }
.neo-crew-card { width: 222px; left: 0; bottom: 10px; padding: 18px; }
 
.neo-mini-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: var(--neo-ink-soft);
  font-size: 10.5px;
  font-weight: 700;
}
 
.neo-circle-progress {
  width: 122px; height: 122px;
  margin: 6px auto 16px;
  border-radius: 50%;
  background: conic-gradient(var(--gauge-color,#d97706) 0 var(--gauge-pct,78%), #e2e8f0 var(--gauge-pct,78%) 100%);
  display: flex; align-items: center; justify-content: center;
}
 
.neo-circle-inner {
  width: 90px; height: 90px; border-radius: 50%;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(15,23,42,.06);
}
 
.neo-percentage { font-family: var(--font-display); font-size: 25px; font-weight: 700; color: var(--neo-ink); font-variant-numeric: tabular-nums; }
.neo-percentage span { font-size: 11px; color: var(--neo-muted); margin-left: 2px; font-weight: 500; }
 
.neo-card-footer { text-align: center; font-size: 12.5px; font-weight: 700; }
.neo-warn-text { color: #d97706; }
.neo-success-text { color: #16a34a; }
 
.neo-cctv-preview { position: relative; width: 100%; height: 148px; border-radius: 14px; overflow: hidden; }
.neo-cctv-preview img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85) brightness(.92); }
.neo-cctv-preview::after {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(180deg, rgba(52,211,153,.10) 0 2px, transparent 2px 4px);
  pointer-events: none;
}
.neo-cctv-preview::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,.35) 100%);
  pointer-events: none;
}
 
.neo-bounding-box {
  position: absolute; top: 20%; left: 40%;
  width: 50px; height: 70px;
  border: 2px solid var(--box-color,#ef4444);
  border-radius: 8px;
  background: rgba(239,68,68,.12);
  background: color-mix(in srgb, var(--box-color,#ef4444) 12%, transparent);
}
 
.neo-alert-chip {
  margin-top: 12px;
  min-height: 36px;
  padding: 9px 12px;
  border-radius: 999px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  font-size: 11.5px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
 
.neo-alert-chip-action {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}
 
.neo-sparkline svg { width: 100%; height: 76px; }
.neo-sparkline path { fill: none; stroke: #059669; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
 
.neo-big-stat { font-family: var(--font-display); font-size: 44px; line-height: 1; font-weight: 700; color: var(--neo-ink); text-align: center; margin: 14px 0; font-variant-numeric: tabular-nums; }
 
.neo-status-list { display: flex; flex-direction: column; gap: 9px; color: var(--neo-ink-soft); font-size: 12.5px; font-weight: 600; }
.neo-status-list div { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.neo-status-list .neo-status-label { display: flex; align-items: center; gap: 8px; }
.neo-status-count { color: var(--neo-muted); font-weight: 700; font-variant-numeric: tabular-nums; }
 
.neo-status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.neo-status-dot.green { background: #22c55e; }
.neo-status-dot.orange { background: #f59e0b; }
.neo-status-dot.red { background: #ef4444; }
 
.neo-checklist { display: flex; flex-direction: column; gap: 10px; }
.neo-checklist li { list-style: none; display: flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 600; color: var(--neo-ink-soft); }
.neo-checklist li svg { width: 16px; height: 16px; flex-shrink: 0; }
.neo-checklist li.done svg { color: #16a34a; }
.neo-checklist li.pending svg { color: #d97706; }
.neo-checklist li.pending { color: var(--neo-muted); }
 
.neo-timeline { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.neo-timeline li {
  position: relative; padding-left: 14px;
  border-left: 2px solid var(--timeline-color, #f97316);
  color: var(--neo-ink-soft); font-size: 12px; font-weight: 600;
}
.neo-timeline li strong { color: var(--neo-ink); margin-right: 6px; font-variant-numeric: tabular-nums; }
 
.neo-sync-row {
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--neo-line);
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 600; color: var(--neo-muted);
}
.neo-sync-row svg { width: 14px; height: 14px; color: #16a34a; }
 
/* ===============================
   FLOAT ANIMATION
================================= */
.neo-float { animation: neoFloat 6s ease-in-out infinite; }
@keyframes neoFloat { 0% { transform: translateY(0); } 50% { transform: translateY(-9px); } 100% { transform: translateY(0); } }
 
@media (prefers-reduced-motion: reduce) {
  .neo-float { animation: none !important; }
  .neo-badge-dot { animation: none !important; }
  .neo-slide, .neo-slide-content { transition-duration: .15s !important; }
}
 
/* ===============================
   NAV BUTTONS / DOTS
================================= */
.neo-nav-btn {
  position: absolute;
  bottom: 30px;
  z-index: 10;
  width: 48px; height: 48px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
 
.neo-nav-btn svg { width: 20px; height: 20px; }
.neo-nav-btn:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.4); transform: translateY(-2px); }
.neo-nav-btn:focus-visible { outline: 2px solid #7dd3fc; outline-offset: 3px; }
.neo-prev-btn { left: 28px; }
.neo-next-btn { right: 28px; }
 
.neo-slider-dots { position: absolute; left: 50%; bottom: 44px; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
 
.neo-dot-item {
  width: 8px; height: 8px; border-radius: 999px;
  background: rgba(255,255,255,.32);
  border: none; cursor: pointer; padding: 0;
  transition: all .3s ease;
}
.neo-dot-item:focus-visible { outline: 2px solid #7dd3fc; outline-offset: 3px; }
.neo-dot-item.active { width: 28px; background: #fff; }
 
/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 1200px) {
  .neo-slide-content-wrap {
    min-height: 980px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 44px 32px 150px;
  }
  .neo-ui-mockup-container { width: 100%; max-width: 480px; height: 420px; }
  .neo-slide-content { max-width: 100%; }
}
 
@media (max-width: 991px) {
  .neo-hero-slider-section { padding: 14px 12px 34px; }
  .neo-slider-container { min-height: 1260px; border-radius: 26px; }
  .neo-slide-content-wrap { min-height: 1260px; padding: 30px 20px 170px; gap: 28px; }
  .neo-description { font-size: 14px; }
  .neo-cta-group { flex-direction: column; align-items: stretch; }
  .neo-btn { width: 100%; }
  .neo-metric-box { width: calc(50% - 7px); min-width: unset; }
 
  .neo-ui-mockup-container { width: 100%; max-width: 100%; height: auto; display: flex; flex-direction: column; gap: 16px; }
  .neo-glass-card { position: relative; inset: auto !important; width: 100% !important; animation: none; }
 
  .neo-nav-btn { width: 44px; height: 44px; bottom: 98px; }
  .neo-prev-btn { left: 16px; }
  .neo-next-btn { right: 16px; }
  .neo-slider-dots { bottom: 44px; }
}
 
@media (max-width: 575px) {
  .neo-slider-container { min-height: 1340px; }
  .neo-slide-content-wrap { min-height: 1340px; }
  .neo-badge { font-size: 11px; min-height: 36px; padding: 8px 14px; }
  .neo-metric-box { width: 100%; }
}











