/* Fraxtal Music - Gamified Surveys Styles */
:root {
  --glass-bg: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.14);
  --primary: #ff3db7;
  --primary-2: #7b5cff;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.7);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container { max-width: 1024px; }

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.neon-border {
  position: relative;
}
.neon-border::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  /* Cross-browser masking for the gradient border */
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.glass-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  transition: all .2s ease;
}
.glass-button.primary {
  background: linear-gradient(135deg, rgba(255,61,183,0.2), rgba(123,92,255,0.2));
  border-color: rgba(255,255,255,0.25);
}
.glass-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

.required-pill {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--muted);
  font-size: 12px;
}

.progress-wrapper { min-width: 220px; }
.progress-label { color: var(--muted); font-size: 12px; margin-bottom: 6px; text-align: right; }
.progress-bar {
  height: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.progress-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: progressShine 2s ease-in-out infinite;
}

@keyframes progressShine {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* Gamification Effects */
.confetti {
  position: fixed;
  top: -10px;
  width: 8px;
  height: 8px;
  z-index: 9999;
  animation: confettiFall 3s ease-in-out forwards;
}

@keyframes confettiFall {
  0% {
    transform: translateY(-10px) rotateZ(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(100vh) rotateZ(720deg);
    opacity: 0;
  }
}

.celebration-emoji {
  position: fixed;
  top: -50px;
  z-index: 9999;
  animation: celebrationFloat 5s ease-out forwards;
  pointer-events: none;
}

@keyframes celebrationFloat {
  0% {
    transform: translateY(-50px) rotate(0deg);
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

/* Question components */
.options-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  padding: 10px 14px;
  border-radius: 12px;
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  transition: all .18s ease;
}
.chip:hover { background: rgba(255,255,255,0.12); }
.chip.active {
  background: linear-gradient(135deg, rgba(255,61,183,0.18), rgba(123,92,255,0.18));
  border-color: rgba(255,255,255,0.3);
}

.nps-scale { display: flex; gap: 8px; flex-wrap: wrap; }
.nps-legend { display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; margin-top: 6px; }

.emoji-group { display: flex; gap: 12px; flex-wrap: wrap; }
.emoji-btn { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; padding: 8px 10px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.06); cursor: pointer; }
.emoji { font-size: 28px; line-height: 1; }
.emoji-label { font-size: 12px; color: var(--muted); }
.emoji-btn.active { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.28); }

.rating-stars {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
}
.rating-star {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease;
  border-radius: 50%;
}
.rating-star::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,208,87,0.45) 0%, rgba(255,208,87,0) 70%);
  opacity: 0;
  transform: scale(0.8);
  transition: opacity .2s ease, transform .2s ease;
  pointer-events: none;
}
.rating-star .star-icon {
  width: 2.4rem;
  height: 2.4rem;
  transition: transform .18s ease;
}
.rating-star .star-outline {
  fill: transparent;
  stroke: rgba(255,255,255,0.35);
  stroke-width: 1.6;
  transition: fill .18s ease, stroke .18s ease, filter .18s ease;
}
.rating-star.active .star-outline {
  fill: #ffd057;
  stroke: #ffd057;
}
.rating-star.hover .star-outline {
  fill: rgba(255,208,87,0.4);
  stroke: #ffd057;
}
.rating-star:hover::before,
.rating-star.hover::before,
.rating-star.active::before {
  opacity: 1;
  transform: scale(1);
}
.rating-star:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}
.rating-star:active {
  transform: scale(0.94);
}

.slider-wrap { display: flex; align-items: center; gap: 12px; }
.slider-input { width: 100%; accent-color: var(--primary); }
.slider-value { color: var(--muted); font-size: 13px; }

.glass-input, .glass-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--text);
  border-radius: 12px;
  padding: 12px 14px;
}
.glass-textarea { min-height: 110px; resize: vertical; }

/* Progress Section */
.progress-section {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.progress-info h1 {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.progress-circle {
  position: relative;
  width: 80px;
  height: 80px;
}

.progress-circle-bg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(rgba(255,255,255,0.1) 0deg, rgba(255,255,255,0.1) 360deg);
  position: relative;
}

.progress-circle-fill {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  transform: rotate(-90deg);
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.progress-circle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
}

.progress-bar-container {
  margin-top: 1rem;
}

.progress-bar-bg {
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  border-radius: 999px;
  transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: progressShine 2s ease-in-out infinite;
}

/* Question Header */
.question-header {
  text-align: center;
}

.question-icon {
  display: flex;
  justify-content: center;
}

.icon-container {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, rgba(255,61,183,0.2), rgba(123,92,255,0.2));
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: iconBounce 0.6s ease forwards;
}

