:root {
  --blue-deep: #0a1628;
  --blue-dark: #0d2347;
  --blue-mid: #1a3a6b;
  --blue-main: #1e4db7;
  --blue-bright: #2563eb;
  --blue-light: #3b82f6;
  --blue-pale: #dbeafe;
  --blue-ultra-pale: #eff6ff;
  --white: #ffffff;
  --off-white: #f8faff;
  --text-dark: #0f172a;
  --text-mid: #334155;
  --text-light: #64748b;
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --border: rgba(30,77,183,0.15);
  --shadow: 0 20px 60px rgba(10,22,40,0.12);
  --shadow-blue: 0 8px 32px rgba(30,77,183,0.2);
}

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

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Syne', sans-serif; }

/* ============================================================
   CUSTOM CURSOR
   ============================================================ */
.cursor {
  width: 12px; height: 12px;
  background: var(--blue-bright);
  border-radius: 50%;
  position: fixed; z-index: 99999;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--blue-bright);
  border-radius: 50%;
  position: fixed; z-index: 99998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0.6;
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
  position: fixed; inset: 0;
  background: var(--blue-deep);
  z-index: 99997;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.preloader-logo {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
  opacity: 0;
}
.preloader-logo span { color: var(--blue-light); }
.preloader-bar {
  width: 200px; height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-light), var(--gold));
  width: 0%;
  border-radius: 2px;
}
.preloader-pct {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 3px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: all 0.4s ease;
}
#mainNav.scrolled {
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  padding: 0 24px;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  max-width: 1280px; margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 18px;
  color: white;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
  position: relative;
  overflow: hidden;
}
.nav-logo-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2));
}
.nav-logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 32px;
  text-transform: uppercase;
  color: white;
  line-height: 1;
}
.nav-logo-text span{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.nav-logo-text small {
  display: block;
  padding-left: 2px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 3.5px;
  text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.25s;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.2px;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 14px; right: 14px;
  height: 1.5px;
  background: var(--blue-light);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--blue-bright);
  color: white !important;
  border-radius: 8px !important;
  padding: 10px 20px !important;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--blue-main) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.5) !important;
}
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: white; border-radius: 2px;
  transition: all 0.3s;
}

/* Dropdown Menu Styling */
.dropdown-menu {
  background: rgba(10, 22, 40, 0.98) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
  border-radius: 12px !important;
  padding: 8px 0 !important;
  min-width: 220px;
}
.dropdown-item {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px !important;
  transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.dropdown-item:hover {
  background: rgba(59, 130, 246, 0.2) !important;
  color: white !important;
}
.dropdown-item.active {
  background: rgba(59, 130, 246, 0.3) !important;
  color: var(--blue-light) !important;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  background: var(--blue-deep);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg-canvas {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,77,183,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,77,183,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 1;
}
.hero-glow-1 {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.2) 0%, transparent 70%);
  top: -100px; right: -100px;
  border-radius: 50%;
}
.hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  bottom: 100px; left: 100px;
  border-radius: 50%;
}
.hero-particles { position: absolute; inset: 0; }
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: rgba(59,130,246,0.6);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  color: #ffffff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 32px;
  transform: translateY(20px);
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--blue-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero-title {
  font-size: 30px;
  font-weight: 700;
  color: white;
  line-height: 1.12;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word {
    display: inline-block;
    text-transform: uppercase;
    font-size: 3rem;
}
.hero-title .accent { color: var(--blue-light);font-size: 2rem; }
.hero-title .gold { color: var(--gold); }
.hero-sub {
  font-size: 18px;
  color: #ffffff;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-actions {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;

}
.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue-bright);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(37,99,235,0.4);
  position: relative;
  overflow: hidden;
}
.btn-hero-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);

  transition: opacity 0.3s;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,99,235,0.5);
  color: white;
}
.btn-hero-primary:hover::before { opacity: 1; }
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-hero-secondary:hover {
  color: white;
  border-color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.05);
}
.hero-stats {
  display: flex; gap: 48px; flex-wrap: wrap;
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);

}
.hero-stat { }
.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: white;
  line-height: 1;
  letter-spacing: -1px;
}
.hero-stat-num .unit {
  color: var(--blue-light);
  font-size: 28px;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
  letter-spacing: 0.3px;
}
.hero-visual {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;

}
.hero-card-stack {
  position: relative;
  width: 100%;
  height: 480px;
}
.h-card {
  position: absolute;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 28px;
  transition: all 0.4s;
}
.h-card-main {
  width: 100%; top: 40px;
  background: rgba(13,35,71,0.8);
  border-color: rgba(37,99,235,0.3);
}
.h-card-float-1 {
  width: 200px;
  width: 180px;
  bottom: 60px; right: -30px;
  background: linear-gradient(135deg, rgba(37,99,235,0.3), rgba(10,22,40,0.6));
  animation: floatCard1 6s ease-in-out infinite;
}
.h-card-float-2 {
  width: 180px;
  bottom: 60px; left: -30px;
  background: rgba(201,168,76,0.15);
  border-color: rgba(201,168,76,0.3);
  animation: floatCard2 8s ease-in-out infinite;
}
@keyframes floatCard1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(0deg); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(10px) rotate(0deg); }
}
.h-card-icon {
  width: 48px; height: 48px;
  background: rgba(37,99,235,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--blue-light);
  margin-bottom: 16px;
}
.h-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700;
  color: white; margin-bottom: 8px;
}
.h-card-text {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.h-card-metric {
  font-family: 'Syne', sans-serif;
  font-size: 32px; font-weight: 700;
  color: white;
}
.h-card-metric-label { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  z-index: 2;
  animation: scrollBounce 2.5s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  background: var(--blue-bright);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.ticker-inner {
  display: flex; gap: 80px;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 16px;
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 600;
  color: white;
  letter-spacing: 1.5px; text-transform: uppercase;
  white-space: nowrap;
}
.ticker-dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,0.5);
  border-radius: 50%;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--blue-bright);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  letter-spacing: -1.5px;
}
.section-title .accent {/* color: var(--blue-bright); */}
.section-body {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.75;
  font-weight: 300;
}

