/* ==========================================================
   PURVIEW GROUP — Enterprise UI
   Inspired by TCS.com design language
   Clean · Editorial · Professional · Content-first
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&display=swap');

:root {
  /* Brand */
  --brand: #0f2c5d;
  --brand-d: #091e45;
  --brand-l: #1a4080;
  --brand-a: #0066cc;      /* accent blue for links */
  --brand-red: #e31937;    /* TCS-style red accent */

  /* Neutrals */
  --white: #ffffff;
  --off: #fafafa;
  --gray-50: #f5f5f7;
  --gray-100: #ececec;
  --gray-200: #d9d9d9;
  --gray-300: #b8b8b8;
  --gray-500: #6b6b6b;
  --gray-700: #3a3a3a;
  --gray-900: #171717;
  --ink: #1a1a1a;

  /* Backward-compat for inline HTML styles */
  --K: #1a1a1a;
  --W: #ffffff;
  --W2: #f5f5f7;
  --M: #0f2c5d;
  --M2: #0066cc;
  --Md: rgba(15,44,93,0.08);
  --KR: rgba(0,0,0,0.06);
  --KR2: rgba(0,0,0,0.14);
  --WR: rgba(255,255,255,0.12);

  /* Type */
  --f-b: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --f-d: 'Inter', -apple-system, sans-serif;
  --f-s: 'Source Serif 4', Georgia, serif;

  /* Layout */
  --nh: 72px;
  --max: 1280px;
  --gut: 32px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--f-b);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-weight: 400;
  font-size: 16px;
  overflow-x: hidden;
}

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

#cur { display: none !important; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5 {
  font-family: var(--f-d);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--brand);
  line-height: 1.15;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

/* Italic treatment in heads — subtle serif accent, monochrome */
h1 i, h2 i, h3 i, .ab-h i, .nf-title i, .esg-r i {
  font-family: var(--f-s);
  font-style: italic;
  font-weight: 400;
  color: inherit;
  letter-spacing: -0.01em;
  opacity: 0.92;
}

p { font-size: 1rem; line-height: 1.7; color: var(--gray-700); }

strong, b { font-weight: 600; color: var(--ink); }

/* Section tag — small uppercase eyebrow */
.stag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-a);
  margin-bottom: 1rem;
}

.stag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--brand-a);
}

/* ============================================
   NAVIGATION — TCS-style mega menu
   ============================================ */

#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nh);
  background: rgba(255,255,255,0.98);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--gray-100);
  z-index: 1000;
}

.nav-wrap {
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.n-logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex-shrink: 0;
}

.n-logo-main {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--brand);
  letter-spacing: -0.02em;
  line-height: 1;
}

.n-logo-sub {
  font-size: 0.7rem;
  color: var(--gray-500);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.n-mid {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  margin: 0 auto;
}

.ni {
  position: relative;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
}

.ni > span, .ni > a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 26px 0;
  cursor: pointer;
  transition: color 0.15s;
}

.ni > a { color: inherit; }

.ni:hover > span,
.ni:hover > a,
.ni > a:hover { color: var(--brand); }

.caret {
  font-size: 0.7rem;
  color: var(--gray-300);
  transition: transform 0.2s;
}

.ni:hover .caret {
  transform: rotate(180deg);
  color: var(--brand);
}

