/* =============================================================
   V&S ENGINEERING — WCA Design System v2
   Black + Blue Accent | Orbitron + Archivo | Mega Menu
   ============================================================= */

/* --- Design Tokens --- */
:root {
  /* Core colors */
  --color-bg:               #000000;
  --color-bg-secondary:     #0a0a0a;
  --color-bg-elevated:      #111111;
  --color-text:             #ffffff;
  --color-text-secondary:   rgba(255,255,255,0.72);
  --color-text-muted:       rgba(255,255,255,0.70);
  --color-text-faint:       rgba(255,255,255,0.35);
  --color-border:           rgba(255,255,255,0.10);
  --color-border-strong:    rgba(255,255,255,0.22);

  /* Brand palette — WCA-inspired blue accent */
  --brand-navy:             #001D40;
  --brand-blue:             #004A8F;
  --brand-blue-bright:      #2774C8;
  --brand-white:            #FFFFFF;
  --brand-black:            #000000;

  /* Type */
  --font-display: 'Orbitron', 'Pirulen', 'Eurostile', sans-serif;
  --font-body:    'Archivo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Easings */
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth:  cubic-bezier(0.4, 0, 0.2, 1);

  /* Durations */
  --t-fast:   180ms;
  --t-med:    400ms;
  --t-slow:   700ms;

  /* Layout */
  --nav-height:    72px;
  --container-max: 1440px;

  /* Spacing */
  --space-3xs: 4px;
  --space-2xs: 8px;
  --space-xs:  12px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-2xl: 120px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  animation: pageLoad var(--t-slow) var(--ease-out);
}

@keyframes pageLoad {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

::selection { background: var(--color-text); color: var(--color-bg); }

a {
  color: var(--color-text);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-smooth);
}

ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1 { font-size: clamp(28px, 5.2vw, 64px); letter-spacing: 0.06em; margin-bottom: var(--space-lg); }
h2 { font-size: clamp(22px, 3.6vw, 40px); letter-spacing: 0.05em; margin-bottom: var(--space-md); }
h3 { font-size: clamp(18px, 2.6vw, 26px); letter-spacing: 0.04em; margin-bottom: var(--space-md); }
h4 { font-size: clamp(16px, 2vw, 22px);  letter-spacing: 0.04em; margin-bottom: var(--space-sm); }
h5 { font-size: 16px; letter-spacing: 0.06em; color: var(--color-text-secondary); margin-bottom: var(--space-sm); }

/* Eyebrow label — matches WCA h6 */
.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  margin-bottom: var(--space-sm);
}

p {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.75;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  max-width: 75ch;
}

strong, b { font-weight: 600; color: var(--color-text); }

.text-muted { color: var(--color-text-muted); }
.text-secondary { color: var(--color-text-secondary); }
.text-white { color: #fff; }
.text-accent { color: var(--brand-blue-bright); }

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
}
@media (min-width: 768px) {
  .container { padding: 0 var(--space-lg); }
}

/* Section backgrounds — alternating shades for visual depth */
.bg-darkest  { background: #000000; }
.bg-darker   { background: #050508; }
.bg-dark     { background: #0a0a0e; }
.bg-elevated { background: #0e0e14; }
.bg-surface  { background: #121218; }

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

/* --- Skip to Content --- */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10000;
  padding: 12px 24px;
  background: var(--brand-blue-bright);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-to-content:focus {
  top: 8px;
}

/* =============================================================
   SCROLL PROGRESS BAR
   ============================================================= */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-blue-bright), var(--color-text));
  z-index: 9999;
  width: 0;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* =============================================================
   PRELOADER
   ============================================================= */
.preloader {
  position: fixed;
  inset: 0;
  background: #000;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.preloader-text {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--brand-blue-bright);
}
.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 0;
  overflow: hidden;
}
.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--brand-blue-bright);
  box-shadow: 0 0 8px var(--brand-blue-bright);
  animation: preloadFill 1.2s var(--ease-smooth) 0.3s forwards;
}
@keyframes preloadFill {
  from { width: 0%; }
  to   { width: 100%; }
}

/* =============================================================
   PAGE TRANSITION
   ============================================================= */
.page-transition {
  position: fixed;
  inset: 0;
  background: var(--brand-blue-bright);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.page-transition.active {
  opacity: 1;
}

/* =============================================================
   NAVIGATION — FULL WIDTH
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 var(--space-lg);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--t-med) var(--ease-smooth),
              backdrop-filter var(--t-med) var(--ease-smooth),
              border-color var(--t-med) var(--ease-smooth),
              transform var(--t-med) var(--ease-out),
              height var(--t-med) var(--ease-out);
  will-change: transform, height;
}
.nav.scrolled {
  background: rgba(10,10,12,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: 60px;
}
.nav.nav-hidden {
  transform: translateY(-100%);
}
.nav.scrolled .nav-logo img {
  height: 18px;
}

.nav .nav-logo {
  position: absolute;
  left: var(--space-lg);
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--t-fast) var(--ease-smooth);
}
.nav .nav-logo:hover { transform: translateY(-50%) scale(1.03); }
.nav .nav-logo img {
  height: 22px;
  width: auto;
  transition: height var(--t-med) var(--ease-smooth);
}
/* Hide text next to nav logo */
.nav .nav-logo-text {
  display: none;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav-links > a {
  display: block;
  padding: 14px 18px;
  color: var(--color-text);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--t-fast) var(--ease-smooth);
  position: relative;
}

.nav-links > a.btn {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(255,255,255,0.85) !important;
  color: #fff !important;
  background: transparent;
  margin-left: 8px;
  vertical-align: middle;
}
.nav-links > a.btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff !important;
  color: #fff !important;
}
.nav-links > a.btn::after {
  display: none;
}

/* Animated underline on nav links */
.nav-links > a::after,
.nav-links > .dropdown > .dropbtn::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0; height: 1px;
  background: var(--brand-blue-bright);
  transform: translateX(-50%);
  transition: width var(--t-med) var(--ease-out);
}
.nav-links > a:hover::after,
.nav-links > .dropdown:hover > .dropbtn::after {
  width: calc(100% - 36px);
}
.nav-links > a:hover,
.nav-links > .dropdown:hover > .dropbtn {
  color: var(--color-text);
}

/* Hamburger */
.hamburger {
  display: none;
  position: relative;
  z-index: 1100;
  width: 44px; height: 44px;
  color: var(--color-text);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 0;
  line-height: 0;
}
.hamburger::before, .hamburger::after,
.hamburger span {
  content: '';
  position: absolute;
  left: 10px;
  width: 24px; height: 1.5px;
  background: var(--color-text);
  transition: transform var(--t-med) var(--ease-spring), opacity var(--t-fast) var(--ease-smooth), top var(--t-med) var(--ease-spring);
}
.hamburger::before { top: 16px; }
.hamburger::after  { top: 26px; }
.hamburger span { top: 21px; }
.hamburger.active::before { top: 21px; transform: rotate(45deg); }
.hamburger.active::after  { top: 21px; transform: rotate(-45deg); }
.hamburger.active span { opacity: 0; }

/* =============================================================
   DROPDOWN — MEGA MENU (3-Column for Capabilities)
   ============================================================= */
.dropdown {
  position: relative;
}
.dropbtn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  padding: 14px 18px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  white-space: nowrap;
}
.dropbtn svg {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  transition: transform var(--t-fast) var(--ease-smooth);
  vertical-align: middle;
}
.dropdown:hover .dropbtn svg {
  transform: rotate(180deg);
}

/* Mega dropdown panel */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 100vw;
  max-width: 1100px;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--brand-blue-bright);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-fast) var(--ease-smooth),
              transform var(--t-fast) var(--ease-smooth),
              visibility 0s linear var(--t-fast);
  padding: 0;
  z-index: 100;
}
.dropdown:hover .mega-dropdown,
.dropdown:focus-within .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.mega-dropdown-inner {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 0;
  padding: var(--space-sm) 0;
}
.mega-dropdown-col {
  padding: var(--space-sm) 0;
}
.mega-dropdown-col:not(:last-child) {
  border-right: 1px solid var(--color-border);
  padding-right: var(--space-md);
}
.mega-dropdown-col:last-child {
  padding-left: var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mega-dropdown-col-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  padding: 8px 24px 6px;
  margin-bottom: 2px;
}
@media (max-width: 1024px) {
  .mega-dropdown {
    width: auto;
    min-width: 320px;
    max-width: 90vw;
    left: 0;
    transform: translateY(8px);
  }
  .dropdown:hover .mega-dropdown,
  .dropdown:focus-within .mega-dropdown {
    transform: translateY(0);
  }
  .mega-dropdown-inner {
    grid-template-columns: 1fr 1fr;
  }
}
.mega-dropdown a {
  display: block;
  padding: 10px 24px;
  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--t-fast), background var(--t-fast), padding-left var(--t-fast);
}
.mega-dropdown a:last-child { border-bottom: none; }
.mega-dropdown a:hover {
  color: var(--color-text);
  background: var(--color-bg-elevated);
  padding-left: 32px;
}
/* Request a Quote button in mega dropdown */
.mega-dropdown .mega-cta {
  display: block;
  margin: 12px 20px 16px;
  padding: 12px 20px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  border: 1px solid var(--brand-blue-bright);
  text-align: center;
  text-decoration: none;
  transition: background var(--t-fast), color var(--t-fast);
}
.mega-dropdown .mega-cta:hover {
  background: var(--brand-blue-bright);
  color: #fff;
  padding-left: 20px;
}

