/* ── Utility ─────────────────────────────────────────────── */
.hidden { display: none !important; }

/* ── Variables ───────────────────────────────────────────── */
:root {
  --bg:     #EEEBE3;
  --bg2:    #E3DFCF;
  --bg3:    #D8D4C2;
  --text:   #1A1A1A;
  --t2:     #5C5850;
  --t3:     #9C9890;
  --accent: #FFE000;
  --border:  rgba(26,26,26,0.12);
  --border2: rgba(26,26,26,0.24);
  --fd: 'Oswald', sans-serif;
  --fm: 'IBM Plex Mono', monospace;
  --fb: 'Inter', sans-serif;
  --cw:   1100px;
  --r:    4px;
  --rsm:  2px;
  --rcard:4px;
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--fb);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
a, button, input, textarea, select, label { cursor: none; }
@media (hover: none) { body, a, button, input, textarea, select, label { cursor: auto; } }
a { color: inherit; text-decoration: none; }
button { border: none; background: none; font-family: inherit; }
img { display: block; max-width: 100%; }

/* ── Containers ──────────────────────────────────────────── */
.container       { max-width: var(--cw); margin: 0 auto; padding: 0 40px; }
.container-wide  { max-width: 1280px;    margin: 0 auto; padding: 0 40px; }

/* ── Scroll Scrubber ─────────────────────────────────────── */
#scrubber {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: var(--accent);
  z-index: 99998;
  width: 0%;
  pointer-events: none;
  will-change: width;
  transition: width 0.05s linear;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fm);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 12px 22px;
  border-radius: 0;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--text);
  border: 1px solid var(--accent);
}
.btn-primary:hover {
  background: var(--text);
  border-color: var(--text);
  color: var(--accent);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
}
.btn-ghost:hover { border-color: var(--text); }
.btn-sm   { padding: 8px 14px; font-size: 10px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 56px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--fm);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-accent { color: var(--accent); background: var(--text); padding: 1px 3px; }
.nav-right  { display: flex; align-items: center; gap: 28px; }
.nav-link {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t2);
  transition: color 0.15s;
}
.nav-link:hover { color: var(--text); }

/* ── TC Label (section timecodes) ────────────────────────── */
.tc-label {
  font-family: var(--fm);
  font-size: 10px;
  color: var(--t3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tc-label::after {
  content: '';
  display: block;
  height: 1px;
  width: 32px;
  background: var(--border2);
  flex-shrink: 0;
}

/* ── Section header ──────────────────────────────────────── */
.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}
.section-title {
  font-family: var(--fd);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: uppercase;
}
.section-hint {
  font-family: var(--fm);
  font-size: 10px;
  color: var(--t2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 56px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: center;
  padding: 60px 40px;
  max-width: var(--cw);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t2);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 0.5s ease 0.2s forwards;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  outline: 2px solid rgba(255,224,0,0.3);
  flex-shrink: 0;
  animation: pulse 2.5s ease infinite;
}
@keyframes pulse {
  0%,100% { outline-color: rgba(255,224,0,0.3); }
  50%      { outline-color: rgba(255,224,0,0.7); }
}

.hero-title {
  font-family: var(--fd);
  font-size: clamp(90px, 15vw, 210px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 0.87;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.16,1,0.3,1) 0.3s forwards;
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 300;
  color: var(--t2);
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.6s ease 0.55s forwards;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 36px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.5s ease 0.7s forwards;
}
.ms { color: var(--border2); }

.hero-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.5s ease 0.85s forwards;
}

