/* ============================================================
   Media Mantra Global — Redesigned Color System
   Palette: #FFFFFF · #D3D3D3 · #A9A9A9 · #696969 · #B12121 · #7B0910
   
   Color Roles:
   --white      #FFFFFF  → page bg, card bg, navbar bg
   --gray-100   #D3D3D3  → light surfaces, subtle borders, section bg
   --gray-300   #A9A9A9  → mid borders, secondary icons, dividers
   --gray-600   #696969  → muted text, labels, secondary content
   --red        #B12121  → primary accent: CTAs, links, highlights, active
   --red-dark   #7B0910  → dark sections: services, footer, mobile nav
   --ink        #1a1a1a  → body text, headings, dark elements
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&family=DM+Serif+Display:ital@0;1&display=swap');

/* ── CSS Custom Properties ───────────────────────────────── */
:root {
  --white:    #FFFFFF;
  --gray-100: #D3D3D3;
  --gray-300: #A9A9A9;
  --gray-600: #696969;
  --red:      #B12121;
  --red-dark: #7B0910;
  --ink:      #1a1a1a;
  --ink-faint: rgba(26,26,26,.08);
  --ink-muted: rgba(26,26,26,.5);
  --red-glow: rgba(177,33,33,.12);
  --z-nav: 200;
}

/* ── Reset & Base ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  overflow-x: hidden;
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── Font Utilities ──────────────────────────────────────── */
.font-display   { font-family: 'Anton', sans-serif; }
.font-condensed { font-family: 'Bebas Neue', sans-serif; }
.font-serif     { font-family: 'DM Serif Display', Georgia, serif; }
.font-sans      { font-family: 'DM Sans', sans-serif; }
.accent-italic  { font-style: italic; color: var(--red); }

/* ── Layout Helpers ──────────────────────────────────────── */
.max-w-1440 { max-width: 1440px; }
.max-w-1200 { max-width: 1200px; }
.mx-auto    { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.relative   { position: relative; }
.z-1        { z-index: 1; }
.z-4        { z-index: 4; }
.flex        { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-3      { gap: 12px; }
.flex-shrink-0 { flex-shrink: 0; }
.hidden     { display: none; }

@media (min-width: 768px)  {
  .md-flex    { display: flex; }
  .md-px-12   { padding-left: 48px; padding-right: 48px; }
  .md-h-10    { height: 60px; }
  .md-block   { display: block; }
}

@media (min-width: 1024px) {
  .lg-block   { display: block; }
  .lg-hidden  { display: none; }
}

@media (min-width: 480px){
  .img  { max-width: 70%;}
}

/* ── Reveal Animations ───────────────────────────────────── */
.reveal-section .reveal-child,
.reveal-section.reveal-child {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-section.is-visible .reveal-child,
.reveal-section.is-visible.reveal-child {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 75ms !important; }

/* ── Keyframes ───────────────────────────────────────────── */
@keyframes marqueeRoll        { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes marqueeRollReverse { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@keyframes scrollPulse        { 0%,100% { opacity:.3; transform:scaleY(1); } 50% { opacity:1; transform:scaleY(1.08); } }
@keyframes rotateSlow         { from { transform: rotate(0deg); }     to { transform: rotate(360deg); } }
@keyframes pulseDot           { 0%,100% { opacity:1; } 50% { opacity:.5; } }
@keyframes csAutoScroll       { 0% { transform: translateX(0); }      100% { transform: translateX(-50%); } }

/* ── Shared Components ───────────────────────────────────── */
.section-eyebrow {
  font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gray-600); display: flex; align-items: center; gap: 12px;
  margin-bottom: 40px;
}
.section-eyebrow-pink {
  font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--red);
  margin-bottom: 12px; display: flex; align-items: center; justify-content: center; gap: 12px;
}
.eyebrow-line       { width: 28px; height: 1px; background: var(--red); flex-shrink: 0; }
.eyebrow-line-pink  { width: 28px; height: 1px; background: var(--red); flex-shrink: 0; }

.text-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1.5px solid var(--ink); padding-bottom: 3px;
  transition: color .2s, border-color .2s;
}
.text-link:hover { color: var(--red); border-color: var(--red); }

/* ── Navbar ──────────────────────────────────────────────── */
#main-nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: var(--z-nav); height: 100px;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 24px; transition: background .3s, box-shadow .3s, border-color .3s;
}
@media (min-width: 768px) { #main-nav { padding: 0 48px; } }

/* Clean white navbar — professional, readable */
.nav-default {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: 0 2px 16px rgba(26,26,26,.06);
}
.nav-scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(26,26,26,.10);
  border-bottom: 1px solid var(--gray-100);
}
.desktop-nav { display: none; list-style: none; gap: 32px; }
@media (min-width: 1024px) { .desktop-nav { display: flex; align-items: center; } }
.nav-link {
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); transition: color .2s; position: relative; display: inline-block;
}
.nav-link:hover { color: var(--red); }
.nav-underline {
  position: absolute; bottom: -3px; left: 0; width: 0; height: 1.5px;
  background: var(--red); transition: width .3s;
}
.nav-link:hover .nav-underline { width: 100%; }

