* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 2rem 1rem;
  background: #f4f4f2;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: #1c1c1a;
  display: flex;
  justify-content: center;
}

.card {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border: 1px solid #e4e2dc;
  border-radius: 12px;
  padding: 1.5rem;
}

.header { display: flex; align-items: center; gap: 12px; margin-bottom: 1rem; }

.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: #e6f1fb; color: #0c447c;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 15px; flex-shrink: 0;
}

.name { font-weight: 600; font-size: 15px; margin: 0; }
.role { font-size: 13px; color: #6b6a64; margin: 0; }

h1 { font-size: 18px; font-weight: 600; line-height: 1.4; margin: 0 0 0.5rem; }
.intro { font-size: 14px; color: #6b6a64; margin: 0 0 1.25rem; }

.actions { margin-bottom: 1.25rem; }

.btn-primary {
  display: block; text-align: center; text-decoration: none;
  height: 40px; line-height: 40px; border-radius: 6px;
  background: #1c1c1a; color: #ffffff; font-weight: 600; font-size: 14px;
}

.or-divider { font-size: 12px; color: #918f88; text-align: center; margin: 0.5rem 0 0; }

.lead-form { display: flex; flex-direction: column; gap: 10px; border-top: 1px solid #e4e2dc; padding-top: 1rem; }

.lead-form input[type=text], .lead-form input[type=tel], .lead-form input[type=email], .lead-form textarea {
  height: 38px; padding: 8px 12px; border: 1px solid #d8d6cf; border-radius: 6px; font-size: 14px;
  font-family: inherit;
}
.lead-form textarea { height: auto; }

.lead-form fieldset { border: 1px solid #e4e2dc; border-radius: 6px; padding: 8px 12px; margin: 0; }
.lead-form legend { font-size: 12px; color: #6b6a64; padding: 0 4px; }
.lead-form fieldset label { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; margin-right: 12px; }

.lead-form button {
  height: 40px; border: none; border-radius: 6px;
  background: #1c1c1a; color: #ffffff; font-weight: 600; font-size: 14px; cursor: pointer;
}
.lead-form button:disabled { opacity: 0.5; cursor: default; }

.status { font-size: 14px; margin: 0.75rem 0 0; }
.status.error { color: #a32d2d; }
.status.success { color: #3b6d11; }

.disclaimer { font-size: 12px; color: #918f88; margin: 0.75rem 0 0; }
