/* ===== SURVEYS BANNER (single, both waves highlighted) ===== */

.surveys-banner {
  position: relative;
  width: 100%;
  margin-top: 72px;
  z-index: 900;
  background: linear-gradient(135deg, #702283 0%, #a78bfa 100%);
  padding: 0;
  overflow: hidden;
}

.surveys-banner-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
}

.surveys-banner-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.surveys-banner-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.surveys-banner-icon i {
  font-size: 1.75rem;
  color: white;
}

.surveys-banner-intro {
  flex: 1;
  min-width: 0;
}

.surveys-banner-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.375rem 0;
  line-height: 1.3;
}

.surveys-banner-subtitle {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  line-height: 1.5;
}

.surveys-banner-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.survey-option {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  backdrop-filter: blur(10px);
}

.survey-option-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.survey-option-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: white;
  margin: 0;
  line-height: 1.3;
}

.survey-option-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 0.25rem 0;
  line-height: 1.4;
}

.survey-option-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.9);
}

.survey-option-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.survey-option-meta i {
  font-size: 0.75rem;
}

.survey-option-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.survey-option-button i {
  font-size: 0.875rem;
  transition: transform 0.2s ease;
}

.survey-option-button:hover i {
  transform: translateX(3px);
}

.survey-option-button-wave13 {
  background: white;
  color: #702283;
}

.survey-option-button-wave13:hover {
  background: #f8fafc;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.survey-option-button-wave2 {
  background: rgba(255, 255, 255, 0.95);
  color: #5b21b6;
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.survey-option-button-wave2:hover {
  background: white;
  border-color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .surveys-banner {
    margin-top: 68px;
  }

  .surveys-banner-container {
    padding: 1.5rem 1.5rem;
  }

  .surveys-banner-options {
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .surveys-banner {
    margin-top: 64px;
  }

  .surveys-banner-container {
    padding: 1.25rem 1rem;
  }

  .surveys-banner-header {
    flex-direction: column;
    text-align: center;
    margin-bottom: 1.25rem;
  }

  .surveys-banner-options {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .survey-option {
    padding: 1.25rem 1.25rem;
  }

  .survey-option-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .surveys-banner-title {
    font-size: 1.25rem;
  }

  .surveys-banner-subtitle {
    font-size: 0.875rem;
  }

  .survey-option-title {
    font-size: 1rem;
  }

  .survey-option-button {
    font-size: 0.875rem;
    padding: 0.625rem 1rem;
  }
}

/* ===== ACCESSIBILITY ===== */

@media (prefers-reduced-motion: reduce) {
  .survey-option-button:hover {
    transform: none;
  }

  .survey-option-button:hover i {
    transform: none;
  }
}

/* ===== PRINT ===== */

@media print {
  .surveys-banner {
    display: none;
  }
}
