.survey-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  margin-top: 22px;
  align-items: start;
}

.survey-intro,
.survey-form {
  border: 1px solid rgba(255, 255, 255, .11);
  background: rgba(7, 16, 29, .76);
  border-radius: 32px;
  padding: 30px;
}

.survey-intro {
  position: sticky;
  top: 104px;
  background:
    radial-gradient(circle at 80% 18%, rgba(246, 185, 59, .16), transparent 28%),
    rgba(255, 255, 255, .052);
}

.survey-intro h3 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin: 0 0 16px;
}

.survey-intro p {
  color: rgba(255, 255, 255, .70);
  line-height: 1.65;
  font-size: 17px;
  margin: 0;
}

.survey-badge {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 209, 102, .46);
  border-radius: 999px;
  padding: 10px 15px;
  background: rgba(246, 185, 59, .12);
  color: #ffd166;
  text-transform: uppercase;
  letter-spacing: .20em;
  font-size: 12px;
  font-weight: 850;
}

.survey-key-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

.survey-key-points div {
  border: 1px solid rgba(255, 255, 255, .10);
  background: rgba(0, 0, 0, .24);
  border-radius: 20px;
  padding: 16px;
}

.survey-key-points strong {
  display: block;
  color: #ffd166;
  font-size: 22px;
  margin-bottom: 8px;
  min-width: 20px;
}

.survey-key-points span {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .76);
  font-size: 14px;
  line-height: 1.35;
}

.survey-key-points i {
  color: #ffd166;
  margin-right: 8px;
  font-size: 14px;
  opacity: .9;
}

.survey-note {
  margin-top: 22px;
  border: 1px solid rgba(255, 209, 102, .24);
  background: rgba(246, 185, 59, .09);
  border-radius: 22px;
  padding: 18px;
  color: rgba(255, 255, 255, .76);
  line-height: 1.58;
}

.survey-form h3 {
  margin: 0 0 10px;
  font-size: 32px;
  letter-spacing: -.03em;
}

.survey-form > p {
  color: rgba(255, 255, 255, .64);
  line-height: 1.6;
  margin: 0 0 24px;
}

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

label {
  display: block;
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
  font-weight: 750;
  margin: 0 0 9px;
}

input,
select,
textarea {
  width: 100%;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 17px;
  padding: 15px 16px;
  background: rgba(0, 0, 0, .30);
  color: white;
  font: inherit;
  outline: none;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(255, 209, 102, .62);
  box-shadow: 0 0 0 4px rgba(246, 185, 59, .12);
}

.custom-select {
  position: relative;
  margin-top: 12px;
  margin-bottom: 18px;
}

.select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(0, 0, 0, .35);
  cursor: pointer;
}

.select-text {
  color: white;
}

.select-trigger.placeholder .select-text {
  color: rgba(255, 255, 255, .45);
}

.select-icon {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  transition: transform .2s ease, color .2s ease;
}

.custom-select.open .select-icon {
  transform: rotate(180deg);
  color: #ffd166;
}

.select-trigger:hover {
  border-color: rgba(255, 209, 102, .4);
}

.select-options {
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  border-radius: 12px;
  background: #020617;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s ease;
  z-index: 10;
}

.custom-select.open .select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.select-options div {
  padding: 12px;
  cursor: pointer;
  color: rgba(255, 255, 255, .8);
}

.select-options div:hover {
  background: rgba(255, 209, 102, .1);
  color: #ffd166;
}

.select-trigger.error {
  border-color: #ff5a5a;
  box-shadow: 0 0 8px rgba(255, 90, 90, .4);
}

.check-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
}

.check-line input {
  display: none;
}

.check-custom {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(0, 0, 0, .4);
  position: relative;
  transition: all .2s ease;
  flex: 0 0 auto;
}

.check-line:hover .check-custom {
  border-color: rgba(255, 209, 102, .6);
  box-shadow: 0 0 6px rgba(255, 209, 102, .3);
}

.check-line input:checked + .check-custom {
  background: #ffd166;
  border-color: #ffd166;
  box-shadow: 0 0 10px rgba(255, 209, 102, .6);
}

.check-line input:checked + .check-custom::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-size: 13px;
  font-weight: bold;
  color: #000;
}

.check-text {
  line-height: 1.4;
}

.check-line input:checked ~ .check-text {
  color: #ffd166;
}

.survey-submit {
  width: 100%;
  margin-top: 14px;
  border: 0;
  cursor: pointer;
  transition: all .25s ease;
  border-radius: 12px;
  box-shadow: none;
  transform: none;
}

.survey-submit:not(:disabled) {
  background: linear-gradient(90deg, #f6b93b, #ffd166);
  color: #07101d;
  box-shadow: 0 0 36px rgba(246, 185, 59, .36);
}

.survey-submit:disabled {
  background: linear-gradient(90deg, #444, #666);
  color: rgba(255, 255, 255, .4);
  box-shadow: none;
  cursor: not-allowed;
  opacity: .6;
}

.btn-survey {
  box-shadow: none !important;
  filter: none !important;
}

.module-contact {
  margin-top: 22px;
  border: 1px solid rgba(246, 185, 59, .24);
  background: rgba(246, 185, 59, .075);
  border-radius: 22px;
  padding: 18px 20px;
  color: rgba(255, 255, 255, .74);
  font-size: 16px;
}

.module-contact a {
  color: #ffd166;
  font-weight: 800;
  text-decoration: none;
}

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

  .survey-intro {
    position: relative;
    top: auto;
  }
}

@media (max-width: 620px) {
  .form-row,
  .survey-key-points {
    grid-template-columns: 1fr;
  }

  .survey-intro,
  .survey-form {
    padding: 24px;
  }
}