/* Dropdown — TCS mega-menu style */
.dd {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-top: 3px solid var(--brand);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.ni:hover .dd {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dd-lbl {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding-bottom: 0.75rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.dd a {
  display: block;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--gray-700);
  padding: 0.55rem 0.75rem;
  margin: 0 -0.75rem;
  border-radius: 2px;
  transition: all 0.15s;
}

.dd a:hover {
  color: var(--brand);
  background: var(--gray-50);
}

.n-right { flex-shrink: 0; }

.n-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  background: var(--brand);
  color: var(--white) !important;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.15s;
}

.n-cta::after { content: '→'; font-size: 0.9em; }

.n-cta:hover { background: var(--brand-d); }

/* ============================================
   BUTTONS
   ============================================ */

.btn-gold, .btn-outline-w, .btn-outline-k {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: all 0.15s;
  cursor: pointer;
  line-height: 1.2;
  white-space: nowrap;
}

.btn-gold {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.btn-gold:hover {
  background: var(--brand-d);
  border-color: var(--brand-d);
}

.btn-outline-w {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}

.btn-outline-w:hover {
  background: var(--white);
  color: var(--brand);
  border-color: var(--white);
}

.btn-outline-k {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn-outline-k:hover {
  background: var(--brand);
  color: var(--white);
}

/* ============================================
   PAGE HERO (interior pages) — TCS-style banner
   ============================================ */

.pg-hero {
  padding-top: calc(var(--nh) + 5rem);
  padding-bottom: 5rem;
  padding-left: var(--gut);
  padding-right: var(--gut);
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}

.pg-hero-img {
  display: none; /* simplified — keep section clean */
}

.pg-hero-content {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.pg-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
}

.pg-breadcrumb a {
  color: var(--brand-a);
  transition: color 0.15s;
}

.pg-breadcrumb a:hover { color: var(--brand); text-decoration: underline; }

.pg-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 600;
  color: var(--brand);
  max-width: 24ch;
  margin: 0.5rem 0 1.25rem;
  letter-spacing: -0.025em;
}

.pg-hero h1 br { display: none; }

.pg-hero p {
  font-size: 1.1rem;
  max-width: 65ch;
  color: var(--gray-700);
  line-height: 1.7;
}

/* ============================================
   SECTIONS
   ============================================ */

.sec {
  padding: 5rem var(--gut);
}

.sec.white { background: var(--white); }
.sec.black { background: var(--gray-900); color: var(--white); }

.sec.black h1, .sec.black h2, .sec.black h3, .sec.black h4 {
  color: var(--white);
}
.sec.black p { color: rgba(255,255,255,0.75); }
.sec.black .stag { color: #8fb3e8; }
.sec.black .stag::before { background: #8fb3e8; }

.sec-head {
  max-width: var(--max);
  margin: 0 auto 3rem;
}

.sec-head h2 {
  max-width: 24ch;
  margin-bottom: 1rem;
}

.sec-head p {
  max-width: 65ch;
  font-size: 1.05rem;
}

/* ============================================
   LAYOUTS
   ============================================ */

.two-col {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }

.card-grid-3 {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card-grid-2 {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

/* ============================================
   CARDS (interior pages)
   ============================================ */

.card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 2rem 1.75rem;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.sec.black .card {
  background: #1f1f1f;
  border-color: rgba(255,255,255,0.1);
}

.card:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(15,44,93,0.1);
}

.sec.black .card:hover {
  border-color: #8fb3e8;
  box-shadow: 0 10px 28px rgba(0,0,0,0.4);
}

.card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-a);
  margin-bottom: 0.25rem;
}

.sec.black .card-tag { color: #8fb3e8; }

.card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--brand);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.sec.black .card-title { color: var(--white); }

.card-body {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--gray-700);
}

.sec.black .card-body { color: rgba(255,255,255,0.75); }

/* ============================================
   IMAGES
   ============================================ */

.img-full {
  width: 100%;
  height: clamp(320px, 50vw, 460px);
  object-fit: cover;
  display: block;
}

.img-half {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.img-card {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* ============================================
   STAT BAND (interior pages)
   ============================================ */

.stat-band {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0 var(--gut);
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.sband-i {
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-right: 1px solid var(--gray-100);
}

.sband-i:last-child { border-right: none; }

.sband-num {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.02em;
}

.sband-num em {
  font-style: normal;
  color: var(--brand-a);
  font-size: 0.75em;
  font-weight: 500;
  margin-left: 2px;
}

.sband-lbl {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

.sband-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ============================================
   INDEX: ABOUT SECTION
   ============================================ */

.about {
  padding: 6rem var(--gut);
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
  background: var(--white);
}

.ab-l { position: sticky; top: calc(var(--nh) + 2rem); }

.ab-h {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 600;
  line-height: 1.1;
  margin: 0.5rem 0 0;
}

.ab-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-100);
}

.ab-m {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-right: 1rem;
  border-right: 1px solid var(--gray-100);
}

.ab-m-n {
  font-size: 2rem;
  font-weight: 600;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.02em;
}

.ab-m-l {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

.ab-r p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 1.15rem;
}

.ab-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.atag {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: var(--gray-50);
  color: var(--brand);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--gray-100);
  border-radius: 100px;
}

.ab-cert {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-100);
}

.cert {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  padding-left: 16px;
}

.cert::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-a);
}

