/* ==========================================================================
   XPAND — Bharat Infrastructure Modern
   Design system: High-Contrast Modernism / Logistics Precision
   Built on Bootstrap 5 with a custom token layer.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design tokens
   -------------------------------------------------------------------------- */
:root {
  /* Core brand */
  --charcoal:        #1a1d1e;   /* Logistics Charcoal — authoritative base   */
  --orange:          #f18f1c;   /* Vibrant Orange — sole action driver       */
  --primary-deep:    #8d4f00;   /* Deep burnt orange — editorial accent text */

  /* Surfaces */
  --surface:         #f9f9f6;   /* Neutral off-white base                    */
  --surface-alt:     #f4f4f1;   /* Slightly dimmed section band              */
  --white:           #ffffff;   /* Card / container lowest                   */

  /* Neutrals & lines */
  --on-surface:      #1a1c1b;   /* Primary text                              */
  --on-surface-var:  #544335;   /* Muted body text                           */
  --divider-sand:    #e5e0d8;   /* 1px card / hairline borders               */
  --earth-clay:      #8c7355;   /* Warm supporting neutral                   */
  --outline:         #887363;

  /* Status */
  --success-green:   #71b144;

  /* On-dark text */
  --inverse-on:      #f1f1ee;
  --inverse-on-mut:  #b8b8b3;

  /* Spacing scale (8px baseline) */
  --container-max:   1280px;
  --section-gap:     120px;
  --stack-sm:         8px;
  --stack-md:        16px;
  --stack-lg:        40px;

  /* Bootstrap overrides — sharp architecture, no rounded corners */
  --bs-border-radius:      0;
  --bs-border-radius-sm:   0;
  --bs-border-radius-lg:   0;
  --bs-border-radius-xl:   0;
  --bs-border-radius-2xl:  0;
  --bs-border-radius-pill: 0;
  --bs-body-font-family: "Public Sans", system-ui, -apple-system, sans-serif;
  --bs-body-color: var(--on-surface);
  --bs-body-bg: var(--surface);
}

/* Kill rounded corners everywhere — the shape language is strictly sharp. */
*,
*::before,
*::after { border-radius: 0 !important; }

/* Circular status dots / icon wells are the only permitted exception. */
.is-round { border-radius: 50% !important; }

/* --------------------------------------------------------------------------
   2. Base typography
   -------------------------------------------------------------------------- */
html { scroll-behavior: smooth; }

