/* ============================================================
   MDM WORLDWIDE SOLUTIONS — Main Stylesheet
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:       #0d1f3c;
  --navy-mid:   #152b50;
  --navy-light: #1e3a6e;
  --red:        #c0392b;
  --red-hover:  #a93226;
  --red-light:  #e74c3c;
  --white:      #ffffff;
  --off-white:  #f8f9fc;
  --light-grey: #eef0f5;
  --border:     #dde2ec;
  --mid-grey:   #7a8499;
  --text:       #1a1f2e;
  --text-light: #4b5768;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --max-w:     1180px;
  --pad-h:     40px;
  --pad-h-sm:  20px;
  --section-v: 100px;
  --section-v-sm: 64px;

  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:   0 2px 12px rgba(13,31,60,0.08);
  --shadow-md:   0 8px 32px rgba(13,31,60,0.12);
  --shadow-lg:   0 20px 64px rgba(13,31,60,0.18);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

/* ── Utility ────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}
.red { color: var(--red); }
.navy { color: var(--navy); }

/* ── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--pad-h);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition), height var(--transition);
}
.nav.transparent { background: transparent; }
.nav.solid {
  background: var(--navy);
  box-shadow: var(--shadow-md);
  height: 72px;
}
.nav.no-hero {
  background: var(--navy);
  box-shadow: var(--shadow-md);
  height: 72px;
}

.nav-logo { height: 52px; display: flex; align-items: center; }
.nav-logo img { height: 52px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links > li > a.active { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

/* Dropdown — split link + chevron */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-link {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color var(--transition);
  cursor: pointer;
}
.nav-dropdown-link:hover { color: var(--white); }
.nav-dropdown-chevron {
  color: rgba(255,255,255,0.85);
  padding: 0 2px 0 4px;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.nav-dropdown-chevron svg { transition: transform var(--transition); }
.nav-dropdown:hover .nav-dropdown-chevron { color: var(--white); }
.nav-dropdown:hover .nav-dropdown-chevron svg { transform: rotate(180deg); }
.nav-dropdown:hover .nav-dropdown-link { color: var(--white); }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 12px;
  background: var(--white);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  border-left: 3px solid transparent;
}
.dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--navy);
  border-left-color: var(--red);
}
.dropdown-menu a.active {
  color: var(--navy);
  background: var(--off-white);
  border-left-color: var(--red);
  font-weight: 600;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--red);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--red-hover) !important;
  transform: translateY(-1px);
}
.nav-cta.active::after { display: none !important; }

/* Mobile nav */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy);
  padding: 24px var(--pad-h-sm);
  flex-direction: column;
  gap: 0;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { display: flex; }
.mobile-menu a, .mobile-menu .mobile-services-toggle {
  display: block;
  padding: 14px 0;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--white); }
.mobile-services-toggle {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-sub {
  display: none;
  padding: 8px 0 0 16px;
}
.mobile-sub.open { display: block; }
.mobile-sub a {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  color: rgba(255,255,255,0.7);
}
.mobile-menu .nav-cta {
  margin-top: 16px;
  text-align: center;
  justify-content: center;
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,31,60,0.92) 0%,
    rgba(13,31,60,0.78) 50%,
    rgba(13,31,60,0.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 120px var(--pad-h) 80px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.2s;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: 1px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.4s;
}
.hero-title .accent { color: var(--red-light); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: rgba(255,255,255,0.95);
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.65;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.6s;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.8s;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1.2s;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.4));
  animation: scrollDrop 1.5s ease infinite 1.4s;
}

/* Page hero (shorter, for interior pages) */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-content {
  padding: 140px var(--pad-h) 80px;
}
.page-hero .hero-title {
  font-size: clamp(40px, 6vw, 72px);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(192,57,43,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-red-outline {
  background: transparent;
  color: var(--red);
  border: 1.5px solid var(--red);
}
.btn-red-outline:hover {
  background: var(--red);
  color: var(--white);
}

/* ── Section Headers ────────────────────────────────────────── */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 20px;
}
.section-title.white { color: var(--white); }
.section-sub {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-light);
  max-width: 680px;
  line-height: 1.7;
}
.section-sub.white { color: rgba(255,255,255,0.75); }
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-sub { margin: 0 auto; }

.red-rule {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin-bottom: 20px;
  border-radius: 2px;
}
.red-rule.centered { margin: 0 auto 20px; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 0 0 8px 8px;
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card.navy-top { border-top-color: var(--navy); }
.card-icon {
  width: 44px; height: 44px;
  background: var(--off-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--red);
}
.card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  margin-top: 16px;
  transition: gap var(--transition);
}
.card-link:hover { gap: 10px; }

/* ── Grid Layouts ───────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── Sections ───────────────────────────────────────────────── */
section {
  padding: var(--section-v) 0;
}
section.tight { padding: 64px 0; }
section.bg-off-white { background: var(--off-white); }
section.bg-light { background: var(--light-grey); }
section.bg-navy { background: var(--navy); }
section.bg-navy-mid { background: var(--navy-mid); }

