* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0a0a0a;
  color: #e8e8e8;
  min-height: 100vh;
  padding: 24px;
}

a { color: #f97316; text-decoration: none; }
a:hover { text-decoration: underline; }

/* -- Nav -- */
nav {
  max-width: 720px;
  margin: 0 auto 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #f97316;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
}

.nav-links a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: #e8e8e8; }

/* -- Landing page -- */
.hero {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding-top: 60px;
}

h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #fff;
}

.subtitle {
  font-size: 18px;
  line-height: 1.6;
  color: #a3a3a3;
  margin-bottom: 40px;
}

.how-it-works {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  text-align: left;
}

.step { flex: 1; }

.step-num {
  font-size: 13px;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 6px;
}

.step-text {
  font-size: 14px;
  color: #a3a3a3;
  line-height: 1.5;
}

.form-area { margin-bottom: 32px; }

.input-group {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

input[type="tel"] {
  flex: 1;
  padding: 16px 20px;
  font-size: 16px;
  border: 1px solid #333;
  border-radius: 8px;
  background: #1a1a1a;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}

input[type="tel"]:focus { border-color: #f97316; }
input[type="tel"]::placeholder { color: #666; }

button {
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 600;
  background: #f97316;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

button:hover { background: #ea580c; }
button:disabled { opacity: 0.5; cursor: not-allowed; }

.consent {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
  text-align: left;
}

.consent a { color: #888; text-decoration: underline; }

.success {
  display: none;
  padding: 24px;
  background: #14532d;
  border: 1px solid #166534;
  border-radius: 8px;
  color: #86efac;
  font-size: 16px;
  line-height: 1.5;
}

.error {
  display: none;
  padding: 12px 16px;
  background: #7f1d1d;
  border: 1px solid #991b1b;
  border-radius: 8px;
  color: #fca5a5;
  font-size: 14px;
  margin-bottom: 12px;
}

.free-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #f97316;
  border: 1px solid #f97316;
  border-radius: 100px;
  padding: 4px 14px;
  margin-bottom: 20px;
}

/* -- Legal pages -- */
.legal {
  max-width: 640px;
  margin: 0 auto;
  padding-top: 20px;
}

.legal h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.legal .last-updated {
  font-size: 14px;
  color: #666;
  margin-bottom: 40px;
}

.legal h2 {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal p, .legal li {
  font-size: 15px;
  line-height: 1.8;
  color: #a3a3a3;
  margin-bottom: 16px;
}

.legal ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.legal li { margin-bottom: 8px; }

/* -- Footer -- */
footer {
  max-width: 720px;
  margin: 64px auto 0;
  padding-top: 24px;
  border-top: 1px solid #1a1a1a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #444;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.footer-links a {
  color: #555;
  text-decoration: none;
}

.footer-links a:hover { color: #888; }

@media (max-width: 480px) {
  h1 { font-size: 32px; }
  .how-it-works { flex-direction: column; gap: 16px; }
  .input-group { flex-direction: column; }
  button { width: 100%; }
  footer { flex-direction: column; gap: 8px; text-align: center; }
  .hero { padding-top: 32px; }
}
