/* ─── Reset & Variables ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white: #ffffff;
  --off-white: #f7f6f3;
  --paper: #f2f1ed;
  --grey-50: #ececea;
  --grey-100: #dddcda;
  --grey-200: #c0bfbc;
  --grey-400: #888680;
  --grey-600: #555450;
  --grey-800: #2e2d2a;
  --black: #161614;
  --blue: #163D64;
  --blue-mid: #1e4f82;
  --blue-subtle: rgba(22, 61, 100, 0.07);
  --blue-subtle-2: rgba(22, 61, 100, 0.12);
  --red: #DF2C26;
  --red-subtle: rgba(223, 44, 38, 0.07);
  --font-display: 'Eudoxus Sans', sans-serif;
  --font-body: 'Eudoxus Sans', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--off-white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ─── Custom Cursor (desktop only) ─── */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--black);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: multiply;
}
.cursor-follower {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease;
}

/* ─── Nav ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 10px 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
nav.scrolled {
  background: rgba(247, 246, 243, 0.95);
  backdrop-filter: blur(16px);
  padding: 16px 56px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo img { width: 120px; height: 100px; transition: transform 0.3s ease; }
.nav-brand {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 28px;
    letter-spacing: -0.02em;
    color: var(--blue);
    text-transform: capitalize;
}
.nav-brand span { color: var(--red); }
.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 400;
  color: var(--grey-600);
  text-decoration: none;
  letter-spacing: 0.01em;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: "";
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: none;
  text-decoration: none;
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--red); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--black);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--red); }
.mobile-menu .mobile-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 14px 36px;
  font-size: 14px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500 !important;
  margin-top: 8px;
}
.mobile-menu .mobile-cta:hover { background: var(--red) !important; }

/* ─── Hero ─── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: var(--white);
  overflow: hidden;
  padding: 0 56px;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-wash {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 70% 40%, rgba(22,61,100,0.05) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(223,44,38,0.04) 0%, transparent 60%);
  z-index: 1;
}
.hero-bg-mark {
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(160px, 26vw, 580px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0,0,0,0.04);
  pointer-events: none;
  user-select: none;
  animation: markFloat 10s ease-in-out infinite;
  z-index: 1;
}
@keyframes markFloat {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-52%) translateX(-10px); }
}
.hero-line {
  position: absolute;
  left: 0; top: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--red) 35%, var(--blue) 70%, transparent);
  opacity: 0.5;
  transform: scaleY(0);
  transform-origin: top;
  animation: lineAnim 1.2s 0.3s cubic-bezier(0.16,1,0.3,1) forwards;
  z-index: 2;
}
@keyframes lineAnim { to { transform: scaleY(1); } }

.hero-content { position: relative; z-index: 2; max-width: 820px; padding-top: 120px; padding-bottom:20px; }

.hero-overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
}
.hero-overline::before {
  content: ""; width: 24px; height: 1px;
  background: var(--red);
}
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--black);
  margin-bottom: 28px;
}
.hero-h1 .line { display: block; overflow: hidden; }
.hero-h1 .line-inner {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero-h1 .line:nth-child(1) .line-inner { animation-delay: 0.65s; }
.hero-h1 .line:nth-child(2) .line-inner { animation-delay: 0.8s; }
.hero-h1 .outline { color: transparent; -webkit-text-stroke: 2px var(--black); }
.hero-h1 .red { color: var(--red); }
.hero-h1 .blue { color: var(--blue); }
.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: var(--grey-600);
  max-width: 600px;
  line-height: 1.75;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s ease forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 1.4s ease forwards;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 15px; font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: none;
  transition: all 0.3s ease;
}
.btn-primary:hover { background: var(--red); transform: translateY(-2px); }
.btn-primary svg { transition: transform 0.3s ease; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-ghost {
  font-size: 15px;
  color: var(--grey-400);
  text-decoration: none;
  letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 6px;
  cursor: none;
  transition: color 0.3s ease;
}
.btn-ghost:hover { color: var(--black); }

.scroll-indicator {
  position: absolute;
  bottom: 32px; right: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 2s ease forwards;
  z-index: 2;
}
.scroll-text {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey-200);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--grey-200), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── Stats ─── */
.stats-strip {
  background: var(--white);
  border-top: 1px solid var(--grey-50);
  border-bottom: 1px solid var(--grey-50);
  padding: 48px 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 0 32px;
  border-right: 1px solid var(--grey-100);
  opacity: 0; transform: translateY(20px);
  transition: all 0.6s ease;
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-item.visible { opacity: 1; transform: translateY(0); }
.stat-number {
  font-family: var(--font-display);
  font-weight: 800; font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.04em;
  color: var(--black); line-height: 1;
  margin-bottom: 8px;
}
.stat-number .unit { font-size: 60%; color: var(--blue); }
.stat-label { font-size: 14px; font-weight: 400; color: var(--grey-400); line-height: 1.55; }

/* ─── Sections ─── */
section { padding: 100px 56px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 16px;
}
.section-label::before {
  content: ""; width: 20px; height: 1px;
  background: var(--red); flex-shrink: 0;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--black);
}
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Problem ─── */
.problem { background: var(--off-white); }
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.problem-body {
  font-size: 15px; font-weight: 400;
  color: var(--grey-600);
  line-height: 1.85; margin-top: 20px;
}
.problem-body strong { color: var(--black); font-weight: 500; }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  cursor: none;
  transition: gap 0.3s ease;
}
.link-arrow:hover { gap: 14px; }
.pillars { display: flex; flex-direction: column; gap: 1px; background: var(--grey-100); }
.pillar {
  background: var(--off-white);
  padding: 24px 28px;
  display: flex; align-items: flex-start; gap: 18px;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
  cursor: none;
}
.pillar:hover { background: var(--white); border-left-color: var(--red); }
.pillar-number { font-family: var(--font-display); font-size: 11px; font-weight: 600; color: var(--grey-200); min-width: 20px; padding-top: 3px; }
.pillar-title { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--black); margin-bottom: 5px; }
.pillar-desc { font-size: 14px; color: var(--grey-600); line-height: 1.65; }