/* Hero right — film clips */
.hero-clips {
  display: flex;
  gap: 8px;
  height: 58vh;
  min-height: 360px;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.5s forwards;
}
.clip {
  flex: 1;
  border-radius: var(--rcard);
  position: relative;
  overflow: hidden;
}
.clip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg, transparent 0, transparent 2px,
    rgba(255,255,255,0.03) 2px, rgba(255,255,255,0.03) 3px
  );
  pointer-events: none;
  z-index: 2;
}
.clip::after {
  content: attr(data-tc);
  position: absolute;
  bottom: 10px; left: 10px;
  font-family: var(--fm);
  font-size: 9px;
  color: rgba(255,224,0,0.55);
  letter-spacing: 0.06em;
  z-index: 3;
}
.clip-a {
  flex: 1.15;
  background: linear-gradient(160deg, #2a261e 0%, #1a1a14 60%, #111 100%);
}
.clip-b {
  background: linear-gradient(160deg, #1e1e28 0%, #14141e 60%, #0e0e16 100%);
  border: 1px solid rgba(255,224,0,0.18);
}
.clip-c {
  flex: 0.85;
  background: linear-gradient(160deg, #241e1e 0%, #1a1412 60%, #121010 100%);
}

/* Hero bottom bar */
.hero-bottom-bar {
  border-top: 1px solid var(--border);
  padding: 12px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t3);
  gap: 16px;
}
.hb-strong { color: var(--text); font-weight: 500; }

/* ── Stats bar ───────────────────────────────────────────── */
.stats-bar {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 22px 0;
}
.stats-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 6px 48px;
}
.stat-number {
  font-family: var(--fd);
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.stat-label {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--t2);
}
.stat-sep {
  width: 1px;
  height: 36px;
  background: var(--border2);
  flex-shrink: 0;
}

/* ── Portfolio ───────────────────────────────────────────── */
.portfolio {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.filter-tabs {
  display: flex;
  border: 1px solid var(--border2);
  align-self: flex-start;
  border-radius: 0;
  overflow: hidden;
}
.filter-tab {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  color: var(--t2);
  border-right: 1px solid var(--border2);
  transition: background 0.15s, color 0.15s;
}
.filter-tab:last-child { border-right: none; }
.filter-tab:hover  { background: var(--bg2); color: var(--text); }
.filter-tab.active { background: var(--text); color: var(--bg); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

/* Film-clip card */
.portfolio-card {
  position: relative;
  aspect-ratio: 9/16;
  background: var(--bg2);
  border-radius: var(--rcard);
  overflow: hidden;
  cursor: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.15s;
  border: 1px solid var(--border);
}
.portfolio-card.visible { opacity: 1; transform: translateY(0); }
.portfolio-card:hover { box-shadow: 0 0 0 2px var(--accent); }

.card-num {
  position: absolute;
  top: 10px; left: 10px;
  font-family: var(--fm);
  font-size: 9px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  background: rgba(0,0,0,0.5);
  padding: 2px 6px;
  z-index: 3;
}

.card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .card-img { transform: scale(1.04); }

.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
}
.portfolio-card:hover .card-overlay { opacity: 1; }

.card-play {
  width: 44px; height: 44px;
  background: var(--accent);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transform: scale(0.85);
  transition: transform 0.2s;
  border-radius: 2px;
}
.portfolio-card:hover .card-play { transform: scale(1); }

.card-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 10px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,0.78));
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.card-client {
  font-family: var(--fm);
  font-size: 10px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}
.card-views {
  font-family: var(--fm);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.card-tag {
  position: absolute;
  top: 10px; right: 10px;
  font-family: var(--fm);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: var(--accent);
  padding: 2px 6px;
  z-index: 3;
}

/* ── TikTok-style Reel Viewer (stays dark) ───────────────── */
.reel-viewer {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(5,5,5,0.98);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.reel-viewer.open { opacity: 1; pointer-events: auto; }

.reel-close {
  position: absolute;
  top: 20px; right: 24px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 10;
}
.reel-close:hover { background: rgba(255,255,255,0.14); color: #fff; }

.reel-counter {
  position: absolute;
  top: 28px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--fm);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  pointer-events: none;
}

.reel-stage { display: flex; align-items: center; gap: 20px; }

.reel-phone {
  height: 85vh;
  aspect-ratio: 9/16;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  box-shadow: 0 0 60px rgba(255,224,0,0.05);
}
.reel-phone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 36px; height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  z-index: 4;
  pointer-events: none;
}
.reel-track { position: absolute; inset: 0; overflow: hidden; }
.reel-slide { position: absolute; inset: 0; will-change: transform; }
.reel-slide iframe { width: 100%; height: 100%; border: none; }

.reel-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 60px 16px 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.82));
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 3;
}
.reel-info-views  { font-family: var(--fm); font-size: 10px; color: rgba(255,255,255,0.5); }
.reel-info-client { font-family: var(--fm); font-size: 13px; font-weight: 500; color: #fff; letter-spacing: 0.03em; }
.reel-info-tag {
  font-family: var(--fm);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text);
  background: var(--accent);
  padding: 2px 7px;
  width: fit-content;
}

.reel-nav-col { display: flex; flex-direction: column; gap: 10px; }
.reel-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
  backdrop-filter: blur(4px);
}
.reel-nav-btn:hover:not(:disabled) { background: rgba(255,255,255,0.15); color: #fff; }
.reel-nav-btn:disabled { opacity: 0.2; cursor: none; }

.reel-swipe-hint {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.45);
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  pointer-events: none;
  transition: opacity 0.5s;
}
.reel-swipe-hint.hidden { opacity: 0; }