/* Survey wizard container */
.survey-wizard {
  position: relative;
}

@keyframes iconBounce {
  0% { transform: scale(0.8); opacity: 0; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

/* Survey Steps */
.survey-step {
  display: none;
}

.survey-step.active {
  display: block;
  animation: slideInUp 0.4s ease;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Identity Selection Styles */
.identity-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  animation: fadeInUp 0.4s ease forwards;
}

.identity-option {
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  cursor: pointer;
  min-height: 140px;
}

.identity-option:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.identity-option.selected {
  background: linear-gradient(135deg, rgba(255,61,183,0.15), rgba(123,92,255,0.15));
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 30px rgba(255,61,183,0.2);
}

.identity-option .flex {
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  border-radius: 18px;
}

.icon-circle {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  font-size: 1.5rem;
}

.identity-option.selected .icon-circle {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 6px 20px rgba(255,61,183,0.4);
  transform: scale(1.1);
}

.identity-option h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
  color: white;
  line-height: 1.3;
}

.identity-option p {
  font-size: 0.95rem;
  opacity: 0.8;
  margin: 0;
  color: white;
  line-height: 1.4;
}

.check-circle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  opacity: 0;
}

.identity-option.selected .check-circle {
  opacity: 1;
  background: rgba(255, 255, 255, 0.9);
}

.check-circle svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--primary);
}

#email-input {
  animation: slideDown 0.3s ease forwards;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
    max-height: 0;
  }
  to {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px;
  }
}
.survey-step .chip {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.survey-step .chip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,61,183,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
}

.survey-step .chip:hover::before {
  width: 120%;
  height: 120%;
}

.survey-step .chip.active {
  background: linear-gradient(135deg, rgba(255,61,183,0.3), rgba(123,92,255,0.3));
  border-color: rgba(255,255,255,0.4);
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255,61,183,0.3);
}

.survey-step .rating-star {
  background: none;
  border: none;
  padding: 0.5rem;
  margin: 0.35rem;
  border-radius: 50%;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.survey-step .rating-star:hover,
.survey-step .rating-star.hover {
  transform: scale(1.1);
}

.survey-step .rating-star:hover .star-outline,
.survey-step .rating-star.hover .star-outline {
  filter: drop-shadow(0 0 8px rgba(255,215,0,0.6));
}
.survey-step .rating-star:hover::before,
.survey-step .rating-star.hover::before {
  opacity: 1;
  transform: scale(1);
}

.survey-step .rating-star.active {
  animation: starPulse 0.6s ease;
}

@keyframes starPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.survey-step .emoji-btn {
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 50%;
  padding: 1rem;
  margin: 0.5rem;
}

.survey-step .emoji-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(255,61,183,0.3);
}

.survey-step .emoji-btn.active {
  background: linear-gradient(135deg, rgba(255,61,183,0.3), rgba(123,92,255,0.3));
  transform: scale(1.1);
  animation: emojiBounce 0.4s ease;
}

@keyframes emojiBounce {
  0%, 100% { transform: scale(1.1); }
  50% { transform: scale(1.3); }
}

/* Enhanced question components for wizard */
.survey-step .nps-scale {
  justify-content: center;
  margin: 2rem 0;
}

.survey-step .nps-scale .chip {
  animation: slideInUp 0.4s ease forwards;
  animation-delay: calc(var(--index, 0) * 0.05s);
  opacity: 0;
  transform: translateY(20px);
}

.survey-step.active .nps-scale .chip {
  opacity: 1;
  transform: translateY(0);
}

.survey-step .rating-stars {
  display: flex;
  justify-content: center;
  margin: 2rem auto;
  flex-wrap: wrap;
  max-width: 100%;
  overflow: hidden;
  width: 100%;
}

.survey-step .rating-star {
  animation: scaleIn 0.3s ease forwards;
  animation-delay: calc(var(--index, 0) * 0.1s);
  opacity: 0;
  transform: scale(0.5);
}

.survey-step.active .rating-star {
  opacity: 1;
  transform: scale(1);
}

.survey-step .emoji-group {
  justify-content: center;
  margin: 2rem 0;
}

.survey-step .emoji-btn {
  padding: 1rem 1.25rem;
  animation: bounceIn 0.4s ease forwards;
  animation-delay: calc(var(--index, 0) * 0.1s);
  opacity: 0;
  transform: scale(0.8);
}

