/* ===========================================
   COMPONENTS - Éléments réutilisables
   =========================================== */

/* Tooltips */
tooltip,
.tooltip {
  text-decoration: underline;
  text-decoration-style: dotted;
  cursor: help;
}

/* Boutons */
.nav .btn {
  color: #fff;
}

.btn {
  display: inline-block;
  background: var(--text);
  color: #fff;
  padding: .7rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-outline {
  display: inline-block;
  border: 2px solid var(--text);
  padding: .6rem 1.1rem;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-outline:hover {
  background: var(--text);
  color: #fff;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--accent-2);
  transition: gap 0.2s ease;
}

.btn-link:hover {
  gap: 0.8rem;
}

.btn-link .arrow {
  transition: transform 0.2s ease;
}

.btn-link:hover .arrow {
  transform: translateX(4px);
}

/* Service Cards (home) */
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--card-shadow);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.12);
}

.service-card h3 {
  font-family: Bangers, sans-serif;
  font-size: 1.5rem;
  margin: 1rem 0 0.5rem;
  color: var(--accent-2);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--muted);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
}

.service-highlights {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.service-highlights li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: #555;
}

.service-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
}

/* Pricing Card */
.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  position: relative;
  text-align: center;
  border: 2px solid var(--accent);
}

.pricing-card h3 {
  font-family: Bangers, sans-serif;
  font-size: 1.3rem;
  margin-top: 0.5rem;
}

.pricing-card .price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--accent-2);
  margin: 1rem 0;
}

.pricing-card .period {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
}

.pricing-card .included {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 1.5rem 0;
}

.pricing-card .included li {
  padding: 0.6rem 0;
  padding-left: 1.5rem;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
  position: relative;
}

.pricing-card .included li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Feature Items (service pages) */
.features-list {
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 0;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
}

.feature-item:last-child {
  border-bottom: none;
}

.feature-number {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Bangers, sans-serif;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-item h4 {
  margin: 0 0 0.3rem;
  font-weight: 700;
}

.feature-item p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

/* Option Cards */
.option-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.option-card h4 {
  margin: 0 0 0.3rem;
  font-weight: 700;
}

.option-price {
  color: var(--accent-2);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
}

.option-desc {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Team Member Cards */
.team-member {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 2rem;
  align-items: start;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
}

.member-photo {
  position: relative;
  border-radius: 12px;
  aspect-ratio: 1;
  background: var(--muted);
}

.member-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}

.member-role {
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.member-info h3 {
  margin: 0 0 0.3rem;
}

.member-info p {
  color: #555;
}

.member-skills {
  margin-top: 1rem;
}

.skill-tag {
  display: inline-block;
  background: var(--muted);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .team-member {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .member-photo {
    max-width: 180px;
    margin: 0 auto;
  }

  .member-skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Value Cards */
.value-card {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  text-align: center;
}

.value-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent), #ffe066);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--text);
}

.value-card h4 {
  margin: 0 0 0.5rem;
  font-family: Bangers, sans-serif;
  font-size: 1.2rem;
}

.value-card p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

/* CTA Section & Box */
.cta-section {
  --cta-bg-image: none;
}

.cta-box {
  background: linear-gradient(135deg, rgba(246, 246, 248, 0.92), rgba(255, 255, 255, 0.92));
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: -50px;
  background-image: var(--cta-bg-image);
  background-size: cover;
  background-position: center top;
  opacity: 0.2;
  transform: translateY(var(--parallax-offset, 0));
  will-change: transform;
}

.cta-box .bang {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  position: relative;
}

.cta-box h2 {
  font-family: Bangers, sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 0.5rem;
  position: relative;
}

.cta-box p {
  margin: 0 0 1.5rem;
  color: #555;
  position: relative;
}

.cta-box .btn {
  position: relative;
}

/* IA Service Cards */
.ia-service-card,
.dev-service-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.18);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.impact-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  position: relative;
}

