/* ============================================================
   SAGE INSIGHTS GROUP — MAIN STYLESHEET
   Version 1.0 | © 2024 Sage Insights Group Ltd.
============================================================ */

/* ── GOOGLE FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

/* ── DESIGN TOKENS ── */
:root {
  /* Brand Colours */
  --purple:        #4B2C6E;
  --purple-dark:   #341D4F;
  --purple-deep:   #1E1030;
  --purple-mid:    #5C3880;
  --purple-light:  #7B52A0;
  --purple-pale:   #EDE8F5;

  --green:         #1E6B45;
  --green-dark:    #144D31;
  --green-mid:     #267A50;
  --green-light:   #3A9E6A;
  --green-pale:    #E6F4ED;

  --gold:          #C8962A;
  --gold-light:    #E0AE45;
  --gold-pale:     #FDF3DC;

  --orange:        #D4622A;
  --orange-light:  #E8803E;
  --orange-pale:   #FDF0E8;

  /* Neutrals */
  --white:         #FFFFFF;
  --off-white:     #FAFAF8;
  --cream:         #F6F4F0;
  --stone:         #EEEAE4;
  --border:        #DDD8D0;
  --charcoal:      #2A2A2A;
  --grey-dark:     #444444;
  --grey:          #6B6B6B;
  --grey-light:    #9A9A9A;

  /* Typography */
  --font-display:  'Playfair Display', Georgia, serif;
  --font-serif:    'Cormorant Garamond', Georgia, serif;
  --font-sans:     'DM Sans', system-ui, sans-serif;
  --font-mono:     'DM Mono', monospace;

  /* Spacing */
  --section-pad:   96px 80px;
  --section-pad-sm:64px 40px;

  /* Radius */
  --radius-sm:     4px;
  --radius:        8px;
  --radius-lg:     16px;

  /* Shadows */
  --shadow-sm:     0 2px 12px rgba(75,44,110,0.08);
  --shadow:        0 4px 28px rgba(75,44,110,0.12);
  --shadow-lg:     0 8px 48px rgba(75,44,110,0.18);

  /* Transitions */
  --trans:         all 0.28s ease;
  --trans-slow:    all 0.5s ease;
}

/* ── RESET & BASE ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-sans); }
input, textarea, select { font-family: var(--font-sans); }

/* SCROLLBAR */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--purple-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 0; }

/* ── LOADER ── */
#loader {
  position: fixed; inset: 0;
  background: var(--purple-deep);
  z-index: 9999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 24px;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 700;
  color: var(--white);
  letter-spacing: 3px; text-transform: uppercase;
}
.loader-sub {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 4px;
  color: var(--gold); text-transform: uppercase;
}
.loader-bar {
  width: 160px; height: 1px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  display: block; height: 100%; width: 100%;
  background: linear-gradient(to right, var(--gold), var(--orange));
  transform: translateX(-100%);
  animation: loaderSlide 1.6s ease forwards;
}
@keyframes loaderSlide { to { transform: translateX(0); } }

/* ── SCROLL TOP ── */
#scroll-top {
  position: fixed; bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  background: var(--gold);
  border: none; border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 800;
  opacity: 0; visibility: hidden;
  transition: var(--trans);
  box-shadow: var(--shadow);
}
#scroll-top.visible { opacity: 1; visibility: visible; }
#scroll-top:hover { background: var(--orange); }
#scroll-top svg { width: 18px; height: 18px; stroke: var(--purple-deep); }

/* ── TOP BAR ── */
.topbar {
  background: var(--purple-deep);
  color: rgba(255,255,255,0.45);
  font-size: 11px; letter-spacing: 0.8px;
  padding: 9px 80px;
  display: flex; justify-content: space-between; align-items: center;
}
.topbar a { color: rgba(255,255,255,0.45); transition: var(--trans); }
.topbar a:hover { color: var(--gold); }
.topbar-right { display: flex; gap: 24px; align-items: center; }
.topbar-sep { color: rgba(255,255,255,0.18); }

