* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7fb;
  color: #111827;
}

.page {
  min-height: 100vh;
}

.hero {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  background:
    linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  max-width: 900px;
  text-align: center;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.95;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: 42px;
  line-height: 1.1;
}

.hero-text {
  margin: 0 auto;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.96;
}

.container {
  width: min(1150px, calc(100% - 32px));
  margin: -40px auto 40px;
  position: relative;
  z-index: 2;
}

.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
  padding: 24px;
  margin-bottom: 24px;
}

.card h2 {
  margin: 0 0 10px;
  font-size: 28px;
}

.subtext {
  margin: 0 0 20px;
  color: #6b7280;
  line-height: 1.6;
}

.intro-card {
  margin-bottom: 24px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.step {
  background: #f9fafb;
  border: 1px solid #edf2f7;
  border-radius: 16px;
  padding: 20px;
}

.step-number {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #111827;
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
}

.step h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.step p {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
}

.grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 24px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-weight: 700;
  font-size: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 14px 14px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #111827;
  box-shadow: 0 0 0 3px rgba(17, 24, 39, 0.08);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.btn {
  border: none;
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.btn-primary {
  background: #111827;
  color: #fff;
}

.btn-secondary {
  background: #ef4444;
  color: #fff;
}

.btn-light {
  background: #e5e7eb;
  color: #111827;
}

.status-text {
  margin: 16px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: #374151;
  min-height: 22px;
}

.points-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 100%;
}

.points-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #111827, #ef4444);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 14px auto 12px;
  box-shadow: 0 16px 30px rgba(17, 24, 39, 0.18);
}

.points-circle span {
  font-size: 54px;
  font-weight: 800;
}

.points-label {
  margin: 0 0 10px;
  color: #6b7280;
  font-size: 15px;
}

.welcome-text {
  margin: 0;
  color: #374151;
  line-height: 1.6;
}

.feedback-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.full-width {
  grid-column: 1 / -1;
}

.feedback-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 8px;
}

@media (max-width: 900px) {
  .hero h1 {
    font-size: 34px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr;
  }

  .feedback-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 20px, 100%);
    margin-top: -24px;
  }

  .card {
    padding: 18px;
    border-radius: 16px;
  }

  .hero {
    min-height: 290px;
    padding: 30px 16px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero-text {
    font-size: 16px;
  }

  .points-circle {
    width: 150px;
    height: 150px;
  }

  .points-circle span {
    font-size: 44px;
  }
}