/* Reveal animations */
.reveal-up { opacity: 0; transform: translateY(50px); }
.reveal-left { opacity: 0; transform: translateX(-50px); }
.reveal-right { opacity: 0; transform: translateX(50px); }
.reveal-scale { opacity: 0; transform: scale(0.9); }

/* ============================================================
   FEATURES STRIP
   ============================================================ */
#features-strip {
  padding: 80px 0;
  background: var(--white);
}
.feature-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--blue-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-blue);
  border-color: rgba(37,99,235,0.2);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue-pale), var(--blue-ultra-pale));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: var(--blue-bright);
  margin-bottom: 20px;
  border: 1px solid rgba(37,99,235,0.1);
}
.feature-title {
  font-size: 18px; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.feature-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
#about {
  padding: 120px 0;
  background: var(--blue-deep);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,77,183,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,77,183,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}
.about-number-bg {
  position: absolute;
  font-family: 'Syne', sans-serif;
  font-size: 280px;
  font-weight: 700;
  color: rgba(255,255,255,0.02);
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  user-select: none;
}
.about-content { position: relative; z-index: 1; }
.about-title {
  font-size: clamp(38px, 4.5vw, 60px);
  font-weight: 700;
  color: white;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 28px;
}
.about-title .accent { color: var(--blue-light); }
.about-body {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 40px;
}
.about-checks { list-style: none; margin-bottom: 40px; }
.about-checks li {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.about-checks li:last-child { border: none; }
.about-checks li i {
  width: 22px; height: 22px;
  background: rgba(37,99,235,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
  color: var(--blue-light);
  flex-shrink: 0;
}
.about-img-stack {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 40px; right: 0; bottom: 60px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  border-radius: 20px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
}
.about-img-main-inner {
  text-align: center; padding: 40px;
}
.about-img-icon {
  font-size: 80px; color: rgba(59,130,246,0.3);
  display: block; margin-bottom: 20px;
}
.about-img-main-text {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 700;
  color: white; margin-bottom: 8px;
}
.about-img-main-sub {
  font-size: 14px; color: rgba(255,255,255,0.4);
}
.about-img-float {
  position: absolute;
  bottom: 0; left: 0;
  width: 200px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid));
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.about-float-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px; font-weight: 700;
  color: white; line-height: 1;
}
.about-float-label { font-size: 13px; color: rgba(255,255,255,0.7); margin-top: 6px; }
.about-values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 48px;
}
.value-tag {
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--blue-light);
  transition: all 0.3s;
}
.value-tag:hover {
  background: rgba(37,99,235,0.2);
  transform: translateY(-3px);
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
#industries {
  padding: 120px 0;
  background: var(--off-white);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  group: true;
}
.industry-card:hover { transform: scale(1.03); box-shadow: 0 24px 60px rgba(10,22,40,0.2); }
.industry-bg {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  transition: transform 0.5s;
}
.industry-card:hover .industry-bg { transform: scale(1.1); }
.industry-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.4) 60%, rgba(10,22,40,0.1) 100%);
}
.industry-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 50px 0 0 0;
}
.industry-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(37,99,235,0.3);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: white;
  margin-bottom: 12px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  transform: translateY(10px); opacity: 0.8;
  transition: all 0.4s;
}
.industry-card:hover .industry-icon-wrap { transform: translateY(0); opacity: 1; }
.industry-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  padding: 20px 30px;
  text-decoration: none;
}
.industry-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s;

}
.industry-card:hover .industry-desc { max-height: 60px; opacity: 1; }
.industry-arrow {
  position: absolute;
  top: 24px; right: 24px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px;
  border: 1px solid rgba(255,255,255,0.2);
  transform: rotate(-45deg);
  transition: all 0.3s;
}
.industry-card:hover .industry-arrow {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  transform: rotate(0deg);
}

