/* ============================================
   EverBright Group — Corporate Website
   Design System v2.0 · Industrial Premium
   Deep Navy · Gold · Glass Morphism
   ============================================ */

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Core Palette */
  --navy:         #080f1e;
  --navy-light:   #0f1f3d;
  --navy-mid:     #162848;
  --navy-card:    rgba(15, 31, 61, 0.85);

  /* Gold System */
  --gold:         #c9a84c;
  --gold-bright:  #e8c96a;
  --gold-light:   #f0dfa0;
  --gold-dim:     rgba(201, 168, 76, 0.15);
  --gold-glow:    rgba(201, 168, 76, 0.35);

  /* Neutral Scale */
  --white:        #ffffff;
  --gray-50:      #f7f9fc;
  --gray-100:     #edf0f5;
  --gray-200:     #d8dfea;
  --gray-300:     #b8c4d4;
  --gray-400:     #8fa0b5;
  --gray-500:     #637490;
  --gray-600:     #475569;
  --gray-700:     #2f3f55;
  --gray-800:     #1a2638;

  /* Semantic */
  --text-primary:   var(--gray-700);
  --text-secondary: var(--gray-500);
  --text-muted:     var(--gray-400);
  --border-light:   rgba(255, 255, 255, 0.08);
  --border-gold:    rgba(201, 168, 76, 0.25);

  /* Typography */
  --font-zh:  'Noto Sans SC', sans-serif;
  --font-en:  'Inter', sans-serif;

  /* Spacing scale */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  /* Radius */
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  28px;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow:     0 4px 24px rgba(0,0,0,0.09);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 16px 56px rgba(0,0,0,0.16);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.2);

  /* Transitions */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --transition: all 0.3s var(--ease);
  --transition-slow: all 0.5s var(--ease);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-zh), var(--font-en);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.45s var(--ease),
              box-shadow  0.45s var(--ease),
              border-color 0.45s var(--ease);
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(8, 15, 30, 0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 32px rgba(0,0,0,0.25);
}

.nav-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  transition: opacity 0.25s;
}
.nav-logo:hover { opacity: 0.85; }

.nav-logo-text {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo-ebg {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1;
  background: linear-gradient(135deg, #ffffff 0%, rgba(91,200,232,0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo-sep {
  font-size: 14px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  margin-top: -1px;
}
.nav-logo-name {
  font-family: var(--font-zh);
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1.5px;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: var(--space-8);
  align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.70);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.28s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.lang-switch {
  border: 1px solid rgba(255,255,255,0.22) !important;
  padding: 4px 14px !important;
  border-radius: 4px;
  font-size: 12px !important;
  letter-spacing: 1px !important;
  transition: border-color 0.25s, color 0.25s !important;
}
.lang-switch:hover {
  border-color: var(--gold) !important;
}
.lang-switch::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================
   HERO — v3.0 Full Redesign
   ============================================ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
}

/* ── Abstract Tech Background ──────────── */
.hero-bg-tech {
  position: absolute; inset: 0; z-index: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(22, 40, 72, 0.8) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 70%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 30%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #050a14 0%, #0a1628 50%, #0f1f3d 100%);
}

/* Precision Grid Background */
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 1;
  background-image: 
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 30%, transparent 70%);
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Circuit SVG Background */
.hero-circuit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.8;
}

.circuit-lines-h line {
  animation: circuitFlowH 12s ease-in-out infinite;
}
.circuit-lines-h line:nth-child(2) { animation-delay: -3s; }
.circuit-lines-h line:nth-child(3) { animation-delay: -6s; }
.circuit-lines-h line:nth-child(4) { animation-delay: -9s; }

.circuit-lines-v line {
  animation: circuitFlowV 10s ease-in-out infinite;
}
.circuit-lines-v line:nth-child(2) { animation-delay: -2.5s; }
.circuit-lines-v line:nth-child(3) { animation-delay: -5s; }
.circuit-lines-v line:nth-child(4) { animation-delay: -7.5s; }
.circuit-lines-v line:nth-child(5) { animation-delay: -4s; }

.circuit-nodes circle {
  animation: nodePulse 3s ease-in-out infinite;
}
.circuit-nodes circle:nth-child(2) { animation-delay: -0.5s; }
.circuit-nodes circle:nth-child(3) { animation-delay: -1s; }
.circuit-nodes circle:nth-child(4) { animation-delay: -1.5s; }
.circuit-nodes circle:nth-child(5) { animation-delay: -2s; }
.circuit-nodes circle:nth-child(6) { animation-delay: -2.5s; }
.circuit-nodes circle:nth-child(7) { animation-delay: -3s; }
.circuit-nodes circle:nth-child(8) { animation-delay: -3.5s; }

@keyframes circuitFlowH {
  0%, 100% { opacity: 0.3; transform: translateX(-20px); }
  50% { opacity: 1; transform: translateX(20px); }
}

@keyframes circuitFlowV {
  0%, 100% { opacity: 0.2; transform: translateY(-15px); }
  50% { opacity: 0.8; transform: translateY(15px); }
}

@keyframes nodePulse {
  0%, 100% { opacity: 0.3; r: 3; }
  50% { opacity: 1; r: 5; }
}