/* Red CTA button in nav — strong accent on white */
.nav-cta {
  font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: #fff; background: var(--red); padding: 10px 20px;
  transition: background .2s;
}
.nav-cta:hover { background: var(--red-dark); }
.mobile-menu-btn {
  display: flex; flex-direction: column; gap: 5px; padding: 8px; background: none; border: none; cursor: pointer;
}
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
.mobile-menu-btn span { width: 22px; height: 1.5px; background: var(--ink); display: block; }

/* Mobile nav: dark red — immersive, bold */
.mobile-overlay {
  position: fixed; inset: 0; z-index: 190;
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  padding: 48px 32px;
  background: var(--red-dark);
  transform: translateX(100%); transition: transform .5s cubic-bezier(.16,1,.3,1);
}
.mobile-overlay.open { transform: translateX(0); }
.mobile-close {
  position: absolute; top: 24px; right: 24px; background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,.5); transition: color .2s; padding: 8px;
}
.mobile-close:hover { color: #fff; }
.mobile-nav-link {
  font-family: 'Anton', sans-serif;
  font-size: clamp(44px, 12vw, 72px);
  color: var(--white); line-height: 1.15; transition: color .2s;
}
.mobile-nav-link:hover { color: var(--gray-100); }
.mobile-cta {
  margin-top: 32px; font-family: 'DM Sans', sans-serif;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.5); border-top: 1px solid rgba(255,255,255,.15); padding-top: 28px;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero-section {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 120px 16px 48px; overflow: hidden;
}
@media (min-width: 768px) { .hero-section { padding: 120px 48px 64px; } }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;
}
/* Overlay: dark bottom-heavy scrim for text legibility — no colour tint */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.04) 0%,
    rgba(0,0,0,.15) 40%,
    rgba(26,26,26,.55) 75%,
    rgba(26,26,26,.78) 100%);
}
/* Subtle red grid — very faint, structural feel */
.hero-grid {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background-image:
    linear-gradient(rgba(177,33,33,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(177,33,33,.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
/* Red glow vignette bottom-right — accent only */
.hero-glow {
  position: absolute; bottom: -120px; right: -80px;
  width: 500px; height: 500px; z-index: 2; pointer-events: none;
  background: radial-gradient(circle, rgba(177,33,33,.18) 0%, transparent 65%);
}
.hero-content { position: relative; z-index: 4; }
.scroll-indicator {
  position: absolute; bottom: 56px; right: 48px;
  flex-direction: column; align-items: center; gap: 10px; z-index: 4;
}
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
.scroll-text {
  font-size: 9px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.4); writing-mode: vertical-rl;
}

/* ── Marquee Band ────────────────────────────────────────── */
/* Deep red band — strong separator, brand moment */
.marquee-band {
  background: var(--red-dark);
  padding: 12px 0; overflow: hidden;
}
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marqueeRoll 18s linear infinite;
}
.marquee-item {
  font-family: 'Bebas Neue', sans-serif; font-size: 17px; letter-spacing: .12em;
  color: var(--white); padding: 0 36px; flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 36px;
}
.marquee-dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,.4); border-radius: 50%; display: inline-block;
}

/* ── About ───────────────────────────────────────────────── */
/* Clean white — breathing room after the marquee */
.about-section {
  background: var(--white);
  padding: 64px 16px;
}

@media (min-width: 768px) {
  .about-section {
    padding: 120px 48px;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
  }
}

.about-heading {
  font-size: clamp(40px, 4.8vw, 76px);
  line-height: .95;
  color: var(--ink);
}

.about-subheading {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 20px;
}

/* Stats: thin top border in light gray, numbers in ink, accent suffix in red */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-100);
}

@media (min-width: 768px) {
  .stats-grid {
    gap: 20px;
    margin-top: 52px;
    padding-top: 36px;
  }
}

.stat-num {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  color: var(--ink);
  letter-spacing: -.02em;
}

