/* =============================================
   BOOK A CALL PAGE
   ============================================= */

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Back link in nav */
.bac-nav__back {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  text-decoration: none;
  transition: color 0.2s;
}

.bac-nav__back:hover {
  color: var(--white);
}

/* ---- MAIN LAYOUT ---- */
.bac-main {
  flex: 1;
  padding: 120px 0 80px;
}

.bac-inner {
  display: grid;
  grid-template-columns: 1fr 660px;
  gap: 64px;
  align-items: start;
}

@media (max-width: 1200px) {
  .bac-inner {
    grid-template-columns: 1fr 560px;
    gap: 48px;
  }
}

@media (max-width: 880px) {
  .bac-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .bac-main {
    padding: 100px 0 60px;
  }
}

/* ---- LEFT COPY ---- */
.bac-headline {
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 18px;
}

.bac-sub {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 460px;
}

/* What we'll cover */
.bac-what h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 20px;
}

.bac-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.bac-checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.bac-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(251,146,60,0.12);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.bac-checklist li div strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.bac-checklist li div p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.55;
}

/* Proof stats */
.bac-proof {
  display: flex;
  gap: 24px;
  padding: 24px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.bac-proof__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 80px;
}

.bac-proof__item span {
  font-size: 22px;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.bac-proof__item small {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
}

/* Reassurance line */
.bac-reassurance {
  padding-left: 0;
}

.bac-reassurance p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---- RIGHT: CALENDLY ---- */
.bac-right {
  /* not sticky — widget is too tall to pin */
}

.bac-calendly-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
