/* Shared styles for SEO landing pages (served statically from /public). */
:root {
  --ink: #1f2430; --muted: #5b6472; --line: #e8eaee;
  --brand: #2563eb; --brand-ink: #1e40af; --accent: #7c3aed; --bg: #f7f8fa;
}
* { box-sizing: border-box; }
body {
  margin: 0; color: var(--ink); background: var(--bg);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { color: var(--brand); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 22px; background: #fff; border-bottom: 1px solid var(--line);
}
.nav .brand { font-size: 18px; font-weight: 800; text-decoration: none; color: var(--ink); }
.nav .cta { background: var(--brand); color: #fff; text-decoration: none; padding: 9px 16px; border-radius: 10px; font-weight: 600; font-size: 14px; }
.wrap { max-width: 780px; margin: 0 auto; padding: 20px; }
.hero { text-align: center; padding: 52px 20px 24px; }
.hero h1 { font-size: 34px; line-height: 1.15; letter-spacing: -0.8px; margin: 0 0 14px; }
.hero h1 span { background: linear-gradient(90deg, var(--brand), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { font-size: 17px; color: var(--muted); max-width: 560px; margin: 0 auto 22px; }
.btn {
  display: inline-block; background: linear-gradient(180deg,#2f6bf6,var(--brand));
  color: #fff; text-decoration: none; padding: 13px 26px; border-radius: 12px;
  font-weight: 700; font-size: 16px; box-shadow: 0 4px 14px rgba(37,99,235,.3);
}
.btn:hover { background: var(--brand-ink); }
.pills { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.pills span { font-size: 13px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 12px; color: #334155; }
h2 { font-size: 23px; letter-spacing: -0.4px; margin: 36px 0 10px; }
h3 { font-size: 16px; margin: 20px 0 4px; }
.grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } .hero h1 { font-size: 27px; } }
.card { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px; }
.card h3 { margin: 0 0 6px; }
.card p { margin: 0; font-size: 14px; color: var(--muted); }
.center { text-align: center; margin: 40px 0; }
/* Numbered steps */
.steps { display: flex; flex-direction: column; gap: 12px; margin-top: 16px; }
.step { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.step-n { flex: none; width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--brand), var(--accent)); color: #fff; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.step h3 { margin: 0 0 4px; font-size: 16px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; }
/* FAQ accordion */
.faq { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 2px 16px; }
.faq summary { cursor: pointer; list-style: none; padding: 14px 0; font-weight: 600; font-size: 15px; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 22px; font-weight: 400; color: var(--brand); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.footer { border-top: 1px solid var(--line); background: #fff; padding: 30px 20px; text-align: center; color: var(--muted); font-size: 14px; margin-top: 40px; }
.footer a { margin: 0 8px; }