/* ── NAVIGATION ── */
.navbar {
  background: rgba(30,16,48,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0 80px;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 76px;
  position: sticky; top: 0; z-index: 900;
  border-bottom: 1px solid rgba(200,150,42,0.18);
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon { height: 40px; width: auto; display: block; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-main {
  font-family: var(--font-display);
  font-size: 15px; font-weight: 700;
  color: var(--white); letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-logo-sub {
  font-family: var(--font-mono);
  font-size: 8px; color: var(--gold);
  letter-spacing: 3px; text-transform: uppercase;
  opacity: 0.8;
}
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  font-size: 11px; letter-spacing: 1.3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  transition: var(--trans);
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

/* DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 24px); left: -20px;
  background: var(--purple-deep);
  border: 1px solid rgba(200,150,42,0.18);
  border-top: 2px solid var(--gold);
  min-width: 220px;
  padding: 12px 0;
  opacity: 0; visibility: hidden;
  transform: translateY(8px);
  transition: var(--trans);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 24px;
  font-size: 11px; letter-spacing: 1px;
  color: rgba(255,255,255,0.65);
  transition: var(--trans);
  border: none;
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover {
  background: rgba(200,150,42,0.1);
  color: var(--gold);
  padding-left: 32px;
}
.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 10.5px; letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  transition: var(--trans);
}
.nav-cta:hover { background: var(--gold); color: var(--purple-deep); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 6px; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); transition: var(--trans);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: var(--purple-deep);
  z-index: 980;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 36px; font-weight: 400;
  color: rgba(255,255,255,0.85);
  letter-spacing: 2px;
  transition: var(--trans);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 28px; right: 28px;
  background: none; border: none;
  color: rgba(255,255,255,0.5);
  font-size: 28px; line-height: 1;
}

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold);
  color: var(--purple-deep);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 30px; border: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--trans);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 30px; border: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--trans);
}
.btn-orange:hover { background: var(--orange-light); }

.btn-purple {
  background: var(--purple);
  color: var(--white);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 30px; border: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--trans);
}
.btn-purple:hover { background: var(--purple-mid); }

.btn-green {
  background: var(--green);
  color: var(--white);
  font-size: 11.5px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 14px 30px; border: none;
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--trans);
}
.btn-green:hover { background: var(--green-mid); }

.btn-outline-gold {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 13px 30px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--trans);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--purple-deep); }

.btn-outline-white {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.75);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 13px 30px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: var(--trans);
}
.btn-outline-white:hover { border-color: var(--white); color: var(--white); }

.btn-ghost {
  background: transparent; border: none;
  color: rgba(255,255,255,0.6);
  font-size: 11.5px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--trans);
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.6); }

.link-arrow {
  background: none; border: none;
  font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0; transition: gap 0.2s;
}
.link-arrow:hover { gap: 12px; }

/* ── SECTION LABELS ── */
.section-tag {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 3.5px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before {
  content: '';
  display: inline-block; width: 28px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.section-tag.green { color: var(--green-light); }
.section-tag.green::before { background: var(--green-light); }
.section-tag.orange { color: var(--orange-light); }
.section-tag.orange::before { background: var(--orange-light); }
.section-tag.center { justify-content: center; }
.section-tag.center::before { display: none; }

/* ── TYPOGRAPHY ── */
.display-title {
  font-family: var(--font-display);
  font-size: 80px; font-weight: 400;
  line-height: 0.98; letter-spacing: -1px;
  color: var(--white);
}
.display-title em { font-style: italic; color: var(--gold); }

.section-title {
  font-family: var(--font-serif);
  font-size: 46px; font-weight: 500;
  line-height: 1.08; color: var(--purple-dark);
  margin-bottom: 14px;
}
.section-title.white { color: var(--white); }
.section-title.gold { color: var(--gold); }
.section-title em { font-style: italic; color: var(--gold); }

.page-title {
  font-family: var(--font-display);
  font-size: 58px; font-weight: 400;
  line-height: 1.04; color: var(--white);
}
.page-title em { font-style: italic; color: var(--gold); }

.section-sub {
  font-size: 15.5px; color: var(--grey);
  line-height: 1.78; max-width: 580px;
  margin-bottom: 52px;
}

/* ── SECTION WRAPPER ── */
.section { padding: var(--section-pad); }
.section-sm { padding: var(--section-pad-sm); }
.bg-dark    { background: var(--purple-deep); }
.bg-purple  { background: var(--purple-dark); }
.bg-cream   { background: var(--cream); }
.bg-stone   { background: var(--stone); }
.bg-white   { background: var(--white); }
.bg-green   { background: var(--green-dark); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--purple-dark);
  padding: 18px 80px;
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(200,150,42,0.18);
  overflow-x: auto;
}
.trust-item {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: 2px;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase; white-space: nowrap;
  padding: 0 24px;
}
.trust-dot {
  width: 3px; height: 3px;
  border-radius: 50%; flex-shrink: 0;
  background: var(--gold); opacity: 0.4;
}

/* ── HERO ── */
.hero {
  position: relative; height: 720px;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(30,16,48,0.97) 0%,
    rgba(75,44,110,0.65) 45%,
    rgba(30,16,48,0.25) 100%
  );
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,150,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,150,42,0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 80px 96px;
  max-width: 1000px;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 3.5px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block; width: 36px; height: 1px;
  background: var(--gold);
}
.hero-sub {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 620px; line-height: 1.76;
  margin-bottom: 46px;
}
.hero-ctas { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }

/* ── PAGE HERO ── */
.page-hero {
  position: relative; height: 500px;
  overflow: hidden; display: flex; align-items: flex-end;
}
.page-hero.short { height: 380px; }
.page-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(30,16,48,0.96) 0%,
    rgba(75,44,110,0.6) 45%,
    rgba(30,16,48,0.2) 100%
  );
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 80px 80px; max-width: 860px;
}
.page-hero-breadcrumb {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase; margin-bottom: 14px;
}
.page-hero-breadcrumb a {
  color: rgba(255,255,255,0.4);
  transition: var(--trans);
}
.page-hero-breadcrumb a:hover { color: var(--gold); }
.page-sub { font-size: 16px; color: rgba(255,255,255,0.52); max-width: 560px; line-height: 1.72; margin-top: 16px; }

/* ── ACCENT BORDER ── */
.accent-line {
  width: 48px; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--orange));
  margin-bottom: 24px;
}