/* Standard dropdown (industries) */
.dropdown-content {
  position: absolute;
  top: 100%; left: 0;
  min-width: 240px;
  background: rgba(0,0,0,0.94);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--brand-blue-bright);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--t-fast) var(--ease-smooth),
              transform var(--t-fast) var(--ease-smooth),
              visibility 0s linear var(--t-fast);
}
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: var(--color-text-secondary);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--color-border);
  transition: color var(--t-fast), background var(--t-fast), padding-left var(--t-fast);
}
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover {
  color: var(--color-text);
  background: var(--color-bg-elevated);
  padding-left: 28px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  padding: var(--space-lg) var(--space-md);
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity var(--t-med) var(--ease-smooth),
              visibility var(--t-fast),
              transform var(--t-med) var(--ease-smooth);
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border);
  transition: color var(--t-fast), padding-left var(--t-fast);
}
.mobile-menu a:hover {
  color: var(--brand-blue-bright);
  padding-left: 8px;
}
.mobile-menu .mobile-section-title {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  padding: 20px 0 8px;
  margin-top: var(--space-sm);
}
.mobile-menu .mobile-sub-link {
  padding: 10px 0 10px 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  position: relative;
  display: inline-block;
  padding: 14px 36px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text);
  background: transparent;
  border: 1px solid var(--color-text);
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color var(--t-med) var(--ease-smooth);
 text-decoration: none;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -110%;
  width: 110%; height: 100%;
  background: var(--brand-blue-bright);
  transition: left var(--t-med) var(--ease-out);
  z-index: -1;
  pointer-events: none;
}
.btn:hover { color: #fff; border-color: var(--brand-blue-bright); }
.btn:hover::before { left: 0; }

.btn-sm {
  padding: 10px 24px;
  font-size: 10px;
  letter-spacing: 0.18em;
}

.btn-blue {
  border-color: var(--brand-blue-bright);
  color: var(--brand-blue-bright);
}
.btn-blue::before {
  background: var(--brand-blue-bright);
}
.btn-blue:hover { color: #fff; }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  will-change: transform, opacity;
  animation: heroIntro 1.4s var(--ease-out) both;
}
@keyframes heroIntro {
  from { opacity: 0; transform: scale(1.08); }
  to   { opacity: 1; transform: scale(1); }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.50) 50%,
    rgba(0,0,0,0.88) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 960px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
  padding-left: var(--space-2xl);
  padding-right: var(--space-lg);
}
@media (max-width: 768px) {
  .hero-content {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
    text-align: center;
  }
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 7.2vw, 86px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: var(--space-md);
  animation: heroFadeUp 1.1s var(--ease-out) 0.25s both;
}
.hero-title .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  animation: letterReveal 0.5s var(--ease-out) forwards;
}
@keyframes letterReveal {
  to { opacity: 1; transform: translateY(0); }
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(13px, 1.4vw, 16px);
  color: var(--color-text-secondary);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
  animation: heroFadeUp 1.1s var(--ease-out) 0.5s both;
}
.hero-btn { animation: heroFadeUp 1.1s var(--ease-out) 0.75s both; }

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

/* Page hero (sub-pages) */
.page-hero {
  position: relative;
  width: 100%;
  padding: var(--space-xl) 0;
  text-align: left;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-blue-bright) 50%, transparent 100%);
  opacity: 0.25;
}
.page-hero h1 {
  animation: heroFadeUp 1s var(--ease-out) 0.2s both;
}
.page-hero .section-label {
  animation: heroFadeUp 1s var(--ease-out) 0.1s both;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  z-index: 10;
  animation: heroFadeUp 1.1s var(--ease-out) 1s both, bounce 2.4s 1.1s infinite;
}
.scroll-indicator::after {
  content: '';
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--brand-blue-bright), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-6px); }
}

/* =============================================================
   STATS BAR
   ============================================================= */
.stats-bar {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--color-border);
  background: #08080c;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  text-align: center;
}
.stat-item {
  padding: var(--space-md);
}
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 42px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-text);
  line-height: 1.2;
}
.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  margin-top: var(--space-2xs);
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =============================================================
   SECTION DIVIDER
   ============================================================= */
.section-divider {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-xl) 0 var(--space-lg);
}
.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}
.section-divider span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  white-space: nowrap;
}

/* =============================================================
   IMAGE GRID
   ============================================================= */
.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
.image-grid-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.image-grid-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--t-slow) var(--ease-smooth), transform var(--t-slow) var(--ease-smooth);
}
.image-grid-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.image-grid-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  pointer-events: none;
  transition: background var(--t-med) var(--ease-smooth);
}
.image-grid-item:hover::after {
  background: rgba(0,74,143,0.10);
}
@media (max-width: 768px) {
  .image-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   VALUE PROPS / FEATURE CARDS
   ============================================================= */
.value-props {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.value-prop {
  position: relative;
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--brand-blue-bright);
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);
  transition: transform var(--t-med) var(--ease-out),
              border-color var(--t-fast) var(--ease-smooth),
              background var(--t-med) var(--ease-smooth);
  overflow: hidden;
}
.value-prop::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 0;
  background: var(--brand-blue-bright);
  opacity: 0;
  transition: height var(--t-med) var(--ease-out), opacity var(--t-fast);
}
.value-prop:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-strong);
  border-top-color: var(--brand-blue-bright);
  background: linear-gradient(135deg, rgba(0,74,143,0.12) 0%, rgba(255,255,255,0.03) 100%);
}
.value-prop:hover::before {
  height: 2px;
  opacity: 1;
}
.value-prop-icon {
  font-size: 24px;
  color: var(--brand-blue-bright);
  margin-bottom: var(--space-sm);
}
.value-prop h4 {
  margin-bottom: var(--space-xs);
}
.value-prop p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .value-props { grid-template-columns: 1fr; }
}

/* =============================================================
   SERVICE STRIP (Marquee)
   ============================================================= */
.service-strip {
  overflow: hidden;
  padding: var(--space-md) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.service-strip-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.service-strip-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 0 var(--space-md);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  white-space: nowrap;
}
.service-strip-item .separator {
  display: block;
  width: 6px; height: 6px;
  background: var(--brand-blue-bright);
  border-radius: 50%;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   IMAGE SHOWCASE
   ============================================================= */
.image-showcase {
  position: relative;
  height: 50vh;
  min-height: 360px;
  overflow: hidden;
}
.image-showcase img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--t-slow) var(--ease-smooth);
}
.image-showcase:hover img {
  filter: grayscale(0%);
}
.image-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0.30) 100%);
  display: flex;
  align-items: center;
  padding: 0 var(--space-2xl);
}
.image-showcase-text {
  max-width: 600px;
}
.image-showcase-text h3 { margin-bottom: var(--space-sm); }
.image-showcase-text p { margin-bottom: 0; color: var(--color-text-secondary); }

/* =============================================================
   BLOG / INSIGHTS CARDS
   ============================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.blog-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: border-color var(--t-fast), transform var(--t-med) var(--ease-out);
}
.blog-card:hover {
  border-color: var(--color-border-strong);
  transform: translateY(-3px);
}
.blog-card a { display: block; }
.blog-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: filter var(--t-slow) var(--ease-smooth), transform var(--t-slow);
}
.blog-card:hover .blog-card-image img {
  filter: grayscale(0%);
  transform: scale(1.04);
}
.blog-card-body {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  flex: 1;
}
.blog-card-date {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  display: block;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.45;
  color: var(--color-text);
}
.blog-card-excerpt {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.blog-card-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  margin-top: auto;
  transition: gap var(--t-fast);
}
.blog-card:hover .blog-card-read-more {
  gap: 10px;
}
.blog-card-read-more svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
}

/* =============================================================
   CTA BANNER
   ============================================================= */
.cta-banner {
  padding: var(--space-xl) 0;
  background: #0a0a10;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);
}
.cta-banner-inner h2 { margin-bottom: var(--space-xs); }
.cta-banner-inner p { margin-bottom: 0; }
@media (max-width: 768px) {
  .cta-banner-inner { flex-direction: column; text-align: center; }
}

/* =============================================================
   TRUSTED BY
   ============================================================= */
.trusted-by {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
}
.trusted-by-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  text-align: center;
  margin-bottom: var(--space-md);
}
.trusted-by-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-lg);
}
.trusted-by-item {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
  text-transform: uppercase;
  padding: var(--space-xs) var(--space-md);
  border: 1px solid var(--color-border);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.trusted-by-item:hover {
  color: var(--brand-blue-bright);
  border-color: var(--brand-blue-bright);
}

/* =============================================================
   CONTENT PAGE STYLES (About, Capabilities, Quality, etc.)
   ============================================================= */
.content-page {
  padding-top: 0;
}

/* Content grid — 2-column for text + sidebar */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-xl);
  align-items: start;
}
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; }
}

/* Content cards */
.content-card {
  position: relative;
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--brand-blue-bright);
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);
  margin-bottom: var(--space-md);
  transition: transform var(--t-med) var(--ease-out),
              border-color var(--t-fast) var(--ease-smooth),
              background var(--t-med) var(--ease-smooth);
}
.content-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-strong);
  border-top-color: var(--brand-blue-bright);
  background: linear-gradient(135deg, rgba(0,74,143,0.12) 0%, rgba(255,255,255,0.03) 100%);
}
.content-card .card-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  margin-bottom: var(--space-xs);
}
.content-card h3 { margin-bottom: var(--space-sm); }
.content-card p { margin-bottom: var(--space-md); }
.content-card p:last-of-type { margin-bottom: var(--space-md); }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  text-decoration: none;
  transition: color var(--t-fast), gap var(--t-fast);
}
.card-link:hover {
  color: var(--color-text);
  gap: 10px;
}

