.hero {
  max-width: 1320px;
  margin-top: 40px;
  grid-template-columns: .78fr 1.22fr;
  gap: 54px;
}

.desk {
  width: 100%;
  padding: 32px;
  border-radius: 26px;
}

textarea {
  min-height: 190px;
}

.field-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.field-title label {
  margin: 0;
}

.verify-button {
  min-width: 116px;
  border: 1px solid #315bd9;
  border-radius: 10px;
  padding: 9px 16px;
  background: linear-gradient(135deg, #315bd9, #4774ed);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 7px 16px rgba(49, 91, 217, .26);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.verify-button:hover {
  background: linear-gradient(135deg, #244bc4, #3d68dc);
  box-shadow: 0 9px 20px rgba(49, 91, 217, .34);
  transform: translateY(-1px);
}

.verify-button.verified {
  border-color: #159364;
  background: linear-gradient(135deg, #159364, #22b47c);
  color: #fff;
  box-shadow: 0 7px 16px rgba(21, 147, 100, .24);
}

.field-feedback {
  display: none;
  margin: 7px 2px 0;
  font-size: 11px;
  line-height: 1.5;
}

.field-feedback.show { display: block; }
.field-feedback.ok { color: #14845b; }
.field-feedback.bad { color: #c44444; }

.session-help {
  margin: 10px 0 12px;
  padding: 14px 16px;
  border: 1px solid #dbe5fb;
  border-radius: 12px;
  background: #f6f8ff;
  color: #59667c;
  font-size: 12px;
  line-height: 1.65;
}

.session-help strong {
  display: block;
  margin-bottom: 5px;
  color: #26395f;
  font-size: 12px;
}

.session-help ol {
  margin: 0;
  padding-left: 20px;
}

.session-help a {
  color: #315bd9;
  font-weight: 700;
  text-decoration: none;
}

.session-help a:hover { text-decoration: underline; }

.language-select {
  border: 1px solid #dce4f0;
  border-radius: 10px;
  padding: 8px 10px;
  background: #fff;
  color: #34425a;
  font: 600 12px inherit;
  outline: none;
}

.primary i, .privacy-note i { font-style: normal; }

@media (max-width: 850px) {
  .topbar nav { display: flex; }
  .topbar nav > :not(.language-select) { display: none; }
}

@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 0 14px;
  }

  .desk {
    padding: 26px;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 0 8px;
  }

  .desk {
    padding: 22px 16px;
    border-radius: 20px;
  }
}
