:root {
  --bg: #0f1720;
  --bg-alt: #16212c;
  --text: #eef2f6;
  --text-muted: #a9b6c2;
  --accent: #3ba55d;
  --accent-hover: #2f8a4c;
  --border: #26333f;
  --max-width: 880px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  padding: 64px 0 48px;
  text-align: center;
}

.city-badge {
  display: inline-block;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  margin: 0 0 16px;
}

.eyebrow {
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 20px;
  line-height: 1.2;
}

.subtitle {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 640px;
  margin: 0 auto 32px;
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

section { padding: 48px 0; border-top: 1px solid var(--border); }

h2 {
  font-size: 26px;
  margin: 0 0 24px;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  text-align: center;
}

.trust-number {
  font-size: 34px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

.trust-label { color: var(--text-muted); font-size: 14px; }

.process-list {
  max-width: 640px;
  margin: 0 auto;
  padding-left: 24px;
}
.process-list li { margin-bottom: 16px; }

.scope-list {
  max-width: 640px;
  margin: 0 auto 24px;
}
.scope-list li { margin-bottom: 8px; }

.scope p, .scope-note {
  max-width: 640px;
  margin: 0 auto 16px;
  color: var(--text-muted);
}

.price {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
}

.faq-item {
  max-width: 640px;
  margin: 0 auto 24px;
}
.faq-item h3 { margin: 0 0 8px; font-size: 17px; }
.faq-item p { margin: 0; color: var(--text-muted); }

.form-section { background: var(--bg-alt); }

#lead-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#lead-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  color: var(--text-muted);
}

#lead-form input[type="text"] {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
}

#lead-form input[type="text"][readonly] {
  color: var(--text-muted);
  cursor: not-allowed;
  background: var(--bg-alt);
}

.checkbox-label {
  flex-direction: row !important;
  align-items: center;
  gap: 8px !important;
}

.form-note {
  font-size: 13px;
  color: var(--text-muted);
  margin: -8px 0 0;
}

#form-status {
  font-size: 14px;
  min-height: 20px;
}

.footer {
  text-align: center;
  padding: 32px 0;
  color: var(--text-muted);
  font-size: 14px;
}