/* ── CARDS ── */
/* Capability Card */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
.cap-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative; overflow: hidden;
  transition: background 0.35s;
}
.cap-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--orange));
  transition: width 0.4s;
}
.cap-card:hover::after { width: 100%; }
.cap-card:hover { background: var(--purple-deep); }
.cap-card:hover .cap-name { color: var(--gold); }
.cap-card:hover .cap-desc { color: rgba(255,255,255,0.5); }
.cap-card:hover .cap-icon { opacity: 1; }
.cap-num {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 18px;
}
.cap-icon { margin-bottom: 20px; opacity: 0.6; transition: opacity 0.3s; }
.cap-name {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 500;
  color: var(--purple-dark); margin-bottom: 10px;
  line-height: 1.2; transition: color 0.3s;
}
.cap-desc {
  font-size: 13.5px; color: var(--grey);
  line-height: 1.65; transition: color 0.3s;
}

/* Service Card */
.svc-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--border); }
.svc-card {
  background: var(--white);
  padding: 52px 48px;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.svc-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(to right, var(--gold), var(--orange));
  transition: width 0.45s;
}
.svc-card:hover::after { width: 100%; }
.svc-card:hover { background: var(--purple-deep); }
.svc-card:hover .svc-name { color: var(--gold); }
.svc-card:hover .svc-desc { color: rgba(255,255,255,0.5); }
.svc-card:hover .svc-num { color: rgba(200,150,42,0.12); }
.svc-num {
  font-family: var(--font-display);
  font-size: 68px; font-weight: 400;
  color: rgba(75,44,110,0.07);
  position: absolute; top: 16px; right: 24px;
  line-height: 1; transition: color 0.3s; pointer-events: none;
}
.svc-name {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 500;
  color: var(--purple-dark);
  margin-bottom: 14px; line-height: 1.15;
  transition: color 0.3s; position: relative;
}
.svc-desc {
  font-size: 14.5px; color: var(--grey);
  line-height: 1.78; max-width: 420px;
  transition: color 0.3s; margin-bottom: 22px;
}

