:root {
  --red: #C0272D;
  --red-dark: #9B1E23;
  --red-light: #E8474D;
  --black: #1A1A1A;
  --dark: #2D2D2D;
  --mid: #6B6B6B;
  --light: #F4F4F2;
  --white: #FFFFFF;
  --border: #E0E0E0;
}

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

html, body { background: var(--white); }
body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

/* Visible focus state for keyboard nav (CLAUDE.md a11y floor) */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ============ NAV + HERO (split, 60/40 with clip-path photo reveal) ============ */
.hero-wrap {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 760px;
  background: var(--black);
  color: var(--white);
  position: relative;
}

/* Left side: dark with subtle silhouette pattern */
.hero-left {
  position: relative;
  padding: 28px 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 56px;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,26,26,0.65) 0%, rgba(26,26,26,0.92) 100%),
    repeating-linear-gradient(135deg, rgba(192,39,45,0.06) 0 2px, transparent 2px 14px);
  pointer-events: none;
}
.hero-left::after {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -40px;
  width: 420px;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(192,39,45,0.18) 0%, transparent 70%);
  pointer-events: none;
}

/* Top nav (sits inside hero, white pill on dark left side) */
.nav {
  position: relative;
  z-index: 3;
  background: var(--white);
  border-radius: 6px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  margin-bottom: 80px;
  grid-column: 1 / -1;
}
.nav-wrap {
  position: absolute;
  top: 28px;
  left: 64px;
  right: 64px;
  z-index: 5;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo img {
  height: 36px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links > li > a {
  color: var(--black);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  padding: 10px 14px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background .2s ease, color .15s ease;
  position: relative;
}
.nav-links > li > a:hover,
.nav-links > li > a:focus-visible {
  color: var(--red);
  background: rgba(192,39,45,0.06);
}

/* Animated chevron (replaces the plain ▾) */
.nav-caret {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  color: var(--mid);
  margin-left: 2px;
  transition: transform .3s cubic-bezier(.22,1,.36,1), color .15s;
}
.has-caret:hover .nav-caret { color: var(--red); }
.nav-item-dropdown:hover > .has-caret .nav-caret,
.nav-item-dropdown:focus-within > .has-caret .nav-caret {
  transform: translateY(2px) rotate(-135deg);
}

/* ===== Animated dropdown popups (Base UI / 21st.dev pattern, vanilla CSS) ===== */
.nav-item-dropdown { position: relative; }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) scale(0.94);
  background: var(--white);
  border-radius: 12px;
  padding: 10px;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 18px 40px rgba(15, 15, 15, 0.18),
    0 4px 14px rgba(15, 15, 15, 0.08);
  border: 1px solid var(--border);
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform-origin: top center;
  transition:
    opacity .35s cubic-bezier(.22,1,.36,1),
    transform .35s cubic-bezier(.22,1,.36,1),
    visibility 0s linear .35s;
  z-index: 50;
}
/* Hoverable bridge so cursor can travel from trigger → popup without closing */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}
/* Arrow pointer */
.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-radius: 2px;
}

.nav-item-dropdown:hover > .nav-dropdown,
.nav-item-dropdown:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) scale(1);
  transition:
    opacity .35s cubic-bezier(.22,1,.36,1),
    transform .35s cubic-bezier(.22,1,.36,1),
    visibility 0s linear 0s;
}

/* Dropdown items */
.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0;
  transition: background .15s ease, color .15s ease;
}
.nav-dropdown a + a { margin-top: 2px; }
.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: var(--light);
}
.nav-dropdown-title {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.1px;
  margin-bottom: 3px;
  transition: color .15s;
}
.nav-dropdown a:hover .nav-dropdown-title { color: var(--red); }
.nav-dropdown-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.45;
  color: var(--mid);
  letter-spacing: 0.1px;
}

/* Wide grid variant for Certifications */
.nav-dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  min-width: 560px;
  padding: 12px;
}

/* Left-edge anchor for the first dropdown (About) — keeps it inside the nav */
.nav-item-dropdown:first-of-type > .nav-dropdown {
  left: 0;
  transform: scale(0.94);
  transform-origin: top left;
}
.nav-item-dropdown:first-of-type > .nav-dropdown::after {
  left: 22px;
  transform: rotate(45deg);
}
.nav-item-dropdown:first-of-type:hover > .nav-dropdown,
.nav-item-dropdown:first-of-type:focus-within > .nav-dropdown {
  transform: scale(1);
}

