/* Vanday — /demo
   Booking page. The Google scheduler is embedded so the visitor stays on
   vanday.ai through the whole booking, with somewhere to go afterwards. */

.demo-hero {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 24px 8px;
  text-align: center;
}
.demo-h1 {
  margin: 16px 0 14px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
}
.demo-h1 em { font-style: italic; color: var(--accent); }
.demo-lead {
  margin: 0 auto;
  max-width: 620px;
  color: var(--text-muted, #5c554d);
  font-size: 17px;
  line-height: 1.6;
}

/* Scheduler + "what happens next" sit side by side on desktop, stacked on
   mobile. The iframe needs a generous fixed height: Google's scheduler has its
   own internal scrolling and collapses to an unusable sliver if left to size
   itself. */
.demo-embed-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 24px 8px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.demo-embed {
  background: var(--surface, #fff);
  border: 1px solid var(--border, #e8e6e1);
  border-radius: 16px;
  overflow: hidden;
  min-height: 640px;
}
.demo-embed iframe {
  display: block;
  width: 100%;
  height: 640px;
  border: 0;
}

.demo-next {
  background: var(--surface-2, #fdf8f3);
  border: 1px solid var(--border, #e8e6e1);
  border-radius: 16px;
  padding: 24px 24px 20px;
}
.demo-next h2 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.demo-next ul { margin: 0; padding-left: 18px; }
.demo-next li {
  margin: 0 0 12px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted, #5c554d);
}
.demo-next li strong { color: var(--text, #2a2622); font-weight: 600; }
.demo-next-fine {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--border, #e8e6e1);
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-faint, #8a837b);
}
.demo-next-fine a { color: var(--accent); }

/* Keep exploring */
.demo-continue {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 24px 88px;
}
.demo-continue-h {
  margin: 0 0 6px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.demo-continue-sub {
  margin: 0 0 24px;
  color: var(--text-muted, #5c554d);
  font-size: 15px;
}
.demo-continue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.demo-card {
  display: block;
  padding: 20px 20px 18px;
  border: 1px solid var(--border, #e8e6e1);
  border-radius: 14px;
  background: var(--surface, #fff);
  text-decoration: none;
  color: inherit;
  transition: border-color 140ms, transform 140ms;
}
.demo-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.demo-card h3 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.demo-card p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted, #5c554d);
}
.demo-card-go {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 900px) {
  .demo-embed-wrap { grid-template-columns: 1fr; }
  .demo-hero { padding-top: 48px; }
  /* Taller frame on phones, not shorter. Google's scheduler scrolls INSIDE
     the iframe, so a short box means a cramped nested scroll — the single most
     annoying thing you can do to someone booking on a phone. 640px still
     leaves the panel below it visible on a normal handset. */
  .demo-embed, .demo-embed iframe { min-height: 640px; height: 640px; }
}
