/* ---------- RESET + BASE ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
/* Anchor targets — consistent offset when using JS smooth scroll */
section[id],
#book,
#whats-inside {
  scroll-margin-top: 32px;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #1a1a1a;
  background: #fafaf9;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { opacity: 0.85; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; letter-spacing: -0.02em; line-height: 1.2; color: #0a0a0a; }
.section-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.section-title {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 48px;
  letter-spacing: -0.03em;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  letter-spacing: -0.01em;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 14px 0 rgba(0,0,0,0.12);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px 0 rgba(0,0,0,0.18);
  opacity: 1;
}
.btn-ghost {
  background: transparent;
  color: #0a0a0a;
  border: 1.5px solid #d4d4d4;
}
.btn-ghost:hover { border-color: var(--color-primary); color: var(--color-primary); opacity: 1; }
.btn-large { padding: 20px 40px; font-size: 19px; }
.btn-inline { margin-top: 32px; }

/* ---------- WIDE CTA BLOCK — brand-colored, with same-color glow halo ---------- */
/* Used 7 times throughout the doc via the cta_block() Jinja macro. */
.cta-wrap {
  margin: 48px auto;
  text-align: center;
  max-width: 720px;
  padding: 0 12px;
}
.cta-wrap-large { max-width: 820px; margin-top: 28px; }

/* Handwritten "click here" prompt above the button — uses Caveat (already loaded)
   to feel like a casual handwritten nudge from a friend pointing at the button */
.cta-prompt {
  font-family: 'Caveat', cursive;
  font-size: 28px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 6px;
  line-height: 1.1;
  letter-spacing: 0.01em;
}
@media (max-width: 600px) {
  .cta-prompt { font-size: 24px; }
}

.cta-block {
  display: block;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  color: #fff;
  padding: 28px 36px;
  border-radius: 18px;
  text-decoration: none;
  position: relative;
  text-align: center;
  border: 3px solid rgba(255,255,255,0.18);
  box-shadow:
    0 24px 60px -8px rgba(var(--color-accent-rgb), 0.55),
    0 8px 24px rgba(0,0,0,0.18),
    inset 0 1px 0 rgba(255,255,255,0.15);
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
  animation: cta-glow-pulse 2.6s ease-in-out infinite;
}
.cta-wrap-large .cta-block { padding: 34px 44px; }

.cta-block:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  opacity: 1;
  box-shadow:
    0 28px 70px -8px rgba(var(--color-accent-rgb), 0.7),
    0 12px 32px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.2);
}

.cta-block-head {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 12px;
}
.cta-wrap-large .cta-block-head { font-size: 30px; }

.cta-block-free {
  background: rgba(255,255,255,0.20);
  padding: 2px 12px;
  border-radius: 8px;
  display: inline-block;
  letter-spacing: 0.04em;
}
.cta-block-arrow {
  display: inline-block;
  margin-left: 6px;
  transition: transform 0.2s;
}
.cta-block:hover .cta-block-arrow { transform: translateX(6px); }

.cta-block-sub {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
  letter-spacing: -0.005em;
}
.cta-wrap-large .cta-block-sub { font-size: 16px; }

.cta-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 18px;
  font-size: 14px;
  color: #555;
  font-weight: 500;
}
.cta-trust span { white-space: nowrap; }

@keyframes cta-glow-pulse {
  0%, 100% {
    box-shadow:
      0 24px 60px -8px rgba(var(--color-accent-rgb), 0.55),
      0 0 0 0 rgba(var(--color-accent-rgb), 0.55),
      0 8px 24px rgba(0,0,0,0.18),
      inset 0 1px 0 rgba(255,255,255,0.15);
  }
  50% {
    box-shadow:
      0 24px 60px -8px rgba(var(--color-accent-rgb), 0.55),
      0 0 38px 12px rgba(var(--color-accent-rgb), 0.35),
      0 8px 24px rgba(0,0,0,0.18),
      inset 0 1px 0 rgba(255,255,255,0.15);
  }
}

/* CTA-only section divider — used between Reviews block and Content Buckets */
.cta-section {
  padding: 24px 0 0;
}

/* Secondary CTA under hero (ghost button) — small + low-emphasis */
.btn-secondary-cta { margin-top: 8px; }

