/* ============================================================
   MIEL CONTRACTORS LIMITED — MAIN STYLESHEET
   Design: Bureau Veritas / SGS / Deloitte level
   ============================================================ */

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

/* ============================================================
   CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  --ink:      #05101F;
  --ink2:     #0B1E38;
  --ink3:     #132D52;
  --gold:     #C8960C;
  --gold2:    #E2AA1A;
  --gold3:    #F5C842;
  --white:    #FFFFFF;
  --off:      #F3F2EF;
  --slate:    #E8E6E1;
  --mid:      #56637A;
  --muted:    #8A95A8;
  --line:     #D6D8E0;
  --success:  #276749;
  --danger:   #C53030;
  --warning:  #C05621;

  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: all 0.18s ease;
  --shadow-sm: 0 1px 3px rgba(5,16,31,0.08);
  --shadow-md: 0 4px 16px rgba(5,16,31,0.12);
}

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

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

body {
  font-family: var(--font-main);
  color: var(--ink);
  background: var(--off);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-main); border: none; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.section-eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold2);
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--gold2);
  flex-shrink: 0;
}

.section-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 12px;
}
.section-title.light { color: var(--white); }

.section-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.88;
  max-width: 580px;
  margin-bottom: 40px;
  font-weight: 300;
}
.section-desc.light { color: rgba(255,255,255,.42); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

section { padding: 72px 40px; }
.section-white { background: var(--white); }
.section-off   { background: var(--off); }
.section-dark  { background: var(--ink); padding: 72px 40px; }
.section-ink2  { background: var(--ink2); padding: 72px 40px; }

/* Buttons */
.btn-gold {
  background: var(--gold2);
  color: var(--ink);
  font-size: 11.5px;
  font-weight: 700;
  padding: 10px 22px;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .18s;
  border: none;
  cursor: pointer;
}
.btn-gold:hover { background: var(--gold3); color: var(--ink); }

