/* ============================================================================
   MaindLabs Digitalisierungs-Quiz - Styles
   ========================================================================== */

/* ============================================================================
   1. CSS VARIABLES - Color Palette & Theme
   ========================================================================== */

:root {
  /* Color Palette — aligned with homepage cobalt-only scheme */
  --color-navy-dark: #2F2E33;
  --color-navy-primary: #2F2E33;
  --color-blue-accent: #3A5199;
  --color-mint-energy: #3A5199; /* mapped to cobalt — no mint */
  --color-green-success: #10B981;
  --color-red-error: #EF4444;
  --color-yellow-warning: #FBBF24;

  /* Backgrounds — warm off-white like homepage */
  --color-bg-light: #F2F0EB;
  --color-bg-alt: #ebe9e3;
  --color-bg-dark: #2F2E33;

  /* Text Colors */
  --color-text-primary: #2F2E33;
  --color-text-secondary: #475569;
  --color-text-muted: #94A3B8;

  /* Borders & UI */
  --color-border: #E2E8F0;
  --color-white: #FFFFFF;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;

  /* Typography */
  --font-primary: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Courier New', monospace;

  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 32px;
  --font-size-4xl: 40px;

  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.1), 0 2px 4px -1px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.1), 0 4px 6px -2px rgba(15, 23, 42, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index */
  --z-base: 0;
  --z-fixed: 1000;
}

/* ============================================================================
   1b. ANIMATED BACKGROUND
   ========================================================================== */

.animated-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.background-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
}

.background-orb.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(58, 81, 153, 0.12), transparent);
  top: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite;
}

.background-orb.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(58, 81, 153, 0.08), transparent);
  bottom: 20%;
  left: -80px;
  animation: float 10s ease-in-out infinite 2s;
}

.background-orb.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(58, 81, 153, 0.06), transparent);
  top: 50%;
  right: 20%;
  animation: float 12s ease-in-out infinite 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

/* ============================================================================
   2. HEADER & LAYOUT
   ========================================================================== */

.quiz-header {
  position: relative;
  z-index: var(--z-fixed);
  background: rgba(242, 240, 235, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(47, 46, 51, 0.07);
  padding: var(--space-lg) 0;
}

.quiz-header-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.quiz-logo {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy-dark);
  text-decoration: none;
}

.quiz-logo:hover {
  color: var(--color-blue-accent);
  text-decoration: none;
}

.quiz-back-link {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color var(--transition-base);
}

.quiz-back-link:hover {
  color: var(--color-blue-accent);
  text-decoration: none;
}

.quiz-main {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: var(--space-xl) var(--space-lg);
}

.quiz-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* ============================================================================
   3. QUIZ SCREEN
   ========================================================================== */

.quiz-screen {
  display: none;
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.quiz-screen.active {
  display: flex;
  flex-direction: column;
  opacity: 1;
}

/* Progress Bar */
.progress-container {
  margin-bottom: var(--space-xl);
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-md);
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-mint-energy) 0%, var(--color-blue-accent) 100%);
  border-radius: var(--radius-full);
  transition: width var(--transition-slow) ease-out;
  width: 10%;
}

.progress-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  text-align: center;
  margin: 0;
}

/* Question Area */
.question-wrapper {
  margin-bottom: var(--space-lg);
  animation: slideIn var(--transition-slow) ease-out;
}

.question-text {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy-dark);
  margin: 0;
  line-height: var(--line-height-tight);
}

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

/* Answer Options */
.answers-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: var(--space-lg);
}

.answer-option {
  position: relative;
  padding: 12px var(--space-lg);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-xl);
  background: var(--color-white);
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  text-align: left;
  animation: slideUp var(--transition-slow) ease-out both;
}

.answer-option:nth-child(1) { animation-delay: 0ms; }
.answer-option:nth-child(2) { animation-delay: 50ms; }
.answer-option:nth-child(3) { animation-delay: 100ms; }

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

.answer-option:hover {
  border-color: var(--color-blue-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.answer-option.selected {
  border-color: var(--color-blue-accent);
  background: rgba(58, 81, 153, 0.05);
  box-shadow: var(--shadow-lg);
}

.answer-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-white);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.answer-option.selected .answer-checkbox {
  border-color: var(--color-blue-accent);
  background: var(--color-blue-accent);
}

.answer-checkbox::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 9px;
  border: 2px solid white;
  border-top: none;
  border-left: none;
  transform: translate(-50%, -60%) rotate(45deg);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.answer-option.selected .answer-checkbox::after {
  opacity: 1;
}

.answer-text {
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  margin: 0;
  line-height: var(--line-height-normal);
}

/* Navigation Buttons */
.navigation-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--space-md);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  gap: var(--space-sm);
  white-space: nowrap;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--color-blue-accent);
  color: white;
}

