/* ─────────────────────────────────────────────────────────────
   AnaData 2026 — V3: Mid-tier IT services direction
   Light/white theme, navy primary, warm orange accent.
   Peer set: Hexaware, Mphasis, Persistent.
   ─────────────────────────────────────────────────────────── */

/* Brand palette derived from the AnaData logo:
   - Navy wordmark base                  → --navy
   - Red-orange "A" segment (primary)    → --brand
   - Yellow "A" segment (secondary 1)    → --accent-y
   - Green "A" segment (secondary 2)     → --accent-g
   Primary is used dominantly for CTAs / highlights.
   Yellow + green are sprinkled deliberately for variety
   (AI Practice "NEW" badge, status indicators, stepper line)
   without competing with the primary. */
:root {
  --ink:       #0A2540;
  --ink2:      #1A3A5F;
  --mute:      #2F4560;
  --dim:       #6E7E91;
  --line:      #D8E0EB;
  --line2:     #C6D1DF;
  --soft:      #F5F7FA;
  --soft2:     #EBF0F6;
  --paper:     #FFFFFF;

  --brand:     #E8472A;   /* logo red-orange */
  --brand-d:   #C53618;   /* hover / pressed */
  --brand-l:   #FF7755;   /* lighter variant */
  --brand-soft:#FDEDE7;   /* very light tint for pills/badges */

  --accent-y:  #F5C518;   /* logo yellow — sparingly */
  --accent-y-soft: #FEF6D8;
  --accent-g:  #1FAE4B;   /* logo green — status/success */
  --accent-g-soft: #E6F7EC;

  --navy:      #0A2540;
  --navy2:     #0F2D4D;
  --ok:        #1FAE4B;   /* alias of accent-g for clarity */

  --ez-soft: cubic-bezier(.32,.72,.27,1);
  --ez-snap: cubic-bezier(.16,1,.3,1);
}

/* ─── BASE ─── */

html { scroll-behavior: smooth; }
body {
  font-feature-settings: 'cv11' on, 'ss01' on;
  font-variant-numeric: tabular-nums;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
::selection { background: var(--brand); color: white; }

.section-eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--brand-d);
  font-weight: 500;
  text-transform: uppercase;
}

.section-h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--navy);
}

.text-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 14px;
  font-weight: 500;
  color: var(--brand-d);
  transition: color .15s;
}
.text-link:hover { color: var(--brand); }

/* ─── LOGO ─── */
.brand-logo {
  display: block;
  height: 64px;
  width: auto;
  user-select: none;
}

/* ─── HEADER ─── */

#site-header.is-scrolled {
  box-shadow: 0 4px 24px -6px rgba(10,37,64,0.12);
  border-bottom-color: var(--line2);
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--mute);
  padding: 0.55rem 0.85rem;
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.nav-link:hover { color: var(--navy); background: var(--soft); }

.drawer-link {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}

/* ─── BUTTONS ─── */

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  min-height: 40px;
  background: var(--brand);
  color: white;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border-radius: 8px;
  border: 1px solid var(--brand);
  transition: background .15s, border-color .15s, transform .15s, box-shadow .15s;
  box-shadow: 0 1px 0 rgba(255,255,255,0.15) inset, 0 4px 14px -4px rgba(232,71,42,0.38);
}
.btn-primary:hover { background: var(--brand-d); border-color: var(--brand-d); transform: translateY(-1px); }
.btn-primary:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  min-height: 40px;
  background: var(--paper);
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid var(--line2);
  transition: background .15s, border-color .15s, transform .15s;
}
.btn-secondary:hover { background: var(--soft); border-color: var(--navy); transform: translateY(-1px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  min-height: 36px;
  background: transparent;
  color: var(--navy);
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.btn-ghost:hover { background: var(--soft); }

.btn-on-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  min-height: 40px;
  background: transparent;
  color: white;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background .15s, border-color .15s;
}
.btn-on-dark:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }

/* ─── HERO ─── */

.hero { background: var(--paper); position: relative; }
.hero-bg-shape {
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 90%;
  background:
    radial-gradient(circle at 80% 20%, rgba(245,134,52,0.05), transparent 60%),
    radial-gradient(circle at 100% 50%, rgba(10,37,64,0.04), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.hero-highlight {
  display: inline-block;
  position: relative;
  color: var(--brand);
  background:
    linear-gradient(to right, transparent calc(100% - 0px), transparent calc(100% - 0px));
}
.hero-highlight::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0.05em;
  height: 0.18em;
  background: var(--brand);
  opacity: 0.18;
  border-radius: 4px;
  z-index: -1;
}

.hero-logo {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--mute);
  letter-spacing: -0.01em;
  transition: color .15s;
}
.hero-logo:hover { color: var(--navy); }