/* ============================================
   INDEX: STATS (si)
   ============================================ */

.stats {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
}

.si {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border-right: 1px solid var(--gray-100);
}

.si:last-child { border-right: none; }

.si-num {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 600;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.02em;
}

.si-num em {
  font-style: normal;
  color: var(--brand-a);
  font-size: 0.75em;
  font-weight: 500;
}

.si-lbl {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  margin-top: 0.25rem;
}

.si-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ============================================
   INDEX: BUSINESSES (biz)
   ============================================ */

.biz {
  padding: 6rem var(--gut);
  background: var(--gray-900);
  color: var(--white);
}

.biz-top {
  max-width: var(--max);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

.biz-top h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}

.biz-top .stag { color: #8fb3e8; }
.biz-top .stag::before { background: #8fb3e8; }

.biz-top-r p {
  color: rgba(255,255,255,0.75);
  font-size: 1.02rem;
  margin-bottom: 1.5rem;
}

.biz-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.bz {
  padding: 2.5rem 2rem;
  background: var(--gray-900);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background 0.2s;
  cursor: pointer;
  position: relative;
}

.bz:hover { background: #0a0a0a; }

.bz-num {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.35);
  font-weight: 500;
  letter-spacing: 0.1em;
}

.bz-arr {
  position: absolute;
  top: 2.5rem;
  right: 2rem;
  font-size: 1.25rem;
  color: rgba(255,255,255,0.4);
  transition: all 0.2s;
}

.bz:hover .bz-arr {
  color: #8fb3e8;
  transform: translate(4px, -4px);
}

.bz h3 {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  max-width: 90%;
}

.bz p {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
}

.bz-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.5rem;
}

.chip {
  display: inline-flex;
  padding: 0.3rem 0.7rem;
  font-size: 0.72rem;
  font-weight: 500;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.12);
  letter-spacing: 0.02em;
}

/* ============================================
   INDEX: COMPANIES (cos)
   ============================================ */

.cos {
  padding: 6rem var(--gut);
  background: var(--white);
}

.cos-top {
  max-width: var(--max);
  margin: 0 auto 3rem;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: end;
}

.cos-top p {
  font-size: 1.02rem;
  color: var(--gray-700);
}

.co-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.co-c {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: all 0.2s;
  position: relative;
  min-height: 180px;
}

.co-c:hover {
  border-color: var(--brand);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15,44,93,0.08);
}

.cc-i {
  width: 40px;
  height: 40px;
  background: var(--brand);
  color: var(--white);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cc-n {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand);
  line-height: 1.3;
}

.cc-s {
  font-size: 0.8rem;
  color: var(--gray-500);
  line-height: 1.45;
}

.cc-arr {
  position: absolute;
  top: 1.5rem;
  right: 1.25rem;
  font-size: 1rem;
  color: var(--gray-300);
  transition: all 0.2s;
}

.co-c:hover .cc-arr {
  color: var(--brand-a);
  transform: translate(3px, -3px);
}

/* ============================================
   TICKER
   ============================================ */

.ticker {
  background: var(--brand);
  color: var(--white);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--brand-d);
  border-bottom: 1px solid var(--brand-d);
}

.ti {
  display: inline-flex;
  gap: 3rem;
  animation: tickerLoop 50s linear infinite;
  padding-left: 3rem;
  will-change: transform;
}