.btn-primary:hover:not(:disabled) {
  background: #2d4080;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: var(--color-bg-alt);
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--color-border);
  transform: translateY(-2px);
}

.btn-large {
  padding: var(--space-md) var(--space-2xl);
  font-size: var(--font-size-lg);
}

/* ============================================================================
   4. RESULTS SCREEN
   ========================================================================== */

.results-screen {
  display: none;
  opacity: 0;
  transition: opacity var(--transition-slow);
  animation: fadeInUp var(--transition-slow) ease-out;
}

.results-screen.active {
  display: block;
  opacity: 1;
}

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

.results-title {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy-dark);
  text-align: center;
  margin-bottom: var(--space-sm);
}

.results-subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: var(--space-3xl);
}

/* Score Cards */
.scores-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .scores-container {
    grid-template-columns: 1fr 1fr;
  }

  .scores-container .score-card:last-child {
    grid-column: 1 / -1;
  }
}

.score-card {
  padding: var(--space-2xl);
  background: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  animation: slideUp var(--transition-slow) ease-out both;
}

.score-card:nth-child(1) { animation-delay: 0ms; }
.score-card:nth-child(2) { animation-delay: 100ms; }
.score-card:nth-child(3) { animation-delay: 200ms; }

.score-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.score-label {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy-dark);
  margin: 0;
}

/* Score value: number + /10 wrapper */
.score-value-wrapper {
  display: flex;
  align-items: baseline;
  gap: 3px;
  min-width: 90px;
  justify-content: flex-end;
}

.score-number {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-mono);
  color: var(--color-mint-energy);
  transition: color var(--transition-base);
  line-height: 1;
}

.score-scale {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  font-family: var(--font-mono);
  line-height: 1;
  margin-bottom: 3px;
}

/* Score number colors based on range */
.score-number.score-low {
  color: #EF4444;
}

.score-number.score-medium {
  color: #F59E0B;
}

.score-number.score-high {
  color: var(--color-green-success);
}

/* Score Bar */
.score-bar {
  width: 100%;
  height: 10px;
  background: var(--color-bg-alt);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.score-bar-fill {
  height: 100%;
  border-radius: var(--radius-full);
  transition: width 1.2s ease-out;
  width: 0%;
}

/* Solid single color per score range */
.score-bar-fill.low {
  background: #EF4444;
}

.score-bar-fill.medium {
  background: #F59E0B;
}

.score-bar-fill.high {
  background: var(--color-green-success);
}

.score-text {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-relaxed);
}

/* ============================================================================
   5. RECOMMENDATIONS SECTION
   ========================================================================== */

.recommendations-section {
  background: linear-gradient(135deg, rgba(58, 81, 153, 0.06) 0%, rgba(58, 81, 153, 0.02) 100%);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-3xl);
}

.recommendations-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy-dark);
  margin: 0 0 var(--space-sm) 0;
}

.recommendations-subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
}

.recommendations-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.recommendations-list li {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  font-size: var(--font-size-base);
  color: var(--color-text-primary);
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-mint-energy);
  animation: slideIn var(--transition-slow) ease-out both;
}

.recommendations-list li:nth-child(1) { animation-delay: 0ms; }
.recommendations-list li:nth-child(2) { animation-delay: 50ms; }
.recommendations-list li:nth-child(3) { animation-delay: 100ms; }

.recommendations-list li::before {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--color-mint-energy);
  color: white;
  border-radius: 50%;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-sm);
  margin-top: 2px;
}

.recommendations-list li:nth-child(1)::before { content: '1'; }
.recommendations-list li:nth-child(2)::before { content: '2'; }
.recommendations-list li:nth-child(3)::before { content: '3'; }

/* ============================================================================
   6. LEAD CAPTURE SECTION
   ========================================================================== */

.lead-capture-section {
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-3xl);
}

.lead-capture-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy-dark);
  margin: 0 0 var(--space-sm) 0;
}

.lead-capture-subtitle {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
}