.stat-suffix {
  font-size: .4em;
  vertical-align: super;
  color: var(--red);
}

.stat-label {
  font-size: clamp(7px, 1.2vw, 10px);
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-top: 6px;
  line-height: 1.3;
}

@media (max-width: 480px) {
  .about-grid { text-align: center !important; }
  .about-heading, .about-subheading, .about-body { text-align: center !important; margin-left: auto; margin-right: auto; }
  .section-eyebrow { text-align: center !important; justify-content: center !important; }
  .text-link { display: flex; justify-content: center !important; }
  .stats-grid { justify-items: center !important; }
}

/* ── Clients ─────────────────────────────────────────────── */
/* Light gray surface — neutral contrast after white about */
.clients-section {
  padding: 64px 0 64px; overflow: hidden; position: relative;
  background: var(--gray-100);
}
@media (min-width: 768px) { .clients-section { padding: 100px 0; } }
.clients-grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(26,26,26,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,26,26,.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.clients-header { text-align: center; padding: 0 16px; margin-bottom: 48px; }
@media (min-width: 768px) { .clients-header { padding: 0 48px; margin-bottom: 56px; } }
.clients-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gray-600); margin-bottom: 16px; }
.clients-heading {
  font-size: clamp(36px, 5vw, 64px); font-weight: 700; line-height: 1.05;
  color: var(--ink); letter-spacing: -.02em; margin-bottom: 16px;
}
.clients-subtext { font-size: 15px; color: var(--gray-600); max-width: 540px; margin: 0 auto; line-height: 1.6; }

.track-wrap { position: relative; width: 100%; overflow: hidden; margin-bottom: 16px; }
.track-fade-left {
  position: absolute; top: 0; bottom: 0; left: 0; width: 80px; z-index: 10; pointer-events: none;
  background: linear-gradient(to right, var(--gray-100), transparent);
}
.track-fade-right {
  position: absolute; top: 0; bottom: 0; right: 0; width: 80px; z-index: 10; pointer-events: none;
  background: linear-gradient(to left, var(--gray-100), transparent);
}
@media (min-width: 768px) { .track-fade-left, .track-fade-right { width: 120px; } }
.track-inner {
  display: flex; gap: 14px; width: max-content; padding: 6px 0; will-change: transform;
}
.track-inner:hover { animation-play-state: paused; }
.track-left  { animation: marqueeRoll var(--dur, 32s) linear infinite; }
.track-right { animation: marqueeRollReverse var(--dur, 28s) linear infinite; }

/* Chips: white on gray bg — clean pop */
.chip {
  display: inline-flex; align-items: center; white-space: nowrap;
  flex-shrink: 0; transition: all .2s; cursor: default;
}
.chip-logo {
  padding: 6px 12px; border-radius: 999px; background: var(--white);
  border: 1.5px solid var(--gray-300);
  box-shadow: 0 2px 8px rgba(26,26,26,.06);
}
.chip-logo:hover { border-color: var(--red); box-shadow: 0 4px 16px rgba(177,33,33,.12); }
.chip-img { width: 64px; height: 28px; object-fit: contain; }
.chip-text {
  padding: 10px 20px; border-radius: 999px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .04em;
  border: 1.5px solid var(--gray-300); background: var(--white);
  color: var(--ink); box-shadow: 0 2px 8px rgba(26,26,26,.06);
}
.chip-text:hover { border-color: var(--red); color: var(--red); }
/* Accent chip: light red tint — warm, stands out in the track */
.chip-accent {
  padding: 10px 20px; border-radius: 999px;
  font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .04em;
  background: #fff0f0;
  border: 1.5px solid rgba(177,33,33,.2); color: var(--red-dark);
}
.chip-accent:hover { border-color: var(--red); }
/* Notable chip: dark ink pill — premium, authoritative */
.chip-notable {
  padding: 12px 28px; border-radius: 999px;
  font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .06em;
  background: var(--ink);
  color: #fff; box-shadow: 0 8px 24px rgba(26,26,26,.18);
}

/* ── Results ─────────────────────────────────────────────── */
/* White — clean, trustworthy section */
.results-section { background: var(--white); padding: 64px 16px 80px; overflow: hidden; }
@media (min-width: 768px) { .results-section { padding: 80px 48px; } }
.results-header { margin-bottom: 32px; }
@media (min-width: 768px) { .results-header { margin-bottom: 40px; } }
.results-heading {
  font-size: clamp(28px, 4vw, 48px); font-weight: 800;
  line-height: 1.08; color: var(--ink); letter-spacing: -.02em; margin-bottom: 10px;
}
.results-subtext { font-size: 14px; color: var(--gray-600); line-height: 1.6; max-width: 440px; margin: 0 auto; }
.results-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) { .results-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .results-grid { grid-template-columns: repeat(4,1fr); gap: 18px; } }

