.snapshot-hero {
  padding: 118px 20px 64px;
}

.snapshot-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.snapshot-meta {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.snapshot-form-section {
  padding-top: 34px;
}

.snapshot-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(360px, 1.08fr);
  gap: 30px;
  align-items: stretch;
}

.snapshot-panel,
.snapshot-form-card {
  background: linear-gradient(180deg, rgba(10, 22, 44, 0.86), rgba(8, 18, 36, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 22px 48px rgba(4, 10, 22, 0.45);
}

.snapshot-panel h2,
.snapshot-form-card h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.7rem);
  letter-spacing: 0.01em;
}

.snapshot-panel ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.snapshot-panel li {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.snapshot-outcome {
  margin: 16px 0 6px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.snapshot-notes {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 600;
}

.snapshot-form-card > p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.78);
  max-width: 60ch;
}

.snapshot-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.snapshot-field {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.snapshot-field:nth-of-type(3),
.snapshot-field:nth-of-type(4) {
  grid-column: 1 / -1;
}

.snapshot-form input,
.snapshot-form textarea {
  padding: 13px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(6, 16, 34, 0.72);
  color: var(--white);
  font-size: 1rem;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.snapshot-form textarea {
  resize: vertical;
  min-height: 120px;
}

.snapshot-form input::placeholder,
.snapshot-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.snapshot-form input:focus,
.snapshot-form textarea:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.7);
  background: rgba(8, 20, 42, 0.92);
  transform: translateY(-1px);
}

.snapshot-submit {
  grid-column: 1 / -1;
  justify-self: center;
  margin-top: 4px;
  min-width: 220px;
}

@media (max-width: 1040px) {
  .snapshot-grid {
    grid-template-columns: 1fr;
  }

  .snapshot-panel,
  .snapshot-form-card {
    padding: 24px;
  }
}

@media (max-width: 720px) {
  .snapshot-hero {
    padding: 108px 20px 54px;
  }

  .snapshot-form {
    grid-template-columns: 1fr;
  }

  .snapshot-field:nth-of-type(3),
  .snapshot-field:nth-of-type(4),
  .snapshot-submit {
    grid-column: auto;
  }
}
