@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@700;800;900&display=swap');

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

:root {
  --bg:           #05050d;
  --bg-card:      #0c0c1a;
  --bg-hover:     #111128;
  --blue:         #3b82f6;
  --blue-dim:     #1d4ed8;
  --blue-glow:    rgba(59,130,246,0.12);
  --blue-border:  rgba(59,130,246,0.28);
  --text:         #f0f4ff;
  --muted:        #8892a4;
  --border:       rgba(255,255,255,0.07);
}

/* overflow-x on html as well as body: iOS Safari ignores body-only overflow-x
   when absolutely-positioned decor (orbs/glows) pokes past the viewport, and
   zooms the whole page out to fit. clip > hidden (no scroll container); the
   hidden line is the fallback for older browsers. */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  animation: pageFade 0.3s ease;
}

@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; line-height: 1.1; }

/* ─── UTILITIES ──────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.tag {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue);
  padding: 6px 16px;
  border: 1px solid var(--blue-border);
  border-radius: 100px;
  margin-bottom: 20px;
}

/* Reveal-on-load. Base state is VISIBLE so content can never be hidden if
   JavaScript fails to load (e.g. a 404 on main.js) — the fade-in is a pure-CSS
   enhancement that always ends visible. JS still adds .visible for compatibility. */
.reveal {
  opacity: 1;
  transform: none;
  animation: revealIn 0.7s ease both;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes revealIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 14px;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:hover {
  background: #2563eb;
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(59,130,246,0.38);
}
.btn-outline {
  background: transparent;
  border: 1px solid var(--blue-border);
  color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue-glow);
  box-shadow: 0 8px 24px rgba(59,130,246,0.15);
  color: var(--blue);
}
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
}
.btn-ghost:hover {
  background: var(--bg-card);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: none;
}
.btn-lg { padding: 14px 30px; font-size: 15px; border-radius: 10px; }

/* ─── NAV ────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 0;
  transition: background 0.35s, padding 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(5,5,13,0.9);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 900; font-size: 18px;
  color: var(--text); text-decoration: none;
  letter-spacing: -0.02em; white-space: nowrap;
}
.nav-logo span { color: var(--blue); }
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--muted); text-decoration: none;
  font-size: 14px; font-weight: 500;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); font-weight: 600; }

/* ── Nav dropdown ── */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  margin-top: 1px;
  transition: transform 0.2s;
}
.nav-has-dropdown:hover > a::after { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 8px;
  list-style: none;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  z-index: 200;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-dropdown li a:hover { background: rgba(255,255,255,0.05); color: var(--text); }
.nav-dropdown li a.active { color: var(--blue); font-weight: 600; }
.nav-dropdown .dd-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 8px;
}
/* Mobile case study sub-links */
.nav-mobile-sub {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  margin-top: -4px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-sub a {
  font-size: 18px !important;
  font-weight: 600 !important;
  padding: 8px 0 !important;
  border-bottom: none !important;
  color: var(--muted);
}
.nav-mobile-sub a:hover { color: var(--blue); }

/* Mobile nav */
.nav-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px;
  flex-direction: column; gap: 5px; z-index: 101; position: relative;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0; z-index: 99;
  background: rgba(5,5,13,0.98);
  padding: 100px 32px 40px;
  flex-direction: column; gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--muted); text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 32px; font-weight: 800;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.nav-mobile a:hover,
.nav-mobile a.active { color: var(--blue); }
.nav-mobile .btn {
  margin-top: 24px; align-self: flex-start;
  font-size: 15px; padding: 14px 28px; border-radius: 10px;
}

/* ─── FOOTER ─────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo {
  font-size: 20px; display: inline-block; margin-bottom: 14px;
}
.footer-brand p {
  font-size: 14px; color: var(--muted); line-height: 1.75; max-width: 280px;
}
.footer-col h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px; color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none; font-size: 16px;
  transition: border-color 0.2s, color 0.2s;
}
.footer-social a:hover { border-color: var(--blue-border); color: var(--blue); }

/* ─── SECTION HEADER ─────────────────────────── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-title {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--muted);
  max-width: 480px; margin: 0 auto; line-height: 1.7;
}

/* ─── HOME HERO ──────────────────────────────── */
/* ═══ HERO ══════════════════════════════════════ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  /* Poster fallback so the hero is never an empty dark box while the video loads */
  background: #05050d url('../images/bts-cinema-camera.jpg') center/cover no-repeat;
}

/* Video: absolute, covers entire section edge-to-edge */
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* On phones, skip the heavy autoplay video and keep the cinematic poster image only */
@media (max-width: 768px) {
  .hero-bg-video { display: none; }
}

/* Overlay: heavy on left (where text lives) + darker at bottom */
.hero-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg,  rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.25) 100%),
    linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.20) 45%, transparent 100%);
  z-index: 1;
}

/* Content: pinned bottom-left, generous left padding */
.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  padding: 0 clamp(40px, 6vw, 100px) clamp(56px, 7vh, 90px);
  max-width: 860px;
}

/* ── Headline ── */
.hero-headline {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
}
.hero-headline .line { display: block; overflow: hidden; }
.hero-headline .line span {
  display: block; opacity: 0; transform: translateY(110%);
  animation: slideUp 0.8s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hero-headline .line:nth-child(1) span { animation-delay: 0.15s; }
.hero-headline .line:nth-child(2) span { animation-delay: 0.28s; }
.hero-headline .line:nth-child(3) span { animation-delay: 0.41s; color: var(--blue); }

/* ── Sub copy ── */
.hero-sub {
  font-size: 16px; line-height: 1.7; max-width: 500px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 32px;
  opacity: 0; transform: translateY(14px);
  animation: fadeUp 0.6s ease forwards 0.6s;
}

/* ── CTAs ── */
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  opacity: 0; transform: translateY(14px);
  animation: fadeUp 0.6s ease forwards 0.8s;
}

/* ── Trust / geo strip ── */
.hero-bottom {
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 1.0s;
}
.hero-geo {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.52);
}
.hero-geo-dot {
  width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue); box-shadow: 0 0 6px rgba(59,130,246,0.8);
}
.hero-clients-strip {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.hero-clients-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.40); white-space: nowrap;
}
.hero-clients-sep {
  width: 1px; height: 13px; background: rgba(255,255,255,0.25); flex-shrink: 0;
}
.hero-clients-list {
  font-size: 13px; color: rgba(255,255,255,0.50); line-height: 1.5;
}

@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeUp  { to { opacity: 1; transform: translateY(0); } }

/* ─── PAGE HERO (inner pages) ────────────────── */
.page-hero {
  padding: 160px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.page-orb {
  position: absolute; border-radius: 50%; filter: blur(120px);
}
.page-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.14), transparent 70%);
  top: -200px; right: -100px;
}
.page-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(29,78,216,0.1), transparent 70%);
  bottom: -100px; left: -50px;
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black, transparent);
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }

.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--muted); margin-bottom: 24px;
}
.breadcrumb a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--text); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); font-size: 10px; }

.page-hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 900; letter-spacing: -0.04em;
  margin-bottom: 20px;
  opacity: 0; transform: translateY(30px);
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) forwards 0.1s;
}
.page-hero p {
  font-size: 18px; color: var(--muted); line-height: 1.75; max-width: 540px;
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards 0.3s;
}
.page-hero .hero-actions {
  opacity: 0; transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards 0.45s;
  margin-top: 36px;
}

/* ─── SERVICES GRID ──────────────────────────── */
/* ─── SERVICES VISUAL CARDS ─────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Full-bleed clickable card */
.svc-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  aspect-ratio: 4 / 3;
  text-decoration: none;
  cursor: pointer;
  /* stagger-in state */
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.svc-card.visible {
  opacity: 1; transform: translateY(0);
}

/* Background photo */
.svc-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.svc-card:hover .svc-bg {
  transform: scale(1.07);
}

/* Gradient overlay — strong at bottom, opens up top so subjects stay visible */
.svc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(5,5,13,0.96) 0%,
    rgba(5,5,13,0.58) 38%,
    rgba(5,5,13,0.10) 65%,
    rgba(5,5,13,0.00) 100%
  );
  transition: background 0.35s ease;
}
.svc-card:hover .svc-overlay {
  background: linear-gradient(
    to top,
    rgba(5,5,13,0.98) 0%,
    rgba(5,5,13,0.68) 45%,
    rgba(5,5,13,0.18) 70%,
    rgba(5,5,13,0.00) 100%
  );
}

/* Blue accent line at top on hover */
.svc-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}
.svc-card:hover::after { opacity: 0.8; }

/* Text content pinned to bottom */
.svc-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 26px;
  z-index: 2;
  transform: translateY(4px);
  transition: transform 0.35s ease;
}
.svc-card:hover .svc-content { transform: translateY(0); }

.svc-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.svc-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0 0 16px;
}
.svc-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue);
  transition: gap 0.2s ease, color 0.2s ease;
}
.svc-card:hover .svc-cta {
  gap: 10px;
  color: #93c5fd;
}

/* ─── SERVICE TAG PILLS (services page) ─────── */
.svc-tags {
  display: flex; flex-wrap: wrap; gap: 5px;
  margin-bottom: 14px;
}
.svc-tags span {
  font-size: 9.5px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 4px 10px; line-height: 1;
}

/* ─── SERVICES PAGE 2-COL VISUAL GRID ───────── */
.services-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.services-visual-grid .svc-card { aspect-ratio: 16 / 9; }

/* ─── WHO WE SERVE — 4-COL PORTRAIT GRID ────── */
.who-visual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.who-visual-grid .svc-card {
  aspect-ratio: 2 / 3;
  border-radius: 20px;
}
/* Strong overlay for portrait — base layer always readable */
.who-visual-grid .svc-overlay {
  background: linear-gradient(
    to top,
    rgba(5,5,13,0.97) 0%,
    rgba(5,5,13,0.62) 38%,
    rgba(5,5,13,0.18) 65%,
    rgba(5,5,13,0.00) 100%
  );
}
.who-visual-grid .svc-card:hover .svc-overlay {
  background: linear-gradient(
    to top,
    rgba(5,5,13,0.98) 0%,
    rgba(5,5,13,0.72) 45%,
    rgba(5,5,13,0.26) 70%,
    rgba(5,5,13,0.04) 100%
  );
}
.who-visual-grid .svc-content {
  padding: 26px 22px 30px;
}
.who-visual-grid .svc-title {
  font-size: clamp(16px, 1.4vw, 19px);
  margin-bottom: 10px;
}
.who-visual-grid .svc-desc {
  font-size: 12.5px;
  line-height: 1.65;
  margin-bottom: 18px;
}
/* Blue accent line on hover */
.who-visual-grid .svc-card::after {
  background: linear-gradient(to right, transparent, rgba(59,130,246,0.75), transparent);
}

/* ─── STATS ──────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 28px 24px;
  transition: border-color 0.25s;
  display: flex; flex-direction: column; gap: 0;
}
.stat-card:hover { border-color: var(--blue-border); }
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 40px; font-weight: 900;
  color: var(--blue); letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 10px;
}
.stat-label {
  font-size: 13px; font-weight: 700;
  color: var(--text); line-height: 1.4;
  margin-bottom: 10px;
}
.stat-desc {
  font-size: 12px; color: var(--muted);
  line-height: 1.6; margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 10px; margin-top: auto;
}

/* ═══ CINEMATIC SHOWCASE ════════════════════════ */
#showcase {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.showcase-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.showcase-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 52%, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.78) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.52) 100%);
  z-index: 1;
}
.showcase-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 0 clamp(24px, 8vw, 160px);
}
.showcase-tag {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 32px;
  display: flex; align-items: center; gap: 18px;
}
.showcase-tag::before,
.showcase-tag::after {
  content: ''; display: block;
  width: 44px; height: 1px;
  background: rgba(255,255,255,0.20); flex-shrink: 0;
}
.showcase-headline {
  font-size: clamp(52px, 7.5vw, 100px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.0;
  color: #fff; margin-bottom: 28px;
}
.showcase-sub {
  font-size: 17px; line-height: 1.75;
  color: rgba(255,255,255,0.60);
  max-width: 540px; margin-bottom: 44px;
}
.showcase-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 38px;
  border: 1.5px solid rgba(255,255,255,0.50);
  border-radius: 100px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  color: #fff; text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background 0.25s, border-color 0.25s, transform 0.15s;
}
.showcase-cta:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.88);
  transform: translateY(-1px);
}

/* ═══ SERVICES SECTION (homepage) ═══════════════ */
#services-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.svc-section-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 28%;
  z-index: 0;
}
.svc-section-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0,0,0,0.90) 0%, rgba(0,0,0,0.70) 48%, rgba(0,0,0,0.48) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.50) 100%);
  z-index: 1;
}
.svc-section-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(48px, 7vw, 110px);
  padding-top: clamp(80px, 10vh, 120px);
  padding-bottom: clamp(80px, 10vh, 120px);
}
.svc-section-left {
  flex: 0 0 360px;
  max-width: 360px;
}
.svc-section-tag {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.40);
  margin-bottom: 20px;
}
.svc-section-headline {
  font-size: clamp(30px, 3.2vw, 46px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.08;
  color: #fff;
  margin-bottom: 18px;
}
.svc-section-sub {
  font-size: 14.5px; line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}
.svc-section-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 100px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: #fff; text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background 0.25s, border-color 0.25s, transform 0.15s;
}
.svc-section-cta:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.88);
  transform: translateY(-1px);
}
.svc-section-right { flex: 1; }
.svc-name-list { list-style: none; padding: 0; margin: 0; }
.svc-name-item {
  border-top: 1px solid rgba(255,255,255,0.10);
  transition: border-color 0.2s;
}
.svc-name-item:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.svc-name-item a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  font-size: clamp(20px, 2.6vw, 36px);
  font-weight: 800; letter-spacing: -0.025em;
  color: rgba(255,255,255,0.60);
  text-decoration: none;
  transition: color 0.2s;
}
.svc-name-item a::after {
  content: '→';
  font-size: 0.65em; font-weight: 400;
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.svc-name-item a:hover { color: #fff; }
.svc-name-item a:hover::after { opacity: 1; transform: translateX(0); }
.svc-name-item:hover { border-color: rgba(255,255,255,0.28); }

/* ─── PROOF SECTION ──────────────────────────── */
.proof-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(59,130,246,0.1);
  border: 1px solid var(--blue-border);
  border-radius: 100px;
  padding: 8px 16px 8px 12px;
  font-size: 13px; font-weight: 600; color: var(--blue); margin-bottom: 28px;
}
.proof-dot {
  width: 8px; height: 8px;
  background: var(--blue); border-radius: 50%;
  box-shadow: 0 0 10px var(--blue);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:.5; transform:scale(.8); }
}

/* ─── WORK GRID ──────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.work-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(59,130,246,0.1);
}
.work-card-thumb {
  aspect-ratio: 16/9;
  background: var(--bg-hover);
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: var(--muted); font-size: 13px;
  position: relative; overflow: hidden;
}
.work-card-thumb-icon { font-size: 28px; opacity: 0.4; }
.work-card-thumb span { opacity: 0.5; }
.work-card-body { padding: 24px; }
.work-card-cat {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 8px;
}
.work-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.work-card p { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.work-card a.work-link {
  font-size: 13px; font-weight: 600; color: var(--blue);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.work-card a.work-link:hover { gap: 10px; }

/* Featured Case Study */
.case-study-featured {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 56px;
  margin-bottom: 64px;
  transition: border-color 0.3s;
}
.case-study-featured:hover { border-color: var(--blue-border); }
.cs-thumb {
  aspect-ratio: 4/3;
  background: var(--bg-hover);
  border: 2px dashed rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: var(--muted); font-size: 13px;
}
/* When filled with real media — remove placeholder styles */
.cs-thumb.cs-thumb-filled {
  border: none;
  background: var(--bg-card);
  overflow: hidden;
  display: block;
  padding: 0;
  position: relative;
}
/* Bottom badge on the hero case study video */
.cs-thumb-badge {
  position: absolute;
  bottom: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(5,5,13,0.82);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 7px 12px;
  font-size: 12px; font-weight: 700;
  color: var(--text); letter-spacing: 0.04em;
}
.cs-thumb-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%; background: #22c55e;
  box-shadow: 0 0 6px rgba(34,197,94,0.7);
  flex-shrink: 0;
  animation: pulse-green 1.8s ease-in-out infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}
.cs-thumb-icon { font-size: 36px; opacity: 0.35; }
.cs-thumb span { opacity: 0.5; }

/* Work card filled thumbnails */
.work-card-thumb-filled {
  position: relative;
}
.work-card-thumb-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(5,5,13,0.85) 0%, transparent 100%);
  padding: 20px 14px 12px;
}
.work-card-thumb-overlay span {
  font-size: 10px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.75);
  opacity: 1 !important;
}
.cs-meta { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); margin-bottom: 16px; }
.case-study-featured h2 { font-size: clamp(28px,3.5vw,40px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 16px; }
.case-study-featured p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 28px; }
.cs-stats { display: flex; gap: 32px; margin-bottom: 32px; }
.cs-stat-num {
  font-family: 'Outfit', sans-serif; font-size: 28px; font-weight: 900;
  color: var(--blue); letter-spacing: -0.03em;
}
.cs-stat-label { font-size: 12px; color: var(--muted); }

/* ─── WORK PAGE: HERO FLOATING THUMBNAILS ─────── */
.wh-floats { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.wh-float {
  position:absolute; border-radius:12px; overflow:hidden;
  filter:blur(2px) brightness(0.28) saturate(0.5);
  opacity:0;
  animation:whFloat 1.4s cubic-bezier(0.22,1,0.36,1) forwards;
}
.wh-float img { width:100%; height:100%; object-fit:cover; display:block; }
.wh-float-1 { width:220px; height:148px; top:14%; right:6%;  transform:rotate(3.5deg);  animation-delay:0.4s; }
.wh-float-2 { width:172px; height:118px; top:54%; right:20%; transform:rotate(-2deg);   animation-delay:0.7s; }
.wh-float-3 { width:188px; height:128px; top:16%; left:4%;   transform:rotate(-3.5deg); animation-delay:0.5s; }
.wh-float-4 { width:152px; height:104px; top:62%; left:11%;  transform:rotate(1.5deg);  animation-delay:0.65s; }
@keyframes whFloat { to { opacity:0.3; } }

/* ─── WORK SHOWCASE GRID ─────────────────────── */
.work-showcase-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:56px;
}
.work-showcase-grid .svc-card { aspect-ratio:unset; border-radius:18px; }
.work-showcase-grid .wsc-hero     { aspect-ratio:16/9; grid-column:span 2; }
.work-showcase-grid .wsc-portrait { grid-column:span 1; align-self:stretch; min-height:300px; }
.work-showcase-grid .wsc-medium   { aspect-ratio:4/3; }
.work-showcase-grid .wsc-strip    { aspect-ratio:21/8; grid-column:span 3; }
.work-showcase-grid .svc-card .svc-title { font-size:clamp(17px,1.7vw,22px); }
.work-showcase-grid .svc-card .svc-desc  { font-size:13px; line-height:1.62; }
.work-showcase-grid .svc-card .svc-content { padding-bottom:28px; }

