/* ─── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }
:root {
  --purple:     #7C3AED;
  --purple-lt:  #9D5FF3;
  --black:      #080809;
  --dark:       #0F0F11;
  --card:       #141417;
  --border:     rgba(255,255,255,.08);
  --white:      #FFFFFF;
  --cream:      #F5F3EF;
  --text-dim:   rgba(255,255,255,.45);
  --text-mid:   rgba(255,255,255,.72);
  --radius:     8px;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--black); color: var(--white); overflow-x: hidden; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── TYPOGRAPHY ────────────────────────────────────────── */
.serif { font-family: 'Instrument Serif', serif; font-style: italic; }
.label {
  font-size: 11px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--purple-lt);
  display: flex; align-items: center; gap: 10px;
}
.label::before { content:''; width:24px; height:1px; background: var(--purple-lt); flex-shrink:0; }

/* ─── LAYOUT ─────────────────────────────────────────────── */
.wrap { max-width: 1280px; margin: 0 auto; padding: 0 48px; }
.section { padding: 120px 0; }

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 500;
  letter-spacing: .02em; padding: 14px 28px; border-radius: 6px;
  transition: all .25s ease; text-decoration: none; border: none; cursor: pointer;
}
.btn-purple { background: var(--purple); color: #fff; }
.btn-purple:hover { background: var(--purple-lt); transform: translateY(-1px); box-shadow: 0 8px 32px rgba(124,58,237,.35); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid var(--border); }
.btn-outline:hover { border-color: rgba(255,255,255,.3); background: rgba(255,255,255,.04); }
.btn-white { background: #fff; color: var(--purple); font-weight: 600; }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,0,0,.2); }
.btn svg { width: 16px; height: 16px; transition: transform .25s; }
.btn:hover svg { transform: translateX(3px); }

/* ─── NAV ───────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .35s ease;
}
nav.scrolled {
  background: rgba(8,8,9,.92);
  backdrop-filter: blur(20px);
  padding: 16px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-logo img { height: 36px; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links > li > a { font-size: 14px; font-weight: 400; color: var(--text-dim); transition: color .2s; display: flex; align-items: center; gap: 4px; }
.nav-links > li > a:hover { color: var(--white); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); border-radius: 2px; }

/* ─── NAV DROPDOWN ──────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: -16px;
  background: #111113; border: 1px solid var(--border);
  border-radius: 10px; min-width: 220px; padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  z-index: 200;
  margin-top: 8px;
}
/* Invisible bridge fills the gap between nav link and dropdown */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0; right: 0;
  height: 20px;
  background: transparent;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 9px 14px; font-size: 13px;
  color: var(--text-mid); border-radius: 6px;
  transition: all .15s;
}
.nav-dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,.05); }
.nav-dropdown-menu .dd-divider {
  height: 1px; background: var(--border); margin: 6px 0;
}
.nav-caret { font-size: 9px; opacity: .6; transition: transform .2s; }
.nav-dropdown:hover .nav-caret { transform: rotate(180deg); }

/* ─── MOBILE MENU ───────────────────────────────────────── */
.mob-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: var(--black); flex-direction: column;
  justify-content: center; gap: 8px; padding: 0 48px;
  overflow-y: auto;
}
.mob-menu.open { display: flex; }
.mob-menu > a { font-size: 36px; font-weight: 600; color: var(--white); transition: color .2s; }
.mob-menu > a:hover { color: var(--purple-lt); }
.mob-svc-list { display: flex; flex-direction: column; gap: 4px; padding-left: 20px; border-left: 2px solid var(--border); margin: 4px 0 8px; }
.mob-svc-list a { font-size: 18px !important; font-weight: 400 !important; color: var(--text-mid) !important; }
.mob-close { position: absolute; top: 24px; right: 48px; background: none; border: none; color: var(--white); font-size: 28px; cursor: pointer; }

/* ─── CTA SECTION ───────────────────────────────────────── */
#cta {
  background: var(--purple);
  padding: 120px 0;
  text-align: center; position: relative; overflow: hidden;
  position: relative; z-index: 1; transform: translateZ(0);
}
.cta-noise {
  position: absolute; inset: 0; opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.cta-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 48px; }