/* ─── Services ─── */
.services { background: var(--white); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--grey-100); }
.service-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative; overflow: hidden;
  cursor: none;
  transition: background 0.35s ease;
}
.service-card::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--off-white); }
.service-card:hover::before { transform: scaleX(1); }
.service-num { font-family: var(--font-display); font-size: 42px; font-weight: 800; color: var(--grey-100); line-height: 1; margin-bottom: 16px; transition: color 0.4s ease; }
.service-card:hover .service-num { color: rgba(223,44,38,0.1); }
.service-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.02em; color: var(--black); margin-bottom: 10px; }
.service-desc { font-size: 14px; color: var(--grey-400); line-height: 1.7; margin-bottom: 20px; }
.service-link { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-400); text-decoration: none; cursor: none; display: inline-flex; align-items: center; gap: 6px; transition: color 0.3s ease, gap 0.3s ease; }
.service-link:hover { color: var(--red); gap: 12px; }
.services-grid .service-card:last-child { grid-column: 1 / -1; }

/* ─── Audience ─── */
.audience { background: var(--off-white); }
.audience-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.audience-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; background: var(--grey-100); }
.audience-card {
  background: var(--off-white);
  padding: 32px 24px;
  position: relative; overflow: hidden;
  cursor: none;
  min-height: 240px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background 0.3s ease;
}
.audience-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(140deg, var(--blue-subtle), transparent 60%); opacity: 0; transition: opacity 0.4s ease; }
.audience-card:hover { background: var(--white); }
.audience-card:hover::after { opacity: 1; }
.audience-icon { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; position: relative; z-index: 1; }
.audience-icon img { width: 44px; height: 44px; }
.audience-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--black); margin-bottom: 7px; position: relative; z-index: 1; }
.audience-desc { font-size: 13px; color: var(--grey-400); line-height: 1.65; position: relative; z-index: 1; }
.audience-link { margin-top: 16px; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-400); text-decoration: none; cursor: none; position: relative; z-index: 1; display: inline-flex; align-items: center; gap: 6px; transition: color 0.3s ease; }
.audience-link:hover { color: var(--blue); }

/* ─── Niche ─── */
.niche { background: var(--white); }
.niche-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.niche-visual { position: relative; height: 400px; display: flex; align-items: center; justify-content: center; }
.niche-circle { position: absolute; border-radius: 50%; }
.niche-circle:nth-child(1) { width: 480px; height: 480px; border: 1px solid var(--grey-100); animation: rotateSlow 30s linear infinite; }
.niche-circle:nth-child(2) { width: 380px; height: 380px; border: 1px solid rgba(22,61,100,0.15); animation: rotateSlow 20s linear infinite reverse; }
.niche-circle:nth-child(3) { width: 300px; height: 300px; border: 1px solid rgba(223,44,38,0.2); animation: rotateSlow 14s linear infinite; }
@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.niche-logo-center { position: relative; z-index: 2; max-width: 280px; }
.niche-tag { display: inline-block; font-family: var(--font-display); font-weight: 700; font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); border: 1px solid rgba(223,44,38,0.25); background: var(--red-subtle); padding: 5px 12px; margin-bottom: 16px; }
.niche-body { font-size: 15px; color: var(--grey-600); line-height: 1.85; margin-bottom: 14px; }
.niche-note { font-size: 14px; color: var(--grey-200); font-style: italic; margin-bottom: 32px; }

/* ─── Insights ─── */
.insights { background: var(--off-white); }
.insights-toprow { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 56px; }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--grey-100); }
.insight-card { background: var(--off-white); padding: 40px 32px; cursor: none; transition: background 0.3s ease; }
.insight-card:hover { background: var(--white); }
.insight-tag { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); margin-bottom: 14px; display: block; font-weight: 500; }
.insight-title { font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.02em; color: var(--black); line-height: 1.3; margin-bottom: 10px; }
.insight-excerpt { font-size: 14px; color: var(--grey-400); line-height: 1.75; }

