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

/* ── 1. CSS Custom Properties ──────────────────────────────── */
:root {
  /* New "Industrial Azure" Palette — Elite Blue Scale */
  --blue:          #1D6FE8;
  --blue-hover:    #155DC8;
  --blue-glow:     rgba(29, 111, 232, 0.35);
  --blue-dark:     #0D1B36;
  --azure:         #3B82F6;

  /* Primary Accent System (Strictly Blue) */
  --accent:        var(--blue);
  --accent-hover:  var(--blue-hover);
  --accent-light:  rgba(29, 111, 232, 0.12);
  --accent-glow:   var(--blue-glow);
  --accent-dark:   var(--blue-dark);

  /* Legacy Orange -> Blue Aliases for bedrock reliability */
  --orange:        var(--accent);
  --orange-hover:  var(--accent-hover);
  --orange-light:  var(--accent-light);
  --orange-dark:   var(--accent-dark);
  --shadow-orange: var(--shadow-blue);

  /* Backgrounds — near black, industrial */
  --bg-0:         #080808;   /* deepest — hero overlays */
  --bg-1:         #0F0F0F;   /* page background */
  --bg-2:         #171717;   /* cards, sections */
  --bg-3:         #1F1F1F;   /* elevated cards */
  --bg-4:         #282828;   /* hover states */
  --bg-alt:       #141414;   /* alternate sections */

  /* Text */
  --text-1:     #FFFFFF;
  --text-2:     #A8A8A8;
  --text-3:     #666666;

  /* Borders */
  --border:     rgba(29, 111, 232, 0.22);
  --border-sub: rgba(255, 255, 255, 0.08);

  /* Semantic colours */
  --success:    #22C55E;
  --warning:    #F59E0B;
  --danger:     #EF4444;

  /* Spacing scale */
  --space-xs:   0.375rem;
  --space-sm:   0.75rem;
  --space-md:   1.25rem;
  --space-lg:   2rem;
  --space-xl:   3.5rem;
  --space-2xl:  6rem;

  /* Typography */
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:  'Consolas', 'Courier New', monospace;

  /* Radii — sharper for industrial */
  --r-sm:  0.25rem;
  --r-md:  0.375rem;
  --r-lg:  0.625rem;
  --r-xl:  1rem;
  --r-full: 9999px;

  /* Transitions — Organic & Snappy Physics */
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.65, 0, 0.35, 1);
  --t-fast:        250ms var(--ease);
  --t-med:         400ms var(--ease);
  --t-slow:        600ms var(--ease);

  /* Glassmorphism & High-Fidelity UI */
  --glass-bg:      rgba(255, 255, 255, 0.03);
  --glass-border:  rgba(255, 255, 255, 0.08);
  --glass-blur:    blur(12px);

  /* Shadows — Multi-layered & Glow */
  --shadow-sm:     0 2px 4px rgba(0,0,0,0.5);
  --shadow-md:     0 4px 12px rgba(0,0,0,0.6);
  --shadow-lg:     0 20px 40px rgba(0,0,0,0.8);
  --shadow-glow:   0 0 30px rgba(29, 111, 232, 0.12);
  --shadow-blue:   0 8px 24px var(--blue-glow);
}

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

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

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

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

a { color: var(--accent); text-decoration: none; transition: all var(--t-fast); }
a:hover { color: var(--azure); }

ul, ol { list-style: none; }

button { cursor: pointer; font-family: inherit; }

::selection { background: var(--accent-light); color: var(--text-1); }

/* Skip link */
.skip-link {
  position: absolute; top: -9999px; left: 1rem;
  background: var(--accent); color: #fff; padding: 0.5rem 1rem;
  border-radius: var(--r-sm); z-index: 9999; font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }

/* ── 3. Layout ───────────────────────────────────────────────── */
.container {
  width: min(1200px, 100% - 2.5rem);
  margin-inline: auto;
}
.container-narrow { width: min(820px, 100% - 2.5rem); margin-inline: auto; }

section { padding: var(--space-2xl) 0; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-xl);
}

/* Alternating section backgrounds */
.section-alt { background: var(--bg-alt); }

