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

:root {
  /* Original Theme Colors */
  --ink: #14202b;
  --muted: #5e6c7a;
  --line: #dfe7ef;
  --bg: #f8fafc;
  --panel: #fff;
  --blue: #075fae;
  --teal: #00a7a5;
  --green: #76b82a;
  --navy: #0a2742;
  --orange: #ff9f1c;
  
  /* Modern Design Token Enhancements */
  --blue-glow: rgba(7, 95, 174, 0.12);
  --teal-glow: rgba(0, 167, 165, 0.12);
  --shadow: 0 20px 60px rgba(10, 39, 66, 0.08);
  --shadow-card: 0 10px 30px rgba(10, 39, 66, 0.04);
  --shadow-hover: 0 24px 50px rgba(10, 39, 66, 0.12), 0 0 20px rgba(7, 95, 174, 0.05);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  --radius-pill: 50px;
  --radius-card: 16px;
  --radius-btn: 10px;
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

/* Topbar Styling */
.topbar {
  display: flex;
  gap: 32px;
  justify-content: center;
  align-items: center;
  padding: 10px 24px;
  background: var(--navy);
  color: rgba(215, 238, 246, 0.85);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
  position: relative;
  z-index: 101;
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.topbar span:hover {
  color: #fff;
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px clamp(24px, 5vw, 80px);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(10, 39, 66, 0.06);
  transition: var(--transition);
}

.site-header.scrolled {
  padding: 12px clamp(24px, 5vw, 80px);
  box-shadow: 0 10px 30px rgba(10, 39, 66, 0.03);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 240px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(7, 95, 174, 0.25);
  transition: var(--transition);
}

.brand-mark::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg);
  transition: var(--transition-slow);
}

.brand:hover .brand-mark {
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 12px 28px rgba(7, 95, 174, 0.35);
}

.brand:hover .brand-mark::before {
  left: 100%;
  top: 100%;
}

.brand-logo {
  height: 46px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(10, 39, 66, 0.08);
  transition: var(--transition);
}

.brand:hover .brand-logo {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(7, 95, 174, 0.15);
}

.brand strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  margin-top: 1px;
}

/* Navigation System */
.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.main-nav > a,
.nav-drop > button {
  border: 0;
  background: transparent;
  padding: 10px 16px;
  border-radius: var(--radius-btn);
  color: var(--ink);
  font-weight: 650;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  position: relative;
  transition: var(--transition);
}

.main-nav > a:hover,
.nav-drop:hover > button {
  background: rgba(7, 95, 174, 0.05);
  color: var(--blue);
}

/* Nav Link Underline Effect */
.main-nav > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.main-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Dropdown Caret icon using CSS */
.nav-drop > button::after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 6px;
  transition: transform 0.3s ease;
}

.nav-drop:hover > button::after {
  transform: rotate(-135deg) translateY(1px);
}

/* Buttons */
.quote-btn, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-btn);
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(7, 95, 174, 0.2);
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  gap: 8px;
  z-index: 1;
}

.quote-btn::before, .btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.quote-btn:hover, .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(7, 95, 174, 0.3);
}

.quote-btn:hover::before, .btn:hover::before {
  opacity: 1;
}

.quote-btn:active, .btn:active {
  transform: translateY(0);
}

.btn.ghost {
  background: transparent;
  color: var(--blue);
  border: 2px solid rgba(7, 95, 174, 0.2);
  box-shadow: none;
}

.btn.ghost:hover {
  background: rgba(7, 95, 174, 0.05);
  border-color: var(--blue);
}

.btn.secondary {
  background: #eaf5f3;
  color: #075f62;
  box-shadow: none;
}

.btn.secondary:hover {
  background: #def0ed;
  color: #044143;
}