/* Color themes per card */
.ind-1 .industry-bg { background: linear-gradient(135deg, #0f2a4a, #1e4db7); }
.ind-2 .industry-bg { background: linear-gradient(135deg, #0a2a1a, #166534); }
.ind-3 .industry-bg { background: linear-gradient(135deg, #2a1a0a, #9a3412); }
.ind-4 .industry-bg { background: linear-gradient(135deg, #1a0a2a, #7c3aed); }
.ind-5 .industry-bg { background: linear-gradient(135deg, #0a1a2a, #0369a1); }

/* ============================================================
   GLOBAL PRESENCE
   ============================================================ */
#global {
  padding: 120px 0;
  background: var(--white);
  overflow: hidden;
}
.world-map-container {
  position: relative;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-dark) 100%);
  border-radius: 24px;
  padding: 60px;
  overflow: hidden;
  min-height: 400px;
  display: flex; align-items: center; justify-content: center;
}
.world-map-container::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(37,99,235,0.3) 0%, transparent 60%),
                    radial-gradient(circle at 70% 50%, rgba(201,168,76,0.15) 0%, transparent 50%);
}
.map-svg-wrap {
  position: relative; z-index: 1;
  width: 100%;
  max-width: 700px;
}
.map-dots {
  position: absolute; inset: 60px;
  z-index: 2;
}
.map-dot {
  position: absolute;
  width: 10px; height: 10px;
  background: var(--blue-light);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 4px rgba(59,130,246,0.2);
  animation: dotPulse 2s ease-in-out infinite;
}
.map-dot::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(59,130,246,0.4);
  animation: ripple 2s ease-in-out infinite;
}
@keyframes ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}
@keyframes dotPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.3); }
}
.map-dot.gold {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.2);
}
.map-dot.gold::before { border-color: rgba(201,168,76,0.4); }
.map-dot-label {
  position: absolute;
  top: -28px; left: 50%;
  transform: translateX(-50%);
  background: rgba(10,22,40,0.9);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.map-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px; font-weight: 700;
  color: white;
  text-align: center;
  position: relative; z-index: 2;
}
.map-subtitle { color: rgba(255,255,255,0.5); font-size: 13px; text-align: center; }
.geo-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px; margin-top: 48px;
}
.geo-item {
  background: var(--blue-ultra-pale);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
}
.geo-item:hover {
  background: var(--blue-pale);
  border-color: rgba(37,99,235,0.3);
  transform: translateY(-4px);
}
.geo-flag { font-size: 28px; margin-bottom: 8px; }
.geo-name { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.geo-sub { font-size: 11px; color: var(--text-light); margin-top: 2px; }

/* ============================================================
   STATS SECTION
   ============================================================ */
#stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-main) 50%, var(--blue-dark) 100%);
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.stat-box {
  text-align: center;
  padding: 20px;
  position: relative;
}
.stat-box::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-box:last-child::after { display: none; }
.stat-count {
  font-family: 'Syne', sans-serif;
  font-size: 56px; font-weight: 700;
  color: white;
  line-height: 1;
  letter-spacing: -2px;
}
.stat-unit { color: var(--gold-light); }
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-top: 8px;
  letter-spacing: 0.3px;
}

