/* ========================================
   BOOK A DEMO
   ======================================== */

.demo-hero {
  padding: 180px 0 80px;
  position: relative;
}

.demo-hero__inner {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.demo-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.demo-hero p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-light);
  max-width: 540px;
  margin: 0 auto;
}


/* ── Client logos ─────────────────────── */

.demo-logos {
  padding: 48px 0;
  border-top: 1px solid var(--paper-border);
  border-bottom: 1px solid var(--paper-border);
}

.demo-logos__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: center;
  margin-bottom: 28px;
}

.demo-logos__strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.demo-logo {
  height: 36px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  filter: grayscale(100%) brightness(0);
  opacity: 0.35;
  transition: opacity 0.3s ease;
}

.demo-logo:hover {
  opacity: 0.6;
}


/* ── Form section ─────────────────────── */

.demo-form-section {
  padding: 80px 0 140px;
}

.demo-form-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.demo-form-wrapper h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}


/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  .demo-hero {
    padding: 140px 0 60px;
  }

  .demo-hero h1 {
    font-size: 2.25rem;
  }

  .demo-logos__strip {
    gap: 28px;
  }

  .demo-logo {
    height: 28px;
  }

  .demo-form-section {
    padding: 60px 0 80px;
  }
}
