/* =============================================
   AVEGA6 CONSULTING — MAIN STYLESHEET
   Design Direction: Refined Enterprise Technology & Executive Consulting
   Palette:
   - Primary: Deep Navy (#172B3A)
   - Secondary: Muted Teal (#5F8F8D)
   - Main Background: Warm Off-White (#F5F3EE)
   - Secondary Accent Background: Warm Stone (#E3DDD2)
   - Pure White: (#FFFFFF)
   - Typography: Manrope (Sans-Serif)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ——————————————————————————————————————
   1. CSS CUSTOM PROPERTIES (THEME TOKENS)
—————————————————————————————————————— */
:root {
  /* Brand Colors */
  --deep-navy: #172B3A;
  --muted-teal: #5F8F8D;
  --warm-offwhite: #F5F3EE;
  --warm-stone: #E3DDD2;
  --white: #FFFFFF;

  /* Typography / Text Derivatives */
  --charcoal: #172B3A;
  --slate-dark: #2C3E50;
  --slate: #3D4E5D;
  --gray-muted: #6B7C8C;

  /* Spacing Scale (8pt Baseline) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 48px;
  --sp-12: 64px;
  --sp-16: 96px;
  --sp-20: 120px;

  /* Typography Stack */
  --font-head: 'Manrope', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  /* Radii */
  --r-sm: 6px;
  --r: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;

  /* Ambient Soft Shadows */
  --sh-sm: 0 2px 8px rgba(23, 43, 58, 0.04);
  --sh: 0 6px 16px rgba(23, 43, 58, 0.06);
  --sh-md: 0 12px 28px rgba(23, 43, 58, 0.08);
  --sh-lg: 0 20px 40px rgba(23, 43, 58, 0.12);

  /* Borders */
  --border: rgba(23, 43, 58, 0.12);
  --border-soft: rgba(23, 43, 58, 0.07);

  /* Transitions */
  --tx: .25s cubic-bezier(.4, 0, .2, 1);
  --txs: .35s cubic-bezier(.4, 0, .2, 1);

  /* Layout & Grid Width */
  --max-w: 1240px;
  --pad-desk: 24px;
  --nav-h: 88px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01" 1, "cv01" 1;
}

body {
  font-family: var(--font-body);
  font-size: 1.08rem;
  color: var(--slate);
  background: var(--white);
  line-height: 1.68;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ——————————————————————————————————————
   3. TYPOGRAPHY HIERARCHY
—————————————————————————————————————— */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  color: var(--charcoal);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--deep-navy);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--deep-navy);
}

h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--deep-navy);
}

h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep-navy);
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-teal);
  display: inline-block;
}

.grad-text {
  color: var(--deep-navy);
}

/* ——————————————————————————————————————
   4. LAYOUT & GRID UTILITIES
—————————————————————————————————————— */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-desk);
}

.section {
  padding: 100px 0;
}

.section--light {
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.section--navy {
  background: var(--deep-navy);
  color: rgba(255, 255, 255, 0.9);
  position: relative;
}

.section-hd {
  text-align: left;
  margin-bottom: 48px;
}

.section-hd .eyebrow {
  margin-bottom: 12px;
}

.section-hd h2 {
  margin-top: 4px;
}

.section-hd p {
  max-width: 720px;
  margin: 16px 0 0 0;
  color: var(--slate);
  font-size: 1.1rem;
  line-height: 1.68;
  text-align: left;
}

.section-hd.light h2,
.section-hd.light .eyebrow {
  color: var(--white);
}

.section-hd.light p {
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
}

/* ——————————————————————————————————————
   5. BUTTONS & INTERACTION STYLES
—————————————————————————————————————— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r);
  font-family: var(--font-head);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: all var(--tx);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}

.btn-primary {
  background: var(--deep-navy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(23, 43, 58, 0.15);
  border: 1px solid var(--deep-navy);
}

.btn-primary:hover {
  background: #0F1D27;
  border-color: #0F1D27;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(23, 43, 58, 0.22);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  background: var(--white);
  color: var(--deep-navy);
  border: 1.5px solid var(--deep-navy);
  box-shadow: var(--sh-sm);
}

.btn-outline:hover {
  background: var(--deep-navy);
  color: var(--white);
  box-shadow: var(--sh);
  transform: translateY(-2px);
}

.btn-outline-teal {
  background: transparent;
  color: var(--muted-teal);
  border: 1.5px solid var(--muted-teal);
}

.btn-outline-teal:hover {
  background: var(--muted-teal);
  color: var(--white);
  transform: translateY(-2px);
}

/* ——————————————————————————————————————
   6. NAVIGATION BAR
—————————————————————————————————————— */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  transition: all var(--tx);
}

.nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(23, 43, 58, 0.06);
  border-bottom-color: var(--border);
}

.nav__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-desk);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  transition: opacity var(--tx);
}

.nav__logo:hover {
  opacity: 0.85;
}

.nav__logo img {
  height: 80px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  position: relative;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-navy);
  padding: 8px 16px;
  border-radius: var(--r-sm);
  transition: color var(--tx);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--muted-teal);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform var(--tx);
}

.nav__link:hover {
  color: var(--muted-teal);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
}

.nav__link.active {
  color: var(--deep-navy);
  font-weight: 700;
}

.nav__link--cta {
  background: var(--deep-navy);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--r);
  font-weight: 600;
  margin-left: 12px;
  box-shadow: 0 4px 12px rgba(23, 43, 58, 0.12);
  border: 1px solid var(--deep-navy);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: #0F1D27;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(23, 43, 58, 0.2);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--deep-navy);
  border-radius: 2px;
  transition: all var(--tx);
}

.nav__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  padding: 20px var(--pad-desk) 32px;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--tx);
  box-shadow: 0 16px 36px rgba(23, 43, 58, 0.1);
}

.nav__mobile.open {
  display: block;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav__mobile-link {
  display: block;
  padding: 14px 0;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep-navy);
  border-bottom: 1px solid var(--border-soft);
  transition: color var(--tx);
}

.nav__mobile-link:hover,
.nav__mobile-link.active {
  color: var(--muted-teal);
}

.nav__mobile-cta {
  display: block;
  margin-top: 24px;
  text-align: center;
  background: var(--deep-navy);
  color: var(--white);
  padding: 15px;
  border-radius: var(--r);
  font-weight: 600;
  font-family: var(--font-head);
}

/* ——————————————————————————————————————
   7. HERO BANNER
—————————————————————————————————————— */
.hero {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 520px;
  background: var(--warm-offwhite);
  overflow: hidden;
  margin-top: var(--nav-h);
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 43, 58, 0.65) 0%, rgba(23, 43, 58, 0.85) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 880px;
  margin: 0 auto;
  padding: 96px var(--pad-desk);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}

.hero__pill-dot {
  width: 7px;
  height: 7px;
  background: var(--muted-teal);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--muted-teal);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .4; transform: scale(.75); }
}

.hero h1 {
  font-size: clamp(2.8rem, 5.2vw, 4.2rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.12;
  max-width: 820px;
  margin: 0 auto 24px;
  text-align: center;
}

.hero__sub {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, .88);
  max-width: 680px;
  line-height: 1.72;
  margin: 0 auto 36px;
  font-weight: 400;
  text-align: center;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.hero__scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .5);
  font-family: var(--font-head);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  z-index: 3;
}

.hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .5), transparent);
  animation: scrollAnim 1.8s ease-in-out infinite;
}

@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: .3; }
}

/* ——————————————————————————————————————
   8. INTRO & WHO WE ARE
—————————————————————————————————————— */
.intro {
  padding: 100px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
}

.intro__wrap {
  max-width: 1040px;
  margin: 0 auto;
  text-align: left;
}

