/* pn_proposemodule — homepage contact-form section */
.pn-propose {
  background: #0f1115;
  color: #e6e8ec;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.pn-propose::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(52, 211, 153, .12), transparent 60%),
    radial-gradient(500px 260px at 85% 100%, rgba(52, 211, 153, .08), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.pn-propose__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
  opacity: .9;
}
.pn-propose__container {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .pn-propose__container { grid-template-columns: 1fr; gap: 32px; }
  .pn-propose { padding: 56px 16px; }
}

.pn-propose__badge {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .02em;
  color: #34d399;
  background: rgba(52, 211, 153, .1);
  border: 1px solid rgba(52, 211, 153, .25);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.pn-propose__title {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.15;
  margin: 0 0 16px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -.01em;
}
.pn-propose__subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #a5adbb;
  margin: 0;
  max-width: 40ch;
}

.pn-propose__form {
  background: #161922;
  border: 1px solid #232632;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}
.pn-propose__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
@media (max-width: 600px) {
  .pn-propose__row { grid-template-columns: 1fr; }
}
.pn-propose__field { display: flex; flex-direction: column; gap: 6px; }
.pn-propose__field--full { margin-bottom: 16px; }
.pn-propose__field > span {
  font-size: 13px;
  color: #c8cdd7;
  font-weight: 500;
}
.pn-propose__field input,
.pn-propose__field select,
.pn-propose__field textarea {
  background: #0f1115;
  color: #e6e8ec;
  border: 1px solid #2a2f3d;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
  width: 100%;
}
.pn-propose__field textarea { resize: vertical; min-height: 120px; }
.pn-propose__field input:focus,
.pn-propose__field select:focus,
.pn-propose__field textarea:focus {
  outline: none;
  border-color: #34d399;
  box-shadow: 0 0 0 3px rgba(52, 211, 153, .18);
}
.pn-propose__field input::placeholder,
.pn-propose__field textarea::placeholder { color: #5c6373; }

.pn-propose__hp { position: absolute; left: -9999px; height: 0; width: 0; overflow: hidden; }

.pn-propose__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.pn-propose__btn {
  appearance: none;
  border: 0;
  background: #34d399;
  color: #0f1115;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background-color .15s ease, transform .15s ease;
}
.pn-propose__btn:hover { background: #2bbd87; }
.pn-propose__btn:active { transform: translateY(1px); }
.pn-propose__btn[disabled] { opacity: .7; cursor: progress; }

.pn-propose__btn-spinner {
  width: 14px; height: 14px;
  border: 2px solid rgba(15, 17, 21, .25);
  border-top-color: #0f1115;
  border-radius: 50%;
  display: none;
  animation: pn-propose-spin .7s linear infinite;
}
.pn-propose__btn.is-loading .pn-propose__btn-spinner { display: inline-block; }
@keyframes pn-propose-spin { to { transform: rotate(360deg); } }

.pn-propose__privacy {
  font-size: 12px;
  color: #7a8293;
  margin: 0;
  flex: 1 1 220px;
}

.pn-propose__feedback {
  margin-top: 16px;
  font-size: 14px;
  min-height: 1em;
}
.pn-propose__feedback.is-success { color: #34d399; }
.pn-propose__feedback.is-error   { color: #f87171; }