.btn.light {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.btn.light:hover {
  background: var(--bg);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.nav-toggle {
  display: none;
  border: 0;
  background: rgba(7, 95, 174, 0.06);
  color: var(--blue);
  padding: 10px 16px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.nav-toggle:hover {
  background: rgba(7, 95, 174, 0.12);
}

/* Nav Dropdown Mega Menu */
.nav-drop {
  position: relative;
}

.mega {
  position: absolute;
  top: calc(100% + 12px);
  left: -120px;
  width: min(880px, 95vw);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(10, 39, 66, 0.08);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.96);
  transform-origin: top center;
  transition: var(--transition);
  max-height: 80vh;
  overflow: auto;
}

.nav-drop:hover .mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.mega.compact {
  grid-template-columns: repeat(2, 1fr);
  width: 580px;
  padding: 24px;
}

.mega h4 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  border-bottom: 2px solid rgba(7, 95, 174, 0.08);
  padding-bottom: 8px;
}

.mega a {
  display: block;
  padding: 8px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  transition: var(--transition);
}

.mega a:hover {
  color: var(--blue);
  background: rgba(7, 95, 174, 0.05);
  transform: translateX(4px);
}

/* Heroes & Page Headers */
.industrial-hero, .product-hero, .page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 12vw, 160px) clamp(24px, 5vw, 80px);
  background: 
    radial-gradient(circle at 85% 15%, rgba(0, 167, 165, 0.12), transparent 45%),
    radial-gradient(circle at 15% 85%, rgba(7, 95, 174, 0.08), transparent 45%),
    linear-gradient(135deg, #f8fbff 0%, #edf5f5 60%, #f4fbf0 100%);
  border-bottom: 1px solid rgba(10, 39, 66, 0.05);
}

/* Add grid pattern overlay */
.industrial-hero::after, .product-hero::after, .page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(10, 39, 66, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 39, 66, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

.industrial-hero *, .product-hero *, .page-hero * {
  position: relative;
  z-index: 1;
}

.industrial-hero, .product-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-copy h1, .product-hero h1, .page-hero h1 {
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.08;
  margin: 12px 0 20px;
  letter-spacing: -0.03em;
}

.page-hero h1 {
  max-width: 960px;
}

.hero-copy p, .product-hero p, .page-hero p {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
  line-height: 1.6;
  max-width: 780px;
}

.eyebrow {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(0, 167, 165, 0.08);
  color: var(--teal);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero-panel {
  background: #fff;
  border: 1px solid rgba(10, 39, 66, 0.06);
  border-radius: 20px;
  padding: 18px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.hero-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(10, 39, 66, 0.14);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.metric-row div {
  background: var(--bg);
  border: 1px solid rgba(10, 39, 66, 0.03);
  border-radius: 12px;
  padding: 16px 14px;
  text-align: center;
  transition: var(--transition);
}

.metric-row div:hover {
  background: #fff;
  border-color: rgba(7, 95, 174, 0.15);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.metric-row strong {
  display: block;
  color: var(--blue);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.metric-row span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  margin-top: 4px;
  display: block;
}

/* Media Slot placeholders */
.media-slot {
  position: relative;
  min-height: 280px;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(135deg, #e4eff8, #e5fbf1);
  border: 1px solid rgba(7, 95, 174, 0.08);
  transition: var(--transition);
}

.media-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.media-slot:hover img {
  transform: scale(1.05);
}

/* Technical placeholder fallbacks styling */
.slot-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: 
    radial-gradient(circle at top right, rgba(0, 167, 165, 0.1), transparent 70%),
    linear-gradient(135deg, var(--navy), #061a2b);
  color: #fff;
  text-align: center;
}

.slot-fallback::before {
  content: '';
  width: 44px;
  height: 44px;
  border: 2px solid rgba(0, 167, 165, 0.3);
  border-top-color: var(--teal);
  border-radius: 50%;
  margin-bottom: 16px;
  animation: pulse-ring 2.5s infinite ease-in-out;
}

.slot-fallback span {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #fff;
}

.slot-fallback small {
  display: block;
  margin-top: 8px;
  font-size: 11px;
  color: rgba(215, 238, 246, 0.65);
  font-family: monospace;
  background: rgba(255, 255, 255, 0.05);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.media-slot:not(.missing) .slot-fallback {
  display: none;
}

/* Section styling */
.section {
  padding: clamp(64px, 10vw, 120px) clamp(24px, 5vw, 80px);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}

/* Centered section head variant */
.section-head.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin-bottom: 56px;
}

.section-head.centered h2 {
  max-width: 720px;
}

.section-head.centered p {
  max-width: 620px;
  margin: 0 auto;
}

.section-head h2, .split h2, .dark-band h2 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.12;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.section-head p {
  max-width: 680px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

/* Dark band subtitle */
.dark-band-sub {
  color: rgba(215, 232, 239, 0.72);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  max-width: 600px;
  text-align: center;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, #f4f9fd 0%, #edf8f3 100%);
  border-top: 1px solid rgba(10,39,66,0.04);
  border-bottom: 1px solid rgba(10,39,66,0.04);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0;
}

.stat-card {
  background: #fff;
  border: 1px solid rgba(10, 39, 66, 0.06);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

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

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(7, 95, 174, 0.12);
}

.stat-number {
  display: block;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-plus {
  display: inline-block;
  font-size: 28px;
  font-weight: 900;
  color: var(--teal);
  margin-left: 2px;
  vertical-align: super;
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

/* ============================================
   ABOUT PAGE — PILLARS GRID
   ============================================ */
.about-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 0;
}

.pillar-card {
  background: #fff;
  border: 1px solid rgba(10, 39, 66, 0.06);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

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

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(7, 95, 174, 0.1);
}

.pillar-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(7,95,174,0.08), rgba(0,167,165,0.08));
  color: var(--blue);
  margin-bottom: 20px;
  transition: var(--transition);
}

.pillar-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--blue);
}

.pillar-card:hover .pillar-icon {
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.pillar-card:hover .pillar-icon svg {
  stroke: #fff;
}

.pillar-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.pillar-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ============================================
   ABOUT PAGE — CONTACT INFO GRID
   ============================================ */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 8px;
}

.contact-info-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.contact-info-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(140, 241, 223, 0.3);
  transform: translateY(-4px);
}

.contact-info-card strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8cf1df;
  margin-bottom: 12px;
}

.contact-info-card p {
  color: rgba(215, 232, 239, 0.8);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 6px;
}

/* Product Cards Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.product-card {
  background: #fff;
  border: 1px solid rgba(10, 39, 66, 0.06);
  border-radius: var(--radius-card);
  padding: 20px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(7, 95, 174, 0.12);
}

.product-card .media-slot {
  min-height: 200px;
  margin-bottom: 20px;
  border-radius: 10px;
}

.product-card span {
  display: inline-flex;
  align-self: flex-start;
  color: var(--teal);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(0, 167, 165, 0.06);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.product-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.product-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-card a {
  font-weight: 800;
  color: var(--blue);
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.product-card a::after {
  content: '→';
  transition: transform 0.2s ease;
}

.product-card:hover a::after {
  transform: translateX(4px);
}

/* Dark Band Style */
.dark-band {
  padding: clamp(72px, 10vw, 120px) clamp(24px, 5vw, 80px);
  background: 
    radial-gradient(circle at 10% 20%, rgba(7, 95, 174, 0.15) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(0, 167, 165, 0.15) 0%, transparent 45%),
    var(--navy);
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
}

.dark-band .eyebrow {
  background: rgba(140, 241, 223, 0.1);
  color: #8cf1df;
}

.dark-band h2 {
  color: #fff;
}

/* Solutions Grid & Tiles */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.solution-tile {
  min-height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-card);
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}

