.contact-section {
  padding-top: 24px;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 0%, rgba(17, 123, 255, 0.2), transparent 36%),
    linear-gradient(135deg, rgba(9, 24, 40, 0.98), rgba(5, 13, 23, 0.96));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.32);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 8px 4px;
}

.contact-copy h2 {
  max-width: 650px;
  margin: 10px 0 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.contact-copy > div > p {
  max-width: 610px;
  color: var(--muted);
  font-size: 16px;
}

.contact-points {
  display: grid;
  gap: 11px;
  list-style: none;
}

.contact-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #dbe9f8;
  font-size: 14px;
  font-weight: 800;
}

.contact-points li::before {
  width: 9px;
  height: 9px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(126, 211, 33, 0.55);
  content: "";
  flex: 0 0 auto;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-direct a {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.045);
  color: #e8f4ff;
  font-size: 13px;
  font-weight: 850;
}

.lead-form {
  padding: 24px;
  border: 1px solid rgba(38, 189, 255, 0.2);
  border-radius: 22px;
  background: rgba(2, 9, 17, 0.72);
}

.lead-form h3 {
  margin-bottom: 5px;
  font-size: 22px;
}

.lead-form-intro {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 13px;
}

.form-success {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid rgba(126, 211, 33, 0.42);
  border-radius: 14px;
  background: rgba(126, 211, 33, 0.1);
  color: #eaffd5;
  font-size: 14px;
  line-height: 1.65;
}

.form-success[hidden] {
  display: none;
}

.form-success strong {
  display: block;
  margin-bottom: 2px;
  color: #bfff76;
  font-size: 15px;
}

.lead-form.is-submitting .contact-submit {
  cursor: wait;
  opacity: 0.72;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.contact-field {
  display: grid;
  gap: 7px;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field span {
  color: #dceaf8;
  font-size: 13px;
  font-weight: 850;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  outline: none;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  font: inherit;
  font-size: 15px;
  padding: 12px 13px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.contact-field select option {
  background: #071421;
  color: #fff;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(38, 189, 255, 0.75);
  box-shadow: 0 0 0 3px rgba(38, 189, 255, 0.11);
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #7f93a8;
}

.contact-submit {
  width: 100%;
  margin-top: 16px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin-top: 11px;
  color: var(--muted-2);
  font-size: 11px;
  line-height: 1.6;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

@media (max-width: 920px) {
  .contact-shell {
    grid-template-columns: 1fr;
    padding: 26px;
  }
}

@media (max-width: 620px) {
  .contact-shell {
    padding: 20px;
    border-radius: 20px;
  }

  .lead-form {
    padding: 18px;
  }

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

  .contact-field--full {
    grid-column: auto;
  }
}