.cta-inner .label { color: rgba(255,255,255,.7); justify-content: center; margin-bottom: 32px; }
.cta-inner .label::before { background: rgba(255,255,255,.7); }
.cta-inner h2 {
  font-size: clamp(40px, 5.5vw, 76px); font-weight: 700;
  letter-spacing: -.03em; line-height: 1.04; color: #fff; margin-bottom: 24px;
}
.cta-inner h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; }
.cta-inner p { font-size: 17px; color: rgba(255,255,255,.75); line-height: 1.65; max-width: 500px; margin: 0 auto 44px; }
.cta-fine { margin-top: 32px; font-size: 13px; color: rgba(255,255,255,.45); letter-spacing: .04em; }
.cta-fine span { margin: 0 10px; opacity: .4; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer { background: var(--black); border-top: 1px solid var(--border); padding: 72px 0 40px; position: relative; z-index: 1; transform: translateZ(0); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 56px; }
.footer-brand img { height: 32px; margin-bottom: 18px; }
.footer-brand p { font-size: 13px; color: var(--text-dim); line-height: 1.7; max-width: 260px; }
.footer-col h5 { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 14px; color: var(--text-mid); transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 32px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { font-size: 12px; color: var(--text-dim); }
.f-socials { display: flex; gap: 24px; }
.f-socials a { font-size: 12px; font-weight: 500; color: var(--text-dim); letter-spacing: .04em; transition: color .2s; }
.f-socials a:hover { color: var(--white); }

/* ─── FADE-IN ────────────────────────────────────────────── */
.fade-pending {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.fade-pending.d1 { transition-delay: .07s; }
.fade-pending.d2 { transition-delay: .14s; }
.fade-pending.d3 { transition-delay: .21s; }
.fade-pending.d4 { transition-delay: .28s; }

/* ─── BREADCRUMB ─────────────────────────────────────────── */
.breadcrumb {
  padding: 100px 0 0;
  background: var(--black);
  position: relative; z-index: 1; transform: translateZ(0);
}
.breadcrumb-inner {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-dim); letter-spacing: .04em;
}
.breadcrumb-inner a { color: var(--text-dim); transition: color .2s; }
.breadcrumb-inner a:hover { color: var(--white); }
.breadcrumb-inner svg { width: 10px; height: 10px; opacity: .4; }

/* ─── SERVICE PAGE HERO ──────────────────────────────────── */
.svc-hero {
  background: var(--black);
  padding: 64px 0 0;
  position: relative; z-index: 1; transform: translateZ(0);
  overflow: hidden;
}
.svc-hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
  min-height: 520px;
}
.svc-hero-left { padding: 60px 0 80px; }
.svc-hero-left .label { margin-bottom: 28px; }
.svc-hero-h1 {
  font-size: clamp(44px, 4.5vw, 72px);
  font-weight: 700; line-height: 1.04;
  letter-spacing: -.025em; margin-bottom: 24px;
}
.svc-hero-h1 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--purple-lt); }
.svc-hero-p {
  font-size: 17px; font-weight: 300; color: var(--text-mid);
  line-height: 1.7; max-width: 440px; margin-bottom: 40px;
}
.svc-hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }
.svc-hero-stats { display: flex; gap: 48px; padding-top: 40px; border-top: 1px solid var(--border); }
.svc-hero-stat .sval {
  font-size: 32px; font-weight: 700; letter-spacing: -.02em; line-height: 1; color: var(--white);
}
.svc-hero-stat .sval em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--purple-lt); }
.svc-hero-stat .slbl { font-size: 12px; color: var(--text-dim); margin-top: 6px; }

.svc-hero-right { position: relative; align-self: stretch; overflow: hidden; border-radius: 0; }
.svc-hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 25%),
              linear-gradient(to top, rgba(8,8,9,.4) 0%, transparent 50%);
}
.svc-hero-right img {
  width: 100%; height: 100%; min-height: 520px;
  object-fit: cover; object-position: center;
  filter: brightness(.75) saturate(.9);
}
.svc-hero-video { background: #000; }
.yt-thumb {
  position: relative; width: 100%; height: 100%; min-height: 520px;
  cursor: pointer; overflow: hidden;
}
.yt-thumb img {
  width: 100%; height: 100%; min-height: 520px;
  object-fit: cover; object-position: center;
  filter: brightness(.75) saturate(.9);
  transition: filter .3s;
}
.yt-thumb:hover img { filter: brightness(.6) saturate(.9); }
.yt-play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 80px; height: 56px;
  transition: transform .2s, opacity .2s;
  filter: drop-shadow(0 4px 20px rgba(0,0,0,.5));
}
.yt-thumb:hover .yt-play-btn { transform: translate(-50%,-50%) scale(1.12); }
.yt-iframe-wrap {
  position: absolute; inset: 0;
}
.yt-iframe-wrap iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}

