/* ── VSL PAGE STYLES ─────────────────────────────────────────────────── */
/* Builds on top of style.css — loaded after it */

body.vsl-page { background: #f5f3ef; }

.vsl-serif { font-family: 'Playfair Display', Georgia, serif; font-style: italic; }

/* ── MINIMAL NAV ─────────────────────────────────────────────────────── */
.vsl-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: var(--navy);
}
.vsl-nav .logo {
  height: 48px;
  filter: brightness(0) invert(1);
}
.vsl-nav .nav-home {
  color: var(--white);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .9;
  transition: opacity .2s;
}
.vsl-nav .nav-home:hover { opacity: 1; }

/* ── HERO ────────────────────────────────────────────────────────────── */
.vsl-hero {
  background: var(--navy);
  text-align: center;
  padding: 4rem 2rem 4rem;
  color: var(--white);
  max-width: 100%;
}
.vsl-eyebrow {
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 1.25rem;
}
.vsl-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--white);
}
.vsl-headline em {
  font-style: italic;
  color: #c9a96e;
}
.vsl-subhead {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: .85;
}
.vsl-subheadline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.2rem, 3vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: #c9a96e;
  margin-bottom: 1.5rem;
}
.vsl-btn-primary {
  display: inline-block;
  background: #c9a96e;
  color: var(--navy);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  letter-spacing: .02em;
  transition: background .2s, transform .2s;
  border: none;
  cursor: pointer;
}
.vsl-btn-primary:hover {
  background: #b8934f;
  transform: translateY(-1px);
  color: var(--white);
}
.vsl-btn-large {
  font-size: 1.2rem;
  padding: 1.25rem 3rem;
  border-radius: 6px;
}

/* ── VIDEO SECTION ───────────────────────────────────────────────────── */
.vsl-video-section {
  background: #2c3e2e;
  padding: 4rem 2rem;
  text-align: center;
}
.vsl-video-label {
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.vsl-video-wrap {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.5);
  background: #000;
}
.vsl-video-wrap video {
  width: 100%;
  display: block;
}
/* Responsive 16:9 iframe embed */
.vsl-video-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  background: #000;
}
.vsl-video-responsive iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
/* Curriculum mockup image in stats section */
.vsl-curriculum-img {
  max-width: 860px;
  margin: 3rem auto 0;
  text-align: center;
}
.vsl-curriculum-img img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,.10));
}

/* Hero-embedded video — full width, big, with breathing room */
.vsl-hero-video {
  width: 100%;
  max-width: 1000px;
  margin: 2.5rem auto 2.5rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.55);
}
.vsl-video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: #111;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: rgba(255,255,255,.5);
}
.vsl-play-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  color: rgba(255,255,255,.5);
  padding-left: 6px;
}

/* ── SECTION LABELS ──────────────────────────────────────────────────── */
.vsl-section-label {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: .75rem;
  font-weight: 600;
}

/* ── WHAT YOU GET ────────────────────────────────────────────────────── */
.vsl-what {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 2.5rem 4rem;
  text-align: center;
}
.vsl-what h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.vsl-what-intro {
  color: var(--mid);
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 3rem;
}
.vsl-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(0,0,0,.08);
  padding-top: 2.5rem;
}
.vsl-stat { text-align: center; }
.vsl-stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1;
  margin-bottom: .4rem;
}
.vsl-stat-label {
  font-size: .82rem;
  color: var(--mid);
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── CTA BAR ─────────────────────────────────────────────────────────── */
.vsl-cta-bar {
  background: #f5f3ef;
  border-top: 1px solid rgba(0,0,0,.07);
  border-bottom: 1px solid rgba(0,0,0,.07);
  text-align: center;
  padding: 3rem 2rem;
}
.vsl-cta-note {
  margin-top: 1rem;
  font-size: .85rem;
  color: #999;
  letter-spacing: .04em;
}

/* ── PROBLEM ─────────────────────────────────────────────────────────── */
.vsl-problem {
  background: var(--navy);
  padding: 6rem 2rem;
  color: var(--white);
}
.vsl-problem-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.vsl-problem h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3rem;
  line-height: 1.2;
}
.vsl-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  text-align: left;
}
.vsl-problem-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 1.5rem;
}
.vsl-check-x {
  font-size: 1.4rem;
  color: #c9a96e;
  flex-shrink: 0;
  line-height: 1.3;
}
.vsl-problem-item p {
  color: rgba(255,255,255,.8);
  line-height: 1.6;
}

/* ── JOURNEY / PHASES ────────────────────────────────────────────────── */
.vsl-journey {
  max-width: 1000px;
  margin: 0 auto;
  padding: 6rem 2.5rem;
  text-align: center;
}
.vsl-journey h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.vsl-journey-intro {
  color: var(--mid);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}
.vsl-phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: left;
}
.vsl-phase {
  border-top: 3px solid #c9a96e;
  padding-top: 1.5rem;
}
.vsl-phase-num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(30,47,64,.15);
  line-height: 1;
  margin-bottom: .75rem;
}
.vsl-phase h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .6rem;
}
.vsl-phase p { font-size: .9rem; color: var(--mid); line-height: 1.65; }