.solution-tile:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(140, 241, 223, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.solution-tile span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8cf1df;
}

.solution-tile h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 12px 0 6px;
  color: #fff;
  letter-spacing: -0.01em;
}

.solution-tile p {
  color: rgba(215, 232, 239, 0.75);
  font-size: 13.5px;
  line-height: 1.5;
}

/* Splits and Layout Structure */
.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: start;
}

/* Checklist Styling */
.check-list {
  margin: 28px 0;
  display: grid;
  gap: 16px;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 36px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  color: var(--ink);
  font-size: 15px;
  transition: var(--transition);
}

.check-list li:hover {
  padding-left: 42px;
  color: var(--blue);
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2376b82a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: var(--transition);
}

/* Info stack, Spec panel, Cards */
.info-stack, .spec-panel, .contact-card, .empty-state {
  background: #fff;
  border: 1px solid rgba(10, 39, 66, 0.06);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.info-stack {
  display: grid;
  gap: 16px;
}

.info-stack div {
  padding: 20px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid rgba(10, 39, 66, 0.02);
  transition: var(--transition);
}

.info-stack div:hover {
  background: #fff;
  border-color: rgba(7, 95, 174, 0.12);
  transform: translateX(4px);
  box-shadow: var(--shadow-card);
}

.info-stack strong {
  display: block;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.info-stack span, .spec-panel p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.spec-panel {
  display: grid;
  gap: 20px;
}

.spec-panel h3 {
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-bottom: 4px;
  border-bottom: 1.5px solid rgba(7, 95, 174, 0.08);
  padding-bottom: 6px;
}

/* Forms styling */
.contact-form {
  display: grid;
  gap: 20px;
  background: #fff;
  border: 1px solid rgba(10, 39, 66, 0.06);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: var(--shadow-card);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-btn);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--ink);
  background: var(--bg);
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(7, 95, 174, 0.08);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-grid article {
  background: #fff;
  border: 1px solid rgba(10, 39, 66, 0.06);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.feature-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(7, 95, 174, 0.12);
}

/* Custom Pills / Link Cloud */
.price-pill {
  display: inline-flex;
  margin: 12px 0;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: #fff3db;
  color: #8c5000;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.link-cloud {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.link-cloud a {
  padding: 12px 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-btn);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  backdrop-filter: blur(5px);
  transition: var(--transition);
}