/* Geometric Frame Animations */
.hero-geo-frame {
  position: absolute;
  border: 1px solid rgba(201, 168, 76, 0.08);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.hero-geo-frame-1 {
  top: -150px; left: -150px;
  width: 500px; height: 500px;
  animation: frameRotate1 80s linear infinite;
}
.hero-geo-frame-1::before {
  content: '';
  position: absolute;
  inset: 50px;
  border: 1px solid rgba(201, 168, 76, 0.04);
  border-radius: 50%;
}

.hero-geo-frame-2 {
  bottom: -180px; right: -180px;
  width: 600px; height: 600px;
  animation: frameRotate2 100s linear infinite reverse;
}
.hero-geo-frame-2::before {
  content: '';
  position: absolute;
  inset: 60px;
  border: 1px solid rgba(91, 200, 232, 0.03);
  border-radius: 50%;
}
.hero-geo-frame-2::after {
  content: '';
  position: absolute;
  inset: 120px;
  border: 1px solid rgba(201, 168, 76, 0.02);
  border-radius: 50%;
}

.hero-geo-frame-3 {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(1000px, 100vw); 
  height: min(1000px, 100vw);
  border-color: rgba(201, 168, 76, 0.03);
  animation: frameRotate3 120s linear infinite;
}

@keyframes frameRotate1 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes frameRotate2 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes frameRotate3 {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Particle Canvas */
.hero-canvas {
  position: absolute; inset: 0;
  z-index: 3;
  width: 100%; height: 100%;
}

/* Gradient Overlay */
.hero-overlay {
  position: absolute; inset: 0; z-index: 4;
  background:
    linear-gradient(180deg,
      rgba(8,15,30,0.3) 0%,
      rgba(8,15,30,0.2) 40%,
      rgba(8,15,30,0.4) 100%);
}

/* Top golden accent bar */
.hero-overlay::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,168,76,0.0) 15%,
    rgba(201,168,76,0.6) 40%,
    var(--gold) 50%,
    rgba(201,168,76,0.6) 60%,
    rgba(201,168,76,0.0) 85%,
    transparent 100%);
  z-index: 5;
}

/* ── Corner brackets ───────────────────── */
.hero-corner {
  position: absolute;
  width: 28px; height: 28px;
  z-index: 3;
  opacity: 0;
  animation: heroFadeUp 0.6s 1.4s var(--ease-out) forwards;
}
.hero-corner-tl { top: 28px; left: 28px; border-top: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.hero-corner-tr { top: 28px; right: 28px; border-top: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }
.hero-corner-bl { bottom: 28px; left: 28px; border-bottom: 1.5px solid var(--gold); border-left: 1.5px solid var(--gold); }
.hero-corner-br { bottom: 28px; right: 28px; border-bottom: 1.5px solid var(--gold); border-right: 1.5px solid var(--gold); }

/* ── Side labels ───────────────────────── */
.hero-side-label {
  position: absolute;
  font-family: var(--font-en);
  font-size: 10.5px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.18);
  font-weight: 400;
  z-index: 3;
  white-space: nowrap;
  opacity: 0;
  animation: heroFadeUp 0.6s 1.6s var(--ease-out) forwards;
}
.hero-side-label-left {
  left: 20px; top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center center;
}
.hero-side-label-right {
  right: 20px; top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
}

/* ── Main content ──────────────────────── */
.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  padding: 0 var(--space-8);
  max-width: 960px;
  width: 100%;
}

/* LOGO mark */
.hero-logo-mark {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: heroFadeUp 0.8s 0.05s var(--ease-out) forwards;
}
.hero-logo-img {
  max-height: 56px;
  width: auto;
  max-width: min(360px, 70vw);
  object-fit: contain;
  /* 统一金色品牌色 */
  filter: drop-shadow(0 4px 20px rgba(201,168,76,0.4)) 
          saturate(1.3) 
          brightness(1.05);
}

/* Footer LOGO */
.footer-logo-img {
  max-width: 240px;
  height: auto;
  filter: drop-shadow(0 2px 12px rgba(201,168,76,0.3));
  opacity: 0.9;
  transition: var(--transition);
}
.footer-logo-img:hover {
  opacity: 1;
  filter: drop-shadow(0 4px 20px rgba(201,168,76,0.5));
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  opacity: 0;
  animation: heroFadeUp 0.8s 0.2s var(--ease-out) forwards;
}
.hero-eyebrow-line {
  flex: 1; max-width: 80px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.6));
}
.hero-eyebrow-line:last-child {
  background: linear-gradient(90deg, rgba(201,168,76,0.6), transparent);
}
.hero-eyebrow-text {
  font-family: var(--font-en);
  font-size: 11.5px;
  letter-spacing: 4px;
  color: var(--gold);
  font-weight: 500;
  white-space: nowrap;
}

/* Main title */
.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: heroFadeUp 0.9s 0.45s var(--ease-out) forwards;
}