.ia-icon,
.dev-icon {
  width: 56px;
  height: 56px;
  background: var(--muted);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.ia-service-card h3,
.dev-service-card h3 {
  font-family: Bangers, sans-serif;
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
  color: var(--accent-2);
}

.ia-features,
.dev-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.ia-features li,
.dev-features li {
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
  color: #555;
  font-size: 0.9rem;
}

.ia-features li::before,
.dev-features li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Process Steps */
.process-step {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Bangers, sans-serif;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.process-step h4 {
  margin: 0 0 0.3rem;
}

.process-step p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .process-step {
    flex-wrap: wrap;
  }

  .process-step h4 {
    flex: 1;
    margin: 0;
    display: flex;
    align-items: center;
  }

  .process-step p {
    flex-basis: 100%;
    margin-top: 0.75rem;
  }
}

/* Tech Tags */
.tech-category h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #666;
  margin: 0 0 0.5rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tags span {
  background: var(--muted);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.form-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  min-width: 200px;
  padding: 0.75rem;
  border: 3px solid #000;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
  box-shadow: 3px 3px 0 #000;
  transition: all 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 4px 4px 0 #000;
  transform: translate(-1px, -1px);
}

.contact-form textarea {
  width: 100%;
  min-height: 240px;
  resize: vertical;
}

.form-footer {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #555;
  flex: 1;
}

/* Flash Message Retro Comics */
.form-message {
  position: relative;
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  background-color: #fff;
  background-image: radial-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px);
  background-size: 8px 8px;
  border: 3px solid #000;
  border-radius: 8px;
  filter: drop-shadow(6px 6px 0 #000);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
  animation: comicPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  z-index: 10;
}

.form-message.success {
  background-color: #ffcc00;
  /* Yellow Comic */
  color: #000;
}

.form-message.error {
  background-color: #e11d48;
  /* Red Comic */
  color: #fff;
}

/* Petit triangle pour l'effet bulle */
.form-message::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 30px;
  border-width: 0 12px 15px 12px;
  border-style: solid;
  border-color: transparent transparent #000 transparent;
}

.form-message::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 32px;
  border-width: 0 10px 12px 10px;
  border-style: solid;
  border-color: transparent transparent inherit transparent;
}

.form-message.success::after {
  border-bottom-color: #ffcc00;
}

.form-message.error::after {
  border-bottom-color: #e11d48;
}