/* Light card: white with gray border — minimal, clean */
.result-card {
  border-radius: 16px; padding: 24px;
  border: 1.5px solid var(--gray-100);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(26,26,26,.04);
  transition: transform .5s, box-shadow .5s, border-color .5s;
  text-align: center;
}
@media (min-width: 640px) { .result-card { text-align: left; } }
.result-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,26,26,.1); border-color: var(--gray-300); }

/* Dark card: red gradient — standout highlight card */
.result-card-dark {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  border-color: transparent;
}
.result-card-dark:hover { box-shadow: 0 12px 40px rgba(177,33,33,.25); }
.result-card-top { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; justify-content: center; }
@media (min-width: 640px) { .result-card-top { justify-content: flex-start; } }
.icon-accent { color: var(--red); }
.icon-light  { color: rgba(255,255,255,.9); }
.result-market { font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--gray-600); }
.market-light  { color: rgba(255,255,255,.85); }
.result-num-wrap { display: flex; align-items: baseline; gap: 2px; margin-bottom: 6px; line-height: 1; justify-content: center; }
@media (min-width: 640px) { .result-num-wrap { justify-content: flex-start; } }
.result-num  { font-size: clamp(40px,4.5vw,56px); letter-spacing: -.02em; color: var(--ink); }
.result-suffix { font-family: 'Anton',sans-serif; font-size: clamp(24px,2.8vw,34px); margin-left: 2px; color: var(--red); }
.text-light  { color: rgba(255,255,255,.9) !important; }
.result-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); margin-bottom: 6px; }
.result-desc  { font-size: 12.5px; line-height: 1.6; color: var(--gray-600); margin-bottom: 14px; }
.text-light-muted { color: rgba(255,255,255,.8) !important; }
.result-bar-bg { height: 2.5px; border-radius: 999px; overflow: hidden; background: var(--gray-100); }
.bar-bg-light  { background: rgba(255,255,255,.2); }
.result-bar    { height: 100%; border-radius: 999px; transition: width 1.2s cubic-bezier(.16,1,.3,1) .2s; }
.bar-accent    { background: var(--red); }
.bar-light     { background: rgba(255,255,255,.8); }
.results-ticker { overflow: hidden; border-top: 1px solid var(--gray-100); padding-top: 20px; margin-top: 32px; }
.ticker-track {
  display: flex; gap: 20px; white-space: nowrap;
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray-600); align-items: center;
  animation: marqueeRoll 24s linear infinite;
}
.ticker-dot { color: var(--red); }

/* ── Framework ───────────────────────────────────────────── */
/* Light gray — subtle change from white, structured feel */
.framework-section { background: var(--gray-100); padding: 64px 16px; position: relative; overflow: hidden; }
@media (min-width: 768px) { .framework-section { padding: 100px 48px; } }
.framework-header { margin-bottom: 48px; }
@media (min-width: 768px) { .framework-header { margin-bottom: 64px; } }
.framework-heading {
  font-size: clamp(40px, 5vw, 76px); line-height: .94; color: var(--ink);
}
.framework-subtext { font-size: 14px; color: var(--gray-600); line-height: 1.6; max-width: 460px; margin: 14px auto 0; }
.framework-steps {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--gray-300); border-left: 1px solid var(--gray-300);
}
@media (min-width: 768px)  { .framework-steps { grid-template-columns: repeat(3,1fr); } }
@media (min-width: 1024px) { .framework-steps { grid-template-columns: repeat(6,1fr); } }
.framework-step {
  padding: 20px; border-right: 1px solid var(--gray-300); border-bottom: 1px solid var(--gray-300);
  text-align: center; transition: background .4s;
  background: var(--gray-100);
}
@media (min-width: 768px) { .framework-step { padding: 36px; } }
.framework-step:hover { background: var(--white); }
/* Step circles: red ring with red number — bold accent on gray */
.step-circle {
  width: 38px; height: 38px; border: 1.5px solid var(--red); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
  font-family: 'Anton', sans-serif; font-size: 15px; color: var(--red);
}
.step-title {
  font-family: 'DM Sans', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; color: var(--ink);
  margin-bottom: 10px; line-height: 1.3;
}
.step-desc { font-size: 11px; color: var(--gray-600); line-height: 1.6; }