/* Capabilities grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
@media (max-width: 768px) {
  .capabilities-grid { grid-template-columns: 1fr; }
}

/* Materials grid */
.materials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}
.material-item {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-border);
  font-size: 13px;
  color: var(--color-text-secondary);
  text-align: center;
  letter-spacing: 0.04em;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.material-item:hover {
  border-color: var(--brand-blue-bright);
  color: var(--brand-blue-bright);
  background: rgba(0,74,143,0.08);
}
@media (max-width: 768px) {
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Industries grid */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
@media (max-width: 768px) {
  .industries-grid { grid-template-columns: 1fr; }
}

/* Industry link cards */
.industry-link-card {
  position: relative;
  display: block;
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--brand-blue-bright);
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);
  transition: border-color var(--t-fast), background var(--t-med) var(--ease-smooth), transform var(--t-med) var(--ease-out);
  overflow: hidden;
  text-decoration: none;
}
.industry-link-card:hover {
  border-color: var(--color-border-strong);
  border-left-color: var(--brand-blue-bright);
  background: linear-gradient(135deg, rgba(0,74,143,0.14) 0%, rgba(255,255,255,0.03) 100%);
  transform: translateY(-3px);
}
.industry-link-card h4 {
  color: var(--color-text);
  margin-bottom: var(--space-xs);
  transition: color var(--t-fast);
}
.industry-link-card:hover h4 {
  color: var(--brand-blue-bright);
}
.industry-link-card p {
  margin-bottom: 0;
}
.industry-link-card .card-arrow {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  font-size: 18px;
  color: var(--color-text-muted);
  transition: color var(--t-fast), transform var(--t-fast);
}
.industry-link-card:hover .card-arrow {
  color: var(--brand-blue-bright);
  transform: translateX(4px);
}

/* Sidebar card */
.sidebar-card {
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--brand-blue-bright);
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);
  margin-bottom: var(--space-md);
  position: sticky;
  top: calc(var(--nav-height) + var(--space-md));
}
.sidebar-card h4 {
  margin-bottom: var(--space-sm);
}
.sidebar-card .sidebar-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  margin-bottom: var(--space-xs);
}

/* Testimonial card */
.testimonial-card {
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--brand-blue-bright);
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);
  margin-bottom: var(--space-md);
  transition: border-color var(--t-fast), background var(--t-med);
}
.testimonial-card:hover {
  border-color: var(--color-border-strong);
  border-left-color: var(--brand-blue-bright);
  background: linear-gradient(135deg, rgba(0,74,143,0.10) 0%, rgba(255,255,255,0.03) 100%);
}
.testimonial-card blockquote {
  font-style: italic;
  color: var(--color-text-secondary);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}
.testimonial-card cite {
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  color: var(--brand-blue-bright);
  letter-spacing: 0.06em;
}

/* =============================================================
   FORMS
   ============================================================= */
.form-group {
  margin-bottom: var(--space-md);
}
label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xs);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="file"],
textarea, select {
  width: 100%;
  padding: 14px 16px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--color-border-strong);
  border-radius: 0;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--t-fast) var(--ease-smooth);
  margin-bottom: 0;
}
textarea { min-height: 120px; resize: vertical; line-height: 1.6; }
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--brand-blue-bright);
}
input::placeholder, textarea::placeholder { color: var(--color-text-faint); }
input[type="file"] {
  color: var(--color-text-secondary);
  font-size: 13px;
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
}
input[type="submit"],
button[type="submit"] {
  position: relative;
  display: inline-block;
  padding: 16px 56px;
  background: var(--brand-blue-bright);
  color: #fff;
  border: 1px solid var(--brand-blue-bright);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  z-index: 1;
  transition: color var(--t-med) var(--ease-smooth), background var(--t-med) var(--ease-smooth);
}
input[type="submit"]::before,
button[type="submit"]::before {
  content: '';
  position: absolute;
  top: 0; left: -110%;
  width: 110%; height: 100%;
  background: var(--color-text);
  transition: left var(--t-med) var(--ease-out);
  z-index: -1;
  pointer-events: none;
}
input[type="submit"]:hover,
button[type="submit"]:hover { color: var(--color-bg); }
input[type="submit"]:hover::before,
button[type="submit"]:hover::before { left: 0; }

/* Form row (2-col) */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}
@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}

/* =============================================================
   CONTACT INFO CARDS
   ============================================================= */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.contact-info-card {
  position: relative;
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--brand-blue-bright);
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);
  transition: border-color var(--t-fast), background var(--t-med);
}
.contact-info-card:hover {
  border-color: var(--color-border-strong);
  border-left-color: var(--brand-blue-bright);
  background: linear-gradient(135deg, rgba(0,74,143,0.10) 0%, rgba(255,255,255,0.03) 100%);
}
.contact-info-card .card-icon {
  font-size: 20px;
  color: var(--brand-blue-bright);
  margin-bottom: var(--space-sm);
}
.contact-info-card .card-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  margin-bottom: var(--space-2xs);
}
.contact-info-card a {
  color: var(--brand-blue-bright);
  font-weight: 500;
  transition: color var(--t-fast);
}
.contact-info-card a:hover { color: var(--color-text); }
.contact-info-card p { margin-bottom: 0; font-size: 14px; }
@media (max-width: 768px) {
  .contact-cards { grid-template-columns: 1fr; }
}

/* =============================================================
   FOOTER
   ============================================================= */
.footer {
  border-top: 1px solid var(--color-border);
  padding: var(--space-2xl) 0 var(--space-lg);
  margin-top: var(--space-xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.1fr 0.7fr;
  gap: var(--space-lg);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
/* Capabilities 2-column grid instead of CSS columns for better control */
.footer-col-2col ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}
.footer-col ul li {
  margin-bottom: var(--space-2xs);
}
.footer-brand p {
  max-width: 320px;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-md);
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: var(--space-xs);
}
.footer-logo img {
  height: 22px;
  width: auto;
}
.footer-tagline {
  color: var(--brand-blue-bright);
  font-size: 13px;
}
.social-links {
  display: flex;
  gap: var(--space-sm);
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--color-border);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.social-links a:hover {
  color: var(--brand-blue-bright);
  border-color: var(--brand-blue-bright);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  margin-bottom: 24px;
}
.footer-col ul li {
  margin-bottom: var(--space-2xs);
}
.footer-col ul a {
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  transition: color var(--t-fast);
}
.footer-col ul a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  margin-top: var(--space-lg);
  border-top: 1px solid var(--color-border);
  font-size: 13px;
  color: rgba(255,255,255,0.50);
}
.footer-bottom p { margin-bottom: 0; font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.50); transition: color var(--t-fast); }
.footer-bottom a:hover { color: rgba(255,255,255,0.82); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col-2col ul { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-col-2col ul { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: var(--space-xs); text-align: center; }
}

/* =============================================================
   COOKIE CONSENT
   ============================================================= */
.cookie-consent {
  position: fixed;
  bottom: -100%;
  left: 0; right: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border);
  transition: bottom var(--t-med) var(--ease-smooth);
}
.cookie-consent.visible { bottom: 0; }
.cookie-consent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) 0;
}
.cookie-consent-text { font-size: 13px; color: var(--color-text-secondary); margin-bottom: 0; }
.cookie-consent-actions { display: flex; gap: var(--space-xs); align-items: center; flex-shrink: 0; }
.cookie-close {
  background: none; border: none;
  color: var(--color-text-muted);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
}
.cookie-btn {
  padding: 8px 20px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid var(--color-border);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease-smooth);
}
.cookie-btn-accept {
  background: var(--brand-blue-bright);
  border-color: var(--brand-blue-bright);
  color: #fff;
}
.cookie-btn-accept:hover { background: var(--color-text); border-color: var(--color-text); }
.cookie-btn:hover { color: var(--color-text); border-color: var(--color-text); }
@media (max-width: 768px) {
  .cookie-consent-inner { flex-direction: column; text-align: center; }
}

/* =============================================================
   LIGHTBOX
   ============================================================= */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med), visibility var(--t-med);
}
.lightbox-overlay.active { opacity: 1; visibility: visible; }
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  background: none; border: none;
  color: var(--color-text);
  font-size: 28px;
  cursor: pointer;
}

/* =============================================================
   FLOATING CTA (Mobile)
   ============================================================= */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 800;
}
.floating-cta a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--brand-blue-bright);
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(39,116,200,0.35);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.floating-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(39,116,200,0.45);
}
.cta-icon { font-size: 14px; }

/* =============================================================
   BACK TO TOP
   ============================================================= */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 40px; height: 40px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--t-fast), visibility var(--t-fast), transform var(--t-fast),
              border-color var(--t-fast), color var(--t-fast);
  z-index: 800;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  border-color: var(--brand-blue-bright);
  color: var(--brand-blue-bright);
}