/* ─── HERO PHOTO STAGE ─── */

.hero-photo-stage {
  position: relative;
  min-height: 460px;
}

.hero-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: var(--navy);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 30px 60px -25px rgba(10,37,64,0.45),
    0 0 0 1px var(--line);
  aspect-ratio: 4/5;
  max-height: 600px;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}
.hero-photo-frame:hover .hero-photo { transform: scale(1.05); }

.hero-photo-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,37,64,0.0), rgba(10,37,64,0.35) 80%, rgba(10,37,64,0.7)),
    linear-gradient(135deg, rgba(245,134,52,0.04), transparent 50%);
}

.hero-photo-glow {
  position: absolute;
  bottom: -10%; right: -10%;
  width: 50%; height: 60%;
  background: radial-gradient(closest-side, rgba(245,134,52,0.25), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 0;
}

.hero-proof {
  position: absolute;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 12px 30px -10px rgba(10,37,64,0.18), 0 2px 6px rgba(10,37,64,0.06);
  backdrop-filter: blur(8px);
  z-index: 2;
}
.hero-proof-a { top: 8%; left: -20px; }
.hero-proof-b { bottom: 30%; right: -30px; }
.hero-proof-c { bottom: 6%; left: -10px; }
@media (max-width: 1023px) {
  .hero-proof-a { top: 4%; left: 4%; }
  .hero-proof-b { bottom: 30%; right: 4%; }
  .hero-proof-c { bottom: 4%; left: 4%; }
}

.hero-proof-icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 8px;
  background: var(--brand-soft);
  color: var(--brand-d);
}

/* ─── MARQUEE ─── */

.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
          mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.marquee-track {
  display: flex; gap: 3.5rem;
  white-space: nowrap;
  will-change: transform;
}
.m-item {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--mute);
  letter-spacing: -0.01em;
  transition: color .15s;
}
.m-item:hover { color: var(--navy); }

/* ─── 4-PILLAR CARDS ─── */

.pillar-card {
  position: relative;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  display: flex; flex-direction: column;
  min-height: 280px;
}
.pillar-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(232,71,42,0.16);
}
.pillar-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.14em;
}
.pillar-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--brand-soft);
  color: var(--brand-d);
}
.pillar-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-top: 18px;
  color: var(--navy);
}
.pillar-body {
  margin-top: 10px;
  font-size: 14px;
  color: var(--mute);
  line-height: 1.55;
}
.pillar-link {
  margin-top: auto;
  padding-top: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-d);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .25s;
}
.pillar-card:hover .pillar-link { gap: 10px; }

/* ─── SERVICE CARDS ─── */

.svc-card {
  display: flex; flex-direction: column;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--navy);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  min-height: 220px;
}
.svc-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(10,37,64,0.12);
}
.svc-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: var(--soft2);
  color: var(--navy);
  transition: background .2s, color .2s;
}
.svc-card:hover .svc-icon { background: var(--brand); color: white; }

.svc-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 16px;
  color: var(--navy);
}
.svc-body {
  margin-top: 8px;
  font-size: 14px;
  color: var(--mute);
  line-height: 1.55;
  flex: 1;
}
.svc-link {
  margin-top: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-d);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .25s;
}
.svc-card:hover .svc-link { gap: 10px; }

/* ─── INDUSTRY CARDS ─── */

.ind-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.ind-card:hover {
  border-color: var(--line2);
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -18px rgba(10,37,64,0.18);
}
.ind-photo {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: var(--soft2);
}
.ind-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.ind-card:hover .ind-photo img { transform: scale(1.05); }
.ind-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,37,64,0.15), rgba(10,37,64,0.55));
}
.ind-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
}
.ind-content { padding: 22px 24px 24px; }
.ind-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--navy);
}
.ind-body {
  margin-top: 10px;
  font-size: 14px;
  color: var(--mute);
  line-height: 1.55;
}
.ind-clients {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 14px;
}
.ind-clients span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
}
.ind-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-d);
  margin-top: 18px;
  transition: gap .25s;
}
.ind-card:hover .ind-link { gap: 10px; }