/* ─── PROCESS STEPS ──────────────────────────── */
.process-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 24px; position: relative;
}
.process-grid::before {
  content: '';
  position: absolute; top: 28px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-border), var(--blue-border), transparent);
  z-index: 0;
}
.process-step {
  text-align: center; position: relative; z-index: 1;
}
.process-num {
  width: 56px; height: 56px;
  background: var(--bg-card);
  border: 1px solid var(--blue-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 800; color: var(--blue);
}
.process-step h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ─── ABOUT / FOUNDER ────────────────────────── */
.founder-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.founder-photo {
  aspect-ratio: 3/4;
  background: var(--bg-card);
  border: 2px dashed rgba(255,255,255,0.08);
  border-radius: 20px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px; color: var(--muted); font-size: 13px;
  position: relative; overflow: hidden;
}
.founder-photo-icon { font-size: 40px; opacity: 0.3; }
.founder-photo span { opacity: 0.5; }
.founder-text .tag { margin-bottom: 24px; }
.founder-name {
  font-size: clamp(28px,4vw,44px);
  font-weight: 900; letter-spacing: -0.03em; margin-bottom: 6px;
}
.founder-title { font-size: 15px; color: var(--blue); font-weight: 600; margin-bottom: 24px; }
.founder-bio { font-size: 16px; color: var(--muted); line-height: 1.85; margin-bottom: 32px; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.value-card:hover {
  border-color: var(--blue-border);
  box-shadow: 0 0 40px rgba(59,130,246,0.07);
}
.value-icon { font-size: 28px; margin-bottom: 16px; }
.value-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ─── WHY US — EDITORIAL SPLIT BLOCKS ───────── */
.why-grid {
  display: flex;
  flex-direction: column;
  margin-top: 64px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}

.why-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
}
.why-block + .why-block {
  border-top: 1px solid rgba(255,255,255,0.055);
}

/* Reversed: photo right, text left */
.why-block--reverse .why-photo { order: 2; }
.why-block--reverse .why-text  { order: 1; }

/* Photo side */
.why-photo {
  position: relative;
  overflow: hidden;
}
.why-photo img,
.why-photo video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.why-block:hover .why-photo img,
.why-block:hover .why-photo video { transform: scale(1.05); }

.why-photo-overlay {
  position: absolute; inset: 0;
  pointer-events: none;
}
.why-block:not(.why-block--reverse) .why-photo-overlay {
  background: linear-gradient(to right, rgba(5,5,13,0) 60%, rgba(5,5,13,0.45) 100%);
}
.why-block--reverse .why-photo-overlay {
  background: linear-gradient(to left, rgba(5,5,13,0) 60%, rgba(5,5,13,0.45) 100%);
}

/* Text side */
.why-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 68px;
  background: var(--bg-card);
  position: relative;
  overflow: hidden;
}
/* Large ghost number */
.why-number {
  font-family: 'Outfit', sans-serif;
  font-size: 120px;
  font-weight: 900;
  color: rgba(59,130,246,0.055);
  line-height: 1;
  position: absolute;
  bottom: -16px;
  right: 24px;
  pointer-events: none;
  user-select: none;
}
.why-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.why-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.028em;
  margin-bottom: 20px;
}
/* Blue left-bar accent */
.why-headline::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 18px;
}
.why-sentence {
  font-size: 15px;
  color: rgba(255,255,255,0.58);
  line-height: 1.75;
  max-width: 400px;
}

/* Bottom cinematic feature */
.why-reel {
  margin-top: 20px;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 21 / 7;
  position: relative;
}
.why-reel img,
.why-reel video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.why-reel-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,5,13,0.04) 0%,
    rgba(5,5,13,0.0) 45%,
    rgba(5,5,13,0.72) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 32px 40px;
}
.why-reel-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 900px) {
  .why-block { grid-template-columns: 1fr; min-height: auto; }
  .why-block--reverse .why-photo { order: 0; }
  .why-block--reverse .why-text  { order: 0; }
  .why-photo { aspect-ratio: 16 / 7; }
  .why-text { padding: 44px 36px; }
  .why-number { font-size: 80px; }
  .why-headline { font-size: clamp(24px, 5vw, 32px); }
  .why-reel { aspect-ratio: 16 / 7; }
}
@media (max-width: 560px) {
  .why-text { padding: 36px 28px; }
  .why-reel { aspect-ratio: 4 / 3; }
}

/* Locations */
.locations-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  display: flex; gap: 20px; align-items: flex-start;
  transition: border-color 0.25s;
}
.location-card:hover { border-color: var(--blue-border); }
.location-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.location-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.location-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.location-badge {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 8px;
}

/* ─── CTA BANNER (legacy — other pages) ──────── */
.cta-banner {
  padding: 100px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(59,130,246,0.07), transparent);
}
.cta-banner-inner { position: relative; z-index: 1; }
.cta-banner h2 {
  font-size: clamp(36px,5vw,60px);
  font-weight: 900; letter-spacing: -0.03em; margin-bottom: 16px;
}
.cta-banner p { font-size: 17px; color: var(--muted); margin-bottom: 40px; line-height: 1.7; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ═══ FINAL CTA (homepage) ═══════════════════════ */
#final-cta {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 38%;
  z-index: 0;
}
.final-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 900px 600px at 50% 52%, rgba(59,130,246,0.11) 0%, transparent 65%),
    rgba(0,0,0,0.87);
  z-index: 1;
}
.final-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 720px;
  padding: clamp(80px, 12vh, 140px) clamp(24px, 6vw, 60px);
}
.final-cta-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 28px;
}
.final-cta-tag::before,
.final-cta-tag::after {
  content: ''; display: block;
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.18);
}
.final-cta-headline {
  font-size: clamp(44px, 6.5vw, 84px);
  font-weight: 900; letter-spacing: -0.035em; line-height: 1.04;
  color: #fff;
  margin-bottom: 24px;
}
.final-cta-sub {
  font-size: 17px; line-height: 1.75;
  color: rgba(255,255,255,0.58);
  max-width: 560px;
  margin: 0 auto 40px;
}
.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.final-cta-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 100px;
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.80);
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background 0.25s, border-color 0.25s, color 0.2s;
}
.final-cta-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.72);
  color: #fff;
}
.final-cta-trust {
  font-size: 12px; letter-spacing: 0.03em;
  color: rgba(255,255,255,0.28);
  margin: 0;
}

/* ─── CONTACT FORM ───────────────────────────── */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 44px;
}
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 500;
  color: var(--muted); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--text);
  font-family: 'Inter', sans-serif; font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(136,146,164,0.5); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.14);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: #1a1a2e; color: var(--text); }
.form-submit { width: 100%; padding: 15px; font-size: 15px; border-radius: 10px; }

.form-success { display: none; text-align: center; padding: 40px 20px; }
.form-success.show { display: block; }
.form-success-icon { font-size: 52px; margin-bottom: 20px; }
.form-success h3 { font-size: 26px; margin-bottom: 10px; }
.form-success p { color: var(--muted); font-size: 15px; line-height: 1.7; }

/* What to expect steps */
.expect-steps { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.expect-step {
  display: flex; gap: 20px; align-items: flex-start;
}
.expect-num {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 14px; font-weight: 800; color: var(--blue);
}
.expect-step h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.expect-step p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Contact info items */
.contact-item {
  display: flex; align-items: center; gap: 16px; margin-bottom: 22px;
}
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.contact-item-label { font-size: 13px; color: var(--muted); }
.contact-item-value { font-size: 15px; font-weight: 600; color: var(--text); }

/* ─── DIVIDER ─────────────────────────────────── */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 auto;
}

/* ─── FOUNDER PHOTO (real image) ────────────── */
.founder-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px var(--blue-border), 0 28px 64px rgba(0,0,0,0.45);
  aspect-ratio: 3/4;
}
.founder-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.founder-img-wrap:hover img { transform: scale(1.02); }

/* ─── PULL QUOTE ─────────────────────────────── */
.pull-quote {
  border-left: 3px solid var(--blue);
  padding: 28px 40px;
  background: var(--bg-card);
  border-radius: 0 16px 16px 0;
  margin: 0;
}
.pull-quote blockquote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 700; color: var(--text);
  line-height: 1.55; margin-bottom: 16px;
  font-style: normal;
}
.pull-quote cite {
  font-size: 13px; color: var(--muted);
  font-style: normal; display: block;
}

/* ─── COMMUNITY CARDS ────────────────────────── */
.community-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.community-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 36px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.community-card:hover {
  border-color: var(--blue-border);
  box-shadow: 0 0 40px rgba(59,130,246,0.07);
}
.community-icon { font-size: 32px; margin-bottom: 16px; }
.community-card-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 8px;
}
.community-card h3 { font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.community-card .community-sub {
  font-size: 13px; color: var(--blue); font-weight: 500; margin-bottom: 14px;
}
.community-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ─── ABOUT v2 — PREMIUM REDESIGN ────────────── */

/* Founder v2 */
.founder-section { padding: 80px 0 100px; }
.founder-grid-v2 {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.founder-img-col { position: relative; }
.founder-glow-orb {
  position: absolute;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.14) 0%, transparent 70%);
  left: -70px; top: 50%;
  transform: translateY(-50%);
  pointer-events: none; z-index: 0;
}
.founder-img-v2 {
  border-radius: 24px;
  overflow: hidden;
  position: relative; z-index: 1;
  box-shadow: 0 0 0 1px var(--blue-border),
              0 48px 80px rgba(0,0,0,0.55),
              0 0 80px rgba(59,130,246,0.08);
  aspect-ratio: 2/3;
}
.founder-img-v2 img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.7s ease;
}
.founder-img-v2:hover img { transform: scale(1.025); }
.founder-img-v2::after {
  content: '';
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to bottom, transparent 62%, rgba(5,5,13,0.45) 100%);
  pointer-events: none;
}
.founder-text-col { padding-top: 8px; }
.founder-chips {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 16px; margin-bottom: 28px;
}
.founder-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px; font-weight: 600;
  color: var(--muted);
}
.founder-chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* Pull quote v2 — centered cinematic */
.pull-quote-v2 {
  text-align: center;
  position: relative;
  max-width: 880px;
  margin: 0 auto;
}
.pull-quote-v2-mark {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(100px, 14vw, 180px);
  font-weight: 900;
  color: var(--blue);
  opacity: 0.07;
  line-height: 0.85;
  display: block;
  margin-bottom: -20px;
  user-select: none;
  pointer-events: none;
}
.pull-quote-v2 blockquote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.62;
  margin: 0 0 24px;
  font-style: normal;
  position: relative;
}
.pull-quote-v2 cite {
  font-size: 13px; color: var(--blue);
  font-weight: 600; font-style: normal;
  display: inline-flex; align-items: center; gap: 8px;
}
.pull-quote-v2 cite::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--blue);
  display: inline-block; flex-shrink: 0;
}

/* About editorial split (What We Do) */
.about-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-editorial-photo {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4);
  border: 1px solid var(--border);
}
.about-editorial-photo img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.65s ease;
}
.about-editorial-photo:hover img { transform: scale(1.035); }
.about-editorial-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.05), transparent 65%);
  pointer-events: none;
}
.about-bullets {
  display: flex; flex-direction: column; gap: 18px;
  margin-top: 28px;
}
.about-bullet { display: flex; gap: 16px; align-items: flex-start; }
.about-bullet-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; margin-top: 2px;
}
.about-bullet-text strong {
  display: block; font-size: 14px; font-weight: 700;
  margin-bottom: 3px; color: var(--text);
}
.about-bullet-text span { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* Stats band */
.about-stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  margin-top: 64px;
}
.about-stat-item {
  padding: 32px 20px;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background 0.25s;
}
.about-stat-item:last-child { border-right: none; }
.about-stat-item:hover { background: rgba(59,130,246,0.04); }
.about-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 10px;
}
.about-stat-lbl {
  font-size: 11px; color: var(--muted);
  line-height: 1.5; text-transform: uppercase;
  letter-spacing: 0.06em; font-weight: 600;
}

/* Community visual cards */
.community-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.community-visual-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
  aspect-ratio: 4/3;
}
.community-visual-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-4px);
}
.community-visual-card > img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.community-visual-card:hover > img { transform: scale(1.04); }
.community-visual-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.04) 28%, rgba(5,5,13,0.92) 100%);
  pointer-events: none;
}
.community-visual-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 26px; z-index: 2;
}
.community-visual-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 4px;
}
.community-visual-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 800;
  color: #fff; margin-bottom: 2px; line-height: 1.2;
}
.community-visual-sub {
  font-size: 12px; color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.community-visual-text { font-size: 13px; color: rgba(255,255,255,0.68); line-height: 1.7; }
.community-badge {
  position: absolute;
  top: 16px; right: 16px; z-index: 3;
  background: rgba(59,130,246,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 11px; font-weight: 700;
  color: #fff; letter-spacing: 0.02em;
}

/* Values v2 */
.values-grid-v2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.value-card-v2 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 32px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.value-card-v2::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 0%, rgba(59,130,246,0.08), transparent 65%);
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.value-card-v2:hover::before { opacity: 1; }
.value-card-v2:hover {
  border-color: var(--blue-border);
  box-shadow: 0 8px 40px rgba(59,130,246,0.1);
  transform: translateY(-4px);
}
.value-card-num {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--blue); margin-bottom: 18px;
  opacity: 0.7;
}
.value-icon-box {
  width: 46px; height: 46px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; margin-bottom: 18px;
}
.value-card-v2 h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.3; }
.value-card-v2 p { font-size: 13.5px; color: var(--muted); line-height: 1.72; }

/* ─── CREATOR PROOF SECTION ─────────────────── */
.creator-feed-photo {
  aspect-ratio: 9/16 !important;
  max-width: 320px;
  justify-self: center;
  box-shadow: 0 0 0 1px var(--blue-border), 0 40px 80px rgba(0,0,0,0.5), 0 0 60px rgba(59,130,246,0.08);
}
.creator-mil-stat {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--blue);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 20px;
}
.creator-mil-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.04em;
  line-height: 1;
  flex-shrink: 0;
}
.creator-mil-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  margin-top: 6px;
}
.creator-mil-sub {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}
.creator-recognition {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
}
.creator-recognition-logo-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.creator-smallrig-logo {
  height: 22px;
  width: auto;
  display: block;
}
.creator-recognition-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 7px;
}
.creator-recognition-text span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.68;
}

/* Location visual cards */
.locations-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}
.location-visual-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
  aspect-ratio: 16/9;
}
.location-visual-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-4px);
}
.location-visual-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.location-visual-card:hover img { transform: scale(1.04); }
.location-visual-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 28%, rgba(5,5,13,0.9) 100%);
  pointer-events: none;
}
.location-visual-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 24px; z-index: 2;
}
.location-visual-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 6px;
  background: rgba(59,130,246,0.12);
  border: 1px solid var(--blue-border);
  border-radius: 100px; padding: 3px 10px;
}
.location-visual-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px; font-weight: 800;
  color: #fff; margin-bottom: 6px; line-height: 1.2;
}
.location-visual-text { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.6; }

/* ─── CLIENT TYPE CARDS ──────────────────────── */
.client-types-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px;
}
.client-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px; padding: 36px;
  display: flex; gap: 24px; align-items: flex-start;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.client-card:hover {
  border-color: var(--blue-border);
  box-shadow: 0 0 40px rgba(59,130,246,0.07);
}
.client-card-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.client-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.client-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ─── LOGO ROW ────────────────────────────────── */
/* ─── CLIENT LOGO STRIP (scrolling marquee) ─── */
/* ─── CLIENTS / MARQUEE SECTION ─────────────── */
.clients-section {
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden; /* clip the 1000px bg glow — it forced 687px document width on phones */
  background: linear-gradient(180deg, transparent 0%, rgba(59,130,246,0.028) 50%, transparent 100%);
}
.clients-bg-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px; height: 600px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.07) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.clients-marquee-label {
  text-align: center;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 52px 0 40px;
}

/* ── Marquee rows ── */
.marquee-row {
  overflow: hidden;
  position: relative;
  padding: 22px 0;
}
.marquee-row::before,
.marquee-row::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 160px; z-index: 2; pointer-events: none;
}
.marquee-row::before { left: 0;  background: linear-gradient(to right, var(--bg) 20%, transparent); }
.marquee-row::after  { right: 0; background: linear-gradient(to left,  var(--bg) 20%, transparent); }
.marquee-row--right  { margin-top: 20px; }

.marquee-track {
  display: flex; align-items: center;
  gap: 64px; width: max-content; padding: 0 32px;
  animation: marquee-left 62s linear infinite;
  will-change: transform;
}
.marquee-track--right { animation: marquee-right 44s linear infinite; }
.marquee-row:hover .marquee-track { animation-play-state: paused; }

@keyframes marquee-left  { 0% { transform: translateX(0); }     100% { transform: translateX(-50%); } }
@keyframes marquee-right { 0% { transform: translateX(-50%); }  100% { transform: translateX(0); } }

/* ── Subtle logo float animation ── */
@keyframes logo-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* ── Logo items — NO card, floating freely ── */
.logo-item {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  cursor: default;
  animation: logo-float 4.2s ease-in-out infinite;
}
.logo-item:nth-child(2n)  { animation-duration: 5.4s; animation-delay: 0.7s; }
.logo-item:nth-child(3n)  { animation-duration: 4.8s; animation-delay: 1.6s; }
.logo-item:nth-child(4n)  { animation-duration: 6.0s; animation-delay: 2.5s; }
.logo-item:nth-child(5n)  { animation-duration: 3.9s; animation-delay: 3.3s; }
.logo-item:hover {
  animation-play-state: paused !important;
  transform: scale(1.12) translateY(-6px) !important;
}
.logo-item img {
  height: 72px; width: auto;
  max-width: 210px;
  object-fit: contain; display: block;
  opacity: 0.72;
  filter: brightness(1.05);
  transition: opacity 0.4s ease, filter 0.4s ease;
}
/* Featured / high-profile logos render larger */
.logo-item--lg img   { height: 90px;  max-width: 250px; opacity: 0.82; }
.logo-item--xl img   { height: 108px; max-width: 290px; opacity: 0.88; }
.logo-item:hover img {
  opacity: 1;
  filter: brightness(1.25)
          drop-shadow(0 0 14px rgba(255,255,255,0.32))
          drop-shadow(0 0 40px rgba(59,130,246,0.22));
}

/* ── Auto-rotating testimonial block ── */
/* ── Testimonial horizontal marquee ── */
.testimonial-marquee {
  overflow: hidden;
  position: relative;
  margin-top: 64px;
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,0.055);
}
/* Edge fade masks */
.testimonial-marquee::before,
.testimonial-marquee::after {
  content: ''; position: absolute; top: 0; bottom: 0;
  width: 180px; z-index: 2; pointer-events: none;
}
.testimonial-marquee::before { left: 0;  background: linear-gradient(to right, var(--bg) 20%, transparent); }
.testimonial-marquee::after  { right: 0; background: linear-gradient(to left,  var(--bg) 20%, transparent); }

.testimonial-marquee-track {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  width: max-content;
  animation: marquee-left 75s linear infinite;
  will-change: transform;
}
.testimonial-marquee:hover .testimonial-marquee-track {
  animation-play-state: paused;
}

