/* ---------- Course page: breadcrumb ---------- */

.breadcrumb-bar { padding: 18px 0; border-bottom: 1px solid var(--line); }
.breadcrumb { display: flex; align-items: center; gap: 0.5em; font-size: 0.88rem; color: var(--ink-soft); text-decoration: none; }
.breadcrumb:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--line); }
.breadcrumb-current { color: var(--ink); font-weight: 600; }

/* ---------- Course hero ---------- */

.course-hero { position: relative; overflow: hidden; padding: 56px 0 72px; }
.course-hero-blob {
  position: absolute; top: -200px; right: -220px; width: 620px; height: 620px;
  border-radius: 50%; background: radial-gradient(circle at 30% 30%, var(--kids-soft), transparent 70%);
  z-index: 0;
}
.course-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3rem; align-items: center; }

.course-hero-facts { display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; margin: 1.4rem 0 1.8rem; }
.course-hero-facts li { list-style: none; font-size: 0.92rem; color: var(--ink-soft); display: flex; align-items: center; gap: 0.5em; }
.course-hero-facts li::before { content: "✦"; color: var(--accent); font-size: 0.8em; }

.course-hero-price {
  display: flex; align-items: baseline; gap: 0.9rem; margin-bottom: 1.4rem; flex-wrap: wrap;
}
.course-hero-price .price-old { font-size: 1.1rem; color: var(--ink-soft); text-decoration: line-through; }
.course-hero-price .price-main { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; color: var(--ink); }
.course-hero-price .price-alt { font-size: 0.95rem; color: var(--ink-soft); }
.course-hero-badge {
  display: inline-block; background: var(--accent); color: #fff; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; padding: 0.35em 0.9em; border-radius: 999px; margin-bottom: 1rem;
}

.course-hero-visual { position: relative; display: flex; justify-content: center; }
.course-hero-visual img { width: 100%; max-width: 420px; height: auto; position: relative; z-index: 1; filter: drop-shadow(0 24px 40px rgba(43,33,28,0.22)); }

/* ---------- Checklist ---------- */

.checklist-section { padding: 20px 0 80px; }
.checklist-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.checklist-item {
  display: flex; gap: 0.9rem; align-items: flex-start; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 1.1rem 1.3rem;
}
.checklist-icon {
  flex-shrink: 0; width: 2.2rem; height: 2.2rem; border-radius: 50%; background: var(--kids-soft);
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem;
}
.checklist-item p { margin: 0; font-size: 0.95rem; color: var(--ink); }

/* ---------- Benefits ---------- */

.benefits-section { padding: 20px 0 80px; background: var(--cream-deep); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.benefit-card { background: #fff; border-radius: var(--radius-md); padding: 1.6rem; box-shadow: var(--shadow-sm); }
.benefit-num {
  display: inline-flex; align-items: center; justify-content: center; width: 2.4rem; height: 2.4rem;
  border-radius: 50%; background: var(--accent-soft); color: var(--accent-dark); font-family: var(--font-display);
  font-weight: 600; margin-bottom: 0.9rem;
}
.benefit-card p { margin: 0; font-size: 0.95rem; }

/* ---------- Value strip ---------- */

.value-strip { padding: 56px 0; }
.value-strip-inner { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; text-align: center; }
.value-strip-item { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.value-strip-icon { font-size: 1.8rem; }
.value-strip-item strong { font-size: 0.92rem; }
.value-strip-item span { font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- Program (accordion) ---------- */

.program-section { padding: 20px 0 80px; }
.program-list { display: flex; flex-direction: column; gap: 1rem; }
.program-step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden;
}
.program-step-head {
  display: flex; align-items: center; gap: 1rem; width: 100%; padding: 1.2rem 1.4rem; background: none;
  border: none; cursor: pointer; text-align: left; font-family: var(--font-body); color: var(--ink);
}
.program-step-num {
  flex-shrink: 0; width: 2.6rem; height: 2.6rem; border-radius: 50%; background: var(--kids-soft);
  color: var(--accent-dark); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1.1rem;
}
.program-step-title { flex: 1; }
.program-step-title strong { display: block; font-size: 1.05rem; }
.program-step-title span { font-size: 0.82rem; color: var(--ink-soft); }
.program-step-toggle { font-size: 1.3rem; color: var(--ink-soft); transition: transform 0.2s ease; }
.program-step.is-open .program-step-toggle { transform: rotate(45deg); }

.program-step-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.program-step.is-open .program-step-body { max-height: 3200px; }
.program-step-body-inner { padding: 0 1.4rem 1.4rem 4.4rem; }
.program-step-body-inner ul { margin: 0 0 1rem; padding: 0; list-style: none; }
.program-step-body-inner li {
  position: relative; padding-left: 1.2em; margin-bottom: 0.5em; font-size: 0.92rem; color: var(--ink-soft);
}
.program-step-body-inner li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.program-subhead {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--ink); margin: 0 0 0.7em;
}
.program-bonus-list li::before { content: "✓"; color: var(--accent-dark); }
.program-step-intro { font-size: 0.92rem; color: var(--ink-soft); font-style: italic; margin: 0 0 1rem; }

/* ---------- Nested lesson accordion (inside a program block) ---------- */
.lesson-list { display: flex; flex-direction: column; margin-top: 0.3rem; }
.lesson-item { border-top: 1px solid var(--line); }
.lesson-item:first-child { border-top: none; }
.lesson-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%;
  padding: 0.85rem 0; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-size: 0.96rem; font-weight: 600; color: var(--ink);
}
.lesson-toggle { flex-shrink: 0; font-size: 1.1rem; color: var(--ink-soft); transition: transform 0.2s ease; }
.lesson-item.is-open .lesson-toggle { transform: rotate(45deg); }
.lesson-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.lesson-item.is-open .lesson-body { max-height: 600px; }
.lesson-body-inner { padding: 0 0 1rem; }
.lesson-body-inner ul { margin: 0; padding: 0; list-style: none; }
.lesson-body-inner li {
  position: relative; padding-left: 1.4em; margin-bottom: 0.4em; font-size: 0.87rem; color: var(--ink-soft);
}
.lesson-body-inner li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-dark); }
.lesson-item.no-body .lesson-head { cursor: default; }
.lesson-item.no-body .lesson-toggle { display: none; }