body {
  font-family: var(--bs-body-font-family);
  color: var(--on-surface);
  background-color: var(--surface);
  background-image: radial-gradient(var(--divider-sand) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-locked { overflow: hidden; }

.container-x {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 24px;
  width: 100%;
}

/* Editorial type scale (from DESIGN.md) */
.display-hero {
  font-size: clamp(2.75rem, 6.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
}
.headline-lg {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.headline-md {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.headline-sm {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.33;
}
.body-lg  { font-size: 1.125rem; line-height: 1.6; font-weight: 400; }
.body-md  { font-size: 1rem;     line-height: 1.5; font-weight: 400; }
.text-muted-x { color: var(--on-surface-var); }

/* Uppercase overline / label — a navigational anchor */
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-deep);
}
.eyebrow--tag {
  background: var(--charcoal);
  color: #fff;
  padding: 8px 12px;
}
.eyebrow--chip {
  background: var(--surface-alt);
  color: var(--charcoal);
  padding: 8px 14px;
  border: 1px solid var(--divider-sand);
}

/* Big data figures */
.data-numeral {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.text-orange   { color: var(--orange) !important; }
.text-deep     { color: var(--primary-deep) !important; }
.text-charcoal { color: var(--charcoal) !important; }

/* --------------------------------------------------------------------------
   3. Layout helpers
   -------------------------------------------------------------------------- */
.section        { padding-block: clamp(48px, 6vw, 88px); }
.section--tight { padding-block: clamp(36px, 4.5vw, 60px); }
.bg-surface-alt {
  background-color: #f9f9f5;
  background-image: radial-gradient(var(--divider-sand) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
}
.bg-charcoal    { background: var(--charcoal); color: var(--inverse-on); }
.bg-white-x     { background: var(--white); }

/* Textile-inspired dot-grid texture for hero / header backgrounds */
.tex-dots {
  background-image: radial-gradient(var(--divider-sand) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
}
.tex-dots-charcoal {
  background-image: radial-gradient(rgba(255,255,255,0.06) 1.4px, transparent 1.4px);
  background-size: 22px 22px;
}

/* Section heading with a hairline rule + right-aligned label */
.section-head {
  border-bottom: 1px solid var(--divider-sand);
  padding-bottom: 18px;
  margin-bottom: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* --------------------------------------------------------------------------
   4. Navbar
   -------------------------------------------------------------------------- */
.site-nav {
  background: var(--surface);
  border-bottom: 1px solid var(--divider-sand);
  position: sticky;
  top: 0;
  z-index: 1030;
}
.site-nav .container-x {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
}
.brand-logo {
  height: 34px;
  width: auto;
  display: block;
}
.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 7px);
  grid-template-rows: repeat(2, 7px);
  gap: 3px;
}
.brand-mark span { display: block; width: 7px; height: 7px; background: var(--orange); }
.brand-word {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  color: var(--charcoal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 9px 12px;
  position: relative;
  transition: color .15s ease, background-color .15s ease;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--orange); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Floating Google Play download badge */
.app-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1040;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: linear-gradient(135deg, var(--orange) 0%, #d9660a 100%);
  color: #fff;
  text-decoration: none;
  padding: 10px 20px 10px 10px;
  border: none;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(217,102,10,0.42);
  transition: transform .18s ease, box-shadow .22s ease;
  animation: appFabPulse 2.4s ease-in-out 1s 3;
}
.app-fab:hover {
  color: #fff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 36px rgba(217,102,10,0.5);
}
.app-fab-icon {
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 10px;
  background: #fff;
  padding: 5px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.app-fab-text { display: flex; flex-direction: column; line-height: 1.15; }
.app-fab-text em { font-style: normal; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.03em; opacity: 0.92; text-transform: uppercase; }
.app-fab-text strong { font-size: 0.92rem; font-weight: 800; letter-spacing: 0.01em; }

@keyframes appFabPulse {
  0%, 100% { box-shadow: 0 12px 30px rgba(217,102,10,0.42), 0 0 0 0 rgba(217,102,10,0.5); }
  50% { box-shadow: 0 12px 30px rgba(217,102,10,0.42), 0 0 0 12px rgba(217,102,10,0); }
}

@media (max-width: 575.98px) {
  .app-fab { right: 14px; bottom: 14px; padding: 8px 16px 8px 8px; }
  .app-fab-icon { width: 32px; height: 32px; }
}

.gptw-badge {
  height: 90px;
  width: auto;
  display: block;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--divider-sand);
  color: var(--charcoal);
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   5. Buttons
   -------------------------------------------------------------------------- */
.btn-x {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 15px 26px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  flex: none;
  transition: background .15s ease, color .15s ease, border-color .15s ease, transform .05s ease;
  line-height: 1;
}
.btn-x:active { transform: translateY(1px); }

.btn-charcoal { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.btn-charcoal:hover { background: #000; color: #fff; }

.btn-orange { background: var(--orange); color: var(--charcoal); border-color: var(--orange); }
.btn-orange:hover { background: #d97b0a; border-color: #d97b0a; color: #fff; }

.btn-ghost { background: transparent; color: var(--charcoal); border-color: var(--charcoal); }
.btn-ghost:hover { background: var(--charcoal); color: #fff; }

.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-ghost-light:hover { background: #fff; color: var(--charcoal); border-color: #fff; }

/* Text link with arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-deep);
  text-decoration: none;
}
.link-arrow .ic { transition: transform .15s ease; }
.link-arrow:hover { color: var(--orange); }
.link-arrow:hover .ic { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   6. Cards
   -------------------------------------------------------------------------- */
.x-card {
  background: var(--white);
  border: 1px solid var(--divider-sand);
  padding: 32px;
  height: 100%;
  transition: border-color .15s ease, transform .15s ease;
}
.x-card:hover { border-color: var(--charcoal); transform: translateY(-3px); }

.x-card--dark {
  background: var(--charcoal);
  color: var(--inverse-on);
  border-color: var(--charcoal);
}
.x-card--dark .x-card-text,
.x-card--dark p { color: var(--inverse-on-mut); }
.x-card--dark .x-card-title { color: var(--inverse-on) !important; }

.x-card--flush { padding: 40px; }

.icon-well {
  width: 48px; height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-alt);
  color: var(--charcoal);
  margin-bottom: 20px;
}
.icon-well--dark  { background: var(--charcoal); color: #fff; }
.icon-well--orange { background: var(--orange); color: var(--charcoal); }

.x-card-title { font-size: 1.25rem; font-weight: 700; margin: 0 0 10px; }
.x-card-text  { font-size: 0.95rem; line-height: 1.55; color: var(--on-surface-var); margin: 0; }

/* --------------------------------------------------------------------------
   7. Stats bar
   -------------------------------------------------------------------------- */
.stats-bar {
  background: var(--charcoal);
  color: #fff;
}
.stats-bar .stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-cell {
  padding: 40px 28px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.stat-cell:first-child { border-left: none; }
.stat-cell .stat-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-cell .stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--inverse-on-mut);
}
.stat-cell.is-accent .stat-num { color: var(--orange); }

/* --------------------------------------------------------------------------
   8. Media frames (on-brand placeholders for photography)
   -------------------------------------------------------------------------- */
.media-frame {
  border: 1px solid var(--divider-sand);
  background: var(--white);
  padding: 10px;
  overflow: hidden;
}
.media-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  aspect-ratio: 3 / 2;
  transition: transform .6s cubic-bezier(.2,.6,.2,1);
}
.media-frame:hover .media-photo { transform: scale(1.04); }

.media-frame--video { position: relative; }
.media-mute-btn {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,29,30,0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.media-mute-btn:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
.media-mute-btn .ic { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.media-mute-btn .media-mute-icon-on { display: none; }
.media-mute-btn.is-muted .media-mute-icon-off { display: inline-block; }
.media-mute-btn.is-muted .media-mute-icon-on { display: none; }
.media-mute-btn:not(.is-muted) .media-mute-icon-off { display: none; }
.media-mute-btn:not(.is-muted) .media-mute-icon-on { display: inline-block; }
.media-inner {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--charcoal);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-inner.tall { aspect-ratio: 3 / 4; }
.media-inner.wide { aspect-ratio: 16 / 10; }
.media-inner .ic {
  position: relative;
  z-index: 1;
}
.media-caption {
  position: absolute;
  left: 16px; bottom: 14px;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
}
.media-inner--orange { background: var(--orange); }

.media-inner--orange .media-caption { color: var(--charcoal); }

/* Duotone / clay variant */
.media-inner--clay {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--earth-clay) 130%);
}

/* Strip of accent panels (FMCG hero) */
.panel-strip { display: grid; grid-template-columns: repeat(5, 1fr); height: 100%; }
.panel-strip > div { display: flex; align-items: center; justify-content: center; }
.panel-strip > div:nth-child(odd)  { background: var(--charcoal); }
.panel-strip > div:nth-child(even) { background: var(--orange); }

/* --------------------------------------------------------------------------
   9. Numbered process list
   -------------------------------------------------------------------------- */
.process-item {
  display: flex;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--divider-sand);
  padding: 22px 24px;
  margin-bottom: 12px;
}
.process-item.is-active { border-left: 4px solid var(--orange); }
.process-num {
  flex: 0 0 auto;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--on-surface-var);
  background: var(--surface-alt);
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
}
.process-item.is-active .process-num { background: var(--orange); color: var(--charcoal); }
.process-title { font-weight: 700; font-size: 1rem; margin: 2px 0 6px; }
.process-text  { font-size: 0.9rem; color: var(--on-surface-var); margin: 0; line-height: 1.5; }

/* --------------------------------------------------------------------------
   10. Category list (FMCG)
   -------------------------------------------------------------------------- */
.cat-list { border-top: 1px solid var(--divider-sand); }
.cat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 8px;
  border-bottom: 1px solid var(--divider-sand);
  text-decoration: none;
  color: var(--on-surface);
  background: var(--surface);
  transition: background .15s ease, padding-left .15s ease;
}
.cat-row:nth-child(even) { background: var(--white); }
.cat-row:hover { background: var(--charcoal); color: #fff; padding-left: 20px; }
.cat-row:hover .ic { color: var(--orange); }
.cat-name { font-size: 1.15rem; font-weight: 700; }
.cat-row .ic { color: var(--outline); transition: transform .15s ease; }
.cat-row:hover .ic { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   11. Spec / definition list (Institutional)
   -------------------------------------------------------------------------- */
.spec-list { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 8px; }
.spec-row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.spec-key {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--inverse-on-mut);
}
.spec-val { font-weight: 700; text-align: right; }
.spec-val a { color: inherit; text-decoration: none; transition: color .15s ease; }
.spec-val a:hover { color: var(--orange); text-decoration: underline; }

/* --------------------------------------------------------------------------
   12. Feature split (image + intro)
   -------------------------------------------------------------------------- */
.impact-card {
  background: var(--white);
  border: 1px solid var(--divider-sand);
  padding: clamp(28px, 4vw, 56px);
}

/* --------------------------------------------------------------------------
   13. Contact form
   -------------------------------------------------------------------------- */
.field-label {
  display: block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--charcoal);
  margin-bottom: 8px;
}
.field-input,
.field-textarea,
.field-select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--divider-sand);
  border-bottom: 1px solid var(--charcoal);
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--on-surface);
  transition: border-color .15s ease;
}
.field-input:focus,
.field-textarea:focus,
.field-select:focus {
  outline: none;
  border: 2px solid var(--orange);
}
.field-textarea { resize: vertical; min-height: 140px; }
.form-note { font-size: 0.85rem; color: var(--on-surface-var); }
.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border: 1px solid var(--success-green);
  color: #3f6b1f;
  background: rgba(113,177,68,0.1);
  font-size: 0.9rem;
  display: none;
}
.form-status.show { display: block; }

/* --------------------------------------------------------------------------
   14. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--charcoal);
  color: var(--inverse-on);
  padding-block: 72px 40px;
}
.footer-brand-word { font-weight: 800; font-size: 1.4rem; color: var(--orange); letter-spacing: -0.01em; }
.footer-logo { height: 38px; width: auto; display: block; }
.footer-tag { color: var(--inverse-on-mut); font-size: 0.95rem; max-width: 260px; margin-top: 14px; }
.footer-brand-row { display: flex; align-items: flex-start; gap: 20px; }
.gptw-badge--footer { height: 76px; flex: none; }
@media (max-width: 767.98px) {
  .footer-brand-row { flex-wrap: wrap; }
}
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--inverse-on-mut);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--inverse-on);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color .15s ease;
}
.footer-col a:hover { color: var(--orange); }

/* Legal pages (Privacy Policy / Terms of Service) — readable long-form prose */
.legal-prose { max-width: 46rem; }
.legal-prose h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--on-surface);
  margin: 40px 0 12px;
}
.legal-prose p {
  color: var(--on-surface-var);
  line-height: 1.7;
  margin-bottom: 16px;
}
.legal-prose ul {
  color: var(--on-surface-var);
  line-height: 1.7;
  padding-left: 22px;
  margin-bottom: 16px;
}
.legal-prose li { margin-bottom: 8px; }
.legal-prose a { color: var(--primary-deep); text-decoration: underline; }
.legal-prose a:hover { color: var(--orange); }
.footer-base {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 56px;
  padding-top: 28px;
  font-size: 0.85rem;
  color: var(--inverse-on-mut);
}

/* --------------------------------------------------------------------------
   14b. About & Career components
   -------------------------------------------------------------------------- */
/* Feature row: icon-well + heading + copy (Mission / Unlock / Impact) */
.feature-row { display: flex; gap: 24px; align-items: flex-start; }
.feature-row .icon-well { margin-bottom: 0; }

/* Leadership team */
.team-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--divider-sand);
  padding: 0;
  height: 100%;
  overflow: hidden;
  transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.team-card::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px; background: var(--orange);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.team-card:hover {
  border-color: var(--charcoal);
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(26,29,30,0.16);
}
.team-card:hover::after { transform: scaleX(1); }
.team-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(rgba(255,255,255,0.05) 1.4px, transparent 1.4px) 0 0 / 18px 18px,
    linear-gradient(135deg, var(--charcoal) 0%, var(--earth-clay) 140%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 2.6rem;
  letter-spacing: 0.02em;
  overflow: hidden;
}
.team-photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26,29,30,0.55) 100%);
}
.team-photo span { position: relative; z-index: 1; transition: transform .35s ease; }
.team-card:hover .team-photo span { transform: scale(1.12); }
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.02);
  transition: filter .5s ease, transform .5s cubic-bezier(.2,.6,.2,1);
}
.team-card:hover .team-photo img { filter: grayscale(0) contrast(1.02); transform: scale(1.06); }
.team-body { padding: 18px 22px 22px; }
.team-name { font-size: 1.05rem; font-weight: 700; margin: 0 0 4px; letter-spacing: -0.01em; }
.team-role { font-size: 0.8rem; color: var(--on-surface-var); line-height: 1.4; margin: 0 0 14px; }
.team-linkedin {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary-deep); text-decoration: none;
}
.team-linkedin:hover { color: var(--orange); }
.team-linkedin .ic { width: 16px; height: 16px; }