/* Individual testimonial item — no box, no card, pure text */
.tm-item {
  flex-shrink: 0;
  width: 300px;   /* 4 fit comfortably on 1200px desktop */
}
.tm-quote {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(15px, 1.45vw, 19px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.5;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}
.tm-quote::before { content: '\201C'; }
.tm-quote::after  { content: '\201D'; }
.tm-client {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: #3b82f6;
  display: block;
}

/* ── Floating testimonial card (JS-positioned, position:fixed) ── */
.ctf-card {
  position: fixed; z-index: 9999;
  width: 290px;
  background: rgba(6,6,18,0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(59,130,246,0.28);
  border-radius: 14px;
  padding: 18px 22px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.65),
              0 0 0 1px rgba(255,255,255,0.04),
              0 0 50px rgba(59,130,246,0.1);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.ctf-card.active { opacity: 1; }
.ctf-name {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 8px;
}
.ctf-desc {
  font-size: 13.5px; font-style: italic;
  color: var(--text); line-height: 1.6; opacity: 0.9;
}

/* ─── LAYOUT HELPERS ────────────────────────── */
.contact-section-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.about-agency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.services-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .services-visual-grid { grid-template-columns: 1fr; }
  .who-visual-grid { grid-template-columns: repeat(2, 1fr); }
  .who-visual-grid .svc-card { aspect-ratio: 4 / 3; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .work-grid { grid-template-columns: repeat(2,1fr); }
  .work-showcase-grid { grid-template-columns:repeat(2,1fr); }
  .work-showcase-grid .wsc-hero     { grid-column:span 1; aspect-ratio:4/3; }
  .work-showcase-grid .wsc-portrait { min-height:260px; }
  .work-showcase-grid .wsc-strip    { grid-column:span 2; aspect-ratio:16/7; }
  .wh-float-1 { width:160px; height:108px; }
  .wh-float-2 { display:none; }
  .wh-float-3 { width:148px; height:100px; }
  .wh-float-4 { display:none; }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .case-study-featured { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .founder-grid { grid-template-columns: 1fr; gap: 48px; }
  .founder-photo { aspect-ratio: 4/3; max-width: 400px; }
  .founder-grid-v2 { grid-template-columns: 1fr; gap: 48px; }
  .contact-section-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-who-grid { grid-template-columns: repeat(2,1fr); }
  .about-editorial { grid-template-columns: 1fr; gap: 48px; }
  .about-editorial-photo { order: -1; }
  .creator-feed-photo { max-width: 280px; }
  .about-stats-band { grid-template-columns: repeat(2, 1fr); }
  .values-grid-v2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, nav > .container > .btn { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .svc-section-inner { flex-direction: column; align-items: flex-start; gap: 40px; }
  .svc-section-left { flex: none; max-width: 100%; }
  .svc-name-item a { font-size: clamp(20px, 6vw, 28px); padding: 16px 0; }
  .who-visual-grid { grid-template-columns: 1fr; }
  .who-visual-grid .svc-card { aspect-ratio: 16 / 9; }
  .work-grid { grid-template-columns: 1fr; }
  .work-showcase-grid { grid-template-columns:1fr; gap:10px; }
  .work-showcase-grid .wsc-hero     { grid-column:span 1; aspect-ratio:16/9; }
  .work-showcase-grid .wsc-portrait { min-height:260px; aspect-ratio:4/3; }
  .work-showcase-grid .wsc-strip    { grid-column:span 1; aspect-ratio:16/9; }
  .wh-float-1, .wh-float-2, .wh-float-3, .wh-float-4 { display:none; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid-v2 { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: 1fr; }
  .locations-visual-grid { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .community-visual-grid { grid-template-columns: 1fr; }
  .creator-mil-stat { flex-direction: column; gap: 10px; }
  .creator-recognition { flex-direction: column; gap: 14px; }
  .creator-feed-photo { max-width: 240px; }
  .client-types-grid { grid-template-columns: 1fr; }
  .about-agency-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-who-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-sub { font-size: 16px; max-width: 100%; }
  .hero-inner { padding-left: 24px; padding-right: 24px; padding-top: 80px; }
  /* Home hero: stop pinning content to the bottom on phones — it overflowed up into
     the fixed nav. Let it flow from the top, clear the nav, and let the hero grow. */
  #hero { height: auto; min-height: 100vh; }
  .hero-content { position: relative; max-width: 100%; padding: 116px 24px 56px; }
  .hero-bottom { margin-top: 32px; gap: 10px; }
  .hero-clients-strip { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero-clients-sep { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .form-card { padding: 28px 20px; }
  .cs-stats { flex-direction: column; gap: 16px; }
  .case-study-featured { padding: 24px 20px; }
  .hero-headline { font-size: clamp(30px, 8.5vw, 48px); letter-spacing: -0.03em; }
  .hero-headline .line { overflow: visible; }
  .page-hero h1 { font-size: clamp(34px, 9vw, 52px); }
  .about-stats-band { grid-template-columns: 1fr 1fr; }
  .showcase-headline { font-size: clamp(38px, 11vw, 56px); }
  .showcase-sub { font-size: 15px; }
  .showcase-cta { padding: 13px 28px; font-size: 13px; }
  .final-cta-headline { font-size: clamp(38px, 11vw, 56px); }
  .final-cta-sub { font-size: 15px; }
  .final-cta-actions { flex-direction: column; align-items: center; }
  .final-cta-secondary { width: 100%; justify-content: center; }
  .ab-pillars-grid { grid-template-columns: 1fr; }
  .ab-hero-stats { gap: 14px; }
  .ab-hs-sep { height: 20px; }
  .ab-final-cta-actions { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════
   GALLERY SYSTEM
   ═══════════════════════════════════════════════ */

/* ─── FILTER NAV ─────────────────────────────── */
.gallery-filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 40px;
}
.filter-btn {
  display: inline-flex; align-items: center;
  padding: 8px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.filter-btn:hover { color: var(--text); border-color: rgba(255,255,255,0.15); }
.filter-btn.active {
  color: var(--blue);
  border-color: var(--blue-border);
  background: var(--blue-glow);
}

/* ─── GALLERY SECTIONS ───────────────────────── */
.gallery-sections { margin-top: 80px; }
.gallery-section {
  padding: 120px 0;
  /* NOTE: content-visibility:auto was removed here — it estimated off-screen
     section heights and caused scroll-position jumps / layout shift while
     scrolling the gallery. Lazy images + preload="none" videos keep this fast. */
}
.gallery-section + .gallery-section {
  border-top: 1px solid var(--border);
}
.gallery-section-header { margin-bottom: 52px; }
.gallery-cat-label {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.gallery-section-header h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.05; margin-bottom: 12px;
}
.gallery-section-header p {
  font-size: 15px; color: var(--muted);
  max-width: 520px; line-height: 1.75;
}

/* ─── BUSINESS SECTION — Premium portfolio header ─ */
.biz-section-header {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 72px;
}
.biz-section-headline {
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin-bottom: 22px;
}
.biz-hl-accent { color: var(--blue); }
.biz-section-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--muted);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 40px;
}
.biz-scope-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 0;
  padding: 16px 28px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  max-width: 620px;
  margin: 0 auto;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--muted);
}
.biz-scope-sep {
  color: rgba(136,146,164,0.3);
  padding: 0 12px;
}

/* ─── MEDIA CARD CORE ────────────────────────── */
.media-card {
  position: relative; overflow: hidden;
  border-radius: 14px; background: var(--bg-card);
  cursor: pointer;
  /* Promote to own compositing layer — eliminates repaint on hover */
  transform: translateZ(0);
}
.media-card .media-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  /* GPU-accelerated scaling */
  will-change: transform;
}
.media-card:hover .media-img { transform: scale(1.05); }

/* Overlay */
.media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(5,5,13,0.92) 0%,
    rgba(5,5,13,0.35) 50%,
    transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 24px;
  pointer-events: none;
}
.media-card:hover .media-overlay { opacity: 1; }
.media-info-tag {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 6px;
}
.media-info-title {
  font-size: 16px; font-weight: 700; color: #fff;
  transform: translateY(8px);
  transition: transform 0.35s ease 0.05s;
}
.media-card:hover .media-info-title { transform: translateY(0); }
.media-info-sub {
  font-size: 13px; color: rgba(240,244,255,0.6);
  margin-top: 4px;
  transform: translateY(8px);
  transition: transform 0.35s ease 0.1s;
}
.media-card:hover .media-info-sub { transform: translateY(0); }

/* Play button */
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.8);
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none; padding-left: 3px;
}
.media-card:hover .play-btn {
  opacity: 1; transform: translate(-50%,-50%) scale(1);
}

/* ─── MEDIA PLACEHOLDER ──────────────────────── */
.media-ph {
  width: 100%; height: 100%; min-height: inherit;
  background: var(--bg-hover);
  border: 1.5px dashed rgba(255,255,255,0.07);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; text-align: center; padding: 24px;
  transition: border-color 0.3s;
}
.media-card:hover .media-ph { border-color: rgba(59,130,246,0.28); }
.media-ph-icon { font-size: 26px; opacity: 0.22; }
.media-ph-type {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); opacity: 0.7;
}
.media-ph-label {
  font-size: 11px; color: var(--muted); opacity: 0.5;
  max-width: 180px; line-height: 1.55;
}

/* ─── ASPECT RATIOS ──────────────────────────── */
.ar-wide  { aspect-ratio: 21/9; }
.ar-16-9  { aspect-ratio: 16/9; }
.ar-4-3   { aspect-ratio: 4/3; }
.ar-1-1   { aspect-ratio: 1/1; }
.ar-4-5   { aspect-ratio: 4/5; }   /* editorial portrait — Instagram ratio */
.ar-3-4   { aspect-ratio: 3/4; }
.ar-9-16  { aspect-ratio: 9/16; }

/* ─── GRID LAYOUTS ───────────────────────────── */
.media-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.media-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.media-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

/* ─── BUSINESS GALLERY — CURATED LAYOUT ─────── */
.biz-client-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 0;
  margin-bottom: 32px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 2;
}
.biz-dot { color: var(--border); padding: 0 4px; }
.biz-hero {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 21/8;
  border: 1px solid var(--border);
  cursor: pointer;
}
.biz-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.biz-hero:hover img { transform: scale(1.03); }
.biz-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5,5,13,0.78) 0%, rgba(5,5,13,0.15) 45%, transparent 100%);
  pointer-events: none;
}
.biz-hero-credit {
  position: absolute;
  left: 40px;
  bottom: 36px;
  z-index: 2;
}
.biz-hero-credit-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 6px;
}
.biz-hero-credit-name {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.biz-asym {
  display: grid;
  gap: 16px;
  align-items: stretch;
}
.biz-asym-3-5 { grid-template-columns: 3fr 5fr; }
.biz-asym-5-3 { grid-template-columns: 5fr 3fr; }
.biz-portrait-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Government layout: 2/3 + 1/3 */
.gov-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}
.gov-grid-right {
  display: flex; flex-direction: column; gap: 16px;
}

/* Masonry — CSS columns */
.masonry-grid { columns: 3; column-gap: 16px; }
.masonry-item { break-inside: avoid; margin-bottom: 16px; display: block; }

/* Reel strip — horizontal scroll */
/* Outer container — overflow clip + soft edge fades */
.reel-marquee {
  overflow: hidden;
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 2%, black 98%, transparent 100%);
}

/* Inner track — auto-scrolling */
.reel-strip {
  display: flex;
  gap: 14px;
  width: max-content;
  padding: 4px 24px 12px;
  animation: reelScroll 200s linear infinite;
  will-change: transform;
}

@keyframes reelScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.reel-strip .media-card {
  flex-shrink: 0;
  width: 210px;
}

.reel-scroll-hint { display: none; }

/* ─── BEFORE / AFTER ─────────────────────────── */
.ba-wrapper { margin-top: 56px; }
.ba-intro { margin-bottom: 24px; }
.ba-intro h3 { font-size: 20px; font-weight: 800; margin-bottom: 6px; }
.ba-intro p { font-size: 14px; color: var(--muted); }
.ba-card {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}
.ba-side { position: relative; overflow: hidden; }

/* Before side — slightly darkened & desaturated */
.ba-side-before .media-card { filter: brightness(0.82) saturate(0.72); }
.ba-side-before::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.08);
  z-index: 1; pointer-events: none;
}

/* After side — slightly lifted & saturated */
.ba-side-after .media-card { filter: brightness(1.06) saturate(1.14); }

/* On-image labels — premium frosted pill at bottom-left */
.ba-label {
  position: absolute;
  bottom: 16px; left: 16px; z-index: 4;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.92);
  background: rgba(0,0,0,0.46);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 6px 13px;
}
.ba-label-after {
  color: #fff;
  background: rgba(59,130,246,0.35);
  border-color: rgba(59,130,246,0.4);
}

/* Legacy badge — hidden, replaced by .ba-label */
.ba-badge { display: none; }

/* Divider line */
.ba-divider {
  position: absolute; top: 0; bottom: 0;
  left: calc(50% - 1px); width: 2px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(255,255,255,0.22) 20%,
    rgba(255,255,255,0.28) 50%,
    rgba(255,255,255,0.22) 80%,
    transparent 100%
  );
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
}

/* Premium knob */
.ba-divider-knob {
  width: 42px; height: 42px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.2);
  display: flex; align-items: center; justify-content: center;
  gap: 5px;
  flex-shrink: 0;
}
.ba-knob-arrow {
  width: 0; height: 0; display: block;
}
.ba-knob-arrow-left {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 6px solid rgba(0,0,0,0.32);
}
.ba-knob-arrow-right {
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 6px solid rgba(0,0,0,0.32);
}

/* ─── SOCIAL PHONE MOCKUP ────────────────────── */
.phone-grid {
  display: flex; gap: 24px; align-items: flex-start;
  margin-top: 48px;
}
.phone-grid-text { flex: 1; padding-top: 16px; }
.phone-grid-text h3 {
  font-size: 22px; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 12px;
}
.phone-grid-text p { font-size: 14px; color: var(--muted); line-height: 1.75; }
.phone-grid-phones {
  display: flex; gap: 20px; flex-shrink: 0;
}
.phone-mockup {
  width: 240px;
  background: var(--bg-card);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 34px; overflow: hidden; padding: 10px;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.phone-notch {
  width: 72px; height: 18px;
  background: var(--bg);
  border-radius: 100px;
  margin: 0 auto 8px;
}
.phone-screen {
  background: var(--bg-hover);
  border-radius: 22px; overflow: hidden;
}
.sp-header {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
.sp-avatar {
  width: 28px; height: 28px;
  background: var(--blue-glow);
  border: 1px solid var(--blue-border);
  border-radius: 50%; flex-shrink: 0;
}
.sp-handle { font-size: 11px; font-weight: 600; color: var(--text); }
.sp-platform { font-size: 9px; color: var(--muted); }
.sp-image {
  aspect-ratio: 1/1;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 6px;
}
.sp-image-icon { font-size: 22px; opacity: 0.18; }
.sp-image-label { font-size: 9px; color: var(--muted); opacity: 0.45; }
.sp-footer { padding: 8px 12px 10px; }
.sp-likes {
  font-size: 10px; font-weight: 600;
  color: var(--text); margin-bottom: 4px;
}
.sp-caption { font-size: 9px; color: var(--muted); line-height: 1.5; }

/* ─── INSTAGRAM FEED SHOWCASE ───────────────────
   Real screenshots inside a phone frame shell.
   Height is auto — each phone grows to fit its
   screenshot naturally. No fake UI — the real
   feed is the content.
   ─────────────────────────────────────────────── */
.ig-feed-section { margin-top: 56px; }

.ig-feed-intro {
  text-align: center;
  margin-bottom: 44px;
}
.ig-feed-intro h3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 14px;
}
.ig-feed-intro p {
  font-size: 15px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.ig-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
  justify-items: center;
}

.ig-showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
}

/* Phone shell — bezels, shadow, rounded corners */
.ig-phone-frame {
  width: 100%;
  max-width: 228px;
  background: #111120;
  border-radius: 44px;
  padding: 46px 9px 22px;
  border: 2px solid rgba(255,255,255,0.1);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03),
    0 40px 90px rgba(0,0,0,0.68),
    0 12px 30px rgba(0,0,0,0.42),
    inset 0 1px 0 rgba(255,255,255,0.06);
  position: relative;
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94),
              box-shadow 0.45s ease;
}
.ig-phone-frame:hover {
  transform: translateY(-10px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 56px 110px rgba(0,0,0,0.72),
    0 18px 44px rgba(0,0,0,0.48),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

/* Dynamic Island pill */
.ig-dynamic-island {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 96px; height: 24px;
  background: #06060e;
  border-radius: 12px;
}

/* Screen — clips the screenshot, preserves its natural ratio */
.ig-screen {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  display: block;
  /* Subtle inner shadow to blend bezel into screen */
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

/* The real Instagram screenshot — auto height, no crop */
.ig-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

/* Subtle scroll-peek on hover: nudges screenshot upward to hint at more content */
.ig-phone-frame:hover .ig-screenshot {
  transform: translateY(-12px);
  transition: transform 1.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.ig-screenshot {
  transition: transform 1.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

/* Home indicator bar */
.ig-home-bar {
  width: 70px; height: 3px;
  background: rgba(255,255,255,0.22);
  border-radius: 2px;
  margin: 10px auto 0;
}

/* Label below each phone */
.ig-phone-label { text-align: center; }
.ig-label-handle {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.ig-label-managed {
  display: block;
  font-size: 10px;
  color: var(--blue);
  margin-top: 5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .ig-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .ig-showcase-item:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 260px;
    margin: 0 auto;
  }
}
@media (max-width: 560px) {
  .ig-showcase { grid-template-columns: 1fr; gap: 36px; }
  .ig-showcase-item:nth-child(3) { grid-column: auto; max-width: none; margin: 0; }
  .ig-phone-frame { max-width: 290px; }
}

/* ─── IG FEED ECOSYSTEM — PREMIUM REDESIGN ──────────────
   Replaces the flat 3-col phone grid with a staggered,
   cinematic social ecosystem presentation.
   Apple product section × Instagram-first agency energy.
   ─────────────────────────────────────────────────────── */

/* ── Intro ── */
.ig-eco-intro {
  text-align: center;
  margin-bottom: 44px;
}
.ig-eco-label-row {
  display: inline-flex; align-items: center; gap: 13px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 22px;
}
.ig-eco-label-bar {
  display: block; width: 26px; height: 1px;
  background: currentColor; opacity: 0.45; flex-shrink: 0;
}
.ig-eco-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 900; letter-spacing: -0.036em;
  line-height: 1.1; color: var(--text);
  margin-bottom: 18px;
}
.ig-eco-sub {
  font-size: 15px; color: var(--muted);
  max-width: 440px; margin: 0 auto; line-height: 1.74;
}

/* ── Stage ── */
.ig-eco-stage {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 52px 48px 68px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(6,6,17,0.62) 10%,
    rgba(6,6,17,0.62) 90%,
    transparent 100%
  );
  border-radius: 28px;
  overflow: visible;
}
/* Subtle grid overlay */
.ig-eco-stage::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.028) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 72% 78% at 50% 50%, black, transparent);
  pointer-events: none; border-radius: inherit; z-index: 0;
}

/* ── Ambient glows ── */
.ig-eco-bg {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0; border-radius: inherit;
  overflow: hidden;
}
.ig-eco-bg-glow {
  position: absolute; border-radius: 50%;
  filter: blur(88px);
}
.ig-eco-bg-glow--c {
  width: 580px; height: 580px;
  background: radial-gradient(circle, rgba(59,130,246,0.15), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.ig-eco-bg-glow--l {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(59,130,246,0.09), transparent 70%);
  top: 12%; left: 6%;
}
.ig-eco-bg-glow--r {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(99,102,241,0.09), transparent 70%);
  bottom: 12%; right: 6%;
}

