:root {
  --text: #171717;
  --muted: #5f6368;
  --line: #e9e9e9;
  --soft: #f7f7f7;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  background: #ffffff;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  margin: 0;
  background: #ffffff;
  color: var(--text);
}

.page {
  width: min(960px, 100%);
  margin: 0 auto;
  padding: 28px 18px 48px;
}

.hero {
  padding: 20px 0 16px;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 13px;
  line-height: 1;
  color: var(--muted);
  background: #ffffff;
  margin-bottom: 18px;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(34px, 7vw, 64px);
  line-height: 0.96;
  letter-spacing: -0.055em;
  font-weight: 750;
}

.lead {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2.6vw, 21px);
  line-height: 1.42;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 24px 0 0;
}

.benefit {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  padding: 16px;
  min-height: 96px;
}

.benefit strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.benefit span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.form-section {
  margin-top: 18px;
}

.form-shell {
  width: 100%;
  min-height: 1200px;
  overflow: visible;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #ffffff;
}

.form-shell iframe {
  min-height: 1200px !important;
}

@media (max-width: 720px) {
  .page {
    padding: 22px 14px 36px;
  }

  .hero {
    padding-top: 10px;
  }

  .benefits {
    grid-template-columns: 1fr;
  }

  .benefit {
    min-height: auto;
  }

  .form-shell {
    border-radius: 18px;
    min-height: 1300px;
  }

  .form-shell iframe {
    min-height: 1300px !important;
  }
}
