/* ============================
   CLIPFORGE — Brand Stylesheet
   Dark cinematic, forge-fire amber
   ============================ */

:root {
  --bg: #0D0D0F;
  --bg-surface: #141416;
  --bg-elevated: #1A1A1E;
  --accent: #FF5C1A;
  --accent-dim: rgba(255, 92, 26, 0.12);
  --accent-glow: rgba(255, 92, 26, 0.06);
  --text: #F2F2F2;
  --text-muted: rgba(242, 242, 242, 0.5);
  --text-dim: rgba(242, 242, 242, 0.25);
  --border: rgba(242, 242, 242, 0.08);
  --border-accent: rgba(255, 92, 26, 0.25);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NAV ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 40px;
  background: rgba(13, 13, 15, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(255,92,26,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242,242,242,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242,242,242,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 20%, transparent 70%);
}
.hero-graphic {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(420px, 45vw);
  opacity: 0.7;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 28px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  padding: 6px 14px;
  border-radius: 100px;
}
.hero-label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  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(3rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 680px;
  margin-bottom: 28px;
}
.hero-headline-accent {
  color: var(--accent);
  display: inline-block;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-proof-stat {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
}
.hero-proof-stat span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.hero-proof-divider {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ── MANIFESTO ── */
.manifesto {
  padding: 80px 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 900px;
  margin: 0 auto;
}
.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  line-height: 1.5;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.manifesto-text strong { color: var(--text); font-weight: 700; }

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 100px 40px;
}
.section-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}
.section-eyebrow {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-body);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  max-width: 600px;
}
.steps-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.step-card {
  background: var(--bg-surface);
  padding: 36px 32px;
  position: relative;
  transition: background 0.3s ease;
}
.step-card:hover { background: var(--bg-elevated); }
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.05em;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.step-body {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
}

/* ── DELIVERABLES ── */
.deliverables {
  padding: 100px 40px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.deliverables-split {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.deliverables-title {
  margin-top: 16px;
  margin-bottom: 16px;
}
.deliverables-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.deliverables-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.deliverable-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  transition: border-color 0.2s ease;
}
.deliverable-item:first-child { border-top: 1px solid var(--border); }
.deliverable-item:hover { border-color: var(--border-accent); }
.deliverable-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.deliverable-item strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  font-family: var(--font-body);
}
.deliverable-item span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── SHOWCASE ── */
.showcase {
  padding: 100px 40px;
  background: var(--bg);
  position: relative;
}
.showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,92,26,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.showcase-card {
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
}
.showcase-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}
.showcase-card:hover .card-glow { opacity: 1; }
.showcase-card:hover .card-play-icon { transform: scale(1.1); }

.card-thumb-wrap {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--bg-elevated);
}
.card-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.showcase-card:hover .card-thumb { transform: scale(1.04); }

.card-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.showcase-card:hover .card-play-icon { opacity: 1; }

.card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,92,26,0.15) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card-meta {
  padding: 16px 18px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.card-vertical-badge {
  flex-shrink: 0;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  padding: 4px 10px;
  font-family: var(--font-body);
  margin-top: 2px;
  white-space: nowrap;
}
.card-info { flex: 1; }
.card-name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.card-result {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Lightbox */
.showcase-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(13,13,15,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.showcase-lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 480px;
  width: 100%;
  background: var(--bg-surface);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  overflow: hidden;
  animation: lbFadeIn 0.25s ease;
}
@keyframes lbFadeIn {
  from { opacity: 0; transform: scale(0.95) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(13,13,15,0.7);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s ease;
}
.lightbox-close:hover { background: rgba(255,92,26,0.2); }
.lb-thumb-wrap {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--bg-elevated);
}
.lb-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lb-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.9;
}
.lb-meta {
  padding: 24px 28px 28px;
}
.lb-badge {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  padding: 4px 10px;
  margin-bottom: 12px;
}
.lb-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.lb-result {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── CLOSING ── */
.closing-section {
  padding: 120px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.closing-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,92,26,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 48px;
  font-weight: 300;
}
.closing-pricing {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  padding: 16px 28px;
  margin-bottom: 16px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.05em;
}
.pricing-detail {
  display: flex;
  flex-direction: column;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: left;
  line-height: 1.4;
}
.closing-cta-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── FOOTER ── */
.site-footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .deliverables-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-graphic { display: none; }
  .hero-headline { font-size: clamp(2.4rem, 10vw, 4rem); }
}
@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .site-nav { padding: 16px 20px; }
  .hero { padding: 100px 20px 60px; }
  .manifesto { padding: 60px 20px; }
  .how-it-works { padding: 60px 20px; }
  .deliverables { padding: 60px 20px; }
  .showcase { padding: 60px 20px; }
  .closing-section { padding: 80px 20px; }
  .site-footer { padding: 40px 20px; }
  .steps-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
}