/* ── Showreel ────────────────────────────────────────────── */
.showreel {
  padding: 80px 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.showreel-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--text);
  border-radius: var(--rcard);
  overflow: hidden;
  border: 1px solid var(--border2);
}
.showreel-frame iframe { width: 100%; height: 100%; border: none; }
.showreel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(26,26,26,0.5);
  transition: opacity 0.3s;
}
.showreel-play {
  width: 60px; height: 60px;
  background: var(--accent);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px;
  transition: transform 0.2s, box-shadow 0.25s;
}
.showreel-play:hover {
  transform: scale(1.08);
  box-shadow: 0 0 32px rgba(255,224,0,0.55);
}
.showreel-hint {
  font-family: var(--fm);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(238,235,227,0.65);
}

/* ── Process ─────────────────────────────────────────────── */
.process {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 24px;
  align-items: start;
}
.process-step {
  border-top: 3px solid var(--accent);
  padding: 24px 0 0;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.process-step.visible { opacity: 1; transform: translateY(0); }
.track-id {
  font-family: var(--fm);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: 14px;
}
.step-title {
  font-family: var(--fd);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step-desc { font-size: 14px; color: var(--t2); line-height: 1.7; }

.process-arrow {
  font-family: var(--fm);
  font-size: 13px;
  color: var(--t3);
  padding-top: 28px;
  align-self: start;
  opacity: 0;
  transition: opacity 0.5s ease 0.3s;
}
.process-arrow.visible { opacity: 1; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials {
  padding: 80px 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.testi-card {
  border-left: 3px solid var(--accent);
  padding: 0 0 0 24px;
  background: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.testi-card.visible { opacity: 1; transform: translateY(0); }
.testi-text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--av, var(--text));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--fm);
  font-size: 13px; font-weight: 500;
  color: var(--bg);
  flex-shrink: 0;
}
.testi-info { display: flex; flex-direction: column; gap: 2px; }
.testi-name   { font-family: var(--fm); font-size: 11px; font-weight: 500; letter-spacing: 0.04em; }
.testi-handle { font-family: var(--fm); font-size: 10px; color: var(--t2); letter-spacing: 0.03em; }

/* ── Pricing ─────────────────────────────────────────────── */
.pricing {
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 32px;
  align-items: stretch;
}
.pricing-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rcard);
  padding: 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover { border-color: var(--border2); transform: translateY(-3px); }

/* Featured card: inverted — dark on light page = clip in "selected" state */
.pricing-card.featured {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
}
.pricing-card.featured:hover { border-color: var(--accent); transform: translateY(-5px); }

.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--text);
  font-family: var(--fm);
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: var(--fm);
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--t2);
  margin-bottom: 10px;
}
.pricing-card.featured .pricing-tier { color: rgba(238,235,227,0.45); }

.pricing-price-row { display: flex; align-items: baseline; gap: 3px; flex-wrap: wrap; }
.pricing-from { font-family: var(--fm); font-size: 12px; color: var(--t2); }
.pricing-card.featured .pricing-from { color: rgba(238,235,227,0.45); }

.pricing-price {
  font-family: var(--fd);
  font-size: 48px; font-weight: 700;
  line-height: 1; letter-spacing: -0.03em;
  color: var(--text);
}
.pricing-card.featured .pricing-price { color: var(--bg); }

.pricing-cur { font-family: var(--fm); font-size: 18px; color: var(--t2); }
.pricing-card.featured .pricing-cur { color: rgba(238,235,227,0.45); }
.pricing-unit { font-family: var(--fm); font-size: 11px; color: var(--t2); }
.pricing-card.featured .pricing-unit { color: rgba(238,235,227,0.45); }

.pricing-divider { height: 1px; background: var(--border); flex-shrink: 0; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.1); }

