:root {
  --navy: #06061a;
  --cobalt: #1414c8;
  --mid: #0a0a50;
  --panel: #11112e;
  --lime: #3dffb0;
  --lime-dim: #2bcf8e;
  --cream: #f5f4f0;
  --ink: #111827;
  --soft: #374151;
  --muted: #6b7280;
  --line-lt: #e8e6e0;
  --line-dk: rgba(255, 255, 255, 0.08);
  --mono: 'SF Mono', 'Courier New', monospace;
  --grad: linear-gradient(180deg, #1414c8 0%, #0a0a50 50%, #06061a 100%);
}
/* ============================================================
   BOOK A CONSULTATION PAGE — page-book-a-consultation.css
   Depends on global: wrap, section-white, btn-primary, btn-dark,
   btn-outline-dark, btn-outline-light, eyebrow, section-head,
   checklist, callout-lime, faq-list, faq-item, faq-q, faq-a,
   faq-toggle, contact-card, form-group, form-row, submit-btn,
   form-note, icon-badge, cta-band
   ============================================================ */

/* ─────────────────────────────────────────────────────────
   1. HERO + BOOKING FORM
   ───────────────────────────────────────────────────────── */

.bac-breadcrumb {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}


/* "What we can talk about" box */
.bac-talk-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px 28px;
  margin-top: 40px;
}

.bac-talk-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 16px;
}

.bac-talk-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bac-talk-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.bac-talk-arrow {
  color: #3dffb0;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.bac-talk-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Booking form card */
.bac-form-card {
  padding: 40px;
}

.bac-form-head {
  margin-bottom: 24px;
}

.bac-form-h3 {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 6px;
}

.bac-form-desc {
  font-size: 14px;
  color: var(--muted);
}

/* ─────────────────────────────────────────────────────────
   2. NOT A CLIENT YET
   ───────────────────────────────────────────────────────── */
.bac-nc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) {
  .bac-nc-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.bac-nc-para {
  font-size: 16px;
  color: var(--soft);
  line-height: 1.7;
  margin-bottom: 24px;
}

.bac-nc-ctas {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bac-nc-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bac-nc-card {
  background: #fff;
  border: 1px solid var(--line-lt);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.bac-nc-card-title {
  font-size: 17px;
  margin-bottom: 4px;
}

.bac-nc-card-desc {
  font-size: 14px;
  color: var(--soft);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ─────────────────────────────────────────────────────────
   3. TESTIMONIAL
   ───────────────────────────────────────────────────────── */
.bac-testimonial-block {
  background: var(--grad);
  padding: 72px 48px;
}
@media (max-width: 768px) {
  .bac-testimonial-block {
    padding: 48px 20px;
  }
}

.bac-testimonial-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.bac-testimonial-mark {
  font-size: 72px;
  color: rgba(61, 255, 176, 0.2);
  line-height: 1;
  margin-bottom: 8px;
}

.bac-testimonial-quote {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.bac-testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.bac-testimonial-divider {
  width: 1px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
}

.bac-testimonial-meta-text {
  text-align: left;
}

.bac-testimonial-name {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.bac-testimonial-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2px;
}

.bac-testimonial-stats {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.bac-tstat {
  text-align: center;
}

.bac-tstat-value {
  font-size: 36px;
  font-weight: 800;
  color: #3dffb0;
  letter-spacing: -0.04em;
  line-height: 1;
}

.bac-tstat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bac-tstat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.bac-testimonial-btn-wrap {
  margin-top: 36px;
}


/* ─────────────────────────────────────────────────────────
   4. WHAT HAPPENS NEXT
   ───────────────────────────────────────────────────────── */
.bac-ns-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head.bac-ns-head {
  max-width: 100%;
  text-align: center;
}

.bac-ns-heading {
  margin: 0 auto 14px;
}

.bac-ns-desc {
  margin: 0 auto;
}

.bac-ns-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .bac-ns-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .bac-ns-grid {
    grid-template-columns: 1fr;
  }
}

.bac-ns-card {
  background: #f5f4f0;
  border: 1px solid var(--line-lt);
  border-radius: 14px;
  padding: 24px;
}

.bac-ns-card-dark {
  background: #06061a;
  border: 1px solid rgba(61, 255, 176, 0.2);
}

.bac-ns-badge {
  width: 32px;
  height: 32px;
  background: #06061a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #3dffb0;
  margin-bottom: 16px;
}

.bac-ns-badge-dark {
  background: rgba(61, 255, 176, 0.15);
}

.bac-ns-title {
  margin-bottom: 8px;
}

.bac-ns-title-light {
  color: #fff;
}

.bac-ns-desc-card {
  font-size: 13px;
  color: var(--soft);
  line-height: 1.6;
  margin-bottom: 0;
}

.bac-ns-desc-card-light {
  color: rgba(255, 255, 255, 0.8);
}

/* ─────────────────────────────────────────────────────────
   5. SOCIAL PROOF STRIP
   ───────────────────────────────────────────────────────── */
.bac-sp-block {
  background: #06061a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.bac-sp-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.bac-sp-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  margin-bottom: 32px;
}

.bac-sp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .bac-sp-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .bac-sp-grid {
    grid-template-columns: 1fr;
  }
}

.bac-sp-card {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
}

.bac-sp-card-lime {
  border-color: rgba(61, 255, 176, 0.15);
}

.bac-sp-value {
  font-size: 36px;
  font-weight: 800;
  color: #3dffb0;
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 6px;
}

.bac-sp-caption {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

.bac-sp-source {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bac-sp-footnote {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

/* ─────────────────────────────────────────────────────────
   6. CTA BAND
   ───────────────────────────────────────────────────────── */
.bac-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.bac-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────
   7. DISCLAIMER BAR
   ───────────────────────────────────────────────────────── */
.bac-disclaimer-bar {
  background: #f5f4f0;
  border-top: 1px solid #e8e6e0;
  padding: 14px 48px;
}
@media (max-width: 768px) {
  .bac-disclaimer-bar {
    padding: 14px 20px;
  }
}

.bac-disclaimer-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.bac-disclaimer-bar p {
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

.icon-badge  {
  width: 48px;
  height: 48px;
  background: #06061a;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}