.title-main {
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1.05;
  display: block;
  background: linear-gradient(160deg,
    #ffffff 0%,
    rgba(255,255,255,0.95) 35%,
    rgba(220,210,180,0.90) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  filter: drop-shadow(0 2px 30px rgba(201,168,76,0.2));
}

.title-accent {
  font-size: clamp(18px, 3vw, 38px);
  font-weight: 300;
  letter-spacing: 0.4em;
  display: block;
  background: linear-gradient(90deg,
    rgba(201,168,76,0.4) 0%,
    var(--gold-bright) 35%,
    var(--gold) 50%,
    var(--gold-bright) 65%,
    rgba(201,168,76,0.4) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 4px;
}

/* Sub / typewriter */
.hero-sub {
  font-size: clamp(14px, 1.9vw, 18px);
  color: rgba(255,255,255,0.52);
  letter-spacing: 0.12em;
  margin-bottom: var(--space-8);
  font-weight: 300;
  opacity: 0;
  animation: heroFadeUp 0.9s 0.7s var(--ease-out) forwards;
}
.typewriter-text {
  color: rgba(201,168,76,0.82);
  font-weight: 400;
}
.typewriter-cursor {
  color: var(--gold);
  animation: cursorBlink 1.1s step-end infinite;
  font-weight: 300;
}
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Divider */
.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: var(--space-8);
  opacity: 0;
  animation: heroFadeUp 0.8s 0.9s var(--ease-out) forwards;
}
.hero-divider-line {
  width: 48px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4));
}
.hero-divider-line:last-child {
  background: linear-gradient(90deg, rgba(201,168,76,0.4), transparent);
}
.hero-divider-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201,168,76,0.6);
}

/* ── Inline stats preview ──────────────── */
.hero-stats-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--space-10);
  opacity: 0;
  animation: heroFadeUp 0.8s 1.05s var(--ease-out) forwards;
}
.hero-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 0 clamp(16px, 3vw, 36px);
}
.hero-stat-num {
  font-family: var(--font-en);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1;
  letter-spacing: 1px;
}
.hero-stat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 1.5px;
  font-weight: 400;
}
.hero-stat-sep {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom,
    transparent, rgba(201,168,76,0.35), transparent);
}

/* ── Actions ───────────────────────────── */
.hero-actions {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s 1.2s var(--ease-out) forwards;
}

/* Ghost button variant for Hero */
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(201,168,76,0.45);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ── Scroll indicator ─────────────────── */
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.3);
  font-size: 10px;
  letter-spacing: 2.5px;
  font-family: var(--font-en);
  opacity: 0;
  animation: heroFadeUp 0.8s 1.5s var(--ease-out) forwards;
  z-index: 4;
}
.scroll-track {
  width: 2px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.scroll-thumb {
  width: 100%; height: 40%;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollSlide 2s ease-in-out infinite;
}
@keyframes scrollSlide {
  0%   { transform: translateY(-100%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(250%); opacity: 0; }
}

/* ── Keyframes ─────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 14px 34px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.4px;
  border: 1.5px solid transparent;
  font-family: inherit;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }
.btn-sm   { padding: 8px 20px; font-size: 13px; }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--white);
  padding: var(--space-10) 0;
  border-bottom: 1px solid var(--gray-100);
  position: relative;
  z-index: 10;
  box-shadow: 0 -6px 24px rgba(0,0,0,0.04);
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-6);
  text-align: center;
}

.stat-item {
  position: relative;
  padding: var(--space-4) 0;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, var(--gray-200), transparent);
}

.stat-number {
  font-family: var(--font-en);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-1);
  line-height: 1.1;
}
.stat-label {
  font-size: 12.5px;
  color: var(--gray-500);
  letter-spacing: 0.3px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: var(--space-24) 0; }

.section-dark {
  background: var(--navy-light);
  color: rgba(255,255,255,0.80);
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}
.section-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-4);
  position: relative;
  padding: 0 var(--space-5);
}
.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%; width: 20px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.section-tag::before { right: 100%; margin-right: 6px; }
.section-tag::after  { left:  100%; margin-left:  6px; }

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: var(--space-3);
  letter-spacing: 0.5px;
  line-height: 1.2;
}
.section-dark .section-title { color: var(--white); }

.section-desc {
  font-size: 15.5px;
  color: var(--gray-500);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.section-dark .section-desc { color: rgba(255,255,255,0.48); }

/* ============================================
   ABOUT — v2 Redesign
   ============================================ */
.section-about { background: var(--white); }

/* Header: logo centered */
.about-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--gray-100);
  position: relative;
}
.about-header::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%; transform: translateX(-50%);
  width: 56px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-bright), transparent);
  border-radius: 2px;
}
.about-header-logo { margin-bottom: var(--space-5); }
.about-logo {
  height: 52px; width: auto;
  max-width: min(400px, 100%);
  object-fit: contain;
}
.about-header-meta { display: flex; flex-direction: column; align-items: center; gap: var(--space-2); }
.about-header-tag {
  font-family: var(--font-en); font-size: 11px;
  letter-spacing: 4px; color: var(--gold); font-weight: 600;
  text-transform: uppercase;
}
.about-header-title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800; color: var(--navy); letter-spacing: 0.02em;
}
.about-header-sub {
  font-size: clamp(13.5px, 1.5vw, 15.5px);
  color: var(--gray-500); letter-spacing: 0.2px; max-width: 520px;
}