/* ── Case Studies ─────────────────────────────────────────── */
/* Medium gray — creates depth between framework and services */
.cs-section {
  padding: 80px 0;
  overflow: hidden;
  background: var(--gray-300);
}
@media (min-width: 768px) { .cs-section { padding: 110px 0; } }

.cs-header {
  text-align: center; padding: 0 24px; margin-bottom: 52px;
  max-width: 1200px; margin-left: auto; margin-right: auto;
}
@media (min-width: 768px) { .cs-header { margin-bottom: 68px; } }

.cs-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--red-dark); margin-bottom: 14px;
}
.cs-eyebrow-line {
  display: inline-block; width: 32px; height: 1px;
  background: var(--red-dark);
}
.cs-heading {
  font-size: clamp(42px, 6vw, 84px); line-height: .92; color: var(--ink);
  font-family: 'Anton', sans-serif; font-weight: 400;
  text-transform: uppercase; letter-spacing: -.01em; margin-bottom: 16px;
}
.cs-italic {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-weight: 700; color: var(--red); text-transform: none;
}
.cs-subtext { font-size: 14px; color: var(--ink); line-height: 1.65; max-width: 480px; margin: 0 auto; }

/* Card shared */
.cs-card {
  flex-shrink: 0; width: 340px; height: 420px;
  border-radius: 4px; overflow: hidden; position: relative; cursor: pointer;
}
.cs-card-img { position: absolute; inset: 0; }
.cs-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}
.cs-card:hover .cs-card-img img { transform: scale(1.07); }

/* Hover scrim: red overlay */
.cs-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(123,9,16,.85) 0%, rgba(177,33,33,.25) 50%, rgba(0,0,0,.05) 100%);
  opacity: 0; transition: opacity .4s ease;
}
.cs-card:hover .cs-scrim { opacity: 1; }
.cs-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.12) 52%, transparent 100%);
  z-index: 1; pointer-events: none; transition: opacity .4s ease;
}
.cs-card:hover::after { opacity: 0; }

.cs-top-row {
  position: absolute; top: 14px; left: 14px; right: 14px;
  display: flex; justify-content: space-between; align-items: flex-start; z-index: 3;
}
.cs-badge-dark {
  font-family: 'DM Sans', sans-serif; font-size: 7px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; padding: 4px 10px;
  background: rgba(0,0,0,.68); color: #fff;
}
.cs-badge-pink {
  font-family: 'DM Sans', sans-serif; font-size: 7px; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; padding: 3px 9px;
  border: 1px solid var(--red); color: var(--red);
  background: rgba(255,255,255,.9);
}
.cs-bottom { position: absolute; bottom: 0; left: 0; right: 0; z-index: 2; padding: 0 20px 22px; }
.cs-title {
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 700;
  color: #fff; line-height: 1.2; transition: transform .38s cubic-bezier(.16, 1, .3, 1);
}
.cs-card:hover .cs-title { transform: translateY(-52px); }
.cs-industry {
  font-family: 'DM Sans', sans-serif; font-size: 8px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin-top: 4px;
  transition: transform .38s cubic-bezier(.16, 1, .3, 1);
}
.cs-card:hover .cs-industry { transform: translateY(-52px); }
.cs-stat-pill {
  display: flex; align-items: flex-end; gap: 8px;
  opacity: 0; transform: translateY(10px);
  transition: opacity .32s .08s ease, transform .32s .08s cubic-bezier(.16, 1, .3, 1);
  margin-top: 10px;
}
.cs-card:hover .cs-stat-pill { opacity: 1; transform: translateY(-46px); }
.cs-stat-num { font-family: 'Anton', sans-serif; font-size: 52px; color: #fff; line-height: 1; letter-spacing: -.01em; }
.cs-stat-lbl {
  font-family: 'DM Sans', sans-serif; font-size: 9px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.8); line-height: 1.35; padding-bottom: 8px;
}
.cs-coverage {
  font-family: 'DM Sans', sans-serif; font-size: 8px; letter-spacing: .06em;
  color: rgba(255,255,255,.65); opacity: 0; transform: translateY(6px);
  transition: opacity .28s .14s ease, transform .28s .14s ease; margin-top: 2px;
}
.cs-card:hover .cs-coverage { opacity: 1; transform: translateY(-44px); }