/* ── HOVER EFFECTS ── */
.deliverable-item strong { transition: color 0.2s ease; }
.deliverable-item:hover strong { color: var(--accent); }
.step-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.step-card:hover::after { transform: scaleX(1); }

/* ── SCROLL ANIMATIONS ── */
@media (prefers-reduced-motion: no-preference) {
  .hero-headline { animation: fadeUp 0.8s ease both; }
  .hero-label { animation: fadeUp 0.8s 0.1s ease both; }
  .hero-sub { animation: fadeUp 0.8s 0.2s ease both; }
  .hero-proof { animation: fadeUp 0.8s 0.3s ease both; }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

/* ── CTA BUTTONS (shared) ── */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}
.cta-btn:hover { opacity: 0.88; transform: translateY(-1px); }
.cta-btn-ghost {
  background: transparent;
  border: 1px solid var(--border-accent);
  color: var(--accent);
}
.cta-btn-ghost:hover { background: var(--accent-dim); }

/* ── PRICING PAGE ── */
.pricing-hero {
  padding: 160px 40px 80px;
  text-align: center;
  position: relative;
}
.pricing-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.pricing-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 24px;
}
.pricing-hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 500px;
  margin: 0 auto;
}

.plans-section {
  padding: 20px 40px 80px;
}
.plans-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.plan-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
  transition: border-color 0.3s ease;
}
.plan-card:hover { border-color: var(--border-accent); }
.plan-card-highlight {
  border-color: var(--border-accent);
  background: var(--bg-elevated);
}
.plan-highlight-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 16px 16px 0 0;
}
.plan-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  padding: 4px 10px;
  margin-bottom: 12px;
  font-family: var(--font-body);
}
.plan-badge-growth {
  color: var(--text);
  background: rgba(242,242,242,0.06);
  border-color: var(--border);
}
.plan-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 4px;
}
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.plan-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.05em;
  line-height: 1;
}
.plan-per {
  font-size: 1rem;
  color: var(--text-muted);
}
.plan-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 32px;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 32px;
}
.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.plan-feature:first-child { border-top: 1px solid var(--border); }
.plan-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.plan-feature strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 2px;
  font-family: var(--font-body);
}
.plan-feature span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  cursor: pointer;
  border: none;
}
.plan-cta:hover { opacity: 0.88; transform: translateY(-1px); }
.plan-cta-primary {
  background: var(--accent);
  color: #fff;
}
.plan-cta-secondary {
  background: rgba(255,92,26,0.15);
  color: var(--accent);
  border: 1px solid var(--border-accent);
}
.plan-fine {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 12px;
}

/* compare section */
.pricing-compare {
  padding: 60px 40px 100px;
  border-top: 1px solid var(--border);
}
.pricing-compare-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.compare-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 40px;
  text-align: center;
}
.compare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.compare-item {
  background: var(--bg-surface);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.2s ease;
}
.compare-item:hover { background: var(--bg-elevated); }
.compare-icon {
  font-size: 1.4rem;
  line-height: 1;
}
.compare-item strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-body);
}
.compare-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── SUCCESS PAGE ── */
.success-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
}
.success-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,92,26,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.success-inner {
  max-width: 600px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}
.success-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}
.success-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 20px;
}
.success-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 48px;
  font-weight: 300;
}
.success-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
}
.success-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.success-step:first-child { border-top: 1px solid var(--border); }
.success-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 2px;
}
.success-step strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.success-step span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── HERO PRICING CTA (homepage) ── */
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ── PRICING DUAL CTA STRIP ── */
.pricing-cta-strip {
  padding: 0 40px 32px;
}
.pricing-cta-strip-inner {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--bg-surface);
  border: 1px solid var(--border-accent);
  border-radius: 12px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.pricing-cta-strip-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pricing-cta-strip-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.pricing-cta-strip-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.pricing-cta-strip-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── BOOK PAGE ── */