/* ─── STATS STRIP (DARK NAVY) ─── */

.stat-tile {
  text-align: left;
  border-left: 2px solid rgba(255,255,255,0.1);
  padding-left: 20px;
}
.stat-num {
  font-size: clamp(54px, 6.2vw, 80px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
  color: white;
}
.stat-accent { color: var(--brand) !important; }
.stat-sup {
  font-size: 0.5em;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  margin-left: 4px;
}
.stat-lab {
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.95);
  max-width: 22ch;
}
.stat-meta {
  margin-top: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ─── AI STRIP ─── */

.ai-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding: 36px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 20px 50px -22px rgba(10,37,64,0.12);
}
@media (max-width: 900px) {
  .ai-strip { grid-template-columns: 1fr; padding: 24px; }
}
.ai-left { display: flex; flex-direction: column; }
.ai-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
}

.ai-right { position: relative; min-height: 320px; }
.ai-visual {
  position: relative;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: var(--navy);
}
.ai-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) brightness(0.85);
}
.ai-visual-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(245,134,52,0.15), transparent 50%),
    linear-gradient(180deg, rgba(10,37,64,0.1), rgba(10,37,64,0.5));
}
.ai-visual-pill {
  position: absolute;
  bottom: 18px; left: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.95);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  color: var(--navy);
}

/* ─── CASE STUDIES ─── */

.case-card {
  display: flex; flex-direction: column;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  min-height: 320px;
}
.case-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 22px 44px -18px rgba(10,37,64,0.15);
}
.case-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-d);
  padding: 5px 10px;
  background: var(--brand-soft);
  border: 1px solid rgba(245,134,52,0.2);
  border-radius: 4px;
  align-self: flex-start;
}
.case-title {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
  color: var(--navy);
}
.case-body {
  margin-top: 12px;
  font-size: 14px;
  color: var(--mute);
  line-height: 1.55;
  flex: 1;
}
.case-stack {
  display: flex; flex-wrap: wrap; gap: 4px;
  margin-top: 14px;
}
.case-stack span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mute);
  padding: 4px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--soft);
}
.case-link {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-d);
  transition: gap .25s;
}
.case-card:hover .case-link { gap: 10px; }

/* ─── STEPPER ─── */

.stepper { position: relative; padding-top: 0; }
.stepper-line {
  position: absolute;
  top: 8px; left: 0; right: 0;
  height: 1px; width: 100%;
  overflow: visible;
  pointer-events: none;
}
.stepper-line-path {
  stroke: rgba(10,37,64,0.35);
  stroke-width: 1.5;
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
}
.stepper-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 24px;
  list-style: none;
  position: relative;
}
@media (max-width: 900px) {
  .stepper-grid { grid-template-columns: repeat(2, 1fr); }
  .stepper-line { display: none; }
}
.step {
  position: relative;
  padding-top: 36px;
  padding-right: 16px;
}
.step-dot {
  position: absolute; top: 2px; left: 0;
  width: 13px; height: 13px;
  border-radius: 999px;
  background: var(--paper);
  border: 1px solid var(--line2);
  transform: scale(0.7);
  transition: transform .35s var(--ez-snap), background .25s, box-shadow .25s, border-color .25s;
  overflow: visible; /* allow ::after ring to expand outside bounds */
}
.step.is-active .step-dot {
  transform: scale(1);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 0 0 5px rgba(10,37,64,0.12);
}

/* Hover pulse — slow breathe signals clickability */
.step:hover .step-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0;
  pointer-events: none;
  animation: dot-hover-breathe 1.4s ease-in-out infinite;
}
@keyframes dot-hover-breathe {
  0%, 100% { opacity: 0;    transform: scale(0.9); }
  50%       { opacity: 0.22; transform: scale(1.9); }
}

/* Ripple ring fires once when dot becomes active */
.step-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--navy);
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
}
.step.is-active .step-dot::after {
  animation: dot-ring-out 0.85s ease-out forwards;
}
@keyframes dot-ring-out {
  0%   { opacity: 0.9; transform: scale(0.6); }
  100% { opacity: 0;   transform: scale(3.6); }
}

/* Hover highlight on clickable steps */
.step:hover .step-title { color: var(--brand); transition: color .2s; }
.step:hover .step-dot {
  box-shadow: 0 0 0 7px rgba(10,37,64,0.1);
}