/* ============================================================
   VALUES
   ============================================================ */
#values {
  padding: 120px 0;
  background: var(--blue-deep);
  position: relative;
}
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.value-block {
  padding: 48px 40px;
  position: relative;
  transition: all 0.4s;
  border: 1px solid rgba(255,255,255,0.04);
}
.value-block::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(37,99,235,0.05);

  transition: opacity 0.3s;
}
.value-block:hover::before { opacity: 1; }
.value-block-num {
  font-family: 'Syne', sans-serif;
  font-size: 14px; font-weight: 700;
  color: rgba(37,99,235,0.5);
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.value-block-icon {
  font-size: 32px;
  color: var(--blue-light);
  margin-bottom: 16px;
  display: block;
}
.value-block-title {
  font-size: 22px; font-weight: 700;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.value-block-text {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
#testimonials {
  padding: 120px 0;
  background: var(--off-white);
  overflow: hidden;
}
.testimonial-track {
  display: flex; gap: 24px;
  animation: slideLeft 40s linear infinite;
  width: max-content;
}
.testimonial-track:hover { animation-play-state: paused; }
.t-card {
  width: 380px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.t-card:hover {
  box-shadow: var(--shadow-blue);
  border-color: rgba(37,99,235,0.2);
  transform: translateY(-4px);
}
.t-quote-icon {
  font-size: 32px;
  color: var(--blue-light);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.t-text {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.t-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.t-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}
.t-role {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}
.t-stars {
  margin-left: auto;
  color: var(--gold);
  font-size: 12px;
}
@keyframes slideLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   CTA
   ============================================================ */
#cta {
  padding: 100px 0;
  background: var(--blue-deep);
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.25) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner {
  position: relative; z-index: 1;
  text-align: center;
}
.cta-title {
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 700;
  color: white;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.cta-title .accent {color: var(--blue-light);}
.cta-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 48px;
  font-weight: 300;
}
.cta-actions {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--blue-bright);
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 600; font-size: 15px;
  padding: 18px 36px; border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 8px 32px rgba(37,99,235,0.4);
}
.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(37,99,235,0.5); color: white; }
.btn-cta-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  color: white;
  font-family: 'Syne', sans-serif;
  font-weight: 600; font-size: 15px;
  padding: 18px 36px; border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
}
.btn-cta-secondary:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); color: white; }
.contact-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 80px;
}
.contact-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 28px;
  text-align: center; transition: all 0.3s;
}
.contact-card:hover { background: rgba(37,99,235,0.1); border-color: rgba(37,99,235,0.3); transform: translateY(-4px); }
.contact-icon { font-size: 28px; color: var(--blue-light); margin-bottom: 12px; }
.contact-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.contact-value { font-size: 14px; color: white; font-weight: 500; line-height: 1.5; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #060f1e;
  padding: 80px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-logo-text {
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 700;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.footer-logo-text span { color: var(--blue-light); }
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 280px;
  margin-bottom: 28px;
}
.footer-social {
  display: flex; gap: 10px;
}
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s;
  border: 1px solid rgba(255,255,255,0.08);
}
.footer-social a:hover { background: var(--blue-bright); color: white; border-color: var(--blue-bright); }
.footer-heading {
  font-family: 'Syne', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-links a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--blue-light);
  transition: width 0.3s;
}
.footer-links a:hover { color: white; }
.footer-links a:hover::before { width: 12px; }
.footer-bottom {
  margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom-text {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-text a { color: var(--blue-light); text-decoration: none; }
.footer-cr-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 11px; color: rgba(255,255,255,0.3);
  letter-spacing: 0.5px;
}

/* ============================================================
   MOBILE
   ============================================================ */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--blue-deep);
  z-index: 999;
  padding: 100px 32px 40px;
  flex-direction: column; gap: 8px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 700;
  color: white; text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--blue-light); }