/* ─── SERVICE MARQUEE STRIP ──────────────────────────────── */
.svc-strip {
  background: var(--dark); padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex; gap: 0; overflow: hidden;
  position: relative; z-index: 1;
}
.svc-strip-inner { display: flex; align-items: center; gap: 32px; padding: 0 32px; white-space: nowrap; }
.svc-strip-tag {
  font-size: 11px; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-dim);
  display: flex; align-items: center; gap: 12px;
}
.svc-strip-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--purple); flex-shrink: 0; }

/* ─── SERVICE FEATURES ───────────────────────────────────── */
.svc-features { background: var(--cream); position: relative; z-index: 1; transform: translateZ(0); }
.svc-features-top { margin-bottom: 64px; }
.svc-features-top .label { color: var(--purple); margin-bottom: 20px; }
.svc-features-top .label::before { background: var(--purple); }
.svc-features-top h2 {
  font-size: clamp(32px, 3.5vw, 52px); font-weight: 700;
  letter-spacing: -.025em; line-height: 1.08; color: #0a0a0a;
  max-width: 640px;
}
.svc-features-top h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--purple); }
.svc-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(0,0,0,.08); border-radius: var(--radius); overflow: hidden; align-items: stretch; }
.svc-feat {
  background: #fff; padding: 40px 36px;
  transition: background .25s;
  display: flex; flex-direction: column;
}
.svc-feat:hover { background: #fdfcfb; }
.svc-feat-icon { font-size: 28px; margin-bottom: 20px; }
.svc-feat h3 { font-size: 18px; font-weight: 600; color: #0a0a0a; letter-spacing: -.01em; margin-bottom: 12px; }
.svc-feat p { font-size: 14px; color: #555; line-height: 1.7; }
.svc-feat-list { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.svc-feat-list li { font-size: 13px; color: #444; display: flex; align-items: flex-start; gap: 10px; }
.svc-feat-list li::before { content: '→'; color: var(--purple); font-size: 12px; flex-shrink: 0; margin-top: 1px; }

/* ─── SERVICE OVERVIEW / SPLIT SECTION ───────────────────── */
.svc-overview { background: var(--dark); position: relative; z-index: 1; transform: translateZ(0); }
.svc-overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.svc-overview-left h2 {
  font-size: clamp(32px, 3.5vw, 52px); font-weight: 700;
  letter-spacing: -.025em; line-height: 1.08; margin-bottom: 24px;
}
.svc-overview-left h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--purple-lt); }
.svc-overview-left p { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
.svc-overview-left .label { margin-bottom: 24px; }
.svc-checklist { list-style: none; margin-top: 32px; display: flex; flex-direction: column; gap: 0; }
.svc-checklist li {
  font-size: 14px; color: var(--text-mid);
  padding: 14px 0; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
}
.svc-checklist li:last-child { border-bottom: 1px solid var(--border); }
.svc-checklist li::before { content: '✓'; color: var(--purple-lt); font-weight: 600; font-size: 13px; flex-shrink: 0; }
.svc-overview-right img {
  width: 100%; border-radius: 12px;
  filter: brightness(.8) saturate(.9);
}
.svc-overview-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; margin-top: 40px; }
.svc-ov-stat { background: var(--card); padding: 28px 24px; }
.svc-ov-stat .ov-val { font-size: 40px; font-weight: 700; letter-spacing: -.03em; line-height: 1; color: var(--white); }
.svc-ov-stat .ov-val em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--purple-lt); }
.svc-ov-stat .ov-lbl { font-size: 12px; color: var(--text-dim); margin-top: 8px; line-height: 1.4; }

/* ─── SERVICE PROCESS ────────────────────────────────────── */
.svc-process { background: var(--black); position: relative; z-index: 1; transform: translateZ(0); }
.svc-process-top { margin-bottom: 56px; }
.svc-process-top h2 { font-size: clamp(32px, 3.5vw, 52px); font-weight: 700; letter-spacing: -.025em; line-height: 1.08; }
.svc-process-top h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--purple-lt); }
.svc-process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); border-radius: var(--radius); overflow: hidden; }
.svc-process-step { background: var(--card); padding: 36px 28px; position: relative; }
.svc-process-step:hover { background: #181820; }
.svc-p-n {
  font-size: 72px; font-weight: 700; line-height: .9;
  color: rgba(255,255,255,.04);
  position: absolute; bottom: 12px; right: 16px;
  font-family: 'Instrument Serif', serif; font-style: italic;
  pointer-events: none; user-select: none;
}
.svc-p-label { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--purple-lt); margin-bottom: 16px; }
.svc-process-step h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; letter-spacing: -.01em; }
.svc-process-step p { font-size: 13px; color: var(--text-dim); line-height: 1.65; }

