/* quiz-mounjalift.css - Estilos Premium EXPANDIDO */

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16132b 100%);
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

#tsparticles {
  position: fixed;
  inset: 0;
  z-index: 0;
}

/* ===== Logo ===== */
.logo-container {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 20px 0 12px;
}

.logo-container img {
  height: 48px;
  filter: drop-shadow(0 0 20px rgba(147, 51, 234, 0.5));
}

/* ===== Quiz App ===== */
#quiz-app {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: calc(100vh - 100px);
  padding: 16px;
}

/* ===== Question Content Card ===== */
.question-content {
  position: relative;
  background: rgba(26, 26, 46, 0.95);
  border: 1px solid rgba(147, 51, 234, 0.4);
  border-radius: 24px;
  backdrop-filter: blur(16px);
  max-width: 580px;
  width: 100%;
  padding: 40px 36px;
  text-align: center;
  box-shadow:
    0 0 40px rgba(147, 51, 234, 0.3),
    0 0 80px rgba(236, 72, 153, 0.15);
  animation: fadeInUp 0.5s ease both;
}

/* ===== Quiz Header ===== */
.quiz-header {
  margin-bottom: 20px;
}

.step-indicator {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  margin-bottom: 10px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(147, 51, 234, 0.2);
  border-radius: 3px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: linear-gradient(90deg, #9333ea, #ec4899, #9333ea);
  background-size: 200% 100%;
  animation: shimmer 2.5s linear infinite;
  border-radius: 3px;
  transition: width 0.5s ease;
}

/* ===== Typography ===== */
h1 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.5;
}