.mobile-menu-close {
  position: fixed; top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: none; border-radius: 50%;
  color: white; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 1000;
}

@media (max-width: 1100px) {
  .hero-visual { display: none; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .about-img-stack { display: none; }
  .hero-stats { gap: 28px; }
  .industry-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .geo-grid { grid-template-columns: repeat(2, 1fr); }
  .about-values-grid { grid-template-columns: repeat(2, 1fr); }
  .world-map-container { padding: 32px 20px; }
  .cursor, .cursor-follower { display: none; }
}


/* ============================================================
   PAGE HERO (inner pages — replaces full-screen hero)
   ============================================================ */
.page-hero {
  min-height: 420px;
  background: var(--blue-deep);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,77,183,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,77,183,0.07) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-hero-glow {
  position: absolute;
  width: 700px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 65%);
  top: -100px; right: -150px;
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  bottom: -80px; left: 50px;
  border-radius: 50%;
  pointer-events: none;
}
.page-hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 80px 24px 60px;
  width: 100%;
}
.breadcrumb-nav {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.breadcrumb-nav a { color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.breadcrumb-nav a:hover { color: var(--blue-light); }
.breadcrumb-nav .sep { color: rgba(255,255,255,0.2); }
.breadcrumb-nav .current { color: var(--blue-light); }
.page-hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  color: var(--blue-light);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 20px;
}
.page-hero-tag-dot {
  width: 5px; height: 5px;
  background: var(--blue-light);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.page-hero-title {
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 700;
  color: white;
  line-height: 1.06;
  letter-spacing: -2px;
  margin-bottom: 20px;
}
.page-hero-title .accent { color: var(--blue-light); }
.page-hero-title .gold { color: var(--gold); }
.page-hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  font-weight: 300;
  max-width: 620px;
}
.page-hero-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37,99,235,0.4), transparent);
}

/* ============================================================
   SHARED MINI CTA BANNER
   ============================================================ */
.mini-cta {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-main) 100%);
  padding: 60px 0;
  position: relative; overflow: hidden;
}
.mini-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.08) 0%, transparent 60%);
}
.mini-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.mini-cta-text h3 {
  font-size: 28px; font-weight: 700;
  color: white; letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.mini-cta-text p { font-size: 15px; color: rgba(255,255,255,0.7); }
.mini-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: white;
  color: var(--blue-bright);
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 14px;
  padding: 16px 32px; border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.mini-cta-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,0.2); color: var(--blue-main); }

/* ============================================================
   SERVICE PAGE — CONTENT SECTIONS
   ============================================================ */
.benefit-card h4{
display: inline-block;
}
.benefit-icon{
  display: inline-block;
}

.svc-overview {
  padding: 100px 0;
  background: var(--white);
}
.svc-overview-img {
  border-radius: 20px;
  overflow: hidden;
  height: 440px;
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.svc-overview-img-inner {
  font-size: 100px;
  /* opacity: 0.25; */
}
.svc-overview-img-badge {
  position: absolute;
  bottom: 28px; left: 28px;
  background: rgba(10,22,40,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 14px;
  padding: 16px 20px;
}
.svc-overview-img-badge strong {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 22px; font-weight: 700;
  color: white; line-height: 1;
}
.svc-overview-img-badge span { font-size: 12px; color: rgba(255,255,255,0.5); }

.svc-lead {
  font-size: 20px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
  border-left: 3px solid var(--blue-bright);
  padding-left: 20px;
}
.svc-body { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }
.svc-checklist { list-style: none; margin: 32px 0; }
.svc-checklist li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; color: var(--text-mid);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.svc-checklist li:last-child { border: none; }
.svc-checklist li .chk-icon {
  width: 24px; height: 24px;
  background: var(--blue-ultra-pale);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--blue-bright);
  flex-shrink: 0; margin-top: 1px;
}

/* Applications grid */
.svc-applications {
  padding: 100px 0;
  background: var(--off-white);
}
.app-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  transition: all 0.35s;
  position: relative; overflow: hidden;
}
.app-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-bright), var(--blue-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.app-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-blue); border-color: rgba(37,99,235,0.15); }
.app-card:hover::after { transform: scaleX(1); }
.app-icon {
  width: 52px; height: 52px;
  background: var(--blue-ultra-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--blue-bright);
  margin-bottom: 18px;
  border: 1px solid rgba(37,99,235,0.1);
}
.app-title { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.app-text { font-size: 13px; color: var(--text-light); line-height: 1.65; }

/* Products / chemicals table */
.svc-products {
  padding: 100px 0;
  background: var(--blue-deep);
  position: relative; overflow: hidden;
}
.svc-products::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,77,183,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,77,183,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}
.products-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 48px;
}
.product-pill {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 18px 20px;
  display: flex; align-items: center; gap: 12px;
  transition: all 0.3s;
}
.product-pill:hover {
  background: rgba(37,99,235,0.12);
  border-color: rgba(37,99,235,0.3);
  transform: translateX(4px);
}
.product-pill-dot {
  width: 8px; height: 8px;
  background: var(--blue-light);
  border-radius: 50%; flex-shrink: 0;
}
.product-pill-name { font-size: 14px; color: rgba(255,255,255,0.8); font-weight: 500; }

