/* ═══════════════════════════════════════════════════════════
   LET'S VFX STUDIOS — WEBSITE STYLESHEET
   letsvfx.com · Mumbai · Est. 2018
   ═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ──────────────────────────────────────────────── */
:root {
  /* Colour */
  --bg:           #0A0A0A;
  --bg-card:      #141414;
  --bg-card-hover:#1C1C1C;
  --bg-surface:   #111111;
  --border:       #242424;
  --border-light: #2E2E2E;
  --accent:       #E8871A;
  --accent-dim:   #7A4510;
  --text-primary: #F0EDE8;
  --text-secondary:#8A8480;
  --text-muted:   #4A4540;
  --white:        #FFFFFF;

  /* Type */
  --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Scale */
  --container:    1180px;
  --radius-sm:    6px;
  --radius-md:    10px;
  --radius-lg:    16px;

  /* Transitions */
  --ease:         cubic-bezier(0.16, 1, 0.3, 1);
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; display: block; }
ul[role="list"] { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── FOCUS ───────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* ─── REDUCED MOTION ──────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ─── CONTAINER ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── TYPOGRAPHY UTILITIES ────────────────────────────────── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
}
.section-header { margin-bottom: 3rem; }

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn-primary,
.btn-outline,
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.72rem 1.4rem;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.18s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #0A0A0A;
  border: 1.5px solid transparent;
}
.btn-primary:hover { background: #F09830; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-nav-cta {
  background: var(--accent);
  color: #0A0A0A;
  border: 1.5px solid transparent;
  font-size: 0.82rem;
  padding: 0.55rem 1.1rem;
}
.btn-nav-cta:hover { background: #F09830; }

/* ─── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: border-color 0.3s var(--ease);
}
.nav.scrolled { border-color: var(--border-light); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.nav-lv-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--accent);
  color: #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.nav-lv-mark.small { width: 28px; height: 28px; font-size: 0.7rem; border-radius: 6px; }
.nav-studio-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color 0.15s;
  font-weight: 400;
}
.nav-links a:hover { color: var(--text-primary); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  gap: 5px;
}
.nav-hamburger span {
  width: 20px;
  height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.25s var(--ease);
  display: block;
}
.nav-hamburger.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  padding: 1rem 2rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.nav-mobile.open { display: block; }
.nav-mobile ul { display: flex; flex-direction: column; gap: 0.2rem; }
.nav-mobile ul a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1.05rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  transition: color 0.15s;
}
.nav-mobile ul a:hover,
.nav-mobile ul a.mobile-cta { color: var(--accent); }
.nav-mobile ul li:last-child a { border-bottom: none; }

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  padding: 9rem 2rem 5rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  margin-bottom: 2.2rem;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 1.6rem;
  max-width: 820px;
}
.headline-light {
  font-weight: 300;
  color: var(--text-secondary);
}
.headline-bold {
  font-weight: 700;
  color: var(--text-primary);
}
.headline-bold.accent { color: var(--accent); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 2.4rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
  max-width: 480px;
}
.stat-item { flex: 1; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); }
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin: 0 2rem;
  flex-shrink: 0;
}

/* ─── TICKER ──────────────────────────────────────────────── */
.ticker-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 0.9rem 0;
  background: var(--bg-surface);
}
.ticker-track { overflow: hidden; }
.ticker-inner {
  display: inline-flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  will-change: transform;
}
.ticker-inner span {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 1.4rem;
}
.tick-dot { color: var(--accent); opacity: 0.5; padding: 0 0.2rem !important; }
.ticker-wrap:hover .ticker-inner { animation-play-state: paused; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── FEATURED PROJECT — KBG ──────────────────────────────── */
.featured-project {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.kbg-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-top: 2rem;
}
.kbg-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #F87171;
  margin-bottom: 1.2rem;
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EF4444;
  animation: pulse 1.5s infinite;
}
.kbg-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.kbg-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.kbg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
}
.tag {
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--border-light);
  color: var(--text-secondary);
  background: var(--bg-surface);
}
.kbg-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.6rem;
}
.kbg-metric {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.8rem;
  text-align: center;
}
.metric-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.2rem;
}
.metric-label { font-size: 0.7rem; color: var(--text-muted); }
.kbg-cta { margin-top: 0.4rem; }