/* Stats row — dark banner */
.about-stats-row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-10);
  box-shadow: var(--shadow-md);
}
.about-stat-card {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  padding: clamp(18px, 2.5vw, 32px) clamp(14px, 2.5vw, 36px);
  flex: 1;
}
.about-stat-year {
  font-family: var(--font-en);
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 700; color: var(--gold-bright);
  line-height: 1; letter-spacing: 0.5px;
}
.about-stat-unit { font-size: 0.65em; font-weight: 400; opacity: 0.8; }
.about-stat-lbl {
  font-size: 10.5px; color: rgba(255,255,255,0.38);
  letter-spacing: 1.5px; text-transform: uppercase; font-family: var(--font-en);
}
.about-stat-sep {
  width: 1px; align-self: stretch; margin: 16px 0;
  background: rgba(255,255,255,0.07); flex-shrink: 0;
}

/* Two-column grid */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: start;
}
.about-col { display: flex; flex-direction: column; gap: var(--space-6); }

/* Story text */
.about-story-text p {
  font-size: 14.5px; line-height: 1.9; color: var(--gray-600);
  margin-bottom: var(--space-4);
}
.about-story-text p:last-child { margin-bottom: 0; }
.about-story-text strong { color: var(--navy-mid); font-weight: 600; }

/* Value cards — hover dark fill */
.about-values { display: flex; flex-direction: column; gap: var(--space-3); }
.about-value-card {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: all 0.3s var(--ease);
}
.about-value-card:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateX(5px);
  box-shadow: var(--shadow-sm);
}
.about-value-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-dim); border-radius: 8px; color: var(--gold);
  transition: all 0.3s;
}
.about-value-card:hover .about-value-icon {
  background: rgba(201,168,76,0.2); color: var(--gold-bright);
}
.about-value-content { display: flex; flex-direction: column; gap: 2px; }
.about-value-content strong { font-size: 14px; font-weight: 600; color: var(--navy); transition: color 0.3s; }
.about-value-content span   { font-size: 12px; color: var(--gray-500); transition: color 0.3s; }
.about-value-card:hover strong { color: var(--white); }
.about-value-card:hover span   { color: rgba(255,255,255,0.55); }

/* Visual column */
.about-col-visual { gap: var(--space-5); }

/* Vis card with gold top bar */
.about-vis-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--gray-100);
  overflow: hidden;
  transition: all 0.35s var(--ease);
  position: relative;
}
.about-vis-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-bright) 100%);
  opacity: 0;
  transition: opacity 0.35s;
}
.about-vis-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--gold-dim); }
.about-vis-card:hover::before { opacity: 1; }

.about-vis-card-header {
  display: flex; align-items: center; gap: var(--space-3);
  margin-bottom: var(--space-5);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--gray-200);
}
.about-vis-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,0.12); border-radius: 7px; color: var(--gold);
}
.about-vis-card-header span { font-size: 13px; font-weight: 600; color: var(--navy); letter-spacing: 0.3px; }

/* Chain flow — vertical node style */
.chain-flow { display: flex; flex-direction: column; gap: 0; }
.chain-step { display: flex; align-items: center; gap: var(--space-4); }
.chain-node {
  width: 42px; height: 42px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-dim);
  border: 1.5px solid var(--gold-glow);
  border-radius: 50%;
  transition: all 0.3s;
}
.about-vis-card:hover .chain-node { background: var(--gold); border-color: var(--gold); }
.about-vis-card:hover .chain-node .chain-num { color: var(--navy); }
.chain-node-final { background: rgba(91,200,232,0.1); border-color: rgba(91,200,232,0.3); }
.chain-num {
  font-family: var(--font-en); font-size: 11.5px; font-weight: 700;
  color: var(--gold); transition: color 0.3s;
}
.chain-info { display: flex; flex-direction: column; gap: 1px; flex: 1; }
.chain-info strong { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.chain-info small  { font-size: 11px; color: var(--gray-500); font-family: var(--font-en); }
.chain-connector {
  width: 1.5px; height: 18px;
  background: linear-gradient(to bottom, var(--gold-glow), var(--gray-300));
  margin: 2px 0 2px 20.5px;
}

/* Base info cards */
.base-cards { display: flex; flex-direction: column; gap: var(--space-3); }
.base-card {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-3) var(--space-4);
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all 0.3s;
}
.base-card:hover { border-color: var(--gold-dim); box-shadow: var(--shadow-sm); transform: translateX(3px); }
.base-card-badge {
  width: 38px; height: 38px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: var(--gold);
  font-family: var(--font-en); font-size: 10.5px; font-weight: 700;
  border-radius: 8px; letter-spacing: 0.5px;
}
.base-card-body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.base-card-body strong { font-size: 13px; font-weight: 600; color: var(--navy); white-space: nowrap; }
.base-card-area { font-size: 11.5px; color: var(--gray-500); font-family: var(--font-en); }
.base-card-headcount { font-size: 11px; color: var(--gold); font-weight: 500; }
.base-card-tags { display: flex; flex-wrap: wrap; gap: 3px; justify-content: flex-end; }
.base-card-tags span { font-size: 10px; padding: 2px 6px; background: var(--gray-100); color: var(--gray-500); border-radius: 3px; }