/* ---------- Experts ---------- */

.experts-section { padding: 20px 0 80px; background: var(--cream-deep); }
.experts-grid { display: flex; flex-wrap: wrap; gap: 1.4rem; justify-content: center; }
.expert-card { background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); flex: 1 1 220px; max-width: 250px; }
.expert-photo { aspect-ratio: 1/1; overflow: hidden; }
.expert-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.expert-body { padding: 1.1rem 1.2rem 1.3rem; }
.expert-role { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.3em; }
.expert-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5em; }
.expert-body ul { margin: 0; padding: 0; list-style: none; }
.expert-body li { font-size: 0.82rem; color: var(--ink-soft); padding-left: 1em; position: relative; margin-bottom: 0.3em; }
.expert-body li::before { content: "•"; position: absolute; left: 0; color: var(--accent); }

/* ---------- Pricing ---------- */

.pricing-section { padding: 20px 0 80px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; align-items: stretch; }
.pricing-grid-single { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
.pricing-card {
  background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 2rem 1.7rem;
  display: flex; flex-direction: column;
}
.pricing-card.is-featured { border-color: var(--accent); box-shadow: var(--shadow-md); position: relative; }
.pricing-card-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.4em 1em; border-radius: 999px;
}
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 0.3em; }
.pricing-card-desc { font-size: 0.88rem; margin-bottom: 1.2rem; }
.pricing-card-price { margin-bottom: 1.4rem; }
.pricing-card-price .price-old { font-size: 0.95rem; color: var(--ink-soft); text-decoration: line-through; display: block; }
.pricing-card-price .price-main { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; }
.pricing-card-price .price-alt { font-size: 0.85rem; color: var(--ink-soft); }
.pricing-card ul { list-style: none; margin: 0 0 1.6rem; padding: 0; flex: 1; }
.pricing-card li { display: flex; gap: 0.6em; font-size: 0.88rem; margin-bottom: 0.7em; color: var(--ink); }
.pricing-card li.is-excluded { color: var(--ink-soft); opacity: 0.55; }
.pricing-check { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.pricing-card .btn { width: 100%; }

.pricing-single { max-width: 420px; margin: 0 auto; }

.buy-note {
  margin: 0.6em 0 0;
  font-size: 0.78rem;
  color: var(--ink-soft);
  text-align: center;
}
.hero-actions .buy-note, .course-hero-copy .buy-note { text-align: left; }
.course-cta-inner .buy-note { color: #b6a99a; }

/* ---------- Author card ---------- */

.author-section { padding: 20px 0 80px; }
.author-card {
  display: flex; gap: 1.6rem; align-items: center; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 1.8rem; max-width: 700px; margin: 0 auto;
}
.author-card img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-card h3 { margin-bottom: 0.3em; font-size: 1.15rem; }
.author-card p { margin: 0; font-size: 0.92rem; }
.author-card ul { margin: 0.5em 0 0; padding: 0; list-style: none; }
.author-card li { font-size: 0.88rem; color: var(--ink-soft); padding-left: 1em; position: relative; margin-bottom: 0.3em; }
.author-card li::before { content: "•"; position: absolute; left: 0; color: var(--accent); }

@media (max-width: 600px) {
  .author-card { flex-direction: column; text-align: center; }
}

/* ---------- Testimonials ---------- */

.testimonials-section { padding: 20px 0 80px; background: var(--cream-deep); }
.testimonial-grid { column-count: 2; column-gap: 1.4rem; }
.testimonial-card {
  break-inside: avoid; margin-bottom: 1.4rem; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-md); padding: 1.5rem 1.6rem; box-shadow: var(--shadow-sm);
}
.testimonial-name {
  font-family: var(--font-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em;
  font-size: 0.85rem; color: var(--accent-dark); margin: 0 0 0.7em;
}
.testimonial-date { font-size: 0.78rem; color: var(--ink-soft); margin: 0.9em 0 0.4em; }
.testimonial-card p:not(.testimonial-name):not(.testimonial-date) { font-size: 0.92rem; margin: 0 0 0.8em; }
.testimonial-card p:last-child { margin-bottom: 0; }
.testimonial-featured { column-span: all; display: flex; gap: 1.6rem; align-items: flex-start; }
.testimonial-photo { width: 220px; height: auto; border-radius: var(--radius-md); flex-shrink: 0; object-fit: cover; }
.testimonial-featured .testimonial-body { flex: 1; }

@media (max-width: 760px) {
  .testimonial-grid { column-count: 1; }
  .testimonial-featured { flex-direction: column; }
  .testimonial-photo { width: 100%; max-width: 320px; }
}

/* ---------- FAQ ---------- */

.faq-section { padding: 20px 0 90px; }
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.7rem; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem;
  background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-body); font-weight: 600;
  font-size: 0.96rem; color: var(--ink);
}
.faq-toggle { font-size: 1.2rem; color: var(--accent); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item.is-open .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.is-open .faq-answer { max-height: 300px; }
.faq-answer p { margin: 0; padding: 0 1.3rem 1.1rem; font-size: 0.92rem; }

/* ---------- Final CTA ---------- */

.course-cta { padding: 20px 0 90px; }
.course-cta-inner {
  background: var(--ink); color: #efe6db; border-radius: var(--radius-lg); padding: 3rem 2.5rem; text-align: center;
}
.course-cta-inner h2 { color: #fff; }
.course-cta-inner p { color: #cabeb2; max-width: 50ch; margin: 0 auto 1.6rem; }

/* ---------- Video embed ---------- */

.video-section { padding: 0 0 70px; }
.video-embed {
  position: relative; width: 100%; max-width: 860px; margin: 0 auto; aspect-ratio: 16/9;
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); background: #000;
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- Varna types grid ---------- */

.varna-types-section { padding: 20px 0 70px; }
.varna-types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.varna-type-card { background: #fff; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); text-align: center; }
.varna-type-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.varna-type-card h3 { font-size: 1.02rem; margin: 1rem 1rem 0.4rem; }
.varna-type-card p { font-size: 0.85rem; color: var(--ink-soft); margin: 0 1rem 1.2rem; }

/* ---------- Quote / cover section ---------- */

.varna-quote {
  position: relative; padding: 5rem 0; background-size: cover; background-position: center;
  background-image: linear-gradient(rgba(20,14,10,0.74), rgba(20,14,10,0.74)), url('images/varna-quote-bg.jpg');
  color: #fff; text-align: center;
}
.varna-quote-inner { max-width: 700px; margin: 0 auto; padding: 0 1.5rem; }
.varna-quote-inner .quote-main { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; line-height: 1.35; margin: 0 0 1.2rem; }
.varna-quote-inner .quote-sub { font-size: 0.95rem; color: #e4dcd3; margin: 0; }

/* ---------- Sphere / step accordions ---------- */

.sphere-list, .step-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.7rem; }
.sphere-item, .step-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
.sphere-head, .step-head {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 1.3rem;
  background: none; border: none; cursor: pointer; text-align: left; font-family: var(--font-body); font-weight: 600;
  font-size: 0.98rem; color: var(--ink);
}
.sphere-toggle, .step-toggle { font-size: 1.2rem; color: var(--accent); flex-shrink: 0; transition: transform 0.2s ease; }
.sphere-item.is-open .sphere-toggle, .step-item.is-open .step-toggle { transform: rotate(45deg); }
.sphere-body, .step-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.sphere-item.is-open .sphere-body { max-height: 1500px; }
.step-item.is-open .step-body { max-height: 900px; }
.sphere-body-inner, .step-body-inner { padding: 0 1.3rem 1.2rem; }
.sphere-body-inner p, .step-body-inner p { margin: 0 0 0.9em; font-size: 0.9rem; color: var(--ink-soft); }
.sphere-body-inner p:last-child, .step-body-inner p:last-child { margin-bottom: 0; }
.sphere-body-inner strong { color: var(--ink); font-family: var(--font-display); font-weight: 600; }
.sphere-body-inner ol { margin: 0 0 0.9em; padding-left: 1.2rem; }
.sphere-body-inner ol li { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 0.5em; }
.step-body-inner ul { margin: 0.6em 0 0.9em; padding: 0; list-style: none; }
.step-body-inner ul li { position: relative; padding-left: 1.4em; margin-bottom: 0.4em; font-size: 0.9rem; color: var(--ink-soft); }
.step-body-inner ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-dark); }

/* ---------- Booking CTA with photo ---------- */

.booking-section { padding: 20px 0 90px; }
.booking-card {
  display: flex; align-items: center; gap: 2.2rem; background: var(--ink); color: #efe6db; border-radius: var(--radius-lg);
  padding: 2.5rem; max-width: 900px; margin: 0 auto; overflow: hidden;
}
.booking-card img { width: 200px; height: 240px; object-fit: cover; border-radius: var(--radius-md); flex-shrink: 0; }
.booking-card-body h2 { color: #fff; margin-bottom: 0.6rem; }
.booking-card-body p { color: #cabeb2; margin: 0 0 1.4rem; }

/* ---------- Method badges ---------- */

.method-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; margin: 1.6rem 0 0; }
.method-badge {
  background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 0.6em 1.3em;
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: var(--ink); box-shadow: var(--shadow-sm);
}

/* ---------- Pull quote card ---------- */

.pullquote-section { padding: 20px 0 70px; }
.pullquote-card {
  max-width: 720px; margin: 0 auto; background: var(--ink); color: #fff; border-radius: var(--radius-lg);
  padding: 3rem 2.6rem; text-align: center;
}
.pullquote-card p { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; font-style: italic; line-height: 1.5; margin: 0; color: #fff; }
.pullquote-card cite { display: block; margin-top: 1.2rem; font-style: normal; font-size: 0.85rem; color: #b6a99a; }

/* ---------- Experience stats ---------- */

.stats-strip { padding: 0 0 70px; }
.stats-strip-inner { display: flex; justify-content: center; gap: 3.5rem; flex-wrap: wrap; text-align: center; }
.stat-item strong { display: block; font-family: var(--font-display); font-size: 2.4rem; color: var(--service); }
.stat-item span { font-size: 0.92rem; color: var(--ink-soft); max-width: 20ch; display: block; margin: 0.2rem auto 0; }

/* ---------- Pricing urgency card ---------- */

.price-urgency-section { padding: 20px 0 90px; }
.price-urgency-card {
  max-width: 560px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 2.4rem 2.2rem; text-align: center; box-shadow: var(--shadow-md);
}
.price-urgency-card .price-main { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: var(--ink); }
.price-urgency-card .price-alt { font-size: 0.95rem; color: var(--ink-soft); margin-left: 0.4em; }
.price-urgency-card .urgency-note {
  display: inline-block; margin: 0.9rem 0 1.4rem; background: var(--service-soft); color: var(--service-dark);
  font-weight: 600; font-size: 0.88rem; padding: 0.5em 1.1em; border-radius: 999px;
}
.price-urgency-card p.contact-note { margin: 1rem 0 0; font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Video testimonials ---------- */

.review-video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; max-width: 380px; margin: 0 auto; }
.review-video-card { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); background: #000; }
.review-video-card video { width: 100%; display: block; aspect-ratio: 9/16; object-fit: cover; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .course-hero-inner { grid-template-columns: 1fr; }
  .course-hero-visual { order: -1; }
  .course-hero-visual img { max-width: 300px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .value-strip-inner { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .varna-types-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .checklist-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .value-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .program-step-body-inner { padding-left: 1.4rem; }
  .course-cta-inner { padding: 2.2rem 1.5rem; }
  .varna-quote-inner .quote-main { font-size: 1.2rem; }
  .booking-card { flex-direction: column; text-align: center; padding: 2rem 1.6rem; }
  .booking-card img { width: 160px; height: 190px; }
  .pullquote-card { padding: 2.2rem 1.5rem; }
  .pullquote-card p { font-size: 1.1rem; }
  .stats-strip-inner { gap: 2rem; }
  .review-video-grid { grid-template-columns: 1fr; max-width: 260px; }
}