.book-hero {
  padding: 160px 40px 60px;
  text-align: center;
  position: relative;
}
.book-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}
.book-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 20px;
}
.book-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
}

.book-section {
  padding: 40px 40px 100px;
}
.book-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.book-col-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 20px;
}
.book-calendar-col {
  position: sticky;
  top: 100px;
}
.book-form-col {}

.book-form-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

/* Form fields */
.book-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.form-input {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}
.form-input::placeholder { color: var(--text-dim); }
.form-input:focus { border-color: var(--border-accent); }
.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23FF5C1A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.form-textarea {
  resize: vertical;
  min-height: 90px;
}
.book-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 16px 24px;
  font-size: 1rem;
  margin-top: 4px;
}
.book-skip-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 20px;
}
.book-skip-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}
.book-skip-link:hover { text-decoration: underline; }

/* Calendly dark override */
.calendly-inline-widget {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ── BOOK THANK-YOU PAGE ── */
.book-thankyou-skip {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.book-thankyou-skip-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
}
.book-thankyou-fine {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.book-proof-section {
  padding: 80px 40px 100px;
  border-top: 1px solid var(--border);
}
.book-proof-inner {
  max-width: 900px;
  margin: 0 auto;
}
.book-proof-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 8px;
}
.book-proof-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 48px;
}
.book-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.book-proof-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.book-proof-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}
.book-proof-card:hover .card-glow { opacity: 1; }

/* ── RESPONSIVE (pricing/success) ── */
@media (max-width: 900px) {
  .plans-inner { grid-template-columns: 1fr; }
  .compare-grid { grid-template-columns: repeat(2, 1fr); }
  .book-inner { grid-template-columns: 1fr; }
  .book-calendar-col { position: static; }
  .book-proof-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cta-strip-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .pricing-hero { padding: 120px 20px 60px; }
  .plans-section { padding: 20px 20px 60px; }
  .plan-card { padding: 28px 24px; }
  .pricing-compare { padding: 40px 20px 60px; }
  .compare-grid { grid-template-columns: 1fr; }
  .success-section { padding: 100px 20px 60px; }
  .pricing-cta-strip { padding: 0 20px 28px; }
  .pricing-cta-strip-inner { padding: 20px; }
  .book-hero { padding: 120px 20px 40px; }
  .book-section { padding: 24px 20px 60px; }
  .book-proof-section { padding: 60px 20px 60px; }
  .book-proof-grid { grid-template-columns: 1fr; }
}

/* ── PROOF STRIP (homepage + vertical landers, above pricing) ── */
.proof-strip {
  padding: 80px 40px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.proof-strip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 12px;
}
.proof-strip-see-work {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.proof-strip-see-work:hover { opacity: 0.75; }
.proof-strip-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 48px;
  max-width: 600px;
}
.proof-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.proof-strip-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.3s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}
.proof-strip-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.proof-strip-card:hover::before { transform: scaleX(1); }
.proof-strip-card:hover { border-color: var(--border-accent); transform: translateY(-3px); }
.proof-strip-monogram {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.proof-strip-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.proof-strip-metric {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.proof-strip-context {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-weight: 300;
  flex: 1;
}
.proof-strip-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.proof-strip-client {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-body);
}
.proof-strip-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  padding: 3px 8px;
  white-space: nowrap;
}
@media (max-width: 900px) { .proof-strip-grid { grid-template-columns: 1fr; } }
@media (max-width: 600px) { .proof-strip { padding: 60px 20px; } }

/* ── HOMEPAGE PRICING DUAL ── */
.hp-pricing {
  padding: 100px 40px;
  background: var(--bg);
}
.hp-pricing-inner {
  max-width: 900px;
  margin: 0 auto;
}
.hp-pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 48px;
  max-width: 600px;
}
.hp-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.hp-plan-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.hp-plan-card:hover { border-color: var(--border-accent); }
.hp-plan-card-featured {
  border-color: var(--border-accent);
  background: var(--bg-elevated);
}
.hp-plan-popular-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  padding: 4px 10px;
  font-family: var(--font-body);
  align-self: flex-start;
}
.hp-plan-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hp-plan-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.hp-plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.hp-plan-amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.05em;
  line-height: 1;
}
.hp-plan-period {
  font-size: 1rem;
  color: var(--text-muted);
}
.hp-plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.hp-plan-savings {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 8px;
  padding: 10px 14px;
}
.hp-plan-cta {
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  font-size: 0.95rem;
}
.hp-plan-cta-annual { background: var(--accent); }
.hp-plan-fine {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
}
.hp-pricing-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  line-height: 1.6;
}
@media (max-width: 700px) {
  .hp-pricing-grid { grid-template-columns: 1fr; }
  .hp-pricing { padding: 60px 20px; }
}

