/* ============================================================
   ABSOLUTE TECHNOLOGIES — PREMIUM GLOBAL REDESIGN 2026
   Aesthetic: Clean White Luxury · Electric Blue Accents · Bold Typography
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&family=DM+Mono:wght@400;500&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --white:       #ffffff;
  --off-white:   #f7f8fc;
  --light:       #eef0f7;
  --mid:         #c8cde0;
  --steel:       #8892a4;
  --body:        #3d4459;
  --dark:        #1a1e2e;
  --navy:        #0d1121;

  --blue:        #0057ff;
  --blue-mid:    #0040cc;
  --blue-bright: #3d7fff;
  --blue-pale:   #e8efff;
  --blue-glow:   rgba(0, 87, 255, 0.15);

  --gold:        #f59e0b;
  --gold-pale:   #fff8e6;

  --red:         #ef4444;
  --green:       #10b981;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;

  --shadow-sm:   0 1px 4px rgba(13,17,33,0.06), 0 2px 8px rgba(13,17,33,0.04);
  --shadow-md:   0 4px 16px rgba(13,17,33,0.08), 0 8px 32px rgba(13,17,33,0.06);
  --shadow-lg:   0 12px 40px rgba(13,17,33,0.12), 0 24px 64px rgba(13,17,33,0.08);
  --shadow-blue: 0 8px 32px rgba(0, 87, 255, 0.24);

  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --transition:  all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:       72px;
}

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
}
img { display: block; max-width: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: normal; color: var(--blue); }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 4px; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ── LAYOUT UTILITIES ───────────────────────────────────── */
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}
.section { padding: 96px 40px; max-width: 1260px; margin: 0 auto; }
.section-full { padding: 96px 0; background: var(--off-white); }
.section-full .inner { max-width: 1260px; margin: 0 auto; padding: 0 40px; }

/* ── EYEBROW ────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

/* ── SECTION TITLE ──────────────────────────────────────── */
.section-title {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
  max-width: 720px;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--steel);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,87,255,0.35);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(245,158,11,0.3);
}
.btn-gold:hover {
  background: #e08f00;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(245,158,11,0.4);
}
.btn-outline {
  border: 1.5px solid var(--mid);
  color: var(--navy);
  background: var(--white);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
  transform: translateY(-2px);
}
.btn-ghost {
  color: var(--blue);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-ghost:hover { gap: 10px; }
.btn-ghost .arr { transition: transform 0.2s ease; }
.btn-ghost:hover .arr { transform: translateX(4px); }

/* ── NAVIGATION ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(200,205,224,0.4);
  transition: var(--transition);
}
nav.scrolled {
  box-shadow: 0 4px 24px rgba(13,17,33,0.08);
  border-color: var(--mid);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-emblem {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  border-radius: 9px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-emblem::before {
  content: '';
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.9);
  border-radius: 4px;
  position: absolute;
  transform: rotate(15deg);
}
.logo-emblem::after {
  content: '';
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  position: absolute;
}
.logo-text { display: flex; flex-direction: column; }
.logo-text .primary {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.logo-text .tagline {
  font-size: 10px;
  font-weight: 500;
  color: var(--steel);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-mono);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--body);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  letter-spacing: 0.01em;
  position: relative;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--blue);
  background: var(--blue-pale);
}
.nav-links a.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 9px 20px;
  border-radius: var(--radius-sm);
}
.nav-links a.nav-cta:hover {
  background: var(--blue-mid);
  color: var(--white);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--mid);
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--body);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.mobile-nav a:hover, .mobile-nav a.active { color: var(--blue); background: var(--blue-pale); }
.mobile-nav a.cta {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  margin-top: 8px;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  filter: saturate(0.5);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(13,17,33,0.95) 45%, rgba(13,17,33,0.5) 100%);
}
/* animated grid overlay */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(0,87,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,87,255,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 40s linear infinite;
}
@keyframes gridDrift {
  0% { transform: translate(0,0); }
  100% { transform: translate(60px, 60px); }
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(0,87,255,0.4);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--blue-bright);
  background: rgba(0,87,255,0.08);
  margin-bottom: 28px;
  width: fit-content;
}
.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.4); }
}
.hero-headline {
  font-size: clamp(36px, 5vw, 66px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
}
.hero-headline em {
  color: var(--blue-bright);
  display: block;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-btns .btn-outline {
  border-color: rgba(255,255,255,0.2);
  color: var(--white);
  background: transparent;
}
.hero-btns .btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.07);
  color: var(--white);
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat {}
.stat-num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-num span { color: var(--blue-bright); }
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hero-panel-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.hero-panel-card:hover {
  background: rgba(0,87,255,0.12);
  border-color: rgba(0,87,255,0.3);
  transform: translateX(4px);
}
.pc-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 6px;
}
.pc-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.pc-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 10px;
}
.pc-tag {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(0,87,255,0.2);
  border: 1px solid rgba(0,87,255,0.3);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--blue-bright);
  letter-spacing: 0.08em;
}