/* ── 4. Typography ───────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  line-height: 1.15;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); letter-spacing: -0.04em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }

p { color: var(--text-2); margin-bottom: 1em; line-height: 1.7; }
p:last-child { margin-bottom: 0; }

.label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.text-accent {
  color: var(--accent);
}

/* Prose (article body) */
.prose h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; }
.prose h3 { font-size: 1.25rem; margin: 1.5rem 0 0.5rem; }
.prose p  { color: var(--text-2); line-height: 1.8; margin-bottom: 1.25rem; }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1.25rem; color: var(--text-2); }
.prose li { margin-bottom: 0.4rem; }
.prose ul li { list-style: disc; }
.prose ol li { list-style: decimal; }
.prose blockquote {
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: var(--bg-2);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  color: var(--text-2);
  font-style: italic;
}

/* ── 5. Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all var(--t-med);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: #fff;
  color: #fff;
}

.btn-accent-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-accent-outline:hover {
  background: var(--accent);
  color: #fff;
}

.btn-ghost {
  background: var(--bg-3);
  color: var(--text-1);
  border-color: var(--border-sub);
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0;
}
.btn-ghost:hover { background: var(--bg-4); color: var(--accent); }

.btn-sm  { padding: 0.4rem 1rem; font-size: 0.7rem; }
.btn-lg  { padding: 0.875rem 2rem;   font-size: 0.9rem; }
.btn-block { width: 100%; justify-content: center; }

/* ── 6. Badges & Pills ───────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.65rem;
  border-radius: var(--r-sm);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge-accent  { background: var(--accent-light); color: var(--accent); border: 1px solid rgba(29, 111, 232, 0.25); }
.badge-blue    { background: var(--accent-light); color: var(--azure); border: 1px solid rgba(59,130,246,0.25); }
.badge-green   { background: rgba(34,197,94,.12); color: var(--success); border: 1px solid rgba(34,197,94,.25); }
.badge-amber   { background: rgba(245,158,11,.12); color: var(--warning); border: 1px solid rgba(245,158,11,.25); }
.badge-outline { background: transparent; color: var(--text-2); border: 1px solid var(--border-sub); }

/* ── 7. Top Info Bar ─────────────────────────────────────────── */
.top-bar {
  background: var(--bg-0);
  border-bottom: 1px solid rgba(29, 111, 232, 0.15);
  padding: 0.5rem 0;
  font-size: 0.8rem;
  color: var(--text-3);
}
.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.top-bar a {
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: color var(--t-fast);
  text-decoration: none;
}
.top-bar a:hover { color: var(--accent); }
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.top-bar-left a span, .top-bar-right div span, .top-bar-right a span { color: inherit; }
.top-bar svg.lucide { width: 14px; height: 14px; color: var(--accent); stroke-width: 2.5; margin-top: -1px; }

.whatsapp-link {
  color: var(--azure) !important;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.725rem;
  background: rgba(59, 130, 246, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: var(--r-full);
}
.whatsapp-link:hover {
  background: rgba(59, 130, 246, 0.15);
  transform: translateY(-1px);
}

/* ── 8. Header — Rock Solid Bedrock (No Flicker, Max Z-Index) ── */
.site-header {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 999999;
  padding: 0.75rem 0;
  background: #0B0E14; /* Deep Industrial Navy Bedrock */
  border-bottom: 2px solid var(--accent);
  transition: padding var(--t-med), background var(--t-med), box-shadow var(--t-med);
  /* No transform, no opacity transitions - rock solid */
}
.site-header.scrolled {
  padding: 0.5rem 0;
  background: #0B0E14;
  box-shadow: 0 10px 40px rgba(0,0,0,0.7);
}
/* Completely stripped out hidden/visible logic */

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Logo */
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 100px; width: auto; display: block; object-fit: contain; max-width: 180px; }


/* Desktop nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.125rem;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link, .nav-item > a {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link:hover, .nav-item:hover > a {
  color: var(--text-1);
  background: rgba(29, 111, 232, 0.08);
}

.nav-link.active, .nav-item > a.active {
  color: var(--accent);
}

/* ── 8.1 Dropdown System ───────────────────────────────────── */
.has-dropdown {
  cursor: pointer;
}

.dropdown-arrow {
  width: 12px;
  height: 12px;
  opacity: 0.5;
  transition: transform var(--t-fast);
  transform: rotate(90deg); /* Points down in my icon set */
}

