

:root {
  --quiz-primary: #22c55e;
  --quiz-secondary: #22c55e;
  --quiz-accent: #16a34a;
  --quiz-bg-dark: #0a0e27;
  --quiz-bg-card: rgba(34, 197, 94, 0.05);
  --quiz-border: rgba(34, 197, 94, 0.2);
  --quiz-text-primary: #ffffff;
  --quiz-text-secondary: #d1d5db;
}

.selfcheck-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.05) 0%, rgba(34, 197, 94, 0.02) 100%);
  overflow: hidden;
}

.selfcheck-hero-stars {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.9) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.8) 0.8px, transparent 0.8px),
    radial-gradient(circle at 40% 50%, rgba(255, 255, 255, 0.7) 1.2px, transparent 1.2px),
    radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.6) 0.6px, transparent 0.6px),
    radial-gradient(circle at 10% 30%, rgba(34, 197, 94, 0.4) 1px, transparent 1px),
    radial-gradient(circle at 90% 60%, rgba(34, 197, 94, 0.3) 0.8px, transparent 0.8px);
  background-size: 250px 250px, 350px 350px, 200px 200px, 300px 300px, 400px 400px, 450px 450px;
  background-position: 0 0, 50px 60px, 130px 270px, 70px 100px, 180px 50px, 220px 180px;
  opacity: 0.4;
  z-index: 1;
  animation: starsMove 120s linear infinite;
  pointer-events: none;
}

.selfcheck-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.25;
  animation: gridPan 30s linear infinite;
  z-index: 2;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  animation: fadeInUp 0.8s ease-out;
}

.selfcheck-hero-content {
  width: 100%;
}

.selfcheck-hero-breadcrumb {
  color: #6b7280;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

.selfcheck-hero-breadcrumb a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s ease;
}

.selfcheck-hero-breadcrumb a:hover {
  color: #22c55e;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  font-size: 0.9rem;
  color: var(--quiz-secondary);
  margin-bottom: 2rem;
  animation: slideDown 0.8s ease-out 0.1s both;
}

.hero-badge svg {
  stroke-width: 2.5;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--quiz-primary), var(--quiz-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideDown 0.8s ease-out 0.2s both;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--quiz-text-secondary);
  line-height: 1.6;
  animation: slideDown 0.8s ease-out 0.3s both;
}

.selfcheck-hero--services {
  min-height: 70vh;
  padding: 3rem 2rem;
  background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
  overflow: visible;
  isolation: isolate;
}

.selfcheck-hero--services::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, transparent 0%, rgba(10, 14, 39, 0.3) 30%, rgba(10, 14, 39, 0.7) 60%, #0a0e27 100%);
  z-index: 4;
  pointer-events: none;
}

.selfcheck-hero--services .hero-content {
  z-index: 3;
  max-width: 900px;
}

.selfcheck-hero--services .hero-badge {
  border: 2px solid rgba(34, 197, 94, 0.3);
  padding: 0.7rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #d1fae5;
}

.selfcheck-hero--services .hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  line-height: 1.1;
  color: #22c55e;
  background: none;
  -webkit-text-fill-color: initial;
}

.selfcheck-hero--services .hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.8;
}

.selfcheck-hero-cta {
  animation: slideDown 0.8s ease-out 0.4s both;
}

.selfcheck-hero-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.3);
}

.selfcheck-hero-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.4);
  color: #fff;
}

.selfcheck-hero-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
}

.selfcheck-scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
}

.selfcheck-scroll-wheel {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(34, 197, 94, 0.5);
  border-radius: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.selfcheck-scroll-dot {
  width: 2px;
  height: 8px;
  background: rgba(34, 197, 94, 0.8);
  border-radius: 0;
  animation: bounceDown 2s infinite;
}

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

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

@keyframes starsMove {
  from {
    transform: translateY(0) translateX(0);
  }
  to {
    transform: translateY(-250px) translateX(-250px);
  }
}

@keyframes gridPan {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(60px);
  }
}

@keyframes bounceDown {
  0%, 100% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

.selfcheck-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  min-height: 80vh;
}

.selfcheck-container {
  max-width: 900px;
  margin: 0 auto;
}

.quiz-area {
  background: rgba(10, 14, 39, 0.8);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 0;
  padding: 2.4rem 3rem 2.6rem;
  animation: scaleIn 0.5s ease-out;
}

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

.quiz-progress {
  margin-bottom: 3rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 1rem;
}

.progress-fill {
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background:
    linear-gradient(90deg, var(--quiz-secondary), var(--quiz-primary));
  background-size: 200% 100%;
  background-position: 0% 50%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  animation: progressShimmer 2.4s linear infinite;
  border-radius: 0;
  will-change: transform;
}