/* Metrics */
.metrics-wrap { background: var(--purple-deep); padding: var(--section-pad); }
.metrics-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(200,150,42,0.15); margin-top: 52px; }
.metric { background: var(--purple-deep); padding: 40px 32px; }
.metric-num {
  font-family: var(--font-display);
  font-size: 56px; font-weight: 400;
  color: var(--white); line-height: 1; margin-bottom: 10px;
}
.metric-num span { color: var(--gold); }
.metric-label {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: 2px;
  color: rgba(255,255,255,0.32);
  text-transform: uppercase; line-height: 1.5;
}

/* Pillar */
.pillars-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); margin-top: 46px; }
.pillar {
  background: var(--white);
  padding: 34px 26px; text-align: center;
  transition: background 0.3s;
}
.pillar:hover { background: var(--purple-deep); }
.pillar:hover .pil-num,
.pillar:hover .pil-name { color: var(--gold); }
.pillar:hover .pil-desc { color: rgba(255,255,255,0.42); }
.pil-num {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 12px;
}
.pil-name {
  font-family: var(--font-serif);
  font-size: 19px; font-weight: 500;
  color: var(--purple-dark);
  margin-bottom: 10px; transition: color 0.3s;
}
.pil-desc { font-size: 13px; color: var(--grey); line-height: 1.6; transition: color 0.3s; }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); margin-top: 52px; }
.team-card { background: var(--white); overflow: hidden; transition: background 0.3s; }
.team-card:hover { background: var(--purple-pale); }
.team-avatar {
  width: 100%; aspect-ratio: 3/4;
  display: flex; align-items: center; justify-content: center;
  background: var(--purple-deep);
  background-image: radial-gradient(ellipse at 30% 20%, rgba(200,150,42,0.14) 0%, transparent 55%);
  position: relative;
}
.team-avatar::after {
  content: '';
  position: absolute; inset: 14px;
  border: 1px solid rgba(200,150,42,0.35);
}
.team-avatar span {
  font-family: var(--font-serif);
  font-size: 44px; font-weight: 500;
  color: var(--gold); letter-spacing: 2px;
}
.team-info { padding: 28px 26px 32px; }
.team-name {
  font-family: var(--font-serif);
  font-size: 24px; font-weight: 500;
  color: var(--purple-dark); margin-bottom: 6px;
}
.team-role {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 14px;
}
.team-bio { font-size: 13.5px; color: var(--grey); line-height: 1.7; }

/* Timeline */
.tl-wrap {
  padding-left: 52px;
  border-left: 2px solid rgba(75,44,110,0.2);
  max-width: 720px; margin-top: 52px;
}
.tl-item { position: relative; padding-bottom: 48px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: '';
  position: absolute; left: -58px; top: 7px;
  width: 11px; height: 11px;
  border: 2px solid var(--gold);
  background: var(--stone);
}
.tl-date {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 8px;
}
.tl-title {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 500;
  color: var(--purple-dark); margin-bottom: 8px;
}
.tl-desc { font-size: 14px; color: var(--grey); line-height: 1.72; }

/* Industry Cards */
.ind-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); margin-top: 52px; }
.ind-card { background: var(--white); overflow: hidden; transition: background 0.3s; }
.ind-card:hover { background: var(--purple-deep); }
.ind-card:hover .ind-name { color: var(--gold); }
.ind-card:hover .ind-desc { color: rgba(255,255,255,0.42); }
.ind-img { width: 100%; aspect-ratio: 16/10; object-fit: cover; transition: transform 0.5s; }
.ind-card:hover .ind-img { transform: scale(1.04); }
.ind-body { padding: 22px 20px; }
.ind-name {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 500;
  color: var(--purple-dark); margin-bottom: 8px;
  transition: color 0.3s;
}
.ind-desc { font-size: 12.5px; color: var(--grey); line-height: 1.6; transition: color 0.3s; }