@media (prefers-reduced-motion: reduce) {
  .step:hover .step-dot::before,
  .step.is-active .step-dot::after { animation: none !important; }
}
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--dim);
  letter-spacing: 0.14em;
}
.step-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 6px;
  color: var(--navy);
}
.step-body {
  margin-top: 6px;
  font-size: 13px;
  color: var(--mute);
  line-height: 1.55;
}

/* ─── AWARDS & PARTNERS ─── */

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper);
}
.award-tile {
  padding: 22px 18px;
  border-right: 1px solid var(--line);
  text-align: center;
  transition: background .2s;
}
.award-tile:last-child { border-right: none; }
.award-tile:hover { background: var(--soft); }
@media (max-width: 900px) {
  .award-tile { border-right: none; border-bottom: 1px solid var(--line); }
  .award-tile:last-child { border-bottom: none; }
}
.award-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-d);
}
.award-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-top: 8px;
}
.award-meta {
  font-size: 12px;
  color: var(--mute);
  margin-top: 4px;
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}
.partner-tile {
  text-align: center;
  padding: 18px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--mute);
  letter-spacing: -0.01em;
  transition: color .2s, border-color .2s, background .2s, transform .2s;
}
.partner-tile:hover {
  color: var(--navy);
  border-color: var(--brand);
  background: var(--brand-soft);
  transform: translateY(-2px);
}

/* ─── CERT CHIPS ─── */

.cert-cloud {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.cert-chip {
  display: inline-flex; align-items: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  background: var(--paper);
  transition: color .15s, border-color .15s, background .15s, transform .15s;
}
.cert-chip:hover {
  color: white;
  background: var(--brand);
  border-color: var(--brand);
  transform: translateY(-1px);
}

/* ─── MAP ─── */

.map-stage {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  background: var(--soft);
  overflow: hidden;
}
.world-map { width: 100%; height: auto; display: block; }

.ping-core { fill: var(--brand); }
.ping-pulse {
  fill: var(--brand);
  opacity: 0.5;
  transform-origin: center;
  transform-box: fill-box;
  animation: pulse 2.6s var(--ez-soft) infinite;
}
.ping-a .ping-pulse { animation-delay: 0s; }
.ping-b .ping-pulse { animation-delay: 0.4s; }
.ping-c .ping-pulse { animation-delay: 0.8s; }
.ping-d .ping-pulse { animation-delay: 1.2s; }
.ping-e .ping-pulse { animation-delay: 1.6s; }
@keyframes pulse {
  0%   { transform: scale(1);   opacity: 0.5; }
  70%  { transform: scale(5);   opacity: 0; }
  100% { transform: scale(5);   opacity: 0; }
}
.ping-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  fill: var(--navy);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.office-list-v3 {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 8px 0;
  height: 100%;
}
.office-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  gap: 12px;
}
.office-row:last-child { border-bottom: none; }
.office-hq { background: var(--brand-soft); }
.office-flag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--brand-d);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.office-city {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2px;
}
.office-addr {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--mute);
  text-align: right;
  line-height: 1.5;
}

/* ─── INSIGHTS ─── */

.insight-card {
  display: flex; flex-direction: column;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  min-height: 220px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.insight-card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -16px rgba(10,37,64,0.12);
}
.insight-cat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-d);
}
.insight-title {
  margin-top: 14px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.022em;
  line-height: 1.25;
  color: var(--navy);
  flex: 1;
}
.insight-meta {
  margin-top: 16px;
  font-size: 12px;
  color: var(--mute);
}

/* ─── CTA BANNER ─── */

.cta-watermark {
  position: absolute;
  bottom: -0.12em; right: -0.02em;
  font-size: clamp(6rem, 16vw, 14rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.028);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.cta-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(closest-side at 80% 30%, rgba(232,71,42,0.16), transparent 60%),
    radial-gradient(closest-side at 20% 80%, rgba(232,71,42,0.06), transparent 60%);
  pointer-events: none;
}

/* ─── FOOTER ─── */

.footer-head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 14px;
}
.footer-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-list a, .footer-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color .15s;
}
.footer-list a:hover { color: var(--brand); }
.footer-social {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7);
  transition: color .15s, border-color .15s, background .15s;
}
.footer-social:hover { color: white; background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }

/* ─── REVEAL UTILITIES ─── */

[data-reveal] { opacity: 0; transform: translateY(14px); }
[data-svc]    { opacity: 0; transform: translateY(16px); }
[data-chip]   { opacity: 0; transform: translateY(8px) scale(0.95); }
[data-step]   { opacity: 0; transform: translateY(10px); }
[data-float]  { will-change: transform; }

/* ─── REDUCED MOTION ─── */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], [data-svc], [data-chip], [data-step], [data-float] {
    opacity: 1 !important;
    transform: none !important;
  }
  .marquee-track { transform: none !important; }
  .ping-pulse { animation: none !important; opacity: 0 !important; }
  .stepper-line-path { stroke-dashoffset: 0 !important; }
  .step .step-dot { transform: scale(1) !important; background: var(--navy) !important; border-color: var(--navy) !important; }
}

/* ─── HERO ARCHITECTURE VISUALIZATION ─── */

.hero-arch-frame { background: #071e33 !important; }

.hero-arch-svg { display: block; width: 100%; height: 100%; }

/* Ring lines */
.a-ring {
  stroke: rgba(255,255,255,0.07);
  stroke-width: 0.75;
  stroke-dasharray: 3 7;
  animation: a-flow 9s linear infinite;
}
.a-r2 { animation-delay: -1.5s; }
.a-r3 { animation-delay: -3s; }
.a-r4 { animation-delay: -4.5s; }
.a-r5 { animation-delay: -6s; }
.a-r6 { animation-delay: -7.5s; }

/* Spoke lines */
.a-spoke {
  stroke: rgba(255,255,255,0.11);
  stroke-width: 1;
  stroke-dasharray: 5 5;
  animation: a-flow 5s linear infinite;
}
.a-sp-brand { stroke: rgba(232,71,42,0.55); animation-duration: 4s; }
.a-sp2 { animation-delay: -0.8s; }
.a-sp3 { animation-delay: -1.6s; }
.a-sp4 { animation-delay: -2.4s; }
.a-sp5 { animation-delay: -3.2s; }
.a-sp6 { animation-delay: -4s; }

@keyframes a-flow { to { stroke-dashoffset: -20; } }

/* Data packets */
.a-pkt { opacity: 0.9; }
.a-pkt-brand { fill: #E8472A; filter: drop-shadow(0 0 3px rgba(232,71,42,0.8)); }
.a-pkt-green { fill: #1FAE4B; filter: drop-shadow(0 0 3px rgba(31,174,75,0.8)); }
.a-pkt-dim   { fill: rgba(255,255,255,0.55); }

/* Node backgrounds */
.a-nbg {
  fill: rgba(7,30,51,0.92);
  stroke: rgba(255,255,255,0.13);
  stroke-width: 1;
}
.a-nbg-brand {
  fill: rgba(232,71,42,0.13);
  stroke: rgba(232,71,42,0.6);
  stroke-width: 1.5;
}
.a-nbg-green {
  fill: rgba(31,174,75,0.1);
  stroke: rgba(31,174,75,0.5);
  stroke-width: 1.5;
}
.a-ninner       { fill: rgba(232,71,42,0.09); }
.a-ninner-dim   { fill: rgba(255,255,255,0.025); }
.a-ninner-green { fill: rgba(31,174,75,0.06); }

/* Node labels */
.a-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  fill: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.a-lbl-brand { fill: #E8472A; }
.a-lbl-green { fill: #1FAE4B; }
.a-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
  fill: rgba(255,255,255,0.3);
  text-transform: uppercase;
}

/* Core node */
.a-core-main {
  fill: #E8472A;
  filter: drop-shadow(0 0 16px rgba(232,71,42,0.6));
}
.a-core-i {
  fill: rgba(232,71,42,0.12);
  transform-box: fill-box;
  transform-origin: center;
  animation: a-breathe 2.6s ease-in-out infinite;
}
.a-core-o {
  fill: rgba(232,71,42,0.05);
  transform-box: fill-box;
  transform-origin: center;
  animation: a-breathe 2.6s ease-in-out infinite 0.5s;
}
@keyframes a-breathe {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.1); }
}
.a-core-txt {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 800;
  fill: white;
  letter-spacing: 0.07em;
}
.a-core-sub {
  font-family: 'Inter', sans-serif;
  font-size: 8px;
  font-weight: 600;
  fill: rgba(255,255,255,0.5);
  letter-spacing: 0.25em;
}

/* Status bar */
.a-status {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7.5px;
  letter-spacing: 0.13em;
  fill: rgba(255,255,255,0.28);
  text-transform: uppercase;
}
.a-status-live { fill: #1FAE4B !important; }
.a-status-dot { animation: a-blink 2s ease-in-out infinite; }
@keyframes a-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

@media (prefers-reduced-motion: reduce) {
  .a-ring, .a-spoke, .a-core-i, .a-core-o, .a-status-dot { animation: none !important; }
}

/* ═══════════════════════════════════════════════════════════════
   MODERNIZATION V4 ADDITIONS
   ═══════════════════════════════════════════════════════════════ */

/* ─── SCROLL PROGRESS BAR ─── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  z-index: 200;
  height: 2px;
  width: 0%;
  background: var(--brand);
  transition: width 80ms linear;
  pointer-events: none;
}

/* ─── HERO MESH ─── */
.hero-mesh {
  position: absolute;
  top: -10%; left: -5%;
  width: 65%; height: 120%;
  background:
    radial-gradient(ellipse 60% 50% at 30% 20%, rgba(232,71,42,0.065), transparent 70%),
    radial-gradient(ellipse 40% 60% at 70% 70%, rgba(10,37,64,0.045), transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(245,197,24,0.03), transparent 70%);
  filter: blur(48px);
  pointer-events: none;
  z-index: 0;
  animation: mesh-drift 14s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes mesh-drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(24px, -18px) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none !important; }
}

/* ─── HERO RULE ─── */
.hero-rule-wrap {
  overflow: hidden;
  margin: 22px 0 0;
  height: 1px;
  max-width: 42rem;
}
.hero-rule {
  display: block;
  height: 1px;
  background: var(--line2);
  width: 0%;
}

/* ─── SECTION EYEBROW DECORATION ─── */
.section-eyebrow::before {
  content: '—';
  display: inline-block;
  margin-right: 0.5em;
  opacity: 0.5;
}

/* ─── HERO SCROLL CUE ─── */
.hero-scroll-cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: absolute;
  bottom: 32px;
  left: 0;
  opacity: 0;
  animation: cue-fade-in 1s ease 1.6s forwards;
}
.hero-scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--line2), transparent);
  animation: cue-line 1.8s ease-in-out 1.8s infinite;
}
.hero-scroll-cue-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--dim);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-top: 4px;
}
@keyframes cue-fade-in {
  to { opacity: 1; }
}
@keyframes cue-line {
  0%, 100% { transform: scaleY(1); transform-origin: top; opacity: 0.5; }
  50%       { transform: scaleY(1.2); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-scroll-cue { animation: none; opacity: 0.6; }
  .hero-scroll-cue-line { animation: none; }
}

/* ─── SERVICES FILTER BAR ─── */
.svc-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.svc-filter-btn {
  padding: 7px 18px;
  border-radius: 999px;
  border: 1px solid var(--line2);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--mute);
  background: var(--paper);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
  appearance: none;
}
.svc-filter-btn:hover {
  background: var(--soft2);
  border-color: var(--line2);
  color: var(--navy);
}
.svc-filter-btn.is-active {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  box-shadow: 0 4px 12px -4px rgba(10,37,64,0.35);
}