.nav-item:hover .dropdown-arrow {
  transform: rotate(-90deg); /* Points up */
  color: var(--accent);
  opacity: 1;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 260px;
  background: #0D1117; /* High-contrast Industrial Navy */
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-fast);
  z-index: 1000;
  backdrop-filter: blur(12px);
}

.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-inner {
  display: flex;
  flex-direction: column;
}

/* Mega menu styles */
.dropdown-mega {
  width: 520px;
  padding: 0; 
  overflow: hidden;
}
.dropdown-mega .dropdown-inner {
  flex-direction: row;
}
.dropdown-mega .dropdown-section {
  flex: 1;
  padding: 1.25rem;
}
.dropdown-image-panel {
  width: 240px;
  position: relative;
  border-left: 1px solid rgba(255,255,255,0.05);
}
.dropdown-image-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transition: opacity 0.15s ease;
}
.dropdown-image-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.9), rgba(8,8,8,0.2));
}
.dropdown-image-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.dropdown-image-text strong {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.dropdown-image-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}

.dropdown-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  padding: 0.625rem 0.875rem;
  border-bottom: 1px solid var(--border-sub);
  margin-bottom: 0.5rem;
  display: block;
}

.dropdown-section a {
  display: block;
  padding: 0.75rem 0.875rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-2);
  border-radius: var(--r-sm);
  transition: all var(--t-fast);
  text-transform: none;
  letter-spacing: 0;
}

.dropdown-section a:hover {
  background: var(--accent-light);
  color: var(--text-1);
  padding-left: 1.125rem;
}

/* Dropdown items with product thumbnail images */
.dropdown-link-img {
  display: flex !important;
  align-items: center;
  gap: 0.75rem;
}
.dropdown-thumb {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: var(--r-sm);
  background: var(--bg-2);
  padding: 2px;
  flex-shrink: 0;
}

/* Dropdown items with SVG icons */
.dropdown-link-icon {
  display: flex !important;
  align-items: center;
  gap: 0.65rem;
  white-space: nowrap;
}
.dropdown-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.6;
  stroke: var(--accent);
}
.dropdown-link-icon:hover .dropdown-icon {
  opacity: 1;
}

.dropdown-view-all {
  margin-top: 0.5rem;
  border-top: 1px solid var(--border-sub);
  padding-top: 0.875rem !important;
  color: var(--accent) !important;
  font-weight: 800 !important;
  font-size: 0.75rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
}

.header-actions { display: flex; align-items: center; gap: 0.75rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  border-radius: var(--r-sm);
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform var(--t-med), opacity var(--t-med);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  z-index: 9999999;
  transform: translateX(100%);
  transition: transform var(--t-slow);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-inner { padding: 5.5rem 1.5rem 2rem; }
.mobile-link {
  display: block;
  padding: 0.875rem 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-1);
  border-bottom: 1px solid var(--border-sub);
  text-decoration: none;
}
.mobile-link:hover { color: var(--azure); }
.mobile-contact-strip {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.mobile-contact-strip a {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.875rem; color: var(--text-2);
  text-decoration: none;
}
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(2px);
  z-index: 9999990;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-slow);
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }

/* ── 9. Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  padding: 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-0);
}

/* ── 9. Hero Section (Home) ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #020617;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(2, 6, 23, 0.4) 0%,
    rgba(2, 6, 23, 0.8) 50%,
    rgba(2, 6, 23, 1) 100%
  );
  z-index: 2;
}

.hero-content-wrap {
  position: relative;
  z-index: 10;
  padding: 3rem 0; /* Ultra-compact entry */
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.0;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero h1 .hero-accent {
  color: var(--accent);
}

.hero h1 .hero-light {
  font-weight: 300;
  color: rgba(255,255,255,0.7);
}

.hero-desc {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.7);
  max-width: 800px;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 5rem;
}

/* Trust strip inside hero for consistency */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.hero-trust-item svg {
  color: var(--accent);
  width: 16px;
  height: 16px;
}

/* ── 9.1 Engagement Strips (Home) ─────────────────────────── */