/* ── INCLUDES ────────────────────────────────────────────────────────── */
.vsl-includes {
  background: #2c3e2e;
  color: var(--white);
  padding: 6rem 2.5rem;
  text-align: center;
}
.vsl-includes h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3rem;
  line-height: 1.2;
}
.vsl-includes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.vsl-include-item {
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  padding: 2rem 1.5rem;
}
.vsl-include-icon { font-size: 2rem; display: block; margin-bottom: 1rem; }
.vsl-include-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}
.vsl-include-item p { font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.65; }

/* ── TESTIMONIALS ────────────────────────────────────────────────────── */
.vsl-testimonials {
  background: #f5f3ef;
  padding: 6rem 2.5rem;
  text-align: center;
}
.vsl-testimonials h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3rem;
  line-height: 1.2;
}
.vsl-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.vsl-testi {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.vsl-stars { color: #c9a96e; font-size: 1.1rem; margin-bottom: .75rem; }
.vsl-testi p { color: var(--mid); font-style: italic; line-height: 1.7; margin-bottom: 1rem; font-size: .95rem; }
.vsl-testi strong { display: block; font-weight: 700; color: var(--navy); }
.vsl-testi span { font-size: .82rem; color: #aaa; }

/* ── BUY SECTION ─────────────────────────────────────────────────────── */
.vsl-buy-section {
  background: var(--navy);
  padding: 7rem 2rem;
  text-align: center;
  color: var(--white);
}
.vsl-buy-inner { max-width: 680px; margin: 0 auto; }
.vsl-buy-section h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.vsl-buy-sub {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}
.vsl-price-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 3rem 2.5rem;
}
.vsl-price-label {
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c9a96e;
  margin-bottom: .5rem;
}
.vsl-price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: .5rem;
}
.vsl-price span { font-size: 5rem; }
.vsl-price-note {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  margin-bottom: 2rem;
}
.vsl-guarantee {
  margin-top: 1.25rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .03em;
}

/* ── SAMPLE FLIPBOOK ────────────────────────────────────────────────── */
.vsl-sample {
  background: #f5f3ef;
  padding: 6rem 2.5rem;
  text-align: center;
}
.vsl-sample-inner {
  max-width: 980px;
  margin: 0 auto;
}
.vsl-sample h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 1rem;
}
.vsl-sample-intro {
  max-width: 640px;
  margin: 0 auto 2.75rem;
  color: var(--mid);
  font-size: 1.05rem;
  line-height: 1.7;
}
.sample-flipbook {
  max-width: 760px;
  margin: 0 auto;
}
.sample-page-stage {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 20px 70px rgba(30,47,64,.18);
  border: 1px solid rgba(30,47,64,.08);
}
.sample-page-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  background: #fff;
  transition: opacity .16s ease, transform .16s ease;
}
.sample-page-img.is-changing {
  opacity: .35;
  transform: translateX(8px) rotate(.25deg);
}
.sample-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 0;
  background: var(--navy);
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(0,0,0,.22);
  transition: background .2s, transform .2s;
}
.sample-nav:hover {
  background: #c9a96e;
  color: var(--navy);
  transform: translateY(-50%) scale(1.04);
}
.sample-nav-prev { left: -24px; }
.sample-nav-next { right: -24px; }
.sample-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.sample-control-btn {
  border: 1px solid rgba(30,47,64,.18);
  background: #fff;
  color: var(--navy);
  border-radius: 999px;
  padding: .7rem 1.2rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.sample-control-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.sample-page-count {
  color: var(--mid);
  font-size: .9rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 700;
  min-width: 110px;
}
.sample-dots {
  display: flex;
  justify-content: center;
  gap: .55rem;
  margin-top: 1rem;
}
.sample-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(30,47,64,.24);
  cursor: pointer;
}
.sample-dot.is-active { background: #c9a96e; }

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .vsl-phases { grid-template-columns: 1fr 1fr; }
  .vsl-includes-grid { grid-template-columns: 1fr 1fr; }
  .vsl-testi-grid { grid-template-columns: 1fr; max-width: 540px; }
}

@media (max-width: 640px) {
  .vsl-stats { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .vsl-problem-grid { grid-template-columns: 1fr; }
  .vsl-phases { grid-template-columns: 1fr; }
  .vsl-includes-grid { grid-template-columns: 1fr; }
  .vsl-hero { padding: 4rem 1.5rem 3.5rem; }
  .vsl-sample { padding: 4.5rem 1.25rem; }
  .sample-page-stage { padding: .6rem; border-radius: 10px; }
  .sample-nav {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }
  .sample-nav-prev { left: 6px; }
  .sample-nav-next { right: 6px; }
  .sample-controls { gap: .6rem; }
  .sample-control-btn { padding: .65rem 1rem; }
  .vsl-price span { font-size: 4rem; }
}