/* ── CLIENTS BAR ────────────────────────────────────────── */
.clients-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  gap: 32px;
  overflow: hidden;
}
.clients-bar .lbl {
  flex-shrink: 0;
  padding: 0 48px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}
.clients-ticker {
  display: flex;
  gap: 0;
  animation: tickerScroll 18s linear infinite;
  white-space: nowrap;
}
@keyframes tickerScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.client-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  padding: 0 24px;
  transition: color 0.2s;
}
.client-name:hover { color: rgba(255,255,255,0.8); }

/* ── FEATURES GRID ──────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--light);
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 0;
}
.feature-card {
  background: var(--white);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover { background: var(--off-white); }
.feature-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.feature-text {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.7;
}

/* ── SOLUTIONS GRID ─────────────────────────────────────── */
.solutions-section { padding: 96px 0; background: var(--off-white); }
.solutions-section .inner { max-width: 1260px; margin: 0 auto; padding: 0 40px; }
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sol-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.sol-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--mid);
}
.sol-img {
  height: 220px;
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.sol-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  opacity: 0.8;
}
.sol-card:hover .sol-img img { transform: scale(1.05); }
.sol-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,33,0.7) 0%, transparent 60%);
}
.sol-cat {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
  font-weight: 500;
}
.sol-body {
  padding: 28px 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.sol-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.sol-text {
  font-size: 14px;
  color: var(--steel);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

/* ── ABOUT LAYOUT ───────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: start;
}
.about-body {
  font-size: 16px;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 16px;
}
.pillars { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.pillar {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light);
  transition: var(--transition);
}
.pillar:hover { border-color: var(--blue); background: var(--blue-pale); }
.pillar-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.pillar-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.pillar p { font-size: 13.5px; color: var(--steel); line-height: 1.65; }

/* ── INFO CARD ──────────────────────────────────────────── */
.info-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.info-card-title {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--light);
  padding-bottom: 14px;
  margin-bottom: 20px;
}
.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 13.5px;
}
.info-row:last-child { margin-bottom: 0; }
.info-ico { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.info-row strong { display: block; color: var(--navy); font-weight: 600; margin-bottom: 2px; font-size: 13px; }
.info-row span { color: var(--steel); font-size: 13px; line-height: 1.5; }
.info-row a { color: var(--blue); }
.info-row a:hover { text-decoration: underline; }

/* ── CLIENT MOSAIC ──────────────────────────────────────── */
.client-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.client-tile {
  background: var(--off-white);
  border: 1.5px solid var(--light);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.client-tile:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-pale);
}

/* ── SECTORS GRID ───────────────────────────────────────── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.sector-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.sector-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.sector-card:hover::before { transform: scaleX(1); }
.sector-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.sector-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--blue-pale);
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  border-radius: 100px;
  margin-bottom: 16px;
  font-weight: 500;
}
.sector-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.sector-text { font-size: 13.5px; color: var(--steel); line-height: 1.65; }

/* ── STANDARDS / BADGES ─────────────────────────────────── */
.standards-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.std-badge {
  padding: 6px 14px;
  background: var(--off-white);
  border: 1.5px solid var(--mid);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--body);
  letter-spacing: 0.06em;
  transition: var(--transition);
}
.std-badge:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-pale); }

/* ── CERT ITEMS ─────────────────────────────────────────── */
.cert-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--light);
  font-size: 14px;
  color: var(--body);
  font-weight: 500;
}
.cert-item:last-child { border-bottom: none; }
.cert-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── PRODUCTS GRID ──────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--light);
}
.filter-btn {
  padding: 9px 20px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--steel);
  background: var(--off-white);
  border: 1.5px solid var(--light);
  border-radius: 100px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--mid);
}
.product-card.hidden { display: none; }
.prod-img {
  height: 200px;
  position: relative;
  background: linear-gradient(135deg, var(--navy) 0%, #0d2244 100%);
  overflow: hidden;
}
.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.5s ease;
}
.product-card:hover .prod-img img { transform: scale(1.06); }
.prod-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,33,0.5) 0%, transparent 60%);
}
.prod-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 4px 12px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 100px;
}
.prod-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.prod-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.prod-desc {
  font-size: 13px;
  color: var(--steel);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}
