:root {
  color-scheme: light;
  --bg: #f3f6f1;
  --ink: #111827;
  --muted: #607084;
  --deep: #10231f;
  --green: #17624f;
  --blue: #355d7d;
  --yellow: #ffd166;
  --coral: #ef7d63;
  --line: #d9e2d7;
  --panel: #ffffff;
  --field: #fbfcf8;
  --shadow: 0 22px 70px rgba(17, 24, 39, .13);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

a { color: inherit; }

.page { overflow: hidden; }

.hero {
  position: relative;
  min-height: 72svh;
  display: grid;
  align-items: center;
  padding: 48px 0 58px;
  color: #fff;
  background: var(--deep);
}

.hero__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__media::after {
  position: absolute;
  content: "";
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 35, 31, .98), rgba(16, 35, 31, .82) 42%, rgba(16, 35, 31, .28)),
    linear-gradient(0deg, rgba(16, 35, 31, .74), transparent 46%);
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__content,
.request {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  margin-bottom: 54px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
p { margin-top: 0; }

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: 64px;
  line-height: 1;
}

.lead {
  max-width: 640px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .88);
  font-size: 20px;
  line-height: 1.5;
}

.hero__button,
.lead-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  border: 0;
  border-radius: 8px;
  background: var(--yellow);
  color: #17130a;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
}

.hero__button { padding: 0 28px; }

.request {
  display: grid;
  grid-template-columns: minmax(0, .76fr) minmax(390px, .82fr);
  gap: 34px;
  align-items: start;
  padding: 52px 0 64px;
}

.request__copy h2 {
  max-width: 600px;
  margin-bottom: 16px;
  font-size: 48px;
  line-height: 1.04;
}

.request__copy p {
  max-width: 590px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.points {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.points span {
  width: fit-content;
  padding: 10px 13px;
  border-radius: 8px;
  background: #e7efe4;
  color: #213229;
  font-weight: 800;
}

.points span:nth-child(2) {
  background: #e8eef4;
  color: #24394d;
}

.points span:nth-child(3) {
  background: #fff1dc;
  color: #4b3320;
}

.lead-form {
  display: grid;
  gap: 15px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.role-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #eef4eb;
}

.role-tabs__button {
  min-height: 44px;
  padding: 8px 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #415061;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  line-height: 1.15;
}

.role-tabs__button.is-active {
  background: #fff;
  color: var(--green);
  box-shadow: 0 8px 18px rgba(17, 24, 39, .08);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.role-section {
  display: grid;
  gap: 15px;
}

.role-section.is-hidden { display: none; }

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label > span {
  color: #293241;
  font-weight: 850;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--field);
  color: var(--ink);
  font: inherit;
}

.lead-form input,
.lead-form select {
  min-height: 48px;
  padding: 0 12px;
}

.lead-form textarea {
  min-height: 140px;
  resize: vertical;
  padding: 13px;
  line-height: 1.45;
}

.lead-form button[type="submit"] {
  width: 100%;
}

.lead-form button[type="submit"]:disabled {
  cursor: wait;
  opacity: .68;
}

.consent {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 10px;
}

.consent input {
  width: 18px;
  min-height: 18px;
  margin: 2px 0 0;
  accent-color: var(--green);
}

.consent span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.consent a {
  color: var(--blue);
  font-weight: 800;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.privacy {
  width: min(760px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.privacy__back {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
}

.privacy h1 {
  color: var(--ink);
  font-size: 44px;
}

.privacy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

@media (max-width: 860px) {
  .hero {
    min-height: 660px;
    padding: 30px 0 46px;
  }

  .brand {
    margin-bottom: 58px;
  }

  h1 {
    font-size: 42px;
  }

  .lead {
    font-size: 16px;
  }

  .hero__button {
    width: 100%;
  }

  .request {
    grid-template-columns: 1fr;
    padding-top: 38px;
  }

  .request__copy h2 {
    font-size: 34px;
  }
}

@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .role-tabs {
    grid-template-columns: 1fr;
  }

  .lead-form {
    padding: 16px;
  }

  .privacy h1 {
    font-size: 34px;
  }
}
