:root {
  color-scheme: light;
  --bg: #f4f7fb;
  --ink: #172033;
  --muted: #61708a;
  --line: #dbe3ef;
  --accent: #147d73;
  --accent-dark: #0f625b;
  --danger: #b3261e;
  --panel: #ffffff;
  --shadow: 0 24px 70px rgba(24, 38, 64, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(135deg, #eef5f8 0%, #f7f8fb 48%, #eef2f0 100%);
  color: var(--ink);
}

.page-shell {
  width: min(1180px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 430px);
  align-items: center;
  gap: 48px;
  padding: 56px 0;
}

.hero {
  min-height: 520px;
  display: flex;
  align-items: center;
  border-radius: 0;
}

.hero__content {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  margin: 24px 0 0;
  max-width: 520px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: #34425a;
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
}

.request-panel {
  background: var(--panel);
  border: 1px solid rgba(190, 202, 219, 0.9);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 28px;
}

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

label {
  display: grid;
  gap: 8px;
  color: #27344b;
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cbd6e4;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 16px;
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

textarea {
  resize: vertical;
  min-height: 112px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(20, 125, 115, 0.12);
}

button {
  border: 0;
  border-radius: 8px;
  min-height: 54px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 17px;
  font-weight: 900;
  transition: background 0.18s ease, transform 0.18s ease;
}

button:hover {
  background: var(--accent-dark);
}

button:active {
  transform: translateY(1px);
}

button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
}

.form-message.is-error {
  color: var(--danger);
}

@media (max-width: 860px) {
  .page-shell {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 28px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 16px;
  }

  h1 {
    font-size: 44px;
  }

  .lead {
    font-size: 19px;
  }
}

@media (max-width: 480px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
  }

  h1 {
    font-size: 36px;
  }

  .request-panel {
    padding: 20px;
  }
}
