/* ================================
   BOOK A DEMO — page-specific styles
   ================================ */

/* Trust badges row inside the page-hero */
.page-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-6);
}

/* Two-column layout: checklist + Calendly widget */
.demo-book {
  padding: var(--sp-24) 0;
  background: var(--white);
}

.demo-book__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--sp-12);
  align-items: start;
}

.demo-book__info .section-tag { margin-bottom: var(--sp-4); }

.demo-book__info h2 {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--navy-800);
  margin-bottom: var(--sp-6);
  line-height: 1.2;
}

.demo-book__checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.demo-book__checklist li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.demo-book__check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--brand-purple) 12%, white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-book__checklist li:nth-child(4n+1) .demo-book__check { background: color-mix(in srgb, var(--brand-purple) 12%, white); }
.demo-book__checklist li:nth-child(4n+1) .demo-book__check svg { stroke: var(--brand-purple); }
.demo-book__checklist li:nth-child(4n+2) .demo-book__check { background: color-mix(in srgb, var(--brand-orange) 12%, white); }
.demo-book__checklist li:nth-child(4n+2) .demo-book__check svg { stroke: var(--brand-orange); }
.demo-book__checklist li:nth-child(4n+3) .demo-book__check { background: color-mix(in srgb, var(--brand-blue) 12%, white); }
.demo-book__checklist li:nth-child(4n+3) .demo-book__check svg { stroke: var(--brand-blue); }
.demo-book__checklist li:nth-child(4n+4) .demo-book__check { background: color-mix(in srgb, var(--brand-green) 12%, white); }
.demo-book__checklist li:nth-child(4n+4) .demo-book__check svg { stroke: var(--brand-green); }

.demo-book__check svg { width: 14px; height: 14px; }

.demo-book__checklist p {
  margin: 0;
  color: var(--gray-600);
  font-size: var(--text-sm);
  line-height: 1.6;
}

.demo-book__widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-4);
}

@media (max-width: 1024px) {
  .demo-book__grid {
    grid-template-columns: 1fr;
  }
}