/* ── VERTICAL DUAL PRICING ── */
.vt-pricing-inner-wide {
  max-width: 900px !important;
  text-align: left !important;
}
.vt-dual-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}
.vt-plan-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.vt-plan-card:hover { border-color: var(--border-accent); }
.vt-plan-card-featured {
  border-color: var(--border-accent);
  background: var(--bg-elevated);
}
.vt-plan-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 700px) {
  .vt-dual-pricing-grid { grid-template-columns: 1fr; }
  .vt-pricing-inner-wide { text-align: center !important; }
}

/* ── BOOK THANK-YOU DUAL OPTIONS ── */
.book-thankyou-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  max-width: 600px;
}
.bty-option-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
  text-align: left;
  transition: border-color 0.3s ease;
}
.bty-option-card:hover { border-color: var(--border-accent); }
.bty-option-card-featured {
  border-color: var(--border-accent);
  background: var(--bg-elevated);
}
.bty-option-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.bty-option-popular {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  padding: 3px 8px;
  font-family: var(--font-body);
  align-self: flex-start;
  margin-bottom: 4px;
}
.bty-option-price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}
.bty-option-price span {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}
.bty-option-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}
@media (max-width: 600px) {
  .book-thankyou-options { grid-template-columns: 1fr; max-width: 360px; }
}

/* ============================
   VERTICAL LANDING PAGES
   /gyms /restaurants /realtors /roofers /dentists
   ============================ */

/* ── VERTICAL HERO ── */
.vt-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
  overflow: hidden;
}
.vt-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.vt-hero-copy { max-width: 620px; }
.vt-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 24px;
}
.vt-subhead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
}