.prod-specs {
  border-top: 1px solid var(--light);
  padding-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.spec-row { display: flex; flex-direction: column; gap: 2px; }
.spec-k {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
}
.spec-v { font-size: 12px; font-weight: 600; color: var(--body); }

/* ── SERVICES LAYOUT ────────────────────────────────────── */
.services-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
}
.svc-sidebar { position: sticky; top: calc(var(--nav-h) + 24px); }
.svc-nav {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
}
.svc-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--steel);
  border-bottom: 1px solid var(--light);
  transition: var(--transition);
}
.svc-nav a:last-child { border-bottom: none; }
.svc-nav a .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mid);
  flex-shrink: 0;
  transition: var(--transition);
}
.svc-nav a:hover, .svc-nav a.active {
  color: var(--blue);
  background: var(--blue-pale);
}
.svc-nav a:hover .dot, .svc-nav a.active .dot { background: var(--blue); }
.svc-main { display: flex; flex-direction: column; gap: 0; }
.svc-section {
  padding: 40px 0;
  border-bottom: 1px solid var(--light);
}
.svc-section:last-child { border-bottom: none; }
.svc-section-header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.svc-section-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.2;
  line-height: 1;
  flex-shrink: 0;
  width: 48px;
}
.svc-section-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}
.svc-section-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--blue);
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.svc-section p {
  font-size: 15px;
  color: var(--body);
  line-height: 1.75;
  margin-bottom: 14px;
  max-width: 680px;
}
.svc-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}
.svc-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--body);
  font-weight: 500;
}
.svc-bullet::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── PROCESS FLOW ───────────────────────────────────────── */
.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-flow::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  z-index: 0;
  opacity: 0.3;
}
.process-step { padding: 0 24px; position: relative; z-index: 1; text-align: center; }
.process-step-num {
  width: 64px;
  height: 64px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-blue);
  position: relative;
}
.process-step-num::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(0,87,255,0.2);
}
.process-step-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.process-step-text { font-size: 13px; color: var(--steel); line-height: 1.6; }

/* ── PAGE HERO ──────────────────────────────────────────── */
.page-hero {
  min-height: 420px;
  margin-top: var(--nav-h);
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: saturate(0.4);
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13,17,33,0.97) 35%, rgba(13,17,33,0.55) 100%);
}
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,87,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,87,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 64px 40px;
}
.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--blue-bright); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { opacity: 0.4; }
.page-title {
  font-size: clamp(30px, 4.5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin-bottom: 16px;
}
.page-title em { color: var(--blue-bright); }
.page-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  line-height: 1.75;
}

/* ── CTA BAND ───────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-mid) 100%);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band .eyebrow { color: rgba(255,255,255,0.7); justify-content: center; }
.cta-band .eyebrow::before { background: rgba(255,255,255,0.5); }
.cta-band .section-title { color: var(--white); max-width: 600px; margin: 0 auto 16px; }
.cta-band .section-title em { color: rgba(255,255,255,0.75); font-style: italic; }
.cta-band p { color: rgba(255,255,255,0.7); max-width: 500px; margin: 0 auto 32px; font-size: 16px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-gold { background: var(--white); color: var(--blue); }
.cta-band .btn-gold:hover { background: rgba(255,255,255,0.9); }
.cta-band .btn-outline { border-color: rgba(255,255,255,0.4); color: var(--white); background: transparent; }
.cta-band .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: var(--white); }

/* ── CONTACT PAGE ───────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 0; }
.contact-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--light);
  border-bottom: none;
  background: var(--white);
  transition: var(--transition);
}
.contact-card:first-of-type { border-radius: var(--radius-md) var(--radius-md) 0 0; }
.contact-card:last-of-type { border-bottom: 1px solid var(--light); border-radius: 0 0 var(--radius-md) var(--radius-md); }
.contact-card:hover { background: var(--off-white); }
.contact-card.highlight { background: var(--blue-pale); border-color: rgba(0,87,255,0.2); }
.c-ico { font-size: 22px; flex-shrink: 0; }
.c-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
  font-weight: 500;
}
.c-value { font-size: 14px; color: var(--body); line-height: 1.6; }
.c-value a { color: var(--blue); }
.c-value a:hover { text-decoration: underline; }
.form-wrap {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: var(--radius-xl);
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.form-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-sub { font-size: 14px; color: var(--steel); margin-bottom: 32px; line-height: 1.65; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--navy);
  background: var(--off-white);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,87,255,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 15px;
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.form-submit:hover { background: var(--blue-mid); transform: translateY(-1px); box-shadow: var(--shadow-blue); }
.form-note { font-size: 12px; color: var(--steel); text-align: center; margin-top: 12px; }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 72px 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.footer-brand-tag {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 20px;
}
.footer-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-badge {
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.08em;
}
.footer-col {}
.footer-col-title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col li {
  font-size: 13.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.4;
  transition: color 0.2s;
}
.footer-col li a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer-col li a:hover, .footer-col li:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  max-width: 1260px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.06em;
}

/* ── FADE IN ANIMATIONS ─────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .process-flow { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .process-flow::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .sol-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .services-layout { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .svc-bullets { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 28px; }
}
@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  nav { padding: 0 20px; }
  .section { padding: 64px 20px; }
  .section-full { padding: 64px 0; }
  .section-full .inner { padding: 0 20px; }
  .hero-inner { padding: 60px 20px; }
  .page-hero-inner { padding: 48px 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .sol-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .process-flow { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 60px 20px; }
  footer { padding: 48px 20px 0; }
  .hero-stats { gap: 24px; }
  .clients-bar .lbl { padding: 0 20px; }
}