/* Right-edge anchor for the last dropdown (Resources) so it stays in-viewport */
.nav-item-dropdown:last-of-type > .nav-dropdown {
  left: auto;
  right: 0;
  transform: scale(0.94);
  transform-origin: top right;
}
.nav-item-dropdown:last-of-type > .nav-dropdown::after {
  left: auto;
  right: 22px;
  transform: rotate(45deg);
}
.nav-item-dropdown:last-of-type:hover > .nav-dropdown,
.nav-item-dropdown:last-of-type:focus-within > .nav-dropdown {
  transform: scale(1);
}

/* Reduced-motion: instant open, no scale */
@media (prefers-reduced-motion: reduce) {
  .nav-dropdown,
  .nav-item-dropdown:last-of-type > .nav-dropdown,
  .nav-caret { transition: opacity .01s, visibility 0s !important; }
  .nav-dropdown { transform: none !important; }
  .nav-item-dropdown:hover > .nav-dropdown,
  .nav-item-dropdown:focus-within > .nav-dropdown { transform: none !important; }
}
.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-cta::before {
  content: '';
  width: 14px; height: 14px;
  background: rgba(255,255,255,0.85);
  border-radius: 50%;
  display: inline-block;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/><circle cx='8.5' cy='7' r='4'/><line x1='20' y1='8' x2='20' y2='14'/><line x1='23' y1='11' x2='17' y2='11'/></svg>") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='M16 21v-2a4 4 0 0 0-4-4H5a4 4 0 0 0-4 4v2'/><circle cx='8.5' cy='7' r='4'/><line x1='20' y1='8' x2='20' y2='14'/><line x1='23' y1='11' x2='17' y2='11'/></svg>") center/contain no-repeat;
}

/* Hero brand cluster (top-left under nav) */
.hero-brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 130px;
  animation: hero-fade-up .7s ease-out .2s both;
}
.hero-brand img {
  height: 44px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  background: var(--white);
  padding: 6px 8px;
  border-radius: 4px;
}
.hero-brand-text { line-height: 1.15; }
.hero-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.2px;
}
.hero-slogan {
  font-size: 10.5px;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
  font-weight: 500;
}

/* Hero text */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  animation: hero-fade-up .7s ease-out .35s both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.6px;
}
.hero-title em,
.hero-title-accent {
  font-style: italic;
  color: var(--red-light);
  font-weight: 400;
}
.hero-divider {
  width: 80px;
  height: 4px;
  background: var(--red);
  margin: 28px 0 26px;
}
.hero-copy {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-light);
  text-decoration: none;
  position: relative;
  padding: 4px 0 8px;
  transition: color .2s ease;
}
.hero-cta-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1.5px;
  background: var(--red);
  transform-origin: left center;
  transform: scaleX(0.4);
  transition: transform .3s cubic-bezier(.16,1,.3,1), background-color .2s;
}
.hero-cta-link:hover { color: var(--white); }
.hero-cta-link:hover::after { transform: scaleX(1); background: var(--white); }
.hero-cta-arrow {
  display: inline-block;
  transition: transform .25s ease-out;
}
.hero-cta-link:hover .hero-cta-arrow { transform: translateX(4px); }

/* Hero contact footer */
.hero-contact {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 720px;
  animation: hero-fade-up .7s ease-out .5s both;
}
.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  letter-spacing: 0.3px;
  color: rgba(255,255,255,0.72);
}
.hero-contact-icon {
  width: 18px;
  height: 18px;
  color: var(--red-light);
  flex-shrink: 0;
}

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.btn {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .15s;
}
.btn-primary { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); }
.btn-ghost-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-ghost-light:hover { border-color: var(--white); }
.btn-arrow::after { content: '→'; font-size: 14px; }

/* Right side: photo with diagonal clip-path reveal */
.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--black);
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
  animation: hero-clip-reveal 1.2s cubic-bezier(.16,1,.3,1) .15s both;
}
@keyframes hero-clip-reveal {
  from { clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); }
  to   { clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%); }
}
/* Red accent strip at bottom of right photo */
.hero-right::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--red);
  z-index: 2;
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero-photo,
  .hero-brand,
  .hero-content,
  .hero-contact { animation: none !important; }
  .hero-photo { clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%); }
}

