/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --navy: #020914;
  --navy-mid: #06111F;
  --navy-light: #0d1f35;
  --orange: #FF6A00;
  --pink: #E23BCA;
  --purple: #6A2BFF;
  --teal: #00C7C7;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --grey-100: #f0f2f5;
  --grey-200: #e0e4ea;
  --grey-400: #9aa3b0;
  --grey-600: #5a6475;
  --grey-800: #2c3340;
  --text-dark: #0d1421;
  --text-mid: #374151;
  --text-light: rgba(255,255,255,0.75);

  --grad-brand: linear-gradient(135deg, #00C7C7 0%, #6A2BFF 50%, #E23BCA 100%);
  --grad-orange: linear-gradient(135deg, #FF6A00, #E23BCA);
  --grad-teal: linear-gradient(135deg, #00C7C7, #6A2BFF);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --shadow-glow-teal: 0 0 32px rgba(0,199,199,0.18);
  --shadow-glow-purple: 0 0 32px rgba(106,43,255,0.18);

  --transition: 0.25s ease;
  --header-h: 72px;
}

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

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TYPOGRAPHY HELPERS
============================================================ */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.eyebrow--light { color: var(--teal); }

h1, h2, h3, h4, h5 { line-height: 1.15; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
h5 { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; }

.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: #e55a00;
  border-color: #e55a00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,106,0,0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline-teal:hover {
  background: rgba(0,199,199,0.1);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-teal);
}

.btn-outline-nav {
  background: rgba(15,20,35,0.45);
  color: var(--white);
  border: none;
  position: relative;
  padding: 9px 20px;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: all var(--transition);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.btn-outline-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 1.5px;
  background: linear-gradient(90deg, #FF6A00 0%, #E23BCA 45%, #00C7C7 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.btn-outline-nav:hover {
  background: rgba(255,106,0,0.08);
  transform: translateY(0px);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   SECTIONS
============================================================ */
.section-light { background: var(--off-white); padding: 25px 0; }
.section-dark  { background: var(--navy-mid); padding: 25px 0; }

/* ============================================================
   HEADER
============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(2,9,20,0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}
.site-header.scrolled {
  background: rgba(2,9,20,0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}

.logo-link { flex-shrink: 0; margin-right: auto; }
.logo-img { height: 60px; width: auto; max-width: none; display: block; }

.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--grad-brand);
  border-radius: 2px;
  transition: width var(--transition);
}
.main-nav a:hover { color: var(--white); }
.main-nav a:hover::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================================
   HERO
============================================================ */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding-top: var(--header-h);
}

/* Subtle grid texture over the left navy area only */
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(106,43,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106,43,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  pointer-events: none;
}
.hero-bg-grid::after { content: none; }

.hero-inner {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.hero-content {
  padding: 52px 40px 52px 48px;
}

.hero-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.hero-headline {
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.gradient-text-teal {
  color: var(--teal);
}

.hero-sub {
  font-size: 0.97rem;
  color: var(--text-light);
  max-width: 460px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ── Hero-specific button overrides ── */
.hero-ctas .btn {
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 10px;
  border-width: 2px;
  letter-spacing: 0.01em;
}

/* 1. Get a Quote — vivid orange → magenta → purple gradient fill */
.hero-ctas .btn-primary {
  background: linear-gradient(90deg, #FF6A00 0%, #E23BCA 50%, #6A2BFF 100%);
  border-color: linear-gradient(90deg, #FF6A00 0%, #E23BCA 50%, #6A2BFF 100%);;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,106,0,0.3);
}
.hero-ctas .btn-primary:hover {
  background: linear-gradient(90deg, #e55a00 0%, #c52faa 50%, #5620e0 100%);
  box-shadow: 0 8px 32px rgba(255,106,0,0.45);
  transform: translateY(-2px);
}

/* 2. Book a Discovery Call — dark translucent with subtle white border */
.hero-ctas .btn-ghost {
  background: rgba(15,20,35,0.55);
  border-color: rgba(255,255,255,0.25);
  color: var(--white);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-ctas .btn-ghost:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

/* 3. Access CircuitFlow — multi-colour gradient border, orange icon */
.hero-ctas .btn-outline-teal {
  background: rgba(15,20,35,0.45);
  border: none;
  color: var(--white);
  position: relative;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
/* Gradient border via pseudo-element mask trick */
.hero-ctas .btn-outline-teal::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(90deg, #FF6A00 0%, #E23BCA 45%, #00C7C7 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.hero-ctas .btn-outline-teal i {
  color: var(--orange);
  background: none;
  -webkit-text-fill-color: var(--orange);
}
.hero-ctas .btn-outline-teal:hover {
  background: rgba(255,106,0,0.08);
  transform: translateY(-2px);
  box-shadow: none;
}

/* Hero Visual — right column, natural image scaling */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center center;
}

/* Gradient that blends the left edge of the image into the navy background */
.hero-visual::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    to right,
    #020914 0%,
    #020914 8%,
    rgba(2,9,20,0.88) 30%,
    rgba(2,9,20,0.40) 65%,
    rgba(2,9,20,0.0) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Top and bottom vignette so the image doesn't hard-cut */
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(2,9,20,0.45) 0%, transparent 18%, transparent 82%, rgba(2,9,20,0.55) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-fade { display: none; }

/* ============================================================
   SECTION SPLIT LAYOUT
============================================================ */
.section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 25px;
}
.section-split h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
.split-left { padding-left: 24px; }
.supply-chain { background: var(--white); }
.supply-chain .eyebrow {
  font-size: 14px;
  color: #782cff;
}
.split-right p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  padding-top: 24px;
}

/* ============================================================
   FEATURE CARDS (supply chain)
============================================================ */
.cards-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: rgb(223 223 223 / 32%);
  border-radius: 10px 10px 5px 5px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  border: 0px solid var(--grey-200);
  box-shadow: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  transition: box-shadow var(--transition);
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 100px; height: 100px;
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.feature-icon img { width: 54px; height: 54px; object-fit: contain; }
.icon-orange { background: var(--orange); color: var(--white); }
.icon-purple { background: var(--purple); color: var(--white); }
.icon-teal   { background: var(--teal);   color: var(--white); }

.feature-card-body { display: flex; flex-direction: column; }
.feature-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.feature-card p  { color: var(--text-mid); font-size: 0.92rem; line-height: 1.65; }

.card-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
}
.card-accent--orange { background: var(--orange); }
.card-accent--purple { background: var(--purple); }
.card-accent--teal   { background: var(--teal); }

/* ============================================================
   SERVICES GRID
============================================================ */
.services { padding: 25px 0; background: #ece8ee; }

.services-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: stretch;
}

.services-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  overflow: hidden;
  min-width: 280px;
}

.services-image-left {
  height: auto;
  max-height: 320px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.tag-visual {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.tag-card {
  width: 140px;
  background: var(--navy-mid);
  border-radius: 12px 12px 60px 12px;
  padding: 24px 20px 36px;
  position: relative;
  box-shadow: 0 20px 60px rgba(2,9,20,0.25), 0 0 0 1px rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.tag-card .tag-logo img { height: 40px; filter: brightness(0) invert(1); }
.tag-hole {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1px;
  height: 100%;
}

.service-tile {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 5px;
  padding: 16px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all var(--transition);
  cursor: default;
  position: relative;
}
.service-tile i {
  font-size: 1.4rem;
  color: var(--grey-600);
}
.service-tile span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.service-tile span::after {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #FF6A00 0%, #E23BCA 50%, #6A2BFF 100%);
}
.service-tile:hover {
  border-color: var(--grey-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

/* ============================================================
   PROCESS
============================================================ */
.process-header {
  margin-bottom: 64px;
}
.process-header h2 { color: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  position: relative;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.step-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--navy-light);
  border: 2px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 12px;
  position: relative;
  z-index: 2;
  transition: all var(--transition);
}
.process-step:nth-child(1) .step-icon { color: var(--orange); }
.process-step:nth-child(2) .step-icon { color: var(--purple); }
.process-step:nth-child(3) .step-icon { color: var(--teal); }
.process-step:nth-child(4) .step-icon { color: var(--pink); }
.process-step:nth-child(5) .step-icon { color: var(--orange); }
.process-step:nth-child(6) .step-icon { color: var(--teal); }

.process-step:hover .step-icon {
  background: rgba(106,43,255,0.15);
  border-color: var(--purple);
  transform: scale(1.08);
}

.step-connector {
  position: absolute;
  top: 36px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(106,43,255,0.3), rgba(0,199,199,0.3));
  z-index: 1;
}
.process-step:last-child .step-connector { display: none; }

.step-number {
  font-size: 0.7rem;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.process-step h4 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 0.95rem;
}
.process-step p {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  line-height: 1.5;
}

/* ============================================================
   CIRCUITFLOW
============================================================ */
.circuitflow { padding: 96px 0; }

.cf-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.cf-content h2 { margin-bottom: 16px; }
.cf-sub {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.cf-access-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cf-access-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: all var(--transition);
}
.cf-access-card i:first-child {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grey-100);
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  color: var(--purple);
  flex-shrink: 0;
}
.cf-access-card span { flex: 1; }
.cf-access-card:hover {
  border-color: var(--purple);
  background: rgba(106,43,255,0.04);
  transform: translateX(4px);
}

/* Dashboard mockup */
.cf-dashboard {
  background: var(--navy-mid);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.06);
}

.dash-header {
  padding: 14px 20px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dash-logo { height: 22px; filter: brightness(0) invert(1); }
.dash-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
}

.dash-body {
  display: grid;
  grid-template-columns: 130px 1fr;
  min-height: 320px;
}

.dash-sidebar {
  background: rgba(0,0,0,0.2);
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 16px 0;
}
.dash-nav-item {
  padding: 9px 14px;
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: all var(--transition);
}
.dash-nav-item i { font-size: 0.8rem; }
.dash-nav-item.active, .dash-nav-item:hover {
  color: var(--white);
  background: rgba(106,43,255,0.15);
}

.dash-main { padding: 16px; }
.dash-overview-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.dash-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dash-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.dash-card-title {
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.status-list { display: flex; flex-direction: column; gap: 6px; }
.status-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
}
.status-row strong {
  margin-left: auto;
  color: var(--white);
  font-weight: 700;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-blue   { background: #3b82f6; }
.dot-teal   { background: var(--teal); }
.dot-yellow { background: #f59e0b; }
.dot-green  { background: #22c55e; }
.dot-orange { background: var(--orange); }
.dot-pink   { background: var(--pink); }

.big-stat {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.big-stat--teal { color: var(--teal); font-size: 1.4rem; margin-top: 4px; }
.mini-chart { margin-bottom: 10px; }
.mini-chart svg { width: 100%; height: 40px; }
.dash-card-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.dash-card-micro {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.3);
}

/* ============================================================
   WHY CHOOSE
============================================================ */
.why { padding-top: 72px; padding-bottom: 72px; }
.why h2 { margin-bottom: 56px; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.why-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.why-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--grey-100);
  border: 1.5px solid var(--grey-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--purple);
  transition: all var(--transition);
}
.why-item:hover .why-icon {
  background: rgba(106,43,255,0.08);
  border-color: var(--purple);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-purple);
}
.why-item p {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}

/* ============================================================
   GLOBAL REACH + CONTACT
============================================================ */
.global-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.gc-left {
  background: var(--navy-mid);
  display: flex;
  align-items: center;
}
.gc-left-inner {
  padding: 80px 64px;
}
.gc-left-inner h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.gc-left-inner > p {
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-bottom: 40px;
}
.location-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 6px 0;
}
.location-item i { color: var(--teal); font-size: 0.75rem; }

.world-map-dots svg { width: 100%; opacity: 0.8; }

.gc-right {
  background: var(--off-white);
  display: flex;
  align-items: center;
}
.gc-right-inner {
  padding: 80px 64px;
  width: 100%;
}
.gc-right-inner h2 { margin-bottom: 32px; }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--grey-400); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(106,43,255,0.1);
}

.contact-form .btn-primary { margin-top: 8px; }

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--navy);
  padding-top: 64px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo { height: 32px; margin-bottom: 12px; }
.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
  font-style: italic;
}

.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-socials a:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0,199,199,0.08);
}

.footer-col h5 {
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--teal); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.footer-contact i {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 0.8rem;
}
.footer-contact a:hover { color: var(--teal); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color var(--transition);
}
.footer-legal a:hover { color: var(--white); }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 46% 54%; }
  .hero-content { padding: 40px 24px 40px 32px; }
  .hero-ctas { flex-wrap: wrap; }

  .section-split { grid-template-columns: 1fr; gap: 24px; }
  .split-right p { padding-top: 0; }

  .cards-grid--3 { grid-template-columns: 1fr 1fr; }

  .services-grid { grid-template-columns: repeat(4, 1fr); }

  .process-steps { grid-template-columns: repeat(3, 1fr); row-gap: 48px; }
  .step-connector { display: none; }

  .cf-inner { grid-template-columns: 1fr; }

  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .global-contact { grid-template-columns: 1fr; }
  .gc-left-inner, .gc-right-inner { padding: 64px 40px; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
============================================================ */
@media (max-width: 640px) {
  :root { --header-h: 64px; }

  .main-nav, .btn-outline-nav {
    display: none;
  }
  .main-nav.open {
    display: flex;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: rgba(2,9,20,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .main-nav.open ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav.open ul li a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    font-size: 1rem;
  }
  .hamburger { display: flex; }

  .hero { padding-top: var(--header-h); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .hero-visual::before { width: 100%; background: linear-gradient(to bottom, rgba(2,9,20,0.5) 0%, rgba(2,9,20,0) 60%); }
  .hero-content { padding: 32px 24px 40px; }
  .hero-ctas { flex-wrap: wrap; }

  .section-light, .section-dark { padding: 64px 0; }

  .cards-grid--3 { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }

  .cf-inner { gap: 40px; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-sidebar { display: none; }

  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .gc-left-inner, .gc-right-inner { padding: 48px 24px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ============================================================
   ANIMATIONS / SCROLL REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