/* ─── CTA ─── */
.cta-section { background: var(--blue); text-align: center; position: relative; overflow: hidden; }
.cta-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 60px 60px; }
.cta-content { position: relative; z-index: 1; }
.cta-overline { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.cta-overline::before { content: ""; width: 20px; height: 1px; background: var(--red); }
.cta-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(36px, 5vw, 70px); letter-spacing: -0.04em; line-height: 1; color: var(--white); margin-bottom: 16px; }
.cta-sub { font-size: 15px; color: rgba(255,255,255,0.6); font-weight: 400; margin-bottom: 40px; line-height: 1.75; max-width: 500px; margin-left: auto; margin-right: auto; }
.btn-large { display: inline-flex; align-items: center; gap: 12px; background: var(--red); color: var(--white); padding: 16px 40px; font-family: var(--font-display); font-size: 14px; font-weight: 700; letter-spacing: 0.04em; text-decoration: none; cursor: none; transition: all 0.3s ease; }
.btn-large:hover { background: var(--white); color: var(--blue); transform: translateY(-3px); box-shadow: 0 24px 60px rgba(0,0,0,0.2); }

/* ─── Footer ─── */
footer {
  background: var(--white);
  padding: 72px 56px 40px;
  border-top: 1px solid var(--grey-100);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { width: 120px; height: 100px; }
.footer-brand-name { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--blue); }
.footer-tagline { font-size: 14px; color: var(--grey-400); line-height: 1.7; max-width: 240px; margin-bottom: 20px; }
.footer-email { font-size: 13px; color: var(--blue); text-decoration: none; cursor: none; }
.footer-col-title {
  font-family: var(--font-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey-200); margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--grey-600); text-decoration: none; cursor: none; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--black); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--grey-50);
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy { font-size: 12px; color: var(--grey-200); }
.footer-sub { font-size: 12px; color: var(--red); letter-spacing: 0.08em; }

/* ─── Animations ─── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { transform: translateY(100%); } to { transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }

/* ─── Loader ─── */
.page-loader { position: fixed; inset: 0; background: var(--white); z-index: 9999; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 20px; transition: opacity 0.6s ease, transform 0.6s ease; }
.page-loader.done { opacity: 0; pointer-events: none; transform: translateY(-100%); }
.loader-logo { width: 56px; height: 56px; animation: pulse 1s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.4; transform: scale(0.95); } 50% { opacity: 1; transform: scale(1.05); } }
.loader-bar { width: 160px; height: 1px; background: var(--grey-100); position: relative; overflow: hidden; }
.loader-fill { position: absolute; left: -100%; top: 0; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, var(--red), transparent); animation: loaderFill 1.4s ease forwards; }
@keyframes loaderFill { to { left: 100%; } }
.loader-text { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--grey-200); }

/* ─── Modal ─── */
.modal-overlay { position: fixed; inset: 0; background: rgba(22,22,20,0.5); backdrop-filter: blur(12px); z-index: 1000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal { background: var(--white); border: 1px solid var(--grey-100); max-width: 640px; width: 90%; max-height: 82vh; overflow-y: auto; padding: 48px; position: relative; transform: translateY(40px); transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); box-shadow: 0 40px 120px rgba(0,0,0,0.12); }
.modal-overlay.open .modal { transform: translateY(0); }
.modal-close { position: absolute; top: 20px; right: 24px; background: none; border: none; color: var(--grey-200); font-size: 26px; cursor: none; line-height: 1; transition: color 0.3s; }
.modal-close:hover { color: var(--black); }
.modal-tag { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; display: block; font-weight: 500; }
.modal-title { font-family: var(--font-display); font-weight: 800; font-size: 30px; letter-spacing: -0.03em; color: var(--black); line-height: 1.1; margin-bottom: 20px; }
.modal-body { font-size: 15px; color: var(--grey-600); line-height: 1.85; }
.modal-body strong { color: var(--black); font-weight: 500; }
.modal-divider { height: 1px; background: var(--grey-50); margin: 24px 0; }
.modal-cta { display: inline-flex; align-items: center; gap: 8px; background: var(--blue); color: var(--white); padding: 12px 26px; font-size: 13px; font-weight: 500; text-decoration: none; cursor: none; transition: all 0.3s ease; }
.modal-cta:hover { background: var(--red); }

/* ══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════ */

/* ─── Tablet Large (≤1200px) ─── */
@media (max-width: 1200px) {
  nav { padding: 10px 32px; }
  nav.scrolled { padding: 12px 32px; }
  .hero { padding: 0 32px; }
  section { padding: 80px 32px; }
  .stats-strip { padding: 40px 32px; }
  footer { padding: 56px 32px 32px; }
  .scroll-indicator { right: 32px; }
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
  .niche-circle:nth-child(1) { width: 380px; height: 380px; }
  .niche-circle:nth-child(2) { width: 300px; height: 300px; }
  .niche-circle:nth-child(3) { width: 230px; height: 230px; }
  .niche-logo-center { max-width: 220px; }
  .niche-visual { height: 350px; }
}