/* ============================================
   TIMELINE - Simplified
   ============================================ */
.section-timeline { background: var(--white); }

.milestone-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 960px;
  margin: 0 auto var(--space-12);
  padding: var(--space-8) 0;
}

.milestone-line {
  position: absolute;
  top: calc(var(--space-8) + 20px);
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg,
    var(--gold) 0%,
    var(--gold-bright) 50%,
    var(--gold) 100%);
}

.milestone-item {
  position: relative;
  text-align: center;
  flex: 1;
  max-width: 200px;
  z-index: 1;
}

.milestone-dot {
  width: 16px;
  height: 16px;
  background: var(--gold);
  border-radius: 50%;
  margin: 0 auto var(--space-3);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.2),
              0 0 20px rgba(201,168,76,0.4);
  transition: var(--transition);
}

.milestone-item:hover .milestone-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px rgba(201,168,76,0.15),
              0 0 30px rgba(201,168,76,0.6);
}

.milestone-current .milestone-dot {
  width: 20px;
  height: 20px;
  background: var(--gold-bright);
  box-shadow: 0 0 0 5px rgba(201,168,76,0.25),
              0 0 25px rgba(201,168,76,0.5);
}

.milestone-year {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.5px;
  margin-bottom: var(--space-1);
}

.milestone-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-2);
}

.milestone-brief {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
}

/* Summary Stats */
.milestone-summary {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
  padding: var(--space-8);
  background: var(--navy);
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 0 auto;
}

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

.summary-num {
  display: block;
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--space-1);
}

.summary-lbl {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .milestone-track {
    flex-direction: column;
    gap: var(--space-8);
    align-items: center;
  }
  .milestone-line {
    display: none;
  }
  .milestone-item {
    max-width: 280px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: var(--space-4);
  }
  .milestone-dot {
    margin: 0;
    flex-shrink: 0;
  }
  .milestone-year { font-size: 22px; }
  .milestone-brief { display: none; }
  
  .milestone-summary {
    flex-wrap: wrap;
    gap: var(--space-6);
  }
  .summary-item { flex: 1 1 40%; }
}

/* ============================================
   COMPANIES
   ============================================ */
.companies-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}
.company-card {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: grid;
  grid-template-columns: 360px 1fr;
  transition: var(--transition-slow);
  position: relative;
}
.company-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.company-card:hover::before { opacity: 1; }
.company-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 56px rgba(0,0,0,0.28);
}
.company-card-featured {
  background: rgba(201,168,76,0.04);
}

.company-img {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.company-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s var(--ease);
}
.company-card:hover .company-img img { transform: scale(1.06); }
/* Gradient overlay on company image */
.company-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(15,31,61,0.7) 100%);
  pointer-events: none;
}

.company-body { padding: var(--space-8); }
.company-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--gold);
  margin-bottom: var(--space-2);
  text-transform: uppercase;
}
.company-body h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
  line-height: 1.35;
}
.company-body p {
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(255,255,255,0.58);
  margin-bottom: var(--space-4);
}
.company-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.company-capabilities span {
  padding: 3px 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.11);
  border-radius: 20px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.company-capabilities span:hover {
  background: var(--gold-dim);
  border-color: var(--border-gold);
  color: var(--gold-light);
}

.company-stats-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}
.mini-stat {
  text-align: center;
  padding: var(--space-4) var(--space-2);
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.mini-stat:hover {
  background: var(--gold-dim);
  border-color: var(--border-gold);
}
.mini-stat strong {
  display: block;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}
.mini-stat span {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 2px;
}
.company-cert {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.cert {
  padding: 5px 13px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: var(--radius-sm);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold);
}

/* ============================================
   NEWS
   ============================================ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.news-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.news-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.news-card:hover::after { transform: scaleX(1); }
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.2);
}

.news-featured {
  grid-column: span 3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 0 var(--space-6);
  align-items: center;
}
.news-featured::after { display: none; }
.news-featured .news-date {
  grid-row: 1 / -1;
  font-family: var(--font-en);
  font-size: 56px;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  padding-right: var(--space-6);
  border-right: 1px solid rgba(255,255,255,0.12);
  letter-spacing: -2px;
}

.news-date {
  font-family: var(--font-en);
  font-size: 13.5px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-2);
}
.news-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--gold-dim);
  color: var(--gold);
  border-radius: var(--radius-sm);
  font-size: 11.5px;
  font-weight: 600;
  margin-bottom: var(--space-3);
}
.news-featured .news-tag {
  background: rgba(201,168,76,0.18);
}
.news-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: var(--space-2);
  line-height: 1.45;
}
.news-featured h3 {
  font-size: 19px;
  color: var(--white);
}
.news-card p {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.7;
}
.news-featured p { color: rgba(255,255,255,0.62); }

/* ============================================
   CAPABILITIES
   ============================================ */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-20);
}
.cap-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cap-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; right: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  transform: translateX(-50%);
  transition: width 0.4s var(--ease);
}
.cap-card:hover::before { width: 100%; }
.cap-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.25);
}