/* =============================================================
   REVEAL ANIMATIONS
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger .value-prop {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-stagger.visible .value-prop { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible .value-prop:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.visible .value-prop:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.visible .value-prop:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.visible .value-prop:nth-child(4) { transition-delay: 0.4s; }

/* =============================================================
   MOBILE RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .mobile-menu { display: flex; }
  .floating-cta { display: none !important; }
}

/* Stat counting animation */
.stat-number.counting {
  color: var(--brand-blue-bright);
}

/* =============================================================
   CERTIFICATION BADGES
   ============================================================= */
.cert-badges {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}
.cert-badge {
  padding: var(--space-sm) var(--space-md);
  border: 1px solid var(--color-border);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--color-text-secondary);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.cert-badge:hover {
  border-color: var(--brand-blue-bright);
  color: var(--brand-blue-bright);
}

/* =============================================================
   PAGE-SPECIFIC: INDUSTRY PAGE
   ============================================================= */
.industry-hero-image {
  width: 100%;
  height: 40vh;
  min-height: 280px;
  object-fit: cover;
  filter: grayscale(60%);
  margin-bottom: var(--space-xl);
}
.industry-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}
@media (max-width: 768px) {
  .industry-features { grid-template-columns: 1fr; }
}
.industry-feature-item {
  padding: var(--space-md);
  border-left: 2px solid var(--brand-blue-bright);
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);
  transition: border-color var(--t-fast), background var(--t-med), transform var(--t-med) var(--ease-out);
}
.industry-feature-item:hover {
  border-left-color: var(--brand-blue-bright);
  background: linear-gradient(135deg, rgba(0,74,143,0.10) 0%, rgba(255,255,255,0.03) 100%);
  transform: translateX(4px);
}
.industry-feature-item h3,
.industry-feature-item h4 {
  color: var(--brand-blue-bright);
  margin-bottom: var(--space-2xs);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.industry-feature-item p {
  margin-bottom: 0;
  font-size: 14px;
}

/* =============================================================
   PAGE-SPECIFIC: TEAM / CAREERS / UPDATES
   ============================================================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
}
.team-card {
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--brand-blue-bright);
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);
  transition: transform var(--t-med) var(--ease-out), border-color var(--t-fast), background var(--t-med);
}
.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-strong);
  border-top-color: var(--brand-blue-bright);
  background: linear-gradient(135deg, rgba(0,74,143,0.12) 0%, rgba(255,255,255,0.03) 100%);
}
.team-card .team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--brand-blue-bright);
  margin-bottom: var(--space-md);
}
.team-card h4 { margin-bottom: 4px; font-size: 16px; }
.team-card .team-role {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  margin-bottom: var(--space-sm);
}
.team-card p { margin-bottom: 0; font-size: 14px; }

/* Job listings */
.job-listing {
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--brand-blue-bright);
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);
  margin-bottom: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: border-color var(--t-fast), background var(--t-med), transform var(--t-med);
}
.job-listing:hover {
  border-color: var(--color-border-strong);
  border-left-color: var(--brand-blue-bright);
  background: linear-gradient(135deg, rgba(0,74,143,0.10) 0%, rgba(255,255,255,0.03) 100%);
  transform: translateX(4px);
}
.job-listing h4 { margin-bottom: 4px; font-size: 16px; }
.job-listing .job-meta {
  font-size: 12px;
  color: var(--brand-blue-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}
.job-listing .job-desc {
  margin-top: var(--space-2xs);
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .job-listing { flex-direction: column; align-items: flex-start; }
}

/* Updates/Blog list */
.updates-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.update-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--space-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--brand-blue-bright);
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);
  transition: border-color var(--t-fast), background var(--t-med), transform var(--t-med);
}
.update-item:hover {
  border-color: var(--color-border-strong);
  border-left-color: var(--brand-blue-bright);
  background: linear-gradient(135deg, rgba(0,74,143,0.10) 0%, rgba(255,255,255,0.03) 100%);
  transform: translateX(4px);
}
.update-item .update-date {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  padding-top: 2px;
}
.update-item h4 { margin-bottom: var(--space-2xs); font-size: 16px; }
.update-item p { margin-bottom: 0; font-size: 14px; }
@media (max-width: 768px) {
  .update-item { grid-template-columns: 1fr; }
}

/* =============================================================
   SINGLE BLOG POST PAGE
   ============================================================= */
.post-hero-image {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  position: relative;
}
.post-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.7);
}
.post-hero-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.85) 100%);
  pointer-events: none;
}
.post-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}
.post-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}
.post-meta-date {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
}
.post-meta-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  padding: 2px 10px;
}
.post-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}
.post-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}
.post-body h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  color: var(--color-text);
}
.post-body h3 {
  font-size: 17px;
  font-weight: 600;
  margin-top: var(--space-md);
  margin-bottom: var(--space-2xs);
  color: var(--color-text);
}
.post-body ul, .post-body ol {
  color: var(--color-text-secondary);
  padding-left: 24px;
  margin-bottom: var(--space-md);
  line-height: 1.8;
}
.post-body li {
  margin-bottom: var(--space-2xs);
}
.post-body blockquote {
  border-left: 3px solid var(--brand-blue-bright);
  padding: var(--space-sm) var(--space-md);
  margin: var(--space-md) 0;
  background: rgba(39,116,200,0.05);
  color: var(--color-text-secondary);
  font-style: italic;
}
.post-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  transition: gap var(--t-fast);
  margin-bottom: var(--space-md);
}
.post-back-link:hover {
  gap: 12px;
}
.post-back-link svg {
  width: 14px;
  height: 14px;
}
@media (max-width: 768px) {
  .post-hero-image { aspect-ratio: 16 / 9; }
  .post-content { padding: var(--space-lg) var(--space-sm); }
}

/* =============================================================
   QUALITY PROCESS STEPS
   ============================================================= */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.process-step {
  display: flex;
  gap: var(--space-lg);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-border);
}
.process-step:last-child { border-bottom: none; }
.process-step-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--brand-blue-bright);
  flex-shrink: 0;
  width: 48px;
  opacity: 0.5;
}
.process-step h4 { margin-bottom: var(--space-2xs); }
.process-step p { margin-bottom: 0; font-size: 14px; }
@media (max-width: 768px) {
  .process-step { flex-direction: column; gap: var(--space-sm); }
}

/* =============================================================
   ENHANCEMENTS v3 — Button Glow, Link Animations, Micro-Interactions
   ============================================================= */

/* Button glow on hover */
.btn:hover {
  box-shadow: 0 0 20px rgba(39,116,200,0.25), 0 0 40px rgba(39,116,200,0.10);
}
.btn-blue:hover {
  box-shadow: 0 0 24px rgba(39,116,200,0.35), 0 0 48px rgba(39,116,200,0.15);
}

/* Link underline animation for footer and inline links */
a.ex-link {
  color: var(--color-text-secondary);
  position: relative;
  transition: color var(--t-fast) var(--ease-smooth);
}
a.ex-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--brand-blue-bright);
  transition: width var(--t-med) var(--ease-out);
}
a.ex-link:hover {
  color: var(--color-text);
}
a.ex-link:hover::after {
  width: 100%;
}

/* Content card subtle blue glow on hover */
.content-card::after {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border: 1px solid transparent;
  transition: border-color var(--t-med) var(--ease-smooth), box-shadow var(--t-med) var(--ease-smooth);
  pointer-events: none;
  border-radius: 0;
}
.content-card:hover::after {
  border-color: rgba(39,116,200,0.15);
  box-shadow: 0 4px 30px rgba(39,116,200,0.08);
}

/* Image grid item blue glow overlay on hover */
.image-grid-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(39,116,200,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease-smooth);
  z-index: 1;
  pointer-events: none;
}
.image-grid-item:hover::before {
  opacity: 1;
}

/* Service strip dot pulse animation */
.service-strip-item .separator {
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.4); }
}

/* Trusted by item hover lift */
.trusted-by-item {
  transition: color var(--t-fast), border-color var(--t-fast), transform var(--t-fast) var(--ease-spring), box-shadow var(--t-fast);
}
.trusted-by-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 12px rgba(39,116,200,0.12);
}

/* Preloader bar enhanced glow */
.preloader-bar-fill {
  box-shadow: 0 0 12px var(--brand-blue-bright), 0 0 24px rgba(39,116,200,0.4);
}

/* Nav logo hover subtle glow */
.nav .nav-logo:hover svg path {
  filter: drop-shadow(0 0 4px rgba(39,116,200,0.4));
  transition: filter var(--t-fast);
}

/* Footer link hover only — no underline animation */

/* Social link fill animation */
.social-links a {
  position: relative;
  overflow: hidden;
  transition: color var(--t-fast), border-color var(--t-fast), transform var(--t-fast) var(--ease-spring);
}
.social-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand-blue-bright);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--t-med) var(--ease-out);
  z-index: -1;
}
.social-links a:hover {
  color: #fff;
  border-color: var(--brand-blue-bright);
  transform: translateY(-2px);
}
.social-links a:hover::before {
  transform: scaleY(1);
}

/* Material item enhanced hover */
.material-item {
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast), transform var(--t-fast) var(--ease-spring);
}
.material-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--brand-blue-bright);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.material-item:hover::before {
  opacity: 0.06;
}
.material-item:hover {
  border-color: var(--brand-blue-bright);
  color: var(--brand-blue-bright);
  background: rgba(0,74,143,0.08);
  transform: translateY(-1px);
}