/* ─── Tablet (≤1024px) ─── */
@media (max-width: 1024px) {
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
  .footer-brand-name{font-size:14px;}
  .footer-logo img {
    width: 80px;
    height: 100px;
}
  nav { padding: 10px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-logo img { width: 60px; height: 50px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 12px; }
  .nav-cta { padding: 8px 16px; font-size: 11px; }

  .hero { padding: 0 24px; }
  .hero-content { padding-top: 100px; }
  section { padding: 72px 24px; }
  .stats-strip { padding: 36px 24px; grid-template-columns: repeat(2, 1fr); gap: 0; }
  .stat-item { padding: 24px; border-right: none; border-bottom: 1px solid var(--grey-100); }
  .stat-item:nth-child(1), .stat-item:nth-child(2) { border-right: 1px solid var(--grey-100); }
  .stat-item:nth-child(2), .stat-item:nth-child(4) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-bottom: none; }

  .problem-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .service-card:last-child { grid-column: 1 / -1; }
  .audience-grid { grid-template-columns: repeat(3, 1fr); }
  .niche-inner { grid-template-columns: 1fr; gap: 48px; }
  .niche-visual { height: 300px; }
  .niche-circle:nth-child(1) { width: 340px; height: 340px; }
  .niche-circle:nth-child(2) { width: 270px; height: 270px; }
  .niche-circle:nth-child(3) { width: 210px; height: 210px; }
  .niche-logo-center { max-width: 200px; }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-inner {
  display: grid !important;
}
  .scroll-indicator { display: none; }
}

/* ─── Mobile Large (≤768px) ─── */
@media (max-width: 768px) {
  body { cursor: auto; }

  nav { padding: 8px 20px; background: rgba(247,246,243,0.97); backdrop-filter: blur(16px); box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
  nav.scrolled { padding: 8px 20px; }
  .nav-logo img { width: 50px; height: 42px; }
  .nav-brand { font-size: 14px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; cursor: auto; }
  .mobile-menu { display: flex; }

  .mobile-menu a { font-size: 22px; }
  .mobile-menu a:hover { color: var(--black) !important; }
  .mobile-menu .mobile-cta:hover { background: var(--blue) !important; }
  .mobile-close { position: absolute; top: 18px; right: 18px; background: none; border: none; font-size: 26px; color: var(--black); z-index: 201; }

  .hero { padding: 0 20px; min-height: 100vh; align-items: flex-end; padding-bottom: 60px; }
  .hero-content { padding-top: 0; max-width: 100%; }
  .hero-bg-mark { font-size: clamp(120px, 35vw, 200px); right: -8%; opacity: 0.5; }
  .hero-overline { font-size: 10px; letter-spacing: 0.16em; margin-bottom: 16px; }
  .hero-sub { font-size: 15px; margin-bottom: 32px; }
  .hero-actions { gap: 16px; }
  .btn-primary { padding: 13px 22px; font-size: 14px; }
  .btn-ghost { font-size: 14px; }
  .footer-tagline{max-width:100%;}
  .stats-strip { grid-template-columns: 1fr 1fr; padding: 28px 20px; gap: 0; }
  .stat-item { padding: 20px 16px; border-right: 1px solid var(--grey-100); border-bottom: 1px solid var(--grey-100); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-bottom: none; }
  .stat-item:nth-child(4) { border-right: none; border-bottom: none; }
  .stat-number { font-size: 28px; }
  .stat-label { font-size: 12px; }

  section { padding: 60px 20px; }

  .problem-inner { gap: 40px; }
  .section-title { font-size: clamp(24px, 6vw, 38px); }

  .services-grid { grid-template-columns: 1fr; }
  .services-grid .service-card:last-child { grid-column: auto; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 36px; }
  .service-card { padding: 32px 24px; }
  .service-num { font-size: 34px; margin-bottom: 12px; }

  .audience-header { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 32px; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .audience-card { min-height: auto; padding: 24px 20px; }

  .niche-inner { gap: 36px; }
  .niche-visual { height: 260px; }
  .niche-circle:nth-child(1) { width: 280px; height: 280px; }
  .niche-circle:nth-child(2) { width: 220px; height: 220px; }
  .niche-circle:nth-child(3) { width: 170px; height: 170px; }
  .niche-logo-center { max-width: 160px; }

  .insights-toprow { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 36px; }
  .insights-grid { grid-template-columns: 1fr; }
  .insight-card { padding: 32px 24px; }

  .cta-section { padding: 80px 20px; }
  .btn-large { padding: 14px 28px; font-size: 13px; }

  footer { padding: 48px 20px 28px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-inner > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ─── Mobile Small (≤480px) ─── */
@media (max-width: 480px) {
  .hero { align-items: center; padding: 0 16px; padding-top: 80px; padding-bottom: 40px; min-height: 100svh; }
  .hero-content { padding-top: 0; }
  .hero-h1 { font-size: clamp(32px, 9vw, 48px); margin-bottom: 20px; line-height: 1.1; }
  .hero-sub { font-size: 14px; line-height: 1.7; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary, .btn-ghost { width: fit-content; }

  .stats-strip { grid-template-columns: 1fr; padding: 24px 16px; }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--grey-100); padding: 18px 0; }
  .stat-item:last-child { border-bottom: none; }
  .stat-number { font-size: 32px; }

  section { padding: 52px 16px; }

  .audience-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: auto; padding: 24px 20px; }

  .niche-visual { height: 220px; }
  .niche-circle:nth-child(1) { width: 240px; height: 240px; }
  .niche-circle:nth-child(2) { width: 185px; height: 185px; }
  .niche-circle:nth-child(3) { width: 140px; height: 140px; }
  .niche-logo-center { max-width: 130px; }

  footer { padding: 40px 16px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-inner > div:first-child { grid-column: auto; }

  .modal { padding: 32px 20px; }
  .modal-title { font-size: 24px; }

  .mobile-menu a { font-size: 22px; }

  .cta-section { padding: 64px 16px; }
  .cta-title { font-size: clamp(30px, 9vw, 44px); }
  .cta-sub { font-size: 14px; }
  .btn-large { padding: 13px 24px; font-size: 13px; }
}

/* ─── Very small (≤360px) ─── */
@media (max-width: 360px) {
  .hero-h1 { font-size: 30px; }
  .section-title { font-size: 24px; }
  .stat-number { font-size: 28px; }
}

/* Touch device hover fixes */
@media (hover: none) {
  .service-card:hover, .audience-card:hover, .insight-card:hover, .pillar:hover { background: inherit; }
  .service-card:hover::before { transform: scaleX(0); }
  .audience-card:hover::after { opacity: 0; }
  .pillar:hover { border-left-color: transparent; }
  .btn-primary:hover, .btn-large:hover { transform: none; }
}

/* ============================================================
   what-we-do.css
   Page-specific styles for the What We Do page.
   Paste at the bottom of your existing style.css
   OR keep as a separate file (already linked in _header.php).
   ============================================================ */

/* ── PAGE HERO ── */
.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 0 56px;
  overflow: hidden;
  background: var(--white);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridSlide 24s linear infinite;
}
@keyframes gridSlide {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(80px, 80px); }
}
.page-hero-wash {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 75% at 75% 45%, rgba(22,61,100,0.06) 0%, transparent 65%),
    radial-gradient(ellipse 30% 45% at 15% 85%, rgba(223,44,38,0.04) 0%, transparent 60%);
}
.page-hero-line {
  position: absolute; left: 0; top: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--red) 35%, var(--blue) 70%, transparent);
  opacity: 0.5; transform: scaleY(0); transform-origin: top;
  animation: lineAnim 1.2s 0.3s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes lineAnim { to { transform: scaleY(1); } }

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
    padding-top: 80px;
}
.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
  padding-top: 40px;
}
.page-breadcrumb::before { content: ""; width: 24px; height: 1px; background: var(--red); }
.page-breadcrumb a { color: var(--grey-400); text-decoration: none; transition: color 0.3s; }
.page-breadcrumb a:hover { color: var(--blue); }