/* ─── CARD HOVER GRADIENT SWEEP ─── */
.svc-card,
.pillar-card,
.case-card,
.insight-card {
  position: relative;
  overflow: hidden;
}
.svc-card::before,
.pillar-card::before,
.case-card::before,
.insight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(232,71,42,0.045) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.svc-card:hover::before,
.pillar-card:hover::before,
.case-card:hover::before,
.insight-card:hover::before { opacity: 1; }

/* lift all direct children above the ::before overlay */
.svc-card > *,
.pillar-card > *,
.case-card > *,
.insight-card > * {
  position: relative;
  z-index: 1;
}

/* ─── STATS STRIP GRID ─── */
.stats-section { position: relative; overflow: hidden; }
.stats-grid-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0.05;
}

/* ─── STAT NUMBER GLOW ON COMPLETE ─── */
.stat-num.is-done {
  text-shadow: 0 0 48px rgba(232,71,42,0.4);
  transition: text-shadow 0.8s ease;
}

/* ─── STEPPER EXPAND ─── */
.step { cursor: pointer; }
.step-expand {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.48s var(--ez-snap),
    opacity 0.35s ease;
}
.step.is-expanded .step-expand {
  max-height: 200px;
  opacity: 1;
}
.step-expand-body {
  font-size: 13px;
  color: var(--mute);
  line-height: 1.65;
  margin-top: 10px;
}
.step-expand-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--brand-d);
  margin-top: 10px;
  transition: gap 0.2s;
}
.step-expand-link:hover { gap: 8px; }
/* Highlight expanded step dot differently */
.step.is-expanded .step-dot {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  box-shadow: 0 0 0 5px rgba(232,71,42,0.18) !important;
}