/* Desktop scroll */
.cs-desktop-wrap { display: none; position: relative; }
@media (min-width: 768px) { .cs-desktop-wrap { display: block; } }
.cs-track {
  display: flex; gap: 20px; width: max-content;
  padding: 8px 40px 16px;
  animation: csScroll 52s linear infinite;
}
.cs-track:hover { animation-play-state: paused; }
@keyframes csScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.cs-fade-left, .cs-fade-right {
  position: absolute; top: 0; bottom: 0; width: 120px;
  pointer-events: none; z-index: 2;
}
.cs-fade-left  { left: 0;  background: linear-gradient(to right, var(--gray-300), transparent); }
.cs-fade-right { right: 0; background: linear-gradient(to left,  var(--gray-300), transparent); }

/* Mobile slider */
.cs-mobile-wrap { display: block; position: relative; padding: 0 20px; }
@media (min-width: 768px) { .cs-mobile-wrap { display: none; } }
.cs-card-mobile { width: calc(100vw - 56px); }
.cs-mobile-overflow { overflow: hidden; border-radius: 4px; }
.cs-mobile-track { display: flex; gap: 16px; transition: transform .44s cubic-bezier(.16, 1, .3, 1); }

/* Arrows: white with red accent */
.cs-arrow {
  position: absolute; top: 50%; transform: translateY(-60%); z-index: 10;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--gray-300);
  box-shadow: 0 4px 14px rgba(0,0,0,.1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--red); transition: background .2s, border-color .2s, color .2s;
}
.cs-arrow:hover { background: var(--red); border-color: var(--red); color: #fff; }
.cs-arrow:disabled { opacity: .28; pointer-events: none; }
.cs-arrow-prev { left: -8px; }
.cs-arrow-next { right: -8px; }

/* Dots */
.cs-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.cs-dot {
  width: 6px; height: 6px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--gray-600); transition: background .22s, transform .22s; padding: 0;
}
.cs-dot-active { background: var(--red-dark); transform: scale(1.45); }

/* ── Services ────────────────────────────────────────────── */
/* Dark red — deep, impactful section. Maximum contrast. */
.services-section {
  padding: 64px 16px;
  background: var(--red-dark);
}
@media (min-width: 768px) { .services-section { padding: 120px 48px; } }
.services-header {
  display: flex; flex-direction: column; justify-content: space-between;
  align-items: flex-start; margin-bottom: 48px; gap: 16px;
}
@media (min-width: 768px) { .services-header { flex-direction: row; align-items: flex-end; margin-bottom: 72px; } }
.services-heading { font-size: clamp(44px,6vw,92px); color: var(--white); line-height: .93; }
.services-subtext { max-width: 300px; font-size: 14px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,.5); }
.services-grid {
  display: grid; grid-template-columns: 1fr;
  border-top: 1px solid rgba(255,255,255,.15);
}
@media (min-width: 768px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3,1fr); } }
.service-item {
  position: relative; overflow: hidden; padding: 28px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  border-right: 1px solid rgba(255,255,255,.12);
  min-height: 220px; transition: all .5s;
}
@media (min-width: 768px) { .service-item { padding: 40px; min-height: 260px; } }
/* Hover fill: lighter red — not jarring, still on-palette */
.service-hover-fill {
  position: absolute; inset: 0; background: var(--red);
  transform: translateY(100%); transition: transform .5s cubic-bezier(.16,1,.3,1); z-index: 0;
}
.service-item:hover .service-hover-fill { transform: translateY(0); }
.service-content { position: relative; z-index: 1; }
/* Number: use light gray instead of red — readable on dark-red bg */
.service-num {
  font-size: 13px; letter-spacing: .12em; color: var(--gray-300); margin-bottom: 20px;
  transition: color .3s;
}
.service-item:hover .service-num { color: rgba(255,255,255,.5); }
.service-name {
  font-size: 22px; color: var(--white); line-height: 1.1; margin-bottom: 14px; letter-spacing: .01em;
}
@media (min-width: 768px) { .service-name { font-size: 26px; } }
.service-desc {
  font-size: 13px; font-weight: 300; line-height: 1.6;
  color: rgba(255,255,255,.45); transition: color .3s;
}
.service-item:hover .service-desc { color: rgba(255,255,255,.9); }
.service-arrow {
  display: block; margin-top: 24px; font-size: 20px;
  color: rgba(255,255,255,.2); transition: all .3s;
}
.service-item:hover .service-arrow { color: var(--white); transform: translateX(5px); }