/* ============ FEATURE PILLS ============ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  margin: 64px 64px 0;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(26,26,26,0.12);
  overflow: hidden;
  position: relative;
  z-index: 4;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 28px 36px;
}
.feature + .feature { border-left: 1px solid var(--border); }
.feature-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.feature-copy {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.55;
}

/* ============ ABOUT ============ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 64px;
}
.about {
  padding: 90px 0 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image {
  width: 100%;
  aspect-ratio: 4/3.2;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
/* corner accent square */
.about-image-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 70px;
  height: 70px;
  border: 4px solid var(--red);
  z-index: -1;
}
/* Experience badge */
.exp-badge {
  position: absolute;
  top: 32px;
  left: -28px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.exp-badge-num {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
}
.exp-badge-num sup { font-size: 18px; vertical-align: super; }
.exp-badge-label {
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
  margin-top: 6px;
}

.about-content .eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -0.3px;
}
.section-lead {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 28px;
}
.check-list { list-style: none; display: flex; flex-direction: column; gap: 18px; }
.check-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.check-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-top: 2px;
}
.check-title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}
.check-copy {
  font-size: 13.5px;
  color: var(--mid);
  line-height: 1.6;
}

/* ============ COMPANIES / WORLD MAP ============ */
.companies {
  padding: 30px 0 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}
.stat {
  background: var(--white);
  padding: 22px 22px;
  border: 1px solid var(--border);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(26,26,26,0.04);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--red); }
.stat-label {
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 600;
  line-height: 1.4;
}

.map-wrap {
  position: relative;
  aspect-ratio: 1.4/1;
}
.world-map {
  width: 100%;
  height: 100%;
  color: #d4d4d2;
}
.map-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(26,26,26,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.map-pin-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
}
.map-pin.red { background: var(--red); }
.map-pin.red .map-pin-dot { background: var(--white); }
.map-pin.dark { background: var(--black); }
.map-pin.dark .map-pin-dot { background: var(--red-light); }
.map-pin::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0.25;
  animation: pulse 2.4s infinite ease-out;
}
.map-pin.red, .map-pin.dark { color: var(--red); }
.map-pin.white { color: var(--red); }
@keyframes pulse {
  0%   { transform: scale(0.8); opacity: 0.4; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============ CTA BAND ============ */
.cta-band {
  position: relative;
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(26,26,26,0.95) 0%, rgba(26,26,26,0.7) 50%, rgba(26,26,26,0.45) 100%);
}
.cta-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cta-band::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 5px; height: 100%;
  background: var(--red);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 64px;
  width: 100%;
  max-width: 720px;
  margin-right: auto;
  margin-left: max(64px, calc((100vw - 1180px) / 2 + 64px));
}
.cta-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-light);
  font-weight: 700;
  margin-bottom: 16px;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: -0.3px;
}
.cta-copy {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 560px;
}
/* ============ WHAT WE PROVIDE INTRO ============ */
.provide-intro {
  padding: 90px 0 60px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.provide-intro .eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 14px;
}
.provide-intro h2 {
  font-family: 'Playfair Display', serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  letter-spacing: -0.3px;
}
.provide-intro .lead {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
}

/* ============ SHARED BRAND BLOCK (used by footer) ============ */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  height: 44px;
  width: auto;
  max-width: none;
  flex-shrink: 0;
  background: var(--white);
  padding: 6px 8px;
  border-radius: 4px;
  display: block;
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
}
.brand-tag {
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 4px;
}

