.pfa {
  width: 100%;
  padding: var(--pfa-pad-top, 28px) 20px var(--pfa-pad-bottom, 48px);
  background: var(--pfa-bg, #f7f4ec);
  box-sizing: border-box;
  scroll-margin-top: 100px;
}

.pfa__inner {
  max-width: var(--pfa-max, 1400px);
  margin: 0 auto;
}

.pfa__panel {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
  padding: 36px;
  color: #fff;
  background: linear-gradient(135deg, #214f2f, #2f7d40 60%, #f0b25c);
  border-radius: 28px;
  box-sizing: border-box;
}

.pfa__title {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.pfa__desc {
  margin: 0;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.6;
}

.pfa__form-wrap {
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.pfa__form-host,
.pfa__form-host form {
  display: block;
  width: 100%;
}

.pfa__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.pfa__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.pfa__label {
  color: #5a6558;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.pfa__input {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  color: #1a2e1f;
  font-size: 14px;
  line-height: 1.3;
  background: #fff;
  border: 1px solid #d9e1d7;
  border-radius: 12px;
  outline: none;
  box-sizing: border-box;
}

.pfa__input:focus {
  border-color: #214f2f;
  box-shadow: 0 0 0 3px rgba(33, 79, 47, 0.12);
}

.pfa__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  background: #214f2f;
  border: 0;
  border-radius: 999px;
}

.pfa__submit:hover {
  background: #183a23;
}

.pfa__msg {
  margin-bottom: 12px;
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.4;
  border-radius: 10px;
}

.pfa__msg--ok {
  color: #214f2f;
  background: #edf5ee;
}

.pfa__msg--err {
  color: #8a2f2f;
  background: #fdeeee;
}

@media (max-width: 959px) {
  .pfa__panel {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .pfa__title {
    font-size: 28px;
  }

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