.intro__paragraph {
  text-align: left;
  max-width: 1040px;
  margin: 20px 0 0 0;
  font-size: 1.12rem;
  color: var(--slate);
  line-height: 1.72;
}

.who-stats {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 1040px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border-soft);
}

.who-stat {
  flex: 1;
  text-align: left;
}

.who-stat__val {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--deep-navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.who-stat__lbl {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted-teal);
  margin-top: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.who-stat__divider {
  width: 1px;
  height: 44px;
  background: var(--border-soft);
  margin: 0 48px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .intro__wrap { max-width: 100%; }
  .who-stats { flex-direction: column; align-items: flex-start; gap: 24px; }
  .who-stat__divider { display: none; }
}

/* ——————————————————————————————————————
   9. OUR CLIENTS — MARQUEE
—————————————————————————————————————— */
.clients {
  padding: 80px 0;
  background: var(--white);
  overflow: hidden;
}

.clients .section-hd h2 { color: var(--deep-navy); }
.clients .section-hd p { color: var(--slate); max-width: 720px; margin: 16px 0 0 0; text-align: left; }

.client-marquee {
  width: 100%;
  margin-top: 48px;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.client-marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 32s linear infinite;
}

.client-marquee:hover .client-marquee__track { animation-play-state: paused; }

.client-marquee__group {
  display: flex;
  align-items: center;
  gap: 72px;
  padding-right: 72px;
}

.client-marquee__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.client-logo {
  height: auto;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}

.logo-sonesta { max-height: 42px; }
.logo-progyny { max-height: 38px; }
.logo-sikich  { max-height: 36px; }
.logo-sevita  { max-height: 40px; }
.logo-optum   { max-height: 38px; }

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ——————————————————————————————————————
   10. SERVICES PREVIEW CARDS
—————————————————————————————————————— */
.svc-preview {
  padding: 100px 0;
  background: var(--white);
}

.svc-preview__desc {
  max-width: 1050px;
  margin: 16px 0 0 0;
  color: var(--slate);
  font-size: 1.1rem;
  line-height: 1.68;
  text-align: left;
}

.svc-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.svc-card-sm {
  padding: 36px 28px;
  border: 1px solid var(--border-soft);
  border-radius: var(--r-md);
  background: var(--white);
  box-shadow: var(--sh-sm);
  transition: all var(--tx);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.svc-card-sm::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--muted-teal);
  transform: scaleX(0);
  transition: transform var(--tx);
}

.svc-card-sm:hover {
  border-color: rgba(95, 143, 141, 0.35);
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
}

.svc-card-sm:hover::before { transform: scaleX(1); }

.svc-card-sm__icon {
  width: 52px;
  height: 52px;
  background: rgba(95, 143, 141, 0.12);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--tx);
}

.svc-card-sm:hover .svc-card-sm__icon {
  background: rgba(23, 43, 58, 0.1);
}

.svc-card-sm__icon svg {
  width: 26px;
  height: 26px;
  color: var(--deep-navy);
}

.svc-card-sm h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--deep-navy);
}

.svc-card-sm p {
  font-size: 0.98rem;
  color: var(--slate);
  margin-bottom: 24px;
  line-height: 1.65;
  flex: 1;
}

.svc-card-sm__arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted-teal);
  transition: gap var(--tx);
}

.svc-card-sm:hover .svc-card-sm__arrow { gap: 12px; }

