/* ==========================================================================
   ADNAN KABIR — book-a-session.css
   Loaded ONLY by book-a-session.html. Every selector here is new or
   duplicated from work-with-me.css/free-audit.css (never imported
   directly, per the page-isolation rule), so no other page can be
   affected.

   Ported from the standalone Elementor snippet at "WEBSITE DESIGN/FOR
   ELEMENTOR/Book A Diagnostic Session/book-a-session.html", rebuilt on
   this site's own tokens/components. Per instruction, the source's fully
   interactive fake calendar (.bk-cal-grid / .cal-day / .slot / the JS that
   drives them) is intentionally NOT ported — .bk-widget is a plain
   placeholder box awaiting a real scheduler embed (Calendly / Cal.com /
   SavvyCal), so this page needs no page-specific JS at all.

   Reuses .hero (a --center variant, duplicated from work-with-me.css),
   .kicker, .chip, .btn, .faq (duplicated from free-audit.css), .finale,
   .footer — plus the diagnostic steps timeline, the checklist box and the
   outcomes grid, which have no equivalent elsewhere.
   ========================================================================== */

.page-section {
  padding: var(--section-y) 0;
  border-bottom: 1px solid var(--rule);
}
.section-head { max-width: 40rem; margin-bottom: clamp(2rem, 4vw, 2.75rem); }
.section-head .h2 { margin-bottom: .3em; }
.section-head--center { max-width: 40rem; margin-inline: auto; text-align: center; }

/* ---------- § After You Book / § During the Session — merged side by side */

.bas-split { display: grid; gap: clamp(2.5rem, 5vw, 4rem); }
@media (min-width: 860px) {
  .bas-split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.bas-split .diag-steps,
.bas-split .check-box { max-width: none; }

/* ---------- Hero -----------------------------------------------------------
   Centered, single column at every width — same shape as work-with-me.html's
   CTA-driven hero. Duplicated rather than shared so each page's stylesheet
   stays independent. */

.hero--center {
  min-height: 0;
  padding: clamp(9rem, 22vh, 13rem) 0 clamp(3rem, 7vw, 4.5rem);
  text-align: center;
}
.hero--center .hero__inner { grid-template-columns: minmax(0, 1fr); justify-items: center; }
.hero--center .hero__copy { max-width: 44rem; }
.hero--center .eyebrow { justify-content: center; }
.hero--center .hero__lede { max-width: 52ch; margin-inline: auto; }

.hero__subh {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--ink);
}

/* Same descender fix as every other page: .display's line-height .96 clips
   the stroke-word's paintable box short of the font's true descent. "back"
   has no descenders here, but the rule is kept for consistency/future words. */
.hero--center .stroke-word {
  padding-block: .12em;
  margin-block: -.12em;
}

/* ---------- Booking widget placeholder --------------------------------- */

.bk-widget {
  max-width: 46rem;
  margin: clamp(2.5rem, 5vw, 3.5rem) auto 0;
  min-height: 20rem;
  display: grid;
  place-items: center;
  gap: .5rem;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px dashed var(--rule-2);
  border-radius: var(--r-md);
  background: var(--elev);
  text-align: center;
}
.bk-widget__label { color: var(--ink-3); }
.bk-widget__note { color: var(--ink-3); font-size: .875rem; max-width: 32ch; }

/* ---------- § What Happens After You Book — steps timeline ---------------- */

.diag-steps {
  position: relative;
  display: grid;
  gap: 0;
  max-width: 40rem;
}
.diag-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding-bottom: clamp(1.75rem, 4vw, 2.25rem);
}
.diag-step:last-child { padding-bottom: 0; }
.diag-step::before {
  content: '';
  position: absolute; left: 1.625rem; top: 3.25rem; bottom: -.0625rem;
  width: 1px;
  background: var(--rule-2);
}
.diag-step:last-child::before { display: none; }