.btn-gold-lg {
  background: var(--gold2);
  color: var(--ink);
  font-size: 12.5px;
  font-weight: 700;
  padding: 15px 30px;
  letter-spacing: .07em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background .18s;
  border: none;
  cursor: pointer;
}
.btn-gold-lg:hover { background: var(--gold3); color: var(--ink); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  font-size: 11.5px;
  font-weight: 700;
  padding: 9px 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-ghost:hover { background: var(--ink); color: var(--white); }

.btn-ghost-lg {
  background: transparent;
  color: rgba(255,255,255,.65);
  border: 1px solid rgba(255,255,255,.2);
  font-size: 12px;
  font-weight: 500;
  padding: 14px 24px;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-ghost-lg:hover { background: rgba(255,255,255,.06); color: var(--white); border-color: rgba(255,255,255,.4); }

/* ============================================================
   UTILITY BAR
   ============================================================ */
.util-bar {
  background: var(--ink2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 40px;
  border-bottom: 0.5px solid rgba(255,255,255,.05);
}
.ub-left { display: flex; align-items: center; gap: 24px; }
.ub-item {
  font-size: 11px;
  color: rgba(255,255,255,.32);
  display: flex;
  align-items: center;
  gap: 5px;
}
.ub-item i { color: var(--gold2); font-size: 12px; }
.ub-right { display: flex; align-items: center; gap: 20px; }
.ub-link {
  font-size: 11px;
  color: rgba(255,255,255,.32);
  cursor: pointer;
  transition: color .15s;
  letter-spacing: .02em;
}
.ub-link:hover { color: var(--gold2); }

/* ============================================================
   MAIN NAVIGATION
   ============================================================ */
.mainnav {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow .2s;
}
.mainnav.scrolled { box-shadow: 0 2px 20px rgba(5,16,31,.1); }

.nav-inner {
  display: flex;
  align-items: center;
  padding: 0 40px;
  height: 72px;
  gap: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  margin-right: 48px;
  flex-shrink: 0;
}
.logo-block {
  background: var(--ink);
  height: 72px;
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  flex-shrink: 0;
}
.logo-img { width: 52px; height: auto; object-fit: contain; }
.logo-text {}
.logo-name {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.3px;
  line-height: 1.2;
}
.logo-sub {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0;
}

.nav-link {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--mid);
  padding: 0 15px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 4px;
  border-bottom: 3px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--ink);
  border-bottom-color: var(--gold2);
}
.nav-link i { font-size: 11px; opacity: .5; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { cursor: pointer; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border: 0.5px solid var(--line);
  border-top: 3px solid var(--gold2);
  box-shadow: 0 8px 32px rgba(5,16,31,.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s ease;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: block;
  padding: 10px 18px;
  font-size: 12.5px;
  color: var(--mid);
  border-bottom: 0.5px solid var(--line);
  transition: var(--transition);
}
.dropdown-item:last-child { border-bottom: none; }
.dropdown-item:hover {
  background: var(--off);
  color: var(--ink);
  padding-left: 24px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.nav-phone {
  font-size: 12px;
  color: var(--mid);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-right: 8px;
  white-space: nowrap;
}
.nav-phone i { color: var(--gold2); }

/* Mobile nav */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  transition: var(--transition);
}

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,16,31,.6);
  z-index: 1100;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--ink);
  z-index: 1200;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
}
.mobile-nav.open {
  display: flex;
  transform: translateX(0);
}
.mobile-overlay.open { display: block; }
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 0.5px solid rgba(255,255,255,.08);
}
.mobile-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 22px;
}
.mobile-links { padding: 16px 0; flex: 1; overflow-y: auto; }
.mobile-links a {
  display: block;
  padding: 12px 24px;
  font-size: 14px;
  color: rgba(255,255,255,.65);
  border-bottom: 0.5px solid rgba(255,255,255,.05);
  transition: var(--transition);
}
.mobile-links a:hover { color: var(--gold2); padding-left: 30px; background: rgba(255,255,255,.03); }
.mobile-cta { padding: 20px; border-top: 0.5px solid rgba(255,255,255,.08); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  height: 580px;
}
.hero-slides-wrapper {
  display: flex;
  height: 100%;
  transition: transform .9s cubic-bezier(.77,0,.175,1);
}
.hero-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .2;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(108deg, rgba(5,16,31,.98) 0%, rgba(5,16,31,.88) 46%, rgba(5,16,31,.4) 100%);
}
.hero-diagonal {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 46%;
  background: rgba(255,255,255,.012);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  border-left: 0.5px solid rgba(255,255,255,.05);
}
.hero-panel {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  width: 34%;
  height: 76%;
  background: var(--ink2);
  border: 0.5px solid rgba(255,255,255,.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px;
}
.hero-panel-icon { font-size: 54px; color: rgba(226,170,26,.3); }
.hero-panel-stat {
  font-size: 36px;
  font-weight: 900;
  color: var(--gold3);
  letter-spacing: -2px;
  text-align: center;
}
.hero-panel-label {
  font-size: 10.5px;
  color: rgba(255,255,255,.22);
  text-align: center;
  letter-spacing: .06em;
  text-transform: uppercase;
  max-width: 140px;
  line-height: 1.5;
}
.hero-panel-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.hero-panel-tag {
  background: rgba(226,170,26,.1);
  border: 0.5px solid rgba(226,170,26,.28);
  color: var(--gold3);
  font-size: 9.5px;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: .06em;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 48px 60px;
  max-width: 56%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-eyebrow-line { width: 30px; height: 2px; background: var(--gold2); }
.hero-eyebrow-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--gold3);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.hero-h1 {
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.07;
  letter-spacing: -2.5px;
  margin-bottom: 18px;
}
.hero-h1 em { color: var(--gold3); font-style: normal; }
.hero-p {
  font-size: 14px;
  color: rgba(255,255,255,.48);
  line-height: 1.85;
  max-width: 460px;
  margin-bottom: 30px;
  font-weight: 300;
}
.hero-buttons { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* Hero controls */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,.05);
}
.hero-progress-fill {
  height: 100%;
  background: var(--gold2);
  transition: width .08s linear;
}
.hero-controls {
  position: absolute;
  bottom: 22px;
  right: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 22px;
  height: 2.5px;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  transition: all .3s;
  border: none;
}
.hero-dot.active { background: var(--gold2); width: 38px; }
.hero-arrow {
  width: 36px;
  height: 36px;
  border: 0.5px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  transition: var(--transition);
}
.hero-arrow:hover { background: var(--gold2); border-color: var(--gold2); color: var(--ink); }
.hero-slide-num {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.18);
  letter-spacing: .1em;
}

/* ============================================================
   AUTHORITY STRIP (below hero)
   ============================================================ */
.authority-strip {
  background: var(--gold2);
  display: flex;
  align-items: center;
  padding: 14px 40px;
  flex-wrap: wrap;
  gap: 0;
}
.auth-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  border-right: 1px solid rgba(5,16,31,.15);
  flex-shrink: 0;
}
.auth-item:first-child { padding-left: 0; }
.auth-item:last-child  { border-right: none; margin-left: auto; }
.auth-num {
  font-size: 24px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -1px;
}
.auth-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(5,16,31,.6);
  max-width: 110px;
  line-height: 1.35;
}

/* ============================================================
   TRUSTED BY BAR
   ============================================================ */