.cap-icon {
  width: 62px; height: 62px;
  margin: 0 auto var(--space-5);
  background: linear-gradient(135deg, rgba(8,15,30,0.05), rgba(8,15,30,0.09));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: var(--transition);
}
.cap-card:hover .cap-icon {
  background: var(--gold-dim);
  color: var(--gold);
}
.cap-icon svg { width: 34px; height: 34px; }

.cap-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-1);
}
.cap-num {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-4);
  line-height: 1.1;
}
.cap-card ul {
  text-align: left;
  margin-bottom: var(--space-4);
}
.cap-card ul li {
  font-size: 12.5px;
  color: var(--gray-600);
  padding: 4px 0 4px 15px;
  position: relative;
  line-height: 1.5;
}
.cap-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.cap-app {
  font-size: 11.5px;
  color: var(--gray-400);
  padding-top: var(--space-3);
  border-top: 1px solid var(--gray-100);
  line-height: 1.5;
}

/* === Quality === */
.quality-section {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-12);
  border: 1px solid var(--gray-100);
}
.quality-section h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: var(--space-2);
}
.quality-section > p {
  text-align: center;
  color: var(--gray-500);
  margin-bottom: var(--space-8);
  font-size: 14.5px;
}
.quality-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.quality-item {
  background: var(--white);
  padding: var(--space-4);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: var(--transition);
}
.quality-item:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow);
}
.quality-item strong {
  display: block;
  font-size: 13.5px;
  color: var(--navy);
  margin-bottom: 2px;
}
.quality-item span { font-size: 12px; color: var(--gray-500); }

.cert-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--white);
  padding: var(--space-5);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.cert-badge:hover {
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow);
}
.cert-icon {
  width: 40px; height: 40px;
  background: var(--gold-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.cert-badge strong { display: block; font-size: 13.5px; color: var(--navy); }
.cert-badge span   { font-size: 12px; color: var(--gray-500); }

/* ============================================
   SOLUTIONS
   ============================================ */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
}
.solution-card {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: var(--transition-slow);
}
.solution-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 56px rgba(0,0,0,0.32);
}
.solution-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.solution-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.solution-card:hover .solution-img img { transform: scale(1.08); }
.solution-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--space-4) var(--space-5);
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
}
.solution-overlay span {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1.5px;
}
.solution-body { padding: var(--space-6); }
.solution-body h3 {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}
.solution-body p {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(255,255,255,0.58);
  margin-bottom: var(--space-4);
}
.solution-products {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}
.solution-products span {
  padding: 3px 10px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 16px;
  font-size: 11.5px;
  color: var(--gold-light);
}

/* ============================================
   CLIENTS
   ============================================ */
.clients-wall {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-5);
}
.client-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-6) var(--space-4);
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  gap: var(--space-2);
}
.client-logo-item:hover {
  background: var(--white);
  border-color: rgba(201,168,76,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.client-logo-item img {
  height: 28px; width: auto;
  opacity: 0.6;
  transition: opacity 0.25s;
  filter: grayscale(20%);
}
.client-logo-item:hover img {
  opacity: 1;
  filter: none;
}
.client-logo-item span {
  font-size: 11px;
  color: var(--gray-400);
  font-weight: 500;
}

/* ============================================
   EQUIPMENT GALLERY
   ============================================ */
.section-equipment { background: var(--gray-50); }

.equip-stats-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--space-4);
  margin-bottom: 72px;
}
.equip-stat {
  text-align: center;
  padding: var(--space-6) var(--space-3);
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.equip-stat::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.equip-stat:hover::before { transform: scaleX(1); }
.equip-stat:hover {
  border-color: rgba(201,168,76,0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.equip-stat strong {
  display: block;
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-1);
}
.equip-stat span { font-size: 12.5px; color: var(--gray-500); }

.equip-gallery { display: flex; flex-direction: column; gap: var(--space-12); }
.equip-group-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--gray-200);
}
.equip-group-tag {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  padding: 4px 12px;
  background: var(--navy);
  color: var(--gold);
  border-radius: var(--radius-sm);
}
.equip-group-header h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
}

.equip-photos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-5);
}
.equip-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-slow);
}
.equip-photo:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201,168,76,0.25);
}
.equip-photo img {
  width: 100%; height: 220px;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.equip-photo:hover img { transform: scale(1.06); }
.equip-photo-caption { padding: var(--space-4) var(--space-5); }
.equip-photo-caption strong {
  display: block;
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: var(--space-1);
}
.equip-photo-caption span {
  font-size: 12.5px;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.contact-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.contact-item:hover { padding-left: 6px; }
.contact-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,0.08);
  border-radius: 10px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition);
}
.contact-item:hover .contact-icon {
  background: var(--gold-dim);
  transform: scale(1.08);
}
.contact-item strong {
  display: block;
  font-size: 14.5px;
  color: var(--white);
  margin-bottom: var(--space-1);
}
.contact-item p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.48);
  line-height: 1.6;
}