.page-hero-h1 {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--black);
  margin-bottom: 24px;
}
.page-hero-h1 .line { display: block; overflow: hidden; }
.page-hero-h1 .line-inner {
  display: block;
  transform: translateY(100%);
  animation: slideUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards;
}
.page-hero-h1 .line:nth-child(1) .line-inner { animation-delay: .55s; }
.page-hero-h1 .line:nth-child(2) .line-inner { animation-delay: .70s; }
.page-hero-h1 .line:nth-child(3) .line-inner { animation-delay: .85s; }

.page-hero-sub {
  font-size: 22px;
  font-weight: 400;
  color: var(--grey-600);
  max-width: 580px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeUp 0.8s 1.0s ease forwards;
}

/* ── ORBIT RINGS (hero visual) ── */
.hero-orbit-wrap {
  position: absolute;
  right: 6%; top: 60%;
  transform: translateY(-50%);
  width: 520px; height: 520px;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  padding:10px;
}
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(22,61,100,0.07);
}
.orbit-ring:nth-child(1) { width: 520px; height: 520px; animation: rotateSlow 45s linear infinite; }
.orbit-ring:nth-child(2) { width: 380px; height: 380px; border-color: rgba(223,44,38,0.06); animation: rotateSlow 30s linear infinite reverse; }
.orbit-ring:nth-child(3) { width: 250px; height: 250px; border-color: rgba(22,61,100,0.10); animation: rotateSlow 20s linear infinite; }
.orbit-ring:nth-child(4) { width: 130px; height: 130px; border-color: rgba(223,44,38,0.12); animation: rotateSlow 12s linear infinite reverse; }
.orbit-ring::before {
  content: ""; position: absolute;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue); top: -3px; left: 50%;
  transform: translateX(-50%); opacity: 0.4;
}
.orbit-ring:nth-child(2)::before { background: var(--red); }
.orbit-logo {
  position: relative; z-index: 2;
  width: 80px; height: 80px;
  opacity: 0.15;
}
.orbit-icon {
  position: absolute;
  width: 80px; height: auto;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 1px solid rgba(22,61,100,0.14);
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(22,61,100,0.08);
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}
.orbit-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.orbit-icon--1 { top:  7.7%; left: 50.0%; animation-delay: 1.6s; }
.orbit-icon--2 { top: 23.6%; left: 83.1%; animation-delay: 1.8s; }
.orbit-icon--3 { top: 59.5%; left: 91.2%; animation-delay: 2.0s; }
.orbit-icon--4 { top: 88.1%; left: 68.4%; animation-delay: 2.2s; }
.orbit-icon--5 { top: 88.1%; left: 31.6%; animation-delay: 2.4s; }
.orbit-icon--6 { top: 59.5%; left:  8.8%; animation-delay: 2.6s; }
.orbit-icon--7 { top: 23.6%; left: 17.0%; animation-delay: 2.8s; }