/* ── Phone slots ── */
.ig-eco-phone {
  position: relative;
  flex-shrink: 0;
  transition: transform 0.58s cubic-bezier(0.25,0.46,0.45,0.94);
  z-index: 2;
}
/* Left — tilted back, elevated */
.ig-eco-phone--l {
  width: 290px;
  transform: translateY(-50px) rotate(-3.5deg) scale(0.91);
  margin-right: -54px;
}
/* Center — front, largest, neutral */
.ig-eco-phone--c {
  width: 360px;
  z-index: 4;
  transform: translateY(0) scale(1);
}
/* Right — tilted back, lowered */
.ig-eco-phone--r {
  width: 290px;
  transform: translateY(38px) rotate(3.5deg) scale(0.91);
  margin-left: -54px;
}

/* Hover — lift and partial-straighten */
.ig-eco-phone--l:hover {
  transform: translateY(-62px) rotate(-1.5deg) scale(0.95);
  z-index: 10;
}
.ig-eco-phone--c:hover {
  transform: translateY(-16px) scale(1.03);
  z-index: 10;
}
.ig-eco-phone--r:hover {
  transform: translateY(26px) rotate(1.5deg) scale(0.95);
  z-index: 10;
}

/* ── Device frame ── */
.ig-eco-frame {
  background: #0b0b1d;
  border-radius: 44px;
  padding: 54px 10px 24px;
  border: 1.5px solid rgba(255,255,255,0.1);
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.022),
    0 0 52px rgba(59,130,246,0.13),
    0 56px 120px rgba(0,0,0,0.74),
    0 18px 44px rgba(0,0,0,0.52),
    inset 0 1px 0 rgba(255,255,255,0.065),
    inset 0 -1px 0 rgba(0,0,0,0.22);
  transition: box-shadow 0.58s ease;
}
/* Hero frame — center phone, stronger blue corona */
.ig-eco-frame--hero {
  border-color: rgba(59,130,246,0.28);
  box-shadow:
    0 0 0 1px rgba(59,130,246,0.14),
    0 0 88px rgba(59,130,246,0.22),
    0 0 160px rgba(59,130,246,0.07),
    0 68px 140px rgba(0,0,0,0.8),
    0 22px 52px rgba(0,0,0,0.57),
    inset 0 1px 0 rgba(255,255,255,0.08);
}
/* Hover intensity boosts */
.ig-eco-phone--l:hover .ig-eco-frame,
.ig-eco-phone--r:hover .ig-eco-frame {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 0 68px rgba(59,130,246,0.19),
    0 72px 140px rgba(0,0,0,0.82),
    0 22px 56px rgba(0,0,0,0.58),
    inset 0 1px 0 rgba(255,255,255,0.09);
}
.ig-eco-phone--c:hover .ig-eco-frame--hero {
  box-shadow:
    0 0 0 1px rgba(59,130,246,0.22),
    0 0 110px rgba(59,130,246,0.3),
    0 0 200px rgba(59,130,246,0.1),
    0 80px 150px rgba(0,0,0,0.86),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

/* Dynamic Island */
.ig-eco-island {
  position: absolute;
  top: 15px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #04040e;
  border-radius: 12px;
}

/* Screen clip */
.ig-eco-screen {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}
.ig-eco-img {
  width: 100%; height: auto; display: block;
  transition: transform 2.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
/* Scroll peek on hover */
.ig-eco-phone:hover .ig-eco-img { transform: translateY(-20px); }

/* Home bar */
.ig-eco-homebar {
  width: 66px; height: 3px;
  background: rgba(255,255,255,0.16);
  border-radius: 2px;
  margin: 13px auto 0;
}

/* ── Phone handle labels ── */
.ig-eco-handle-tag {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: rgba(240,244,255,0.72);
  letter-spacing: -0.01em;
  margin-top: 14px;
  pointer-events: none;
}
.ig-eco-handle-tag--hero {
  font-size: 15px;
  color: var(--text);
  opacity: 1;
}

/* ── Account credits strip ── */
.ig-eco-credits {
  display: flex; align-items: center;
  justify-content: center; gap: 22px;
  margin-top: 48px; flex-wrap: wrap;
}
.ig-eco-credit-item {
  display: flex; align-items: center; gap: 8px;
}
.ig-eco-credit-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 7px rgba(59,130,246,0.55);
  flex-shrink: 0;
}
.ig-eco-credit-handle {
  font-size: 13px; font-weight: 700;
  color: var(--text); letter-spacing: -0.01em;
}
.ig-eco-credit-sep { color: rgba(255,255,255,0.14); font-size: 13px; }
.ig-eco-credit-type { font-size: 12px; color: var(--muted); }
.ig-eco-credits-rule {
  display: block; width: 1px; height: 18px;
  background: var(--border); flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .ig-eco-phone--l { width: 230px; margin-right: -38px; transform: translateY(-40px) rotate(-3.5deg) scale(0.91); }
  .ig-eco-phone--c { width: 290px; }
  .ig-eco-phone--r { width: 230px; margin-left: -38px; transform: translateY(30px) rotate(3.5deg) scale(0.91); }
  .ig-eco-stage { padding: 44px 32px 60px; }
}
@media (max-width: 700px) {
  .ig-eco-stage {
    flex-direction: column; align-items: center;
    gap: 32px; padding: 40px 0 64px;
  }
  .ig-eco-phone--l,
  .ig-eco-phone--c,
  .ig-eco-phone--r {
    transform: none !important;
    margin: 0 !important;
    width: 272px;
  }
  .ig-eco-phone--l:hover,
  .ig-eco-phone--r:hover { transform: translateY(-10px) !important; }
  .ig-eco-phone--c:hover { transform: translateY(-10px) !important; }
  .ig-eco-credits { gap: 12px; }
  .ig-eco-credits-rule { display: none; }
}

/* ─── COMMERCIAL VIDEO CARD ─────────────────────
   Wrapper that stacks media-card + a persistent
   label row beneath it. Used in the Commercial
   Production section where client names should
   always be readable — not hidden behind hover.
   ─────────────────────────────────────────────── */
.vid-card-wrap {
  display: flex;
  flex-direction: column;
}
.vid-card-label {
  padding: 10px 2px 0;
}
.vid-card-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.vid-card-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.45;
}

/* Play button always subtly visible in the commercial section —
   signals every card is playable without needing to hover first */
#section-commercial .play-btn {
  opacity: 0.32;
  transform: translate(-50%, -50%) scale(0.88);
}
#section-commercial .media-card:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Standalone full-width "feature" video cards between pair rows.
   Slightly elevated shadow + blue accent on hover to signal
   these are spotlight pieces, not just supporting content. */
.commercial-feature .media-card {
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
  transition: box-shadow 0.45s ease, transform 0.45s ease;
}
.commercial-feature .media-card:hover {
  box-shadow:
    0 0 0 1px var(--blue-border),
    0 16px 60px rgba(0,0,0,0.55),
    0 0 40px rgba(59,130,246,0.06);
}

/* ─── CAMPAIGN STAT CARD ─────────────────────── */
.stat-accent-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
  height: 100%;
  transition: border-color 0.25s;
}
.stat-accent-card:hover { border-color: var(--blue-border); }
.sac-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue);
}
.sac-stat { display: flex; flex-direction: column; gap: 3px; }
.sac-num {
  font-family: 'Outfit', sans-serif;
  font-size: 38px; font-weight: 900;
  color: var(--text); letter-spacing: -0.03em; line-height: 1;
}
.sac-desc { font-size: 12px; color: var(--muted); line-height: 1.4; }
.sac-divider { height: 1px; background: var(--border); }

/* Drone label badge */
.drone-badge {
  position: absolute; bottom: 16px; right: 16px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(5,5,13,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  font-size: 11px; font-weight: 600; color: rgba(240,244,255,0.7);
}

/* ─── GOVERNMENT STAT TEXT CARD ──────────────── */
.gov-text-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  position: relative;
  overflow: hidden;
}
.gov-text-card::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(59,130,246,0.07), transparent 70%);
  pointer-events: none;
}
.gov-text-line {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.45s ease;
}
.gov-text-card.visible .gov-text-line:nth-child(1) { transition-delay: 0s;    opacity: 1; transform: none; }
.gov-text-card.visible .gov-text-line:nth-child(2) { transition-delay: 0.12s; opacity: 1; transform: none; }
.gov-text-card.visible .gov-text-line:nth-child(3) { transition-delay: 0.22s; opacity: 1; transform: none; }
.gov-text-card.visible .gov-text-line:nth-child(4) { transition-delay: 0.32s; opacity: 1; transform: none; }
.gov-text-card.visible .gov-text-line:nth-child(5) { transition-delay: 0.42s; opacity: 1; transform: none; }
.gov-text-card.visible .gov-text-line:nth-child(6) { transition-delay: 0.52s; opacity: 1; transform: none; }
.gtc-eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
}
.gtc-from {
  font-size: 12px; font-weight: 500;
  color: var(--muted); margin-bottom: 2px;
}
.gtc-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(52px, 7vw, 80px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  background: linear-gradient(135deg, #fff 40%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}
.gtc-unit {
  font-size: 14px; font-weight: 600;
  color: var(--muted); letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.gtc-rule {
  height: 1px; background: var(--border);
  margin-bottom: 20px;
}
.gtc-since {
  font-size: 12px; color: var(--muted); line-height: 1.7;
}
.gtc-since strong { color: var(--text); font-weight: 600; }

/* ─── INSTAGRAM PROFILE CARD ─────────────────── */
.ig-profile-card {
  background: #0b0b1c;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.ig-profile-top {
  padding: 18px 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ig-profile-row {
  display: flex;
  align-items: center;
  gap: 14px;
}
.ig-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6);
}
.ig-avatar::before {
  content: '';
  position: absolute;
  inset: -2.5px;
  border-radius: 50%;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  z-index: -1;
  padding: 2.5px;
}
.ig-handle-block {
  display: flex; flex-direction: column; gap: 2px;
}
.ig-username {
  font-size: 13px; font-weight: 700; color: var(--text);
  letter-spacing: -0.01em;
}
.ig-name-sub {
  font-size: 10px; color: var(--muted);
}
.ig-verified {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 600; color: var(--blue);
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: 100px;
  padding: 2px 8px;
  margin-left: auto; flex-shrink: 0;
}
.ig-stats-row {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 10px 0;
}
.ig-stat {
  flex: 1; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.ig-stat:last-child { border-right: none; }
.ig-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 15px; font-weight: 800;
  color: var(--text); line-height: 1;
}
.ig-stat-label {
  font-size: 9px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 3px;
}
.ig-bio {
  font-size: 10.5px; color: var(--muted); line-height: 1.65;
}
.ig-bio strong { color: var(--text); }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  flex: 1;
}
.ig-grid-cell {
  aspect-ratio: 1/1;
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  cursor: pointer;
}
.ig-grid-cell img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.35s ease;
}
.ig-grid-cell:hover img { transform: scale(1.06); }
.ig-views-badge {
  position: absolute;
  bottom: 5px; left: 5px;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 9px; font-weight: 700; color: #fff;
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════
   CASE STUDY — LOS BAÑOS PAGE
═══════════════════════════════════════════════ */

/* Hero override for case study */
.cs-page-hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  background: var(--bg);
}
.cs-page-hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.cs-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
}
.cs-hero-orb-1 {
  width: 600px; height: 600px;
  background: var(--blue);
  top: -200px; left: -150px;
}
.cs-hero-orb-2 {
  width: 400px; height: 400px;
  background: #6366f1;
  bottom: -100px; right: -100px;
  opacity: 0.10;
}
.cs-hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.cs-page-hero-inner {
  position: relative; z-index: 1;
  max-width: 900px;
}
.cs-client-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 100px;
  padding: 8px 18px 8px 12px;
  margin-bottom: 28px;
}
.cs-client-dot {
  width: 8px; height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34,197,94,0.7);
  flex-shrink: 0;
}
.cs-client-badge span {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(240,244,255,0.8);
}
.cs-hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 6vw, 74px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.cs-hero-headline .accent { color: var(--blue); }
.cs-hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--muted);
  line-height: 1.75;
  max-width: 660px;
  margin-bottom: 44px;
}
.cs-hero-meta {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.cs-hero-meta-item {
  display: flex; flex-direction: column; gap: 2px;
}
.cs-hero-meta-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted);
}
.cs-hero-meta-val {
  font-size: 15px; font-weight: 600; color: var(--text);
}

/* ── THE BIG STAT REVEAL ── */
.cs-big-stat-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, #060614 50%, var(--bg) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cs-big-stat-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.12), transparent 70%);
  pointer-events: none;
}
.cs-big-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(80px, 18vw, 180px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.9;
  background: linear-gradient(135deg, #fff 30%, var(--blue) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative; z-index: 1;
}
.cs-big-num-label {
  font-size: clamp(13px, 2vw, 17px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
  position: relative; z-index: 1;
}
.cs-big-num-sub {
  font-size: 14px; color: var(--muted);
  margin-top: 8px; opacity: 0.6;
  position: relative; z-index: 1;
}

/* ── KPI STRIP ── */
.cs-kpi-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
}
.cs-kpi {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.2s;
}
.cs-kpi:last-child { border-right: none; }
.cs-kpi:hover { background: rgba(59,130,246,0.04); }
.cs-kpi-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.cs-kpi-label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted);
}

/* ── YEAR COMPARISON ── */
.year-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.year-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.year-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-4px);
}
.year-card.featured {
  border-color: var(--blue-border);
  background: linear-gradient(135deg, rgba(59,130,246,0.06) 0%, var(--bg-card) 60%);
}
.year-card.featured::after {
  content: 'BEST YEAR YET';
  position: absolute;
  top: 18px; right: 18px;
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue);
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 100px;
  padding: 4px 10px;
}
.year-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 6px;
}
.year-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 4px;
}
.year-card.featured .year-num { color: var(--blue); }
.year-desc {
  font-size: 13px; color: var(--muted);
  line-height: 1.5; margin-bottom: 24px;
}
.year-stats {
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.year-stat-row {
  display: flex; justify-content: space-between; align-items: center;
}
.year-stat-key { font-size: 12px; color: var(--muted); }
.year-stat-val { font-size: 13px; font-weight: 600; color: var(--text); }

/* ── GROWTH BAR CHART ── */
.growth-chart-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
}
.growth-chart-title {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 32px;
}
.growth-bar-rows {
  display: flex; flex-direction: column; gap: 20px;
}
.growth-bar-row {
  display: grid;
  grid-template-columns: 90px 1fr 90px;
  align-items: center;
  gap: 16px;
}
.growth-bar-year {
  font-size: 13px; font-weight: 600; color: var(--muted);
  text-align: right;
}
.growth-bar-track {
  height: 36px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.growth-bar-fill {
  height: 100%;
  border-radius: 6px;
  width: 0;
  transition: width 1.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
  display: flex; align-items: center;
  padding-left: 14px;
}
.growth-bar-fill::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 100%);
  border-radius: 6px;
}
.growth-bar-fill.bar-2023 { background: linear-gradient(90deg, #1d4ed8, #3b82f6); }
.growth-bar-fill.bar-2024 { background: linear-gradient(90deg, #2563eb, #60a5fa); }
.growth-bar-fill.bar-2025 { background: linear-gradient(90deg, #3b82f6, #93c5fd); }
.growth-bar-fill-label {
  position: relative; z-index: 1;
  font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
}
.growth-bar-val {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 900;
  color: var(--text); letter-spacing: -0.02em;
}
.growth-chart-note {
  margin-top: 20px;
  font-size: 11px; color: var(--muted);
  opacity: 0.5;
}

/* ── QUARTERLY GRID ── */
.quarter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.quarter-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s;
}
.quarter-card:hover { border-color: var(--blue-border); }
.quarter-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), #60a5fa);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.quarter-card:hover::before { transform: scaleX(1); }
.quarter-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 10px;
}
.quarter-views {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 4px;
}
.quarter-views-label {
  font-size: 11px; color: var(--muted);
  margin-bottom: 20px;
}
.quarter-stats {
  display: flex; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}
.quarter-stat {
  display: flex; justify-content: space-between; align-items: center;
}
.quarter-stat-key { font-size: 11px; color: var(--muted); }
.quarter-stat-val { font-size: 12px; font-weight: 600; color: var(--text); }
.quarter-growth-badge {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 100px;
  padding: 3px 10px;
  font-size: 10px; font-weight: 700;
  color: #22c55e;
  margin-top: 14px;
}

/* ── TOP POSTS GRID ── */
.viral-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.viral-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}
.viral-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-4px);
}
.viral-card-thumb {
  aspect-ratio: 16/7;
  background: linear-gradient(135deg, #0a0a1f, #0f0f2a);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.viral-card-thumb::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.08), transparent);
}
.viral-thumb-icon { font-size: 32px; position: relative; z-index: 1; }
.viral-thumb-label {
  font-size: 11px; color: var(--muted);
  position: relative; z-index: 1;
}
.viral-reach-badge {
  position: absolute;
  top: 14px; right: 14px; z-index: 2;
  background: rgba(59,130,246,0.85);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px; font-weight: 800;
  color: #fff;
  font-family: 'Outfit', sans-serif;
}
.viral-card-body {
  padding: 20px 22px 24px;
}
.viral-card-cat {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 6px;
}
.viral-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--text); line-height: 1.35;
  margin-bottom: 12px;
}
.viral-card-stats {
  display: flex; gap: 16px;
  flex-wrap: wrap;
}
.viral-stat {
  display: flex; flex-direction: column; gap: 2px;
}
.viral-stat-num {
  font-size: 14px; font-weight: 700; color: var(--text);
  font-family: 'Outfit', sans-serif;
}
.viral-stat-key { font-size: 10px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }

/* ── REEL SHOWCASE GRID ── */
.reel-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.reel-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reel-phone {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: 20px;
  overflow: hidden;
  background: #060614;
  border: 1px solid var(--border);
  transition: border-color 0.3s, transform 0.3s;
}
.reel-phone:hover {
  border-color: var(--blue-border);
  transform: translateY(-6px);
}
.reel-phone img,
.reel-phone video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.reel-phone::after {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.22) 0%,
    transparent 28%,
    transparent 50%,
    rgba(0,0,0,0.78) 100%
  );
  pointer-events: none;
}
.reel-views-badge {
  position: absolute;
  top: 14px; right: 14px; z-index: 3;
  background: rgba(59,130,246,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 12px; font-weight: 800;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.reel-actions {
  position: absolute;
  right: 12px; bottom: 84px; z-index: 3;
  display: flex; flex-direction: column;
  gap: 16px; align-items: center;
}
.reel-action {
  display: flex; flex-direction: column;
  align-items: center; gap: 3px;
}
.reel-action-icon {
  font-size: 22px; line-height: 1;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
}
.reel-action-count {
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.92);
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}
.reel-caption {
  position: absolute;
  bottom: 0; left: 0; right: 52px; z-index: 3;
  padding: 14px 14px 18px;
}
.reel-caption-cat {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.58);
  margin-bottom: 5px;
}
.reel-caption-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700;
  color: #fff; line-height: 1.38;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.reel-stats {
  display: flex; gap: 0;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.reel-stat {
  flex: 1; display: flex;
  flex-direction: column; gap: 3px;
  padding: 10px 6px;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  min-width: 0; text-align: center;
}
.reel-stat:last-child { border-right: none; }
.reel-stat-num {
  font-size: 13px; font-weight: 800;
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.reel-stat-key {
  font-size: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── FEED PROOF PANEL ── */
.cs-feed-proof {
  margin: 48px 0 64px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  padding: 36px;
}
.cs-feed-proof-intro {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; margin-bottom: 28px; flex-wrap: wrap;
}
.cs-feed-proof-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 900; letter-spacing: -0.03em;
  color: var(--text); line-height: 1.12;
}
.cs-feed-proof-headline span { color: var(--blue); }
.cs-feed-proof-note {
  font-size: 13px; color: var(--muted);
  line-height: 1.65; max-width: 320px; text-align: right;
}
.cs-feed-screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}
.cs-feed-screenshot-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.cs-feed-screenshot-wrap img {
  width: 100%; display: block;
}
.cs-feed-callouts {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.cs-feed-callout {
  padding: 16px 8px;
  text-align: center;
  background: rgba(59,130,246,0.03);
  border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 5px;
  transition: background 0.2s;
}
.cs-feed-callout:hover { background: rgba(59,130,246,0.08); }
.cs-feed-callout:last-child { border-right: none; }
.cs-feed-callout-num {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 900;
  color: var(--blue); letter-spacing: -0.02em;
  line-height: 1;
}
.cs-feed-callout-lbl {
  font-size: 9px; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.08em;
}

/* ── BTS EDITORIAL BREAK ── */
.cs-bts-editorial {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 21/8;
  border: 1px solid var(--border);
  margin: 0 0 0;
}
.cs-bts-editorial img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  object-position: center 35%;
  transition: transform 0.8s ease;
}
.cs-bts-editorial:hover img { transform: scale(1.03); }
.cs-bts-editorial::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(5,5,13,0.72) 0%,
    rgba(5,5,13,0.2) 55%,
    transparent 100%
  );
  pointer-events: none;
}
.cs-bts-caption {
  position: absolute;
  left: 44px; bottom: 40px; z-index: 2;
  display: flex; flex-direction: column; gap: 8px;
}
.cs-bts-caption-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue);
}
.cs-bts-caption-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900; color: #fff;
  line-height: 1.15; letter-spacing: -0.02em;
}
.cs-bts-caption-sub {
  font-size: 14px; color: rgba(255,255,255,0.55);
  font-weight: 400;
}

/* ── ORIGIN STORY / TIMELINE ── */
.cs-timeline {
  position: relative;
  padding-left: 40px;
}
.cs-timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), rgba(59,130,246,0.1));
}
.cs-tl-item {
  position: relative;
  padding-bottom: 44px;
}
.cs-tl-item:last-child { padding-bottom: 0; }
.cs-tl-dot {
  position: absolute;
  left: -36px; top: 4px;
  width: 14px; height: 14px;
  background: var(--bg-card);
  border: 2px solid var(--blue);
  border-radius: 50%;
}
.cs-tl-dot.dot-green { border-color: #22c55e; }
.cs-tl-period {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 6px;
}
.cs-tl-period.green { color: #22c55e; }
.cs-tl-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px; font-weight: 800;
  color: var(--text); line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.cs-tl-body {
  font-size: 14px; color: var(--muted);
  line-height: 1.7; max-width: 560px;
}
.cs-tl-highlight {
  display: inline-block;
  background: rgba(59,130,246,0.1);
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: 6px;
  padding: 2px 10px;
  font-size: 13px; font-weight: 700;
  color: var(--blue);
  margin-top: 10px;
}

/* ── SERVICES DELIVERED ── */
.cs-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cs-service-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 20px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: border-color 0.25s;
}
.cs-service-item:hover { border-color: var(--blue-border); }
.cs-service-icon {
  font-size: 22px; flex-shrink: 0;
  line-height: 1;
}
.cs-service-text h4 {
  font-size: 14px; font-weight: 700;
  color: var(--text); margin-bottom: 4px;
}
.cs-service-text p {
  font-size: 12px; color: var(--muted); line-height: 1.55;
}

/* ── CS CASE RESPONSIVE ── */
@media (max-width: 1024px) {
  .cs-kpi-strip { grid-template-columns: repeat(3, 1fr); }
  .cs-kpi:nth-child(3) { border-right: none; }
  .cs-kpi:nth-child(4) { border-top: 1px solid var(--border); }
  .cs-kpi:nth-child(5) { border-top: 1px solid var(--border); }
  .cs-kpi:nth-child(6) { border-top: 1px solid var(--border); }
  .quarter-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-services-grid { grid-template-columns: repeat(2, 1fr); }
  .reel-showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .cs-feed-proof { padding: 28px; }
  .cs-feed-proof-note { text-align: left; max-width: 100%; }
}
@media (max-width: 768px) {
  .cs-page-hero { padding: 130px 0 70px; }
  .year-grid { grid-template-columns: 1fr; }
  .viral-grid { grid-template-columns: 1fr; }
  .reel-showcase-grid { grid-template-columns: 1fr; gap: 14px; }
  .growth-bar-row { grid-template-columns: 70px 1fr 80px; gap: 10px; }
  .growth-chart-wrap { padding: 24px; }
  .quarter-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-feed-screenshots { grid-template-columns: 1fr; }
  .cs-feed-callouts { grid-template-columns: repeat(3, 1fr); }
  .cs-feed-callout:nth-child(3) { border-right: none; }
  .cs-feed-callout:nth-child(4),
  .cs-feed-callout:nth-child(5),
  .cs-feed-callout:nth-child(6) { border-top: 1px solid var(--border); }
  .cs-bts-editorial { aspect-ratio: 4/3; }
  .cs-bts-caption { left: 28px; bottom: 28px; }
}
@media (max-width: 560px) {
  .cs-kpi-strip { grid-template-columns: repeat(2, 1fr); }
  .cs-kpi:nth-child(2) { border-right: none; }
  .cs-kpi:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .cs-kpi:nth-child(4) { border-right: none; }
  .cs-kpi:nth-child(5) { border-right: 1px solid var(--border); }
  .cs-kpi:nth-child(6) { border-right: none; }
  .quarter-grid { grid-template-columns: 1fr; }
  .cs-services-grid { grid-template-columns: 1fr; }
  .growth-bar-row { grid-template-columns: 55px 1fr 60px; }
  .growth-bar-val { font-size: 14px; }
  .cs-hero-meta { gap: 16px; }
  .cs-timeline { padding-left: 28px; }
  .cs-feed-proof { padding: 20px; }
  .cs-feed-callouts { grid-template-columns: repeat(2, 1fr); }
  .cs-feed-callout:nth-child(2) { border-right: none; }
  .cs-feed-callout:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .cs-feed-callout:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .cs-feed-callout:nth-child(5) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .cs-feed-callout:nth-child(6) { border-top: 1px solid var(--border); border-right: none; }
  .cs-feed-callout:nth-child(3) { border-right: 1px solid var(--border); }
  .cs-bts-editorial { aspect-ratio: 3/2; }
  .cs-bts-caption { left: 20px; bottom: 20px; }
}

/* ─── GALLERY RESPONSIVE ─────────────────────── */
@media (max-width: 1024px) {
  .media-grid-3 { grid-template-columns: repeat(2,1fr); }
  .media-grid-4 { grid-template-columns: repeat(2,1fr); }
  .masonry-grid { columns: 2; }
  .gov-grid { grid-template-columns: 1fr; }
  .phone-grid { flex-direction: column; }
  .phone-grid-phones { justify-content: center; }
  .biz-portrait-strip { grid-template-columns: repeat(2, 1fr); }
  .biz-asym-3-5, .biz-asym-5-3 { grid-template-columns: 1fr; }
  .biz-hero { aspect-ratio: 16/9; }
  .biz-hero-credit { left: 28px; bottom: 28px; }
}
@media (max-width: 768px) {
  .media-grid-2 { grid-template-columns: 1fr; }
  .media-grid-3 { grid-template-columns: 1fr; }
  .media-grid-4 { grid-template-columns: repeat(2,1fr); }
  .ba-card { grid-template-columns: 1fr; }
  .ba-divider { display: none; }
  .gallery-section { padding: 64px 0; }
  .reel-strip .media-card { width: 170px; }
  .phone-grid-phones { gap: 12px; }
  .phone-mockup { width: 200px; }
  .biz-portrait-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .masonry-grid { columns: 1; }
  .phone-grid-phones { flex-direction: column; align-items: center; }
  .gallery-sections { margin-top: 48px; }
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE REDESIGN  ·  ab-* class namespace
   Visual, story-driven, agency-style
   ═══════════════════════════════════════════════════════════════ */

/* ── AB HERO ──────────────────────────────────────────────────── */
.ab-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
/* Ambient glow behind image side */
.ab-hero::before {
  content: '';
  position: absolute;
  top: 5%; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(59,130,246,0.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
/* Subtle grid overlay on image side */
.ab-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 60%; height: 100%;
  background-image:
    linear-gradient(rgba(59,130,246,0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.024) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 80% at 80% 50%, black, transparent);
  pointer-events: none;
  z-index: 0;
}
.ab-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.ab-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 28px;
}
.ab-hero-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 8px rgba(59,130,246,0.7);
  animation: abHeroPulse 2.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes abHeroPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(59,130,246,0.7); }
  50%       { box-shadow: 0 0 18px rgba(59,130,246,1); }
}
.ab-hero-eyebrow-sep { color: var(--border); }
.ab-hero-h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 4.8vw, 68px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--text);
  margin-bottom: 24px;
}
.ab-hero-h1-blue { color: var(--blue); }
.ab-hero-sub {
  font-size: 17px; color: var(--muted);
  line-height: 1.78; max-width: 440px;
  margin-bottom: 36px;
}

/* Chips row */
.ab-hero-chips {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-bottom: 40px;
}
.ab-chip {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 7px 16px 7px 12px;
  letter-spacing: 0.01em;
}
.ab-chip--live {
  border-color: rgba(59,130,246,0.32);
  background: rgba(59,130,246,0.06);
  color: var(--blue);
}
.ab-chip-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
  animation: abHeroPulse 2s ease-in-out infinite;
}
.ab-chip-icon { font-size: 13px; line-height: 1; }

/* Instagram badge — hero section */
.ab-ig-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px 9px 13px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 100px;
  text-decoration: none;
  margin-bottom: 32px;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  width: fit-content;
}
.ab-ig-badge:hover {
  border-color: var(--blue-border);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35), 0 0 0 1px rgba(59,130,246,0.14), 0 0 22px rgba(59,130,246,0.07);
}
.ab-ig-icon {
  width: 15px;
  height: 15px;
  color: var(--muted);
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.ab-ig-badge:hover .ab-ig-icon { color: var(--blue); }
.ab-ig-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.01em;
}
.ab-ig-arrow {
  font-size: 11px;
  color: var(--muted);
  opacity: 0.45;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.ab-ig-badge:hover .ab-ig-arrow {
  opacity: 0.75;
  transform: translateX(2px);
}
.ab-ig-handle {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.01em;
  transition: color 0.3s ease;
}
.ab-ig-badge:hover .ab-ig-handle { color: var(--blue); }

.ab-hero-actions {
  display: flex; gap: 14px; flex-wrap: wrap;
}

/* Right column — BTS photo card */
.ab-hero-right { position: relative; }
.ab-hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  border: 1px solid rgba(59,130,246,0.18);
  box-shadow:
    0 0 0 1px rgba(59,130,246,0.08),
    0 0 80px rgba(59,130,246,0.1),
    0 60px 120px rgba(0,0,0,0.65);
}
.ab-hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.8s ease;
}
.ab-hero-img-wrap:hover img { transform: scale(1.03); }
.ab-hero-img-glow {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(5,5,13,0.72) 100%);
}

/* Floating stat chips over image */
.ab-hero-float {
  position: absolute;
  background: rgba(4,4,14,0.88);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(59,130,246,0.22);
  border-radius: 18px;
  padding: 14px 20px;
  min-width: 155px;
  pointer-events: none;
}
.ab-hero-float--1 {
  top: 16%; left: -62px;
  animation: abFloatA 5s ease-in-out infinite;
}
.ab-hero-float--2 {
  bottom: 20%; right: -48px;
  animation: abFloatA 5.6s ease-in-out infinite;
  animation-delay: 1.4s;
}
@keyframes abFloatA {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
.ab-hero-float-num {
  font-family: 'Outfit', sans-serif;
  font-size: 26px; font-weight: 900;
  letter-spacing: -0.04em; line-height: 1.1;
  background: linear-gradient(135deg, #fff 30%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
}
.ab-hero-float-icon { font-size: 22px; margin-bottom: 6px; line-height: 1; }
.ab-hero-float-label {
  font-size: 11px; color: var(--muted);
  font-weight: 500; line-height: 1.5;
}

/* ── AB STORY TIMELINE ─────────────────────────────────────────── */
.ab-story { padding: 100px 0 80px; }
.ab-story-header { margin-bottom: 64px; }
.ab-story-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900; letter-spacing: -0.036em;
  color: var(--text); margin: 16px 0 0; line-height: 1.08;
}
.ab-story-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
/* Connecting line */
.ab-story-timeline::before {
  content: '';
  position: absolute;
  top: 68px;
  left: calc(100% / 6);
  right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
  pointer-events: none;
}
.ab-story-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px 32px 36px;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.34,1.2,0.64,1);
}
.ab-story-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-7px);
}
.ab-story-card--now {
  border-color: rgba(59,130,246,0.28);
  background: linear-gradient(145deg, var(--bg-card), rgba(59,130,246,0.04));
}
.ab-story-year {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 58px; font-weight: 900;
  letter-spacing: -0.05em; line-height: 1;
  background: linear-gradient(135deg, rgba(255,255,255,0.45), rgba(59,130,246,0.35));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
}
.ab-story-card--now .ab-story-year {
  background: linear-gradient(135deg, #fff 25%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ab-story-title {
  font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 12px;
  letter-spacing: -0.015em;
}
.ab-story-card p {
  font-size: 14px; color: var(--muted);
  line-height: 1.74; margin: 0;
}

/* Client type strip */
.ab-serves-strip {
  margin-top: 56px;
  padding: 22px 36px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex; align-items: center;
  justify-content: center; gap: 20px;
  flex-wrap: wrap;
}
.ab-serves-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue); white-space: nowrap;
  padding-right: 20px;
  border-right: 1px solid var(--border);
}
.ab-serves-item {
  font-size: 13px; color: var(--muted); font-weight: 500;
  display: inline-flex; align-items: center; gap: 8px;
}
.ab-serves-item::before {
  content: '';
  display: inline-block;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--blue); opacity: 0.5; flex-shrink: 0;
}

/* ── AB NUMBERS ─────────────────────────────────────────────── */
.ab-numbers {
  padding: 100px 0;
  position: relative; overflow: hidden;
}
.ab-numbers::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 280px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.07), transparent 70%);
  pointer-events: none;
}
.ab-numbers-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  position: relative; z-index: 1;
}
.ab-num-item {
  padding: 52px 36px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}
.ab-num-item:last-child { border-right: none; }
.ab-num-item:hover { background: rgba(59,130,246,0.03); }
.ab-num-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.ab-num-item:hover::before { opacity: 1; }
.ab-num-value {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 3.2vw, 48px);
  font-weight: 900; letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(135deg, #fff 30%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.ab-num-label {
  font-size: 12px; color: var(--muted);
  line-height: 1.55; font-weight: 500;
}
.ab-num-label span { display: block; }

/* ── AB CULTURE GALLERY ─────────────────────────────────────── */
.ab-cg { padding: 100px 0; }
.ab-cg-header { margin-bottom: 48px; }
.ab-cg-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 900; letter-spacing: -0.036em;
  color: var(--text); margin: 14px 0 0; line-height: 1.08;
}
.ab-cg-grid {
  display: grid;
  grid-template-columns: 3fr 2fr 2fr;
  grid-template-rows: 320px 220px 320px;
  gap: 12px;
}
.ab-cg-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.ab-cg-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s ease;
}
.ab-cg-item:hover img { transform: scale(1.05); }
.ab-cg-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(5,5,13,0.6) 100%);
  pointer-events: none;
}
/* Grid placement — editorial asymmetry */
.ab-cg-item--a { grid-column: 1; grid-row: 1 / 3; }
.ab-cg-item--b { grid-column: 2; grid-row: 1; }
.ab-cg-item--c { grid-column: 3; grid-row: 1; }
.ab-cg-item--d { grid-column: 2 / 4; grid-row: 2; }
.ab-cg-item--e { grid-column: 1 / 3; grid-row: 3; }
.ab-cg-item--f { grid-column: 3; grid-row: 3; }
/* Caption reveals on hover */
.ab-cg-caption {
  position: absolute;
  bottom: 14px; left: 16px;
  z-index: 2;
  font-size: 12px; font-weight: 600;
  color: rgba(240,244,255,0.85);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.ab-cg-item:hover .ab-cg-caption {
  opacity: 1; transform: none;
}

/* ── AB LIFE ON SET ─────────────────────────────────────────── */
.ab-los { padding: 100px 0; }
.ab-los-header {
  text-align: center;
  margin-bottom: 72px;
}
.ab-los-label-row {
  display: inline-flex; align-items: center; gap: 13px;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 22px;
}
.ab-los-label-bar {
  display: block; width: 24px; height: 1px;
  background: currentColor; opacity: 0.45; flex-shrink: 0;
}
.ab-los-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 4.2vw, 52px);
  font-weight: 900; letter-spacing: -0.036em;
  line-height: 1.1; color: var(--text); margin-bottom: 18px;
}
.ab-los-sub {
  font-size: 15px; color: var(--muted);
  max-width: 440px; margin: 0 auto; line-height: 1.74;
}

/* Phone stage */
.ab-los-stage {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 88px 64px 120px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(6,6,17,0.62) 10%,
    rgba(6,6,17,0.62) 90%,
    transparent 100%
  );
  border-radius: 28px;
  overflow: visible;
}
.ab-los-stage::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.028) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 72% 78% at 50% 50%, black, transparent);
  pointer-events: none; border-radius: inherit; z-index: 0;
}
/* Ambient glows */
.ab-los-bg {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  border-radius: inherit; overflow: hidden;
}
.ab-los-glow {
  position: absolute; border-radius: 50%;
  filter: blur(90px);
}
.ab-los-glow--c {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(59,130,246,0.13), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.ab-los-glow--l {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(59,130,246,0.07), transparent 70%);
  top: 8%; left: 4%;
}
.ab-los-glow--r {
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(99,102,241,0.07), transparent 70%);
  bottom: 8%; right: 4%;
}

/* Phone wrappers */
.ab-los-phone {
  position: relative;
  z-index: 1;
  cursor: pointer;
  transition: transform 0.55s cubic-bezier(0.34,1.4,0.64,1);
  flex-shrink: 0;
}
.ab-los-phone--l {
  width: 220px;
  transform: translateY(-52px) rotate(-4deg) scale(0.88);
  margin-right: -36px;
}
.ab-los-phone--c {
  width: 268px;
  z-index: 4;
  transform: translateY(0) scale(1);
}
.ab-los-phone--r {
  width: 220px;
  transform: translateY(42px) rotate(4deg) scale(0.88);
  margin-left: -36px;
}
.ab-los-phone--l:hover { transform: translateY(-66px) rotate(-1.8deg) scale(0.92); z-index: 10; }
.ab-los-phone--c:hover { transform: translateY(-16px) scale(1.03); z-index: 10; }
.ab-los-phone--r:hover { transform: translateY(28px) rotate(1.8deg) scale(0.92); z-index: 10; }