/* ——————————————————————————————————————
   11. OUR PROCESS — ANIMATED WAVE JOURNEY
—————————————————————————————————————— */
.process {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.process-canvas {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 54px auto 0;
  min-height: 520px;
}

.process-svg {
  width: 100%;
  height: 360px;
  display: block;
  position: absolute;
  top: 80px;
  left: 0;
  z-index: 1;
  pointer-events: none;
}

.process-path-main { transition: stroke-dashoffset 0.1s ease-out; }
.process-arrow-head { transition: opacity 0.4s ease; opacity: 0.3; }

.process-journey {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 480px;
}

.process-step {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 250px;
  transform: translate(-50%, -50%);
}

.step-1 { top: 62%; left: 7%; }
.step-2 { top: 70%; left: 39%; }
.step-3 { top: 45%; left: 64%; }
.step-4 { top: 24%; left: 91%; }

.process-node {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.process-node__circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(23, 43, 58, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  box-shadow: 0 4px 16px rgba(23, 43, 58, 0.05);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-node__circle svg {
  width: 22px;
  height: 22px;
  transition: color 0.4s ease;
}

.process-node.active .process-node__circle {
  border-color: var(--deep-navy);
  background: var(--deep-navy);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(23, 43, 58, 0.25);
  transform: scale(1.15);
}

.process-card {
  position: absolute;
  width: 260px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 20px 22px;
  box-shadow: var(--sh);
  border: 1px solid var(--border-soft);
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.process-card.card-top { bottom: 42px; left: 50%; transform: translate(-50%, 15px); }
.process-card.card-bottom { top: 42px; left: 50%; transform: translate(-50%, -15px); }

.process-card.active { opacity: 1; pointer-events: auto; }
.process-card.card-top.active { transform: translate(-50%, 0); }
.process-card.card-bottom.active { transform: translate(-50%, 0); }

.process-num {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted-teal);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.process-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 6px;
}

.process-desc {
  font-size: 0.92rem;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

.process-vline { display: none; }

@media (max-width: 900px) {
  .process-svg { display: none; }
  .process-journey { height: auto; display: flex; flex-direction: column; gap: 40px; padding-left: 60px; }
  .process-step { position: relative; top: auto !important; left: auto !important; transform: none !important; width: 100%; align-items: flex-start; }
  .process-node { position: absolute; top: 0 !important; left: -60px !important; transform: none !important; }
  .process-card { position: relative; top: auto !important; bottom: auto !important; left: auto !important; transform: none !important; width: 100%; opacity: 0.4; }
  .process-card.active { opacity: 1; }
  .process-vline { display: block; position: absolute; top: 24px; bottom: 24px; left: 27px; width: 3px; background: rgba(23, 43, 58, 0.12); border-radius: 2px; }
  .process-vline-active { width: 100%; height: 0%; background: var(--deep-navy); border-radius: 2px; transition: height 0.2s ease-out; }
}

/* ——————————————————————————————————————
   12. PAGE HERO (INNER PAGES — SERVICES, ABOUT, INDUSTRIES)
—————————————————————————————————————— */
.services-hero, .about-hero, .ind-hero {
  margin-top: var(--nav-h);
  width: 100%;
  background: var(--white) !important;
  background-image: none !important;
  background-repeat: no-repeat !important;
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  overflow: hidden;
  padding: 0;
  display: block;
}

.services-hero__img, .about-hero__img, .ind-hero__img {
  width: 100%;
  max-width: 100%;
  height: auto !important;
  max-height: none !important;
  display: block !important;
  object-fit: contain;
  margin: 0 auto;
  padding: 0;
}

/* ——————————————————————————————————————
   13. ABOUT — OUR STORY
—————————————————————————————————————— */
.story {
  padding: 100px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border-soft);
}

.story-wrap {
  max-width: 1040px;
  margin: 0 auto;
  text-align: left;
}

.story-body p {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.72;
  margin-bottom: 24px;
  max-width: 1040px;
  text-align: left;
}

.story-body p:last-child { margin-bottom: 0; }

.story-highlights {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1040px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border-soft);
}

.story-highlight { flex: 1; text-align: center; }

.story-highlight__val {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--deep-navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.story-highlight__lbl {
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--muted-teal);
  margin-top: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-highlight__divider {
  width: 1px;
  height: 44px;
  background: var(--border-soft);
  margin: 0 32px;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .story-highlights { flex-direction: column; gap: 28px; }
  .story-highlight__divider { display: none; }
}

/* ——————————————————————————————————————
   14. ABOUT — BELIEFS / PRINCIPLES
—————————————————————————————————————— */
.beliefs {
  padding: 100px 0;
  background: var(--white);
}

.beliefs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.belief {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 36px 28px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--sh-sm);
  transition: all var(--tx);
}

.belief:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: rgba(95, 143, 141, 0.35);
}

.belief__icon {
  width: 52px;
  height: 52px;
  background: var(--deep-navy);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 14px rgba(23, 43, 58, 0.15);
}

.belief__icon svg {
  width: 26px;
  height: 26px;
  color: var(--white);
}

.belief h3 {
  font-size: 1.18rem;
  margin-bottom: 12px;
  color: var(--deep-navy);
}

.belief p {
  font-size: 0.96rem;
  color: var(--slate);
  line-height: 1.65;
}

/* ——————————————————————————————————————
   15. ABOUT — DIFFERENTIATORS
—————————————————————————————————————— */
.diff {
  padding: 100px 0;
  background: var(--white);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.diff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.diff-card {
  padding: 36px 28px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-soft);
  background: var(--white);
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
  transition: all var(--tx);
}

.diff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--muted-teal);
}