.survey-step.active .emoji-btn {
  opacity: 1;
  transform: scale(1);
}

.survey-step .emoji {
  font-size: 3rem;
  transition: transform 0.2s ease;
}

.survey-step .emoji-btn:hover .emoji {
  transform: scale(1.1) rotate(5deg);
}

.survey-step .options-grid {
  justify-content: center;
  margin: 2rem 0;
  max-width: 600px;
}

.survey-step .chip {
  min-width: 60px;
  padding: 0.875rem 1.25rem;
  font-size: 1rem;
  animation: fadeInScale 0.3s ease forwards;
  animation-delay: calc(var(--index, 0) * 0.05s);
  opacity: 0;
  transform: scale(0.9);
}

.survey-step.active .chip {
  opacity: 1;
  transform: scale(1);
}

.survey-step .survey-card .question-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
  margin: 2rem 0;
  width: 100%;
}

.survey-step .survey-card .question-content .rating-stars,
.survey-step .survey-card .question-content .emoji-group,
.survey-step .survey-card .question-content .options-grid,
.survey-step .survey-card .question-content .slider-wrap,
.survey-step .survey-card .question-content .thumbs-group {
  align-self: center;
}

.survey-step .slider-wrap {
  justify-content: center;
  margin: 2rem 0;
}

.survey-step .glass-input,
.survey-step .glass-textarea {
  max-width: 100%;
  width: 100%;
  margin: 1.5rem 0;
  font-size: 1rem;
  display: block;
}

/* Navigation */
.survey-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.survey-navigation.transitioning {
  transform: translateY(10px);
  opacity: 0.7;
}

.survey-navigation button {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 16px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.survey-navigation button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

.survey-navigation button:hover::before {
  width: 100%;
  height: 100%;
}

.survey-navigation button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: scale(0.95);
}

.survey-navigation button:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Enhanced button styles */
.survey-navigation button.primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  box-shadow: 0 8px 25px rgba(255, 61, 183, 0.4);
}

.survey-navigation button.primary:hover {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 61, 183, 0.6);
  border-color: rgba(255, 255, 255, 0.5);
}

.survey-navigation button:not(.primary) {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-weight: 600;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.survey-navigation button:not(.primary):hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Validation message */
.validation-message {
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .survey-step .survey-card {
    padding: 1.5rem 1rem;
    min-height: 300px;
  }
  
  .survey-step h3 {
    font-size: 1.125rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
  }
  
  .survey-step .rating-stars {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    max-width: 100%;
    margin: 1.5rem auto;
  }
  
  .survey-step .rating-star {
    width: 42px;
    height: 42px;
    margin: 0.15rem;
  }
  
  .survey-step .nps-scale {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin: 1.5rem 0;
  }
  
  .survey-step .nps-scale .chip {
    min-width: 2.5rem;
    padding: 0.75rem 0.5rem;
    font-size: 0.875rem;
  }
  
  .survey-step .emoji {
    font-size: 2rem;
  }
  
  .survey-step .emoji-btn {
    padding: 0.75rem 1rem;
  }
  
  /* Identity options responsive */
  .identity-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 0 1rem;
    max-width: none;
  }
  
  .identity-option {
    min-height: 120px;
  }
  
  .survey-navigation button {
    font-size: 0.9rem;
    padding: 0.875rem 1.25rem;
    min-height: 2.75rem;
  }
  
  .survey-step .options-grid {
    gap: 0.5rem;
    margin: 1.5rem 0;
  }
  
  .survey-step .chip {
    min-width: 50px;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
  }
  
  .survey-step .glass-input,
  .survey-step .glass-textarea {
    max-width: 100%;
    margin: 1.5rem 0;
    font-size: 1rem;
  }
  
  /* Identity options mobile */
  .identity-options {
    grid-template-columns: 1fr;
    gap: 0.75rem;
    padding: 0 1rem;
    max-width: none;
  }
  
  .identity-option {
    min-height: 100px;
  }
}

@media (max-width: 480px) {
  .survey-step .rating-stars {
    gap: 0.25rem;
  }
  
  .survey-step .rating-star {
    width: 36px;
    height: 36px;
  }
  
  .survey-step .nps-scale .chip {
    min-width: 2rem;
    padding: 0.5rem 0.25rem;
    font-size: 0.75rem;
  }
  
  .survey-step h3 {
    font-size: 1rem;
  }
  
  .survey-step .survey-card {
    padding: 1rem 0.75rem;
  }
}