/* Governance */
.gov-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: rgba(200,150,42,0.12); margin-top: 52px; }
.gov-item { background: var(--purple-deep); padding: 40px 36px; }
.gov-item h4 {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 500;
  color: var(--white); margin-bottom: 14px;
}
.gov-item p { font-size: 13.5px; color: rgba(255,255,255,0.38); line-height: 1.78; }

/* Corridor Cards */
.corr-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--border); margin-top: 48px; }
.corr-item { background: var(--white); padding: 40px 36px; transition: background 0.3s; }
.corr-item:hover { background: var(--purple-pale); }
.corr-route {
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 1.5px;
  color: var(--gold); margin-bottom: 12px;
  text-transform: uppercase;
}
.corr-item h3 {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 500;
  color: var(--purple-dark); margin-bottom: 12px;
}
.corr-item p { font-size: 13.5px; color: var(--grey); line-height: 1.72; }

/* Partnership Types */
.pt-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); margin-top: 46px; }
.pt-item {
  background: var(--white);
  padding: 40px 32px;
  border-bottom: 3px solid transparent;
  transition: var(--trans);
}
.pt-item:hover { border-bottom-color: var(--gold); background: var(--purple-pale); }
.pt-num {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 14px;
}
.pt-item h3 {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 500;
  color: var(--purple-dark); margin-bottom: 12px;
}
.pt-item p { font-size: 13.5px; color: var(--grey); line-height: 1.7; }

/* Diff Items */
.diff-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--border); margin-top: 52px; }
.diff-item {
  background: var(--white);
  padding: 44px 40px; position: relative;
  overflow: hidden; transition: background 0.3s;
}
.diff-item:hover { background: var(--cream); }
.diff-item::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(to bottom, var(--gold), var(--orange));
  transition: height 0.45s;
}
.diff-item:hover::before { height: 100%; }
.diff-bg-num {
  font-family: var(--font-display);
  font-size: 80px; font-weight: 700;
  color: rgba(75,44,110,0.055);
  position: absolute; top: 10px; right: 18px;
  line-height: 1; pointer-events: none;
}
.diff-icon {
  width: 44px; height: 44px;
  border: 1px solid rgba(200,150,42,0.4);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.diff-title {
  font-family: var(--font-serif);
  font-size: 24px; font-weight: 500;
  color: var(--purple-dark); margin-bottom: 13px;
}
.diff-text { font-size: 14px; color: var(--grey); line-height: 1.78; }

/* CTA Band */
.cta-band {
  background: var(--purple-deep);
  padding: var(--section-pad);
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; right: 0; top: 0;
  width: 55%; height: 100%;
  background: radial-gradient(ellipse at 85% 50%, rgba(200,150,42,0.08) 0%, transparent 65%);
}
.cta-band-inner { position: relative; z-index: 1; max-width: 680px; }
.cta-band h2 {
  font-family: var(--font-display);
  font-size: 52px; font-weight: 400;
  color: var(--white); line-height: 1.04;
  margin-bottom: 20px;
}
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band p { font-size: 16px; color: rgba(255,255,255,0.48); line-height: 1.76; margin-bottom: 36px; }
.cta-deco {
  position: absolute; right: 80px; top: 50%;
  transform: translateY(-50%);
  opacity: 0.05; pointer-events: none;
}

/* Final CTA (centered) */
.final-cta {
  background: var(--stone);
  padding: var(--section-pad);
  text-align: center;
}

/* Checklist */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li { display: flex; gap: 16px; font-size: 14px; color: var(--charcoal); line-height: 1.6; }
.check-list li::before {
  content: '—';
  color: var(--gold); flex-shrink: 0;
  font-family: var(--font-mono);
}

/* ── INSIGHT CARDS ── */
.insights-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.ins-card { background: var(--white); overflow: hidden; transition: background 0.3s; }
.ins-card:hover { background: var(--purple-pale); }
.ins-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.ins-body { padding: 28px; }
.ins-tag {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 10px;
}
.ins-title {
  font-family: var(--font-serif);
  font-size: 20px; font-weight: 500;
  color: var(--purple-dark); line-height: 1.25; margin-bottom: 10px;
}
.ins-excerpt { font-size: 13px; color: var(--grey); line-height: 1.65; margin-bottom: 16px; }
.ins-meta { font-family: var(--font-mono); font-size: 9.5px; color: var(--grey); letter-spacing: 1px; }

/* Insights preview (home) */
.ins-prev-grid { display: grid; grid-template-columns: 5fr 3fr 3fr; gap: 1px; background: var(--border); margin-top: 52px; }
.ipc { background: var(--white); padding: 44px 40px; }
.ipc.dark { background: var(--purple-deep); }
.ipc .ins-tag { margin-bottom: 14px; }
.ipc .ins-title { font-size: 28px; }
.ipc.dark .ins-title { color: var(--white); }
.ipc .ins-excerpt { font-size: 13.5px; margin-bottom: 20px; }
.ipc.dark .ins-excerpt { color: rgba(255,255,255,0.38); }
.ipc.dark .ins-meta { color: rgba(200,150,42,0.5); }

/* ── FORMS ── */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: var(--font-mono);
  font-size: 9.5px; letter-spacing: 2px;
  color: var(--grey); text-transform: uppercase;
}
.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-sans);
  font-size: 14px; color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.25s;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--gold); }