@keyframes comicPop {
  0% {
    transform: scale(0.5) rotate(-5deg);
    opacity: 0;
  }

  70% {
    transform: scale(1.1) rotate(2deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.checkbox-label input {
  flex: none;
  width: auto;
  min-width: auto;
}

/* Contact Info */
.contact-info {
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.contact-info h4 {
  margin: 0 0 0.5rem;
}

.contact-info p {
  margin: 0;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-tip {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(0, 0, 0, 0.06);
}

.contact-tip p {
  margin-top: 0.3rem;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 9rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: var(--accent-2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(255, 59, 48, 0.3);
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  border: 3px solid #fff;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 59, 48, 0.4);
}

.scroll-to-top .bang-text {
  font-family: Bangers, cursive;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .scroll-to-top {
    width: 50px;
    height: 50px;
    bottom: 6.5rem;
    right: 1.5rem;
    font-size: 1.3rem;
  }

  .scroll-to-top .bang-text {
    font-size: 0.75rem;
  }
}

/* Cookie Banner */
/* Cookie Banner - Retro Comics Style */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: auto;
  width: 90%;
  max-width: 420px;
  background: #fff;
  border: 3px solid #000;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 1);
  z-index: 1000;
  transform: translateY(150%);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 2px;
  overflow: hidden;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner-content {
  position: relative;
  background-color: #ffffff;
  background-image: radial-gradient(#d1d5db 1px, transparent 1px);
  background-size: 10px 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border: 4px solid #fff;
  /* Inner spacing border */
}

/* Comic diagonal stripes decoration */
.cookie-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: repeating-linear-gradient(45deg,
      #000,
      #000 10px,
      #ffcc00 10px,
      #ffcc00 20px);
  z-index: 3;
  border-bottom: 2px solid #000;
}

.cookie-banner-text .bang {
  font-family: 'Bangers', cursive;
  font-size: 2.5rem;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: 2px 2px 0 #fff;
  transform: rotate(-2deg);
  display: inline-block;
  margin-bottom: 0.8rem;
  background: #ffcc00;
  padding: 5px 15px;
  border: 2px solid #000;
  box-shadow: 4px 4px 0 #000;
}

.cookie-banner-text p {
  margin: 0;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.5;
  background: #fff;
  padding: 10px;
  border: 2px solid #000;
  border-radius: 8px;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.cookie-banner-text a {
  color: #e11d48;
  /* Comic Red */
  text-decoration: underline;
  text-decoration-thickness: 2px;
  font-weight: 800;
}

.cookie-banner-text a:hover {
  background: #e11d48;
  color: #fff;
  text-decoration: none;
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
}

.cookie-banner .btn-accept {
  flex: 2;
  background: #3b82f6;
  /* Comic Blue */
  color: white;
  border: 2px solid #000;
  border-radius: 8px;
  font-family: 'Bangers', cursive;
  font-size: 1.3rem;
  padding: 0.6rem 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 4px 4px 0 #000;
  transition: all 0.1s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cookie-banner .btn-accept::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.cookie-banner .btn-accept:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000;
  background: #2563eb;
}

.cookie-banner .btn-accept:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 #000;
}

.cookie-banner .btn-decline {
  flex: 1;
  background: #fff;
  color: #000;
  border: 2px solid #000;
  border-radius: 8px;
  font-family: 'Bangers', cursive;
  font-size: 1.1rem;
  padding: 0.6rem 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 4px 4px 0 #000;
  transition: all 0.1s ease;
  cursor: pointer;
}

.cookie-banner .btn-decline:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000;
  background: #f3f4f6;
}

.cookie-banner .btn-decline:active {
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 #000;
}

@media (max-width: 600px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    width: auto;
    max-width: none;
  }

  .cookie-banner-text .bang {
    font-size: 2rem;
  }
}

/* ===========================================
   KONAMI CODE EASTER EGG
   =========================================== */

.konami-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.konami-overlay.active {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}

.konami-overlay video {
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

/* ===========================================
   QUIZ FUNNEL
   =========================================== */

.quiz-funnel {
  padding: 3rem 0;
}

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

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

.quiz-header h2 {
  margin: 1rem 0 0.5rem;
  font-size: 2rem;
}

.quiz-header p {
  color: #666;
  font-size: 1.1rem;
}

/* Progress Bar */
.quiz-progress {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 2rem 0;
  position: relative;
  padding: 0 2rem;
}

.quiz-progress::before {
  content: '';
  position: absolute;
  top: 1.5rem;
  left: 10%;
  right: 10%;
  height: 3px;
  background: #e5e7eb;
  z-index: 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.progress-step.active {
  opacity: 1;
}

.progress-step.completed {
  opacity: 1;
}

.progress-badge {
  width: 3rem;
  height: 3rem;
  background: #fff;
  border: 3px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bangers', cursive;
  font-size: 0.7rem;
  box-shadow: 4px 4px 0 #000;
  transition: all 0.3s ease;
}

.progress-step.active .progress-badge {
  background: var(--accent);
  transform: scale(1.1) rotate(-5deg);
}

.progress-step.completed .progress-badge {
  background: #10b981;
  color: #fff;
}

.progress-step span {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

/* Quiz Back Button */
.quiz-back {
  display: none;
  align-items: center;
  gap: 0.3rem;
  background: none;
  border: none;
  color: #666;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0.4rem 0.8rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}

.quiz-back:hover {
  color: var(--accent-2);
  background: rgba(0, 0, 0, 0.04);
}

.quiz-back.visible {
  display: inline-flex;
}

/* Quiz Questions */
.quiz-questions {
  min-height: 400px;
  position: relative;
}

.quiz-question {
  display: none;
  animation: fadeInUp 0.4s ease;
}

.quiz-question.active {
  display: block;
}

.quiz-question h3 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.quiz-options {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.quiz-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 3px solid #000;
  border-radius: 10px;
  box-shadow: 4px 4px 0 #000;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.quiz-option:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 #000;
  background: rgba(255, 255, 255, 0.9);
}

.quiz-option:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 #000;
}

.option-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.option-text {
  flex: 1;
}

/* Quiz Result */
.quiz-result {
  display: none;
  text-align: center;
  animation: fadeInUp 0.4s ease;
}

.quiz-result.active {
  display: block;
}

.result-badge {
  margin-bottom: 1.5rem;
}

.result-badge .comic-badge {
  font-size: 3rem;
}

.quiz-result h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.result-content {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 3px solid #000;
  border-radius: 10px;
  padding: 2rem;
  margin: 2rem 0;
  text-align: left;
  box-shadow: 4px 4px 0 #000;
}

.result-recommendation {
  margin-bottom: 1.5rem;
}

.result-recommendation h4 {
  color: var(--accent-2);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.result-recommendation p {
  color: #555;
  line-height: 1.6;
}

.result-services {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.result-service-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  border: 2px solid #000;
}

.result-service-item .comic-badge {
  font-size: 1rem;
  flex-shrink: 0;
}

.result-service-item strong {
  color: var(--text);
}

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

/* Quiz Skip */
.quiz-skip {
  text-align: center;
  margin-top: 2rem;
}

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

/* Responsive */
@media (max-width: 768px) {
  .quiz-progress {
    padding: 0 1rem;
  }

  .progress-step span {
    font-size: 0.7rem;
  }

  .progress-badge {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 0.6rem;
  }

  .quiz-header h2 {
    font-size: 1.5rem;
  }

  .quiz-header p {
    font-size: 0.95rem;
  }

  .quiz-question h3 {
    font-size: 1.2rem;
  }

  .quiz-option {
    padding: 1rem;
    font-size: 0.9rem;
  }

  .option-icon {
    font-size: 1.5rem;
  }

  .result-actions {
    flex-direction: column;
  }

  .result-actions .btn,
  .result-actions .btn-outline {
    width: 100%;
  }
}