/* ─── SERVICE TESTIMONIAL ────────────────────────────────── */
.svc-testimonial { background: var(--cream); position: relative; z-index: 1; }
.svc-t-inner { max-width: 860px; }
.svc-t-inner .label { color: var(--purple); margin-bottom: 48px; }
.svc-t-inner .label::before { background: var(--purple); }
.svc-t-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* reuse .t-card from shared */

/* ─── HOMEPAGE SPECIFIC ──────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
  isolation: isolate; transform: translateZ(0);
}
.hero-left {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 160px 64px 80px 48px;
  position: relative; z-index: 2; background: var(--black);
}
.hero-right { position: relative; overflow: hidden; }
.hero-right img,
.hero-right video {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: brightness(.7) saturate(.9);
}
.hero-right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, var(--black) 0%, transparent 30%),
              linear-gradient(to top, rgba(8,8,9,.5) 0%, transparent 40%);
}
.hero-eyebrow { margin-bottom: 36px; }
.hero-h1 {
  font-size: clamp(52px, 5.5vw, 84px);
  font-weight: 700; line-height: 1.04;
  letter-spacing: -.025em; margin-bottom: 32px;
}
.hero-h1 .italic { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--purple-lt); }
.hero-p { font-size: 17px; font-weight: 300; color: var(--text-mid); line-height: 1.7; max-width: 440px; margin-bottom: 44px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats { margin-top: 72px; padding-top: 40px; border-top: 1px solid var(--border); display: flex; gap: 48px; }
.hero-stat .val { font-size: 36px; font-weight: 700; color: var(--white); letter-spacing: -.02em; line-height: 1; }
.hero-stat .val em { font-family: 'Instrument Serif', serif; font-style: italic; color: var(--purple-lt); }
.hero-stat .lbl { font-size: 12px; color: var(--text-dim); margin-top: 6px; font-weight: 400; }

#marquee, #intro, #services, #results, #why, #process, #testimonials, #clients {
  position: relative; z-index: 1; transform: translateZ(0);
}
#marquee { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--dark); overflow: hidden; padding: 16px 0; }
.marquee-track { display: flex; animation: ticker 30s linear infinite; white-space: nowrap; }
.marquee-track:hover { animation-play-state: paused; }
.m-item { display: inline-flex; align-items: center; gap: 40px; padding: 0 40px; flex-shrink: 0; font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); }
.m-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--purple); flex-shrink: 0; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

#intro { background: var(--cream); }
#intro .wrap { max-width: 1080px; }
.intro-label { color: var(--purple); margin-bottom: 40px; }
.intro-label::before { background: var(--purple); }
.intro-h2 { font-size: clamp(28px, 3.5vw, 52px); font-weight: 400; line-height: 1.3; color: #111; letter-spacing: -.015em; }
.intro-h2 strong { font-weight: 700; color: #0a0a0a; }
.intro-h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--purple); }
.intro-bottom { margin-top: 64px; padding-top: 48px; border-top: 1px solid rgba(0,0,0,.1); display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.intro-stat .num { font-size: 56px; font-weight: 700; letter-spacing: -.03em; line-height: 1; color: #0a0a0a; }
.intro-stat .num span { color: var(--purple); }
.intro-stat .desc { font-size: 14px; color: #666; margin-top: 10px; line-height: 1.5; }

#services { background: var(--black); }
.services-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 64px; }
.services-top h2 { font-size: clamp(36px, 4vw, 60px); font-weight: 700; letter-spacing: -.025em; line-height: 1.05; max-width: 480px; }
.services-top h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--purple-lt); }
.services-top p { font-size: 15px; color: var(--text-dim); max-width: 300px; text-align: right; line-height: 1.65; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border-radius: var(--radius); overflow: hidden; }
.svc-card { background: var(--card); padding: 40px 36px 44px; transition: background .3s; position: relative; overflow: hidden; cursor: pointer; }
.svc-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--purple); transform: scaleX(0); transform-origin: left; transition: transform .4s ease; }
.svc-card:hover { background: #1a1a1e; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-img { width: 100%; height: 160px; object-fit: cover; border-radius: 4px; margin-bottom: 28px; filter: brightness(.85) saturate(.9); transition: filter .3s; }
.svc-card:hover .svc-img { filter: brightness(1) saturate(1); }
.svc-num { font-size: 11px; font-weight: 500; letter-spacing: .1em; color: var(--purple-lt); margin-bottom: 14px; text-transform: uppercase; }
.svc-title { font-size: 20px; font-weight: 600; margin-bottom: 12px; letter-spacing: -.01em; }
.svc-desc { font-size: 14px; color: var(--text-dim); line-height: 1.65; margin-bottom: 20px; }
.svc-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-pill { font-size: 11px; font-weight: 500; color: var(--text-dim); border: 1px solid var(--border); padding: 3px 10px; border-radius: 100px; transition: all .2s; }
.svc-card:hover .svc-pill { border-color: rgba(124,58,237,.3); color: var(--purple-lt); }
.svc-card-link { display: block; margin-top: 20px; font-size: 12px; font-weight: 600; color: var(--purple-lt); letter-spacing: .04em; text-transform: uppercase; transition: color .2s; }
.svc-card-link:hover { color: var(--white); }

#results { background: var(--cream); }
.results-label { color: var(--purple); margin-bottom: 48px; }
.results-label::before { background: var(--purple); }
.results-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(0,0,0,.1); border-radius: var(--radius); overflow: hidden; }
.r-cell { background: var(--cream); padding: 48px 36px; }
.r-cell:first-child { background: var(--purple); }
.r-cell:first-child .r-num, .r-cell:first-child .r-label { color: #fff; }
.r-num { font-size: clamp(48px, 5vw, 72px); font-weight: 700; letter-spacing: -.03em; line-height: 1; color: #0a0a0a; }
.r-num span { font-family: 'Instrument Serif', serif; font-style: italic; color: inherit; }
.r-label { font-size: 14px; color: #555; margin-top: 12px; line-height: 1.5; }
.r-cell:first-child .r-label { color: rgba(255,255,255,.8); }

#why { background: var(--dark); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left h2 { font-size: clamp(36px, 4vw, 58px); font-weight: 700; letter-spacing: -.025em; line-height: 1.05; margin-bottom: 24px; }
.why-left h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--purple-lt); }
.why-left p { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
.why-points { margin-top: 40px; display: flex; flex-direction: column; }
.why-pt { padding: 20px 0; border-top: 1px solid var(--border); display: flex; gap: 18px; align-items: flex-start; }
.why-pt:last-child { border-bottom: 1px solid var(--border); }
.why-pt-icon { font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.why-pt-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.why-pt-text p { font-size: 13px; color: var(--text-dim); line-height: 1.6; }
.why-right { position: relative; }
.why-right-img { width: 100%; height: 560px; object-fit: cover; border-radius: 12px; filter: brightness(.75) saturate(.85); }
.why-quote { position: absolute; bottom: -24px; left: -24px; right: 40px; background: var(--black); border: 1px solid var(--border); border-radius: 10px; padding: 28px 32px; }
.why-quote blockquote { font-size: 15px; line-height: 1.65; color: var(--text-mid); font-style: italic; margin-bottom: 16px; }
.why-quote .att { font-size: 12px; font-weight: 600; color: var(--purple-lt); letter-spacing: .06em; text-transform: uppercase; }

#process { background: var(--black); }
.process-top { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 64px; }
.process-top h2 { font-size: clamp(36px, 4vw, 56px); font-weight: 700; letter-spacing: -.025em; line-height: 1.05; }
.process-top h2 em { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; color: var(--purple-lt); }
.process-top .btn { flex-shrink: 0; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); border-radius: var(--radius); overflow: hidden; }
.p-step { background: var(--card); padding: 40px 32px; position: relative; }
.p-step:hover { background: #181820; }
.p-n { font-size: 80px; font-weight: 700; letter-spacing: -.04em; line-height: .9; color: rgba(255,255,255,.04); position: absolute; bottom: 16px; right: 20px; font-family: 'Instrument Serif', serif; font-style: italic; user-select: none; pointer-events: none; }
.p-step-label { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--purple-lt); margin-bottom: 20px; }
.p-step h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; letter-spacing: -.01em; }
.p-step p { font-size: 14px; color: var(--text-dim); line-height: 1.65; }

#testimonials { background: var(--cream); }
.t-label { color: var(--purple); margin-bottom: 56px; }
.t-label::before { background: var(--purple); }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.t-card { background: #fff; border-radius: 12px; padding: 36px 32px; box-shadow: 0 2px 16px rgba(0,0,0,.06); transition: box-shadow .3s, transform .3s; }
.t-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.12); transform: translateY(-4px); }
.t-stars { color: var(--purple); font-size: 14px; letter-spacing: 3px; margin-bottom: 20px; }
.t-text { font-size: 15px; line-height: 1.72; color: #333; margin-bottom: 28px; }
.t-divider { width: 28px; height: 2px; background: var(--purple); margin-bottom: 20px; border-radius: 1px; }
.t-name { font-size: 14px; font-weight: 600; color: #0a0a0a; }
.t-role { font-size: 12px; color: #888; margin-top: 3px; }
.t-rev { display: inline-block; margin-top: 10px; font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--purple); background: rgba(124,58,237,.07); border-radius: 100px; padding: 3px 10px; }

#clients { background: var(--dark); padding: 60px 0; }
.clients-inner { display: flex; align-items: center; gap: 64px; flex-wrap: wrap; }
.clients-lbl { font-size: 11px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--text-dim); white-space: nowrap; flex-shrink: 0; }
.clients-logos { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; flex: 1; }
.clients-logos img { height: 28px; width: auto; max-width: 120px; object-fit: contain; filter: brightness(0) invert(1); opacity: .2; transition: opacity .25s; }
.clients-logos img:hover { opacity: .55; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  #hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 140px 48px 80px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .why-right-img { height: 420px; }
  .why-quote { position: static; margin-top: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .svc-hero-grid { grid-template-columns: 1fr; }
  .svc-hero-right { display: none; }
  .svc-overview-grid { grid-template-columns: 1fr; }
  .svc-features-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-process-steps { grid-template-columns: repeat(2, 1fr); }
  .svc-t-grid { grid-template-columns: 1fr; max-width: 480px; }
}
@media (max-width: 768px) {
  .wrap { padding: 0 20px; }
  nav { padding: 14px 20px; background: rgba(8,8,9,.97); backdrop-filter: blur(20px); }
  nav.scrolled { padding: 14px 20px; }
  .nav-links, nav > .btn { display: none; }
  .hamburger { display: flex; }
  #hero { min-height: 100svh; }
  .hero-left { padding: 100px 20px 60px; }
  .hero-stats { gap: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .intro-bottom { grid-template-columns: 1fr; gap: 32px; }
  .results-row { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .t-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .services-top { flex-direction: column; align-items: flex-start; }
  .services-top p { text-align: left; }
  .process-top { flex-direction: column; align-items: flex-start; }
  .mob-menu { padding: 0 24px; }
  .mob-close { right: 24px; }
  .svc-hero-left { padding: 40px 0 60px; }
  .svc-features-grid { grid-template-columns: 1fr; }
  .svc-process-steps { grid-template-columns: 1fr; }
  .svc-overview-stats { grid-template-columns: repeat(2, 1fr); }
  .svc-hero-stats { gap: 28px; flex-wrap: wrap; }
}

/* ─── WORK / PORTFOLIO PAGE ─────────────────────────────── */
.work-hero { padding: 160px 0 80px; text-align: center; background: var(--black); }
.work-hero h1 { font-size: clamp(64px, 10vw, 120px); font-weight: 800; letter-spacing: -.04em; color: var(--white); line-height: .9; }
.work-hero p { font-size: 18px; color: var(--text-mid); margin-top: 24px; }
.work-filters { display: flex; justify-content: center; gap: 12px; padding: 48px 0 40px; background: var(--black); flex-wrap: wrap; }
.work-filter-btn { padding: 10px 28px; border-radius: 100px; border: 1px solid var(--border); background: transparent; color: var(--text-mid); font-size: 13px; font-weight: 500; cursor: pointer; transition: all .2s; letter-spacing: .06em; text-transform: uppercase; font-family: 'DM Sans', sans-serif; }
.work-filter-btn.active, .work-filter-btn:hover { background: var(--purple); border-color: var(--purple); color: #fff; }
.work-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; padding: 40px 48px 120px; background: var(--black); max-width: 1400px; margin: 0 auto; }
@media(max-width:1024px){ .work-grid { grid-template-columns: repeat(3,1fr); padding: 0 24px 80px; } }
@media(max-width:640px){ .work-grid { grid-template-columns: repeat(2,1fr); gap: 8px; padding: 0 16px 60px; } }
.work-card { position: relative; cursor: pointer; border-radius: 12px; overflow: hidden; background: var(--dark); transition: transform .3s; }
.work-card:hover { transform: scale(1.02); }
.work-video-wrap { position: relative; aspect-ratio: 9/16; overflow: hidden; }
.work-video-wrap video { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-card-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); display: flex; align-items: center; justify-content: center; transition: opacity .3s; }
.work-card:hover .work-card-overlay { opacity: 0; }
.play-btn { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.15); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.3); color: white; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.work-card-info { padding: 12px 14px; }
.work-card-label { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--text-dim); }
.work-card.hidden { display: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 9999; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 400px; width: 90vw; }
.lightbox-inner video { width: 100%; border-radius: 16px; max-height: 85vh; }
.lightbox-close { position: absolute; top: -48px; right: 0; background: none; border: none; color: white; font-size: 32px; cursor: pointer; }