.form-input.dark,
.form-textarea.dark {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  color: var(--white);
}
.form-input.dark::placeholder,
.form-textarea.dark::placeholder { color: rgba(255,255,255,0.25); }
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.65; }
.form-select { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-success { background: var(--purple-deep); padding: 36px; display: none; }
.form-success p { font-size: 15px; color: rgba(255,255,255,0.62); line-height: 1.75; margin-top: 10px; }

/* ── SERVICE DETAIL ── */
.svc-detail-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 72px; align-items: start; }
.svc-detail-copy h2 {
  font-family: var(--font-serif);
  font-size: 36px; font-weight: 500;
  color: var(--purple-dark); margin-bottom: 20px; line-height: 1.2;
}
.svc-detail-copy p { font-size: 15px; color: var(--grey); line-height: 1.82; margin-bottom: 14px; }
.svc-detail-img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }

/* Feature Grid */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); margin-top: 40px; }
.feat-item { background: var(--white); padding: 32px 28px; }
.feat-item h4 {
  font-family: var(--font-serif);
  font-size: 19px; font-weight: 500;
  color: var(--purple-dark); margin-bottom: 10px;
}
.feat-item p { font-size: 13px; color: var(--grey); line-height: 1.65; }

/* Process Steps */
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 48px; }
.process-step { text-align: center; padding: 0 14px; }
.step-num {
  width: 44px; height: 44px;
  border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--gold); margin: 0 auto 16px;
  background: var(--white);
}
.step-title {
  font-family: var(--font-serif);
  font-size: 18px; font-weight: 500;
  color: var(--purple-dark); margin-bottom: 8px;
}
.step-desc { font-size: 12.5px; color: var(--grey); line-height: 1.6; }

/* Photo Strip */
.photo-strip { display: grid; grid-template-columns: repeat(3,1fr); height: 320px; }
.strip-item { overflow: hidden; position: relative; }
.strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.strip-item:hover img { transform: scale(1.05); }
.strip-label {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,16,48,0.82) 0%, transparent 55%);
  display: flex; align-items: flex-end; padding: 22px 20px;
}
.strip-label span {
  font-family: var(--font-serif);
  font-size: 22px; color: var(--white);
}

/* Map Box */
.map-box { background: var(--purple-deep); }
.map-caption {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 2px;
  color: var(--gold); text-align: center;
  margin-top: 10px; text-transform: uppercase; opacity: 0.6;
}