.contact-form {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-xl);
  padding: var(--space-10);
  border: 1px solid var(--border-light);
}
.contact-form h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-1);
}
.contact-form > p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-6);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}
input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 13.5px;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.28); }
input:focus, select:focus, textarea:focus {
  border-color: rgba(201,168,76,0.6);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
select { cursor: pointer; margin-bottom: var(--space-3); }
select option { background: var(--navy); color: var(--white); }
textarea { resize: vertical; margin-bottom: var(--space-4); }

/* ============================================
   HONORS
   ============================================ */
.honors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  margin-bottom: 72px;
}
.honor-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.honor-item:hover {
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.3);
  box-shadow: var(--shadow-md);
}
.honor-badge-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201,168,76,0.07);
  border-radius: var(--radius);
  flex-shrink: 0;
  transition: var(--transition);
}
.honor-item:hover .honor-badge-icon {
  background: var(--gold-dim);
  transform: scale(1.08);
}
.honor-info h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.honor-info p {
  font-size: 12px;
  color: var(--gray-500);
}

.honor-cert-wall {
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  border: 1px solid var(--gray-100);
}
.honor-wall-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-8);
}
.honor-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.honor-cert-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
  aspect-ratio: 4/3;
}
.honor-cert-card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.3);
}
.honor-cert-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.honor-cert-card:hover img { transform: scale(1.05); }

/* ============================================
   CAREERS
   ============================================ */
.career-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-12);
}
.benefit-item {
  text-align: center;
  padding: var(--space-8) var(--space-5);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.35s;
}
.benefit-item:hover::before { transform: scaleX(1); }
.benefit-item:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  background: rgba(255,255,255,0.06);
}
.benefit-icon {
  margin-bottom: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
}
.benefit-item h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2);
}
.benefit-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.jobs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
  gap: var(--space-4);
}
.jobs-header h3 {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
}
.job-filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
}
.filter-btn {
  padding: 6px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  color: rgba(255,255,255,0.55);
  font-size: 12.5px;
  font-weight: 500;
  transition: var(--transition);
}
.filter-btn:hover {
  border-color: var(--border-gold);
  color: var(--gold-light);
}
.filter-btn.active {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-12);
}
.job-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--space-7, 28px);
  transition: var(--transition);
}
.job-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
  background: rgba(255,255,255,0.06);
}
.job-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: var(--space-3);
  gap: var(--space-3);
}
.job-card-header h4 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.job-salary {
  font-family: var(--font-en);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.job-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}
.job-tag {
  padding: 3px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-sm);
  font-size: 11.5px;
  color: rgba(255,255,255,0.55);
}
.job-tag.company {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.18);
  color: var(--gold-light);
}
.job-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: var(--space-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.job-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.job-benefits span {
  padding: 2px 8px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.18);
  border-radius: 12px;
  font-size: 11px;
  color: rgba(74,222,128,0.8);
}

.career-cta {
  text-align: center;
  padding: var(--space-12);
  background: rgba(201,168,76,0.04);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
}
.career-cta h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-2);
}
.career-cta > p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-6);
}
.cta-actions {
  display: flex;
  gap: var(--space-3);
  justify-content: center;
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}
.career-contact-info {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.career-contact-info p { margin: 4px 0; }

/* ============================================
   JOB MODAL
   ============================================ */
.job-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  animation: fadeIn 0.22s ease;
  padding: var(--space-5);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }

.job-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 700px;
  max-height: 88vh;
  overflow-y: auto;
  animation: fadeUp 0.3s var(--ease-out);
  color: var(--gray-700);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  color: var(--gray-400);
  background: var(--gray-50);
  border: none;
  transition: var(--transition);
  z-index: 10;
}
.modal-close:hover { background: var(--gray-100); color: var(--gray-700); }
.modal-header {
  padding: var(--space-8) var(--space-8) 0;
  position: relative;
}
.modal-header h2 {
  font-size: 22px; font-weight: 800;
  color: var(--navy); margin-bottom: var(--space-1);
}
.modal-meta {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  margin: var(--space-4) 0;
  padding: 0 var(--space-8);
}
.modal-meta .job-tag {
  background: var(--gray-50);
  border-color: var(--gray-200);
  color: var(--gray-600);
}
.modal-meta .job-tag.company {
  background: var(--gold-dim);
  border-color: rgba(201,168,76,0.3);
  color: var(--gold);
}
.modal-section { padding: var(--space-5) var(--space-8); }
.modal-section h3 {
  font-size: 15.5px; font-weight: 700;
  color: var(--navy); margin-bottom: var(--space-3);
}
.modal-section p  { font-size: 13.5px; line-height: 1.8; color: var(--gray-600); }
.modal-section ul { padding-left: 0; list-style: none; }
.modal-section ul li {
  font-size: 13.5px; color: var(--gray-600);
  padding: 4px 0 4px 20px;
  position: relative; line-height: 1.7;
}
.modal-section ul li::before {
  content: ''; position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
}
.modal-benefits {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
}
.modal-benefits span {
  padding: 4px 12px;
  background: var(--gold-dim);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 20px;
  font-size: 13px; color: var(--gold);
}
.apply-form {
  padding: var(--space-6) var(--space-8) var(--space-8);
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}
.apply-form h3 {
  font-size: 17px; font-weight: 700;
  color: var(--navy); margin-bottom: var(--space-4);
}
.apply-form input,
.apply-form textarea {
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--gray-700);
  margin-bottom: var(--space-3);
}
.apply-form input::placeholder,
.apply-form textarea::placeholder { color: var(--gray-400); }
.apply-form input:focus,
.apply-form textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.apply-form textarea { resize: vertical; min-height: 80px; }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: #050b16;
  padding: var(--space-16) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.footer-logo-img {
  margin-bottom: var(--space-4);
  height: 56px; width: auto; max-width: 260px;
}
.footer-brand p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.42);
  line-height: 1.8;
}
.footer-sub {
  font-size: 12px !important;
  color: rgba(255,255,255,0.24) !important;
  margin-top: var(--space-2) !important;
  font-family: var(--font-en);
}
.footer-links h4 {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-5);
  letter-spacing: 0.3px;
}
.footer-links a {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  padding: 4px 0;
  transition: color 0.22s, padding-left 0.22s;
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 6px;
}
.footer-links p {
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  padding: 4px 0;
  line-height: 1.6;
}
.footer-bottom {
  padding: var(--space-6) 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}