/* Phone frame */
.ab-los-frame {
  position: relative;
  background: #0a0a14;
  border: 2px solid rgba(255,255,255,0.09);
  border-radius: 44px;
  padding: 14px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 44px 80px rgba(0,0,0,0.65),
    0 0 60px rgba(59,130,246,0.06);
  transition: box-shadow 0.5s;
  overflow: hidden;
}
.ab-los-phone--c .ab-los-frame {
  border-color: rgba(59,130,246,0.24);
  box-shadow:
    0 0 0 1px rgba(59,130,246,0.12),
    0 0 72px rgba(59,130,246,0.2),
    0 0 140px rgba(59,130,246,0.07),
    0 64px 120px rgba(0,0,0,0.76);
}
.ab-los-phone:hover .ab-los-frame {
  box-shadow:
    0 0 0 1px rgba(59,130,246,0.28),
    0 0 80px rgba(59,130,246,0.22),
    0 64px 100px rgba(0,0,0,0.76);
}
.ab-los-island {
  position: absolute;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 30px;
  background: #000;
  border-radius: 20px;
  z-index: 3;
}
.ab-los-screen {
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 9 / 19.5;
  background: #000;
}
.ab-los-screen video {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.ab-los-homebar {
  height: 5px; width: 36%;
  background: rgba(255,255,255,0.22);
  border-radius: 100px;
  margin: 10px auto 0;
}
/* Client label above phone */
.ab-los-client {
  text-align: center;
  padding-bottom: 14px;
}
.ab-los-client-name {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
}
.ab-los-phone--c .ab-los-client-name {
  color: var(--blue);
  border-color: rgba(59,130,246,0.32);
  background: rgba(59,130,246,0.06);
}
/* Credits strip */
.ab-los-credits {
  display: flex; align-items: center;
  justify-content: center; gap: 22px;
  margin-top: 48px; flex-wrap: wrap;
}
.ab-los-credit-item {
  display: flex; align-items: center; gap: 8px;
}
.ab-los-credit-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 7px rgba(59,130,246,0.5);
}
.ab-los-credit-handle {
  font-size: 13px; font-weight: 600; color: var(--text);
}
.ab-los-credit-sep { color: var(--border); }
.ab-los-credit-type { font-size: 12px; color: var(--muted); }
.ab-los-credits-rule {
  display: block; width: 1px; height: 18px;
  background: var(--border);
}

/* ── AB MEET THE TEAM ───────────────────────────────────────── */
.ab-team { padding: 100px 0; }
.ab-team-header { margin-bottom: 56px; }
.ab-team-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 900; letter-spacing: -0.036em;
  color: var(--text); margin: 14px 0 0; line-height: 1.08;
}

/* Founder card — full-width horizontal: photo left, info right */
.ab-founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  margin-bottom: 24px;
  transition: border-color 0.3s;
}
.ab-founder-card:hover { border-color: var(--blue-border); }
.ab-founder-img {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}
.ab-founder-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  transition: transform 0.7s;
}
.ab-founder-card:hover .ab-founder-img img { transform: scale(1.04); }
.ab-founder-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 55%, var(--bg-card) 100%);
}
.ab-founder-info {
  padding: 48px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.ab-founder-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--blue);
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.22);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 18px;
}
.ab-founder-name {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 900; letter-spacing: -0.03em;
  color: var(--text); line-height: 1.1; margin-bottom: 6px;
}
.ab-founder-title {
  font-size: 13px; color: var(--muted); margin-bottom: 28px;
}
.ab-founder-chips {
  display: flex; flex-direction: column; gap: 9px;
  margin-bottom: 36px;
}
.ab-founder-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text); font-weight: 500;
}
.ab-founder-chip-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue); flex-shrink: 0;
}
.ab-founder-links { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── Crew member grid ── */
.ab-team-members {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
/* Portrait member card */
.ab-member-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.34,1.2,0.64,1);
}
.ab-member-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-7px);
}
.ab-member-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.ab-member-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
  transition: transform 0.7s ease;
}
.ab-member-card:hover .ab-member-img img { transform: scale(1.05); }
.ab-member-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(5,5,13,0.72) 100%);
  pointer-events: none;
}
.ab-member-body {
  padding: 24px 26px 28px;
}
.ab-member-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  margin-bottom: 12px;
}
.ab-member-name {
  font-family: 'Outfit', sans-serif;
  font-size: 21px; font-weight: 800;
  letter-spacing: -0.02em; color: var(--text);
  line-height: 1.1; margin-bottom: 5px;
}
.ab-member-role {
  font-size: 12px; color: var(--muted);
  font-weight: 500; margin-bottom: 18px;
}
.ab-member-bullets {
  list-style: none; padding: 0;
  margin: 0 0 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.ab-member-bullets li {
  font-size: 13px; color: var(--muted);
  display: flex; align-items: flex-start; gap: 9px;
  line-height: 1.5;
}
.ab-member-bullets li::before {
  content: '';
  display: inline-block;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue); opacity: 0.55;
  flex-shrink: 0; margin-top: 6px;
}
.ab-member-handle {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700;
  color: var(--blue); text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.2s;
}
.ab-member-handle:hover { opacity: 0.72; }

/* Placeholder card — no headshot yet, shows initials */
.ab-member-img--placeholder {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #09091a, rgba(59,130,246,0.07));
  border-bottom: 1px solid var(--border);
}
.ab-member-img--placeholder::after { display: none !important; }
.ab-member-img--placeholder::before {
  content: attr(data-initials);
  font-family: 'Outfit', sans-serif;
  font-size: 72px; font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(59,130,246,0.45));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  user-select: none;
}

/* Center the lone last card when count is 3n+1 (e.g. 7 members) */
.ab-team-members .ab-member-card:last-child:nth-child(3n+1) {
  grid-column: 2;
}

/* ── AB WHAT WE BELIEVE ─────────────────────────────────────── */
.ab-beliefs { padding: 100px 0; }
.ab-beliefs-header { margin-bottom: 56px; }
.ab-beliefs-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 900; letter-spacing: -0.036em;
  color: var(--text); margin: 14px 0 0; line-height: 1.08;
}
.ab-beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ab-belief-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.35s cubic-bezier(0.34,1.2,0.64,1);
}
.ab-belief-card::before {
  content: '';
  position: absolute;
  top: -44px; left: -44px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(59,130,246,0.07), transparent 70%);
  pointer-events: none;
}
.ab-belief-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-6px);
}
.ab-belief-num {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; color: var(--blue);
  margin-bottom: 14px;
}
.ab-belief-icon {
  font-size: 28px; margin-bottom: 16px; display: block; line-height: 1;
}
.ab-belief-title {
  font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 12px; letter-spacing: -0.015em;
}
.ab-belief-text {
  font-size: 14px; color: var(--muted);
  line-height: 1.72; margin: 0;
}

/* ── ABOUT HERO STATS ROW ───────────────────────────────────── */
.ab-hero-stats {
  display: flex; align-items: center;
  gap: 20px; flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.ab-hero-stat {
  display: flex; flex-direction: column; gap: 3px;
}
.ab-hs-num {
  font-size: 17px; font-weight: 800;
  color: var(--blue); letter-spacing: -0.02em; line-height: 1;
}
.ab-hs-label {
  font-size: 11px; color: var(--muted);
  font-weight: 500; letter-spacing: 0.02em;
}
.ab-hs-sep {
  width: 1px; height: 26px;
  background: var(--border); flex-shrink: 0;
}

/* ── WHY IWM EXISTS ─────────────────────────────────────────── */
.ab-why { padding: 100px 0; }
.ab-why-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: clamp(48px, 7vw, 100px);
  align-items: start;
}
.ab-why-left .tag { display: inline-block; margin-bottom: 20px; }
.ab-why-headline {
  font-size: clamp(30px, 3.8vw, 52px);
  font-weight: 900; letter-spacing: -0.03em; line-height: 1.08;
  color: var(--text);
}
.ab-why-body p {
  color: var(--muted); font-size: 16px;
  line-height: 1.8; margin-bottom: 20px;
}
.ab-why-body p:last-child { margin-bottom: 0; }
.ab-why-quote {
  font-size: 21px; font-weight: 700;
  color: var(--text); line-height: 1.45;
  margin: 4px 0 24px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-style: normal;
}

/* ── TRUSTED CREATIVE PARTNERS ──────────────────────────────── */
.ab-partners-strip {
  display: flex; gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 52px;
}
.ab-partner-photo {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  width: 110px;
}
.ab-partner-photo img {
  width: 88px; height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border);
  filter: grayscale(25%);
  transition: filter 0.3s, border-color 0.3s;
}
.ab-partner-photo:hover img {
  filter: grayscale(0%);
  border-color: var(--blue-border);
}
.ab-partner-name {
  font-size: 12px; font-weight: 700;
  color: var(--text); text-align: center;
  line-height: 1.3;
}
.ab-partner-role {
  font-size: 10.5px; color: var(--muted);
  text-align: center; letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── WHAT CLIENTS CAN EXPECT — 6 pillars ────────────────────── */
.ab-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.ab-pillar {
  background: var(--bg-card);
  padding: 32px 28px;
  transition: background 0.2s;
}
.ab-pillar:hover { background: var(--bg-elevated, #1a1f2e); }
.ab-pillar-name {
  font-size: 14px; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
  letter-spacing: -0.01em; line-height: 1.3;
}
.ab-pillar-text {
  font-size: 13px; color: var(--muted);
  line-height: 1.7; margin: 0;
}

/* ── WHY CLIENTS STAY — 3 cards ─────────────────────────────── */
.ab-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ab-trust-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: border-color 0.2s;
}
.ab-trust-card:hover { border-color: var(--blue-border); }
.ab-trust-card-label {
  font-size: 17px; font-weight: 800;
  letter-spacing: -0.02em; color: var(--text);
  margin-bottom: 14px; line-height: 1.3;
}
.ab-trust-card p {
  font-size: 14px; color: var(--muted);
  line-height: 1.75; margin: 0;
}

/* ── AB FINAL CTA ───────────────────────────────────────────── */
.ab-final-cta {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ab-final-cta-bg {
  position: absolute; inset: 0;
}
.ab-final-cta-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 35%;
  display: block;
}
.ab-final-cta-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 500px at 50% 52%, rgba(59,130,246,0.10) 0%, transparent 65%),
    rgba(0,0,0,0.84);
}
.ab-final-cta-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 700px; margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) clamp(24px, 5vw, 60px);
}
.ab-final-cta-tag {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.42); margin-bottom: 28px;
}
.ab-final-cta-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 900; letter-spacing: -0.04em;
  line-height: 1.04; color: #fff; margin-bottom: 22px;
}
.ab-final-cta-sub {
  font-size: 17px; color: rgba(255,255,255,0.60);
  line-height: 1.78; margin-bottom: 44px;
  max-width: 520px; margin-left: auto; margin-right: auto;
}
.ab-final-cta-actions {
  display: flex; gap: 16px;
  justify-content: center; flex-wrap: wrap;
}

/* ── AB RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .ab-hero-inner { gap: 52px; }
  .ab-hero-float--1 { left: -36px; }
  .ab-hero-float--2 { right: -24px; }
  .ab-numbers-inner { grid-template-columns: repeat(3, 1fr); }
  .ab-num-item:nth-child(3)  { border-right: none; }
  .ab-num-item:nth-child(5)  { border-right: none; }
  .ab-num-item:nth-child(n+4) { border-top: 1px solid var(--border); }
}
@media (max-width: 960px) {
  .ab-hero-inner {
    grid-template-columns: 1fr;
    max-width: 600px; margin: 0 auto;
  }
  .ab-hero-right { display: none; }
  .ab-hero-h1 { font-size: clamp(36px, 8vw, 60px); }
  .ab-story-timeline { grid-template-columns: 1fr; gap: 16px; }
  .ab-story-timeline::before { display: none; }
  .ab-cg-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .ab-cg-item--a { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 16/7; height: auto; }
  .ab-cg-item--b,
  .ab-cg-item--c { grid-column: auto; aspect-ratio: 4/3; }
  .ab-cg-item--d,
  .ab-cg-item--e,
  .ab-cg-item--f { grid-column: 1 / 3; aspect-ratio: 16/7; }
  /* Founder card stacks vertically */
  .ab-founder-card { grid-template-columns: 1fr; }
  .ab-founder-img { min-height: auto; aspect-ratio: 16/8; }
  .ab-founder-img::after {
    background: linear-gradient(to bottom, transparent 55%, var(--bg-card) 100%);
  }
  .ab-founder-info { padding: 32px 32px 36px; }
  /* Crew grid drops to 2 columns */
  .ab-team-members { grid-template-columns: repeat(2, 1fr); }
  .ab-beliefs-grid { grid-template-columns: repeat(2, 1fr); }
  /* New about sections */
  .ab-why-inner { grid-template-columns: 1fr; gap: 32px; }
  .ab-pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .ab-trust-grid { grid-template-columns: 1fr; }
  .ab-partners-strip { gap: 24px; }
  .ab-partner-photo { width: 90px; }
}
@media (max-width: 760px) {
  .ab-hero { padding: 100px 0 60px; }
  .ab-numbers-inner {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 18px;
  }
  .ab-num-item { padding: 36px 28px; border-right: none; border-bottom: 1px solid var(--border); }
  .ab-num-item:nth-child(odd)  { border-right: 1px solid var(--border); }
  .ab-num-item:nth-child(3)    { border-right: none; }
  .ab-num-item:last-child { border-bottom: none; border-right: none; }
  .ab-cg-grid { grid-template-columns: 1fr; }
  .ab-cg-item--a,
  .ab-cg-item--b,
  .ab-cg-item--c,
  .ab-cg-item--d,
  .ab-cg-item--e,
  .ab-cg-item--f {
    grid-column: 1; grid-row: auto;
    aspect-ratio: 4/3; height: auto;
  }
  .ab-los-stage {
    flex-direction: column; align-items: center;
    gap: 36px; padding: 48px 0 80px;
  }
  .ab-los-phone--l,
  .ab-los-phone--c,
  .ab-los-phone--r {
    transform: none !important;
    margin: 0 !important;
    width: 240px;
  }
  .ab-los-phone--l:hover,
  .ab-los-phone--c:hover,
  .ab-los-phone--r:hover { transform: translateY(-10px) !important; }
  .ab-los-credits-rule { display: none; }
  .ab-beliefs-grid { grid-template-columns: 1fr; }
  .ab-final-cta { padding: 100px 0 120px; }
  .ab-serves-strip { gap: 12px; padding: 20px 24px; }
  .ab-serves-label { border-right: none; padding-right: 0; }
  /* Crew grid single column at mobile */
  .ab-team-members { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════
   AB PHOTO MARQUEE — Full-width infinite scrolling BTS gallery
══════════════════════════════════════════════════════════════ */

.ab-photo-marquee {
  overflow: hidden;
  padding: 100px 0 0;
}

.ab-pm-header {
  margin-bottom: 80px;
  text-align: center;
}

.ab-pm-header-inner {
  max-width: 760px;
  margin: 0 auto;
}

.ab-pm-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
}

.ab-pm-eyebrow-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--blue);
  opacity: 0.35;
}

.ab-pm-headline {
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}

.ab-pm-headline-accent {
  color: var(--blue);
}

.ab-pm-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--muted);
  line-height: 1.75;
  max-width: 580px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .ab-pm-br { display: none; }
}

.ab-pm-row {
  overflow: hidden;
  margin-bottom: 8px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.ab-pm-row:last-child {
  margin-bottom: 0;
}

/* Base track: 160s, left-to-right */
.ab-pm-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: abPmScroll 160s linear infinite;
  will-change: transform;
}

/* Direction modifiers */
.ab-pm-track--rtl { animation-direction: reverse; }

/* Speed modifiers — each row drifts at a slightly different pace */
.ab-pm-track--s2 { animation-duration: 200s; }
.ab-pm-track--s3 { animation-duration: 175s; }
.ab-pm-track--s4 { animation-duration: 220s; }

@keyframes abPmScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ab-pm-img {
  height: 220px;
  width: auto;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  display: block;
  filter: grayscale(100%) contrast(1.05);
}


/* ═══════════════════════════════════════════════════════════
   AB VIDEO STRIP — Bare-clip infinite scrolling reel row
══════════════════════════════════════════════════════════════ */

.ab-video-strip {
  overflow: hidden;
  padding: 100px 0 0;
}

.ab-vs-header {
  margin-bottom: 60px;
  text-align: center;
}

.ab-vs-label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.ab-vs-label-bar {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--blue);
  opacity: 0.4;
}

.ab-vs-heading {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.1;
}

.ab-vs-sub {
  color: var(--muted);
  margin-top: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.ab-vs-row {
  overflow: hidden;
  padding: 40px 0 100px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

.ab-vs-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: abVsScroll 120s linear infinite;
  will-change: transform;
}

@keyframes abVsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ab-vs-clip {
  flex-shrink: 0;
  height: 400px;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
}

.ab-vs-clip video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 760px) {
  .ab-vs-clip { height: 300px; }
}


/* ═══════════════════════════════════════════════════════════
   BIZ PHOTO MARQUEE — Color scrolling gallery (gallery.html)
══════════════════════════════════════════════════════════════ */

.biz-photo-marquee {
  overflow: hidden;
  padding: 80px 0 80px;
}

.biz-pm-row {
  overflow: hidden;
  margin-bottom: 16px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.biz-pm-row:last-child { margin-bottom: 0; }

.biz-pm-track {
  display: flex;
  width: max-content;
  animation: bizPmScroll 180s linear infinite;
  will-change: transform;
}

.biz-pm-track--rtl { animation-direction: reverse; }
.biz-pm-track--s2  { animation-duration: 220s; }
.biz-pm-track--s3  { animation-duration: 195s; }
.biz-pm-track--s4  { animation-duration: 240s; }

@keyframes bizPmScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.biz-pm-img {
  height: 320px;
  width: 480px;
  margin-right: 20px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  display: block;
}
/* Smaller, still-uniform tiles on phones (uniform width keeps the
   translateX(-50%) loop exact at every breakpoint). */
@media (max-width: 768px) {
  .biz-pm-img { width: 260px; height: 180px; margin-right: 12px; }
}

/* ─── PORTFOLIO EDITORIAL GRID ──────────────────────── */
.pf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 0 40px 24px;
}
/* Curated view: extra images hidden until "View Full Gallery" is clicked
   (.pf-grid prefix keeps specificity above the later .pf-img display:block rule) */
.pf-grid .pf-extra { display: none; }
.pf-grid.pf-expanded .pf-extra { display: block; }
.pf-viewmore-wrap { display: flex; justify-content: center; padding: 8px 0 72px; }
.pf-viewmore-btn { cursor: pointer; }
.pf-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.pf-img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(0,0,0,0.55), 0 0 0 1px rgba(59,130,246,0.18);
}
.pf-img--wide { grid-column: span 2; height: 260px; }
@media (max-width: 1100px) {
  .pf-grid { grid-template-columns: repeat(3, 1fr); padding: 0 24px 64px; }
  .pf-img--wide { grid-column: span 1; }
}
@media (max-width: 768px) {
  .pf-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 0 16px 48px; }
  .pf-img { height: 160px; }
  .pf-img--wide { grid-column: span 1; height: 160px; }
}

/* ═══════════════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════════════ */

/* ─── HERO ──────────────────────────────────────── */
.sv-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.sv-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}

.sv-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(0,0,0,0.94) 0%, rgba(0,0,0,0.75) 48%, rgba(0,0,0,0.50) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 1;
}

.sv-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: clamp(40px, 6vw, 100px);
  padding: clamp(100px, 12vh, 140px) 0 clamp(60px, 8vh, 100px);
  width: 100%;
}

