/* ============================================================
   Sherloq — Book a Demo page styles
   (page-specific; loaded after styles.css)
   ============================================================ */

.demo-panel { position: relative; }

.demo-hero {
  position: relative;
  padding: 150px 0 220px;
  text-align: center;
  overflow: hidden;
}
.demo-hero h1 {
  font-size: 60px;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: -0.01em;
}

/* ---- Form ---- */
.demo-form-wrap {
  max-width: 460px;
  margin: 72px auto 0;
}
.demo-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.demo-input {
  width: 100%;
  background: var(--bg-elev);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-btn);
  padding: 16px 18px;
  color: var(--text-soft);
  font-family: inherit;
  font-size: 16px;
}
.demo-input::placeholder { color: var(--text-muted); }
.demo-input:focus { outline: none; border-color: rgba(255, 56, 147, 0.55); }
.demo-submit {
  width: 100%;
  justify-content: center;
  font-size: 17px;
}

/* ---- Badges ---- */
.demo-badges {
  width: 430px;
  max-width: 80%;
  margin: 66px auto 0;
}

/* ---- Testimonial ---- */
.demo-testimonial {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 60px auto 0;
  background: var(--bg-card);
  border: 1px solid var(--border-softer);
  border-radius: var(--radius-card);
  padding: 30px 32px;
  text-align: left;
}
.demo-testimonial .co { height: 24px; width: auto; margin-bottom: 16px; }
.demo-testimonial .quote {
  font-size: 22px;
  color: var(--text-soft);
}
.demo-testimonial .t-foot {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border-softer);
}
.demo-testimonial .t-foot img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.demo-testimonial .t-foot .name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-soft);
}
.demo-testimonial .t-foot .role {
  font-size: 14px;
  color: var(--text-muted);
}

/* ---- Bottom pink glow ---- */
.demo-glow {
  position: absolute;
  left: 50%;
  bottom: -40px;
  width: 1400px;
  max-width: 130%;
  height: 520px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(232, 0, 106, 0.34), rgba(232, 0, 106, 0.12) 45%, transparent 72%);
  pointer-events: none;
}

@media (max-width: 640px) {
  .demo-hero { padding: 120px 0 160px; }
  .demo-hero h1 { font-size: 34px; }
  .demo-form-wrap { margin-top: 46px; }
  .demo-testimonial .quote { font-size: 18px; }
}