.diag-step__num {
  display: grid; place-items: center;
  width: 3.25rem; height: 3.25rem;
  border-radius: 50%;
  border: 1px solid var(--rule-2);
  background: var(--elev);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  z-index: 1;
}
.diag-step.is-active .diag-step__num { background: var(--accent); border-color: var(--accent); color: var(--on-accent); }

.diag-step__text { padding-top: .5rem; }
.diag-step__text h3 { font-size: 1.1875rem; font-weight: 700; margin-bottom: .3rem; }
.diag-step__text p { color: var(--ink-2); font-size: .9375rem; }

/* ---------- § During the Session — checklist ------------------------------ */

.check-box {
  max-width: 36rem;
  margin-top: clamp(1.5rem, 3vw, 2rem);
  padding: 0 clamp(1.5rem, 3vw, 1.9rem);
  border: 1px solid var(--rule-2);
  border-radius: var(--r-md);
}
.check-box__item {
  display: flex; align-items: center; gap: .9rem;
  padding: 1rem 0;
  border-top: 1px solid var(--rule);
  color: var(--ink-2);
  font-size: 1rem;
}
.check-box__item:first-child { border-top: 0; }
.check-box__item svg {
  width: 1.35rem; height: 1.35rem; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-text);
  padding: .3rem;
  box-sizing: border-box;
  stroke-width: 2.4;
}

/* ---------- § Outcomes ------------------------------------------------- */

.outcome-grid { display: grid; gap: clamp(1.25rem, 2.5vw, 1.75rem); margin-top: clamp(1.75rem, 4vw, 2.25rem); }
@media (min-width: 760px) { .outcome-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.outcome-card {
  padding: clamp(1.5rem, 3vw, 1.75rem);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  background: var(--elev);
}
.outcome-card--hl { background: var(--accent-soft); border-color: var(--accent-line); }
.outcome-card__num {
  display: grid; place-items: center;
  width: 2.25rem; height: 2.25rem;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .875rem;
  margin-bottom: 1.35rem;
}
.outcome-card--hl .outcome-card__num { background: var(--accent); color: var(--on-accent); }
.outcome-card h3 { font-size: 1.1875rem; line-height: 1.25; margin-bottom: .75rem; }
.outcome-card p { color: var(--ink-2); font-size: .9375rem; }

/* ---------- § FAQ -----------------------------------------------------------
   Native <details>/<summary> — duplicated from free-audit.css. */

.faq { border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }

.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  min-height: 2.75rem;
  padding: clamp(1.15rem, 2.5vw, 1.5rem) 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.0625rem; font-weight: 600; font-stretch: 96%;
  letter-spacing: -.015em;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { content: ''; }

.faq-item__ic {
  position: relative; flex: none;
  width: 1.5rem; height: 1.5rem;
  border: 1px solid var(--rule-2);
  border-radius: 50%;
  transition: border-color var(--t-fast) linear, background-color var(--t-fast) linear;
}
.faq-item__ic::before, .faq-item__ic::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  background: var(--ink-2);
  transition: transform var(--t-med) var(--ease-out), background-color var(--t-fast) linear;
}
.faq-item__ic::before { width: 8px; height: 1px; transform: translate(-50%, -50%); }
.faq-item__ic::after  { width: 1px; height: 8px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-item__ic::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-item summary:hover .faq-item__ic,
.faq-item[open] .faq-item__ic { border-color: var(--accent-line); background: var(--accent-soft); }
.faq-item summary:hover .faq-item__ic::before,
.faq-item[open] .faq-item__ic::before,
.faq-item summary:hover .faq-item__ic::after,
.faq-item[open] .faq-item__ic::after { background: var(--accent-text); }

.faq-item p {
  padding-bottom: clamp(1.15rem, 2.5vw, 1.5rem);
  max-width: 60ch;
  color: var(--ink-2);
  font-size: .9375rem;
  text-wrap: pretty;
}
.bas-hero.hero--center .hero__copy {
    max-width: 60rem;
}