/* Career guidebook items */
.guide-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--divider-sand);
  padding: 22px 24px;
  height: 100%;
}
.guide-num {
  flex: 0 0 auto;
  width: 34px; height: 34px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--charcoal); color: #fff;
  font-weight: 800; font-size: 0.85rem;
}
.guide-item.is-accent .guide-num { background: var(--orange); color: var(--charcoal); }
.guide-title { font-weight: 700; font-size: 1rem; margin: 3px 0 6px; }
.guide-text { font-size: 0.9rem; color: var(--on-surface-var); line-height: 1.5; margin: 0; }

/* Department / open roles */
.dept-card {
  background: var(--white);
  border: 1px solid var(--divider-sand);
  padding: 26px 28px;
  height: 100%;
}
.dept-head {
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--divider-sand);
  padding-bottom: 14px; margin-bottom: 14px;
}
.dept-name { font-size: 1.1rem; font-weight: 700; margin: 0; }
.dept-count {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--charcoal); background: var(--surface-alt); padding: 4px 10px;
}
.role-list { list-style: none; margin: 0; padding: 0; }
.role-list li {
  font-size: 0.92rem; color: var(--on-surface-var);
  padding: 7px 0; border-bottom: 1px dashed var(--divider-sand);
}
.role-list li:last-child { border-bottom: none; }