/* 1. Performance Stats: Bright Blue Faded Strip */
.stats-faded-strip {
  background: linear-gradient(90deg, #1D6FE8 0%, #3B82F6 50%, #1D6FE8 100%);
  padding: 1.25rem 0;
  position: relative;
  z-index: 25;
  box-shadow: 0 10px 30px rgba(29, 111, 232, 0.2);
}

.stats-faded-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}

.stat-faded-item {
  text-align: center;
  color: #fff;
}

.stat-faded-item strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-faded-item span {
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.9;
}

/* 2. Partner Bar: Industrial Clean */
.partner-industrial-strip {
  background: #020617;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border-sub);
  position: relative;
  z-index: 20;
}

.partner-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner-label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-3);
  letter-spacing: 0.15em;
}

.partner-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.partner-item {
  font-size: 0.75rem;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .stats-faded-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .partner-flex { flex-direction: column; gap: 1.5rem; }
}

/* ── 9.2 Technical Specifications Elevation ────────────────── */
.specs-table-container {
  background: var(--bg-2);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.product-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.product-specs-table th {
  width: 250px; /* Strong anchor for long technical terms */
  text-align: left;
  padding: 1.125rem 1.75rem;
  font-size: 0.75rem; /* Increased for better legibility */
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-3);
  background: rgba(255,255,255,0.01);
  border-bottom: 1px solid var(--border-sub);
  vertical-align: middle;
}

.product-specs-table td {
  padding: 1.125rem 1.75rem;
  font-size: 0.95rem; /* Larger, authoritative values */
  font-weight: 500;
  color: var(--text-1);
  border-bottom: 1px solid var(--border-sub);
  vertical-align: middle;
}

.product-specs-table tr:hover th { color: var(--text-2); }
.product-specs-table tr:hover td { background: rgba(255,255,255,0.015); }

.product-specs-table tr:last-child th,
.product-specs-table tr:last-child td {
  border-bottom: none;
}

/* ── 9.3 Enquiry Card Modernization ─────────────────────────── */
.enquiry-card {
  padding: 2rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.enquiry-card-header {
  margin-bottom: 2rem;
}

.enquiry-card-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-1);
}

.enquiry-card-header p {
  font-size: 0.85rem;
  color: var(--text-3);
  margin: 0;
}

.enquiry-form-modern {
  display: flex;
  flex-direction: column;
}

.form-modern-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field-group.full-width {
  grid-column: span 2;
}

.form-field-group label {
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon svg {
  position: absolute;
  left: 1rem;
  width: 16px;
  height: 16px;
  color: var(--text-3);
  pointer-events: none;
}

.input-with-icon input,
.form-field-group textarea {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-md);
  padding: 0.875rem 1rem;
  color: var(--text-1);
  font-size: 0.9rem;
  font-family: inherit;
  transition: all var(--t-fast);
}

.input-with-icon input {
  padding-left: 2.75rem;
}

.input-with-icon input:focus,
.form-field-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-4);
  box-shadow: var(--shadow-glow);
}

.input-with-icon input::placeholder,
.form-field-group textarea::placeholder {
  color: var(--text-3);
  opacity: 0.5;
}

@media (max-width: 640px) {
  .form-modern-grid { grid-template-columns: 1fr; }
  .form-field-group.full-width { grid-column: span 1; }
  .enquiry-card { padding: 1.5rem; }
}





.trust-stat-item {
  display: flex;
  flex-direction: column;
}

.trust-stat-item strong {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.trust-stat-item span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-3);
  letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
  .trust-grid { grid-template-columns: 1fr; gap: 3rem; }
  .trust-stats { border-left: none; padding-left: 0; }
}

/* Card spacing refinement for About page */
.about-featured-cards .card {
  margin-bottom: 1.5rem;
}

/* ── 10. Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  min-height: 470px;
  padding: 6rem 0 4rem;
  background-color: var(--bg-0);
  background-size: cover;
  background-position: center center; /* overridden per-page via inline style */
  position: relative;
  overflow: hidden;
  border-bottom: 0px solid var(--border-sub);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.85) 50%, rgba(8,8,8,0.4) 100%);
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 6px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
  z-index: 2;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-content { position: relative; z-index: 1; max-width: 1100px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}
.breadcrumb a { color: var(--text-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--text-1); }
.breadcrumb span { color: var(--text-3); font-size: 0.7em; padding: 0 0.1rem; }

