/* ═══════════════════════════════════════════════════════════════
   Booking Service — How It Works landing page
   ═══════════════════════════════════════════════════════════════ */

.em-bs-hero {
  background: linear-gradient(160deg, var(--bk) 0%, var(--g1) 100%);
  padding: 64px 24px;
  text-align: center;
}
.em-bs-hero-inner { max-width: 720px; margin: 0 auto; }
.em-bs-hero .em-section-label { color: var(--pm); }
.em-bs-h1 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--wh);
  margin: 12px 0 18px;
}
.em-bs-hero-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--g4);
  max-width: 560px;
  margin: 0 auto 28px;
}
.em-bs-hero-cta { display: inline-flex; }
.em-bs-hero-fine {
  font-size: 12px;
  color: var(--g3);
  margin-top: 14px;
}

.em-bs-block { padding: 56px 0; border-bottom: 1px solid var(--bl); }
.em-bs-block:last-of-type { border-bottom: none; }

/* Steps (shared pattern with business-advisory landing page) */
.em-bs-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.em-bs-step { position: relative; padding-top: 4px; }
.em-bs-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--p);
  color: var(--wh);
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 16px;
}
.em-bs-step h3 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.015em;
  color: var(--bk);
  margin-bottom: 8px;
}
.em-bs-step p { font-size: 14px; color: var(--g2); line-height: 1.65; }

/* What's included */
.em-bs-includes {
  background: var(--bg);
  border: 1px solid var(--bl);
  border-radius: 18px;
  padding: 32px 36px;
  max-width: 680px;
  margin: 0 auto;
}
.em-bs-includes-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--p);
  margin-bottom: 18px;
  text-align: center;
}
.em-bs-includes-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.em-bs-includes-list li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--g2);
  padding-left: 26px;
  position: relative;
}
.em-bs-includes-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 900;
  color: var(--p);
}
.em-bs-includes-list strong { color: var(--bk); font-weight: 700; }

/* Success stories */
.em-bs-stories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 780px;
  margin: 0 auto;
}
.em-bs-story-card {
  background: var(--bg);
  border: 1px solid var(--bl);
  border-radius: 16px;
  padding: 26px 28px;
}
.em-bs-story-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--p);
  margin-bottom: 10px;
}
.em-bs-story-card p { font-size: 14px; color: var(--g2); line-height: 1.65; }

/* Pricing card */
.em-bs-pricing-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--wh);
  border: 2px solid var(--p);
  border-radius: 20px;
  padding: 40px 36px;
  text-align: center;
}
.em-bs-pricing-amount {
  font-size: 52px;
  font-weight: 900;
  color: var(--bk);
  letter-spacing: -0.02em;
  line-height: 1;
}
.em-bs-pricing-unit {
  font-size: 13px;
  color: var(--g3);
  margin: 8px 0 28px;
}
.em-bs-pricing-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  margin-bottom: 28px;
}
.em-bs-pricing-details li {
  font-size: 14px;
  line-height: 1.6;
  color: var(--g2);
  padding-left: 22px;
  position: relative;
}
.em-bs-pricing-details li::before {
  content: '•';
  position: absolute;
  left: 4px;
  color: var(--p);
  font-weight: 900;
}
.em-bs-pricing-details strong { color: var(--bk); font-weight: 700; }

.em-bs-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-align: left;
  background: var(--pl);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 24px;
}
.em-bs-guarantee span { font-size: 20px; line-height: 1; }
.em-bs-guarantee strong { display: block; font-size: 13px; color: var(--bk); margin-bottom: 3px; }
.em-bs-guarantee p { font-size: 13px; color: var(--g2); line-height: 1.5; }

.em-bs-pricing-cta { width: 100%; justify-content: center; }

/* FAQ (shared pattern with business-advisory landing page) */
.em-bs-faq-list { display: flex; flex-direction: column; gap: 24px; max-width: 760px; margin: 0 auto; }
.em-bs-faq-item { border-bottom: 1px solid var(--bl); padding-bottom: 24px; }
.em-bs-faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.em-bs-faq-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--bk);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.em-bs-faq-item p { font-size: 14px; color: var(--g2); line-height: 1.65; }
.em-bs-faq-item p a { color: var(--p); font-weight: 600; }

/* Final CTA */
.em-bs-final-cta {
  text-align: center;
  padding: 64px 24px 24px;
}
.em-bs-final-cta h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  color: var(--bk);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.em-bs-final-cta p {
  font-size: 15px;
  color: var(--g2);
  margin-bottom: 24px;
}

@media (max-width: 780px) {
  .em-bs-steps { grid-template-columns: 1fr; gap: 28px; }
  .em-bs-stories-grid { grid-template-columns: 1fr; }
  .em-bs-includes { padding: 26px 22px; }
  .em-bs-pricing-card { padding: 32px 24px; }
  .em-bs-pricing-amount { font-size: 42px; }
}