.kbg-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border);
}
.kbg-emblem-wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}
.kbg-emblem-outer {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid rgba(232,135,26,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.kbg-emblem-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}
.kbg-trophy { font-size: 2.8rem; line-height: 1; }
.kbg-show-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}
.kbg-show-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
}
.kbg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,135,26,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── SERVICES ────────────────────────────────────────────── */
.services-section { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: block;
  position: relative;
  transition: border-color 0.22s, background 0.22s, transform 0.22s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(232,135,26,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.25s;
}
.service-card:hover { border-color: var(--border-light); background: var(--bg-card-hover); transform: translateY(-2px); }
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--accent);
  background: rgba(232,135,26,0.1);
  border: 1px solid rgba(232,135,26,0.15);
}
.service-ai-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: rgba(99,102,241,0.15);
  color: #A5B4FC;
  border: 1px solid rgba(99,102,241,0.25);
  letter-spacing: 0.05em;
}
.service-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  padding-right: 2.5rem;
  line-height: 1.3;
}
.service-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.service-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.2rem;
}
.service-tools span {
  font-size: 0.7rem;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.service-arrow {
  position: absolute;
  bottom: 1.2rem;
  right: 1.4rem;
  font-size: 1rem;
  color: var(--text-muted);
  transition: color 0.18s, transform 0.18s;
}
.service-card:hover .service-arrow { color: var(--accent); transform: translateX(3px); }
.services-cta-row { margin-top: 2rem; }

/* ─── WORK REEL ───────────────────────────────────────────── */
.work-section { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.work-reel-wrap { position: relative; margin: 0 0 2rem; }
.work-reel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 2rem 1.4rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  scrollbar-width: none;
}
.work-reel::-webkit-scrollbar { display: none; }
.work-reel.dragging { cursor: grabbing; user-select: none; }

.work-card {
  flex: 0 0 300px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.22s, transform 0.22s var(--ease);
  display: block;
}
.work-card:hover { border-color: var(--card-color, var(--accent)); transform: translateY(-3px); }
.work-card-inner { display: flex; flex-direction: column; height: 100%; }
.work-card-thumb {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: var(--bg-surface);
  overflow: hidden;
}
.work-thumb-icon { font-size: 3rem; position: relative; z-index: 2; transition: transform 0.3s var(--ease); }
.work-card:hover .work-thumb-icon { transform: scale(1.1); }
.work-card-overlay {
  position: absolute;
  inset: 0;
  background: var(--card-color, var(--accent));
  opacity: 0.06;
  transition: opacity 0.25s;
}
.work-card:hover .work-card-overlay { opacity: 0.12; }

/* Thumb accent borders */
.kbg-thumb    { border-bottom: 2px solid #E8871A; }
.garmi-thumb  { border-bottom: 2px solid #D95B3A; }
.manjha-thumb { border-bottom: 2px solid #3D8BCD; }
.muqabla-thumb{ border-bottom: 2px solid #8B5CF6; }
.bijli-thumb  { border-bottom: 2px solid #F59E0B; }
.naach-thumb  { border-bottom: 2px solid #10B981; }
.bhoot-thumb  { border-bottom: 2px solid #6366F1; }
.onetime-thumb{ border-bottom: 2px solid #EC4899; }

.work-card-info { padding: 1rem 1.2rem 1.2rem; flex: 1; }
.work-card-type {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}
.work-card-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}
.work-card-client { font-size: 0.78rem; color: var(--text-secondary); }

.reel-drag-hint {
  text-align: center;
  padding: 0.5rem 0;
}
.reel-drag-hint span {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.clients-section {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  padding: 1.8rem 0;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.clients-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}
.clients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
}
.clients-list span { font-size: 0.85rem; color: var(--text-secondary); }
.work-cta-row { padding: 1.5rem 0 0; }

/* ─── PROCESS ─────────────────────────────────────────────── */
.process-section { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-right: none;
  background: var(--bg-card);
  transition: border-color 0.2s, background 0.2s;
}
.process-step:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.process-step:last-child  { border-right: 1px solid var(--border); border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.process-step:hover { background: var(--bg-card-hover); border-color: var(--border-light); }
.process-connector {
  width: 0;
  height: 0;
  flex-shrink: 0;
}
.process-num {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
  font-family: var(--font-display);
}
.process-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}
.process-desc { font-size: 0.8rem; color: var(--text-secondary); line-height: 1.5; }

/* ─── FOUNDERS ────────────────────────────────────────────── */
.founders-section { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.founder-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.2s;
}
.founder-card:hover { border-color: var(--border-light); }
.founder-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.founder-initials {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  flex-shrink: 0;
}
.ankit-initials  { background: rgba(232,135,26,0.15); color: var(--accent); border: 1px solid rgba(232,135,26,0.25); }
.pushpit-initials{ background: rgba(16,185,129,0.12); color: #34D399;       border: 1px solid rgba(16,185,129,0.2); }

.founder-meta { flex: 1; }
.founder-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}
.founder-role { font-size: 0.8rem; color: var(--text-secondary); }

.founder-age {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text-muted);
  line-height: 1;
  opacity: 0.35;
  letter-spacing: -0.04em;
}
.founder-bio {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.founder-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.founder-skills span {
  font-size: 0.72rem;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.founders-cta { margin-top: 2.5rem; }

/* ─── CONTACT CTA ─────────────────────────────────────────── */
.contact-cta-section { padding: 5rem 0; }
.contact-cta-block {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,135,26,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.contact-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.7rem;
  position: relative;
}
.contact-cta-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2.4rem;
  position: relative;
}
.contact-cta-info {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.4rem;
  position: relative;
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: opacity 0.15s;
}
.contact-info-item:hover { opacity: 0.75; }
.cinfo-label { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; }
.cinfo-val   { font-size: 0.9rem; font-weight: 500; color: var(--text-primary); }
.contact-cta-btn { position: relative; }

/* ─── FOOTER ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 1.8rem 0;
  background: var(--bg-surface);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: var(--text-secondary);
}
.footer-links {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 0.82rem;
  color: var(--text-secondary);
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--text-primary); }
.footer-copy { font-size: 0.75rem; color: var(--text-muted); }

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .kbg-metrics   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links   { display: none; }
  .btn-nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero { padding: 7rem 1.5rem 4rem; min-height: auto; }
  .hero-stats { flex-direction: column; gap: 1rem; border-top: none; }
  .stat-divider { display: none; }

  .kbg-block { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem; }
  .kbg-visual { aspect-ratio: 16/9; }

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

  .process-steps { flex-direction: column; gap: 0; }
  .process-step { border-right: 1px solid var(--border); border-bottom: none; border-radius: 0 !important; }
  .process-step:first-child { border-radius: var(--radius-md) var(--radius-md) 0 0 !important; }
  .process-step:last-child  { border-bottom: 1px solid var(--border) !important; border-radius: 0 0 var(--radius-md) var(--radius-md) !important; }

  .founders-grid { grid-template-columns: 1fr; }

  .contact-cta-block { padding: 2rem 1.5rem; }
  .contact-cta-info  { flex-direction: column; gap: 1rem; align-items: center; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }

  .container { padding: 0 1.5rem; }
  .work-reel { padding: 1rem 1.5rem 1.4rem; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .hero-sub      { font-size: 0.95rem; }
  .hero-ctas     { flex-direction: column; }
  .hero-ctas a   { text-align: center; justify-content: center; }
  .work-card     { flex: 0 0 260px; }
  .kbg-metrics   { grid-template-columns: repeat(2, 1fr); }
}

/* ─── INNER PAGE HERO (About, Services) ───────────────────── */
.page-hero {
  padding: 9rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  max-width: 720px;
}
.page-hero h1 .accent { color: var(--accent); }
.page-hero p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 560px;
}

/* ─── ABOUT INTRO (images + copy) ─────────────────────────── */
.about-intro-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.about-intro-section::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(232,135,26,0.08) 0%, rgba(217,91,58,0.04) 40%, transparent 70%);
  pointer-events: none;
}
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}
.about-intro-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  aspect-ratio: 4 / 5;
}
.about-intro-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-intro-photo--left img { object-position: center 15%; }
.about-intro-content { text-align: center; }
.about-intro-lead {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.about-intro-body {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.4rem;
}
.about-intro-stats {
  display: flex;
  justify-content: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}
.about-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.03em;
}
.about-stat-suffix { color: var(--accent); }
.about-stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
.about-stat-line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--accent);
  margin-top: 0.6rem;
  border-radius: 2px;
}

/* ─── DIRECTOR SECTION ────────────────────────────────────── */
.director-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.director-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 50%, rgba(232,135,26,0.05) 0%, transparent 45%),
    repeating-radial-gradient(circle at 70% 60%, transparent 0, transparent 40px, rgba(255,255,255,0.012) 40px, rgba(255,255,255,0.012) 41px);
  pointer-events: none;
}
.director-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}
.director-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}
.director-bio {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}
.director-experience {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.director-exp-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: #0A0A0A;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.director-exp-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}
.director-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.director-visual img {
  max-height: 520px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

/* ─── FOUNDER PHOTO ───────────────────────────────────────── */
.founder-card--ankit .founder-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(232,135,26,0.3);
  flex-shrink: 0;
}
.founder-card--ankit .founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ─── STORY TIMELINE (About) ──────────────────────────────── */
.story-section { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.story-chapters {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 1rem;
}
.story-chapter {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2.5rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--border);
}
.story-chapter:last-child { border-bottom: none; }
.story-year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.story-year span {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}
.story-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
.story-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ─── DIFFERENTIATORS & VALUES (About) ────────────────────── */
.diff-section,
.values-section { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.diff-card,
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  transition: border-color 0.2s, background 0.2s;
}
.diff-card:hover,
.value-card:hover { border-color: var(--border-light); background: var(--bg-card-hover); }
.diff-num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
.diff-title,
.value-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.diff-desc,
.value-desc {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.value-icon {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  line-height: 1;
}

/* ─── STUDIO TABLE (About) ────────────────────────────────── */
.studio-section { padding: 5rem 0; border-bottom: 1px solid var(--border); }
.studio-table-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 1rem;
}
.studio-table {
  width: 100%;
  border-collapse: collapse;
}
.studio-table tr { border-bottom: 1px solid var(--border); }
.studio-table tr:last-child { border-bottom: none; }
.studio-table th,
.studio-table td {
  padding: 1rem 1.4rem;
  text-align: left;
  font-size: 0.9rem;
}
.studio-table th {
  width: 38%;
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--bg-surface);
}
.studio-table td {
  color: var(--text-primary);
  font-weight: 500;
}