@keyframes rotateSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ── INTRO SECTION ── */
.intro-section { background: var(--off-white); }
.intro-inner { display: block; }
.intro-body { font-size: 16px; font-weight: 400; color: var(--grey-600); line-height: 1.85; margin-top: 24px; }
.intro-body p { margin-bottom: 16px; }
.intro-body strong { color: var(--black); }

/* ── TABS LAYOUT ── */
.tabs-section { background: var(--white); padding: 0; }
.tabs-layout { display: flex; align-items: flex-start; gap: 40px; }

.tabs-nav {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 80px 56px;
  position: sticky;
  top: 100px;
}
.tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  text-align: left;
  padding: 14px 16px;
  border-radius: 8px;
  border: none;
  background: #f5f7fa;
  color: #333;
  font-size: 14px;
  font-family: var(--font-display);
  transition: all 0.3s ease;
  cursor: pointer;
}
.tab-btn:hover  { background: #e6edf5; }
.tab-btn.active { background: var(--blue); color: var(--white); }

.tabs-content { flex: 1; min-width: 0; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── TAB HERO ── */
.tab-hero {
  padding: 80px 56px;
  background: var(--white);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--grey-50);
}
.tab-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  position: relative; z-index: 1;
}
.tab-hero-wash { position: absolute; inset: 0; pointer-events: none; }
.tab-hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--grey-400); margin-bottom: 16px;
}
.tab-hero-label::before { content: ""; width: 20px; height: 1px; background: var(--red); }
.tab-hero-h2 {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(30px, 3.2vw, 50px);
  letter-spacing: -0.03em; line-height: 1.1;
  color: var(--black); margin-bottom: 20px;
}
.tab-hero-sub { font-size: 16px; color: var(--grey-600); line-height: 1.8; font-weight: 400; }

.tab-hero-visual {
  display: flex; align-items: center; justify-content: center;
  height: 280px; position: relative;
}
.tab-icon-large {
  width: 110px; height: 110px;
  background: var(--blue-subtle);
  border: 1px solid rgba(22,61,100,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 2;
}
.tab-icon-large svg { width: 48px; height: 48px; color: var(--blue); }
.tab-ring {
  position: absolute;
  border-radius: 50%;
}
.tab-ring:nth-child(1) { width: 200px; height: 200px; border: 1px solid rgba(22,61,100,0.10); animation: rotateSlow 25s linear infinite; }
.tab-ring:nth-child(2) { width: 270px; height: 270px; border: 1px solid rgba(223,44,38,0.08); animation: rotateSlow 18s linear infinite reverse; }

/* ── TAB BODY ── */
.tab-body { padding: 80px 56px; }
.tab-body.grey  { background: var(--off-white); }
.tab-body.white { background: var(--white); }

.tb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.tb-body { font-size: 16px; color: var(--grey-600); line-height: 1.85; }
.tb-body p  { margin-bottom: 16px; }
.tb-body strong { color: var(--black); }
.tb-body em { font-style: italic; color: var(--grey-400); }

/* ── STEPS ── */
.steps { display: flex; flex-direction: column; gap: 1px; background: var(--grey-100); }
.step {
  background: var(--white);
  padding: 28px 32px;
  display: grid; grid-template-columns: 56px 1fr;
  gap: 20px; align-items: start;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
}
.step:hover { background: var(--off-white); border-left-color: var(--blue); }
.step-num {
  font-family: var(--font-display); font-weight: 800; font-size: 28px;
  color: var(--grey-100); letter-spacing: -0.04em; line-height: 1;
  transition: color 0.3s;
}
.step:hover .step-num { color: rgba(22,61,100,0.2); }
.step-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--black); margin-bottom: 6px; letter-spacing: -0.01em; }
.step-desc  { font-size: 16px; color: var(--grey-600); line-height: 1.65; }

/* ── CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--grey-100);
}
.info-card {
  background: var(--white);
  padding: 40px 32px;
  border-top: 2px solid transparent;
  transition: border-color 0.3s ease;
}
.info-card:hover { border-top-color: var(--blue); }
.info-card-num {
  font-family: var(--font-display); font-weight: 800; font-size: 32px;
  color: var(--grey-50); letter-spacing: -0.04em; line-height: 1; margin-bottom: 16px;
}
.info-card-title { font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--black); letter-spacing: -0.01em; margin-bottom: 12px; line-height: 1.3; }
.info-card-body  { font-size: 15px; color: var(--grey-400); line-height: 1.75; }

/* ── ROLES GRID ── */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px; background: var(--grey-100); margin-top: 52px;
}
.role-card {
  background: var(--white); padding: 32px 24px;
  transition: background 0.3s ease; position: relative;
}
.role-card::before {
  content: ""; position: absolute; top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--blue), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s;
}
.role-card:hover { background: var(--off-white); }
.role-card:hover::before { transform: scaleX(1); }
.role-card-title { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--blue); margin-bottom: 12px; letter-spacing: 0.04em; text-transform: uppercase; }
.role-card-list  { font-size: 14px; color: var(--grey-400); line-height: 1.8; }
.role-card-list span { display: block; }

/* ── NICHE CALLOUT ── */
.niche-callout {
  background: var(--blue-subtle);
  border: 1px solid rgba(22,61,100,0.12);
  padding: 44px 48px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 32px; align-items: center;
}
.niche-callout-title { font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--black); letter-spacing: -0.02em; margin-bottom: 10px; }
.niche-callout-body  { font-size: 16px; color: var(--grey-600); line-height: 1.7; }

/* ── FEATURE 2-COL ── */
.feature-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--grey-100); margin-top: 48px;
}
.feature-item {
  background: var(--white); padding: 36px 32px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
.feature-item:hover { background: var(--off-white); border-bottom-color: var(--blue); }
.feature-title { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--black); letter-spacing: -0.01em; margin-bottom: 10px; }
.feature-desc  { font-size: 15px; color: var(--grey-400); line-height: 1.75; }

/* ── FOR LIST ── */
.for-list { display: flex; flex-direction: column; gap: 1px; background: var(--grey-100); margin-top: 44px; }
.for-item {
  background: var(--white); padding: 28px 32px;
  display: flex; gap: 20px; align-items: flex-start;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
}
.for-item:hover { background: var(--off-white); border-left-color: var(--red); }
.for-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); flex-shrink: 0; margin-top: 8px;
}
.for-text { font-size: 16px; color: var(--grey-600); line-height: 1.75; }
.for-text strong { color: var(--black); }

/* ── STAT HIGHLIGHT ── */
.stat-highlight {
  background: var(--off-white);
  border: 1px solid var(--grey-100);
  padding: 32px 36px;
  display: flex; align-items: center; gap: 20px;
}
.stat-hl-num {
  font-family: var(--font-display); font-weight: 800; font-size: 56px;
  color: var(--black); letter-spacing: -0.05em; line-height: 1;
}
.stat-hl-num span { font-size: 32px; color: var(--blue); }
.stat-hl-label { font-size: 15px; color: var(--grey-400); line-height: 1.6; max-width: 280px; }

/* ── CHECKLIST ── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.checklist li {
  padding-left: 24px; position: relative;
  font-size: 15px; color: var(--grey-600); line-height: 1.6;
}
.checklist li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--blue); font-weight: 700;
}

/* ── CTA SECTION ── */
.cta-section { background: var(--blue); text-align: center; position: relative; overflow: hidden; padding: 120px 56px; }
.cta-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cta-content { position: relative; z-index: 1; margin: 0 auto; }
.cta-overline {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 20px;
}
.cta-overline::before { content: ""; width: 24px; height: 1px; background: var(--red); }
.cta-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(44px, 5.5vw, 74px);
  letter-spacing: -0.04em; line-height: 1;
  color: var(--white); margin-bottom: 20px;
}
.cta-sub { font-size: 16px; color: rgba(255,255,255,0.6); font-weight: 400; margin-bottom: 44px; line-height: 1.75; }

.btn-large {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--red); color: var(--white);
  padding: 18px 44px;
  font-family: var(--font-display); font-size: 15px; font-weight: 700;
  letter-spacing: 0.04em; text-decoration: none;
  transition: all 0.3s ease;
}
.btn-large:hover {
  background: var(--white); color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}

/* ══════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════════════════ */
@media (max-width: 1024px) {

  .page-hero { padding: 0 32px !important; }
  .page-hero-content { max-width: 100%; }
  .page-hero-h1 { font-size: clamp(36px, 5vw, 56px); }
  .page-hero-sub { font-size: 18px; }
  .hero-orbit-wrap { display: none; }

  .intro-inner { display: block; }

  /* Tabs → horizontal scroll nav on mobile */
  .tabs-layout {
    flex-direction: column;
    gap: 0;
  }
.tabs-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* important fix */
    gap: 8px;
    padding: 20px 24px 0;
    /*width: 100%;*/
      top: auto;
}