.tii {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.tid {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8fb3e8;
  display: inline-block;
}

@keyframes tickerLoop {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   INDEX: NEWS & STORIES
   ============================================ */

.news {
  padding: 6rem var(--gut);
  background: var(--gray-50);
}

.news-top {
  max-width: var(--max);
  margin: 0 auto 3rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.news-top h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin: 0;
}

.news-top > a {
  color: var(--brand-a);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.15s;
}

.news-top > a:hover {
  color: var(--brand);
  text-decoration: underline;
}

.news-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.5rem;
}

.news-feat {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.2s;
  cursor: pointer;
}

.news-feat:hover {
  border-color: var(--brand);
  box-shadow: 0 10px 28px rgba(15,44,93,0.08);
}

.nf-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand-a);
}

.nf-title {
  font-size: clamp(1.25rem, 1.75vw, 1.5rem);
  font-weight: 600;
  color: var(--brand);
  line-height: 1.3;
}

.nf-excerpt {
  font-size: 0.98rem;
  color: var(--gray-700);
  line-height: 1.65;
}

.nf-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-100);
}

.nf-dt {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.nf-read {
  color: var(--brand-a);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.15s;
}

.nf-read:hover {
  color: var(--brand);
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.nl-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: all 0.2s;
  cursor: pointer;
}

.nl-item:hover {
  border-color: var(--brand);
  transform: translateX(4px);
  box-shadow: 0 6px 18px rgba(15,44,93,0.06);
}

.nl-cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-a);
}

.nl-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand);
  line-height: 1.35;
}

