* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: #0f172a;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.22), transparent 35%),
    linear-gradient(135deg, #f8fafc 0%, #eaf1ff 100%);
}

.page {
  min-height: 100vh;
  padding: 48px 20px;
}

.hero {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  padding: 20px;
}

.badge {
  display: inline-flex;
  padding: 9px 14px;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 18px;
}

h1 {
  font-size: clamp(40px, 6vw, 70px);
  line-height: 0.98;
  margin: 0 0 22px;
  letter-spacing: -2.5px;
}

.hero-content p {
  max-width: 590px;
  font-size: 18px;
  line-height: 1.7;
  color: #475569;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.benefits span {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.3);
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 700;
  color: #334155;
  backdrop-filter: blur(12px);
}

.lead-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 30px;
  padding: 34px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.15);
  backdrop-filter: blur(16px);
}

.form-header h2 {
  margin: 0 0 8px;
  font-size: 30px;
  letter-spacing: -1px;
}

.form-header p {
  margin: 0 0 24px;
  color: #64748b;
  line-height: 1.6;
}

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

label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
  color: #334155;
}

.full {
  margin-top: 18px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dbe3ef;
  border-radius: 16px;
  padding: 15px 16px;
  font-size: 15px;
  color: #0f172a;
  background: #f8fafc;
  outline: none;
  transition: 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.13);
}

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

button {
  width: 100%;
  margin-top: 22px;
  border: 0;
  border-radius: 18px;
  padding: 17px 22px;
  background: linear-gradient(135deg, #2563eb, #4f46e5);
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.35);
  transition: 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(37, 99, 235, 0.42);
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

button span {
  margin-left: 8px;
}

.privacy {
  text-align: center;
  color: #64748b;
  font-size: 13px;
  margin: 16px 0 0;
}

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

  .hero-content {
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .benefits {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .page {
    padding: 28px 14px;
  }

  .lead-card {
    padding: 24px;
    border-radius: 24px;
  }

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

  h1 {
    letter-spacing: -1.5px;
  }
}
