* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", Inter, system-ui, sans-serif;
  background: #F8FAFC;
  color: #0F172A;
}

.page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 32px 96px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.title {
  font-weight: 600;
}

.progress-text {
  color: #64748B;
  font-size: 14px;
}

.progress-bar {
  height: 6px;
  background: #E5E7EB;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 48px;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: #4F6EF7;
  transition: width 0.25s ease;
}

.question-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);
}

.question-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.4;
}

.scale {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-radius: 14px;
  overflow: hidden;
  background: #F1F5F9;
  border: 1px solid rgba(15,23,42,0.08);
}

.scale-segment {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: #475569;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.scale-segment:not(:last-child) {
  border-right: 1px solid rgba(15,23,42,0.06);
}

.scale-segment:hover {
  background: rgba(79,110,247,0.08);
}

.scale-segment.selected {
  background: #4F6EF7;
  color: #FFFFFF;
  font-weight: 600;
}

.footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
}

.next-btn {
  height: 52px;
  padding: 0 28px;
  border-radius: 14px;
  border: none;
  background: #4F6EF7;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(79,110,247,0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.next-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(79,110,247,0.22);
}

/* === MOBIL === */
@media (max-width: 768px) {
  .page {
    padding: 32px 16px 72px;
  }

  .header {
    margin-bottom: 10px;
  }

  .title {
    font-size: 15px;
  }

  .progress-text {
    font-size: 13px;
  }

  .progress-bar {
    height: 5px;
    margin-bottom: 28px;
  }

  .question-card {
    padding: 20px;
    margin-bottom: 16px;
    border-radius: 16px;
  }

  .question-card h3 {
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.45;
  }

  .scale {
    border-radius: 12px;
  }

  .scale-segment {
    height: 46px;
    font-size: 15px;
  }

  .footer {
    margin-top: 24px;
  }

  .next-btn {
    width: 100%;
    height: 50px;
    font-size: 15px;
    border-radius: 12px;
  }
}

/* === Kis mobil === */
@media (max-width: 375px) {
  .page {
    padding: 24px 14px 60px;
  }

  .question-card {
    padding: 16px;
    margin-bottom: 14px;
  }

  .question-card h3 {
    font-size: 15px;
    margin-bottom: 14px;
  }

  .scale-segment {
    height: 42px;
    font-size: 14px;
  }
}