/* Contained dark CTA band — sits on the light surface so it never merges
   with the charcoal footer */
.dark-band {
  background:
    radial-gradient(rgba(255,255,255,0.05) 1.4px, transparent 1.4px) 0 0 / 22px 22px,
    var(--charcoal);
  color: var(--inverse-on);
  border: 1px solid var(--charcoal);
  border-top: 3px solid var(--orange);
  padding: clamp(30px, 5vw, 52px);
}
.dark-band .headline-md, .dark-band .headline-sm, .dark-band h2 { color: #fff; }
.dark-band .stat-cell:first-child { border-left: none; }

/* Animated category tiles (FMCG) */
.cat-card {
  position: relative;
  display: block;
  cursor: default;
  border: 1px solid var(--divider-sand);
  background: var(--white);
  overflow: hidden;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(26,29,30,0.16); border-color: var(--charcoal); }
.cat-tile {
  position: relative;
  aspect-ratio: 16 / 10;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.cat-tile::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(rgba(255,255,255,0.10) 1.4px, transparent 1.4px) 0 0 / 18px 18px;
}
.cat-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(0,0,0,0.30));
}
.cat-tile .ic {
  width: 56px; height: 56px; position: relative; z-index: 1;
  color: #fff; stroke-width: 1.6;
  transition: transform .4s cubic-bezier(.2,.6,.2,1);
}
.cat-card:hover .cat-tile .ic { transform: scale(1.18) rotate(-4deg); }
.cat-tile.t1 { background: linear-gradient(135deg,#1a1d1e,#3a3f41); }
.cat-tile.t2 { background: linear-gradient(135deg,#f18f1c,#8d4f00); }
.cat-tile.t3 { background: linear-gradient(135deg,#8c7355,#5c4b38); }
.cat-tile.t4 { background: linear-gradient(135deg,#71b144,#3f6b1f); }
.cat-tile.t5 { background: linear-gradient(135deg,#2b2f31,#0f1112); }
.cat-tile.t6 { background: linear-gradient(135deg,#f2a20d,#c9720a); }
.cat-tile.t7 { background: linear-gradient(135deg,#8d4f00,#c9720a); }
.cat-tile img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform .5s cubic-bezier(.2,.6,.2,1);
}
.cat-card:hover .cat-tile img { transform: scale(1.08); }
.cat-foot {
  display: flex; align-items: center;
  padding: 16px 20px;
}
.cat-foot .cat-name { font-size: 1.02rem; font-weight: 700; color: var(--on-surface); }

/* Map */
.map-frame {
  border: 1px solid var(--divider-sand);
  border-top: 3px solid var(--orange);
  background: var(--white);
  padding: 10px;
}
.map-frame iframe { display: block; width: 100%; height: 420px; border: 0; }

/* --------------------------------------------------------------------------
   15. Inline SVG icon system
   -------------------------------------------------------------------------- */
.ic {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ic-sm { width: 18px; height: 18px; }
.ic-lg { width: 30px; height: 30px; }
/* Hide the shared sprite definitions */
.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* Icon sizes inside specific components */
.icon-well .ic { width: 24px; height: 24px; }
.btn-x .ic, .link-arrow .ic { width: 18px; height: 18px; }
.media-inner .ic { width: 64px; height: 64px; stroke-width: 1.4; }
.media-inner .ic { color: rgba(255,255,255,0.22); }
.media-inner--orange .ic { color: rgba(0,0,0,0.28); }
.panel-strip .ic { width: 28px; height: 28px; color: rgba(255,255,255,0.6); }
.panel-strip > div:nth-child(even) .ic { color: rgba(0,0,0,0.45); }
.cat-row .ic { color: var(--outline); }

/* --------------------------------------------------------------------------
   15b. Lightweight motion (progressive enhancement)
   Only active when JS adds .js-anim (and never under reduced-motion).
   -------------------------------------------------------------------------- */
.js-anim .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1);
  will-change: opacity, transform;
}
.js-anim .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Nav gains an industrial drop-shadow once the page is scrolled */
.site-nav { transition: box-shadow .2s ease, border-color .2s ease; }
.site-nav.scrolled { box-shadow: 0 4px 16px rgba(26,29,30,0.10); border-bottom-color: transparent; }

/* Buttons get a subtle lift */
.btn-x { transition: background .15s ease, color .15s ease, border-color .15s ease, transform .12s ease, box-shadow .15s ease; }
.btn-x:hover { transform: translateY(-2px); }
.btn-orange:hover  { box-shadow: 0 6px 18px rgba(241,143,28,0.28); }
.btn-charcoal:hover { box-shadow: 0 6px 18px rgba(26,29,30,0.22); }

/* Bold accent bar for the active desktop tab — filled block, industrial edges */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav-links a:hover::after { transform: scaleX(1); background: var(--orange); }
.nav-links a.active::after { transform: scaleX(1); background: var(--orange); }
.nav-drawer .nav-links a::after { display: none; }

/* --------------------------------------------------------------------------
   16. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 991.98px) {
  :root { --section-gap: 80px; }

  .stats-bar .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(3) { border-left: none; }
  .stat-cell { border-top: 1px solid rgba(255,255,255,0.12); }
  .stat-cell:nth-child(-n+2) { border-top: none; }
}

/* Navigation collapses to a right-side drawer below xl so all items fit on desktop */
@media (max-width: 1199.98px) {
  .nav-toggle { display: inline-flex; }
  .nav-desktop { display: none; }

  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(20, 18, 16, 0.45);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility 0s linear .3s;
    z-index: 1028;
  }
  .nav-backdrop.open {
    opacity: 1;
    visibility: visible;
    transition: opacity .3s ease, visibility 0s linear 0s;
  }

  .nav-drawer {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 84vw);
    background: var(--surface);
    border-left: 1px solid var(--divider-sand);
    padding: 88px 28px 32px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .32s cubic-bezier(.22,.9,.32,1);
    z-index: 1029;
    box-shadow: -16px 0 40px rgba(20,18,16,0.16);
    overflow-y: auto;
  }
  .nav-drawer.open { transform: translateX(0); }

  .nav-drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid var(--divider-sand);
    color: var(--charcoal);
    cursor: pointer;
    transition: border-color .15s ease, color .15s ease, transform .15s ease;
  }
  .nav-drawer-close:hover { color: var(--orange); border-color: var(--orange); transform: rotate(90deg); }

  .nav-drawer .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-drawer .nav-links li {
    opacity: 0;
    transform: translateX(16px);
    transition: opacity .3s ease, transform .3s ease;
  }
  .nav-drawer.open .nav-links li { opacity: 1; transform: translateX(0); }
  .nav-drawer.open .nav-links li:nth-child(1) { transition-delay: .06s; }
  .nav-drawer.open .nav-links li:nth-child(2) { transition-delay: .1s; }
  .nav-drawer.open .nav-links li:nth-child(3) { transition-delay: .14s; }
  .nav-drawer.open .nav-links li:nth-child(4) { transition-delay: .18s; }
  .nav-drawer.open .nav-links li:nth-child(5) { transition-delay: .22s; }
  .nav-drawer.open .nav-links li:nth-child(6) { transition-delay: .26s; }
  .nav-drawer.open .nav-links li:nth-child(7) { transition-delay: .3s; }
  .nav-drawer.open .nav-links li:nth-child(8) { transition-delay: .34s; }
  .nav-drawer .nav-links a { display: block; padding: 14px 10px; margin: 0 -10px; border-bottom: 1px solid var(--divider-sand); font-size: 1rem; }
  .nav-drawer .btn-x { margin-top: 24px; justify-content: center; width: 100%; }
}

@media (min-width: 1200px) {
  .nav-drawer { display: contents; }
  .nav-backdrop { display: none; }
  .nav-drawer-close { display: none; }
  .nav-toggle { display: none; }
}

@media (max-width: 575.98px) {
  .container-x { padding-inline: 16px; }
  .stats-bar .stats-grid { grid-template-columns: 1fr; }
  .stat-cell { border-left: none; }
  .panel-strip { grid-template-columns: repeat(3, 1fr); }
  .x-card { padding: 24px; }
  .gptw-badge { height: 32px; }
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; }
}

/* Keyboard focus visibility */
a:focus-visible,
button:focus-visible,
.field-input:focus-visible,
.field-textarea:focus-visible,
.field-select:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