.pricing-features {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 8px; flex: 1;
}
.pricing-features li {
  display: flex; align-items: flex-start;
  gap: 10px; font-size: 13px;
  color: var(--t2); line-height: 1.4;
}
.pricing-card.featured .pricing-features li { color: rgba(238,235,227,0.72); }
.pricing-features li::before {
  content: '—';
  color: var(--accent);
  font-family: var(--fm);
  font-weight: 700; font-size: 11px;
  flex-shrink: 0; margin-top: 2px;
}
.pricing-cta { margin-top: auto; padding-top: 4px; }
.pricing-card.featured .btn-primary { background: var(--accent); color: var(--text); border-color: var(--accent); }
.pricing-card.featured .btn-ghost {
  border-color: rgba(255,255,255,0.2);
  color: var(--bg);
}
.pricing-card.featured .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.pricing-pkg-header { margin-bottom: 14px; }
.pricing-pkg-title {
  font-family: var(--fd);
  font-size: 22px; font-weight: 700;
  text-transform: uppercase; letter-spacing: -0.01em;
}
.pricing-pkg-sub {
  font-family: var(--fm);
  font-size: 10px; color: var(--t2);
  letter-spacing: 0.07em; text-transform: uppercase;
  margin-top: 4px;
}
.pricing-packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pkg-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--rcard);
  padding: 18px 20px;
  display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  transition: border-color 0.15s, transform 0.15s;
}
.pkg-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.pkg-count {
  font-family: var(--fd);
  font-size: 26px; font-weight: 700;
  color: var(--text); letter-spacing: -0.02em; line-height: 1;
}
.pkg-videos {
  font-family: var(--fm);
  font-size: 10px; color: var(--t2);
  letter-spacing: 0.06em; text-transform: uppercase; margin-top: 3px;
}
.pkg-right { text-align: right; }
.pkg-price {
  font-family: var(--fd);
  font-size: 20px; font-weight: 700;
  color: var(--text); letter-spacing: -0.02em;
}
.pkg-save {
  font-family: var(--fm);
  font-size: 10px; color: var(--t2);
  letter-spacing: 0.04em; display: block; margin-top: 2px;
}
.pkg-card:hover .pkg-save { color: var(--text); }

/* ── Contact ─────────────────────────────────────────────── */
.contact { padding: 80px 0 100px; }
.contact-inner { max-width: 600px; margin: 0 auto; }
.contact-sub {
  font-family: var(--fm);
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--t2); margin: 10px 0 32px;
}
.contact-form { display: flex; flex-direction: column; gap: 10px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.form-input {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border2);
  border-radius: var(--rsm);
  color: var(--text);
  font-family: var(--fb);
  font-size: 15px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(255,224,0,0.18); }
.form-input::placeholder { color: var(--t3); }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='7' viewBox='0 0 12 7' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%235C5850' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
textarea.form-input { resize: vertical; min-height: 110px; }
.form-success { text-align: center; padding: 40px; }
.success-icon { font-size: 32px; color: var(--text); margin-bottom: 10px; }
.social-links {
  display: flex; align-items: center; gap: 10px;
  margin-top: 28px; justify-content: center;
}
.social-link {
  font-family: var(--fm); font-size: 10px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--t2); transition: color 0.15s;
}
.social-link:hover { color: var(--text); }
.social-sep { color: var(--border2); font-size: 10px; }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  background: var(--bg2);
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  font-family: var(--fm);
  font-size: 10px; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--t3);
}

/* ── Keyframes ───────────────────────────────────────────── */
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeUp {
  from { opacity:0; transform: translateY(20px); }
  to   { opacity:1; transform: translateY(0); }
}

/* ── Arc-spinner cursor (dark on light bg) ───────────────── */
#apcursor {
  position: fixed;
  top: 0; left: 0;
  width: 0; height: 0;
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.3s;
}
#apcursor svg {
  position: absolute;
  top: -20px; left: -20px;
  overflow: visible;
}
#apcursor circle {
  fill: none;
  stroke: var(--text);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 84.8 28.3;
  transform-box: fill-box;
  transform-origin: center;
  animation: arc-spin 0.9s linear infinite;
  animation-play-state: paused;
  transition: stroke-dasharray 0.28s cubic-bezier(0.4,0,0.2,1),
              fill 0.22s ease,
              stroke-width 0.2s ease;
}
#apcursor.spinning circle { animation-play-state: running; }
#apcursor.on circle {
  stroke-dasharray: 113.1 0;
  fill: var(--accent);
}
#apcursor.click circle {
  stroke-dasharray: 113.1 0;
  fill: var(--text);
  stroke-width: 0;
}
@keyframes arc-spin { to { transform: rotate(360deg); } }
@media (hover: none) { #apcursor { display: none; } }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-clips { display: none; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .testi-grid { grid-template-columns: 1fr; gap: 32px; }
  .process-grid { grid-template-columns: 1fr; gap: 0; }
  .process-arrow { display: none; }
  .stat-item { padding: 6px 24px; }
  .stat-number { font-size: 32px; }
  .reel-nav-col { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-packages { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .container, .container-wide { padding: 0 20px; }
  .nav { padding: 0 20px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .stat-sep { display: none; }
  .hero-bottom-bar { padding: 10px 20px; }
  .reel-phone { height: 82vh; }
}
