:root {
  --bg: #0b0d12;
  --surface: #14171f;
  --surface-2: #1c202b;
  --text: #eef1f6;
  --muted: #9aa3b2;
  --border: #262b37;
  --accent: #6c8cff;
  --accent-2: #8a6cff;
  --ok: #3ecf8e;
  --radius: 16px;
  --maxw: 920px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
a { color: var(--accent); text-decoration: none; }

/* Hero */
.hero { padding: 88px 0 56px; text-align: center; }
.eyebrow {
  display: inline-block; font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: var(--accent); background: rgba(108,140,255,.1);
  border: 1px solid rgba(108,140,255,.25); padding: 6px 14px; border-radius: 999px; margin-bottom: 22px;
}
h1 { font-size: clamp(30px, 5vw, 52px); line-height: 1.1; letter-spacing: -.02em; margin-bottom: 18px; }
h1 .grad {
  background: linear-gradient(100deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.sub { font-size: clamp(16px, 2.4vw, 20px); color: var(--muted); max-width: 640px; margin: 0 auto 32px; }
.cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; font-weight: 600; font-size: 16px; padding: 14px 28px; border-radius: 12px;
  border: 1px solid transparent; cursor: pointer; transition: transform .12s ease, opacity .12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(100deg, var(--accent), var(--accent-2)); color: #fff; }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }

/* Sections */
section { padding: 44px 0; }
.section-title { font-size: clamp(22px, 3.5vw, 32px); letter-spacing: -.01em; margin-bottom: 8px; text-align: center; }
.section-lead { color: var(--muted); text-align: center; max-width: 620px; margin: 0 auto 36px; }

/* Pain cards */
.grid { display: grid; gap: 16px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 720px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px;
}
.card h3 { font-size: 18px; margin-bottom: 8px; }
.card p { color: var(--muted); font-size: 15px; }
.card .ico { font-size: 24px; margin-bottom: 12px; display: block; }

/* Steps */
.steps { counter-reset: step; display: grid; gap: 14px; }
.step { display: flex; gap: 16px; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; }
.step::before {
  counter-increment: step; content: counter(step);
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(108,140,255,.14); color: var(--accent); border: 1px solid rgba(108,140,255,.3);
  display: grid; place-items: center; font-weight: 700;
}
.step h3 { font-size: 16px; margin-bottom: 4px; }
.step p { color: var(--muted); font-size: 14px; }

/* Includes list */
.includes { list-style: none; display: grid; gap: 12px; max-width: 640px; margin: 0 auto; }
.includes li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.includes li::before { content: "✓"; color: var(--ok); font-weight: 700; flex: 0 0 auto; }

/* Form */
.form-wrap { background: linear-gradient(160deg, var(--surface-2), var(--surface)); border: 1px solid var(--border); border-radius: 20px; padding: 32px; max-width: 560px; margin: 0 auto; }
.form-wrap h2 { font-size: 24px; margin-bottom: 6px; text-align: center; }
.form-wrap .section-lead { margin-bottom: 24px; }
form { display: grid; gap: 14px; }
label { font-size: 13px; color: var(--muted); margin-bottom: -6px; }
input, textarea {
  width: 100%; background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
  padding: 13px 14px; color: var(--text); font-size: 15px; font-family: inherit;
}
input:focus, textarea:focus { outline: none; border-color: var(--accent); }
textarea { resize: vertical; min-height: 80px; }
.hp { position: absolute; left: -9999px; }
.form-msg { text-align: center; font-size: 15px; margin-top: 4px; min-height: 22px; }
.form-msg.ok { color: var(--ok); }
.form-msg.err { color: #ff6b6b; }
.consent { display: block; position: relative; padding-left: 26px; font-size: 12px; color: var(--muted); margin: -2px 0 2px; line-height: 1.45; }
.consent input { position: absolute; left: 0; top: 2px; width: auto; margin: 0; }
.consent a { white-space: normal; }

/* Footer */
footer { padding: 40px 0; text-align: center; color: var(--muted); font-size: 14px; border-top: 1px solid var(--border); margin-top: 40px; }
.nav-mini { padding: 18px 0; display: flex; gap: 18px; justify-content: center; font-size: 14px; }
.nav-mini a { color: var(--muted); }
.nav-mini a:hover { color: var(--text); }