/* ============ SITE FOOTER (shared with cpm-certification-page) ============ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  position: relative;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
}
.site-footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 80px 0 60px;
}
.footer-col h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; list-style: none; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 200ms ease-out;
}
.footer-col a:hover { color: white; }
.footer-brand .brand-name { color: white; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); margin-top: 16px; max-width: 36ch; line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.5px;
}
.footer-bottom span { margin: 0 12px; }
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; padding: 60px 0 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

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

/* Tablet: < 1024px */
@media (max-width: 1024px) {
  .hero-wrap { grid-template-columns: 1fr 1fr; min-height: 680px; }
  .hero-left { padding: 24px 40px 56px; gap: 40px; }
  .hero-brand { margin-top: 110px; }
  .hero-title { font-size: 48px; }
  .hero-contact { grid-template-columns: 1fr 1fr; }
  .nav-wrap { left: 32px; right: 32px; }
  .nav-links { gap: 24px; }
  .nav-links li:nth-child(2),
  .nav-links li:nth-child(4),
  .nav-links li:nth-child(6) { display: none; }
  .feature-row { margin: 56px 32px 0; }
  .feature { padding: 24px 28px; }
  .container { padding: 0 32px; }
  .about, .companies { gap: 48px; padding: 70px 0 80px; }
  .section-title,
  .cta-title,
  .provide-intro h2 { font-size: 36px; }
  .cta-content {
    margin-left: max(32px, calc((100vw - 1180px) / 2 + 32px));
    padding: 64px 32px;
  }
  .exp-badge { left: -16px; width: 110px; height: 110px; }
  .exp-badge-num { font-size: 32px; }
}

/* Mobile: < 720px */
@media (max-width: 720px) {
  /* Nav: tight pill that hugs Apply Now, right-aligned */
  .nav-wrap {
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: flex-end;
  }
  .nav {
    width: auto;
    padding: 8px 8px 8px 14px;
    border-radius: 999px;
  }
  .nav-links { display: none; }
  .nav-cta {
    padding: 9px 14px;
    font-size: 11px;
    letter-spacing: 1.2px;
    border-radius: 999px;
  }
  .nav-cta::before { width: 12px; height: 12px; }

  /* Hero stacks */
  .hero-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto 320px;
    min-height: 0;
  }
  .hero-left { padding: 20px 24px 48px; gap: 32px; }
  .hero-brand { margin-top: 96px; }
  .hero-brand img { height: 36px; }
  .hero-brand-name { font-size: 16px; }
  .hero-slogan { font-size: 9.5px; letter-spacing: 1.8px; }
  .hero-content { max-width: 100%; }
  .hero-title { font-size: 40px; line-height: 1.08; }
  .hero-divider { width: 56px; height: 3px; margin: 22px 0 20px; }
  .hero-copy { font-size: 15px; margin-bottom: 26px; }
  .hero-cta-link { font-size: 12px; letter-spacing: 2.4px; }
  .hero-contact {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 22px;
  }
  .hero-photo {
    clip-path: none !important;
    animation: none !important;
  }

  /* Feature pills stack */
  .feature-row {
    grid-template-columns: 1fr;
    margin: 32px 24px 0;
  }
  .feature + .feature { border-left: none; border-top: 1px solid var(--border); }
  .feature { padding: 22px 24px; }

  /* Container */
  .container { padding: 0 24px; }

  /* About stacks */
  .about {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 50px 0 70px;
  }
  .about-image-wrap::before {
    width: 56px;
    height: 56px;
    top: -10px;
    right: -10px;
    border-width: 3px;
  }
  .exp-badge {
    top: -20px;
    left: 12px;
    width: 96px;
    height: 96px;
  }
  .exp-badge-num { font-size: 28px; }
  .exp-badge-label { font-size: 8.5px; letter-spacing: 1.4px; }
  .section-title,
  .cta-title,
  .provide-intro h2 { font-size: 30px; }
  .section-lead { font-size: 14px; }

  /* Companies / map stacks */
  .companies {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 20px 0 70px;
  }
  .map-wrap { aspect-ratio: 1.5/1; }
  .map-pin { width: 32px; height: 32px; }
  .map-pin-dot { width: 10px; height: 10px; }

  /* CTA */
  .cta-band { min-height: 0; }
  .cta-content {
    margin: 0;
    padding: 56px 24px;
    max-width: 100%;
  }

  /* What We Provide stacks */
  .provide-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 64px 0 40px;
  }

  /* Footer */
  .site-footer .container { padding: 0 24px; }
  .footer-top { padding: 48px 0 32px; }
}

/* Stats: collapse to single column at very small widths */
@media (max-width: 480px) {
  .stats-row { grid-template-columns: 1fr; gap: 12px; }
  .hero-title { font-size: 34px; }
}

/* Reduced motion: disable map-pin pulse (CLAUDE.md a11y floor) */
@media (prefers-reduced-motion: reduce) {
  .map-pin::after { animation: none; }
  * { transition: none !important; }
}