/* Showcase reel thumbnail */
.vt-hero-reel { flex-shrink: 0; }
.vt-reel-wrap {
  position: relative;
  width: 200px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-accent);
  box-shadow: 0 0 60px rgba(255,92,26,0.12);
}
.vt-reel-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}
.vt-reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to top, rgba(13,13,15,0.8) 0%, transparent 50%);
}
.vt-reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(13,13,15,0.7);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-accent);
  backdrop-filter: blur(4px);
}
.vt-reel-badge {
  position: absolute;
  bottom: 14px;
  left: 12px;
  right: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  font-weight: 600;
  background: rgba(13,13,15,0.8);
  padding: 5px 10px;
  border-radius: 6px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.vt-reel-caption {
  margin-top: 12px;
  font-size: 0.72rem;
  color: var(--text-dim);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ── PROOF SECTION ── */
.vt-proof {
  padding: 80px 40px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.vt-proof-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.vt-proof-inner .section-title { margin-bottom: 48px; }
.vt-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.vt-proof-card {
  background: var(--bg-elevated);
  padding: 36px 32px;
  transition: background 0.3s ease;
  position: relative;
}
.vt-proof-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.vt-proof-card:hover::before { transform: scaleX(1); }
.vt-proof-card:hover { background: var(--bg-surface); }
.vt-proof-stat {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.vt-proof-detail {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── DELIVERABLES ── */
.vt-deliverables {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
}
.vt-deliverables-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.vt-deliverables-header {
  max-width: 560px;
  margin-bottom: 56px;
}
.vt-deliverables-header .section-title { margin-bottom: 12px; }
.vt-deliverables-sub {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.vt-deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.vt-deliverable-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.vt-deliverable-card:hover {
  border-color: var(--border-accent);
  background: var(--bg-elevated);
}
.vt-deliverable-icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 4px;
}
.vt-deliverable-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.vt-deliverable-card span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── PRICING ── */
.vt-pricing {
  padding: 100px 40px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}
.vt-pricing-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.vt-pricing-inner .section-title { margin-bottom: 40px; }
.vt-pricing-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  padding: 48px 40px 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.vt-pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 20px 20px 0 0;
}
.vt-pricing-card-top { margin-bottom: 32px; }
.vt-pricing-card-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.vt-pricing-cta {
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  font-size: 1rem;
}
.vt-pricing-fine {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}
.vt-pricing-includes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.vt-pricing-include-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── FAQ ── */
.vt-faq {
  padding: 100px 40px;
  border-bottom: 1px solid var(--border);
}
.vt-faq-inner {
  max-width: 760px;
  margin: 0 auto;
}
.vt-faq-inner .section-title { margin-bottom: 48px; }
.vt-faq-list {
  display: flex;
  flex-direction: column;
}
.vt-faq-item {
  border-bottom: 1px solid var(--border);
}
.vt-faq-item:first-child { border-top: 1px solid var(--border); }
.vt-faq-q {
  width: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  transition: color 0.2s ease;
}
.vt-faq-q:hover { color: var(--accent); }
.vt-faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--text-muted);
}
.vt-faq-q[aria-expanded="true"] .vt-faq-chevron { transform: rotate(180deg); }
.vt-faq-q[aria-expanded="true"] { color: var(--accent); }
.vt-faq-a {
  padding-bottom: 22px;
}
.vt-faq-a p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── VERTICAL RESPONSIVE ── */
@media (max-width: 1000px) {
  .vt-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .vt-hero-reel { display: flex; flex-direction: column; align-items: flex-start; }
  .vt-reel-wrap { width: 160px; }
  .vt-proof-grid { grid-template-columns: 1fr; }
  .vt-deliverables-grid { grid-template-columns: repeat(2, 1fr); }
  .vt-pricing-includes { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .vt-hero { padding: 100px 20px 60px; }
  .vt-headline { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .vt-proof { padding: 60px 20px; }
  .vt-deliverables { padding: 60px 20px; }
  .vt-deliverables-grid { grid-template-columns: 1fr; }
  .vt-pricing { padding: 60px 20px; }
  .vt-pricing-card { padding: 32px 24px 28px; }
  .vt-faq { padding: 60px 20px; }
}

/* ============================
   /WORK SHOWCASE PAGE
   ============================ */

/* ── WORK HERO ── */
.work-hero {
  position: relative;
  padding: 160px 40px 80px;
  text-align: center;
  overflow: hidden;
}
.work-hero-glow {
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,92,26,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.work-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.work-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 24px;
}
.work-hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 300;
}

/* ── SHOWCASE SECTION ── */
.work-showcase {
  padding: 40px 40px 160px; /* extra bottom for sticky bar clearance */
  position: relative;
}
.work-showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ── FILTER PILLS ── */
.work-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.work-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 100px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.work-filter-pill:hover {
  border-color: var(--border-accent);
  color: var(--text);
}
.work-filter-active {
  background: var(--accent-dim);
  border-color: var(--border-accent);
  color: var(--accent);
}
.work-filter-pill-coming {
  opacity: 0.6;
}
.work-filter-soon {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  padding: 2px 6px;
}

/* ── CLIP GRID ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1100px) { .work-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px)  { .work-grid { grid-template-columns: 1fr; } }

/* ── CLIP CARD ── */
.work-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.work-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

/* Video wrapper — strict 9:16 */
.work-card-video-wrap {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--bg-elevated);
}
.work-card-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder (shown when no src yet) */
.work-card-placeholder {
  display: none; /* JS shows this when video has no src */
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--bg-elevated);
}
.work-card-placeholder-icon {
  opacity: 0.7;
}
.work-card-placeholder-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}

/* Overlay: sample badge + unmute */
.work-card-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px;
}
.work-card-sample-badge {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(13,13,15,0.8);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 3px 8px;
  backdrop-filter: blur(4px);
  font-weight: 500;
}
.work-card-unmute-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(13,13,15,0.75);
  border: 1px solid var(--border);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}
.work-card-unmute-btn:hover {
  background: rgba(255,92,26,0.2);
  color: var(--accent);
}

/* Card meta */
.work-card-meta {
  padding: 14px 16px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

/* Coming-soon variant */
.work-card-coming {
  opacity: 0.6;
}
.work-card-coming-fill {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--bg-elevated);
}
.work-card-coming-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
  text-align: center;
  padding: 0 20px;
}
.card-vertical-badge-muted {
  color: var(--text-dim);
  background: rgba(242,242,242,0.04);
  border-color: var(--border);
}