/* ── Insights ────────────────────────────────────────────── */
/* Light gray again — calm reading section after intense services */
.insights-section {
  padding: 64px 16px;
  background: var(--gray-100);
}
@media (min-width: 768px) { .insights-section { padding: 120px 48px; } }
.insights-header {
  display: flex; flex-direction: column; justify-content: space-between;
  align-items: center; margin-bottom: 40px; gap: 20px;
}
@media (min-width: 768px) { .insights-header { flex-direction: row; align-items: flex-end; margin-bottom: 56px; } }
.insights-heading { font-size: clamp(44px,6vw,92px); line-height: .93; color: var(--ink); }
.insights-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; background: var(--gray-300);
  border: 1px solid var(--gray-300);
}
@media (min-width: 768px) { .insights-grid { grid-template-columns: repeat(3,1fr); } }

/* Cards: white on gray grid — bright, magazine-like */
.insight-card {
  background: var(--white); padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  cursor: pointer; transition: background .3s, opacity .5s, transform .5s;
}
@media (min-width: 768px) { .insight-card { padding: 36px; } }
.insight-card:hover { background: #fff8f8; }
.insight-tag  { font-size: 9px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--red); }
.insight-headline { font-family: 'DM Serif Display', Georgia, serif; font-size: 18px; line-height: 1.35; color: var(--ink); flex: 1; }
@media (min-width: 768px) { .insight-headline { font-size: 20px; } }
.insight-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 20px; border-top: 1px solid var(--gray-100); }
.insight-date  { font-size: 10px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-600); }
.insight-arrow { font-size: 17px; color: var(--ink); transition: transform .2s, color .2s; }
.insight-card:hover .insight-arrow { transform: translate(2px,-2px); color: var(--red); }

/* ── Final CTA ───────────────────────────────────────────── */
/* White — clean close, contrast with dark footer coming next */
.cta-section {
  padding: 64px 16px; text-align: center; position: relative; overflow: hidden;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
@media (min-width: 768px) { .cta-section { padding: 120px 48px; } }
/* Subtle red glow center for warmth */
.cta-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(177,33,33,.06) 0%, transparent 70%);
}
.cta-eyebrow {
  font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gray-600); margin-bottom: 16px;
}
.cta-heading { font-size: clamp(40px,8vw,80px); line-height: .9; color: var(--ink); margin-bottom: 20px; }
.cta-body {
  font-size: 15px; color: var(--gray-600); line-height: 1.6;
  max-width: 440px; margin: 0 auto 40px;
}
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
/* Primary button: solid red — the main action */
.btn-primary {
  background: var(--red); color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  padding: 16px 36px; display: inline-flex; align-items: center; gap: 10px;
  transition: background .2s;
}
.btn-primary:hover { background: var(--red-dark); }
/* Outline button: dark border — secondary, clean */
.btn-outline {
  background: transparent; color: var(--ink);
  font-family: 'DM Sans', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  padding: 16px 36px; border: 1.5px solid var(--gray-300);
  display: inline-flex; align-items: center; gap: 10px; transition: all .2s;
}
.btn-outline:hover { border-color: var(--red); color: var(--red); }

/* ── Footer ──────────────────────────────────────────────── */
/* Near-black — professional close, pairs with red-dark marquee band */
footer {
  background: #1a0404;
  border-top: 3px solid var(--red-dark);
  padding: 40px 20px 24px;
}

.footer-inner { max-width: 1280px; margin: 0 auto; }

