:root {
  --bg: #f6f4fb;
  --text: #1f1b2e;
  --muted: #6b6680;
  --border: #e6e2f0;

  --primary: #4b2e83;
  --primary-hover: #3a2366;

  --accent: #6d28d9;
  --radius: 14px;
  --shadow: 0 12px 30px rgba(75,46,131,0.18);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: radial-gradient(1200px 600px at 50% -10%, rgba(75,46,131,0.18), transparent 55%), var(--bg);
}

/* Layout */
.site-header, .site-main, .site-footer {
  max-width: 980px;
  margin: auto;
  padding: 3rem 1rem;
  text-align: center;
}

/* Logo */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.logo-mark {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.18em;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.logo-text { text-align: left; }
.logo-name { font-weight: 900; }
.logo-tagline { font-size: 0.9rem; color: var(--muted); }

/* Typography */
h1 { font-size: 2.2rem; }
h2 { margin-bottom: 0.6rem; }

.highlight-primary { color: var(--primary); font-weight: 900; }
.highlight-accent { color: var(--accent); font-weight: 900; }

.lead, .trust-line {
  max-width: 760px;
  margin: 0.8rem auto;
  color: var(--muted);
}

/* Pills */
.pill-row {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.pill {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 600;
}

/* Cards */
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.6rem;
  margin: 1.4rem auto;
}

/* Form */
form {
  max-width: 560px;
  margin: auto;
  text-align: left;
}

label { font-weight: 700; margin-top: 0.8rem; display: block; }

input, select {
  width: 100%;
  padding: 0.8rem;
  margin-top: 0.3rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

button {
  margin-top: 1.2rem;
  width: 100%;
  padding: 0.9rem;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

button:hover { background: var(--primary-hover); }

.fineprint { font-size: 0.9rem; color: var(--muted); }

/* Lists */
.steps, .ticks {
  max-width: 720px;
  margin: auto;
  text-align: left;
}

.ticks { list-style: none; padding: 0; }
.ticks li::before { content: "✓ "; color: var(--accent); font-weight: 900; }

/* Footer */
.footer-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.9rem 1.3rem;
  background: var(--primary);
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
}

.footer-note { color: var(--muted); font-size: 0.9rem; }

.footer-note a { color: var(--muted); }
.footer-note a:hover { color: var(--primary); }

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #fff;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 900;
  display: none;
}

@media (max-width: 768px) {
  .sticky-cta { display: block; }
  .logo-text { text-align: center; }
}