/* Work preview on homepage */
#work-preview { background: var(--dark); }
.work-preview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.work-preview-videos { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.work-preview-vid { aspect-ratio: 9/16; border-radius: 12px; overflow: hidden; transition: transform .3s; }
.work-preview-vid:hover { transform: scale(1.03); }
.work-preview-vid video { width: 100%; height: 100%; object-fit: cover; }
@media(max-width:1100px) { .work-preview-grid { grid-template-columns: 1fr; gap: 48px; } }
@media(max-width:640px) { .work-preview-videos { grid-template-columns: 1fr 1fr; } }

/* Content Production hero grid — custom 2-col layout */
.cp-hero-grid { grid-template-columns: 1fr auto; gap: 80px; align-items: center; }
@media (max-width: 768px) {
  .cp-hero-grid { grid-template-columns: 1fr; }
}

/* Content Production video hero */
.cp-hero-video { aspect-ratio: 9/16; max-width: 380px; width: 100%; border-radius: 16px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,.5); flex-shrink: 0; }
.cp-hero-video video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Video showcase scroll row */
.vid-scroll-row { display: flex; gap: 16px; overflow-x: auto; padding: 8px 0 24px; scrollbar-width: thin; scrollbar-color: var(--purple) transparent; }
.vid-scroll-row::-webkit-scrollbar { height: 4px; }
.vid-scroll-row::-webkit-scrollbar-track { background: transparent; }
.vid-scroll-row::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 2px; }
.vid-scroll-item { flex-shrink: 0; width: 220px; aspect-ratio: 9/16; border-radius: 12px; overflow: hidden; transition: transform .3s; }
.vid-scroll-item:hover { transform: translateY(-6px); }
.vid-scroll-item video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── VIDEO REEL SECTION ─────────────────────────────────── */
.vid-reel-section {
  background: var(--black);
  padding: 100px 0 100px;
  overflow: hidden;
  position: relative; z-index: 1; transform: translateZ(0);
}
.vid-reel-header {
  text-align: center;
  margin-bottom: 56px;
}
.vid-reel-title {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}
.vid-reel-title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--purple-lt);
}
.vid-reel-sub {
  font-size: 16px;
  color: var(--text-mid);
}
.vid-reel-track-wrap {
  overflow: hidden;
  margin-bottom: 16px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.vid-reel-track {
  display: flex;
  gap: 12px;
  width: max-content;
}
.vid-reel-track.scroll-left {
  animation: reel-left 40s linear infinite;
}
.vid-reel-track.scroll-right {
  animation: reel-right 40s linear infinite;
}
.vid-reel-track:hover {
  animation-play-state: paused;
}
@keyframes reel-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes reel-right {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.vid-reel-item {
  flex-shrink: 0;
  width: 180px;
  aspect-ratio: 9/16;
  border-radius: 14px;
  overflow: hidden;
  background: var(--dark);
  transition: transform .3s, box-shadow .3s;
  cursor: pointer;
}
.vid-reel-item:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 24px 60px rgba(139,92,246,.35);
  z-index: 2;
  position: relative;
}
.vid-reel-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ─── QUALITY POLISH — Section F: Typography & Spacing ──── */

/* Body line-height tightening (headings already use line-height in place) */
body { line-height: 1.7; }

/* Label spacing */
.label { margin-bottom: 24px; }

/* h2 section margin */
.section h2 { margin-bottom: 20px; }

/* Scroll margin for anchor nav */
#services, #results, #why, #process, #testimonials, #cta, #work-preview, #intro {
  scroll-margin-top: 80px;
}

