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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f9f9f7;
  color: #1a1a1a;
  line-height: 1.6;
}

.container {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 24px;
}

header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
}

.logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1a1a1a;
}

.sector-tag {
  font-size: 0.75rem;
  font-weight: 600;
  background: #dbeafe;
  color: #1d4ed8;
  padding: 3px 10px;
  border-radius: 12px;
  letter-spacing: 0.3px;
}

h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

h1 em {
  font-style: normal;
  color: #2563eb;
}

.subtitle {
  font-size: 1.05rem;
  color: #444;
  margin-bottom: 32px;
  max-width: 560px;
}

.benefits {
  list-style: none;
  margin-bottom: 48px;
}

.benefits li {
  padding: 14px 0 14px 28px;
  position: relative;
  border-bottom: 1px solid #e5e5e5;
  font-size: 0.95rem;
}

.benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 700;
}

.form-section {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 32px;
}

.form-section h2 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 0.95rem;
  width: 100%;
  outline: none;
  transition: border-color 0.15s;
}

input:focus {
  border-color: #2563eb;
}

button[type="submit"] {
  padding: 14px 24px;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
}

button[type="submit"]:hover {
  background: #1d4ed8;
}

button[type="submit"]:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

.form-message {
  margin-top: 12px;
  font-size: 0.9rem;
  min-height: 20px;
}

.form-message.success { color: #16a34a; }
.form-message.error { color: #dc2626; }

footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
  font-size: 0.85rem;
  color: #9ca3af;
}