@keyframes progressShimmer {
  from { background-position: 0% 50%; }
  to   { background-position: 200% 50%; }
}

.progress-text {
  text-align: right;
  font-size: 0.9rem;
  color: var(--quiz-text-secondary);
  font-weight: 600;
}

.quiz-content {
  min-height: 0;
}

.question-container {
  animation: fadeIn 0.5s ease-out;
}

.question-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--quiz-text-primary);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.question-description {
  font-size: 0.95rem;
  color: var(--quiz-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.options-container {
  display: grid;
  gap: 1rem;
}

.option-label {
  display: flex;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(34, 197, 94, 0.05);
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.option-label:hover {
  border-color: rgba(34, 197, 94, 0.5);
  background: rgba(34, 197, 94, 0.08);
}

.option-input {
  accent-color: var(--quiz-secondary);
  margin-right: 1rem;
  margin-top: 2px;
  cursor: pointer;
}

.option-text {
  color: var(--quiz-text-secondary);
  font-weight: 500;
  line-height: 1.5;
}

.option-input:checked + .option-text {
  color: var(--quiz-text-primary);
  font-weight: 600;
}

.option-label:has(.option-input:checked) {
  border-color: var(--quiz-secondary);
  background: rgba(34, 197, 94, 0.15);
}

.quiz-question {
  animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.question-number {
  display: inline-block;
  background: rgba(34, 197, 94, 0.15);
  color: var(--quiz-secondary);
  padding: 0.5rem 1rem;
  border-radius: 0;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.question-text {
  font-size: clamp(1.45rem, 2.8vw, 1.8rem);
  font-weight: 700;
  color: var(--quiz-text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.question-description {
  font-size: 1rem;
  color: var(--quiz-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.question-options {
  display: grid;
  gap: 0.9rem;
}

.option {
  position: relative;
}

.option-input {
  display: none;
}

.option-label {
  display: block;
  padding: 1.35rem 1.6rem;
  background: rgba(34, 197, 94, 0.05);
  border: 2px solid rgba(34, 197, 94, 0.2);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 1.08rem;
  line-height: 1.45;
  color: var(--quiz-text-secondary);
}

.option-label:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.4);
  transform: translateX(8px);
}

.option-input:checked + .option-label {
  background: rgba(34, 197, 94, 0.2);
  border-color: var(--quiz-secondary);
  color: var(--quiz-text-primary);
  font-weight: 600;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.quiz-nav {
  display: flex;
  gap: 1rem;
  margin-top: 1.8rem;
  justify-content: space-between;
}

.btn {
  padding: 1.05rem 2.4rem;
  font-size: 1.05rem;
  font-weight: 600;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--quiz-secondary);
  color: #0a0e27;
  min-width: 120px;
}

.btn-primary:hover:not(:disabled) {
  background: var(--quiz-primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn-primary:focus {
  outline: 2px solid #22c55e;
  outline-offset: 2px;
}

.btn-primary:focus-visible {
  outline: 2px solid #22c55e;
  outline-offset: 2px;
}

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

.btn-secondary {
  background: transparent;
  color: var(--quiz-secondary);
  border: 2px solid rgba(34, 197, 94, 0.3);
}

.btn-secondary:hover:not(:disabled) {
  background: rgba(34, 197, 94, 0.1);
  border-color: var(--quiz-secondary);
  transform: translateY(-2px);
}

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

.results-area {
  animation: slideUp 0.6s ease-out;
}

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

.results-header {
  text-align: center;
  margin-bottom: 3rem;
}

.results-logo img {
  max-width: 200px;
  height: auto;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

.results-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--quiz-text-primary);
  margin-bottom: 2rem;
  background: linear-gradient(135deg, var(--quiz-primary), var(--quiz-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.score-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 0;
  flex-wrap: wrap;
}

.score-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.05));
  border: 2px solid rgba(34, 197, 94, 0.3);
  animation: rotateIn 0.8s ease-out;
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-5deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

.score-value {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--quiz-primary), var(--quiz-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.score-max {
  font-size: 1.2rem;
  color: var(--quiz-text-secondary);
  font-weight: 600;
}

.score-text {
  text-align: center;
}

.score-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--quiz-text-primary);
  margin-bottom: 0.5rem;
}

.score-description {
  color: var(--quiz-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 300px;
}

.results-details {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 0;
  padding: 2rem;
  margin-bottom: 3rem;
}

.recommendations-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.recommendation-card {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.02) 100%);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 0;
  padding: 2rem;
  transition: all 0.3s ease;
}

.recommendation-card:hover {
  border-color: rgba(34, 197, 94, 0.4);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12) 0%, rgba(34, 197, 94, 0.04) 100%);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.1);
}

.recommendation-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--quiz-text-primary);
  margin-bottom: 1rem;
}

.recommendation-card p {
  color: var(--quiz-text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.results-category {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.results-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.category-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--quiz-text-primary);
  margin-bottom: 1rem;
}

.category-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.category-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.category-item {
  padding: 1rem;
  background: rgba(34, 197, 94, 0.05);
  border-left: 3px solid var(--quiz-secondary);
  border-radius: 0;
}

.item-question {
  font-size: 0.9rem;
  color: var(--quiz-text-secondary);
  margin-bottom: 0.5rem;
}

.item-answer {
  font-weight: 600;
  color: var(--quiz-text-primary);
}

.item-score {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.25rem 0.75rem;
  background: rgba(34, 197, 94, 0.2);
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--quiz-secondary);
}

.results-cta {
  text-align: center;
  margin-bottom: 3rem;
}

.results-cta-text {
  font-size: 1.1rem;
  color: var(--quiz-text-secondary);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  min-width: 280px;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

.repeat-quiz {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(34, 197, 94, 0.1);
}

.link-button {
  background: none;
  border: none;
  color: var(--quiz-secondary);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(34, 197, 94, 0.3);
  transition: all 0.3s ease;
  padding: 0;
}

.link-button:hover {
  color: var(--quiz-primary);
  text-decoration-color: var(--quiz-primary);
}

.contact-form-area {
  animation: slideUp 0.6s ease-out;
  background: rgba(10, 14, 39, 0.8);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 0;
  padding: 3rem;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--quiz-text-primary);
  margin-bottom: 0.5rem;
}

.contact-form-header p {
  color: var(--quiz-text-secondary);
  font-size: 1rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  color: var(--quiz-text-primary);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-input,
.form-select {
  width: 100%;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 0;
  padding: 1rem;
  color: var(--quiz-text-primary);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--quiz-secondary);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.form-input::placeholder {
  color: #9ca3af;
}

.form-select {
  cursor: pointer;
  background-color: #0a0e27 !important;
  color: #ffffff !important;
}

.form-select option {
  background: #1e293b;
  color: #ffffff;
  padding: 0.5rem;
}

.form-select option:checked {
  background: #16a34a;
  color: #ffffff;
}

.error-message {
  display: block;
  color: #ef4444;
  font-size: 0.85rem;
  margin-top: 0.4rem;
}

.times-section {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 0;
}

.times-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.time-slot {
  position: relative;
}

.time-slot input {
  display: none;
}

.time-slot label {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  min-height: 44px;
  text-align: center;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.time-slot label:hover {
  background: rgba(34, 197, 94, 0.15);
  border-color: var(--quiz-secondary);
}

.time-slot input:checked + label {
  background: var(--quiz-secondary);
  color: #0a0e27;
  border-color: var(--quiz-primary);
  font-weight: 700;
}

.form-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.form-actions .btn {
  min-width: 150px;
}

.form-message {
  padding: 1rem;
  border-radius: 0;
  text-align: center;
  font-weight: 600;
  margin-top: 1.5rem;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--quiz-secondary);
}

.form-message.error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
}

@media (max-width: 768px) {
  .quiz-area {
    padding: 2rem;
  }

  .hero-title {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  .question-text {
    font-size: 1.1rem;
  }

  .score-display {
    flex-direction: column;
    gap: 2rem;
  }

  .score-circle {
    width: 150px;
    height: 150px;
  }

  .score-value {
    font-size: 2.5rem;
  }

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

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

  .category-items {
    grid-template-columns: 1fr;
  }

  .contact-form-area {
    padding: 1.5rem;
  }

  .quiz-nav {
    flex-direction: column;
  }

  .quiz-nav .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .selfcheck-section {
    padding: 2rem 1rem;
  }

  .quiz-area,
  .contact-form-area {
    padding: 1.5rem;
  }

  .question-options {
    gap: 0.8rem;
  }

  .option-label {
    padding: 1rem;
  }

  .results-header {
    margin-bottom: 2rem;
  }

  .results-logo img {
    max-width: 150px;
  }

  .results-title {
    font-size: 1.5rem;
  }
}

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

.loading .btn {
  opacity: 0.6;
  cursor: not-allowed;
}

.question-exit {
  animation: fadeOut 0.3s ease-out;
}

@keyframes fadeOut {
  to {
    opacity: 0;
  }
}