/* Team card avatar hover pulse */
.team-card .team-avatar {
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.team-card:hover .team-avatar {
  border-color: var(--brand-blue-bright);
  box-shadow: 0 0 0 4px rgba(39,116,200,0.15);
}

/* Blog card enhanced hover */
.blog-card {
  transition: border-color var(--t-fast), transform var(--t-med) var(--ease-out), box-shadow var(--t-med);
}
.blog-card:hover {
  border-color: rgba(39,116,200,0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 20px rgba(39,116,200,0.06);
}

/* CTA banner enhanced */
.cta-banner-inner {
  position: relative;
  overflow: hidden;
}
.cta-banner-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-blue-bright), transparent);
  opacity: 0;
  transition: opacity var(--t-med);
}
.cta-banner-inner:hover::before {
  opacity: 1;
}

/* Industry link card enhanced arrow animation */
.industry-link-card .card-arrow {
  transition: color var(--t-fast), transform var(--t-fast) var(--ease-spring);
}
.industry-link-card:hover .card-arrow {
  color: var(--brand-blue-bright);
  transform: translateX(6px);
}

/* Form focus enhanced glow */
input:focus, textarea:focus, select:focus {
  border-color: var(--brand-blue-bright);
  box-shadow: 0 2px 0 0 var(--brand-blue-bright);
}

/* Back to top enhanced */
.back-to-top {
  transition: opacity var(--t-fast), visibility var(--t-fast), transform var(--t-fast) var(--ease-spring),
              border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.back-to-top:hover {
  border-color: var(--brand-blue-bright);
  color: var(--brand-blue-bright);
  background: rgba(39,116,200,0.08);
}

/* Stat item hover */
.stat-item {
  transition: transform var(--t-fast) var(--ease-spring);
}
.stat-item:hover {
  transform: translateY(-2px);
}

/* Page hero — subtle dark elevated background */
.page-hero {
  background: #060609;
}

/* Section subtle background variation for alternating sections */
.section:nth-child(even) {
  position: relative;
}

/* Scroll indicator enhanced */
.scroll-indicator span {
  text-shadow: 0 0 8px rgba(39,116,200,0.3);
}

/* Reveal animation enhanced with slight scale */
.reveal {
  opacity: 0;
  transform: translateY(20px) scale(0.99);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hamburger hover effect */
.hamburger:hover span,
.hamburger:hover::before,
.hamburger:hover::after {
  background: var(--brand-blue-bright);
}

/* Image showcase enhanced overlay */
.image-showcase-overlay {
  background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,29,64,0.4) 50%, rgba(0,0,0,0.20) 100%);
}

/* ===== TASK 2-9 CSS ENHANCEMENTS ===== */

/* A1. Page hero height fix — reduce excessive padding */
/* Page hero responsive padding */
@media (min-width: 769px) {
  .page-hero {
    padding-top: calc(var(--nav-height) + 48px) !important;
    padding-bottom: 56px !important;
  }
}
@media (max-width: 768px) {
  .page-hero {
    padding-top: calc(var(--nav-height) + 28px) !important;
    padding-bottom: 36px !important;
  }
}

/* A2. Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

/* A3. Industries dropdown column title (matching mega menu style) */
.dropdown-content {
  padding-top: 0 !important;
}
.dropdown-content::before {
  content: 'Sectors';
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  padding: 12px 20px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 4px;
}

/* A4. Section label decorative line enhancement */
.section-label {
  position: relative;
  padding-left: 20px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 1px;
  background: var(--brand-blue-bright);
}

/* A6. Enhanced card hover shadows */
.content-card:hover, .sidebar-card:hover, .testimonial-card:hover, .team-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.3), 0 0 20px rgba(39,116,200,0.05);
}
.job-listing:hover, .update-item:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

/* A7. Enhanced preloader — add fade-out to preloader text */
.preloader-text {
  opacity: 0;
  animation: preloaderTextFade 1.2s var(--ease-out) 0.3s forwards;
}
@keyframes preloaderTextFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.preloader.hidden .preloader-text, .preloader.hidden .preloader-logo svg {
  transition: opacity 0.4s ease;
  opacity: 0 !important;
}

/* A8. Glow line separator between sections */
.section + .section, .stats-bar + .section {
  position: relative;
}
.glow-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--brand-blue-bright) 50%, transparent 100%);
  opacity: 0.3;
  border: none;
  margin: 0;
}

/* A9. Enhanced blog card with gradient overlay on image */
.blog-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

/* A10. Better CTA button on homepage hero — add border glow pulse */
.hero-btn {
  position: relative;
}
.hero-btn::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--brand-blue-bright);
  opacity: 0;
  transition: opacity var(--t-med);
}
.hero-btn:hover::after {
  opacity: 1;
}

/* A11. Enhanced capabilities grid — 3 columns on large screens, stagger animation */
@media (min-width: 1024px) {
  .capabilities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.reveal-stagger.visible .content-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-stagger.visible .content-card:nth-child(1) {
  transition-delay: 0.05s;
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.visible .content-card:nth-child(2) {
  transition-delay: 0.1s;
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.visible .content-card:nth-child(3) {
  transition-delay: 0.15s;
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.visible .content-card:nth-child(4) {
  transition-delay: 0.2s;
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.visible .content-card:nth-child(5) {
  transition-delay: 0.25s;
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.visible .content-card:nth-child(6) {
  transition-delay: 0.3s;
  opacity: 1;
  transform: translateY(0);
}

/* A12. Enhanced process-step number hover effect */
.process-step-number {
  transition: opacity var(--t-fast), color var(--t-fast);
}
.process-step:hover .process-step-number {
  opacity: 1;
}

/* A13. Cert badge enhanced with icon and border effect */
.cert-badge {
  position: relative;
  overflow: hidden;
}
.cert-badge::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-blue-bright);
  transform: scaleX(0);
  transition: transform var(--t-med) var(--ease-out);
}
.cert-badge:hover::after {
  transform: scaleX(1);
}

/* A14. Mobile floating CTA improvements */
@media (max-width: 768px) {
  .floating-cta {
    bottom: 16px;
  }
  .floating-cta a {
    padding: 12px 24px;
    font-size: 10px;
    letter-spacing: 0.14em;
  }
  .back-to-top {
    bottom: 80px;
    right: 16px;
  }
  .cookie-consent-inner {
    padding: 14px 0;
  }
}

/* A15. Subtle body background texture fix */
body::before {
  pointer-events: none !important;
}

/* A16. Enhanced Industries grid on homepage — subtle gradient background per card */
.industry-link-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(39,116,200,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease-smooth);
  pointer-events: none;
}
.industry-link-card:hover::before {
  opacity: 1;
}

/* =============================================================
   LOGO CAROUSEL (Trusted By)
   ============================================================= */
.logo-carousel-section {
  padding: var(--space-xl) 0;
  background: #08080c;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.logo-carousel-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  text-align: center;
  margin: 0 auto var(--space-sm);
  max-width: 100% !important;
  width: 100% !important;
}
.logo-carousel-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-lg);
}
.logo-carousel-wrapper {
  position: relative;
  padding: 0 48px;
}
.logo-carousel-track {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: var(--space-md) 0;
  cursor: grab;
  user-select: none;
}
.logo-carousel-track.dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}
.logo-carousel-track::-webkit-scrollbar {
  display: none;
}
.logo-carousel-track img {
  flex: 0 0 auto;
  height: 72px;
  width: auto;
  max-width: 200px;
  min-width: 120px;
  object-fit: contain;
  opacity: 0.9;
  filter: grayscale(100%);
  background: #fff;
  border-radius: 6px;
  padding: 12px 20px;
  box-sizing: content-box;
  transition: opacity var(--t-fast), filter var(--t-fast), transform var(--t-fast);
}
.logo-carousel-track img:hover {
  opacity: 1;
  filter: grayscale(60%);
  transform: scale(1.05);
}
.logo-carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
  z-index: 2;
}
.logo-carousel-arrow:hover {
  color: var(--color-text);
  border-color: var(--color-border-strong);
  background: rgba(255,255,255,0.08);
}
.logo-carousel-arrow svg {
  width: 16px; height: 16px;
}
.logo-carousel-arrow.prev { left: 0; }
.logo-carousel-arrow.next { right: 0; }
@media (max-width: 768px) {
  .logo-carousel-wrapper { padding: 0 8px; }
  .logo-carousel-track img { height: 52px; max-width: 160px; min-width: 100px; padding: 8px 14px; }
  .logo-carousel-arrow { display: none; }
}

/* =============================================================
   ACTIVE NAV STATE — Current page highlighting
   ============================================================= */
.nav-links > a.active,
.nav-links > .dropdown.active > .dropbtn {
  color: var(--color-text);
}
.nav-links > a.active::after,
.nav-links > .dropdown.active > .dropbtn::after {
  width: calc(100% - 36px);
}

/* =============================================================
   IMAGE LAZY LOADING — Fade-in on load
   ============================================================= */
img[data-src] {
  opacity: 0;
  filter: blur(10px) grayscale(100%);
  transition: opacity 0.6s var(--ease-out), filter 0.8s var(--ease-out);
}
img[data-src].loaded {
  opacity: 1;
  filter: none;
}
img.lazy-load {
  opacity: 0;
  filter: blur(8px) grayscale(100%);
  transition: opacity 0.6s var(--ease-out), filter 0.8s var(--ease-out);
}
img.lazy-load.loaded {
  opacity: 1;
  filter: grayscale(100%);
}
img.lazy-load.loaded:hover {
  filter: grayscale(0%);
}

