:root {
  --bg: #050704;
  --panel: rgba(13, 18, 14, 0.88);
  --panel-strong: #0d120e;
  --card: #ffffff;
  --ink: #101827;
  --muted: #667085;
  --line: #e6e9ef;
  --green: #7fc96b;
  --green-strong: #64b950;
  --green-soft: rgba(127, 201, 107, 0.13);
  --danger: #b42318;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, rgba(127, 201, 107, 0.16), transparent 30%), #f2f5f1;
}

.page-shell { min-height: 100vh; }
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0,0,0,0.96), rgba(8,12,8,0.95)),
    radial-gradient(circle at 10% 20%, rgba(127, 201, 107, 0.35), transparent 28%);
  color: #fff;
  padding: 46px 20px 36px;
}
.hero-glow { position: absolute; border-radius: 999px; filter: blur(18px); opacity: 0.55; pointer-events: none; }
.hero-glow-a { width: 240px; height: 240px; background: rgba(127, 201, 107, 0.28); left: -80px; top: -80px; }
.hero-glow-b { width: 220px; height: 220px; background: rgba(127, 201, 107, 0.18); right: -60px; bottom: -90px; }
.brand-card {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 28px;
  align-items: center;
}
.brand-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  border-radius: 28px;
  padding: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(127, 201, 107, 0.28);
  box-shadow: 0 18px 60px rgba(127, 201, 107, 0.12);
}
.eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  padding: 7px 12px;
  border: 1px solid rgba(127, 201, 107, 0.45);
  border-radius: 999px;
  color: var(--green);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}
h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.hero-text {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255,255,255,0.74);
  font-size: 18px;
  line-height: 1.55;
}
.trust-row {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 30px auto 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-row span {
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 700;
}
.trust-row span::before { content: "✓"; color: var(--green); margin-right: 7px; }

.main-wrap {
  max-width: 1040px;
  margin: -20px auto 0;
  padding: 0 20px 48px;
  position: relative;
  z-index: 2;
}
.intro-card,
.form-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(231,235,238,0.95);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}
.intro-card { padding: 24px 28px; margin-bottom: 18px; }
.intro-card h2 { margin: 0 0 8px; font-size: 20px; }
.intro-card p { margin: 0; color: var(--muted); line-height: 1.5; }
.form-card { padding: 10px; }
.form-section {
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
}
.form-section:last-of-type { border-bottom: 0; }
.section-head {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  margin-bottom: 18px;
  align-items: start;
}
.section-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--green-soft);
  color: #3f8f31;
  font-size: 13px;
  font-weight: 900;
}
.section-head h2 { margin: 0; font-size: 22px; letter-spacing: -0.02em; }
.section-head p { margin: 5px 0 0; color: var(--muted); font-size: 14px; line-height: 1.45; }
.grid { display: grid; gap: 14px; margin-top: 14px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
label {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #172033;
}
input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 13px;
  border: 1px solid #d6dce5;
  border-radius: 14px;
  background: #fff;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-strong);
  box-shadow: 0 0 0 4px rgba(127, 201, 107, 0.18);
}
textarea { min-height: 110px; resize: vertical; line-height: 1.45; }
.rgpd-box {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #dbe7d8;
  background: linear-gradient(135deg, #f6fff4, #f9fbf8);
  border-radius: 18px;
}
.rgpd-box input { width: 18px; height: 18px; margin: 1px 0 0; }
.rgpd-box strong { display: block; font-size: 14px; margin-bottom: 4px; }
.rgpd-box small { display: block; font-size: 13px; line-height: 1.4; color: var(--muted); font-weight: 500; }
.actions {
  padding: 26px 28px 30px;
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
button {
  appearance: none;
  border: 0;
  border-radius: 16px;
  padding: 15px 22px;
  background: linear-gradient(135deg, var(--green), var(--green-strong));
  color: #071006;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(100, 185, 80, 0.25);
}
button:hover { transform: translateY(-1px); }
button:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.actions p { margin: 0; color: var(--muted); font-size: 13px; }
.message {
  display: none;
  margin: 10px 18px 0;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 700;
  line-height: 1.35;
}
.message.ok { display: block; background: #ecfdf3; color: #05603a; border: 1px solid #abefc6; }
.message.error { display: block; background: #fef3f2; color: #912018; border: 1px solid #fecdca; }
.message.warning { display: block; background: #fffaeb; color: #93370d; border: 1px solid #fedf89; }
.footer-note {
  text-align: center;
  margin: 22px 0 0;
  color: #667085;
  font-size: 13px;
}

@media (max-width: 760px) {
  .hero { padding: 26px 16px 30px; }
  .brand-card { grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .brand-logo { width: 110px; height: 110px; margin: 0 auto; border-radius: 22px; }
  .hero-text { font-size: 15px; margin-left: auto; margin-right: auto; }
  .trust-row { justify-content: center; margin-top: 20px; }
  .main-wrap { padding: 0 12px 34px; }
  .intro-card { padding: 20px; border-radius: 22px; }
  .form-card { border-radius: 22px; padding: 6px; }
  .form-section { padding: 22px 16px; }
  .section-head { grid-template-columns: 1fr; gap: 10px; }
  .section-number { width: 38px; height: 38px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .actions { padding: 20px 16px 24px; }
  button { width: 100%; }
}