.trusted-bar {
  background: var(--ink2);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 0.5px solid rgba(255,255,255,.05);
  flex-wrap: wrap;
}
.trusted-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.22);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-right: 24px;
  white-space: nowrap;
}
.trusted-logos { display: flex; align-items: center; flex-wrap: wrap; gap: 0; }
.trusted-logo {
  padding: 7px 18px;
  border-right: 0.5px solid rgba(255,255,255,.07);
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(255,255,255,.32);
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .15s;
  white-space: nowrap;
}
.trusted-logo:hover  { color: var(--gold2); }
.trusted-logo:last-child { border-right: none; }
.trusted-logo img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .3;
  transition: opacity .2s;
}
.trusted-logo img:hover { opacity: .7; }

/* ============================================================
   STANDARDS TICKER
   ============================================================ */
.standards-ticker {
  background: var(--gold2);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 28s linear infinite;
}
@keyframes ticker-scroll { to { transform: translateX(-50%); } }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: .09em;
  text-transform: uppercase;
}
.ticker-sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(5,16,31,.22); }

/* ============================================================
   METRICS SECTION
   ============================================================ */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.metric-cell {
  padding: 36px 32px;
  border-right: 1px solid var(--line);
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.metric-cell:last-child { border-right: none; }
.metric-cell::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold2);
  transform: scaleX(0);
  transition: transform .4s;
  transform-origin: left;
}
.metric-cell:hover::after { transform: scaleX(1); }
.metric-number {
  font-size: 52px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -3px;
  line-height: 1;
}
.metric-number sup { font-size: 26px; color: var(--gold2); }
.metric-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--mid);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 170px;
}

/* ============================================================
   CAPABILITY STATEMENT
   ============================================================ */
.capability-block {
  background: var(--ink);
  padding: 60px 40px;
  border-top: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.capability-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cap-line {
  width: 40px;
  height: 2px;
  background: var(--gold2);
  margin: 0 auto 28px;
}
.cap-quote {
  font-size: 24px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.65;
  letter-spacing: -.2px;
  font-style: italic;
  margin-bottom: 20px;
}
.cap-quote em { font-style: normal; font-weight: 900; color: var(--gold3); }
.cap-attribution {
  font-size: 12px;
  color: rgba(255,255,255,.3);
  letter-spacing: .07em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================================================
   WHY PROCUREMENT / WHY US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.07);
  border-left: 1px solid rgba(255,255,255,.07);
}
.why-cell {
  padding: 30px 26px;
  border-right: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  cursor: pointer;
  transition: background .2s;
  position: relative;
  overflow: hidden;
}
.why-cell::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold2);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.why-cell:hover { background: rgba(255,255,255,.03); }
.why-cell:hover::after { transform: scaleX(1); }
.why-icon {
  width: 46px;
  height: 46px;
  background: rgba(226,170,26,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  color: var(--gold2);
  margin-bottom: 16px;
}
.why-title { font-size: 13.5px; font-weight: 700; color: var(--white); margin-bottom: 7px; }
.why-desc  { font-size: 12px; color: rgba(255,255,255,.35); line-height: 1.7; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.service-cell {
  padding: 30px 26px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .2s;
}
.service-cell::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold2);
  transform: scaleY(0);
  transition: transform .3s;
  transform-origin: bottom;
}
.service-cell:hover { background: var(--ink); }
.service-cell:hover::before { transform: scaleY(1); }
.service-cell:hover .svc-icon { background: var(--gold2); color: var(--ink); }
.service-cell:hover .svc-title { color: var(--white); }
.service-cell:hover .svc-desc  { color: rgba(255,255,255,.35); }
.service-cell:hover .svc-tags span { background: rgba(255,255,255,.06); color: rgba(255,255,255,.4); }
.service-cell:hover .svc-link { color: var(--gold3); }
.svc-icon {
  width: 48px;
  height: 48px;
  background: var(--off);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--ink2);
  margin-bottom: 16px;
  transition: var(--transition);
}
.svc-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
  transition: color .2s;
}
.svc-desc {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 12px;
  transition: color .2s;
}
.svc-tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.svc-tags span {
  font-size: 9.5px;
  font-weight: 700;
  padding: 3px 8px;
  background: var(--off);
  color: var(--mid);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: var(--transition);
}
.svc-link {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold2);
  letter-spacing: .07em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color .2s;
}

/* ============================================================
   DIFFERENTIATOR / COMPARISON
   ============================================================ */
.diff-wrapper { border: 1px solid var(--line); }
.diff-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.diff-header {
  padding: 20px 30px;
  border-bottom: 1px solid var(--line);
}
.diff-header.typical { background: var(--off); }
.diff-header.miel    { background: var(--ink); border-left: 1px solid var(--line); }
.diff-header-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.diff-header.typical .diff-header-label { color: var(--muted); }
.diff-header.miel    .diff-header-label { color: var(--gold2); }
.diff-header-title { font-size: 16px; font-weight: 800; letter-spacing: -.3px; }
.diff-header.typical .diff-header-title { color: var(--mid); }
.diff-header.miel    .diff-header-title { color: var(--white); }
.diff-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.diff-row:last-child { border-bottom: none; }
.diff-cell {
  padding: 16px 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
}
.diff-cell:last-child { border-right: none; background: rgba(5,16,31,.97); }
.diff-cell i { font-size: 16px; flex-shrink: 0; }
.diff-cell i.bad  { color: var(--danger); }
.diff-cell i.good { color: var(--gold2); }
.diff-cell-text { font-size: 13px; color: var(--mid); line-height: 1.5; }
.diff-cell-text.miel { color: rgba(255,255,255,.75); font-weight: 500; }

