:root {
  --form-green: #60f3a9;
  --form-dark: #07100d;
  --form-panel: #102019;
  --form-muted: #9aaba2;
  --form-line: rgba(255, 255, 255, 0.13);
}

.hp-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.early-form {
  max-width: 680px !important;
  padding: 16px !important;
  display: block !important;
}

.early-fields {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10px;
}

.early-form label > span:first-child,
.contact-form label > span:first-child {
  display: block;
  color: #c8d7d0;
  margin: 0 0 7px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.early-form input:not([type="checkbox"]),
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--form-line) !important;
  border-radius: 10px !important;
  background: #0c1813 !important;
  color: #f2f7f4 !important;
  outline: none;
  padding: 14px 15px !important;
  font-size: 11px !important;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.early-form input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--form-green) !important;
  box-shadow: 0 0 0 3px rgba(96, 243, 169, 0.12);
}

.early-form .privacy-consent,
.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--form-muted);
  text-align: left;
  margin: 14px 0;
  font-size: 9px;
  line-height: 1.6;
}

.privacy-consent input {
  flex: none;
  width: 16px !important;
  height: 16px !important;
  margin-top: 2px;
  accent-color: var(--form-green);
}

.privacy-consent a {
  color: var(--form-green);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.early-form .pill {
  width: 100%;
  cursor: pointer;
}

.gp-form button[disabled] {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  display: none;
  border-radius: 10px;
  margin-top: 13px;
  padding: 12px 14px;
  text-align: left;
  font-size: 10px;
  line-height: 1.6;
}

.form-status.success {
  display: block;
  border: 1px solid rgba(96, 243, 169, 0.35);
  background: rgba(96, 243, 169, 0.11);
  color: #d9f9e9;
}

.form-status.error {
  display: block;
  border: 1px solid rgba(255, 129, 129, 0.35);
  background: rgba(255, 100, 100, 0.1);
  color: #ffd6d6;
}

.inner-page {
  min-height: 100vh;
  background: radial-gradient(circle at 78% 18%, rgba(96, 243, 169, 0.13), transparent 28%), #07100d;
}

.inner-page header {
  position: relative;
}

.inner-main {
  min-height: calc(100vh - 78px);
  padding: 88px 0 120px;
}

.contact-heading {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 50px;
}

.contact-heading h1 {
  font-size: clamp(54px, 7vw, 94px);
  margin: 22px 0 0;
}

.contact-heading p {
  color: var(--form-muted);
  font-size: 13px;
  line-height: 1.85;
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  border: 1px solid var(--form-line);
  border-radius: 26px;
  overflow: hidden;
  background: #0d1a15;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.34);
}

.contact-aside {
  background: linear-gradient(155deg, #60f3a9, #22c97e);
  color: #07100d;
  padding: 46px;
}

.contact-aside .contact-mark {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: #07100d;
  margin-bottom: 55px;
}

.contact-aside .contact-mark img {
  width: 48px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
}

.contact-aside h2 {
  max-width: 340px;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.contact-aside p,
.contact-aside li {
  color: #17412f;
  font-size: 10px;
  line-height: 1.75;
}

.contact-aside ul {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.contact-aside li {
  border-top: 1px solid rgba(7, 16, 13, 0.16);
  padding: 13px 0;
  font-weight: 600;
}

.contact-form {
  padding: 46px 52px;
}

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

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

.contact-form textarea {
  min-height: 190px;
  resize: vertical;
}

.contact-form option {
  background: #102019;
  color: #fff;
}

.contact-form .pill {
  cursor: pointer;
  width: 100%;
  margin-top: 4px;
}

.privacy-content {
  width: min(820px, 100% - 36px);
  margin: auto;
}

.privacy-content h1 {
  font-size: clamp(50px, 7vw, 82px);
  margin: 22px 0 35px;
}

.privacy-panel {
  border: 1px solid var(--form-line);
  border-radius: 24px;
  background: #0d1a15;
  padding: 45px;
}

.privacy-panel h2 {
  color: var(--form-green);
  font-size: 20px;
  margin: 34px 0 10px;
}

.privacy-panel h2:first-child {
  margin-top: 0;
}

.privacy-panel p,
.privacy-panel li {
  color: #a2b3aa;
  font-size: 11px;
  line-height: 1.85;
}

.privacy-panel ul {
  padding-left: 20px;
}

.privacy-panel li {
  list-style: disc;
  margin: 5px 0;
}

@media (max-width: 900px) {
  .contact-heading,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .contact-heading {
    gap: 20px;
  }

  .contact-aside .contact-mark {
    margin-bottom: 30px;
  }
}

@media (max-width: 600px) {
  .early-fields,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .inner-main {
    padding: 60px 0 80px;
  }

  .contact-aside,
  .contact-form,
  .privacy-panel {
    padding: 28px 22px;
  }

  .contact-heading h1 {
    font-size: 50px;
  }
}