/* ── 11. Brands Strip ────────────────────────────────────────── */
.brands-strip {
  background: var(--bg-0);
  border-top: 1px solid rgba(29, 111, 232, 0.15);
  border-bottom: 1px solid rgba(29, 111, 232, 0.15);
  padding: 1.5rem 0;
}
.brands-strip-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.brands-strip-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-3);
  white-space: nowrap;
  margin: 0;
}
.brand-logo-item {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--text-3);
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--t-fast);
  padding: 0.35rem 0.75rem;
  border: 1px solid var(--border-sub);
  border-radius: var(--r-sm);
}
.brand-logo-item:hover { color: var(--accent); border-color: var(--accent); }

/* ── 12. Stats Section ───────────────────────────────────────── */
.stats-section {
  background: linear-gradient(135deg, #0D1B3E 0%, #1D6FE8 100%);
  padding: 3rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 1rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.75);
  margin-top: 0.25rem;
}

/* ── 13. Cards ───────────────────────────────────────────────── */
.card {
  background: var(--bg-2);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  padding: var(--space-lg);
  transition: all var(--t-med);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-6px) scale(1.01);
}
.card-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}
.card-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--accent-light);
  border: 1px solid rgba(29, 111, 232, 0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
}
.card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.card p  { font-size: 0.875rem; color: var(--text-2); }

/* ── 14. Product Cards ───────────────────────────────────────── */
.product-card {
  background: var(--bg-2);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--t-med), box-shadow var(--t-med), transform var(--t-med);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-blue);
  transform: translateY(-4px);
}

.product-card-img-wrap {
  display: block;
  overflow: hidden;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border-sub);
  height: 220px;
  position: relative;
}
.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.5rem;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img-wrap img {
  transform: scale(1.06);
}

/* No-image placeholder */
.product-card-no-img {
  height: 220px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--border-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
}

.product-card-header {
  padding: 1.25rem 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product-card-chips {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.product-brand-chip {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--accent-light);
  border: 1px solid rgba(29, 111, 232, 0.3);
  border-radius: var(--r-sm);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.product-category-chip {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  background: var(--bg-4);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-sm);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
}
.product-card-header h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-1);
}

.product-card-body {
  padding: 0.75rem 1.5rem;
  flex: 1;
}
.product-card-body p { font-size: 0.85rem; color: var(--text-2); }

.product-specs-mini {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.spec-mini {
  flex: 1;
  min-width: 80px;
  background: var(--bg-3);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-sm);
  padding: 0.4rem 0.6rem;
  text-align: center;
}
.spec-mini-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
}
.spec-mini-value {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-1);
  margin-top: 0.15rem;
}

.product-card-footer {
  display: flex;
  gap: 0.5rem;
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border-sub);
  margin-top: auto;
}

/* ── 15. Grids ───────────────────────────────────────────────── */
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 1.5rem;
}
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }

/* ── 16. Services Grid ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-overview-card {
  background: var(--bg-2);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  padding: 2rem;
  transition: all var(--t-med);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-overview-card:hover {
  border-color: var(--accent);
  background: var(--bg-3);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}
.service-overview-card .icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--accent-light);
  border: 1px solid rgba(29, 111, 232, 0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.service-overview-card h3 { font-size: 1.1rem; color: var(--text-1); }
.service-overview-card p { font-size: 0.875rem; color: var(--text-2); margin: 0; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: auto;
}

/* ── 17. Industries ──────────────────────────────────────────── */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.industry-chip {
  flex: 0 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  background: var(--bg-2);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  text-align: center;
  text-decoration: none;
  transition: all var(--t-med);
  color: var(--text-2);
  font-size: 0.85rem;
  font-weight: 600;
}
.industry-chip:hover {
  border-color: var(--accent);
  background: var(--bg-3);
  color: var(--accent);
  transform: translateY(-2px);
}
.chip-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.chip-icon svg.lucide {
  width: 20px !important;
  height: 20px !important;
}