/* Section base padding confirmed at 120px */
.section { padding: 120px 0; }

/* ─── QUALITY POLISH — Section B3: Service Cards ──────── */
.svc-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.svc-card-link {
  margin-top: auto;
}

/* ─── QUALITY POLISH — Section B4: Results cells ─────── */
.r-cell:not(:first-child) {
  border: 1px solid rgba(255,255,255,.06);
}
/* Equal height results row */
.results-row { align-items: stretch; }
.r-cell { display: flex; flex-direction: column; justify-content: center; }

/* ─── QUALITY POLISH — Section B6: Testimonials ─────── */
.t-grid { align-items: stretch; }
.t-card {
  display: flex;
  flex-direction: column;
}
.t-text { flex: 1; }

/* ─── QUALITY POLISH — Section B7: Work preview hover ── */
.work-preview-vid:hover {
  box-shadow: 0 8px 40px rgba(124,58,237,.25);
}
#work-preview {
  border-top: 1px solid var(--border);
}
.work-preview-label {
  color: var(--purple-lt);
  font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
}

/* ─── QUALITY POLISH — Section D: Work page ─────────── */
.work-hero h1 {
  font-size: clamp(72px, 12vw, 140px);
}
.work-filters {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.lightbox-close {
  font-size: 36px;
  line-height: 1;
}

/* ─── QUALITY POLISH — Section C: Content Production ── */
.cp-hero-video {
  border-radius: 20px;
  box-shadow: 0 40px 100px rgba(139,92,246,.3);
  border: 1px solid rgba(139,92,246,.2);
}
.cta-fine {
  margin-top: 28px;
  text-align: center;
}

/* ─── QUALITY POLISH — Section E: Service feature cards  */
.svc-features-grid > * {
  height: 100%;
}
.svc-feat {
  border: 1px solid rgba(255,255,255,.06);
}
/* Service checklist */
.svc-checklist li {
  padding: 14px 0;
  border-top: 1px solid var(--border);
}
.svc-checklist li::before {
  color: var(--purple-lt);
}

/* ─── QUALITY POLISH — Section A: Mobile Responsiveness  */
@media (max-width: 768px) {
  /* Section padding tablet */
  .section { padding: 60px 0; }

  /* Hero mobile */
  .hero-left { padding: 40px 24px 60px; }
  .hero-h1 { font-size: clamp(40px, 9vw, 64px); }
  .hero-actions { flex-wrap: wrap; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }

  /* Service hero mobile */
  .svc-hero-grid { grid-template-columns: 1fr; }
  .svc-hero-right { height: 260px; min-height: unset; display: block; }
  .svc-hero-right img { min-height: 260px; }
  .yt-thumb { min-height: 260px; }
  .yt-thumb img { min-height: 260px; }
  .svc-hero-left { padding: 40px 0 60px; }
  .svc-hero-actions { flex-wrap: wrap; }

  /* Work preview single col */
  .work-preview-grid { grid-template-columns: 1fr; gap: 48px; }

  /* Footer single col, centered brand */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { text-align: center; }
  .footer-brand img { margin: 0 auto 18px; }

  /* Marquee text size */
  .m-item { font-size: 13px; }

  /* Video reel items narrower + disable tap-to-pause */
  .vid-reel-item { width: 130px; }
  .vid-reel-item video,
  .work-preview-vid video { pointer-events: none; touch-action: pan-y; }

  /* Work grid gap */
  .work-grid { gap: 8px; }
}

@media (max-width: 480px) {
  /* Section padding mobile */
  .section { padding: 48px 0; }

  /* Wrap padding */
  .wrap { padding: 0 16px; }

  /* Hero */
  .hero-left { padding: 100px 16px 48px; }

  /* CTA inner padding */
  .cta-inner { padding: 0 24px; }
}

/* Desktop section padding reset (override mobile above) */
@media (min-width: 769px) {
  .section { padding: 120px 0; }
}

/* Tablet section padding */
@media (max-width: 768px) and (min-width: 481px) {
  .section { padding: 60px 0; }
}