/* Why choose us strip */
.svc-why {
  padding: 100px 0;
  background: var(--white);
}
.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--off-white);
  height: 100%;
  transition: all 0.35s;
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-blue); border-color: rgba(37,99,235,0.2); background: white; }
.why-num {
  font-family: 'Syne', sans-serif;
  font-size: 48px; font-weight: 700;
  color: var(--blue-pale);
  line-height: 1; margin-bottom: 12px;
  letter-spacing: -2px;
}
.why-title { font-size: 17px; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; }
.why-text { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ============================================================
   ABOUT PAGE SPECIFIC
   ============================================================ */
.about-pg-story {
  padding: 100px 0;
  background: var(--white);
}
.story-img {
  border-radius: 20px; overflow: hidden;
  height: 500px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.story-img-icon { font-size: 90px; opacity: 0.2; }
.story-img-float {
  position: absolute; bottom: 28px; right: 28px;
  background: rgba(10,22,40,0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 14px; padding: 20px 24px;
  text-align: center;
}
.story-img-float strong {
  display: block; font-family: 'Syne', sans-serif;
  font-size: 36px; font-weight: 700; color: white;
  line-height: 1; letter-spacing: -1px;
}
.story-img-float span { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 4px; display: block; }
.story-lead { font-size: 20px; color: var(--text-mid); line-height: 1.75; font-weight: 300; margin-bottom: 28px; }
.story-body { font-size: 16px; color: var(--text-light); line-height: 1.8; margin-bottom: 20px; }

.about-pg-mission {
  padding: 100px 0;
  background: var(--blue-deep);
  position: relative; overflow: hidden;
}
.about-pg-mission::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,77,183,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,77,183,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}
.mission-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 44px 36px;
  height: 100%; transition: all 0.35s;
  position: relative; overflow: hidden;
}
.mission-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue-bright), var(--blue-light));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.mission-card:hover { background: rgba(37,99,235,0.08); border-color: rgba(37,99,235,0.2); }
.mission-card:hover::before { transform: scaleX(1); }
.mission-card-icon { font-size: 36px; color: var(--blue-light); margin-bottom: 20px; display: block; }
.mission-card-title { font-size: 22px; font-weight: 700; color: white; margin-bottom: 14px; letter-spacing: -0.3px; }
.mission-card-text { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.75; }

