@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');
:root {
  --bg: #fbf7ff;
  --text: #1b1430;
  --muted: #3c3650;
  --card: #ffffff;
  --border: #e6def5;
  --accent: #9b6bff;
  --accent-strong: #6c3fe0;
}
body { margin:0; font-family:'Inter',sans-serif; background:var(--bg); color:var(--text); line-height:1.65; }
a { color: var(--accent-strong); text-decoration:none; }
a:hover { text-decoration:underline; }
.site-header,.site-footer { background:#fff; border-bottom:1px solid var(--border); padding:16px 24px; }
.site-footer { border-top:1px solid var(--border); border-bottom:none; }
.logo { font-weight:700; color:var(--accent-strong); }
.top-nav a { margin-right:14px; font-weight:600; }
.hero { padding:28px 24px; display:grid; grid-template-columns:1.6fr 1fr; gap:18px; }
.block { background:#fff; border:1px solid var(--border); border-radius:10px; padding:18px 20px; margin:0 24px 18px; box-shadow:0 8px 26px rgba(108,63,224,0.06); }
.card-grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap:12px; }
.card { background: var(--card); border:1px solid var(--border); border-radius:8px; padding:12px; }
.faq-col { background:#fff; border:1px solid var(--border); border-radius:10px; padding:14px; }
.faq-item { border-bottom:1px solid var(--border); padding-bottom:10px; margin-bottom:10px; }
.faq-item:last-child { border-bottom:none; }
@media(max-width:960px){ .hero{grid-template-columns:1fr;} }