/* ─── ENGINEERING PHILOSOPHY ─── */
.philosophy-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.philosophy-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: baseline;
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.philosophy-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.philosophy-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.28);
  text-transform: uppercase;
  padding-top: 6px;
}
.philosophy-text {
  font-size: clamp(1.2rem, 2.4vw, 1.95rem);
  font-weight: 500;
  line-height: 1.28;
  color: rgba(255,255,255,0.88);
  letter-spacing: -0.022em;
}
.philosophy-text em {
  color: var(--brand-l);
  font-style: normal;
}
@media (max-width: 640px) {
  .philosophy-item { grid-template-columns: 36px 1fr; gap: 14px; padding: 24px 0; }
  .philosophy-text { font-size: 1.1rem; }
}

/* ─── SERVICE PILLAR GRID (5 cards, 3+2) ─── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .pillar-grid { grid-template-columns: 1fr; } }

.pillar-sub-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: 14px; position: relative; z-index: 1;
}
.pillar-sub-tag {
  font-size: 10px; padding: 2px 9px;
  border: 1px solid rgba(198,209,223,0.6); border-radius: 999px;
  color: var(--dim); background: transparent;
}

/* ─── PROOF STATS — 4-column variant ─── */
.proof-stats-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 768px) { .proof-stats-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .proof-stats-4 { grid-template-columns: 1fr; } }

/* ─── OUTCOME CARDS ─── */
.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 768px) { .outcome-grid { grid-template-columns: 1fr; } }
.outcome-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 36px 36px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  transition: border-color .2s, transform .25s, box-shadow .25s;
  text-decoration: none;
  display: block;
}
.outcome-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,71,42,0.04) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s; pointer-events: none;
}
.outcome-card:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: 0 20px 44px -18px rgba(10,37,64,0.14); }
.outcome-card:hover::before { opacity: 1; }
.outcome-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--line2);
  line-height: 1;
  margin-bottom: 24px;
  transition: color .25s;
  position: relative; z-index: 1;
}
.outcome-card:hover .outcome-num { color: rgba(232,71,42,0.35); }
.outcome-title {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.022em;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.outcome-body {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.65;
  position: relative; z-index: 1;
}
.outcome-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand);
  transition: gap .2s;
  position: relative; z-index: 1;
}
.outcome-card:hover .outcome-link { gap: 10px; }

/* ─── WHY ANADATE DIFFERENTIATORS ─── */
.why-diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 768px) { .why-diff-grid { grid-template-columns: 1fr; } }
.why-diff-col {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
}
.why-diff-col:last-child { border-right: none; }
@media (max-width: 768px) {
  .why-diff-col { border-right: none; border-bottom: 1px solid var(--line); }
  .why-diff-col:last-child { border-bottom: none; }
}
.why-diff-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  display: grid; place-items: center;
  background: var(--brand-soft);
  margin-bottom: 18px;
}
.why-diff-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.018em;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}
.why-diff-body {
  font-size: 14px;
  color: var(--mute);
  line-height: 1.65;
}

/* ─── PROOF STATS ROW ─── */
.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin: 32px 0;
}
@media (max-width: 640px) { .proof-stats { grid-template-columns: 1fr; } }
.proof-stat {
  padding: 28px 32px;
  border-right: 1px solid var(--line);
  text-align: center;
}
.proof-stat:last-child { border-right: none; }
@media (max-width: 640px) {
  .proof-stat { border-right: none; border-bottom: 1px solid var(--line); }
  .proof-stat:last-child { border-bottom: none; }
}
.proof-stat-num {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
  line-height: 1;
}
.proof-stat-num .accent { color: var(--brand); }
.proof-stat-label {
  font-size: 13px;
  color: var(--mute);
  margin-top: 8px;
}
.proof-stat-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--dim);
  margin-top: 4px;
}