.footer-top {
  display: flex; flex-direction: column; gap: 0; align-items: stretch;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-section {
  padding-bottom: 20px; margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-section:last-child { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }

.footer-logo { display: flex; flex-direction: column; align-items: center; text-align: center; }
.logo-wrap { display: inline-block; margin-bottom: 12px; line-height: 0; }
.footer-logo-img { height: 60px; width: auto; display: block; object-fit: contain; }
.footer-logo p { font-size: 11px; color: rgba(255,255,255,.35); line-height: 1.6; margin-bottom: 14px; text-align: center; }

.social-links { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.social-link {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: rgba(255,255,255,.35);
  text-decoration: none; cursor: pointer;
  transition: border-color .2s, color .2s, background .2s;
}
.social-link:hover { border-color: var(--red); color: #fff; background: var(--red); }

footer h4 {
  font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); margin: 0 0 12px 0; text-align: center;
}

.offices-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.office-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px; padding: 10px 6px; text-align: center;
}
.office-card .footer-office-name {
  font-size: 8px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gray-300); margin: 0 0 5px 0; text-align: center;
}
.office-card p { font-size: 9px; color: rgba(255,255,255,.4); line-height: 1.7; margin: 0; text-align: center; }

.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.services-grid a {
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px; padding: 9px 10px;
  font-size: 10px; color: rgba(255,255,255,.45);
  text-decoration: none; text-align: center; line-height: 1.4;
  transition: color .2s, background .2s;
}
.services-grid a.full-width { grid-column: 1 / -1; }
.services-grid a:hover { color: var(--white); background: rgba(255,255,255,.08); }

.footer-links-3col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.footer-links-3col h4 { font-size: 9px; margin-bottom: 10px; }
.footer-links-3col .links-wrap { display: flex; flex-direction: column; align-items: center; gap: 7px; }
.footer-links-3col a.flink {
  display: block; font-size: 10px; color: rgba(255,255,255,.45);
  text-decoration: none; text-align: center; transition: color .2s; margin: 0;
}
.footer-links-3col a.flink:hover { color: var(--white); }

.links-wrap { display: flex; flex-direction: column; }
footer a.flink {
  display: block; font-size: 11px; color: rgba(255,255,255,.4);
  text-decoration: none; margin-bottom: 8px; transition: color .2s; text-align: left;
}
footer a.flink:hover { color: var(--white); }

.footer-contact { text-align: center; }
.footer-contact p { font-size: 11px; color: rgba(255,255,255,.4); line-height: 1.7; text-align: center; margin-bottom: 12px; }

.footer-bottom {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding-top: 20px; text-align: center;
}
.footer-bottom p { font-size: 10px; color: rgba(255,255,255,.2); text-align: center; }
.footer-bottom a { color: rgba(255,255,255,.2); text-decoration: none; transition: color .2s; }
.footer-bottom a:hover { color: var(--red); }

.btn-book-call {
  display: inline-block; padding: 9px 24px;
  background: var(--red); color: #fff;
  font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  text-decoration: none; transition: background .2s; border-radius: 3px;
}
.btn-book-call:hover { background: var(--red-dark); }

/* ── TABLET: 768px ───────────────────────────────────────── */
@media (min-width: 768px) {
  footer { padding: 48px 28px 28px; }
  .footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; flex-direction: unset; }
  .footer-section { padding-bottom: 0; margin-bottom: 0; border-bottom: none; }

  .offices-grid { display: block; }
  .office-card { background: none; border: none; border-radius: 0; padding: 0; text-align: left; }
  .office-card .footer-office-name { font-size: 9px; text-align: left; margin-top: 12px; margin-bottom: 3px; }
  .office-card:first-child .footer-office-name { margin-top: 0; }
  .office-card p { font-size: 11px; text-align: left; color: rgba(255,255,255,.45); }

  .services-grid { display: block; }
  .services-grid a {
    display: block; background: none; border: none; border-radius: 0; padding: 0;
    font-size: 11px; color: rgba(255,255,255,.4);
    text-align: left; justify-content: flex-start; margin-bottom: 8px;
  }
  .services-grid a.full-width { grid-column: unset; }

  .footer-links-3col { display: contents; }
  .footer-links-3col h4 { font-size: 10px; text-align: left; margin-bottom: 14px; }
  .footer-links-3col .links-wrap { align-items: flex-start; }
  .footer-links-3col a.flink { font-size: 11px; text-align: left; }

  .footer-logo {
    grid-column: 1 / -1; flex-direction: row; align-items: flex-start;
    text-align: left; gap: 32px; padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,.08); margin-bottom: 0;
  }
  .logo-wrap      { margin-bottom: 0; }
  .footer-logo p  { text-align: left; margin-bottom: 0; flex: 1; }
  .social-links   { justify-content: flex-start; align-self: flex-end; }

  footer h4         { text-align: left; }
  footer a.flink    { text-align: left; }
  .footer-contact   { text-align: left; }
  .footer-contact p { text-align: left; }

  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; gap: 0; padding-top: 24px; }
  .footer-bottom p { text-align: left; }
}

/* ── TABLET LANDSCAPE: 1024px ────────────────────────────── */
@media (min-width: 1024px) {
  footer { padding: 48px 32px 28px; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 32px; }
  .footer-logo { grid-column: 1 / -1; }
}

/* ── DESKTOP: 1280px ─────────────────────────────────────── */
@media (min-width: 1280px) {
  footer { padding: 56px 48px 32px; }
  .footer-top { grid-template-columns: 240px 1fr 1fr 1fr 1fr auto; gap: 32px; padding-bottom: 40px; }
  .footer-logo { grid-column: span 1; flex-direction: column; align-items: flex-start; border-bottom: none; padding-bottom: 0; gap: 0; }
  .logo-wrap      { margin-bottom: 10px; }
  .footer-logo p  { margin-top: 0; margin-bottom: 14px; }
  .social-links   { align-self: auto; }
}
