:root {
  --bg:#0f172a;
  --bg2:#111827;
  --text:#f8fafc;
  --muted:#cbd5e1;
  --green:#22c55e;
  --green-dark:#16a34a;
  --white:#ffffff;
  --dark:#111827;
  --line:rgba(255,255,255,.12);
}

* { box-sizing:border-box; }

body {
  margin:0;
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:linear-gradient(135deg,var(--bg),var(--bg2));
  color:var(--text);
  line-height:1.5;
}

.wrap {
  width:min(1080px,100%);
  margin:0 auto;
  padding:28px 20px 60px;
}

header {
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:56px;
}

.logo {
  font-size:24px;
  font-weight:900;
  letter-spacing:-0.04em;
}

.badge {
  color:#bbf7d0;
  background:rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.35);
  padding:8px 12px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
}

.hero {
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:42px;
  align-items:center;
}

h1 {
  margin:0 0 24px;
  font-size:clamp(42px,7vw,76px);
  line-height:.95;
  letter-spacing:-0.06em;
}

.lead {
  color:var(--muted);
  font-size:21px;
  margin:0 0 28px;
}

.trust {
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:24px 0;
}

.trust span {
  color:#bbf7d0;
  background:rgba(34,197,94,.12);
  border:1px solid rgba(34,197,94,.35);
  padding:10px 14px;
  border-radius:999px;
  font-weight:800;
}

.note {
  color:#94a3b8;
  font-size:14px;
}

.form-card {
  background:var(--white);
  color:var(--dark);
  border-radius:28px;
  padding:28px;
  box-shadow:0 30px 80px rgba(0,0,0,.28);
}

.form-card h2 {
  margin:0 0 8px;
  font-size:30px;
  letter-spacing:-0.04em;
}

.form-card p {
  color:#475569;
}

form {
  display:grid;
  gap:14px;
  margin-top:20px;
}

label {
  display:grid;
  gap:8px;
  font-weight:800;
  color:#1f2937;
}

input, select, textarea {
  width:100%;
  border:1px solid #d1d5db;
  border-radius:14px;
  padding:14px 14px;
  font:inherit;
  background:#fff;
  color:#111827;
}

input:focus, select:focus, textarea:focus {
  outline:3px solid rgba(34,197,94,.25);
  border-color:var(--green-dark);
}

button {
  border:0;
  border-radius:16px;
  padding:16px 20px;
  font:inherit;
  font-weight:900;
  background:var(--green);
  color:#052e16;
  cursor:pointer;
  box-shadow:0 18px 50px rgba(34,197,94,.28);
}

button:hover {
  background:var(--green-dark);
  color:white;
}

button:disabled {
  opacity:.65;
  cursor:not-allowed;
}

.status {
  min-height:22px;
  font-weight:800;
}

.info {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:70px;
}

.info-card {
  background:rgba(255,255,255,.08);
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
}

.info-card h3 {
  margin:0 0 10px;
  font-size:21px;
}

.info-card p {
  margin:0;
  color:var(--muted);
}

footer {
  margin-top:70px;
  color:#94a3b8;
  font-size:13px;
  border-top:1px solid var(--line);
  padding-top:24px;
}

@media (max-width:820px) {
  header { margin-bottom:36px; }
  .hero, .info { grid-template-columns:1fr; }
}