.link-cloud a:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(140, 241, 223, 0.4);
  transform: translateY(-2px);
}

/* Site Footer */
.site-footer {
  background: #061524;
  color: rgba(220, 232, 239, 0.8);
  font-size: 14px;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 48px clamp(24px, 5vw, 80px);
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  border-radius: 0;
}

.footer-cta h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-top: 6px;
  max-width: 820px;
}

.footer-cta .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.1fr;
  gap: 48px;
  padding: 80px clamp(24px, 5vw, 80px) 64px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid h3, .footer-grid h4 {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.footer-grid p {
  line-height: 1.6;
  color: rgba(220, 232, 239, 0.7);
  margin-bottom: 12px;
}

.footer-grid a {
  display: block;
  color: rgba(220, 232, 239, 0.7);
  margin-bottom: 12px;
  font-weight: 500;
}

.footer-grid a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(24px, 5vw, 80px);
  color: rgba(220, 232, 239, 0.5);
  font-size: 13px;
  font-weight: 500;
  flex-wrap: wrap;
}

/* Animations / Reveal Effects */
.reveal, .product-card, .solution-tile {
  opacity: 0;
  transform: translateY(32px) scale(0.98);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal.in, .product-card.in, .solution-tile.in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Staggered load effect using child delay */
.product-grid > :nth-child(1) { transition-delay: 0.05s; }
.product-grid > :nth-child(2) { transition-delay: 0.1s; }
.product-grid > :nth-child(3) { transition-delay: 0.15s; }
.product-grid > :nth-child(4) { transition-delay: 0.2s; }
.product-grid > :nth-child(5) { transition-delay: 0.25s; }
.product-grid > :nth-child(6) { transition-delay: 0.3s; }
.product-grid > :nth-child(7) { transition-delay: 0.35s; }
.product-grid > :nth-child(8) { transition-delay: 0.4s; }
.product-grid > :nth-child(9) { transition-delay: 0.45s; }

.solution-grid > :nth-child(1) { transition-delay: 0.05s; }
.solution-grid > :nth-child(2) { transition-delay: 0.1s; }
.solution-grid > :nth-child(3) { transition-delay: 0.15s; }
.solution-grid > :nth-child(4) { transition-delay: 0.2s; }
.solution-grid > :nth-child(5) { transition-delay: 0.25s; }
.solution-grid > :nth-child(6) { transition-delay: 0.3s; }
.solution-grid > :nth-child(7) { transition-delay: 0.35s; }
.solution-grid > :nth-child(8) { transition-delay: 0.4s; }

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
    border-color: var(--teal);
    box-shadow: 0 0 12px rgba(0, 167, 165, 0.4);
  }
  100% {
    transform: scale(0.9);
    opacity: 0.8;
  }
}

/* Center elements */
.center {
  text-align: center;
  margin-top: 40px;
}