/* Insights Categories */
.ins-cats {
  background: var(--purple-dark);
  padding: 0 80px;
  display: flex;
  border-bottom: 1px solid rgba(200,150,42,0.12);
  overflow-x: auto;
}
.ins-cat {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 2px;
  color: rgba(255,255,255,0.38);
  text-transform: uppercase;
  padding: 18px 22px;
  cursor: pointer; transition: var(--trans);
  border-bottom: 2px solid transparent;
  white-space: nowrap; background: none; border-left: none; border-right: none; border-top: none;
}
.ins-cat:hover,
.ins-cat.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ── FOOTER ── */
footer { background: var(--purple-deep); padding: 80px 80px 36px; }
.footer-top {
  display: grid; grid-template-columns: 2.4fr 1fr 1fr 1fr;
  gap: 56px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand-desc { font-size: 13px; color: rgba(255,255,255,0.28); line-height: 1.78; margin-top: 16px; max-width: 260px; }
.footer-logo-icon { height: 44px; width: auto; display: block; object-fit: contain; margin-bottom: 14px; }
.loader-logo-icon { height: 56px; width: auto; display: block; object-fit: contain; margin: 0 auto 16px; }
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 9px; letter-spacing: 2.5px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col a {
  display: block; font-size: 13px;
  color: rgba(255,255,255,0.32);
  margin-bottom: 11px; transition: var(--trans);
}
.footer-col a:hover { color: rgba(255,255,255,0.72); padding-left: 4px; }
.footer-gold-line { width: 44px; height: 1px; background: var(--gold); opacity: 0.4; margin: 24px 0; }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; padding-top: 28px;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.16); letter-spacing: 0.5px; }
.footer-legal { display: flex; gap: 22px; }
.footer-legal a { font-size: 11px; color: rgba(255,255,255,0.16); transition: var(--trans); }
.footer-legal a:hover { color: rgba(255,255,255,0.45); }

/* Profile Preview Card */
.profile-preview {
  background: var(--purple-deep);
  padding: 60px; position: relative; overflow: hidden;
}
.profile-preview::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(200,150,42,0.08) 0%, transparent 60%);
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }

/* ── UTILITIES ── */
.two-col  { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col-left  { display: grid; grid-template-columns: 3fr 2fr; gap: 72px; align-items: start; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-36 { margin-top: 36px; }
.mt-48 { margin-top: 48px; }
.mt-52 { margin-top: 52px; }
.mb-0  { margin-bottom: 0; }
.mb-14 { margin-bottom: 14px; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  :root { --section-pad: 72px 40px; }
  .topbar, .navbar, footer, .trust-bar, .ins-cats { padding-left: 36px; padding-right: 36px; }
  .hero-content, .page-hero-content { padding-left: 36px; padding-right: 36px; }
  .display-title { font-size: 58px; }
  .section-title { font-size: 36px; }
  .page-title { font-size: 42px; }
  .cap-grid, .svc-grid, .diff-grid, .two-col, .svc-detail-grid { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: repeat(2,1fr); }
  .ins-prev-grid, .photo-strip { grid-template-columns: 1fr; }
  .team-grid, .insights-grid, .ind-grid, .pt-grid { grid-template-columns: repeat(2,1fr); }
  .pillars-grid { grid-template-columns: repeat(4,1fr); }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .corr-grid { grid-template-columns: 1fr; }
  .two-col-left { grid-template-columns: 1fr; }
  .photo-strip { height: auto; }
  .strip-item { height: 220px; }
}

@media (max-width: 640px) {
  :root { --section-pad: 56px 20px; }
  .display-title { font-size: 38px; }
  .hero { height: 580px; }
  .page-hero { height: 400px; }
  .section-title { font-size: 30px; }
  .page-title { font-size: 30px; }
  .metrics-grid, .gov-grid, .feat-grid, .pillars-grid,
  .ind-grid, .insights-grid, .team-grid, .pt-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-logo-icon { height: 32px; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-band h2 { font-size: 32px; }
  .topbar { display: none; }
}