/* ============================================================
   SECTOR GRID
   ============================================================ */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 0.5px solid rgba(255,255,255,.07);
  border-left: 0.5px solid rgba(255,255,255,.07);
}
.sector-cell {
  padding: 30px 24px;
  border-right: 0.5px solid rgba(255,255,255,.07);
  border-bottom: 0.5px solid rgba(255,255,255,.07);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background .18s;
}
.sector-cell::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2.5px;
  background: var(--gold2);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.sector-cell:hover { background: rgba(255,255,255,.04); }
.sector-cell:hover::after { transform: scaleX(1); }
.sector-cell:hover .sector-arrow { opacity: 1; }
.sector-icon { font-size: 32px; color: var(--gold2); margin-bottom: 16px; opacity: .7; }
.sector-title { font-size: 13.5px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.sector-desc  { font-size: 11.5px; color: rgba(255,255,255,.3); line-height: 1.65; }
.sector-arrow {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold2);
  margin-top: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity .2s;
}

/* ============================================================
   CASE STUDY HIGHLIGHT
   ============================================================ */
.cs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cs-gold {
  background: var(--gold2);
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cs-dark { background: var(--ink); padding: 52px 48px; }
.cs-sector-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(5,16,31,.5);
  margin-bottom: 14px;
}
.cs-heading {
  font-size: 28px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.6px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.cs-para {
  font-size: 13.5px;
  color: rgba(5,16,31,.6);
  line-height: 1.82;
  margin-bottom: 22px;
  font-weight: 300;
}
.cs-result-box {
  background: rgba(5,16,31,.09);
  padding: 16px 18px;
  border-left: 4px solid var(--ink);
}
.cs-result-label {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(5,16,31,.4);
  margin-bottom: 5px;
}
.cs-result-value {
  font-size: 28px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -1px;
}
.cs-more-link {
  margin-top: 16px;
  font-size: 11.5px;
  font-weight: 700;
  color: rgba(5,16,31,.55);
  letter-spacing: .07em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: color .15s;
}
.cs-more-link:hover { color: var(--ink); }
.cs-points { display: flex; flex-direction: column; gap: 12px; }
.cs-point {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px;
  border: 0.5px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.02);
}
.cs-point-icon {
  width: 36px;
  height: 36px;
  background: var(--gold2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--ink);
  flex-shrink: 0;
}
.cs-point-title { font-size: 13px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.cs-point-desc  { font-size: 11.5px; color: rgba(255,255,255,.35); line-height: 1.6; }

/* ============================================================
   PROJECTS GRID
   ============================================================ */
.projects-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-btn {
  font-size: 11px;
  font-weight: 700;
  padding: 9px 20px;
  border: 0.5px solid var(--line);
  background: var(--white);
  color: var(--mid);
  cursor: pointer;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: var(--transition);
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}
.project-card {
  background: var(--ink2);
  border-right: 1px solid rgba(255,255,255,.05);
  cursor: pointer;
  overflow: hidden;
  transition: background .2s;
}
.project-card:last-child { border-right: none; }
.project-card:hover { background: var(--ink3); }
.project-card:hover .project-overlay { opacity: 1; }
.project-image {
  height: 160px;
  background: var(--ink3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.project-image img { width: 100%; height: 100%; object-fit: cover; }
.project-image i { font-size: 44px; color: rgba(255,255,255,.08); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,16,31,.78);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}
.project-overlay-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.project-body { padding: 20px; border-top: 0.5px solid rgba(255,255,255,.06); }
.project-category {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 9px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.project-category::before {
  content: '';
  width: 14px;
  height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
}
.project-title { font-size: 13px; font-weight: 700; color: var(--white); line-height: 1.4; margin-bottom: 5px; }
.project-client { font-size: 11px; color: rgba(255,255,255,.3); }
.project-outcome {
  font-size: 11px;
  color: var(--gold3);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

/* ============================================================
   LEADERSHIP SECTION
   ============================================================ */
.leadership-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
}
.lead-dark {
  background: var(--ink);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lead-light { background: var(--white); padding: 56px 48px; }
.lead-photo {
  width: 100%;
  height: 260px;
  overflow: hidden;
  margin-bottom: 24px;
  border: 0.5px solid rgba(255,255,255,.07);
}
.lead-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.lead-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.3px;
  margin-bottom: 5px;
}
.lead-role {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold2);
  margin-bottom: 18px;
  letter-spacing: .03em;
}
.lead-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}
.lead-cred {
  border: 0.5px solid rgba(255,255,255,.15);
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
}
.lead-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 22px;
}
.lead-stat {
  background: rgba(255,255,255,.04);
  border: 0.5px solid rgba(255,255,255,.07);
  padding: 16px;
  border-left: 3px solid var(--gold2);
}
.lead-stat-num { font-size: 26px; font-weight: 900; color: var(--gold3); letter-spacing: -1px; }
.lead-stat-label { font-size: 10px; color: rgba(255,255,255,.3); letter-spacing: .07em; text-transform: uppercase; margin-top: 3px; }
.lead-feats { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.lead-feat {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px 16px;
  background: var(--off);
  border-left: 2.5px solid var(--gold2);
}
.lead-feat-icon {
  width: 34px;
  height: 34px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--gold2);
  flex-shrink: 0;
}
.lead-feat-title { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.lead-feat-desc  { font-size: 12px; color: var(--mid); line-height: 1.55; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.testi-card {
  padding: 30px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  position: relative;
}
.testi-quote-mark {
  position: absolute;
  top: 14px;
  right: 22px;
  font-size: 68px;
  color: var(--off);
  font-weight: 900;
  line-height: 1;
  font-family: Georgia, serif;
}
.testi-stars { color: var(--gold2); font-size: 14px; letter-spacing: 2px; margin-bottom: 13px; }
.testi-text  {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.82;
  font-style: italic;
  margin-bottom: 18px;
  font-weight: 300;
}
.testi-author { display: flex; align-items: center; gap: 11px; padding-top: 14px; border-top: 1px solid var(--line); }
.testi-avatar {
  width: 40px;
  height: 40px;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 13.5px; font-weight: 700; color: var(--ink); }
.testi-company { font-size: 11px; color: var(--muted); }

/* ============================================================
   CLIENTS SECTION
   ============================================================ */
.clients-section {
  padding: 32px 40px;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.clients-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.clients-label::after { content: ''; flex: 1; height: 0.5px; background: var(--line); }
.clients-row { display: flex; gap: 8px; flex-wrap: wrap; }
.client-chip {
  background: var(--off);
  border: 0.5px solid var(--line);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--mid);
  padding: 9px 18px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.client-chip img { height: 20px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .5; transition: var(--transition); }
.client-chip:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.client-chip:hover img { filter: grayscale(0); opacity: 1; }

/* ============================================================
   INSIGHTS / BLOG
   ============================================================ */
.insights-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  border: 1px solid var(--line);
}
.insight-feature { cursor: pointer; background: var(--white); }
.insight-feature:hover .insight-feature-body { background: var(--off); }
.insight-feature-img {
  height: 200px;
  background: var(--ink2);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.insight-feature-img img { width: 100%; height: 100%; object-fit: cover; }
.insight-feature-img i { font-size: 44px; color: rgba(255,255,255,.15); }
.insight-feature-body { padding: 24px; transition: background .18s; }
.insight-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 9px;
}
.insight-feature-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 9px;
  letter-spacing: -.3px;
}
.insight-feature-desc { font-size: 13px; color: var(--mid); line-height: 1.75; margin-bottom: 12px; font-weight: 300; }
.insight-meta { font-size: 10.5px; color: var(--muted); display: flex; align-items: center; gap: 5px; }
.insight-read {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold2);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.insight-small {
  padding: 22px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  transition: background .18s;
}
.insight-small:last-child { border-bottom: none; }
.insight-small:hover { background: var(--off); }
.insight-small-title { font-size: 13.5px; font-weight: 700; color: var(--ink); line-height: 1.4; margin-bottom: 7px; }

/* ============================================================
   EXECUTIVE CTA
   ============================================================ */
.exec-cta {
  background: var(--ink);
  padding: 76px 40px;
  position: relative;
  overflow: hidden;
}
.exec-cta::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(226,170,26,.04);
}
.exec-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 44px;
  align-items: center;
}
.exec-cta-h {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 12px;
}
.exec-cta-h span { color: var(--gold3); }
.exec-cta-p {
  font-size: 14px;
  color: rgba(255,255,255,.38);
  max-width: 580px;
  line-height: 1.82;
  font-weight: 300;
}
.exec-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}
.exec-cta-note { font-size: 11px; color: rgba(255,255,255,.18); text-align: right; margin-top: 4px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #03060D; }
.footer-main {
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 2.4fr 1fr 1fr 1.8fr;
  gap: 44px;
  border-bottom: 0.5px solid rgba(255,255,255,.06);
}
.footer-logo { height: 44px; width: auto; object-fit: contain; }
.footer-brand { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.footer-brand-name { font-size: 15px; font-weight: 800; color: var(--white); letter-spacing: -.3px; }
.footer-brand-sub  { font-size: 9px; font-weight: 700; color: rgba(255,255,255,.22); letter-spacing: .12em; text-transform: uppercase; }
.footer-desc { color: rgba(255,255,255,.26); font-size: 12.5px; line-height: 1.85; margin-bottom: 20px; font-weight: 300; }
.footer-contacts { margin-bottom: 16px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 10px; }
.footer-contact-item i { color: var(--gold2); font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item span,
.footer-contact-item a { font-size: 12px; color: rgba(255,255,255,.3); line-height: 1.55; }
.footer-contact-item a:hover { color: var(--gold2); }
.footer-iso-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.iso-badge { border: 0.5px solid rgba(255,255,255,.1); padding: 4px 10px; font-size: 9.5px; font-weight: 700; color: rgba(255,255,255,.22); letter-spacing: .07em; }
.footer-col-title {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid rgba(255,255,255,.06);
  letter-spacing: .09em;
  text-transform: uppercase;
}
.footer-link { display: block; font-size: 12px; color: rgba(255,255,255,.3); margin-bottom: 9px; font-weight: 300; transition: color .15s; }
.footer-link:hover { color: var(--gold2); }
.footer-nl-desc { font-size: 12px; color: rgba(255,255,255,.28); line-height: 1.75; margin-bottom: 14px; font-weight: 300; }
.footer-nl-row { display: flex; border: 0.5px solid rgba(255,255,255,.1); overflow: hidden; }
.footer-nl-row input {
  flex: 1;
  background: rgba(255,255,255,.04);
  border: none;
  padding: 11px 13px;
  color: var(--white);
  font-size: 12px;
  outline: none;
  font-family: var(--font-main);
}
.footer-nl-row input::placeholder { color: rgba(255,255,255,.3); }
.footer-nl-row button {
  background: var(--gold2);
  color: var(--ink);
  border: none;
  padding: 11px 14px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .07em;
  text-transform: uppercase;
  transition: background .18s;
}
.footer-nl-row button:hover { background: var(--gold3); }
.footer-hours { color: rgba(255,255,255,.16); font-size: 11px; margin-top: 12px; }
.footer-accred {
  background: rgba(255,255,255,.015);
  padding: 13px 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 0.5px solid rgba(255,255,255,.05);
  flex-wrap: wrap;
}
.accred-label { font-size: 9.5px; font-weight: 700; color: rgba(255,255,255,.16); letter-spacing: .1em; text-transform: uppercase; margin-right: 8px; }
.accred-badge { border: 0.5px solid rgba(255,255,255,.11); padding: 5px 12px; font-size: 10px; font-weight: 700; color: rgba(255,255,255,.32); letter-spacing: .05em; }
.footer-bottom { padding: 16px 40px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { color: rgba(255,255,255,.16); font-size: 11px; }
.footer-social { display: flex; gap: 8px; }
.social-icon {
  width: 32px;
  height: 32px;
  border: 0.5px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.social-icon:hover { background: var(--gold2); border-color: var(--gold2); color: var(--ink); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
}
.contact-info {
  background: var(--ink2);
  padding: 52px 44px;
}
.contact-form-wrap { background: var(--white); padding: 52px 48px; }
.contact-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(226,170,26,.09);
  border: 0.5px solid rgba(226,170,26,.24);
  padding: 6px 14px;
  margin-bottom: 22px;
}
.ci-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold2); }
.ci-badge-text { font-size: 10px; font-weight: 700; color: var(--gold2); letter-spacing: .1em; text-transform: uppercase; }
.contact-info-title { font-size: 28px; font-weight: 900; color: var(--white); letter-spacing: -.7px; line-height: 1.15; margin-bottom: 10px; }
.contact-info-sub { font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.75; margin-bottom: 28px; font-weight: 300; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 14px;
  background: rgba(255,255,255,.03);
  border: 0.5px solid rgba(255,255,255,.06);
  margin-bottom: 10px;
}
.contact-item-icon {
  width: 38px;
  height: 38px;
  background: rgba(226,170,26,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item-icon i { color: var(--gold2); font-size: 16px; }
.contact-item-label { font-size: 9.5px; font-weight: 700; color: rgba(255,255,255,.22); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 3px; }
.contact-item-val { font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.5; }
.contact-item-val a { color: rgba(255,255,255,.7); }
.contact-item-val a:hover { color: var(--gold2); }

/* Form */
.form-title { font-size: 26px; font-weight: 900; color: var(--ink); letter-spacing: -.6px; margin-bottom: 5px; }
.form-subtitle { font-size: 13px; color: var(--muted); margin-bottom: 24px; line-height: 1.65; font-weight: 300; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--mid);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 0.5px solid var(--line);
  background: var(--off);
  font-size: 13px;
  color: var(--ink);
  outline: none;
  font-family: var(--font-main);
  transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold2); background: var(--white); }
.form-group textarea { resize: none; }
.form-submit {
  width: 100%;
  background: var(--ink);
  color: var(--white);
  border: none;
  padding: 15px;
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: var(--transition);
  font-family: var(--font-main);
  margin-top: 6px;
}
.form-submit:hover { background: var(--gold2); color: var(--ink); }
.form-message { font-size: 13px; margin-top: 10px; padding: 10px 14px; display: none; }
.form-message.success { background: #f0fff4; color: var(--success); border: 1px solid #c6f6d5; display: block; }
.form-message.error   { background: #fff5f5; color: var(--danger); border: 1px solid #fed7d7; display: block; }

/* ============================================================
   PAGE HEADERS (internal pages)
   ============================================================ */
.page-header {
  background: var(--ink);
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.016) 0, rgba(255,255,255,.016) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.016) 0, rgba(255,255,255,.016) 1px, transparent 1px, transparent 64px);
}
.page-header > * { position: relative; }
.page-breadcrumb { font-size: 10px; color: rgba(255,255,255,.22); margin-bottom: 14px; letter-spacing: .06em; }
.page-h1 { font-size: 44px; font-weight: 900; color: var(--white); letter-spacing: -2px; line-height: 1.08; margin-bottom: 12px; }
.page-h1 em { color: var(--gold3); font-style: normal; }
.page-subtitle { font-size: 14px; color: rgba(255,255,255,.38); max-width: 600px; line-height: 1.82; font-weight: 300; }

/* ============================================================
   ADMIN PANEL BASE STYLES
   ============================================================ */
.admin-body {
  display: grid;
  grid-template-columns: 225px 1fr;
  min-height: 100vh;
  background: var(--off);
}
.admin-sidebar {
  background: var(--ink);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  flex-shrink: 0;
}
.admin-main { padding: 28px; background: var(--off); overflow-x: hidden; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET (max 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-h1 { font-size: 36px; }
  .hero-panel { width: 36%; right: 24px; }
  .hero-content { padding: 0 32px 48px; max-width: 62%; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .sector-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .cs-split { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE (max 768px)
   ============================================================ */
@media (max-width: 768px) {
  .util-bar { display: none; }
  .nav-links, .nav-actions, .nav-phone { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 20px; }
  .logo-block { width: 56px; height: 56px; margin-right: 10px; }
  .mainnav { height: 56px; }
  .logo-block { height: 56px; }

  .hero-section { height: auto; min-height: 480px; }
  .hero-content { max-width: 100%; padding: 24px 20px 48px; }
  .hero-h1 { font-size: 30px; letter-spacing: -1.5px; }
  .hero-panel { display: none; }
  .hero-diagonal { display: none; }
  .hero-p { font-size: 13.5px; }

  .authority-strip { padding: 12px 20px; flex-wrap: wrap; gap: 8px; }
  .auth-item { padding: 8px 12px; }
  .auth-item:last-child { margin-left: 0; border-left: none; }
  .auth-num { font-size: 20px; }

  .trusted-bar { padding: 12px 20px; flex-wrap: wrap; }
  .trusted-logos { gap: 0; }
  .trusted-logo { font-size: 10px; padding: 5px 10px; }

  section { padding: 44px 20px; }
  .section-dark, .section-ink2 { padding: 44px 20px; }
  .section-title { font-size: 28px; }
  .exec-cta { padding: 48px 20px; }
  .exec-cta-inner { grid-template-columns: 1fr; gap: 24px; }
  .exec-cta-h { font-size: 26px; }
  .exec-cta-actions { align-items: stretch; }

  .metrics-grid { grid-template-columns: 1fr 1fr; border: none; gap: 1px; }
  .metric-cell { border: 1px solid var(--line); }
  .metric-number { font-size: 38px; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-small { border-left: none; border-top: 1px solid var(--line); }

  .footer-main { grid-template-columns: 1fr; padding: 40px 20px; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; padding: 14px 20px; }
  .footer-accred { padding: 12px 20px; }
  .clients-section { padding: 24px 20px; }

  .diff-header-row, .diff-row { grid-template-columns: 1fr; }
  .diff-cell { border-right: none; border-bottom: 1px solid var(--line); }

  .page-header { padding: 44px 20px; }
  .page-h1 { font-size: 32px; letter-spacing: -1.5px; }

  .cs-split { grid-template-columns: 1fr; }
  .leadership-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .util-bar, .mainnav, .hamburger, .hero-controls, .standards-ticker,
  .authority-strip, .trusted-bar, .exec-cta, footer { display: none; }
  body { color: #000; background: #fff; }
}


/* ============================================================
   HERO — reduce overlay so images show properly
   ============================================================ */
.hero-slide-overlay {
  background: linear-gradient(
    108deg,
    rgba(5,16,31,.82) 0%,
    rgba(5,16,31,.68) 44%,
    rgba(5,16,31,.22) 100%
  ) !important;
}
.hero-slide-bg {
  opacity: .52 !important;
}

/* ============================================================
   TRUSTED BAR — clean text-only display
   ============================================================ */
.trusted-bar {
  background: var(--ink2);
  padding: 18px 40px;
  display: flex;
  align-items: center;
  gap: 0;
  border-bottom: 0.5px solid rgba(255,255,255,.05);
  flex-wrap: wrap;
}
.trusted-label {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,.22);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-right: 24px;
  white-space: nowrap;
  flex-shrink: 0;
}
.trusted-logos {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
}
.trusted-logo {
  padding: 7px 18px;
  border-right: 0.5px solid rgba(255,255,255,.08);
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  letter-spacing: .03em;
  white-space: nowrap;
  transition: color .15s;
  cursor: default;
}
.trusted-logo:last-child { border-right: none; }
.trusted-logo:hover { color: var(--gold2); }
/* Remove any img styling inside trusted-logo */
.trusted-logo img { display: none; }

/* ============================================================
   CLIENT LOGO MARQUEE — smooth infinite scroll
   ============================================================ */
.logo-marquee-section {
  background: var(--white);
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.logo-marquee-label {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-marquee-label::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--line);
}
.logo-marquee-track-wrap {
  position: relative;
  overflow: hidden;
}
.logo-marquee-track-wrap::before,
.logo-marquee-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.logo-marquee-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.logo-marquee-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}
.logo-marquee-track {
  display: flex;
  align-items: center;
  animation: logoScroll 40s linear infinite;
  width: max-content;
}
.logo-marquee-track:hover { animation-play-state: paused; }
@keyframes logoScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 32px;
  border-right: 0.5px solid var(--line);
  min-width: 160px;
}
.logo-marquee-item:last-child { border-right: none; }
.logo-marquee-item img {
  height: 42px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: .5;
  transition: all .3s;
  display: block;
}
.logo-marquee-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
.logo-marquee-item-text {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.logo-marquee-item:hover .logo-marquee-item-text {
  color: var(--ink);
}

/* ============================================================
   COUNTER ANIMATION
   ============================================================ */
[data-counter] { display: inline-block; }

/* ============================================================
   TEAM GRID
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.team-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  transition: background .2s;
}
.team-card:hover { background: var(--ink); }
.team-card:hover .team-card-name  { color: var(--white); }
.team-card:hover .team-card-title { color: var(--gold2); }
.team-card:hover .team-card-bio   { color: rgba(255,255,255,.45); }
.team-card:hover .team-card-creds span { border-color:rgba(255,255,255,.15);color:rgba(255,255,255,.4); }
.team-photo {
  height: 320px;
  overflow: hidden;
  background: var(--ink2);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* center 20% shows face for all portrait headshots */
  object-position: center 20%;
  transition: transform .4s;
  display: block;
}
.team-card:hover .team-photo img { transform: scale(1.03); }
.team-photo-placeholder { font-size: 56px; color: rgba(255,255,255,.1); }

/* Individual face adjustments using data-member attribute */
.team-photo img[data-member="joshua"]    { object-position: center 15%; }
.team-photo img[data-member="anil"]      { object-position: center 25%; }
.team-photo img[data-member="hiren"]     { object-position: center 20%; }
.team-photo img[data-member="nnenna"]    { object-position: center 18%; }
.team-photo img[data-member="okechukwu"] { object-position: center 15%; }
.team-photo img[data-member="eniola"]    { object-position: center 20%; }
.team-photo img[data-member="dr-prince"] { object-position: center 15%; }

.team-card-body  { padding: 18px 20px; }
.team-card-name  { font-size: 14px; font-weight: 800; color: var(--ink); letter-spacing: -.3px; margin-bottom: 4px; transition: color .2s; }
.team-card-title { font-size: 11px; font-weight: 600; color: var(--gold2); margin-bottom: 9px; letter-spacing: .03em; transition: color .2s; }
.team-card-bio   { font-size: 12px; color: var(--mid); line-height: 1.65; margin-bottom: 10px; transition: color .2s; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.team-card-creds { display: flex; flex-wrap: wrap; gap: 4px; }
.team-card-creds span { border: 0.5px solid var(--line); padding: 3px 8px; font-size: 9.5px; font-weight: 700; color: var(--muted); letter-spacing: .06em; transition: all .2s; }
.team-card.leadership .team-photo { height: 360px; }
@media(max-width:1024px){ .team-grid { grid-template-columns: repeat(2,1fr); } }
@media(max-width:768px)  { .team-grid { grid-template-columns: 1fr; } .team-photo { height: 280px; } }