/* ─── CTA WATERMARK ─── */
.cta-watermark {
  position: absolute;
  bottom: -0.08em;
  left: -0.02em;
  font-size: clamp(80px, 14vw, 190px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.035);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ─── FOOTER NOISE TEXTURE ─── */
footer { position: relative; isolation: isolate; }
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}
footer > * { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════════
   EXECUTIVE FEEDBACK ADDITIONS — V5
   ═══════════════════════════════════════════════════════════════ */

/* ─── WHY ANADATA BAR ─── */
.why-bar {
  padding: 40px 0;
  background: var(--paper);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
}
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .why-divider { display: none; }
}
.why-divider {
  width: 1px;
  height: 64px;
  background: var(--line2);
  margin: 0 24px;
  flex-shrink: 0;
}
.why-stat {
  padding: 20px 28px;
  border-left: 2px solid transparent;
  transition: border-color 0.22s ease;
  cursor: default;
}
.why-stat:hover { border-left-color: var(--brand); }
@media (max-width: 768px) {
  .why-stat {
    padding: 20px 0;
    border-left: none;
    border-bottom: 1px solid var(--line);
  }
  .why-stat:last-child { border-bottom: none; }
  .why-stat:hover { border-left: none; }
}
.why-num {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--navy);
  line-height: 1;
}
.why-num--text {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}
.why-sup {
  font-size: 0.52em;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: -0.02em;
  margin-left: 1px;
}
.why-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 10px;
  letter-spacing: -0.01em;
}
.why-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--mute);
  margin-top: 5px;
  letter-spacing: 0.01em;
  line-height: 1.5;
}

/* ─── PROOF TESTIMONIAL WRAP ─── */
.proof-testimonial-wrap {
  background: var(--navy);
  border-radius: 20px;
  padding: 56px 48px;
  margin: 8px 0;
  position: relative;
  overflow: hidden;
}
.proof-testimonial-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(232,71,42,0.07), transparent 60%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .proof-testimonial-wrap { padding: 36px 24px; }
}

/* ─── TESTIMONIAL SECTION ─── */
.testimonial-section {
  background: var(--navy);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.testimonial-section::before {
  content: '';
  position: absolute;
  top: -20%; right: -5%;
  width: 50%; height: 140%;
  background: radial-gradient(ellipse at 70% 40%, rgba(232,71,42,0.09), transparent 65%);
  pointer-events: none;
}
.testimonial-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: rgba(255,255,255,0.08);
}
.testimonial-inner {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .testimonial-inner { grid-template-columns: 1fr; gap: 36px; }
  .testimonial-right {
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 28px;
  }
}
.testimonial-mark {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 110px;
  line-height: 0.65;
  color: var(--brand);
  margin-bottom: 20px;
  user-select: none;
  opacity: 0.9;
}
.testimonial-quote {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 400;
  color: rgba(255,255,255,0.90);
  line-height: 1.55;
  letter-spacing: -0.018em;
  font-style: italic;
  max-width: 640px;
}
.testimonial-attr { margin-top: 28px; }
.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.01em;
}
.testimonial-co {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-top: 3px;
}
.testimonial-anon {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 6px;
}
.testimonial-right {
  border-left: 1px solid rgba(255,255,255,0.1);
  padding-left: 36px;
}
.testimonial-proof {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tp-row { display: flex; flex-direction: column; gap: 3px; }
.tp-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.32);
}
.tp-value {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  letter-spacing: -0.01em;
  line-height: 1.35;
}

/* ─── CASE STUDY METRIC BADGE ─── */
.case-metric-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--brand-d);
  background: var(--brand-soft);
  border: 1px solid rgba(232,71,42,0.2);
  border-radius: 4px;
  padding: 4px 9px;
  white-space: nowrap;
  z-index: 2;
  transition: background 0.2s, color 0.2s;
}
.case-card:hover .case-metric-badge {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
}

/* ─── LEADERSHIP FACES STRIP ─── */
.leadership-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 640px) {
  .leadership-strip { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.leader-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.leader-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(10,37,64,0.22);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.leader-card:hover .leader-avatar {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(10,37,64,0.28);
}
.leader-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.leader-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--mute);
  letter-spacing: 0.04em;
  line-height: 1.4;
  text-transform: uppercase;
}