.footer-bottom p { margin: 3px 0; }

/* ============================================
   ANIMATIONS & SCROLL FX
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.fade-in:nth-child(2) { transition-delay: 0.08s; }
.fade-in:nth-child(3) { transition-delay: 0.16s; }
.fade-in:nth-child(4) { transition-delay: 0.24s; }
.fade-in:nth-child(5) { transition-delay: 0.32s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .capabilities-grid { grid-template-columns: repeat(3, 1fr); }
  .equip-stats-row { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .about-stats-row { gap: 0; }
  .about-stat-card { padding: 20px 12px; }
  .company-card { grid-template-columns: 300px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { gap: var(--space-12); }
}

@media (max-width: 768px) {
  .nav-logo-ebg { font-size: 17px; }
  .nav-logo-sep { display: none; }
  .nav-logo-name { font-size: 12px; }
  .nav-logo-text { gap: 6px; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: rgba(8,15,30,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: var(--space-6);
    gap: 0;
    border-bottom: 1px solid var(--border-light);
  }
  .nav-links.active { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: var(--space-3) 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 15px;
  }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }

  .stats-bar .container { grid-template-columns: repeat(2, 1fr); }
  .stat-item:last-child { grid-column: 1 / -1; }
  .stat-item:not(:last-child)::after { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .about-stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .about-stat-sep { display: none; }
  .about-logo { height: 44px; }
  .base-card-tags { display: none; }

  .company-card { grid-template-columns: 1fr; }
  .company-img { min-height: 200px; }
  .company-img::after { display: none; }
  .company-stats-mini { grid-template-columns: repeat(2, 1fr); }

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

  .news-grid { grid-template-columns: 1fr; }
  .news-featured { grid-column: span 1; grid-template-columns: 1fr; }
  .news-featured .news-date {
    grid-row: auto;
    font-size: 28px;
    padding-right: 0;
    padding-bottom: var(--space-3);
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .solutions-grid { grid-template-columns: 1fr; }
  .quality-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-badges { grid-template-columns: 1fr; }

  .clients-wall { grid-template-columns: repeat(3, 1fr); }

  .honors-grid { grid-template-columns: 1fr; }
  .honor-gallery { grid-template-columns: repeat(2, 1fr); }
  .honor-cert-wall { padding: var(--space-6); }

  .career-benefits { grid-template-columns: repeat(2, 1fr); }
  .jobs-grid { grid-template-columns: 1fr; }
  .job-filters { width: 100%; overflow-x: auto; flex-wrap: nowrap; }
  .filter-btn { white-space: nowrap; }
  .jobs-header { flex-direction: column; align-items: flex-start; }

  .contact-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .section { padding: var(--space-16) 0; }

  .modal-header, .modal-meta, .modal-section, .apply-form {
    padding-left: var(--space-5); padding-right: var(--space-5);
  }
  .career-cta { padding: var(--space-8) var(--space-5); }
  .quality-section { padding: var(--space-6); }
  .contact-form { padding: var(--space-6); }

  /* Hero mobile */
  .hero-side-label { display: none; }
  .hero-corner { width: 18px; height: 18px; }
  .hero-stats-preview { gap: 0; }
  .hero-stat-item { padding: 0 10px; }
  .hero-stat-sep { height: 24px; }
  .hero-geo-tl, .hero-geo-br { opacity: 0.5; }
  .hero-actions { gap: var(--space-3); }
  .hero-actions .btn { padding: 12px 22px; font-size: 13px; }
}

@media (max-width: 480px) {
  .clients-wall { grid-template-columns: repeat(2, 1fr); }
  .capabilities-grid { grid-template-columns: 1fr; }
  .equip-photos { grid-template-columns: 1fr; }
  .honor-gallery { grid-template-columns: repeat(2, 1fr); }
  .career-benefits { grid-template-columns: 1fr; }
}