.tabs-nav > * {
    min-width: 0; /* prevents content overflow */
}
  .tab-btn {
    flex: 0 0 auto;
    font-size: 12px;
    padding: 10px 16px;
    border-radius: 10px;
    /*white-space: nowrap;*/
  }
  .tabs-content { width: 100%; }

  .tab-hero { padding: 40px 24px; }
  .tab-hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .tab-hero-h2 { font-size: 26px; }
  .tab-body { padding: 48px 24px; }
  .tb-grid { grid-template-columns: 1fr; gap: 32px; }

  .cards-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid .info-card[style*="grid-column"] { grid-column: auto !important; }
  .info-card { padding: 28px 20px; }

  .roles-grid { grid-template-columns: 1fr 1fr !important; }
  .role-card  { padding: 24px 16px; }

  .feature-2col { grid-template-columns: 1fr; }
  .feature-2col .feature-item[style*="grid-column"] { grid-column: auto !important; }

  .niche-callout { grid-template-columns: 1fr; padding: 28px 20px; gap: 20px; }
  .niche-callout-title { font-size: 20px; }
  .niche-callout .btn-primary { width: 100%; justify-content: center; }

  .for-item { padding: 20px 16px; }
  .stat-highlight { padding: 24px 20px; }
  .stat-hl-num { font-size: 36px; }

  .cta-section { padding: 64px 24px !important; }
  .cta-title { font-size: clamp(28px, 8vw, 44px) !important; }
  .cta-sub   { font-size: 14px; }
  .btn-large { padding: 14px 28px; font-size: 14px; width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤480px)
══════════════════════════════════════════ */
@media (max-width: 480px) {

  .page-hero { padding: 0 20px !important; min-height: 100svh; align-items: center; padding-bottom: 60px !important; }
  .page-hero-content { padding-top: 80px; }
  .page-breadcrumb { font-size: 10px; letter-spacing: 0.14em; margin-bottom: 16px; padding-top: 0; }
  .page-hero-h1 { font-size: clamp(28px, 8vw, 44px) !important; margin-bottom: 16px; }
  .page-hero-sub { font-size: 15px !important; max-width: 100%; }

  .tabs-nav  { padding: 12px 16px 0 !important; }
  .tab-hero  { padding: 40px 16px !important; }
  .tab-body  { padding: 40px 16px !important; }

  .cards-grid   { grid-template-columns: 1fr !important; }
  .roles-grid   { grid-template-columns: 1fr !important; }
  .feature-2col { grid-template-columns: 1fr !important; }

  .cta-section  { padding: 52px 16px !important; }
}

/* ── Touch: remove stuck hover states ── */
@media (hover: none) {
  .step:hover,
  .info-card:hover,
  .role-card:hover,
  .feature-item:hover,
  .for-item:hover { background: inherit; border-color: transparent; }
  .btn-large:hover { transform: none; box-shadow: none; }
}


.audience { background: var(--off-white); }

.audience-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--grey-100);
}

.audience-card {
  background: var(--off-white);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  cursor: none;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.3s ease;
}

.audience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, var(--blue-subtle), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.audience-card:hover {
  background: var(--white);
}

.audience-card:hover::after {
  opacity: 1;
}

.audience-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.audience-icon img {
  width: 44px;
  height: 44px;
}

.audience-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--black);
  margin-bottom: 7px;
  position: relative;
  z-index: 1;
}

.audience-desc {
  font-size: 13px;
  color: var(--grey-400);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.audience-link {
  margin-top: 16px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-400);
  text-decoration: none;
  cursor: none;
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.audience-link:hover {
  color: var(--blue);
}

/* Service Delivery Grid */
.services-delivery {
  background: var(--white);
}

.services-delivery-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.services-delivery-intro {
  font-size: 16px;
  color: var(--grey-600);
  max-width: 300px;
  line-height: 1.7;
}

.services-delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--grey-100);
}

.service-delivery-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  cursor: none;
  transition: background 0.35s ease;
}

.service-delivery-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--red), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-delivery-card:hover {
  background: var(--off-white);
}

.service-delivery-card:hover::before {
  transform: scaleX(1);
}

.service-delivery-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--grey-100);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.4s ease;
}

.service-delivery-card:hover .service-delivery-num {
  color: rgba(223, 44, 38, 0.1);
}

.service-delivery-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 12px;
}

.service-delivery-desc {
  font-size: 16px;
  color: var(--grey-400);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-delivery-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-delivery-list li {
  font-size: 14px;
  color: var(--grey-600);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  line-height: 1.6;
}

.service-delivery-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-delivery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .audience-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 32px;
  }

  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-delivery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .service-delivery-card {
    padding: 32px 24px;
  }

  .services-delivery-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
  }

  .services-delivery-intro {
    margin-top: 12px;
  }
}

@media (max-width: 640px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .services-delivery-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: auto;
    padding: 24px 20px;
  }

  .service-delivery-card {
    padding: 28px 20px;
  }

  .service-delivery-num {
    font-size: 36px;
  }

  .service-delivery-title {
    font-size: 16px;
  }

  .service-delivery-list li {
    font-size: 13px;
  }

  section {
    padding: 60px 20px;
  }
}

/* Accessibility - Reduce Motion */
@media (prefers-reduced-motion: reduce) {
  .audience-card,
  .service-delivery-card,
  .audience-link {
    transition: none;
  }
}

/* Print Styles */
@media print {
  .scroll-indicator,
  .cta-section {
    display: none;
  }
}