/* ─── SERVICE DETAIL (Services page) ──────────────────────── */
.service-detail-section {
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 80px;
}
.service-detail-section:last-of-type { border-bottom: none; }
.service-detail-block {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.service-detail-label {
  position: sticky;
  top: 88px;
}
.service-detail-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--text-muted);
  opacity: 0.2;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}
.service-detail-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.service-detail-headline {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.service-detail-body p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1.4rem;
}
.service-detail-body h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.7rem;
}
.service-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
}
.service-bullets li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.55;
}
.service-bullets li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.8rem;
}
.service-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.4rem;
}
.service-stack span {
  font-size: 0.75rem;
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  background: var(--bg-surface);
}
.service-callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.4rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}
.service-callout strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ─── PRICING CTA (Services) ──────────────────────────────── */
.pricing-cta-section { padding: 5rem 0; }

/* ─── NAV ACTIVE STATE ────────────────────────────────────── */
.nav-links a.active { color: var(--accent); }

@media (max-width: 1024px) {
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail-block { grid-template-columns: 1fr; gap: 1.5rem; }
  .service-detail-label { position: static; }
  .about-intro-grid { grid-template-columns: 1fr 1.2fr; }
  .about-intro-photo--right { display: none; }
  .director-block { grid-template-columns: 1fr; gap: 2rem; }
  .director-visual { order: -1; }
  .director-visual img { max-height: 380px; }
}

@media (max-width: 768px) {
  .page-hero { padding: 7rem 1.5rem 3rem; }
  .story-chapter { grid-template-columns: 1fr; gap: 0.8rem; padding: 2rem 0; }
  .diff-grid,
  .values-grid { grid-template-columns: 1fr; }
  .studio-table th,
  .studio-table td { display: block; width: 100%; }
  .studio-table th { padding-bottom: 0.3rem; border-bottom: none; }
  .studio-table td { padding-top: 0.3rem; padding-bottom: 1.2rem; }
  .about-intro-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-intro-photo--right { display: block; }
  .about-intro-photo { max-width: 320px; margin: 0 auto; }
  .about-intro-stats { gap: 2rem; }
}
