:root { color-scheme: light; }

* { box-sizing: border-box; }

body {
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  color: #1a1a1a;
  background: #fafafa;
  line-height: 1.55;
}

.wrap {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

header.site {
  border-bottom: 1px solid #e5e5e5;
  background: white;
}

header.site .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

header.site .logo {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a1a1a;
  text-decoration: none;
}

header.site nav a {
  color: #444;
  text-decoration: none;
  margin-left: 1.5rem;
  font-size: 0.92rem;
}

header.site nav a:hover { color: #2452e8; }

.hero {
  padding: 4rem 0 3rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.hero p.lead {
  font-size: 1.1rem;
  color: #555;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  background: #2452e8;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
}

.btn:hover { background: #1c3fc2; }

.btn.secondary {
  background: white;
  color: #2452e8;
  border: 1px solid #2452e8;
}

.btn.secondary:hover { background: #eef2ff; }

section.feature-grid {
  padding: 3rem 0;
}

.feature-grid .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-grid .card {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 1.5rem;
}

.feature-grid .card h3 {
  margin-top: 0;
  font-size: 1.05rem;
}

.feature-grid .card p {
  color: #555;
  font-size: 0.92rem;
  margin-bottom: 0;
}

section.how-it-works {
  background: white;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 3rem 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  counter-reset: step;
}

.steps .step {
  position: relative;
  padding-left: 2.75rem;
}

.steps .step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #2452e8;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.steps .step h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
}

.steps .step p {
  margin: 0;
  color: #555;
  font-size: 0.9rem;
}

section.cta-band {
  text-align: center;
  padding: 3.5rem 0;
}

section.cta-band h2 {
  margin-bottom: 0.5rem;
}

section.cta-band p {
  color: #555;
  margin-bottom: 1.75rem;
}

form.contact {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 2rem;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;
}

form.contact label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  margin-top: 1rem;
}

form.contact label:first-of-type { margin-top: 0; }

form.contact input,
form.contact textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.92rem;
  font-family: inherit;
}

form.contact textarea { resize: vertical; min-height: 100px; }

form.contact button {
  margin-top: 1.5rem;
  width: 100%;
}

.form-note {
  font-size: 0.82rem;
  color: #888;
  margin-top: 0.75rem;
  text-align: center;
}

.form-status {
  margin-top: 1rem;
  padding: 0.65rem 0.85rem;
  border-radius: 5px;
  font-size: 0.88rem;
  display: none;
}

.form-status.success { display: block; background: #d7f5df; color: #1a7a34; }
.form-status.error { display: block; background: #fbdada; color: #a32020; }

footer.site {
  border-top: 1px solid #e5e5e5;
  padding: 2rem 0;
  text-align: center;
  color: #888;
  font-size: 0.85rem;
}

footer.site a { color: #888; }

/* FAQ page */
.faq-page h1 { margin-bottom: 0.25rem; }
.faq-page .lead { color: #555; margin-bottom: 2.5rem; }

.faq-item {
  background: white;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 1.1rem 1.4rem;
  margin-bottom: 0.85rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
}

.faq-item p {
  color: #444;
  font-size: 0.92rem;
  margin: 0.75rem 0 0;
}

@media (max-width: 640px) {
  .hero h1 { font-size: 1.6rem; }
  header.site nav a { margin-left: 1rem; font-size: 0.85rem; }
}