/* =============================================================
   ENHANCED SCROLL REVEAL — Stagger children with offset
   ============================================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delay utility classes */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }
.delay-6 { transition-delay: 0.6s !important; }

/* =============================================================
   MICRO-INTERACTIONS — Button ripple, link underline sweep, card tilt
   ============================================================= */

/* Button press scale */
.btn:active,
.btn-blue:active {
  transform: scale(0.97);
  transition-duration: 80ms;
}

/* Link underline sweep animation */
.ex-link-sweep {
  position: relative;
  display: inline;
}
.ex-link-sweep::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--brand-blue-bright);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease-out);
}
.ex-link-sweep:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Card subtle tilt on hover (3D perspective) */
.tilt-card {
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  transform-style: preserve-3d;
  perspective: 800px;
}
.tilt-card:hover {
  transform: translateY(-4px) rotateX(1deg);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

/* Glow pulse for important elements */
@keyframes glowPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(39,116,200,0.2); }
  50% { box-shadow: 0 0 20px rgba(39,116,200,0.4), 0 0 40px rgba(39,116,200,0.1); }
}
.glow-pulse {
  animation: glowPulse 3s ease-in-out infinite;
}

/* Text shimmer effect for headings */
@keyframes textShimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
.text-shimmer {
  background: linear-gradient(90deg, var(--color-text) 40%, var(--brand-blue-bright) 50%, var(--color-text) 60%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShimmer 6s ease-in-out infinite;
}

/* Focus visible ring for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--brand-blue-bright);
  outline-offset: 3px;
}

/* =============================================================
   SECTION TITLE ENHANCEMENT — Decorative line + glow
   ============================================================= */
.section-title {
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--brand-blue-bright);
  box-shadow: 0 0 10px rgba(39,116,200,0.5);
}

/* =============================================================
   BLOG CARD ENHANCEMENT — Category tag + read time
   ============================================================= */
.blog-card-tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  border: 1px solid rgba(39,116,200,0.3);
  margin-bottom: var(--space-2xs);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.blog-card:hover .blog-card-tag {
  background: rgba(39,116,200,0.1);
  border-color: var(--brand-blue-bright);
}

/* =============================================================
   FORM ENHANCEMENT — Floating labels, validation states
   ============================================================= */
.form-group {
  position: relative;
  margin-bottom: var(--space-md);
}
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2xs);
  transition: color var(--t-fast);
}
.form-group:focus-within label {
  color: var(--brand-blue-bright);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--brand-blue-bright) !important;
  box-shadow: 0 2px 0 0 var(--brand-blue-bright) !important;
}

/* =============================================================
   SCROLL-TO-TOP ENHANCEMENT — Circular progress ring
   ============================================================= */
.back-to-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
}
.back-to-top::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--brand-blue-bright);
  transition: transform 0.3s var(--ease-smooth), opacity 0.3s;
  opacity: 0;
}
.back-to-top.visible::before {
  opacity: 1;
}
.back-to-top:hover::before {
  transform: rotate(180deg);
}

/* =============================================================
   PAGE HERO ENHANCEMENT — Subtle particle/dot grid bg
   ============================================================= */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(39,116,200,0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
}

/* =============================================================
   COOKIE CONSENT ENHANCEMENT — Slide up + blur
   ============================================================= */
.cookie-consent {
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
}
.cookie-consent-inner {
  border-left: 3px solid var(--brand-blue-bright);
  padding-left: var(--space-md);
}

/* =============================================================
   FOOTER ENHANCEMENT — Top gradient fade
   ============================================================= */
.footer::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4));
  pointer-events: none;
}

/* =============================================================
   ENHANCED HERO — Ken Burns slow zoom, text gradient overlay
   ============================================================= */
.hero-bg img {
  animation: heroKenBurns 25s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
  0% { transform: scale(1.08) translateY(0); }
  100% { transform: scale(1.15) translateY(-10px); }
}
.hero-content::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  pointer-events: none;
  z-index: 0;
}
.hero-content > * { position: relative; z-index: 1; }

/* =============================================================
   INDUSTRY CARD ENHANCEMENT — Animated border gradient
   ============================================================= */
.industry-link-card {
  position: relative;
  overflow: hidden;
}
.industry-link-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-blue-bright), transparent);
  transform: scaleX(0);
  transition: transform 0.5s var(--ease-out);
}
.industry-link-card:hover::after {
  transform: scaleX(1);
}

/* =============================================================
   STATS BAR ENHANCEMENT — Separator lines between stats
   ============================================================= */
.stat-item {
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--color-border), transparent);
}

/* =============================================================
   GLOW LINE ENHANCEMENT — Animated flow
   ============================================================= */
.glow-line {
  position: relative;
  overflow: hidden;
  height: 1px;
  background: rgba(255,255,255,0.04);
}
.glow-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--brand-blue-bright), transparent);
  animation: glowLineFlow 4s ease-in-out infinite;
}
@keyframes glowLineFlow {
  0% { left: -50%; }
  100% { left: 100%; }
}

/* =============================================================
   FLOATING CTA ENHANCEMENT — Pulse ring animation
   ============================================================= */
.floating-cta a {
  position: relative;
  overflow: visible;
}
.floating-cta a::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid var(--brand-blue-bright);
  border-radius: inherit;
  opacity: 0;
  animation: ctaPulse 2.5s ease-in-out infinite;
}
@keyframes ctaPulse {
  0% { opacity: 0; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.03); }
  100% { opacity: 0; transform: scale(1.06); }
}

/* =============================================================
   SECTION DIVIDER ENHANCEMENT — Animated dash flow
   ============================================================= */
.section-divider::before,
.section-divider::after {
  background: repeating-linear-gradient(
    90deg,
    var(--color-border) 0px,
    var(--color-border) 4px,
    transparent 4px,
    transparent 12px
  );
  background-size: 16px 1px;
}

/* =============================================================
   NAV DROPDOWN LINK ENHANCEMENT — Left accent bar on hover
   ============================================================= */
.mega-dropdown a {
  border-left: 2px solid transparent;
}
.mega-dropdown a:hover {
  border-left-color: var(--brand-blue-bright);
}
.dropdown-content a {
  border-left: 2px solid transparent;
}
.dropdown-content a:hover {
  border-left-color: var(--brand-blue-bright);
}

/* =============================================================
   FORM INPUT ENHANCEMENT — Animated underline
   ============================================================= */
input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
textarea,
select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-text);
  width: 100%;
  outline: none;
  transition: border-color var(--t-med) var(--ease-smooth), box-shadow var(--t-med) var(--ease-smooth);
}
input::placeholder,
textarea::placeholder {
  color: var(--color-text-faint);
}

/* =============================================================
   HOVER ZOOM ENHANCEMENT — Subtle scale on content cards
   ============================================================= */
.content-card {
  transition: transform var(--t-med) var(--ease-out),
              border-color var(--t-fast) var(--ease-smooth),
              box-shadow var(--t-med);
}

/* =============================================================
   CERTIFICATION BADGE ENHANCEMENT — Top accent line
   ============================================================= */
.cert-badge {
  position: relative;
  overflow: hidden;
  border-top: 2px solid transparent;
  transition: border-color var(--t-fast), color var(--t-fast), border-top-color var(--t-fast);
}
.cert-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-blue-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.cert-badge:hover {
  border-top-color: var(--brand-blue-bright);
}
.cert-badge:hover::before {
  transform: scaleX(1);
}





/* =============================================================
   VALUE PROP ICON ENHANCEMENT — Rotate on hover
   ============================================================= */
.value-prop-icon {
  transition: transform var(--t-med) var(--ease-spring), color var(--t-fast);
}
.value-prop:hover .value-prop-icon {
  transform: rotate(90deg) scale(1.2);
  color: var(--brand-blue-bright);
}

/* =============================================================
   SCROLL INDICATOR ENHANCEMENT — Bounce + line draw
   ============================================================= */
.scroll-indicator {
  position: relative;
}
.scroll-indicator::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 30px;
  background: linear-gradient(to bottom, var(--color-text-muted), transparent);
  animation: scrollLineDraw 2s ease-in-out infinite;
}
@keyframes scrollLineDraw {
  0%, 100% { opacity: 0.3; height: 20px; }
  50% { opacity: 1; height: 35px; }
}