/* Responsiveness adjustments */
@media(max-width:980px) {
  .brand-logo {
    height: 38px;
  }
  .brand strong {
    font-size: 15px;
  }
  .brand small {
    display: none;
  }
  .brand {
    gap: 8px;
    min-width: auto;
  }
  .site-header {
    padding: 12px 16px;
    gap: 12px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  
  .main-nav, .quote-btn {
    display: none;
  }
  
  .site-header.open .main-nav {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    gap: 8px;
    animation: nav-slide-down 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  .main-nav > a::after {
    display: none;
  }
  
  .mega, .mega.compact {
    position: static;
    width: auto;
    display: none;
    opacity: 1;
    transform: none;
    box-shadow: none;
    border: 0;
    border-radius: 8px;
    margin: 8px 0 0;
    background: var(--bg);
    padding: 16px;
    grid-template-columns: 1fr;
    max-height: none;
  }
  
  .nav-drop:hover .mega, .nav-drop.open .mega {
    display: grid;
  }
  
  .industrial-hero, .product-hero, .split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .solution-grid, .feature-grid, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

@keyframes nav-slide-down {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media(max-width:620px) {
  .topbar {
    justify-content: center;
    gap: 16px;
    padding: 8px 16px;
  }
  
  .brand {
    min-width: auto;
  }
  
  .product-grid, .solution-grid, .feature-grid, .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid, .about-pillars-grid, .contact-info-grid {
    grid-template-columns: 1fr;
  }
  
  .metric-row {
    grid-template-columns: 1fr;
  }
  
  .section-head {
    display: block;
  }
  
  .section-head h2 {
    margin-bottom: 12px;
  }
  
  .hero-copy h1, .product-hero h1, .page-hero h1 {
    font-size: 36px;
  }
  
  .industrial-hero, .product-hero, .page-hero {
    padding-top: 48px;
  }
  
  .footer-cta {
    display: block;
    text-align: center;
  }
  
  .footer-cta a {
    margin-top: 20px;
  }
  
  .media-slot {
    min-height: 220px;
  }
}

/* ==========================================================================
   ADDED: Mobile Hamburger, Floating Action Panel (WA/Email), & Glowing Badge
   ========================================================================== */

/* Enhanced hamburger box & menu toggler button override */
.nav-toggle {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 105;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
}

.hamburger-box {
  width: 24px;
  height: 18px;
  display: inline-block;
  position: relative;
}



.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 24px;
  height: 2.5px;
  background-color: var(--navy);
  border-radius: 4px;
  position: absolute;
  transition: transform 0.25s ease, background-color 0.25s ease;
}

.hamburger-inner {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-inner::before {
  content: '';
  top: -7px;
}

.hamburger-inner::after {
  content: '';
  bottom: -7px;
}

/* Hover state */
.nav-toggle:hover .hamburger-inner,
.nav-toggle:hover .hamburger-inner::before,
.nav-toggle:hover .hamburger-inner::after {
  background-color: var(--teal);
}

/* Open/active state animations (when .site-header has class .open) */
.site-header.open .hamburger-inner {
  transform: rotate(45deg);
  background-color: var(--blue);
}

.site-header.open .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.site-header.open .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  background-color: var(--blue);
}

/* Floating Contact Panel (WhatsApp / Email) */
.floating-contact-panel {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
  animation: fab-entrance 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 10px 30px rgba(10, 39, 66, 0.2);
  transition: var(--transition);
  cursor: pointer;
}

.fab-btn svg {
  width: 26px;
  height: 26px;
}

.fab-btn.whatsapp {
  background: #25D366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.fab-btn.whatsapp:hover {
  background: #20ba59;
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 16px 36px rgba(37, 211, 102, 0.5);
}

.fab-btn.email {
  background: var(--blue);
  box-shadow: 0 10px 30px rgba(7, 95, 174, 0.35);
}

.fab-btn.email:hover {
  background: #054f91;
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 16px 36px rgba(7, 95, 174, 0.5);
}

.fab-btn.phone {
  background: var(--navy);
  box-shadow: 0 10px 30px rgba(10, 39, 66, 0.35);
}

.fab-btn.phone:hover {
  background: #0a3558;
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 16px 36px rgba(10, 39, 66, 0.5);
}

/* FAB Tooltip Labels (shown on hover) */
.fab-btn {
  position: relative;
}

.fab-tooltip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--navy);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  font-family: var(--font-sans);
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  box-shadow: 0 6px 20px rgba(10, 39, 66, 0.25);
  letter-spacing: 0.01em;
}

.fab-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
}

.fab-btn:hover .fab-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Make topbar phone number visually interactive */
.topbar span a:hover {
  color: #fff;
  text-decoration: underline !important;
}

/* Make footer-bottom phone number visually interactive */
.footer-bottom span a:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline !important;
}



@keyframes fab-entrance {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Selected product glows inside enquiry form (Ultra good light-blue UI) */
.contact-form.product-focused {
  border-color: rgba(7, 95, 174, 0.25);
  box-shadow: 0 20px 50px rgba(7, 95, 174, 0.1), var(--shadow-card);
  background: linear-gradient(180deg, #fff 0%, #f4f9fd 100%);
  position: relative;
}

.contact-form.product-focused select {
  border-color: var(--blue);
  background: rgba(7, 95, 174, 0.03);
  box-shadow: 0 0 0 4px rgba(7, 95, 174, 0.08);
}

.selected-product-badge {
  margin-top: 10px;
  padding: 10px 16px;
  background: rgba(7, 95, 174, 0.06);
  border: 1.5px solid rgba(7, 95, 174, 0.15);
  border-radius: 8px;
  color: var(--blue);
  font-size: 13.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  animation: badge-pulse-in 0.5s ease both;
}

.selected-product-badge strong {
  color: var(--navy);
  font-weight: 800;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--blue);
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.badge-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  animation: badge-glow 1.8s infinite ease-out;
}

@keyframes badge-glow {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

@keyframes badge-pulse-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Ensure the hamburger toggler is displayed for max-width 980px */
@media(max-width:980px) {
  .nav-toggle {
    display: flex !important;
  }
}

