.reach-page-shell {
  min-height: 100vh;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7f3 100%);
}

.reach-page-main {
  padding: 30px 0 80px;
}

.reach-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  width: min(1420px, calc(100vw - 36px));
  margin: 0 auto;
}

.reach-info-panel,
.reach-form-stage,
.reach-form-card {
  border-radius: 32px;
}

.reach-info-panel {
  display: flex;
  min-height: 700px;
  flex-direction: column;
  justify-content: space-between;
  padding: 44px 46px 40px;
  background: #f1f1ef;
}

.reach-info-top h1 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.reach-info-top p:last-child,
.reach-info-item p {
  margin: 20px 0 0;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.75;
}

.reach-info-list {
  display: grid;
  gap: 28px;
}

.reach-info-item span {
  display: block;
  color: #444444;
  font-size: 0.98rem;
  line-height: 1.5;
}

.reach-info-item a,
.reach-info-item p {
  margin: 8px 0 0;
  color: #151515;
  font-size: 1.15rem;
  line-height: 1.5;
}

.reach-social-row {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.reach-social-row a {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #151515;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: lowercase;
}

.reach-form-stage {
  padding: 54px 28px 28px;
  background:
    linear-gradient(180deg, rgba(123, 193, 241, 0.92), rgba(126, 194, 248, 0.78)),
    radial-gradient(circle at 20% 100%, rgba(255, 255, 255, 0.58), transparent 28%),
    radial-gradient(circle at 90% 100%, rgba(176, 227, 135, 0.66), transparent 22%);
}

.reach-form-card {
  max-width: 980px;
  margin: 0 auto;
  padding: 16px;
  background: rgba(255, 255, 255, 0.88);
}

.reach-form {
  display: grid;
  gap: 20px;
  padding: 24px;
  border-radius: 24px;
  background: #ffffff;
}

.reach-form label {
  display: grid;
  gap: 12px;
}

.reach-form label span {
  color: #1e1e1e;
  font-size: 0.98rem;
  font-weight: 600;
}

.reach-form input,
.reach-form textarea {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid rgba(19, 19, 19, 0.08);
  border-radius: 20px;
  outline: none;
  background: #ffffff;
  color: #151515;
  font: inherit;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.reach-form textarea {
  resize: vertical;
  min-height: 170px;
}

.reach-form input:focus,
.reach-form textarea:focus {
  border-color: rgba(19, 19, 19, 0.18);
  box-shadow: 0 0 0 4px rgba(214, 253, 112, 0.18);
}

.reach-submit {
  width: fit-content;
  text-transform: uppercase;
}

.reach-submit:disabled {
  cursor: wait;
  opacity: 0.6;
}

.reach-form-status {
  min-height: 1.4em;
  margin: 0;
  color: rgba(234, 242, 236, 0.78);
  font-size: 0.9rem;
  line-height: 1.5;
}

.reach-form-status[data-state="success"] {
  color: #bfeecf;
}

.reach-form-status[data-state="error"] {
  color: #ffb4a8;
}

.reach-form-status[data-state="pending"] {
  color: #6c7a86;
}

@media (max-width: 980px) {
  .reach-layout {
    grid-template-columns: 1fr;
  }

  .reach-info-panel {
    min-height: 0;
  }
}

@media (max-width: 820px) {
  .reach-page-main {
    padding: 18px 0 60px;
  }

  .reach-layout {
    width: min(1420px, calc(100vw - 24px));
  }

  .reach-info-panel,
  .reach-form-stage {
    padding: 22px;
  }

  .reach-form-card,
  .reach-form {
    padding: 16px;
  }

  .reach-form textarea {
    min-height: 180px;
  }
}