/* =============================================================
   RESPONSIVE ENHANCEMENT — Better tablet breakpoints
   ============================================================= */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title { letter-spacing: 0.04em; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-sm); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .value-props { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================================
   TOAST NOTIFICATION
   ============================================================= */
.toast-container {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 9500;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  padding: 14px 20px;
  background: rgba(10,10,14,0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--brand-blue-bright);
  color: var(--color-text);
  font-size: 13px;
  max-width: 360px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.toast.visible {
  opacity: 1;
  transform: translateX(0);
}
.toast.toast-error { border-left-color: #e74c3c; }
.toast.toast-success { border-left-color: #27c486; }

/* =============================================================
   404 PAGE ENHANCEMENT
   ============================================================= */
.error-page-content {
  text-align: center;
  padding: var(--space-2xl) 0;
}
.error-page-content h1 {
  font-size: clamp(80px, 12vw, 160px);
  font-weight: 700;
  color: var(--brand-blue-bright);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: var(--space-lg);
}
.error-page-content h2 {
  font-size: clamp(18px, 3vw, 28px);
  color: var(--color-text);
  margin-bottom: var(--space-md);
}
.error-page-content p {
  max-width: 480px;
  margin: 0 auto var(--space-lg);
  color: var(--color-text-muted);
  font-size: 15px;
}

/* =============================================================
   CONTACT FORM SUBMIT BUTTON
   ============================================================= */
input[type="submit"] {
  display: inline-block;
  padding: 14px 40px;
  font-family: var(--font-body);
  font-size: 11px;
   font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text);
  background: var(--brand-blue-bright);
  border: 1px solid var(--brand-blue-bright);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), opacity var(--t-fast), transform 80ms;
}
input[type="submit"]:hover {
  background: var(--color-text);
  color: var(--color-bg);
}
input[type="submit"]:active {
  transform: scale(0.97);
  opacity: 0.8;
}
input[type="submit"]:disabled {
  cursor: not-allowed;
}

/* =============================================================
   FILE INPUT ENHANCEMENT
   =============================================================
input[type="file"] {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
 color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
  outline: none;
  transition: border-color var(--t-med) var(--ease-smooth);
}
input[type="file"]:focus {
  border-color: var(--brand-blue-bright);
}
input[type="file"]::file-selector-button {
  color: var(--brand-blue-bright);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--color-border-strong);
  margin-right: 12px;
  cursor: pointer;
 transition: background var(--t-fast), border-color var(--t-fast);
}
input[type="file"]::file-selector-button:hover {
  background: rgba(39,116,200,0.1);
  border-color: var(--brand-blue-bright);
}

/* =============================================================
   SELECT ENHANCEMENT
   =============================================================
select {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  width: 100%;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
  transition: border-color var(--t-med) var(--ease-smooth);
}
select:focus {
  border-color: var(--brand-blue-bright);
}
select option {
  background: #111;
  color: var(--color-text);
}



/* =============================================================
   SOCIAL LINK HOVER — Tooltip
   =============================================================
.social-links a::after {
  content: attr(aria-label);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  opacity: 0;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
  background: rgba(0,0,0,0.95);
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
 pointer-events: none;
  transition: opacity 0.2s, transform 0.2s var(--ease-out);
  z-index: 10;
}
.social-links a:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* =============================================================
   CTA BANNER RESPONSIVE FIX
   =============================================================
@media (max-width: 768px) {
  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-banner-text {
    text-align: center;
  }
  .cta-banner-text p {
    margin: 0 auto var(--space-sm);
  }
}

/* =============================================================
   CONTACT CARDS HOVER ENHANCEMENT
   =============================================================
.contact-info-card {
  transition: transform var(--t-med) var(--ease-out), border-color var(--t-fast), box-shadow var(--t-med);
}
.contact-info-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-strong);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3), 0 0 16px rgba(39,116,200,0.06);
}
.contact-info-card .card-icon {
  transition: transform var(--t-med) var(--ease-spring), color var(--t-fast);
}
.contact-info-card:hover .card-icon {
  transform: scale(1.15);
  color: var(--brand-blue-bright);
}

/* =============================================================
   CAPABILITY PAGES — ENHANCED LAYOUT
   ============================================================= */

/* Breadcrumb */
.cap-breadcrumb {
  padding: var(--space-sm) 0 0;
  font-size: 12px;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.cap-breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--t-fast);
}
.cap-breadcrumb a:hover { color: var(--brand-blue-bright); }
.cap-breadcrumb .sep { opacity: 0.4; }
.cap-breadcrumb .current { color: var(--color-text); }

/* Page hero with breadcrumb */
.page-hero.has-breadcrumb {
  padding-bottom: var(--space-md);
}

/* Cap overview — intro text + sidebar */
.cap-overview {
  padding: var(--space-xl) 0;
}
.cap-overview .content-grid {
  align-items: start;
}
.cap-intro-col {
  /* wrapper so intro text + image stay in left grid cell */
}
.cap-overview .intro-text p {
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: var(--space-md);
  max-width: 100%;
}
.cap-overview .intro-text p:last-child { margin-bottom: 0; }

/* Cap sidebar card — sticky on right */
.cap-sidebar-card {
  border: 1px solid var(--color-border);
  background: linear-gradient(135deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.005) 100%);
  padding: var(--space-lg);
  position: sticky;
  top: 100px;
}
.cap-sidebar-card .sidebar-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  margin-bottom: var(--space-sm);
}
.cap-sidebar-card h4 {
  font-size: 16px;
  margin-bottom: var(--space-md);
  color: var(--color-text);
}
.cap-sidebar-card .spec-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-md);
}
.cap-sidebar-card .spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 13px;
  line-height: 1.4;
}
.cap-sidebar-card .spec-row:last-child { border-bottom: none; }
.cap-sidebar-card .spec-row .spec-label {
  color: var(--color-text-muted);
}
.cap-sidebar-card .spec-row .spec-value {
  color: var(--color-text);
  font-weight: 500;
  text-align: right;
}

/* Cap feature grid */
.cap-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  padding: var(--space-xl) 0;
}
@media (max-width: 1024px) {
  .cap-feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .cap-feature-grid { grid-template-columns: 1fr; }
}
.cap-feature-card {
  border: 1px solid var(--color-border);
  padding: var(--space-lg);
  position: relative;
  transition: transform var(--t-med) var(--ease-out), border-color var(--t-fast), background var(--t-med);
}
.cap-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--brand-blue-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med) var(--ease-out);
}
.cap-feature-card:hover {
  transform: translateY(-3px);
  border-color: var(--color-border-strong);
  background: linear-gradient(135deg, rgba(0,74,143,0.08) 0%, transparent 100%);
}
.cap-feature-card:hover::before { transform: scaleX(1); }
.cap-feature-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  font-size: 18px;
  margin-bottom: var(--space-md);
  color: var(--brand-blue-bright);
}
.cap-feature-card h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}
.cap-feature-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Cap detail section — structured content */
.cap-detail-section {
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--color-border);
}
.cap-detail-section .detail-header {
  margin-bottom: var(--space-lg);
}
.cap-detail-section .detail-header p {
  font-size: 15px;
  color: var(--color-text-muted);
  max-width: 700px;
  line-height: 1.7;
}

/* Two-column detail layout */
.cap-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}
@media (max-width: 768px) {
  .cap-detail-grid { grid-template-columns: 1fr; }
}

/* Cap list styling (enhanced feature-list) */
.cap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cap-list li {
  position: relative;
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text);
}
.cap-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--brand-blue-bright);
}
.cap-list li:last-child { border-bottom: none; }

/* Cap process flow */
.cap-process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}
@media (max-width: 768px) {
  .cap-process-steps { grid-template-columns: 1fr; }
}
.cap-process-step {
  border: 1px solid var(--color-border);
  padding: var(--space-lg);
  position: relative;
  transition: border-color var(--t-fast), background var(--t-med);
}
.cap-process-step:hover {
  border-color: var(--color-border-strong);
  background: linear-gradient(135deg, rgba(0,74,143,0.06) 0%, transparent 100%);
}
.cap-process-step .step-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: rgba(255,255,255);
  margin-bottom: var(--space-xs);
  line-height: 1;
}
.cap-process-step h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}
.cap-process-step p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Cap material tags */
.cap-materials {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}
.cap-material-tag {
  padding: 6px 14px;
  border: 1px solid var(--color-border);
  font-size: 12px;
  color: var(--color-text-muted);
  transition: border-color var(--t-fast), color var(--t-fast);
}
.cap-material-tag:hover {
  border-color: var(--brand-blue-bright);
  color: var(--brand-blue-bright);
}

/* Cap CTA section */
.cap-cta-section {
  padding: var(--space-2xl) 0;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

/* Staggered reveal for feature cards */
.reveal-stagger .cap-feature-card { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out); }
.reveal-stagger.visible .cap-feature-card { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible .cap-feature-card:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible .cap-feature-card:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible .cap-feature-card:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.visible .cap-feature-card:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible .cap-feature-card:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.visible .cap-feature-card:nth-child(6) { transition-delay: 0.3s; }
.reveal-stagger.visible .cap-feature-card:nth-child(7) { transition-delay: 0.35s; }
.reveal-stagger.visible .cap-feature-card:nth-child(8) { transition-delay: 0.4s; }
.reveal-stagger.visible .cap-feature-card:nth-child(9) { transition-delay: 0.45s; }

/* =============================================================
   CONTACT & RFQ FORMS — ENHANCED DESIGN
   ============================================================= */

/* --- Form layout: 2-col with sidebar --- */
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-xl);
  align-items: start;
}
@media (max-width: 1024px) {
  .contact-form-grid { grid-template-columns: 1fr; }
}

/* --- Form card wrapper --- */
.form-card {
  padding: 48px;
  border: 1px solid var(--color-border);
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);
}
@media (max-width: 768px) {
  .form-card { padding: 28px 20px; }
}

/* --- Sidebar info card (for RFQ page) --- */
.rfq-sidebar-card {
  padding: 32px;
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--brand-blue-bright);
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);
}
.rfq-sidebar-card h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand-blue-bright);
  margin-bottom: 24px;
}
.rfq-sidebar-card p {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}
.rfq-sidebar-card p:last-child { margin-bottom: 0; }
.rfq-sidebar-card strong {
  color: var(--color-text);
  font-weight: 600;
}