.diff-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-4px);
  border-color: rgba(95, 143, 141, 0.35);
}

.diff-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--deep-navy);
}

.diff-card p {
  font-size: 0.98rem;
  color: var(--slate);
  line-height: 1.68;
}

/* ——————————————————————————————————————
   16. SERVICES PAGE — FULL CARDS (RESTORED ACCORDION GRID)
—————————————————————————————————————— */
.svc-full {
  padding: 100px 0;
  background: var(--white);
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: start;
}

.svc-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.svc-card:hover {
  box-shadow: var(--sh-md);
  border-color: rgba(95, 143, 141, 0.35);
}

.svc-card__hd {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 28px;
  cursor: pointer;
  user-select: none;
  position: relative;
}

.svc-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: rgba(95, 143, 141, 0.12);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--tx);
}

.svc-card.expanded .svc-card__icon,
.svc-card__hd:hover .svc-card__icon {
  background: rgba(23, 43, 58, 0.1);
}

.svc-card__icon svg {
  width: 26px;
  height: 26px;
  color: var(--deep-navy);
}

.svc-card__txt {
  flex: 1;
  min-width: 0;
  padding-right: 12px;
}

.svc-card__txt h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--deep-navy);
  line-height: 1.25;
}

.svc-card__txt p {
  font-size: 0.98rem;
  color: var(--slate);
  line-height: 1.62;
  margin: 0;
}

.svc-card__btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(23, 43, 58, 0.05);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep-navy);
  transition: all var(--tx);
  margin-top: 2px;
}

.svc-card__hd:hover .svc-card__btn {
  background: var(--deep-navy);
  color: var(--white);
  border-color: var(--deep-navy);
}

.svc-card__btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

/* Open indicator state */
.svc-card.expanded .svc-card__btn {
  background: var(--deep-navy);
  color: var(--white);
  border-color: var(--deep-navy);
}

.svc-card.expanded .svc-card__btn svg {
  transform: rotate(45deg);
}

/* DEFAULT CLOSED STATE: HIDE KEY CAPABILITIES BODY */
.svc-card__body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
  padding: 0 28px;
}

/* EXPANDED STATE: SHOW KEY CAPABILITIES */
.svc-card.expanded .svc-card__body {
  max-height: 500px;
  opacity: 1;
  padding: 0 28px 32px 28px;
  border-top: 1px solid var(--border-soft);
}

.svc-card__caps {
  padding-top: 20px;
}