/* ── 18. Feature List ────────────────────────────────────────── */
.feature-list { display: flex; flex-direction: column; gap: 0.6rem; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-sub);
  font-size: 0.9rem;
  color: var(--text-2);
}
.feature-item::before {
  content: '';
  flex-shrink: 0;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ── 19. Why KZN — Split section ─────────────────────────────── */
.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.why-image-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.why-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.why-image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--accent);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: var(--r-md);
  text-align: center;
}
.why-image-badge .badge-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.why-image-badge .badge-txt {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

/* ── 20. Promo Banner ────────────────────────────────────────── */
.promo-banner {
  background: linear-gradient(135deg, #1552C7 0%, #1D6FE8 100%);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}
.promo-banner::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.promo-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.promo-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.promo-text p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin: 0;
}
.promo-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-white {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.btn-white:hover {
  background: rgba(255,255,255,0.9);
  color: var(--accent-dark);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ── 21. Blog Cards ──────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--bg-2);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--t-med);
  position: relative;
  cursor: pointer;
}
.blog-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}
/* Blog card is now an <a> element — reset link styles */
a.blog-card { text-decoration: none; color: inherit; display: flex; flex-direction: column; }
.blog-card-footer { position: relative; }
.blog-card-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--bg-3), var(--bg-4));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  border-bottom: 1px solid var(--border-sub);
  font-size: 2.5rem;
  position: relative;
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card-body {
  padding: 1.5rem;
  flex: 1;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.8rem;
  color: var(--text-3);
}
.blog-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.blog-card-body h3 a {
  color: var(--text-1);
  text-decoration: none;
}
.blog-card-body h3 a:hover { color: var(--accent); }
.blog-card-body p { font-size: 0.875rem; }
.blog-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-sub);
}

/* ── 22. CTA Section ─────────────────────────────────────────── */
.cta-section {
  background: var(--bg-0);
  padding: var(--space-2xl) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(29, 111, 232, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner h2 { text-transform: uppercase; letter-spacing: -0.02em; }
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── 23. Forms — Industrial Stacking ────────────────────────── */
.hp-field {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  position: absolute;
  left: -9999px;
  height: 0; width: 0;
  visibility: hidden;
}

.form-grid { display: grid; gap: 1.25rem; width: 100%; }
.form-grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 768px) {
  .form-grid-2 { grid-template-columns: 1fr; }
}
.form-group.full { grid-column: 1 / -1; }

.form-group {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  width: 100% !important;
  margin-bottom: 1.5rem;
  position: relative;
}
.form-label {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.725rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}
.form-control {
  display: block !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding: 0.875rem 1.25rem;
  background: #151A22; /* Solid deep grey background */
  border: 1px solid var(--border-sub);
  border-radius: var(--r-md);
  color: var(--text-1);
  font-size: 0.95rem;
  font-family: inherit;
  transition: all var(--t-med);
  outline: none;
}
.form-control:focus {
  background: #1C232B;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(29, 111, 232, 0.15);
}

/* Icons Core Rendering Fix (Global) */
svg.lucide {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.i-sm svg.lucide { width: 14px; height: 14px; }
.i-lg svg.lucide { width: 24px; height: 24px; }

/* ── 24. Divider ─────────────────────────────────────────────── */
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(29, 111, 232, 0.2), transparent);
}

/* ── 25. Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-0);
  border-top: 1px solid var(--border-sub);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .logo img { height: 44px; width: auto; }
.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-3);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* B-BBEE badge */
.bbbee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-md);
  margin-bottom: 1.5rem;
}
.bbbee-icon {
  width: 36px; height: 36px;
  background: var(--accent-light);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.bbbee-level { font-size: 0.875rem; font-weight: 800; color: var(--text-1); }
.bbbee-label { font-size: 0.7rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; }

.footer-brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.brand-chip {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border: 1px solid var(--border-sub);
  border-radius: var(--r-sm);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.brand-chip:hover { color: var(--accent); border-color: var(--accent); }

.footer-heading {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

/* ── 26. Utilities ───────────────────────────────────────────── */
.shape-pattern {
  position: absolute;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}
.shape-rotor {
  width: 400px;
  height: 400px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 10 Q70 10 70 30 T50 50 T30 70 T50 90' fill='none' stroke='%231D6FE8' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* ── 20. Scroll Reveal (High-Fidelity) ───────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px) scale(0.98);
  filter: blur(4px);
  pointer-events: none;
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease), filter 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  pointer-events: auto;
}

/* Staggered delays */
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }
.reveal-delay-6 { transition-delay: 480ms; }
.reveal-delay-7 { transition-delay: 560ms; }
.reveal-delay-8 { transition-delay: 640ms; }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; transform: none; opacity: 1; filter: none; }
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-3);
  text-decoration: none;
  transition: color var(--t-fast);
}
.footer-links a:hover { color: var(--text-1); }