/* --- Sidebar: What Happens Next steps --- */
.rfq-steps { list-style: none; padding: 0; margin: 0; }
.rfq-steps li {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.rfq-steps li:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.rfq-step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-blue-bright);
  color: var(--brand-blue-bright);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
}
.rfq-step-text {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  padding-top: 5px;
}
.rfq-step-text strong {
  display: block;
  color: var(--color-text);
  font-weight: 600;
  margin-bottom: 2px;
}

/* --- Sidebar: Accepted file types --- */
.rfq-file-types {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.rfq-file-type-tag {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* --- Sidebar: contact info --- */
.rfq-sidebar-contact {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.rfq-sidebar-contact p {
  font-size: 13px;
  margin-bottom: 4px;
}
.rfq-sidebar-contact a {
  color: var(--brand-blue-bright);
  text-decoration: none;
  transition: color 0.2s;
}
.rfq-sidebar-contact a:hover { color: var(--color-text); }

/* --- RFQ container (wide, no max-width for 2-col) --- */
.rfq-container {
  max-width: none;
}

/* --- Section labels (form dividers) --- */
.rfq-section-label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-text-faint);
  padding-bottom: 16px;
  margin-bottom: 32px;
  margin-top: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 12px;
}
.rfq-section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brand-blue-bright);
  flex-shrink: 0;
}
.rfq-section-label:first-of-type {
  margin-top: 0;
}

/* --- Hero checklist --- */
.hero-checklist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
  margin-top: 24px;
  max-width: 520px;
}
@media (max-width: 500px) {
  .hero-checklist { grid-template-columns: 1fr; }
}
.hero-checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--color-text-muted);
}
.hero-checklist-item svg {
  flex-shrink: 0;
  color: var(--brand-blue-bright);
}

/* --- Form helper text --- */
.form-helper {
  font-size: 12px;
  color: var(--color-text-faint);
  margin-top: 6px;
  margin-bottom: 0;
  line-height: 1.5;
}

/* --- Radio group --- */
.rfq-radio-group {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rfq-radio-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-text);
  line-height: 1.5;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.2s, background 0.2s;
}
.rfq-radio-option:hover {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.015);
}
.rfq-radio-option:has(input:checked) {
  border-color: var(--brand-blue-bright);
  background: rgba(59,130,246,0.05);
}
.rfq-radio-option input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  margin-top: 1px;
  transition: border-color 0.2s, background 0.2s;
  border-bottom: 1.5px solid rgba(255,255,255,0.2);
}
.rfq-radio-option input[type="radio"]:checked {
  border-color: var(--brand-blue-bright);
  background: var(--brand-blue-bright);
  box-shadow: inset 0 0 0 3px var(--color-bg);
}
.rfq-radio-option input[type="radio"]:focus-visible {
  outline: 2px solid var(--brand-blue-bright);
  outline-offset: 2px;
}

/* --- File upload zone --- */
.rfq-file-zone {
  border: 1px dashed rgba(255,255,255,0.1);
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: rgba(255,255,255,0.01);
  position: relative;
}
.rfq-file-zone:hover,
.rfq-file-zone.drag-over {
  border-color: var(--brand-blue-bright);
  background: rgba(59,130,246,0.03);
}
.rfq-file-zone input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  border: none;
  padding: 0;
}
.rfq-file-zone-icon {
  margin-bottom: 16px;
  color: var(--color-text-faint);
  opacity: 0.6;
}
.rfq-file-zone-text {
  font-size: 14px;
  color: var(--color-text-muted);
}
.rfq-file-zone-text strong {
  color: var(--brand-blue-bright);
}
.rfq-file-zone-hint {
  font-size: 12px;
  color: var(--color-text-faint);
  margin-top: 8px;
}
.rfq-file-name {
  margin-top: 12px;
  font-size: 13px;
  color: var(--brand-blue-bright);
  font-weight: 500;
}
.rfq-export-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- Contact form (simple) specific --- */
.contact-form-submit {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.contact-form-submit .form-note {
  font-size: 12px;
  color: var(--color-text-faint);
  line-height: 1.5;
  margin: 0;
}

/* =============================================================
   CONTACT PAGE MAP
   ============================================================= */
.contact-map {
  background: var(--color-bg-dark);
  overflow: hidden;
}
.contact-map iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: 0;
  border-top: 2px solid var(--color-border);
  border-bottom: 2px solid var(--color-border);
  filter: grayscale(1) invert(0.9) contrast(0.85);
  transition: filter 0.4s;
}
.contact-map:hover iframe {
  filter: grayscale(0.6) invert(0.9) contrast(0.9);
}
@media (max-width: 768px) {
  .contact-map iframe { height: 280px; }
}

/* Image Placeholder */
.img-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border: 1px dashed var(--color-border-strong);
  background: rgba(255,255,255,0.015);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--color-text-muted);
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}
.img-placeholder::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-blue-bright), transparent);
  opacity: 0.4;
}
.img-placeholder-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-blue-bright);
  opacity: 0.5;
}
.img-placeholder-icon svg {
  width: 22px;
  height: 22px;
}
.img-placeholder-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  opacity: 0.7;
}
.img-placeholder-desc {
  font-size: 12px;
  color: var(--color-text-muted);
  opacity: 0.45;
  line-height: 1.5;
}
/* Sidebar image placeholder — used inside cap-overview right column */
.cap-sidebar-img {
  margin-top: var(--space-lg);
}
.cap-sidebar-img .img-placeholder {
  aspect-ratio: 16 / 7;
}
@media (max-width: 768px) {
  .cap-sidebar-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cap-sidebar-card .spec-row {
    justify-content: space-between;
  }
  .cap-sidebar-card .spec-row .spec-label,
  .cap-sidebar-card .spec-row .spec-value {
    text-align: inherit;
  }
  .cap-sidebar-img .img-placeholder {
    aspect-ratio: 3 / 2;
  }
}
.cap-intro-col {
  /* wrapper so intro text + image stay in left grid cell */
}
/* Industry overview image placeholder */
.industry-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}
.industry-overview-grid .img-placeholder {
  aspect-ratio: 4 / 3;
  min-height: 320px;
}
@media (max-width: 1024px) {
  .industry-overview-grid { grid-template-columns: 1fr; }
  .industry-overview-grid .img-placeholder { min-height: 240px; }
}

/* =============================================================
   RFQ PAGE REDESIGN
   ============================================================= */

/* RFQ Hero */
.rfq-hero {
  padding-bottom: 0;
}
.rfq-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 1024px) {
  .rfq-hero-inner { grid-template-columns: 1fr; gap: 40px; }
}
.rfq-hero-sub {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 520px;
}
.rfq-hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 640px) {
  .rfq-hero-features { grid-template-columns: 1fr; }
}
.rfq-hero-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid var(--color-border);
  background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.005) 100%);
  transition: border-color var(--t-fast), background var(--t-med);
}
.rfq-hero-feature:hover {
  border-color: var(--color-border-strong);
  background: linear-gradient(135deg, rgba(0,74,143,0.06) 0%, transparent 100%);
}
.rfq-hero-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-blue-bright);
  color: var(--brand-blue-bright);
  opacity: 0.8;
}
.rfq-hero-feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.rfq-hero-feature-text strong {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
}
.rfq-hero-feature-text span {
  font-size: 12px;
  color: var(--color-text-faint);
}

/* Trust Bar */
.rfq-trust-bar {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
  background: rgba(255,255,255,0.01);
}
.rfq-trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
@media (max-width: 640px) {
  .rfq-trust-items { gap: 20px; justify-content: flex-start; }
}
.rfq-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}
.rfq-trust-item svg {
  color: var(--brand-blue-bright);
  opacity: 0.7;
  flex-shrink: 0;
}

/* RFQ Layout */
.rfq-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: var(--space-xl);
  align-items: start;
}
@media (max-width: 1024px) {
  .rfq-layout { grid-template-columns: 1fr; }
}

/* RFQ Form Card */
.rfq-form-card {
  padding: 48px;
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--brand-blue-bright);
  background: linear-gradient(180deg, rgba(255,255,255,0.025) 0%, rgba(255,255,255,0.005) 100%);
}
@media (max-width: 768px) {
  .rfq-form-card { padding: 28px 20px; }
}

/* RFQ Form Steps */
.rfq-form-step {
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.rfq-form-step:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.rfq-form-step-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
}
.rfq-form-step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--brand-blue-bright);
  color: var(--brand-blue-bright);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.rfq-form-step-header h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 4px 0;
}
.rfq-form-step-header p {
  font-size: 13px;
  color: var(--color-text-faint);
  margin: 0;
}

/* RFQ Form Submit */
.rfq-form-submit {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.rfq-form-note {
  font-size: 12px;
  color: var(--color-text-faint);
}

/* RFQ Radio Mark (custom circle) */
.rfq-radio-mark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 1px solid var(--color-border-strong);
  border-radius: 50%;
  transition: border-color var(--t-fast);
}
.rfq-radio-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-blue-bright);
  transition: transform var(--t-fast);
}
.rfq-radio-option {
  position: relative;
  padding-left: 32px;
}
.rfq-radio-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.rfq-radio-option:has(input:checked) .rfq-radio-mark {
  border-color: var(--brand-blue-bright);
}
.rfq-radio-option:has(input:checked) .rfq-radio-mark::after {
  transform: translate(-50%, -50%) scale(1);
}
.rfq-radio-option:hover .rfq-radio-mark {
  border-color: var(--brand-blue-bright);
}