.caps-label {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--muted-teal);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.svc-card__caps ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.svc-card__caps li {
  position: relative;
  padding-left: 18px;
  font-size: 0.94rem;
  color: var(--slate);
  line-height: 1.5;
}

.svc-card__caps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted-teal);
}


/* ——————————————————————————————————————
   17. CONTACT US PAGE & FORM
—————————————————————————————————————— */
.contact-hero {
  padding: calc(var(--nav-h) + 48px) 0 36px 0;
  background: var(--white);
}

.contact-hero__content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-desk);
}

.contact-hero .eyebrow {
  margin-bottom: 14px;
}

.contact-hero h1.typewriter-heading {
  font-family: var(--font-head);
  font-size: clamp(2.6rem, 5vw, 3.85rem);
  font-weight: 700;
  color: var(--deep-navy);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  min-height: 1.15em;
  display: flex;
  align-items: center;
}

.typewriter-cursor {
  display: inline-block;
  font-weight: 300;
  color: var(--muted-teal);
  margin-left: 4px;
  animation: typewriterBlink 0.7s infinite alternate ease-in-out;
}

.typewriter-cursor.hidden {
  display: none !important;
}

@keyframes typewriterBlink {
  0% { opacity: 1; }
  100% { opacity: 0; }
}

.contact-hero-desc {
  font-size: 1.12rem;
  color: var(--slate);
  line-height: 1.68;
  max-width: 760px;
  margin: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-hero-desc.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-wrap {
  padding: 40px 0 100px 0;
  background: var(--white);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: flex-start;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-lg);
  padding: 44px;
  box-shadow: var(--sh-md);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.contact-form-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.form-title {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--deep-navy);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--deep-navy);
  margin-bottom: 8px;
}

.req-asterisk {
  color: #D9381E;
}

.opt-label {
  font-size: 0.85rem;
  color: var(--gray-muted);
  font-weight: 400;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--deep-navy);
  background: var(--white);
  transition: all var(--tx);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--deep-navy);
  box-shadow: 0 0 0 3px rgba(23, 43, 58, 0.12);
}

.err-msg {
  display: none;
  font-size: 0.84rem;
  color: #D9381E;
  margin-top: 6px;
}

.form-group.has-error .err-msg {
  display: block;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #D9381E;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--deep-navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  transition: all var(--tx);
  box-shadow: 0 6px 18px rgba(23, 43, 58, 0.18);
  margin-top: 8px;
}

.btn-submit:hover {
  background: #0F1D27;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(23, 43, 58, 0.28);
}

.contact-info {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  padding-top: 8px;
}

.contact-info.visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-info h2 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.contact-lead {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.68;
  margin-bottom: 28px;
}

.contact-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--deep-navy);
}

.check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(95, 143, 141, 0.15);
  color: var(--muted-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}


/* ——————————————————————————————————————
   18. STUB / RESOURCES COMING SOON PAGE
—————————————————————————————————————— */
.stub {
  padding: calc(var(--nav-h) + 60px) 0 100px 0;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.stub__inner {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.stub__icon {
  width: 90px;
  height: 90px;
  background: rgba(95, 143, 141, 0.12);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 1px solid rgba(95, 143, 141, 0.25);
  box-shadow: var(--sh-sm);
}

.stub__icon svg {
  width: 44px;
  height: 44px;
  color: var(--deep-navy);
}

.stub__badge {
  display: inline-block;
  background: rgba(95, 143, 141, 0.12);
  color: var(--muted-teal);
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid rgba(95, 143, 141, 0.25);
  margin-bottom: 20px;
}

.stub__inner h1 {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--deep-navy);
  text-align: center;
}

.stub__desc,
.stub__inner p {
  font-size: 1.08rem;
  color: var(--slate);
  line-height: 1.8;
  max-width: 840px;
  margin: 0 auto 36px auto;
  text-align: center;
}

.stub__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ——————————————————————————————————————
   19. INDUSTRIES PAGE & ZIG-ZAG LAYOUT
—————————————————————————————————————— */
.ind-hero {
  margin-top: var(--nav-h);
  width: 100%;
  background: var(--warm-offwhite);
  overflow: hidden;
  padding: 0;
  display: block;
}

.ind-hero__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0;
  padding: 0;
}