.sv-hero-left {
  flex: 0 0 clamp(300px, 38vw, 480px);
  max-width: 480px;
}

.sv-hero-right {
  flex: 1;
  min-width: 0;
}

.sv-hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4.5vw, 62px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #fff;
  margin: 16px 0 20px;
}

.sv-hero-sub {
  font-size: clamp(13.5px, 1.1vw, 15.5px);
  color: rgba(255,255,255,0.58);
  line-height: 1.72;
  margin-bottom: 32px;
}

.sv-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sv-hero-secondary {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.sv-hero-secondary:hover { color: #fff; }

/* Preview panel */
.sv-preview {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.sv-preview-img-wrap {
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg-card);
}

.sv-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
  display: block;
}

.sv-preview-info {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.sv-preview-stat-block {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
}

.sv-preview-stat {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
}

.sv-preview-stat-label {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-top: 4px;
  white-space: nowrap;
}

.sv-preview-desc {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin: 0;
  padding-top: 2px;
}

/* Service list */
.sv-list { list-style: none; }

.sv-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  cursor: pointer;
  transition: background 0.15s;
}

.sv-list-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.07); }

.sv-list-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  width: 22px;
  flex-shrink: 0;
  transition: color 0.2s;
}

.sv-list-name {
  flex: 1;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 800;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
}

.sv-list-arrow {
  font-size: 13px;
  color: transparent;
  transition: color 0.2s, transform 0.2s;
}

.sv-list-item.is-active .sv-list-num  { color: var(--blue); }
.sv-list-item.is-active .sv-list-name { color: #fff; }
.sv-list-item.is-active .sv-list-arrow { color: var(--blue); }

.sv-list-item:hover .sv-list-name  { color: rgba(255,255,255,0.75); }
.sv-list-item:hover .sv-list-arrow { color: rgba(255,255,255,0.35); transform: translateX(3px); }

/* ─── TRUSTED BY ───────────────────────────────── */
.sv-trusted {
  padding: 80px 0 72px;
}

.sv-trusted-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.sv-trusted-stat { text-align: center; }

.sv-trusted-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.sv-trusted-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.02em;
}

.sv-trusted-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

/* Logo strip */
.sv-logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 3vw, 44px);
  flex-wrap: wrap;
}

.sv-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.55);
  opacity: 0.7;
  transition: filter 0.25s, opacity 0.25s;
}

.sv-logo:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

.sv-logo-round {
  height: 44px;
  border-radius: 8px;
}

/* ─── MOST REQUESTED STRIP ─────────────────────── */
.sv-popular-strip {
  padding: 0 0 64px;
}

.sv-popular-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.sv-popular-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.sv-popular-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.sv-popular-chip {
  font-size: 12.5px;
  font-weight: 600;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.60);
  padding: 7px 16px;
  border-radius: 100px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.sv-popular-chip:hover {
  border-color: var(--blue-border);
  color: var(--text);
  background: rgba(59,130,246,0.06);
}

/* ─── UNIFIED SERVICES GRID ─────────────────────── */
.sv-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sv-services-grid .sv-feat-card {
  min-height: 360px;
}

/* ─── FEATURED SERVICES ────────────────────────── */
.sv-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sv-feat-card {
  position: relative;
  min-height: 500px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: transform 0.3s;
}

.sv-feat-card:hover { transform: translateY(-5px); }

.sv-feat-card-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.45s;
}

.sv-feat-card:hover .sv-feat-card-bg { transform: scale(1.04); }

.sv-feat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.60) 50%,
    rgba(0,0,0,0.18) 100%);
  z-index: 1;
}

.sv-feat-card-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  width: 100%;
}

.sv-feat-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 16px;
}

.sv-feat-card-list {
  list-style: none;
  margin-bottom: 22px;
}

.sv-feat-card-list li {
  font-size: 12.5px;
  color: rgba(255,255,255,0.60);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sv-feat-card-list li::before {
  content: '—';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

.sv-feat-card-link {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}

.sv-feat-card:hover .sv-feat-card-link { color: var(--blue); }

/* Stat strip on featured card */
.sv-feat-card-stats {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.sv-feat-card-stat { display: flex; flex-direction: column; }

.sv-feat-card-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.03em;
  line-height: 1;
}

.sv-feat-card-stat-label {
  font-size: 9.5px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  margin-top: 3px;
  white-space: nowrap;
}

.sv-feat-card-stat-div {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* Secondary cards */
.sv-secondary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}

.sv-secondary-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, transform 0.25s;
}

.sv-secondary-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-3px);
}

.sv-secondary-title {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 10px;
}

.sv-secondary-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.68;
  margin-bottom: 20px;
}

.sv-secondary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sv-secondary-tag {
  font-size: 10.5px;
  font-weight: 600;
  background: rgba(59,130,246,0.07);
  border: 1px solid var(--blue-border);
  color: var(--blue);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* ─── PROCESS ──────────────────────────────────── */
.sv-process { padding: 100px 0; }

.sv-process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 64px;
}

.sv-process-step {
  padding: 28px 28px 28px 0;
  border-top: 2px solid var(--border);
  transition: border-color 0.25s;
}

.sv-process-step:hover { border-top-color: var(--blue); }

.sv-step-num {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.sv-step-title {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 12px;
}

.sv-step-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
}

/* ─── REAL RESULTS ─────────────────────────────── */
.sv-results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.sv-result-card {
  position: relative;
  min-height: 500px;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  transition: transform 0.3s;
}

.sv-result-card:hover { transform: translateY(-5px); }

.sv-result-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.45s;
}

.sv-result-card:hover .sv-result-bg { transform: scale(1.04); }

.sv-result-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.96) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.18) 100%);
  z-index: 1;
}

.sv-result-content {
  position: relative;
  z-index: 2;
  padding: 28px;
  width: 100%;
}

.sv-result-client {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.sv-result-stat {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.sv-result-stat-label {
  font-size: 11.5px;
  color: rgba(255,255,255,0.48);
  margin-bottom: 20px;
}

.sv-result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.sv-result-tags span {
  font-size: 10.5px;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.65);
  padding: 4px 10px;
  border-radius: 100px;
}

.sv-result-link {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
}

.sv-result-card:hover .sv-result-link { color: var(--blue); }

/* ─── EVERYTHING INCLUDED ─────────────────────── */
.sv-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.sv-included-col {
  background: var(--bg-card);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
}

.sv-included-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.sv-included-list {
  list-style: none;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sv-included-list li {
  font-size: 13.5px;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.4;
}

.sv-included-list li::before {
  content: '✓';
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}

.sv-included-cta {
  display: inline-block;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: opacity 0.2s;
}

.sv-included-cta:hover { opacity: 0.7; }

/* Result details (replaces tags) */
.sv-result-details {
  list-style: none;
  margin-bottom: 20px;
}

.sv-result-details li {
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sv-result-details li::before {
  content: '—';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
}

/* ─── FAQ ──────────────────────────────────────── */
.sv-faq-list { margin-top: 52px; }

.sv-faq-item { border-top: 1px solid var(--border); }

.sv-faq-item:last-child { border-bottom: 1px solid var(--border); }

.sv-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 700;
  color: var(--text);
  text-align: left;
  gap: 20px;
  user-select: none;
  transition: color 0.2s;
}

.sv-faq-q:hover { color: rgba(255,255,255,0.80); }

.sv-faq-q-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  color: var(--muted);
  transition: transform 0.25s, border-color 0.2s, color 0.2s;
  flex-shrink: 0;
  line-height: 1;
}

.sv-faq-item.is-open .sv-faq-q-icon {
  transform: rotate(45deg);
  border-color: var(--blue-border);
  color: var(--blue);
}

.sv-faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.sv-faq-a-inner { overflow: hidden; }

.sv-faq-item.is-open .sv-faq-a {
  grid-template-rows: 1fr;
}

.sv-faq-a-inner p {
  padding-bottom: 24px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.78;
  max-width: 740px;
  margin: 0;
}

/* ─── SERVICES PAGE — RESPONSIVE ─────────────────── */
@media (max-width: 960px) {
  .sv-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 120px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .sv-hero-left { flex: none; max-width: 100%; }
  .sv-hero-right { width: 100%; }
  .sv-preview-img-wrap { aspect-ratio: 16/8; }

  .sv-feat-grid         { grid-template-columns: 1fr; }
  .sv-services-grid     { grid-template-columns: repeat(2, 1fr); }
  .sv-secondary-grid    { grid-template-columns: repeat(2, 1fr); }
  .sv-results-grid      { grid-template-columns: 1fr; }
  .sv-included-grid     { grid-template-columns: 1fr; }

  .sv-popular-inner { gap: 12px; }
}

@media (max-width: 768px) {
  .sv-trusted-stats { gap: 18px; }
  .sv-trusted-divider { height: 28px; }

  .sv-secondary-grid { grid-template-columns: 1fr; }
  .sv-services-grid  { grid-template-columns: 1fr; }

  .sv-list-name { font-size: 14px; }
}

@media (max-width: 560px) {
  .sv-hero-actions { flex-direction: column; align-items: flex-start; }
  .sv-trusted-stats { flex-direction: column; align-items: center; gap: 16px; }
  .sv-trusted-divider { width: 40px; height: 1px; }
  .sv-logo-strip { gap: 14px; }
  .sv-logo { height: 28px; }
  .sv-logo-round { height: 34px; }
}

/* ─── CREATIVE NETWORK ──────────────────────────── */
/* ── Creative Network — infinite scrolling carousel ─────────────── */

.ab-network {
  padding: 100px 0 80px;
  overflow: hidden;
}

/* Marquee outer shell — full section width, edge fades */
.ab-network-marquee {
  overflow: hidden;
  margin-top: 52px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
}

/* Track — animated flex row */
.ab-network-grid {
  display: flex;
  gap: 16px;
  width: max-content;
  padding: 8px 0 20px;
  animation: abNetworkScroll 55s linear infinite;
  will-change: transform;
}

/* Pause on hover */
.ab-network-marquee:hover .ab-network-grid {
  animation-play-state: paused;
}

@keyframes abNetworkScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Individual card */
.ab-network-card {
  flex-shrink: 0;
  width: 168px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: border-color 0.3s ease,
              transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.35s ease;
}

.ab-network-card:hover {
  border-color: var(--blue-border);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.55),
              0 0 0 1px rgba(59,130,246,0.2),
              0 0 32px rgba(59,130,246,0.08);
}

/* Portrait photo — 4:5 fills the card width */
.ab-network-photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.ab-network-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(15%);
  transition: transform 0.5s ease, filter 0.4s ease;
}

.ab-network-card:hover .ab-network-photo img {
  transform: scale(1.06);
  filter: grayscale(0%);
}

/* Text body */
.ab-network-body {
  padding: 14px 16px 18px;
}

.ab-network-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.ab-network-role {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.4;
}

.ab-network-handle {
  font-size: 11px;
  color: var(--blue);
  margin-top: 10px;
  display: block;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.ab-network-card:hover .ab-network-handle {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile — smaller cards, tighter gap */
@media (max-width: 768px) {
  .ab-network-card { width: 140px; }
  .ab-network-grid { gap: 12px; }
}

/* ─── WHY ORGANIZATIONS WORK WITH US ──────────────── */
.ab-org-list {
  display: flex;
  flex-direction: column;
}

.ab-org-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}

.ab-org-item:last-child {
  border-bottom: 1px solid var(--border);
}

.ab-org-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.18);
  padding-top: 4px;
}

.ab-org-title {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.ab-org-text {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.78;
  margin: 0;
  max-width: 620px;
}

@media (max-width: 560px) {
  .ab-org-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .ab-org-num { display: none; }
}

/* ─── WORK PAGE: CASE STUDY METADATA ──────────────── */
.cs-project-meta {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
  margin: 12px 0 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.cs-pm-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cs-pm-label {
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.7;
}

.cs-pm-value {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.cs-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 22px;
}

.cs-service-tag {
  font-size: 11px;
  font-weight: 600;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 5px 12px;
  border-radius: 100px;
  letter-spacing: 0.01em;
}

/* ─── WORK PAGE: PRIMARY CTA BUTTON ───────────────── */
.cs-cta-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 17px 22px;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 10px;
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-decoration: none;
  flex: 1;
  min-width: 200px;
  transition: background 0.2s, transform 0.2s;
}

.cs-cta-full:hover {
  background: #2563eb;
  border-color: #2563eb;
  transform: translateY(-2px);
}

.cs-cta-arrow {
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.cs-cta-full:hover .cs-cta-arrow {
  transform: translateX(5px);
}

@media (max-width: 560px) {
  .cs-project-meta { gap: 16px; }
  .cs-cta-full { flex: none; width: 100%; }
}

/* ═══════════════════════════════════════════════════════
   WORK PAGE — EDITORIAL POLISH
   ══════════════════════════════════════════════════════ */

/* Hero: tall, flex-centered, content vertically anchored */
.page-hero.wk-hero {
  min-height: 80vh;
  padding: 80px 0;
  display: flex;
  align-items: center;
}

/* On mobile give extra top clearance for fixed nav */
@media (max-width: 768px) {
  .page-hero.wk-hero {
    min-height: 65vh;
    padding: 110px 0 60px;
    align-items: flex-start;
  }
}

/* ─── WORK PAGE HERO: CINEMATIC MOSAIC BG ───────────── */

/*
 * 4-panel portfolio mosaic sits behind the hero text.
 * Panels: Event Coverage | Government Drone | Coffee/Hospitality | BTS Production
 * Heavy dark overlay keeps typography primary. Slow Ken Burns adds depth.
 */
.wk-mosaic {
  position: absolute;
  /* slightly oversized so zoom animation has no visible edge */
  inset: -7%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  transform-origin: 46% 54%;
  animation: wkMosaicZoom 26s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  will-change: transform;
  /* Soft blur makes images texture rather than distraction */
  filter: blur(2px) saturate(0.7);
}

@keyframes wkMosaicZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0);  }
}

.wk-mosaic-col {
  background-size: cover;
  background-position: center;
  height: 100%;
}

/* Soft feathering between panels — barely visible under the overlay */
.wk-mosaic-col:not(:last-child) {
  box-shadow: inset -40px 0 60px -10px rgba(5,5,13,0.55);
}

/* Dark cinematic overlay: base 85% + edge vignette + bottom lift */
.wk-mosaic-overlay {
  position: absolute;
  inset: 0;
  background:
    /* left/right edge vignette */
    linear-gradient(to right,
      rgba(5,5,13,0.70) 0%,
      rgba(5,5,13,0.12) 20%,
      rgba(5,5,13,0.12) 80%,
      rgba(5,5,13,0.65) 100%
    ),
    /* bottom lift for type readability */
    linear-gradient(to top,
      rgba(5,5,13,0.80) 0%,
      rgba(5,5,13,0.10) 55%
    ),
    /* heavier base coat — text is the hero, not the images */
    rgba(5,5,13,0.85);
}

/* ─── SECTION INTRO ─────────────────────────────────── */
.wk-intro {
  padding: 80px 0 64px;
}

.wk-intro-inner {
  max-width: 640px;
}

.wk-intro-inner .tag {
  margin-bottom: 20px;
  display: inline-block;
}

.wk-intro-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1.08;
  margin: 16px 0 20px;
}

.wk-intro-sub {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.80;
  max-width: 520px;
  margin: 0;
}

/* ─── CASE STUDIES SECTION ───────────────────────────── */
.wk-featured-section {
  /* intro section above provides the spacing */
  padding: 0 0 100px;
}

.wk-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.018);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.35),
    0 24px 80px rgba(0,0,0,0.4);
  transition: border-color 0.35s;
}

.wk-featured-card:hover {
  border-color: rgba(255,255,255,0.14);
}

.wk-featured-image {
  position: relative;
  overflow: hidden;
}

.wk-featured-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.wk-featured-card:hover .wk-featured-image img {
  transform: scale(1.03);
}

/* Video: contain so full 16:9 width shows — no side cropping */
.wk-featured-image video {
  width: 100%; height: 100%;
  object-fit: contain;
  background: var(--bg);
  display: block;
}

.wk-featured-body {
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wk-featured-body .tag {
  align-self: flex-start;
  margin-bottom: 18px;
}

.wk-featured-body h2 {
  font-size: clamp(28px,3.2vw,48px);
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--text);
  line-height: 1.12;
  margin: 0;
}

.wk-body-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
  margin: 0;
  max-width: 480px;
}

/* ─── ADDITIONAL CASE STUDIES LIST ─────────────────── */
.wk-case-list {
  padding: 0 0 80px;
}

.wk-list-label {
  margin-bottom: 40px;
}

.wk-cs-card {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 440px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255,255,255,0.016);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.28),
    0 12px 40px rgba(0,0,0,0.28);
  margin-bottom: 32px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.wk-cs-card:last-child { margin-bottom: 0; }

.wk-cs-card:hover {
  border-color: rgba(255,255,255,0.12);
  box-shadow:
    0 2px 4px rgba(0,0,0,0.35),
    0 20px 60px rgba(0,0,0,0.38);
}

/* Flip: body-left, image-right */
.wk-cs-card--flip { grid-template-columns: 54% 46%; }
.wk-cs-card--flip .wk-cs-body  { order: 1; }
.wk-cs-card--flip .wk-cs-image { order: 2; }

.wk-cs-image {
  position: relative;
  overflow: hidden;
}

.wk-cs-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}

.wk-cs-card:hover .wk-cs-image img {
  transform: scale(1.04);
}

.wk-cs-body {
  padding: 52px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wk-cs-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(22px,2.6vw,38px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 14px 0 18px;
  line-height: 1.14;
}

.wk-cs-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.85;
  max-width: 480px;
  margin: 0;
}

/* ─── METRIC ROW ────────────────────────────────────── */
.wk-stat-row {
  display: flex;
  align-items: center;
  padding: 24px 0 0;
  margin-top: 24px;
  border-top: 1px solid var(--border);
}

.wk-stat { flex: 1; }

.wk-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(24px,2.8vw,42px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.wk-stat-label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wk-stat-div {
  width: 1px;
  height: 38px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 22px;
}

/* ─── PREMIUM LINK BUTTON ───────────────────────────── */
.wk-case-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  text-decoration: none;
  padding: 14px 22px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  letter-spacing: -0.01em;
  margin-top: 30px;
  align-self: flex-start;
  transition: background 0.2s, border-color 0.2s;
}

.wk-case-link span {
  display: inline-block;
  font-size: 16px;
  transition: transform 0.2s;
}

.wk-case-link:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
}

.wk-case-link:hover span {
  transform: translateX(5px);
}

/* ─── SIMPLIFIED FINAL CTA ──────────────────────────── */
.wk-final-cta { margin-top: 0; }

.wk-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
}

.wk-cta-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px,5vw,72px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 40px;
}

/* ─── WORK PAGE RESPONSIVE ──────────────────────────── */
@media (max-width: 960px) {
  .wk-featured-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .wk-featured-image { min-height: 360px; }
  .wk-featured-body  { padding: 44px 40px; }

  .wk-cs-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .wk-cs-card--flip   { grid-template-columns: 1fr; }
  .wk-cs-card--flip .wk-cs-body  { order: 2; }
  .wk-cs-card--flip .wk-cs-image { order: 1; }
  .wk-cs-image { min-height: 300px; }
  .wk-cs-body  { padding: 40px 36px; }

  .wk-stat-num { font-size: clamp(22px,3.5vw,36px); }
}