.about-pg-timeline {
  padding: 100px 0;
  background: var(--off-white);
}
.timeline-item {
  display: flex; gap: 32px; margin-bottom: 48px;
  position: relative;
}
.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 27px; top: 56px; bottom: -48px;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-bright), rgba(37,99,235,0.1));
}
.timeline-dot {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700; color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(37,99,235,0.35);
}
.timeline-body { padding-top: 8px; }
.timeline-year { font-size: 12px; font-weight: 600; color: var(--blue-bright); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.timeline-title { font-size: 20px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.timeline-text { font-size: 14px; color: var(--text-light); line-height: 1.7; }

.about-pg-team {
  padding: 100px 0;
  background: var(--white);
}
.iso-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  text-align: center; height: 100%;
  transition: all 0.35s;
}
.iso-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-blue); border-color: rgba(37,99,235,0.2); }
.iso-badge {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-light));
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 13px; font-weight: 700; color: white;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(37,99,235,0.35);
  letter-spacing: -0.3px;
}
.iso-title { font-size: 18px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.iso-text { font-size: 13px; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   CONTACT PAGE SPECIFIC
   ============================================================ */
.contact-pg {
  padding: 100px 0;
  background: var(--white);
}
.contact-info-block {
  background: var(--blue-deep);
  border-radius: 24px; padding: 52px 44px;
  position: relative; overflow: hidden;
  height: 100%;
}
.contact-info-block::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(30,77,183,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,77,183,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.contact-info-block-inner { position: relative; z-index: 1; }
.contact-info-title {
  font-size: 28px; font-weight: 700;
  color: white; letter-spacing: -0.5px;
  margin-bottom: 8px;
}
.contact-info-sub { font-size: 15px; color: rgba(255,255,255,0.5); margin-bottom: 44px; line-height: 1.6; }
.ci-item {
  display: flex; gap: 16px; margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ci-item:last-child { border: none; margin-bottom: 0; padding-bottom: 0; }
.ci-icon-wrap {
  width: 44px; height: 44px;
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.25);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--blue-light);
  flex-shrink: 0;
}
.ci-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 5px;
}
.ci-value {
  font-size: 14px; color: rgba(255,255,255,0.8);
  line-height: 1.6; font-weight: 500;
}
.ci-value a { color: var(--blue-light); text-decoration: none; }
.ci-value a:hover { text-decoration: underline; }
.contact-social-row {
  display: flex; gap: 10px; margin-top: 40px;
}
.contact-social-row a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 15px;
  text-decoration: none; transition: all 0.3s;
}
.contact-social-row a:hover { background: var(--blue-bright); color: white; border-color: var(--blue-bright); }

/* Contact form */
.contact-form-wrap {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 24px; padding: 52px 44px;
}
.contact-form-wrap h3 {
  font-size: 26px; font-weight: 700;
  color: var(--text-dark); letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.contact-form-wrap p { font-size: 14px; color: var(--text-light); margin-bottom: 36px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block; font-size: 12px; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--text-mid); margin-bottom: 8px;
}
.form-control-ti {
  width: 100%; padding: 14px 18px;
  background: white; border: 1.5px solid var(--border);
  border-radius: 10px; font-family: 'DM Sans', sans-serif;
  font-size: 15px; color: var(--text-dark);
  transition: all 0.25s; outline: none;
  appearance: none;
}
.form-control-ti:focus {
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(37,99,235,0.08);
}
.form-control-ti::placeholder { color: rgba(100,116,139,0.6); }
textarea.form-control-ti { resize: vertical; min-height: 130px; }
select.form-control-ti { cursor: pointer; }
.btn-form-submit {
  width: 100%; padding: 16px;
  background: var(--blue-bright);
  color: white; border: none;
  border-radius: 10px; cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(37,99,235,0.3);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-form-submit:hover { background: var(--blue-main); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(37,99,235,0.4); }

.contact-map {
  padding: 0 0 100px;
  background: var(--white);
}
.map-embed {
  border-radius: 20px; overflow: hidden;
  height: 400px;
  border: 1px solid var(--border);
}
.map-embed iframe { width: 100%; height: 100%; border: none; filter: grayscale(20%); }

.faq-section {
  padding: 100px 0;
  background: var(--off-white);
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px; margin-bottom: 12px;
  overflow: hidden; transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(37,99,235,0.2); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--text-dark); cursor: pointer;
  gap: 20px;
}
.faq-q i {
  color: var(--blue-bright); font-size: 18px;
  transition: transform 0.3s; flex-shrink: 0;
}
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  padding: 0 28px; max-height: 0;
  overflow: hidden; transition: all 0.35s ease;
  font-size: 15px; color: var(--text-light); line-height: 1.75;
}
.faq-item.open .faq-a { padding: 0 28px 22px; max-height: 300px; }

@media (max-width: 991px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .mini-cta-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .page-hero { min-height: 320px; }
  .page-hero-title { font-size: 36px; letter-spacing: -1px; }
  .products-grid { grid-template-columns: 1fr; }
  .contact-form-wrap, .contact-info-block { padding: 36px 28px; }
  .contact-grid { grid-template-columns: 1fr; }
  .svc-overview-img { height: 280px; }
  .timeline-item:not(:last-child)::after { display: none; }
}