/* ── STICKY CTA BAR ── */
.work-sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 150;
  background: rgba(13,13,15,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-accent);
  padding: 14px 40px;
}
.work-sticky-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.work-sticky-bar-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.work-sticky-bar-label {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.work-sticky-bar-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.work-sticky-bar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .work-hero { padding: 120px 20px 60px; }
  .work-showcase { padding: 24px 20px 120px; }
  .work-sticky-bar { padding: 12px 20px; }
  .work-sticky-bar-inner { flex-direction: column; align-items: stretch; }
  .work-sticky-bar-actions { flex-direction: column; }
  .work-sticky-bar-actions .cta-btn { justify-content: center; }
}

/* ── QUALIFIER FORM (/book) ── */
.qual-hero {
  padding: 140px 40px 48px;
  text-align: center;
}
.qual-hero-inner { max-width: 640px; margin: 0 auto; }
.qual-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 16px;
}
.qual-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto;
}

.qual-section {
  padding: 0 40px 80px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.qual-form-wrap {
  position: relative;
}

/* Animated progress bar at top of form card */
.qual-progress-bar {
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 40px;
  transition: width 0.4s ease;
}

.qual-form { display: block; }

/* Step visibility — only .active shows */
.qual-step { display: none; }
.qual-step.active { display: block; }

.qual-step-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}
.qual-step-q {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
  line-height: 1.15;
}
.qual-step-hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  margin-top: -16px;
}

/* Grid options (step 1 — 6 cards) */
.qual-option-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.qual-option { cursor: pointer; display: block; }
.qual-option input[type=radio] { display: none; }
.qual-option-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.qual-option:hover .qual-option-inner { border-color: var(--border-accent); }
.qual-option input:checked + .qual-option-inner {
  border-color: var(--accent);
  background: rgba(255, 92, 26, 0.07);
}
.qual-option-icon { font-size: 1.6rem; }
.qual-option-text { font-size: 0.8rem; font-weight: 600; color: var(--text); text-align: center; }

/* List options (steps 2–3) */
.qual-option-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.qual-option-row { cursor: pointer; display: block; }
.qual-option-row input[type=radio] { display: none; }
.qual-option-row-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.qual-option-row:hover .qual-option-row-inner { border-color: var(--border-accent); }
.qual-option-row input:checked + .qual-option-row-inner {
  border-color: var(--accent);
  background: rgba(255, 92, 26, 0.07);
}
.qual-option-row-inner strong { font-size: 0.95rem; color: var(--text); }
.qual-option-row-inner span { font-size: 0.8rem; color: var(--text-muted); }

.qual-step-error {
  display: none;
  font-size: 0.8rem;
  color: #ff4d4d;
  margin-bottom: 12px;
}
.qual-step-error.visible { display: block; }

.qual-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.qual-back-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
  transition: color 0.2s ease;
}
.qual-back-btn:hover { color: var(--text); }
.qual-next-btn { padding: 14px 28px; }

/* Side proof panel (desktop only) */
.qual-proof-aside {
  padding-top: 40px;
}
.qual-proof-aside-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 20px;
}
.qual-proof-aside-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.qual-proof-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 20px;
}
.qual-proof-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255, 92, 26, 0.1);
  border-radius: 4px;
  padding: 2px 8px;
  margin-bottom: 8px;
}
.qual-proof-stat {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
}
.qual-proof-client {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin: 0;
}
.qual-proof-aside-note {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.5;
}

/* Nurture page */
.nurture-what-next { margin-top: 0; }
.nurture-next-label {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
  margin-bottom: 16px;
}
.nurture-next-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
.nurture-next-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s ease;
}
.nurture-next-card:hover { border-color: var(--border-accent); }
.nurture-next-card div { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.nurture-next-card strong { font-size: 0.9rem; }
.nurture-next-card span { font-size: 0.78rem; color: var(--text-muted); }
.nurture-next-icon { font-size: 1.3rem; flex-shrink: 0; }

.qual-questions-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 24px;
}

/* Responsive */
@media (max-width: 900px) {
  .qual-section {
    grid-template-columns: 1fr;
    padding: 0 20px 60px;
  }
  .qual-proof-aside { display: none; }
  .qual-hero { padding: 120px 20px 32px; }
  .qual-option-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .qual-option-grid { grid-template-columns: repeat(2, 1fr); }
  .qual-option-inner { padding: 14px 8px; }
}