@media (max-width: 768px) {
  .wk-featured-section { padding: 28px 0 60px; }
  .wk-featured-body    { padding: 36px 32px; }
  .wk-cs-body          { padding: 36px 28px; }
  .wk-stat-div         { margin: 0 14px; }
  .wk-cta-heading      { font-size: clamp(28px,8vw,52px); }
}

@media (max-width: 560px) {
  .wk-stat-row  { flex-wrap: wrap; gap: 20px; padding-top: 20px; }
  .wk-stat-div  { display: none; }
  .wk-stat      { min-width: 80px; }
  .wk-featured-body, .wk-cs-body { padding: 28px 24px; }
  .wk-case-list { padding-bottom: 40px; }
}


/* ═══════════════════════════════════════════════════════════
   GALLERY PAGE — Premium Redesign  (gl-* namespace)
   Elevates gallery.html to match the Home / Services / Work /
   About visual language. All functional classes (media-card,
   ar-*, masonry-grid, etc.) are left untouched.
═══════════════════════════════════════════════════════════ */

/* ─── HERO UPGRADE ────────────────────────────────────── */

/* gl-hero now layers on top of wk-hero (cinematic mosaic).
   wk-hero owns the layout (min-height, padding, flex).
   gl-hero owns the headline sizing and the filter/context extras. */

.page-hero.gl-hero h1 {
  font-size: clamp(48px, 7.5vw, 92px);
  line-height: 1.0;
  letter-spacing: -0.04em;
}

/* Credibility context row */
.gl-hero-context {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.6;
}

.gl-hero-context-sep {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.6;
  flex-shrink: 0;
}

/* Filter pills over the cinematic mosaic — glass treatment so they
   feel woven into the scene rather than pasted on top of it.       */
.gl-hero .gallery-filter { margin-top: 36px; }
.gl-hero .filter-btn {
  background: rgba(5,5,13,0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(255,255,255,0.10);
}
.gl-hero .filter-btn:hover {
  background: rgba(5,5,13,0.72);
  border-color: rgba(255,255,255,0.20);
  color: var(--text);
}
.gl-hero .filter-btn.active {
  background: rgba(59,130,246,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: var(--blue-border);
  color: var(--blue);
}

/* ─── GALLERY SECTIONS — increased breathing room ──── */

.gallery-sections {
  margin-top: 80px;
}

.gallery-section {
  padding: 120px 0;
}

/* ─── EDITORIAL SECTION INTRO ─────────────────────── */

/* The centrepiece of the redesign — every section opens with
   this cinematic header block drawn from the About page's
   Behind The Work / Productions Manager patterns.           */

.gl-section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
}

/* Eyebrow row: ─── TEXT ─── */
.gl-eyebrow-row {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}

.gl-eyebrow-bar {
  display: block;
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
  flex-shrink: 0;
}

/* Main heading */
.gl-section-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.04;
  color: var(--text);
  margin-bottom: 20px;
}

/* Blue accent word(s) inside heading */
.gl-h2-accent {
  color: var(--blue);
}

/* Body copy under heading */
.gl-section-p {
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--muted);
  line-height: 1.78;
  max-width: 520px;
  margin: 0 auto;
}

/* ─── RESPONSIVE ──────────────────────────────────── */

@media (max-width: 900px) {
  .gallery-section   { padding: 90px 0; }
  .gl-section-intro  { margin-bottom: 60px; }
}

@media (max-width: 600px) {
  .page-hero.gl-hero h1 { letter-spacing: -0.03em; }
  .gl-hero-context   { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .gallery-section   { padding: 72px 0; }
  .gl-section-intro  { margin-bottom: 48px; max-width: 100%; }
  .gl-section-h2     { letter-spacing: -0.03em; }
  .gl-section-p      { font-size: 15px; }
}


/* ═══════════════════════════════════════════════════════════
   FEED SHOWCASE — fds-* namespace
   Apple-style two-column: text left / floating phones right
   Replaces the old full-width ig-eco phone stage.
═══════════════════════════════════════════════════════════ */

.fds-section {
  margin-top: 72px;
  padding-top: 72px;
  border-top: 1px solid var(--border);
}

/* Two-column grid */
.fds-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 72px;
  align-items: center;
}

/* ─── LEFT: TEXT COLUMN ──────────────────────── */

.fds-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.fds-eyebrow-bar {
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
  flex-shrink: 0;
}

.fds-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 18px;
}

.fds-hl-accent { color: var(--blue); }

.fds-body {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.78;
  max-width: 400px;
  margin-bottom: 32px;
}

/* Benefit pills */
.fds-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.fds-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 7px 14px;
  border: 1px solid var(--blue-border);
  border-radius: 100px;
  background: var(--blue-glow);
}

.fds-pill::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.75;
  flex-shrink: 0;
}

/* ─── RIGHT: PHONE CLUSTER ───────────────────── */

.fds-phones {
  position: relative;
  height: 480px;
}

/* Blue ambient glow behind the phones */
.fds-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(59,130,246,0.20) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
}

.fds-phone {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Center hero phone — large, front, centred */
.fds-phone--c {
  left: 50%;
  top: 10px;
  transform: translateX(-50%);
  z-index: 3;
}

/* Left phone — angled, smaller, behind */
.fds-phone--l {
  left: 50%;
  top: 45px;
  transform: translateX(-175px) rotate(-6deg) scale(0.82);
  transform-origin: bottom center;
  z-index: 2;
  opacity: 0.78;
}

/* Right phone — angled, smaller, behind */
.fds-phone--r {
  left: 50%;
  top: 45px;
  transform: translateX(45px) rotate(6deg) scale(0.82);
  transform-origin: bottom center;
  z-index: 2;
  opacity: 0.78;
}

/* Phone frame — glass/premium */
.fds-frame {
  width: 155px;
  height: 330px;
  background: linear-gradient(160deg, #1d1d2f 0%, #121220 100%);
  border-radius: 30px;
  border: 1.5px solid rgba(255,255,255,0.10);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.65),
    0 6px 16px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.07),
    inset 0 0 0 1px rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Hero frame — larger with blue-tinted shadow */
.fds-frame--hero {
  width: 190px;
  height: 408px;
  border-radius: 36px;
  border-color: rgba(255,255,255,0.14);
  box-shadow:
    0 44px 88px rgba(0,0,0,0.70),
    0 10px 28px rgba(59,130,246,0.12),
    inset 0 1px 0 rgba(255,255,255,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}

/* Dynamic island */
.fds-island {
  width: 68px;
  height: 20px;
  background: #000;
  border-radius: 0 0 11px 11px;
  margin: 9px auto 0;
  flex-shrink: 0;
}

.fds-island--hero {
  width: 86px;
  height: 24px;
}

/* Screen — fills frame between island and homebar */
.fds-screen {
  flex: 1;
  overflow: hidden;
  margin: 6px 5px 0;
  border-radius: 14px;
}

.fds-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Home bar indicator */
.fds-homebar {
  width: 56px;
  height: 3px;
  background: rgba(255,255,255,0.18);
  border-radius: 2px;
  margin: 7px auto 10px;
  flex-shrink: 0;
}

.fds-homebar--hero {
  width: 72px;
}

/* Handle label below phone */
.fds-handle {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--muted);
  opacity: 0.55;
}

.fds-handle--hero {
  color: var(--blue);
  opacity: 0.9;
  font-size: 11px;
}

/* ─── RESPONSIVE ─────────────────────────────── */

@media (max-width: 1000px) {
  .fds-inner { gap: 48px; }
  .fds-phone--l { transform: translateX(-148px) rotate(-6deg) scale(0.78); }
  .fds-phone--r { transform: translateX(34px)  rotate(6deg)  scale(0.78); }
}

@media (max-width: 768px) {
  .fds-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .fds-phones        { height: 400px; }
  .fds-frame         { width: 130px; height: 277px; }
  .fds-frame--hero   { width: 160px; height: 342px; }
  .fds-phone--l      { transform: translateX(-138px) rotate(-6deg) scale(0.78); }
  .fds-phone--r      { transform: translateX(30px)   rotate(6deg)  scale(0.78); }
}

@media (max-width: 480px) {
  .fds-phones        { height: 320px; }
  .fds-phone--l      { transform: translateX(-108px) rotate(-6deg) scale(0.70); opacity: 0.60; }
  .fds-phone--r      { transform: translateX(24px)   rotate(6deg)  scale(0.70); opacity: 0.60; }
}

/* ══════════════════════════════════════════════════════════════
   GALLERY — GLOBAL DESIGN RULES
   Subtle hover lift + blue glow ring on all gallery media cards.
   Commercial masonry wall layout.
══════════════════════════════════════════════════════════════ */

/* Hover: subtle lift + glowing border on every gallery media card */
.gallery-sections .media-card {
  transition: box-shadow 0.42s ease, transform 0.42s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gallery-sections .media-card:hover {
  transform: translateY(-3px) translateZ(0);
  box-shadow:
    0 14px 48px rgba(0,0,0,0.55),
    0 0 0 1px rgba(59,130,246,0.18);
}

/* Commercial masonry wall */
.cm-wall { column-gap: 14px; }
.cm-wall .masonry-item { margin-bottom: 14px; }

/* ══════════════════════════════════════════════════════════════
   BUSINESS "biz-wall-*" SECTION — standard grid, no position tricks.
══════════════════════════════════════════════════════════════ */

/* ── Header ──────────────────────────────────────── */
.biz-wall-header {
  text-align: center;
  margin-bottom: 40px;
}
.biz-wall-header-inner {
  max-width: 760px;
  margin: 0 auto;
}

/* Eyebrow — thin expanding lines, blue label */
.biz-wall-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
}
.biz-wall-eyebrow-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--blue);
  opacity: 0.35;
}

/* Headline — matches About page BTS scale */
.biz-wall-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--text);
}
.biz-wall-hl-accent { color: var(--blue); }

/* ── Grid wall ───────────────────────────────────── */
.biz-wall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 12px;
}
.biz-wall-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.biz-wall-img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(0,0,0,0.55), 0 0 0 1px rgba(59,130,246,0.18);
}

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 768px) {
  .biz-wall-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 8px;
  }
  .biz-wall-img { height: 160px; }
}

/* ══════════════════════════════════════════════════════════════════
   COMMERCIAL — 3-ROW VIDEO SCROLL WALL (cm-scroll-*)
   ══════════════════════════════════════════════════════════════════ */

/* Tighten spacing under section intro */
#section-commercial .gl-section-intro { margin-bottom: 28px; }

/* Outer container — sits inside .container, full bleed via negative margin */
.cm-scroll-section {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  padding: 0 0 8px;
}

/* One row */
.cm-scroll-row {
  overflow: hidden;
  margin-bottom: 16px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 1.5%, black 98.5%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 1.5%, black 98.5%, transparent 100%);
}

/* Track — flex strip that loops */
.cm-scroll-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: cmScroll 100s linear infinite;
  will-change: transform;
}
.cm-scroll-track--rtl  { animation-direction: reverse; }
.cm-scroll-track--s2   { animation-duration: 130s; }
.cm-scroll-track--s3   { animation-duration: 120s; }

@keyframes cmScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Each card — fixed 500px wide, 16:9 via padding trick */
.cm-scroll-card {
  width: 500px;
  flex-shrink: 0;
}

/* 16:9 aspect wrapper */
.cm-scroll-card .media-card.ar-16-9 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 12px;
}

.cm-scroll-card .media-card.ar-16-9 .media-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cm-scroll-card .media-card.ar-16-9:hover .media-img {
  transform: scale(1.04);
}

/* Overlay — always partially visible (premium feel) */
.cm-scroll-card .media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 5, 13, 0.88) 0%,
    rgba(5, 5, 13, 0.38) 45%,
    transparent 75%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px 16px;
  opacity: 1;
  transition: opacity 0.35s ease;
  border-radius: 12px;
}

.cm-scroll-card .media-overlay .media-info-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 5px;
  opacity: 0.9;
  transform: translateY(0);
}

.cm-scroll-card .media-overlay .media-info-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  transform: translateY(0);
}

/* Play button — always faint, full opacity on hover */
.cm-scroll-card .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0.28;
  transition: opacity 0.3s ease, transform 0.3s ease;
  width: 48px;
  height: 48px;
  font-size: 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  pointer-events: none;
}

.cm-scroll-card .media-card:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* Hover card lift + glow */
.cm-scroll-card .media-card {
  transition: box-shadow 0.42s ease;
}
.cm-scroll-card .media-card:hover {
  box-shadow: 0 18px 56px rgba(0,0,0,0.6), 0 0 0 1px rgba(59,130,246,0.22);
}

/* Mobile — shrink cards */
@media (max-width: 768px) {
  .cm-scroll-card { width: 300px; }
  .cm-scroll-row { margin-bottom: 10px; }
  .cm-scroll-track { gap: 10px; }
}

/* ══════════════════════════════════════════════════════════════════
   CLIENT PORTFOLIO — scrolling rows + subtext (biz-wall-subtext)
   ══════════════════════════════════════════════════════════════════ */

/* Subtext under portfolio headline */
.biz-wall-subtext {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

/* Portfolio marquee container — less vertical padding than events */
.biz-marquee--portfolio {
  padding-top: 0;
  padding-bottom: 32px;
}

/* ══════════════════════════════════════════════════════════════════
   FEED SHOWCASE — compact standalone section (#section-feeds)
   ══════════════════════════════════════════════════════════════════ */

/* Remove default gallery-section top padding; let it breathe just enough */
.gallery-section--feeds {
  padding-top: 0;
  padding-bottom: 0;
}

/* Compact padding override — ~50% of original .fds-section padding */
.fds-section--compact {
  margin-top: 0;
  padding: 56px 0 64px;
  border-top: none;
}

/* ══════════════════════════════════════════════════════════════════
   SOCIAL MEDIA REELS — tighter space above reel cards
   ══════════════════════════════════════════════════════════════════ */

#section-reels .gl-section-intro { margin-bottom: 28px; }

/* ══════════════════════════════════════════════════════════════════
   GALLERY HERO — paragraph readability lift
   ══════════════════════════════════════════════════════════════════ */

.gl-hero .page-hero p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  letter-spacing: 0.01em;
  max-width: 560px;
}

/* ══════════════════════════════════════════════════════════════════
   UNIFIED PORTFOLIO SECTION — cv-* (Client Work & Community Impact)
   ══════════════════════════════════════════════════════════════════ */

#section-portfolio { padding-top: 120px; }

/* Header */
.cv-header {
  text-align: center;
  margin-bottom: 40px;
}
.cv-header-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* Eyebrow — matches biz-wall-eyebrow style */
.cv-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
}
.cv-eyebrow-line {
  flex: 1;
  max-width: 64px;
  height: 1px;
  background: var(--blue);
  opacity: 0.35;
}

/* Headline */
.cv-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 22px;
}
.cv-hl-accent { color: var(--blue); }

/* Supporting text */
.cv-subtext {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 620px;
  margin: 0 auto;
}

/* ── Stats row ───────────────────────────────────────────────────── */
.cv-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 44px auto 44px;
  max-width: 680px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.cv-stat {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.cv-stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}
.cv-stat-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 7px;
}
.cv-stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Gallery marquee overrides ───────────────────────────────────── */
.cv-marquee {
  padding-top: 0;
  padding-bottom: 48px;
}

/* Mobile */
@media (max-width: 768px) {
  .cv-stats {
    flex-direction: column;
    gap: 20px;
    padding: 22px 20px;
  }
  .cv-stat-divider { display: none; }
  .cv-stat { flex: 1 1 100%; }
}

/* ══════════════════════════════════════════════════════════════════
   COMMERCIAL — full-bleed immersive overrides
   ══════════════════════════════════════════════════════════════════ */

/* Give the section generous vertical space so the gallery reads as
   its own cinematic moment, not just a panel between sections */
#section-commercial {
  padding-bottom: 120px;
}

/* The scroll-section itself sits right against the edges — only the
   fade masks provide the soft transition into the dark background */
.cm-scroll-section {
  padding-bottom: 0;
}

/* Bottom margin on last row so it doesn't clip into section padding */
.cm-scroll-row:last-child {
  margin-bottom: 0;
}

/* ─────────────────────────────────────────────────────────────
   Sticky-nav anchor offset — keeps section headings clear of the
   fixed nav when in-page anchor links / gallery filters jump to them.
   ───────────────────────────────────────────────────────────── */
#featured-services,
.gallery-section,
[id^="section-"] {
  scroll-margin-top: 96px;
}

/* ─────────────────────────────────────────────────────────────
   Reduced-motion support (WCAG 2.3.3) — honors the OS "Reduce
   Motion" setting by freezing the looping marquees, pulses, and
   reveal transitions. No visual change for everyone else.
   ───────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─────────────────────────────────────────────────────────────
   Case-study mobile grid collapse.
   The case-study pages use inline `style="display:grid; grid-template-columns:…"`
   on several section wrappers, which no plain @media rule can reach. These
   helper classes (added to those wrappers) collapse them on phones. `!important`
   is required to beat the inline grid-template-columns; desktop is untouched.
   ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .cs-stack-mobile  { grid-template-columns: 1fr !important; gap: 32px !important; }
  .cs-reels-mobile  { grid-template-columns: repeat(2, 1fr) !important; }
  .cs-mosaic-mobile { grid-template-columns: 1fr 1fr !important; grid-template-rows: auto !important; height: auto !important; }
}
@media (max-width: 480px) {
  .cs-reels-mobile  { grid-template-columns: 1fr !important; }
}

/* ─────────────────────────────────────────────────────────────
   GALLERY POLISH — skeleton loading state, consistent play icons,
   reel overlay fit, and honest cursors. Scoped to .gallery-sections
   so nothing else (and not the .biz-pm-* image marquee) is affected.
   ───────────────────────────────────────────────────────────── */

/* Skeleton shimmer behind each video card — the video paints over it
   once it loads (preload="none"), so cards never read as dead dark boxes. */
.gallery-sections .media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background: linear-gradient(100deg,
    var(--bg-card) 0%,
    var(--border) 18%,
    var(--bg-card) 36%);
  background-size: 220% 100%;
  animation: glCardShimmer 1.6s ease-in-out infinite;
}
@keyframes glCardShimmer {
  0%   { background-position: 140% 0; }
  100% { background-position: -40% 0; }
}
/* Stacking order inside each media-card:
   0 = shimmer (::before)
   1 = poster <img> (.cm-poster-img) — always visible
   2 = video (.media-img) — opacity:0 until canplay, so poster shows through
   3 = overlay gradient
   4 = play button (above gradient) */
.cm-poster-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  border-radius: inherit;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.cm-scroll-card .media-card:hover .cm-poster-img { transform: scale(1.04); }
.gallery-sections .media-card .media-img { position: relative; z-index: 2; opacity: 0; }
.gallery-sections .media-card .media-overlay { position: relative; z-index: 3; }
.gallery-sections .media-card .play-btn { position: relative; z-index: 4; }

/* Reels: give the ▶ a faint resting state (it's visible on touch/mobile),
   matching the commercial cards instead of being hover-only. */
.reel-strip .play-btn {
  opacity: 0.28;
  transform: translate(-50%, -50%) scale(0.85);
}
.reel-strip .media-card:hover .play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
/* Tighter overlay padding for the narrow reel cards so captions fit cleanly. */
.reel-strip .media-overlay { padding: 16px 14px; }

/* Video cards have no click action — don't show a clickable cursor. */
.cm-scroll-card .media-card,
.reel-strip .media-card { cursor: default; }