.ind-intro {
  padding: 100px 0 40px 0;
  text-align: center;
  background: var(--white);
}

.ind-intro__content {
  max-width: 760px;
  margin: 0 auto;
}

.ind-intro__content h2 {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.ind-intro__content p {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.72;
  margin: 0;
}

.ind-showcase {
  padding: 40px 0 100px 0;
  background: var(--white);
}

.ind-grid {
  display: flex;
  flex-direction: column;
  gap: 72px;
}

.ind-item {
  display: flex;
  width: 100%;
}

.ind-item--left { justify-content: flex-start; }
.ind-item--right { justify-content: flex-end; }

.ind-card {
  display: block;
  width: 100%;
  max-width: 820px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(23, 43, 58, 0.08);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--white);
  text-decoration: none;
  cursor: pointer;
}

.ind-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(23, 43, 58, 0.12);
}

.ind-card__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.ind-closing {
  padding: 100px 0 120px 0;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--border-soft);
}

.ind-closing__content {
  max-width: 820px;
  margin: 0 auto;
}

.ind-closing__content h2 {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--deep-navy);
  margin-bottom: 20px;
}

.ind-closing__content p {
  font-size: 1.1rem;
  color: var(--slate);
  line-height: 1.8;
  margin: 0;
}

/* ——————————————————————————————————————
   20. FOOTER — SLEEK EXECUTIVE DEEP NAVY BAR
—————————————————————————————————————— */
.footer {
  background: var(--deep-navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-body);
}

.footer__tcs-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-desk);
}

.footer__tcs-logo a { display: inline-block; }
.footer__tcs-logo img { height: 40px; width: auto; display: block; }

.footer__tcs-middle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer__tcs-copy {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.86rem;
}

.footer__tcs-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.footer__tcs-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.84rem;
  transition: color 0.2s ease;
}

.footer__tcs-links a:hover {
  color: var(--muted-teal);
  text-decoration: underline;
}

.footer__tcs-social {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer__tcs-soc {
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

.footer__tcs-soc:hover {
  background: var(--muted-teal);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__tcs-soc svg {
  width: 18px;
  height: 18px;
}

/* ——————————————————————————————————————
   21. RESPONSIVE BREAKPOINTS
—————————————————————————————————————— */
@media (max-width: 992px) {
  .svc-preview__grid, .diff__grid { grid-template-columns: repeat(2, 1fr); }
  .beliefs__grid { grid-template-columns: repeat(2, 1fr); }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .ind-card { max-width: 100%; }
}

@media (max-width: 768px) {
  .nav {
    height: 72px;
  }

  .hero {
    margin-top: 72px;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: 220px;
    max-height: 480px;
    overflow: hidden;
    position: relative;
  }

  .hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .hero__content {
    padding: 36px 16px 24px 16px;
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(1.8rem, 7.5vw, 2.5rem);
    line-height: 1.18;
    margin-bottom: 14px;
  }

  .hero__sub {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero__ctas {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    gap: 10px;
  }

  .hero__ctas .btn {
    width: 100%;
  }

  .services-hero, .about-hero, .ind-hero {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    background: var(--white) !important;
    background-image: none !important;
    background-repeat: no-repeat !important;
  }

  .services-hero__img, .about-hero__img, .ind-hero__img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    max-height: none !important;
    display: block !important;
    object-fit: contain !important;
  }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .svc-preview__grid, .diff__grid, .beliefs__grid, .svc-grid { grid-template-columns: 1fr; }
  .footer__tcs-bar { flex-direction: column; align-items: flex-start; gap: 20px; }
}