.subtitle,
.offer-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.question-subtext {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

/* ===== INTRO STEP - SUPER IMPACTANTE ===== */
.intro-step {
  padding: 16px 8px;
  text-align: center;
}

.intro-badge {
  display: inline-block;
  background: linear-gradient(90deg, #9333ea, #ec4899);
  padding: 10px 28px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

.intro-headline {
  font-size: 1.7rem !important;
  line-height: 1.35 !important;
  background: linear-gradient(135deg, #fff 0%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px !important;
  text-align: center;
  padding: 0 8px;
}

.intro-subheadline {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
  text-align: center;
  padding: 0 4px;
}

.intro-features {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.intro-features li {
  padding: 10px 16px;
  margin: 8px 0;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 10px;
  font-size: 0.9rem;
  color: #10b981;
}

.intro-testimonial-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(147, 51, 234, 0.15);
  border: 1px solid rgba(147, 51, 234, 0.4);
  border-radius: 14px;
  padding: 16px;
  margin: 24px 0;
  text-align: left;
}

.intro-testimonial-preview img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #9333ea;
}

.intro-testimonial-preview p {
  font-style: italic;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.intro-testimonial-preview span {
  color: #a855f7;
  font-weight: 600;
  font-size: 0.85rem;
}

.btn-large {
  padding: 20px 40px !important;
  font-size: 1.15rem !important;
}

.btn-subtext {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
  margin-top: 12px;
}

/* ===== INPUT ===== */
.input-container {
  margin: 24px 0;
}

.name-input {
  width: 100%;
  padding: 18px 24px;
  font-size: 1.1rem;
  font-family: inherit;
  border: 2px solid rgba(147, 51, 234, 0.5);
  border-radius: 16px;
  background: rgba(147, 51, 234, 0.1);
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

.name-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.name-input:focus {
  border-color: #9333ea;
  background: rgba(147, 51, 234, 0.15);
  box-shadow: 0 0 30px rgba(147, 51, 234, 0.3);
}

/* ===== OPTIONS ===== */
.options-list {
  list-style: none;
  margin: 20px 0;
}

.options-list li {
  margin-bottom: 10px;
  position: relative;
}

.options-list li input {
  position: absolute;
  opacity: 0;
}

.options-list li label {
  display: block;
  padding: 16px 20px;
  background: rgba(147, 51, 234, 0.1);
  border: 2px solid rgba(147, 51, 234, 0.3);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  text-align: left;
}

.options-list li label:hover {
  background: rgba(147, 51, 234, 0.2);
  border-color: rgba(147, 51, 234, 0.5);
  transform: translateX(4px);
}

.options-list li.selected label,
.options-list li input:checked+label {
  background: linear-gradient(135deg, #9333ea, #7c3aed);
  border-color: #9333ea;
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
}

/* ===== MULTISELECT ===== */
.options-list.multiselect li.selected label {
  background: rgba(147, 51, 234, 0.3);
  border-color: #9333ea;
}

.options-list.multiselect li.selected label::after {
  content: '✓';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #10b981;
  font-weight: bold;
}

/* ===== VALIDATION / DIAGNOSIS ===== */
.validation-content,
.diagnosis-explanation,
.exclusivity-content {
  text-align: left;
  margin: 20px 0;
  padding: 0 8px;
}

.validation-content p,
.diagnosis-explanation p,
.exclusivity-content p {
  margin: 8px 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.text-negative {
  color: #f87171;
}

.text-highlight,
.text-success {
  color: #10b981;
}

.text-warning {
  color: #fbbf24;
  font-weight: 600;
}

.text-bullet {
  padding-left: 16px;
}

.spacer {
  height: 10px;
}

.diagnosis-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.diagnosis-result {
  margin: 20px 0;
}

.diagnosis-badge {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  animation: pulse 2s infinite;
}

/* ===== PRODUCT SHOWCASE ===== */
.product-showcase {
  margin: 24px 0;
}

.product-image-large {
  max-width: 320px;
  width: 100%;
  border-radius: 16px;
  filter: drop-shadow(0 20px 50px rgba(147, 51, 234, 0.5));
  animation: float 4s ease-in-out infinite;
}

.product-highlights {
  list-style: none;
  margin: 24px 0;
  text-align: left;
}

.product-highlights li {
  padding: 12px 16px;
  margin: 8px 0;
  background: rgba(147, 51, 234, 0.1);
  border-radius: 10px;
  font-size: 0.95rem;
}

/* ===== HOW IT WORKS ===== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.how-step {
  background: rgba(147, 51, 234, 0.1);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
}

.how-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.how-step h3 {
  font-size: 0.9rem;
  color: #a855f7;
  margin-bottom: 6px;
}

.how-step p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== VIDEO TESTIMONIAL ===== */
.video-container {
  margin: 20px 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.video-container video {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  background: #000;
}

.video-info {
  background: rgba(147, 51, 234, 0.15);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 12px;
  padding: 16px;
  margin: 16px 0;
}

.video-info strong {
  display: block;
  font-size: 1.1rem;
  color: #fff;
}

.video-info .location {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.video-info .result-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== BEFORE/AFTER GALLERY ===== */
.transformation-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 20px;
  overflow: hidden;
  margin: 20px 0;
}

.transformation-image img {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
}

.transformation-info {
  padding: 20px;
  text-align: center;
}

.transformation-info h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 12px;
}

.result-badge.large {
  display: inline-block;
  background: linear-gradient(135deg, #10b981, #059669);
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.transformation-info .quote {
  font-style: italic;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 16px 0;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(147, 51, 234, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery-dot.active {
  background: #9333ea;
  transform: scale(1.3);
}

.gallery-instruction {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}

/* ===== SOCIAL PROOF GRID ===== */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.stat {
  background: rgba(147, 51, 234, 0.15);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #a855f7;
}

.stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.mini-testimonial {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(147, 51, 234, 0.2);
  border-radius: 12px;
  padding: 12px;
  text-align: left;
}

.mini-testimonial img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
  border: 2px solid #9333ea;
}

.mini-info strong {
  font-size: 0.85rem;
  color: #fff;
}

.mini-info .stars {
  display: block;
  color: #fbbf24;
  font-size: 0.75rem;
  margin: 4px 0;
}

.mini-info p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* ===== EXCLUSIVITY ===== */
.exclusivity-icon {
  font-size: 4rem;
  margin-bottom: 16px;
}

.viewers-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(239, 68, 68, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: 30px;
  padding: 12px 24px;
  margin: 20px 0;
  font-size: 0.9rem;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

/* ===== OFFER ===== */
.offer-header {
  margin-bottom: 16px;
}

.offer-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(90deg, #dc2626, #b91c1c);
  padding: 14px 24px;
  border-radius: 12px;
  margin-bottom: 24px;
  animation: pulse 2s infinite;
}

.timer-label {
  font-weight: 600;
}

.timer-countdown {
  background: #fff;
  color: #dc2626;
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1.2rem;
}

.packages-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}

.package-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(147, 51, 234, 0.3);
  border-radius: 16px;
  padding: 24px 20px;
  transition: all 0.3s ease;
}

.package-card:hover {
  border-color: #9333ea;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(147, 51, 234, 0.3);
}

.package-card.featured {
  border-color: #ec4899;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.15), rgba(236, 72, 153, 0.15));
}

.package-tag {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #ec4899, #9333ea);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.package-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.package-bottles {
  font-size: 1.5rem;
  margin: 8px 0;
}

.package-duration {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.package-price {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.package-price .original-price {
  font-size: 1rem;
  color: #f87171;
  text-decoration: line-through;
}

.package-price .current-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #10b981;
}

.package-installment {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.package-perday {
  font-size: 0.8rem;
  color: #10b981;
  margin-bottom: 4px;
}

.package-cod {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
  border: 1px solid #10b981;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 0.85rem;
  color: #10b981;
  font-weight: 700;
  margin-bottom: 8px;
}

.package-bonus {
  background: rgba(251, 191, 36, 0.2);
  border-radius: 8px;
  padding: 8px;
  font-size: 0.8rem;
  color: #fbbf24;
  margin-bottom: 12px;
}

.btn-buy {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #9333ea, #7c3aed);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
}

.btn-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(147, 51, 234, 0.5);
}

.package-card.featured .btn-buy {
  background: linear-gradient(135deg, #ec4899, #9333ea);
  animation: btnPulse 2s infinite;
}

/* ===== PAYMENT HIGHLIGHT (Pague na Entrega) ===== */
.payment-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
  border: 2px solid #10b981;
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

.payment-highlight-icon {
  font-size: 3rem;
}

.payment-highlight strong {
  display: block;
  font-size: 1.2rem;
  color: #10b981;
  margin-bottom: 4px;
}

.payment-highlight p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.payment-method {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}

.payment-method.highlight {
  background: rgba(16, 185, 129, 0.2);
  border-color: #10b981;
  color: #10b981;
  font-weight: 700;
}

.bonus-text {
  background: rgba(251, 191, 36, 0.15);
  border: 1px solid rgba(251, 191, 36, 0.3);
  border-radius: 10px;
  padding: 12px;
  font-size: 0.85rem;
  color: #fbbf24;
  margin-bottom: 20px;
}

.guarantee-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  text-align: left;
}

.guarantee-box .shield {
  font-size: 2.5rem;
}

.guarantee-box h4 {
  color: #10b981;
  font-size: 1rem;
  margin-bottom: 4px;
}

.guarantee-box p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ===== SLIDE SUAVE (Galeria) ===== */
.transformation-slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin: 20px 0;
}

.slide-item {
  display: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 20px;
  overflow: hidden;
  animation: fadeIn 0.5s ease;
}

.slide-item.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== VIDEO OVERLAY E PLAY BUTTON ===== */
.video-container {
  position: relative;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 16px;
}

.play-btn {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border: none;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
  animation: btnPulse 2s infinite;
  transition: all 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(16, 185, 129, 0.5);
}

@keyframes btnPulse {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.4);
  }

  50% {
    box-shadow: 0 8px 50px rgba(16, 185, 129, 0.7);
  }
}

/* Dica de vídeo */
.video-hint {
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

.video-unmute-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(147, 51, 234, 0.9);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  z-index: 10;
  animation: pulse 2s infinite;
}

.video-container {
  position: relative;
}

/* ===== TESTIMONIALS HORIZONTAL (Layout Melhorado) ===== */
.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.testimonial-card-horizontal {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 14px;
  padding: 16px;
  text-align: left;
}

.testimonial-photo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #9333ea;
  flex-shrink: 0;
}

.testimonial-content {
  flex: 1;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.testimonial-header strong {
  font-size: 1rem;
  color: #fff;
}

.testimonial-header .stars {
  color: #fbbf24;
  font-size: 0.85rem;
}

.testimonial-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin: 0;
}

/* ===== PACKAGE BOTTLES IMAGE ===== */
.package-bottles-img {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin: 12px 0;
  flex-wrap: wrap;
}

.bottle-img {
  width: 45px;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(147, 51, 234, 0.3));
}

.package-card.featured .bottle-img {
  width: 50px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  width: 100%;
  padding: 18px 32px;
  background: linear-gradient(135deg, #9333ea, #7c3aed);
  border: none;
  border-radius: 16px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(147, 51, 234, 0.5);
}

.btn-primary.pulse {
  animation: btnPulse 2s infinite;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  backdrop-filter: blur(6px);
}

.modal-overlay.open {
  display: flex;
}

.modal {
  background: #1a1a2e;
  border: 1px solid rgba(147, 51, 234, 0.4);
  border-radius: 20px;
  padding: 32px;
  max-width: 360px;
  width: 90%;
  text-align: center;
  animation: modalPop 0.4s ease forwards;
}

.modal h2 {
  color: #9333ea;
  margin-bottom: 16px;
}

.modal p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.modal-close-btn {
  padding: 14px 32px;
  background: linear-gradient(135deg, #9333ea, #7c3aed);
  color: #fff;
  font-weight: 700;
  font-family: inherit;
  border: none;
  border-radius: 12px;
  cursor: pointer;
}

/* ===== SPINNER ===== */
#spinner-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99;
}

#spinner-overlay.active {
  display: flex;
}

.spinner {
  width: 56px;
  height: 56px;
  border: 4px solid rgba(147, 51, 234, 0.2);
  border-top-color: #9333ea;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

@keyframes btnPulse {

  0%,
  100% {
    box-shadow: 0 8px 30px rgba(147, 51, 234, 0.4);
  }

  50% {
    box-shadow: 0 8px 50px rgba(147, 51, 234, 0.6);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes modalPop {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 540px) {
  .question-content {
    padding: 24px 16px;
    margin: 0 8px;
  }

  h1 {
    font-size: 1.2rem;
  }

  .intro-headline {
    font-size: 1.5rem !important;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    flex-direction: column;
    gap: 12px;
  }

  .product-image-large {
    max-width: 240px;
  }

  .package-price .current-price {
    font-size: 1.5rem;
  }

  .transformation-image img {
    max-height: 280px;
  }
}