.email-input {
  flex: 1;
  padding: var(--space-md) var(--space-lg);
  font-size: var(--font-size-base);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.email-input:focus {
  outline: none;
  border-color: var(--color-blue-accent);
  box-shadow: 0 0 0 3px rgba(58, 81, 153, 0.1);
}

.lead-form .btn-primary {
  width: 100%;
}

.lead-form-note {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  text-align: center;
  margin: 0;
}

/* ============================================================================
   6b. KPI SECTION
   ========================================================================== */

.kpi-section {
  background: var(--color-white);
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--space-3xl);
}

.kpi-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy-dark);
  margin: 0 0 var(--space-sm) 0;
}

.kpi-subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-lg) 0;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.kpi-card {
  text-align: center;
  padding: var(--space-lg) var(--space-md);
  background: var(--color-bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.kpi-icon {
  font-size: 28px;
  margin-bottom: var(--space-sm);
}

.kpi-label {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--space-sm);
}

.kpi-value {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  color: var(--color-blue-accent);
  line-height: var(--line-height-tight);
}

/* ============================================================================
   7. CTA SECTION
   ========================================================================== */

.cta-section {
  text-align: center;
  background: linear-gradient(135deg, var(--color-blue-accent) 0%, #2d4080 100%);
  padding: var(--space-3xl) var(--space-2xl);
  border-radius: var(--radius-xl);
  color: white;
  margin-bottom: var(--space-3xl);
}

.cta-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: white;
  margin: 0 0 var(--space-sm) 0;
}

.cta-subtitle {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 var(--space-xl) 0;
}

.cta-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background: #FFFFFF;
  color: var(--color-blue-accent);
}

.cta-section .btn-primary:hover:not(:disabled) {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.cta-section .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
}

.cta-section .btn-secondary:hover:not(:disabled) {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-2px);
}

/* ============================================================================
   8. RESTART & FOOTER
   ========================================================================== */

/* ============================================================================
   SERVICE RECOMMENDATIONS SECTION
   ========================================================================== */

.services-recommendation {
  margin-bottom: var(--space-3xl);
}

.services-rec-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy-dark);
  margin: 0 0 var(--space-sm) 0;
}

.services-rec-subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin: 0 0 var(--space-xl) 0;
}

.services-rec-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.service-rec-card {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.service-rec-card:first-child {
  border-color: var(--color-blue-accent);
  background: rgba(58, 81, 153, 0.04);
}

.service-rec-card:hover {
  border-color: var(--color-blue-accent);
  box-shadow: 0 4px 12px rgba(58, 81, 153, 0.12);
}

.service-rec-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}

.service-rec-body {
  flex: 1;
}

.service-rec-title {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-navy-dark);
  margin: 0 0 4px 0;
}

.service-rec-desc {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin: 0;
  line-height: var(--line-height-normal);
}

.service-rec-link {
  flex-shrink: 0;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--color-blue-accent);
  text-decoration: none;
  white-space: nowrap;
  padding: 8px 16px;
  border: 1.5px solid var(--color-blue-accent);
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.service-rec-link:hover {
  background: var(--color-blue-accent);
  color: white;
}

.service-rec-card:first-child .service-rec-link {
  background: var(--color-blue-accent);
  color: white;
}

.service-rec-card:first-child .service-rec-link:hover {
  background: #2d4080;
  border-color: #2d4080;
}

.restart-section {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.restart-section .btn {
  width: 100%;
  max-width: 300px;
}

.quiz-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border-top: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.8);
  margin-top: auto;
}

.quiz-footer p {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin: 0;
}

.quiz-footer a {
  color: var(--color-blue-accent);
  text-decoration: none;
}

.quiz-footer a:hover {
  text-decoration: underline;
}

/* ============================================================================
   9. RESPONSIVE DESIGN
   ========================================================================== */

@media (max-width: 640px) {
  .quiz-main {
    padding: var(--space-2xl) var(--space-md);
  }

  .question-text {
    font-size: var(--font-size-2xl);
  }

  .results-title {
    font-size: var(--font-size-3xl);
  }

  .navigation-buttons {
    flex-direction: column;
  }

  .navigation-buttons .btn {
    width: 100%;
  }

  .answer-option {
    padding: var(--space-lg);
  }

  .scores-container {
    grid-template-columns: 1fr;
  }

  .scores-container .score-card:last-child {
    grid-column: auto;
  }

  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
  }

  .quiz-header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }
}

/* ============================================================================
   10. ACCESSIBILITY
   ========================================================================== */

.answer-option:focus {
  outline: 2px solid var(--color-blue-accent);
  outline-offset: 2px;
}

.btn:focus {
  outline: 2px solid var(--color-mint-energy);
  outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