@media (max-width: 720px) {
  .cta-wrap { margin: 36px auto; }
  .cta-block { padding: 22px 22px; border-radius: 14px; }
  .cta-wrap-large .cta-block { padding: 24px 22px; }
  .cta-block-head { font-size: 19px; }
  .cta-wrap-large .cta-block-head { font-size: 21px; }
  .cta-block-sub { font-size: 13px; }
  .cta-trust { gap: 12px; font-size: 12px; margin-top: 14px; }
}

/* Backwards-compat: keep old .btn-claim minimally styled in case any cell still uses it.
   New work should use cta_block() macro instead. */
.btn-claim {
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
}

/* ---------- STICKY FLOATING CTA (fixed bottom, slides up past hero) ---------- */
/* Uses brand primary + glow halo so it pops on any background */
.sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(140%);
  z-index: 1000;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.18);
  box-shadow:
    0 14px 36px rgba(0,0,0,0.32),
    0 0 30px rgba(var(--color-accent-rgb), 0.5);
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s, filter 0.2s;
  animation: sticky-glow-pulse 2.6s ease-in-out infinite;
}
.sticky-cta.visible {
  transform: translateX(-50%) translateY(0);
}
.sticky-cta:hover {
  filter: brightness(1.08);
  opacity: 1;
  box-shadow:
    0 18px 44px rgba(0,0,0,0.36),
    0 0 38px rgba(var(--color-accent-rgb), 0.65);
}
.sticky-cta-icon { font-size: 20px; }
.sticky-cta-arrow { font-size: 18px; }
@keyframes sticky-glow-pulse {
  0%, 100% {
    box-shadow:
      0 14px 36px rgba(0,0,0,0.32),
      0 0 30px rgba(var(--color-accent-rgb), 0.5),
      0 0 0 0 rgba(var(--color-accent-rgb), 0.45);
  }
  50% {
    box-shadow:
      0 14px 36px rgba(0,0,0,0.32),
      0 0 30px rgba(var(--color-accent-rgb), 0.5),
      0 0 0 12px rgba(var(--color-accent-rgb), 0);
  }
}
@media (max-width: 600px) {
  .sticky-cta {
    bottom: 14px;
    padding: 14px 22px;
    font-size: 15px;
    width: calc(100% - 24px);
    justify-content: center;
  }
}

/* ---------- ACCENT SPANS (used inside many titles) ---------- */
.accent {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--color-accent);
  padding: 0 2px;
}
.accent-script {
  font-family: 'Caveat', cursive;
  font-weight: 600;
  color: var(--color-accent);
  font-size: 1.15em;
}

/* ---------- HERO ---------- */
.hero {
  background: #fff;
  padding: 70px 0 90px;
  text-align: center;
  border-bottom: 1px solid #e7e5e4;
}
.hero-logo { max-height: 80px; margin: 0 auto 32px; display: block; }
.hero-hook {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  max-width: 880px;
  margin: 24px auto 18px;
  color: #0a0a0a;
}
.hero-sub {
  font-size: 18px;
  color: #57534e;
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.55;
}
.hero-context {
  font-size: 13px;
  color: #78716c;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 10px;
  margin-top: 24px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 18px;
}
.separator { font-size: 28px; color: #a8a29e; margin: 8px 0 14px; font-weight: 300; }
.hero-title {
  font-size: 64px;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin-bottom: 36px;
  color: var(--color-primary);
}
.hero-subtitle {
  font-size: 21px;
  color: #57534e;
  max-width: 640px;
  margin: 0 auto 40px;
  line-height: 1.5;
}
.hero-video-wrap { max-width: 800px; margin: 0 auto 36px; }
.video-hint {
  font-size: 13px;
  color: #78716c;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.video-iframe-wrap {
  position: relative;
  padding-bottom: 56.25%;          /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,0.25);
  background: #000;
}
.video-iframe-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ---------- HERO VIDEO UNMUTE OVERLAY (Wistia only) ---------- */
/* Translucent brand-color overlay covering the video on autoplay-mute.
   Big speaker icon + "Your Video Is Playing / Click To Unmute". Click anywhere
   on the overlay → unmute via Wistia JS API, overlay fades out. */