.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-3);
}
.footer-contact-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--text-3); text-decoration: none; }
.footer-contact-item a:hover { color: var(--text-1); }

.footer-bottom {
  border-top: 1px solid var(--border-sub);
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-3);
}
.footer-bottom a { color: var(--text-3); }
.footer-bottom a:hover { color: var(--accent); }

/* ── 26. WhatsApp Floating Button ────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: #fff;
  padding: 0.875rem 1.25rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: all var(--t-med);
  border: none;
  cursor: pointer;
}
.whatsapp-float:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}
.whatsapp-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.whatsapp-text { display: none; }
@media (min-width: 640px) { .whatsapp-text { display: block; } }

/* ── 27. Filter Tabs ─────────────────────────────────────────── */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.filter-tab {
  padding: 0.5rem 1.25rem;
  border-radius: var(--r-sm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border-sub);
  background: var(--bg-2);
  color: var(--text-2);
  cursor: pointer;
  transition: all var(--t-fast);
}
.filter-tab:hover { border-color: var(--accent); color: var(--accent); }
.filter-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-blue);
}


/* ── 29. Flash messages ──────────────────────────────────────── */
.flash {
  padding: 1rem 1.25rem;
  border-radius: var(--r-md);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.flash-success { background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.25); color: var(--success); }
.flash-error   { background: rgba(239,68,68,.12);  border: 1px solid rgba(239,68,68,.25);  color: var(--danger); }
.flash-dismiss { margin-left: auto; background: none; border: none; color: inherit; cursor: pointer; font-size: 1.2rem; line-height: 1; }

/* ── 30. Product Single Page ─────────────────────────────────── */
.product-single-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
.product-gallery {
  background: var(--bg-2);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}
.product-gallery img { width: 100%; max-height: 420px; object-fit: contain; }
.specs-strip {
  display: flex;
  gap: 0;
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 2rem;
}
.spec-block {
  flex: 1;
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid var(--border-sub);
  background: var(--bg-2);
}
.spec-block:last-child { border-right: none; }
.spec-block-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-3);
  margin-bottom: 0.25rem;
}
.spec-block-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
}

.sticky-sidebar { position: sticky; top: 90px; }
.sidebar-card {
  background: var(--bg-2);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.sidebar-card-head {
  background: var(--accent);
  padding: 1rem 1.5rem;
}
.sidebar-card-head h4 { color: #fff; margin: 0; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.04em; }
.sidebar-card-body { padding: 1.5rem; }

/* Service / Industry single */
.service-single-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.single-sidebar {
  position: sticky;
  top: 6rem;
}

/* ── 31. Article (Blog) ──────────────────────────────────────── */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
}
.article-body { max-width: 720px; }
.article-sticky { position: sticky; top: 90px; }
.toc-box {
  background: var(--bg-2);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.toc-box h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.875rem;
}
.toc-list { display: flex; flex-direction: column; gap: 0.5rem; }
.toc-list a {
  font-size: 0.85rem;
  color: var(--text-2);
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--border-sub);
}
.toc-list a:hover { color: var(--accent); }