.nl-dt {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ============================================
   INDEX: ESG
   ============================================ */

.esg {
  padding: 6rem var(--gut);
  background: var(--brand);
  color: var(--white);
}

.esg-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.esg h2 {
  color: var(--white);
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  margin-bottom: 1rem;
}

.esg .stag { color: #b5d1f2; }
.esg .stag::before { background: #b5d1f2; }

.esg > .esg-inner > div:first-child > p {
  color: rgba(255,255,255,0.78);
  max-width: 60ch;
  margin-bottom: 2.5rem;
  font-size: 1.02rem;
}

.esg-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.esg-p {
  padding: 1.75rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all 0.2s;
}

.esg-p:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.25);
}

.esg-ico {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.esg-ph {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
}

.esg-pd {
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
  line-height: 1.6;
}

.esg-r {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.esg-stat {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.esg-stat:last-child { border-bottom: none; }

.esg-sn {
  font-size: 2rem;
  font-weight: 600;
  color: #b5d1f2;
  line-height: 1;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  min-width: 90px;
}

.esg-sl {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* ============================================
   INDEX: CAREERS
   ============================================ */

.careers {
  padding: 6rem var(--gut);
  background: var(--white);
}

.careers-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.careers-inner h2 {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
}

.careers-inner p {
  margin: 1.25rem 0 2rem;
  font-size: 1.02rem;
}

.career-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.cpill {
  padding: 0.5rem 1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.15s;
  cursor: pointer;
}

.cpill:hover {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}

.careers-r {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.job {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: all 0.2s;
  align-items: center;
  cursor: pointer;
}

.job:hover {
  border-color: var(--brand);
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(15,44,93,0.06);
}

.job-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.job-loc {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.job-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.job-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-a);
  padding: 0.3rem 0.7rem;
  background: rgba(0,102,204,0.08);
  border-radius: 2px;
}

.job-arr {
  font-size: 1.1rem;
  color: var(--gray-300);
  transition: all 0.2s;
}

.job:hover .job-arr {
  color: var(--brand);
  transform: translate(3px, -3px);
}

/* ============================================
   INDEX: CTA / CONTACT
   ============================================ */

.cta {
  padding: 6rem var(--gut);
  background: var(--brand);
  color: var(--white);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-glow { display: none; }

.cta .stag {
  color: #b5d1f2;
  justify-content: center;
  display: inline-flex;
}

.cta .stag::before { background: #b5d1f2; }

.cta h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
  margin: 1rem auto 1.5rem;
  max-width: 20ch;
  line-height: 1.1;
}

.cta > p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 55ch;
  margin: 0 auto 2.5rem;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.cta .btn-gold {
  background: var(--white);
  color: var(--brand);
  border-color: var(--white);
}

.cta .btn-gold:hover {
  background: transparent;
  color: var(--white);
}

.cta-offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  padding-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.cta-office {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.co-region {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.co-email a {
  font-size: 0.85rem;
  color: #b5d1f2;
  transition: color 0.15s;
}

.co-email a:hover {
  color: var(--white);
  text-decoration: underline;
}

.co-addr {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 4rem var(--gut) 2rem;
}

.ft-top {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.ft-brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 1.25rem;
}

.ft-brand-main {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}

.ft-brand-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

.ft-about {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 40ch;
}

.ft-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.fbadge {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 0.3rem 0.65rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  letter-spacing: 0.02em;
}

.ft-social {
  display: flex;
  gap: 0.5rem;
}

.fsoc {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 2px;
  transition: all 0.15s;
  text-transform: lowercase;
}

.fsoc:hover {
  background: var(--brand-a);
  border-color: var(--brand-a);
  color: var(--white);
}

.ft-col h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ft-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ft-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}

.ft-col a:hover {
  color: var(--white);
}

.ft-bot {
  max-width: var(--max);
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.ft-bot a {
  color: inherit;
  transition: color 0.15s;
}

.ft-bot a:hover { color: var(--white); }

.ft-flags {
  display: flex;
  gap: 0.4rem;
  font-size: 0.95rem;
}

/* ============================================
   UTILITY — keep .rv visible always
   ============================================ */

.rv { opacity: 1; } /* No reveal animation — professional & static */

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1100px) {
  .co-grid { grid-template-columns: repeat(4, 1fr); }
  .biz-grid { grid-template-columns: repeat(2, 1fr); }
  .esg-pillars { grid-template-columns: 1fr; }
}

@media (max-width: 1024px) {
  .about, .esg-inner, .careers-inner, .two-col, .biz-top, .cos-top, .news-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .ab-l { position: static; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .co-grid { grid-template-columns: repeat(3, 1fr); }
  .ft-top { grid-template-columns: 1fr 1fr 1fr; }
  .ft-top > :first-child { grid-column: span 3; }
  .stats, .stat-band { grid-template-columns: repeat(2, 1fr); }
  .si, .sband-i {
    border-right: none;
    border-bottom: 1px solid var(--gray-100);
  }
  .si:nth-child(odd), .sband-i:nth-child(odd) {
    border-right: 1px solid var(--gray-100);
  }
  .si:nth-last-child(-n+2), .sband-i:nth-last-child(-n+2) {
    border-bottom: none;
  }
  .cta-offices { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --gut: 20px; }
  .n-mid { display: none; }
  .n-logo-sub { display: none; }

  .sec, .about, .biz, .cos, .news, .esg, .careers, .cta { padding: 4rem var(--gut); }
  .pg-hero { padding-top: calc(var(--nh) + 3rem); padding-bottom: 3rem; }

  .card-grid-3, .card-grid-2, .co-grid, .biz-grid, .cta-offices {
    grid-template-columns: 1fr;
  }

  .ab-mini { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .ab-m:last-child { grid-column: span 2; }

  .ft-top { grid-template-columns: 1fr 1fr; }
  .ft-top > :first-child { grid-column: span 2; }

  .stats, .stat-band { grid-template-columns: 1fr; }
  .si, .sband-i { border-right: none !important; border-bottom: 1px solid var(--gray-100); }
  .si:last-child, .sband-i:last-child { border-bottom: none; }

  .news-feat { padding: 1.75rem; }
  .job { padding: 1.25rem; }

  .bz-arr { top: 2rem; right: 1.5rem; }
}

/* ============================================
   REDUCE MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   INLINE STYLE COMPAT PATCHES
   ============================================ */

[style*="color:var(--K)"], [style*="color: var(--K)"] { color: var(--ink) !important; }
[style*="color:var(--M)"], [style*="color: var(--M)"] { color: var(--brand) !important; }
[style*="color:var(--M2)"], [style*="color: var(--M2)"] { color: var(--brand-a) !important; }

.sec.black [style*="color:var(--M)"],
.sec.black [style*="color: var(--M)"],
.biz [style*="color:var(--M)"],
.esg [style*="color:var(--M)"],
.cta [style*="color:var(--M)"] {
  color: #8fb3e8 !important;
}