.unmute-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  background: rgba(var(--color-primary-rgb), 0.40);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  transition: opacity 0.35s ease;
  user-select: none;
}
.unmute-overlay.hidden { opacity: 0; pointer-events: none; }
.unmute-overlay:hover { background: rgba(var(--color-primary-rgb), 0.50); }

.unmute-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 36px 56px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  background: rgba(var(--color-primary-rgb), 0.18);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  text-align: center;
  pointer-events: none;
}
.unmute-overlay-icon {
  width: 56px;
  height: 56px;
  color: #fff;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}
.unmute-overlay-title {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  margin-top: 4px;
}
.unmute-overlay-subtitle {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}
@media (max-width: 600px) {
  .unmute-overlay-inner { padding: 24px 32px; gap: 6px; border-radius: 14px; }
  .unmute-overlay-icon { width: 40px; height: 40px; }
  .unmute-overlay-title { font-size: 17px; }
  .unmute-overlay-subtitle { font-size: 14px; }
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- TRUSTED BY MARQUEE ---------- */
.trusted-by {
  background: #f5f5f4;
  padding: 50px 0 40px;
  overflow: hidden;
  border-bottom: 1px solid #e7e5e4;
}
.trusted-label {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-weight: 600;
  color: #78716c;
  margin-bottom: 30px;
}
.logo-marquee {
  overflow: hidden;
  position: relative;
  /* Fade right edge only — left stays fully visible on first paint */
  mask-image: linear-gradient(to right, #000 0%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, #000 0%, #000 92%, transparent);
}
.logo-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: logo-marquee-scroll 35s linear infinite;
}
@keyframes logo-marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; justify-content: center; flex-wrap: wrap; max-width: 1180px; margin: 0 auto; }
}
.logo-bubble {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  cursor: default;
  user-select: none;
}
.logo-avatar {
  width: 110px;
  height: 110px;
  min-width: 110px;
  min-height: 110px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  border: 4px solid #fff;
  background: #e7e5e4;
  transition: transform 0.3s ease;
  opacity: 1;
  visibility: visible;
}
.logo-avatar:hover { transform: scale(1.08); }

/* ---------- WALL OF HIGHLIGHTS ---------- */
.wall {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, #f5f5f4 100%);
}
.wall-intro {
  color: #57534e;
  font-size: 17px;
  max-width: 720px;
  margin: -32px 0 48px;
}
.wall-grid {
  column-count: 3;
  column-gap: 20px;
}
.wall-card {
  break-inside: avoid;
  margin-bottom: 20px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #e7e5e4;
  background: #fff;
  transition: all 0.3s ease;
  display: block;
}
.wall-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.wall-card img {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 1024px) { .wall-grid { column-count: 2; } }
@media (max-width: 640px)  { .wall-grid { column-count: 1; } }

