/* ─── Demo Hero ──────────────────────────────────────────── */
.demo-hero {
  padding: calc(var(--nav-height) + 60px) 0 80px;
  background: var(--white);
}
.demo-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
/* ─── Form col ───────────────────────────────────────────── */
.demo-form-col { padding-top: 8px; }
.demo-form { display: flex; flex-direction: column; }
.checkbox-grid { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.checkbox-label { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink); cursor: pointer; }
.checkbox-label input { width: 16px; height: 16px; accent-color: var(--green); cursor: pointer; }
.radio-group { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.radio-label { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--ink); cursor: pointer; }
.radio-label input { width: 16px; height: 16px; accent-color: var(--green); cursor: pointer; }
/* ─── Success ────────────────────────────────────────────── */
.demo-success { text-align: center; padding: 48px 0; }
.success-icon {
  width: 72px; height: 72px; border-radius: 50%; background: var(--green);
  color: #fff; font-size: 32px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
/* ─── Info col ───────────────────────────────────────────── */
.demo-info-col { position: sticky; top: calc(var(--nav-height) + 32px); }
.demo-info-card {
  background: var(--ink-2); border-radius: var(--r-2xl); padding: 32px;
  border: 1px solid rgba(255,255,255,0.07); color: #fff;
}
.demo-info-card h3 { color: #fff; }
.demo-step { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 24px; }
.demo-step:last-child { margin-bottom: 0; }
.demo-step-num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: rgba(19,166,104,0.2); border: 1px solid rgba(19,166,104,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 14px; font-weight: 800; color: var(--green-mid);
}
.demo-step-title { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 5px; }
.demo-step-desc  { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; }
/* ─── Trust card ─────────────────────────────────────────── */
.demo-trust-card { background: var(--green-pale); border-radius: var(--r-xl); padding: 24px; border: 1px solid var(--border); }
.demo-trust-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--green); margin-bottom: 14px; }
.demo-trust-row { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--ink); margin-bottom: 10px; }
.demo-trust-row:last-child { margin-bottom: 0; }
.trust-check { color: var(--green-mid); font-weight: 700; flex-shrink: 0; }
/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .demo-grid { grid-template-columns: 1fr; }
  .demo-info-col { position: static; }
}