/* ── 32. Contact Page ────────────────────────────────────────── */
.contact-form-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.bbbee-pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--bg-2);
  border: 1px solid var(--border-sub);
  border-radius: var(--r-lg);
  margin-bottom: 1rem;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--accent-light);
  border: 1px solid rgba(29, 111, 232, 0.25);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-info-card h4 { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.25rem; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-info-card p, .contact-info-card a { font-size: 0.9rem; color: var(--text-2); }

/* ── 33. Specs Table ─────────────────────────────────────────── */
.specs-table { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.specs-table th, .specs-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border-sub);
}
.specs-table th {
  background: var(--bg-3);
  font-weight: 700;
  color: var(--text-1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}
.specs-table td { color: var(--text-2); }
.specs-table tr:last-child td { border-bottom: none; }

/* ── 34. 404 Page ────────────────────────────────────────────── */
.not-found { text-align: center; padding: 6rem 0; }
.not-found-code {
  font-size: clamp(6rem, 20vw, 14rem);
  font-weight: 900;
  line-height: 1;
  color: var(--bg-3);
  display: block;
  letter-spacing: -0.05em;
}

/* ── 35. Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Blog article layout — sidebar below content on tablet/mobile */
  .article-layout { grid-template-columns: 1fr; }
  .article-layout aside { position: static; top: auto; }
}

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .product-single-layout { grid-template-columns: 1fr; }
  .service-single-layout { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .top-bar-left span:not(:first-child):not(:nth-child(2)) { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-split { grid-template-columns: 1fr; }
  .why-image-wrap { display: none; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.15); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  /* Header stays single row on tablet — logo + hamburger + CTA */
  .header-inner { gap: 0.75rem; }
  .logo img { height: 70px; }
}

@media (max-width: 640px) {
  section { padding: 3rem 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
  .hero-trust { gap: 0.75rem 1.25rem; flex-wrap: wrap; }
  .hero-trust-item { font-size: 0.65rem; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .stats-section { padding: 0; }
  .promo-inner { flex-direction: column; }
  .top-bar { display: none; }

  /* Home hero — less padding on mobile */
  .hero { min-height: 75vh; }
  .hero-content-wrap { padding: 1.5rem 0; }

  /* Inner page hero — less top padding on mobile */
  .page-hero { padding: 3rem 0 2rem; min-height: 280px; }

  /* Hero CTA buttons — side by side on mobile */
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }
  .hero-actions .btn { flex: 1; min-width: 130px; justify-content: center; text-align: center; }

  /* CTA section buttons — side by side on mobile */
  .cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
  }
  .cta-actions .btn { flex: 1; min-width: 130px; justify-content: center; text-align: center; }

  /* Partner brand bar — 2 per row on mobile */
  .partner-flex { flex-direction: column; gap: 0.75rem; text-align: center; }
  .partner-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.5rem 1rem; justify-items: center; }
  .partner-label { font-size: 0.65rem; }

  /* Services — 2 per row on mobile */
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
  .service-overview-card { padding: 1rem; }
  .service-overview-card .icon { width: 40px; height: 40px; }
  .service-overview-card h3 { font-size: 0.9rem; }
  .service-overview-card p { font-size: 0.8rem; }

  /* Service / industry single — sidebar below content on mobile */
  .service-single-layout { grid-template-columns: 1fr !important; }
  .single-sidebar { position: static !important; top: auto !important; }

  /* About & Contact page grids — single column on mobile */
  .about-split-grid,
  .contact-form-layout { grid-template-columns: 1fr; gap: 2rem; }
  .bbbee-pillars-grid { grid-template-columns: 1fr 1fr; gap: 0.5rem; }

  /* Industries — 2 per row on mobile */
  .industries-grid { gap: 0.875rem; }
  .industry-card { min-width: calc(50% - 0.875rem); }

  /* Buttons inside content sections stretch to container */
  .btn-lg { padding: 0.75rem 1.25rem; font-size: 0.8rem; height: auto; }

  /* Logo shrinks on small screens */
  .logo img { height: 56px; max-width: 140px; }

  /* Header stays compact — CTA button stays inline, doesn't stretch */
  .header-actions .btn { width: auto; }

  /* Increased spacing above stacked elements on mobile */
  .enquiry-card { margin-top: 3rem; }

  /* Form grids collapse */
  .form-modern-grid { grid-template-columns: 1fr; }
  .form-field-group.full-width { grid-column: span 1; }

  /* Inline button pairs — stay side by side */
  .btn-row-pair { flex-wrap: nowrap; }
  .btn-row-pair .btn { flex: 1; justify-content: center; text-align: center; min-width: 0; white-space: normal; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 1.8rem; }
  .btn-lg { padding: 0.7rem 1.2rem; font-size: 0.75rem; }
  .logo img { height: 48px; max-width: 120px; }
  .header-actions .btn-sm { padding: 0.35rem 0.75rem; font-size: 0.65rem; }
}

/* ── 36. Utility ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: 0.5rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.hidden { display: none !important; }

/* Orange counter colour override */
[data-count] { color: #fff; }