/* ── Value Props Strip ──────────────────────────────────────── */
.value-strip {
  background: var(--navy);
  padding: 0;
}
.value-strip .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.value-item {
  padding: 48px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.value-item::before {
  content: '';
  position: absolute;
  top: 0; left: 40px;
  width: 32px; height: 3px;
  background: var(--red);
}
.value-item:last-child { border-right: none; }
.value-item h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}
.value-item p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

/* ── Sectors ────────────────────────────────────────────────── */
.sector-tag {
  display: inline-block;
  padding: 7px 16px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  margin: 4px;
  transition: all var(--transition);
}
.sector-tag:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.sectors-wrap { margin: 20px 0; }

/* ── Stats ──────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--navy);
  border-radius: 8px;
  overflow: hidden;
}
.stat-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  line-height: 1;
  color: var(--red-light);
  display: block;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  display: block;
}

/* ── Quote / CTA Block ──────────────────────────────────────── */
.quote-block {
  background: var(--navy);
  border-left: 4px solid var(--red);
  padding: 40px 48px;
  border-radius: 0 8px 8px 0;
  margin: 40px 0;
}
.quote-block p {
  font-size: 20px;
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
}
.quote-block .attr {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-light);
  font-style: normal;
}

/* ── CTA Strip ──────────────────────────────────────────────── */
.cta-strip {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
.cta-strip .section-title { color: var(--white); }
.cta-strip .section-sub { color: rgba(255,255,255,0.7); margin: 0 auto 36px; }

/* ── Team Grid ──────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px;
  transition: box-shadow var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.team-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.team-bio {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ── Approach Pillars ───────────────────────────────────────── */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.pillar {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
}
.pillar:last-child { border-right: none; }
.pillar-num {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 1;
  color: var(--light-grey);
  margin-bottom: 16px;
  display: block;
}
.pillar h3 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 12px;
}
.pillar p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-light);
}

/* ── Compliance Note ────────────────────────────────────────── */
.compliance-note {
  background: rgba(192,57,43,0.05);
  border: 1px solid rgba(192,57,43,0.2);
  border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 40px 0;
}
.compliance-note strong { color: var(--red); }
.compliance-note p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

/* ── Two-column Content ─────────────────────────────────────── */
.two-col-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.two-col-content.flip { direction: rtl; }
.two-col-content.flip > * { direction: ltr; }
.two-col-img {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.two-col-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* ── Timeline ───────────────────────────────────────────────── */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 24px; left: 0; right: 0;
  height: 2px;
  background: var(--border);
}
.timeline-step {
  padding: 0 24px;
  padding-top: 56px;
  position: relative;
}
.timeline-dot {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--red);
}
.timeline-step h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
  margin-bottom: 8px;
}
.timeline-step p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-light);
}

/* ── Service List (KOL page) ────────────────────────────────── */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.service-list-item {
  border-left: 3px solid var(--red);
  padding: 20px 24px;
  background: var(--off-white);
  border-radius: 0 8px 8px 0;
  transition: background var(--transition), box-shadow var(--transition);
}
.service-list-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.service-list-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.service-list-item p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-light);
  margin: 0;
}

/* ── StudySignal Branding ───────────────────────────────────── */
.ss-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--navy);
}
.ss-brand .sig { color: var(--red); }
.ss-badge {
  display: inline-block;
  background: rgba(192,57,43,0.1);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-left: 12px;
}
.ss-hero-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 20px 32px;
  border-radius: 8px;
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.ss-hero-banner .tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
}

/* ── Contact Block ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-block h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.contact-detail-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: var(--off-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.contact-detail-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.contact-detail-text strong {
  display: block;
  font-weight: 600;
  color: var(--navy);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.contact-email-cta {
  display: block;
  background: var(--navy);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
}
.contact-email-cta .pre {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 12px;
  display: block;
}
.contact-email-cta .email {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  color: var(--white);
  display: block;
  margin-bottom: 24px;
  transition: color var(--transition);
}
.contact-email-cta:hover .email { color: var(--red-light); }
.contact-email-cta p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
  background: #070f1e;
  padding: 72px 0 0;
  color: rgba(255,255,255,0.65);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 56px; margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.footer-contact a {
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--white); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
}
.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  max-width: 560px;
  line-height: 1.6;
  text-align: right;
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollDrop {
  0%   { opacity: 0; transform: translateY(-8px); }
  50%  { opacity: 1; }
  100% { opacity: 0; transform: translateY(8px); }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .value-strip .container { grid-template-columns: 1fr; }
  .value-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .value-item:last-child { border-bottom: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .pillar-grid { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid var(--border); padding: 36px 0; }
  .pillar:first-child { padding-top: 0; }
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline::before { display: none; }
  .timeline-step { padding: 0 0 36px 64px; }
  .timeline-dot { left: 0; transform: none; }
  .two-col-content { grid-template-columns: 1fr; gap: 40px; }
  .two-col-content.flip { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --section-v: 64px;
    --pad-h: var(--pad-h-sm);
  }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .footer-disclaimer { text-align: left; }
  .hero-actions { flex-direction: column; align-items: center; }
  .quote-block { padding: 28px 24px; }
  .section-header { margin-bottom: 40px; }
  .ss-hero-banner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-title { font-size: 44px; }
}