/* ---------- WHAT'S INSIDE ---------- */
.whats-inside { background: #0a0a0a; color: #fff; padding: 100px 0; }
.whats-inside .section-title { color: #fff; }
.whats-inside .section-eyebrow { color: var(--color-accent); }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: #171717;
  border: 1px solid #262626;
  border-radius: 16px;
  padding: 32px 28px;
  transition: all 0.2s;
  color: inherit;
  display: block;
}
.card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  opacity: 1;
  background: #1a1a1a;
}
.card-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.card h3 { font-size: 22px; color: #fff; margin-bottom: 12px; font-weight: 700; }
.card p { color: #a8a29e; font-size: 15px; line-height: 1.55; }

/* ---------- WHY ---------- */
.why { padding: 100px 0; background: #fafaf9; }
.why .prose { font-size: 19px; color: #292524; line-height: 1.7; }
.why .prose p { margin-bottom: 20px; }
.why .prose p:last-of-type { font-style: italic; color: #57534e; }

/* ---------- LEAD MAGNET ---------- */
.lead-magnet {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--color-accent) 0%, #0a0a0a 100%);
  color: #fff;
}
.lead-magnet .section-eyebrow { color: var(--color-accent); }
.lead-magnet .section-title { color: #fff; max-width: 800px; }
.lead-magnet-desc { font-size: 19px; color: #d4d4d4; max-width: 800px; margin-bottom: 40px; }
.lead-magnet-outline {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
  max-width: 720px;
}
.outline-label {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 16px;
}
.lead-magnet-outline ul { list-style: none; }
.lead-magnet-outline li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 16px;
  color: #e7e5e4;
}
.lead-magnet-outline li:last-child { border-bottom: none; }
.lead-magnet-outline li::before {
  content: "✓ ";
  color: var(--color-accent);
  font-weight: 700;
  margin-right: 8px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding: 100px 0; background: #fff; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
}
.testimonial {
  background: #fafaf9;
  border-radius: 16px;
  padding: 32px;
  border-left: 4px solid var(--color-primary);
}
.testimonial-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  margin-bottom: 16px;
  object-fit: cover;
}
.testimonial-body { font-size: 17px; line-height: 1.6; color: #292524; margin-bottom: 24px; }
.testimonial-video {
  padding: 0;
  background: #fff;
  border: 1px solid #e7e5e4;
  border-left: 4px solid var(--color-primary);
  overflow: hidden;
}
.testimonial-video .video-iframe-wrap { border-radius: 0; box-shadow: none; }
.testimonial-video video {
  width: 100%;
  display: block;
  background: #1c1917;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  max-height: 560px;
}
@media (min-width: 1100px) {
  .testimonial-video video { aspect-ratio: auto; max-height: 520px; }
}
.testimonial-video .testimonial-meta { padding: 20px 24px; }
.testimonial-meta { display: flex; flex-direction: column; gap: 4px; }
.testimonial-meta strong { color: #0a0a0a; font-weight: 700; font-size: 16px; }
.testimonial-meta span { color: #78716c; font-size: 14px; }
.testimonial-role { color: #78716c; font-size: 13px; font-weight: 500; }
.testimonial-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.stat-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-light);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border: 1px solid color-mix(in srgb, var(--color-primary) 20%, transparent);
}

/* ---------- BUCKETS (2x2 grid) ---------- */
.buckets { padding: 100px 0; background: #fafaf9; }
.bucket-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);   /* fixed 2x2 layout */
  gap: 24px;
  margin-bottom: 48px;
}
.bucket {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 16px;
  padding: 36px 32px;
}
.bucket-num {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.bucket h3 { font-size: 22px; margin-bottom: 12px; color: #0a0a0a; }
.bucket p { color: #57534e; font-size: 15px; line-height: 1.55; }
.strategy-box {
  background: #0a0a0a;
  color: #fff;
  border-radius: 16px;
  padding: 40px;
  border-left: 6px solid var(--color-accent);
}
.strategy-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.strategy-text { font-size: 19px; color: #fff; line-height: 1.6; }

/* ---------- 12-WEEK PLAN ---------- */
.plan { padding: 100px 0; background: #fff; }
.plan-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.plan-card {
  background: #fafaf9;
  border-radius: 14px;
  padding: 28px;
  border-top: 4px solid var(--color-primary);
  transition: transform 0.2s;
}
.plan-card:hover { transform: translateY(-3px); }
.plan-week {
  font-size: 12px; font-weight: 700; letter-spacing: 0.12em;
  color: var(--color-primary);
  text-transform: uppercase; margin-bottom: 8px;
}
.plan-card h4 { font-size: 18px; margin-bottom: 10px; line-height: 1.3; color: #0a0a0a; }
.plan-card p { color: #57534e; font-size: 14px; margin-bottom: 16px; line-height: 1.5; }
.funnel-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.funnel-tof { background: #fef3c7; color: #92400e; }
.funnel-mof { background: #dbeafe; color: #1e40af; }
.funnel-bof { background: #dcfce7; color: #166534; }

/* ---------- SCRIPT (collapsible) ---------- */
.script-section { padding: 100px 0; background: #fafaf9; }
.script-intro { color: #57534e; font-size: 18px; margin-bottom: 32px; }
.script-details {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 14px;
  overflow: hidden;
}
.script-details summary {
  cursor: pointer;
  padding: 24px 32px;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0a0a0a;
}
.script-details summary::-webkit-details-marker { display: none; }
.script-details[open] summary { border-bottom: 1px solid #e7e5e4; }
.script-details[open] .chevron { transform: rotate(180deg); }
.chevron { transition: transform 0.2s; font-size: 14px; color: #a8a29e; }
.script-body {
  padding: 32px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #292524;
  white-space: pre-wrap;
  word-wrap: break-word;
  background: #fafaf9;
}

/* ---------- SERVICES (deliverable counts) ---------- */
.services { padding: 100px 0; background: #fff; }
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);   /* 5 across desktop, packs 10 items as 5×2 */
  gap: 18px;
}
@media (max-width: 1100px) { .deliverables-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 880px)  { .deliverables-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .deliverables-grid { grid-template-columns: repeat(2, 1fr); } }
.deliverable-card {
  background: #fafaf9;
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  border-bottom: 4px solid var(--color-accent);
  transition: transform 0.2s;
}
.deliverable-card:hover { transform: translateY(-4px); }
.deliverable-count {
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.deliverable-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #0a0a0a;
}
.deliverable-card p { color: #57534e; font-size: 14px; line-height: 1.5; }

/* ---------- EXAMPLE VIDEOS ---------- */
.examples { padding: 100px 0; background: #fafaf9; }
.example-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.example-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #e7e5e4;
}
.example-title {
  font-size: 14px;
  font-weight: 600;
  color: #57534e;
  margin-top: 14px;
  text-align: center;
}

/* ---------- FREE VIDEO OFFER ---------- */
.free-video-offer {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--color-light) 0%, #fff 70%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.free-video-offer::before {
  content: "";
  position: absolute;
  top: -120px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, color-mix(in srgb, var(--color-accent) 20%, transparent) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.free-video-offer .container-narrow { position: relative; z-index: 1; }

.fv-intro {
  font-size: 17px;
  color: #57534e;
  margin-bottom: 6px;
  font-weight: 500;
}
.fv-hook {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 36px;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.fv-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 48px;
  border-radius: 18px;
  background: #0a0a0a;
  color: #fff;
  margin-bottom: 56px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
  border: 2px solid var(--color-accent);
}
.fv-badge-lead {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
  opacity: 0.85;
}
.fv-badge-highlight {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: linear-gradient(135deg, var(--color-accent) 0%, #fff 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fv-process { margin-bottom: 48px; text-align: left; }
.fv-steps-label {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 18px;
  text-align: center;
}
.fv-steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.fv-step {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 14px;
  padding: 22px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
}
.fv-step:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}
.fv-step-head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 10px; }
.fv-step-num {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--color-accent);
  line-height: 1;
  flex-shrink: 0;
  min-width: 28px;
}
.fv-step-role-wrap { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.fv-step-role {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  align-self: flex-start;
  background: var(--color-light);
  color: var(--color-primary);
}
/* Role color variants */
.fv-step--you .fv-step-role     { background: #6B7280; color: #fff; }
.fv-step--both .fv-step-role    { background: var(--color-accent); color: #fff; }
.fv-step--wedoforyou .fv-step-role { background: var(--color-accent); color: #fff; }
.fv-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.fv-step-desc {
  font-size: 14px;
  color: #57534e;
  line-height: 1.55;
  padding-left: 42px;
}

.fv-closing { text-align: left; max-width: 640px; margin: 0 auto 32px; }
.fv-closing-options {
  counter-reset: fvopt;
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}
.fv-closing-options li {
  counter-increment: fvopt;
  position: relative;
  padding: 14px 16px 14px 50px;
  font-size: 16px;
  color: #292524;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #e7e5e4;
  margin-bottom: 10px;
}
.fv-closing-options li::before {
  content: counter(fvopt) ")";
  position: absolute;
  left: 18px; top: 14px;
  font-weight: 800;
  color: var(--color-accent);
  font-size: 16px;
}
.fv-meta {
  text-align: center;
  font-style: italic;
  color: #57534e;
  font-size: 15px;
  margin-bottom: 14px;
}
.fv-ps {
  text-align: center;
  font-size: 14px;
  color: #78716c;
}
.fv-ps strong { color: var(--color-primary); margin-right: 4px; }

.fv-cta { margin-top: 8px; }

@media (max-width: 720px) {
  .fv-steps { grid-template-columns: 1fr; }
  .fv-badge { padding: 20px 32px; }
  .fv-badge-highlight { font-size: 38px; }
  .fv-hook { font-size: 28px; }
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--color-accent) 0%, #0a0a0a 100%);
  color: #fff;
  text-align: center;
}
.cta-title {
  font-size: 44px; color: #fff; margin-bottom: 24px;
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.15;
}
.cta-body { font-size: 19px; color: #d4d4d4; max-width: 640px; margin: 0 auto 40px; }
.cta-meta { margin-top: 32px; font-size: 14px; color: #a8a29e; font-style: italic; }

/* ---------- FAQ ---------- */
.faq { padding: 100px 0; background: #fafaf9; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  padding: 24px 28px;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #0a0a0a;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary { border-bottom: 1px solid #e7e5e4; }
.faq-item[open] .chevron { transform: rotate(180deg); }
.faq-answer { padding: 24px 28px; color: #57534e; font-size: 16px; line-height: 1.7; }
.faq-answer p { margin-bottom: 14px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: #0a0a0a; font-weight: 600; }

/* FAQ — bullet/numbered stack lists */
.faq-list-stack {
  list-style: none;
  margin: 16px 0;
  padding: 0;
}
.faq-list-stack li {
  padding: 10px 0 10px 24px;
  border-bottom: 1px solid #f0eeec;
  position: relative;
}
.faq-list-stack li:last-child { border-bottom: none; }
.faq-list-stack li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* FAQ — client wins (Simon/Scott/Jonni inside FAQ #3) */
.faq-client {
  margin: 24px 0 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e7e5e4;
}
.faq-client:last-of-type { border-bottom: none; }
.faq-client-name {
  font-size: 17px;
  margin-bottom: 14px !important;
  color: #0a0a0a;
}
.faq-client img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 10px 0;
  border: 1px solid #e7e5e4;
  display: block;
}
.ba-label {
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin: 16px 0 6px !important;
}

/* FAQ — Scott Thomas pull-quote */
.faq-quote {
  background: linear-gradient(135deg, var(--color-accent), color-mix(in srgb, var(--color-accent) 60%, #0a0a0a));
  color: #fff;
  padding: 28px 32px;
  border-radius: 14px;
  margin: 24px 0 0;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  border-left: 6px solid var(--color-accent);
}
.faq-quote cite {
  display: block;
  margin-top: 14px;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  opacity: 0.9;
}

/* FAQ — comparison table (HJ vs others) */
.faq-table-wrap {
  margin: 18px 0 8px;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid #e7e5e4;
}
.faq-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 600px;
}
.faq-table th, .faq-table td {
  padding: 14px 12px;
  text-align: center;
  border-bottom: 1px solid #f0eeec;
}
.faq-table thead th {
  background: #fafaf9;
  font-weight: 700;
  color: #0a0a0a;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.faq-table thead th.us, .faq-table td.us {
  background: var(--color-primary);
  color: #fff;
}
.faq-table thead th.us { font-size: 14px; }
.faq-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: #0a0a0a;
  background: #fff;
}
.faq-table .check { color: #16a34a; font-size: 20px; font-weight: 800; }
.faq-table td.us .check { color: #fff; }
.faq-table .cross { color: #dc2626; font-size: 18px; font-weight: 700; }
.faq-table .dash  { color: #a8a29e; font-size: 18px; font-weight: 600; }

/* FAQ — process steps (numbered) */
.faq-process {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 16px 0 0;
}
.faq-process li {
  counter-increment: step;
  padding: 14px 16px 14px 56px;
  position: relative;
  border-bottom: 1px solid #f0eeec;
}
.faq-process li:last-child { border-bottom: none; }
.faq-process li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 14px;
  width: 40px;
  text-align: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--color-primary);
  letter-spacing: 0.02em;
}

/* ---------- INLINE CALENDLY ---------- */
.book-inline { padding: 100px 0; background: #fff; text-align: center; }
.book-intro { color: #57534e; font-size: 17px; margin-bottom: 32px; }
.calendly-host {
  position: relative;
  flex: 1;
  min-width: 0;
}
.calendly-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 24px;
  font-size: 15px;
  font-weight: 600;
  color: #57534e;
  background: linear-gradient(110deg, #f5f5f4 8%, #fafaf9 18%, #f5f5f4 33%);
  background-size: 200% 100%;
  animation: calendly-shimmer 1.4s ease-in-out infinite;
  border-radius: 14px;
  border: 1px solid #e7e5e4;
  pointer-events: none;
}
.calendly-loading.hidden {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
@keyframes calendly-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}
.calendly-inline-widget {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e7e5e4;
  margin-top: 0;
  min-height: 950px;
}

/* ---------- FOOTER ---------- */
footer {
  background: #0a0a0a;
  color: #a8a29e;
  padding: 50px 0 40px;
  text-align: center;
  font-size: 15px;
}
footer p { margin-bottom: 8px; }
.footer-meta { font-size: 13px; color: #78716c; font-style: italic; margin-bottom: 24px; }
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 24px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #1a1a1a;
  color: #fff;
  transition: all 0.2s;
}
.footer-socials a:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  opacity: 1;
}

/* ---------- CLIENT SPOTLIGHTS (matches reference design) ---------- */
.spotlights { padding: 100px 0; background: #fff; }
.spotlight-list {
  display: flex;
  flex-direction: column;
  gap: 36px;
  margin-top: 24px;
}
.spotlight {
  background: linear-gradient(180deg, #fafaf9 0%, #fff 100%);
  border: 1.5px solid #e7e5e4;
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.04);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  align-items: start;
}
.spotlight-id {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: sticky;
  top: 24px;
}
.spotlight-avatar {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  margin-bottom: 16px;
}
.spotlight-name {
  font-size: 22px;
  font-weight: 800;
  color: #0a0a0a;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.spotlight-role {
  font-size: 13px;
  color: #78716c;
  margin-bottom: 14px;
  line-height: 1.4;
}
.spotlight-headline {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.4;
}
.spotlight-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.spotlight-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}
.spotlight-stat {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
}
.spotlight-stat-num {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--color-accent);
  line-height: 1.1;
  margin-bottom: 4px;
}
.spotlight-stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #78716c;
  font-weight: 600;
}
.spotlight-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.spotlight-ba-block {
  background: #fff;
  border: 1.5px solid #e7e5e4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.spotlight-ba-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
  padding: 10px 14px;
  color: #fff;
  text-align: center;
}
.spotlight-ba-label.before { background: #78716c; }
.spotlight-ba-label.after  { background: var(--color-primary); }
.spotlight-ba-block img {
  display: block;
  width: 100%;
  height: auto;
}
.spotlight-single img {
  border-radius: 14px;
  border: 1.5px solid #e7e5e4;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  width: 100%;
  height: auto;
  display: block;
}
.spotlight-ba-block img,
.spotlight-single img,
.wall-card img,
.video-screens-card img,
.fiverr-card img {
  cursor: zoom-in;
}
.spotlight-quote {
  font-family: 'Inter', sans-serif;
  font-style: italic;
  font-size: 16px;
  color: #fff;
  line-height: 1.65;
  padding: 26px 30px;
  border-left: 4px solid var(--color-accent);
  background: linear-gradient(135deg,
    var(--color-accent) 0%,
    color-mix(in srgb, var(--color-accent) 40%, #0a0a0a) 60%,
    #0a0a0a 100%);
  border-radius: 0 14px 14px 0;
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
}
.spotlight-quote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
}

/* ---------- VIDEO RESULTS (white bg, curated channel-growth screenshots) ---------- */
.video-results {
  padding: 100px 0;
  background: linear-gradient(180deg, #fff 0%, #f5f5f4 100%);
}
.video-results-grid {
  column-count: 3;
  column-gap: 18px;
}
.video-screens-card {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e7e5e4;
  background: #fff;
  box-shadow: 0 3px 12px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}
.video-screens-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.video-screens-card img {
  display: block;
  width: 100%;
  height: auto;
  cursor: zoom-in;
}
@media (max-width: 1024px) { .video-results-grid { column-count: 2; } }
@media (max-width: 640px)  { .video-results-grid { column-count: 1; } }

/* ---------- FIVERR REVIEWS COLLAGE ---------- */
.reviews-collage-section { padding: 100px 0; background: #0a0a0a; color: #fff; }
.reviews-collage-section .section-title { color: #fff; text-align: center; }
.reviews-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  width: max-content;
  margin: 0 auto 24px;
  font-size: 14px;
  font-weight: 600;
}
.reviews-badge .stars { color: #fbbf24; letter-spacing: 2px; font-size: 16px; }
.reviews-intro {
  text-align: center;
  color: #a8a29e;
  font-size: 16px;
  max-width: 640px;
  margin: 0 auto 48px;
}
.fiverr-collage {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
.fiverr-card {
  width: 200px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.25);
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.3s cubic-bezier(.2,.9,.3,1.3), z-index 0s linear 0.3s;
  position: relative;
  z-index: 1;
}
.fiverr-card:hover {
  transform: rotate(0deg) scale(1.6);
  z-index: 10;
  transition: transform 0.3s cubic-bezier(.2,.9,.3,1.3), z-index 0s;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.fiverr-card img {
  display: block;
  width: 100%;
  height: auto;
  cursor: zoom-in;
}
@media (max-width: 768px) {
  .fiverr-card { width: 140px; }
  .fiverr-card:hover { transform: rotate(0deg) scale(1.3); }
}

/* ---------- INLINE CALENDLY (with profile card) ---------- */
.book-inline .section-title { text-align: center; }
.book-inline .section-eyebrow { text-align: center; }
.book-intro { text-align: center; }

/* Booking section is intentionally wider than the rest of the free-video-offer
   copy — Calendly is the conversion point so it gets the most screen real estate.
   Profile card stays compact on the left; Calendly takes the bulk of the width. */
.fv-book-container { margin-top: 40px; }
.fv-book { width: 100%; }
.book-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  margin-top: 0;
  align-items: start;
}
.book-profile {
  background: linear-gradient(180deg, #fff 0%, #fafaf9 100%);
  border: 1px solid #e7e5e4;
  border-radius: 14px;
  padding: 22px 20px;
  text-align: center;
  position: sticky;
  top: 24px;
}
.book-profile-pic {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 12px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.10);
}
.book-profile-name { font-weight: 800; font-size: 17px; color: #0a0a0a; margin-bottom: 3px; }
.book-profile-role { font-size: 12px; color: var(--color-primary); font-weight: 600; margin-bottom: 12px; }
.book-profile-tagline { font-size: 13px; color: #57534e; line-height: 1.45; margin-bottom: 14px; }
.book-profile-meta { display: flex; flex-direction: column; gap: 6px; font-size: 12px; color: #78716c; padding-top: 12px; border-top: 1px solid #e7e5e4; }

/* The Calendly inline widget itself — taller + with subtle ring of brand color
   to feel like the focal point of the page. */
.book-layout .calendly-inline-widget {
  min-width: 320px;
  height: 950px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e7e5e4;
  box-shadow:
    0 24px 60px -16px rgba(var(--color-primary-rgb), 0.25),
    0 4px 14px rgba(0,0,0,0.06);
}

/* ---------- LIGHTBOX modal ---------- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  padding: 40px;
  align-items: center;
  justify-content: center;
  animation: lbFade 0.18s ease;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 95vw;
  max-height: 92vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 28px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  padding: 8px;
}
.lightbox-close:hover { opacity: 0.7; }
@keyframes lbFade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .hero { padding: 50px 0 60px; }
  .hero-hook { font-size: 32px; }
  .hero-title { font-size: 42px; }
  .hero-sub { font-size: 16px; }
  .hero-subtitle { font-size: 18px; }
  .section-title { font-size: 32px; margin-bottom: 32px; }
  .cta-title { font-size: 32px; }
  .btn { padding: 14px 26px; font-size: 16px; }
  .container, .container-narrow { padding: 0 20px; }
  section { padding: 70px 0 !important; }
  .bucket-grid { grid-template-columns: 1fr; }
  .deliverable-count { font-size: 44px; }
  .logo-bubble { width: 60px; height: 60px; font-size: 18px; }
  .spotlight { grid-template-columns: 1fr; padding: 28px; gap: 24px; }
  .spotlight-id { position: static; }
  .spotlight-avatar { width: 108px; height: 108px; }
  .spotlight-ba { grid-template-columns: 1fr; }
  .book-layout { grid-template-columns: 1fr; }
  .book-profile { position: static; }
}
