/* Quiz Styles - Intégré au design Blika */

/* Quiz Main Layout */
.quiz-main {
  padding-top: 80px; /* Account for fixed navbar */
}

/* Quiz Landing Section */
.quiz-landing {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.quiz-landing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.quiz-landing-text {
  z-index: 2;
}

.quiz-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--primary-color), #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.quiz-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  opacity: 0.9;
}

.quiz-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.quiz-benefit {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.quiz-benefit i {
  color: var(--primary-color);
  font-size: 1.2rem;
  width: 20px;
}

.quiz-start-btn {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 30px rgba(110, 255, 104, 0.3);
  transition: all 0.3s ease;
}

.quiz-start-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(110, 255, 104, 0.4);
}

.quiz-start-btn i {
  margin-right: 0.5rem;
}

.quiz-trust-indicators {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quiz-trust-indicators p {
  color: var(--text-light);
  opacity: 0.7;
  font-size: 0.9rem;
  margin: 0;
}

.quiz-trust-indicators i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

/* Quiz Visual */
.quiz-landing-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.quiz-ai-illustration {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.quiz-ai-brain {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-color), #4ade80);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  color: var(--text-dark);
  box-shadow: 0 20px 60px rgba(110, 255, 104, 0.3);
  animation: pulse 2s infinite;
  z-index: 2;
}

.quiz-ai-connections {
  position: absolute;
  width: 100%;
  height: 100%;
}

.quiz-connection {
  position: absolute;
  width: 4px;
  background: linear-gradient(45deg, var(--primary-color), transparent);
  border-radius: 2px;
  animation: glow 3s infinite;
}

.quiz-connection:nth-child(1) {
  height: 80px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  animation-delay: 0s;
}

.quiz-connection:nth-child(2) {
  height: 60px;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(90deg);
  animation-delay: 0.5s;
}

.quiz-connection:nth-child(3) {
  height: 80px;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  animation-delay: 1s;
}

.quiz-connection:nth-child(4) {
  height: 60px;
  top: 50%;
  left: 20px;
  transform: translateY(-50%) rotate(270deg);
  animation-delay: 1.5s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes glow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Quiz Questions Section */
.quiz-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 2rem 0;
}

.quiz-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow);
}

.quiz-progress-container {
  margin-bottom: 3rem;
  text-align: center;
}

.quiz-progress-bar {
  width: 100%;
  height: 8px;
  background-color: #e5e7eb;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), #4ade80);
  border-radius: 4px;
  transition: width 0.5s ease;
  width: 0%;
}

.quiz-progress-text {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 1rem;
}

.quiz-question-container {
  margin-bottom: 3rem;
}

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

.quiz-question h3 {
  color: var(--text-dark);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.quiz-question-number {
  color: var(--primary-color);
  font-weight: 700;
  margin-right: 0.5rem;
}

.quiz-answers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quiz-answer {
  display: flex;
  align-items: center;
  padding: 1.2rem;
  border: 2px solid #e5e7eb;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
}

.quiz-answer:hover {
  border-color: var(--primary-color);
  background-color: rgba(110, 255, 104, 0.05);
  transform: translateX(5px);
}

.quiz-answer.selected {
  border-color: var(--primary-color);
  background-color: rgba(110, 255, 104, 0.1);
  box-shadow: 0 4px 15px rgba(110, 255, 104, 0.2);
}

.quiz-answer input[type="radio"] {
  display: none;
}

.quiz-answer-text {
  color: var(--text-dark);
  font-weight: 500;
  flex: 1;
}

.quiz-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.quiz-navigation .btn {
  min-width: 120px;
}

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

/* Lead Form Section */
.quiz-lead-form-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
}

.quiz-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: var(--border-radius);
  padding: 3rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.quiz-form-container h2 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.quiz-form-container p {
  color: var(--text-dark);
  opacity: 0.8;
  margin-bottom: 2.5rem;
}

.quiz-contact-form {
  text-align: left;
}

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

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

.quiz-contact-form .form-control {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #e5e7eb;
  border-radius: var(--border-radius);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
  color: var(--text-dark);
}

.quiz-contact-form .form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(110, 255, 104, 0.1);
}

.quiz-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.quiz-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1.4;
}

.quiz-checkbox-label input[type="checkbox"] {
  display: none;
}

.quiz-checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #e5e7eb;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.quiz-checkbox-label input[type="checkbox"]:checked + .quiz-checkmark {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.quiz-checkbox-label input[type="checkbox"]:checked + .quiz-checkmark::after {
  content: '✓';
  color: var(--text-dark);
  font-weight: bold;
  font-size: 0.8rem;
}

/* Results Section */
.quiz-results-section {
  min-height: 100vh;
  padding: 4rem 0;
}

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

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

.quiz-results-header h2 {
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.quiz-score-display {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.quiz-score-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), #4ade80);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--text-dark);
  font-weight: 700;
  box-shadow: 0 20px 60px rgba(110, 255, 104, 0.3);
}

.quiz-score-number {
  font-size: 3rem;
  line-height: 1;
}

.quiz-score-total {
  font-size: 1.2rem;
  opacity: 0.8;
}

.quiz-profile-result {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.quiz-profile-badge {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.quiz-profile-message {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.quiz-profile-description {
  color: var(--text-dark);
  opacity: 0.8;
  line-height: 1.6;
}

.quiz-detailed-results {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
}

.quiz-detailed-results h3 {
  color: var(--text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

.quiz-dimension-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.quiz-dimension {
  text-align: center;
  padding: 1.5rem;
  border: 2px solid #e5e7eb;
  border-radius: var(--border-radius);
  transition: all 0.3s ease;
}

.quiz-dimension:hover {
  border-color: var(--primary-color);
  transform: translateY(-5px);
}

.quiz-dimension-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.quiz-dimension-name {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.quiz-dimension-score {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.quiz-dimension-percentage {
  font-size: 0.9rem;
  color: var(--text-dark);
  opacity: 0.7;
}

.quiz-recommendations {
  margin-top: 2rem;
}

.quiz-recommendations h4 {
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.quiz-recommendations ul {
  list-style: none;
  padding: 0;
}

.quiz-recommendations li {
  padding: 0.8rem 0;
  border-bottom: 1px solid #e5e7eb;
  color: var(--text-dark);
  position: relative;
  padding-left: 2rem;
}

.quiz-recommendations li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.quiz-recommendations li:last-child {
  border-bottom: none;
}

.quiz-next-steps {
  background: white;
  border-radius: var(--border-radius);
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.quiz-next-steps h3 {
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.quiz-cta-container {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  border-radius: var(--border-radius);
  padding: 2rem;
  color: white;
}

.quiz-cta-content h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.quiz-cta-content p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.quiz-cta-primary {
  display: inline-block;
  background: var(--primary-color);
  color: var(--text-dark);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(110, 255, 104, 0.3);
}

.quiz-cta-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(110, 255, 104, 0.4);
}

.quiz-cta-primary i {
  margin-right: 0.5rem;
}

.quiz-share-results {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.quiz-share-results h4 {
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.quiz-share-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.quiz-share-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.quiz-share-btn.linkedin {
  background-color: #0077b5;
  color: white;
}

.quiz-share-btn.linkedin:hover {
  background-color: #005885;
  transform: translateY(-2px);
}

.quiz-share-btn.email {
  background-color: var(--secondary-color);
  color: white;
}

.quiz-share-btn.email:hover {
  background-color: var(--secondary-light);
  transform: translateY(-2px);
}

/* Loading Overlay */
.quiz-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.quiz-loading-spinner {
  text-align: center;
  color: white;
}

.quiz-loading-spinner i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.quiz-loading-spinner p {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .quiz-landing-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .quiz-ai-illustration {
    width: 200px;
    height: 200px;
  }
  
  .quiz-ai-brain {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .quiz-container,
  .quiz-form-container {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
  }
  
  .quiz-benefits {
    align-items: center;
  }
  
  .quiz-dimension-breakdown {
    grid-template-columns: 1fr;
  }
  
  .quiz-share-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .quiz-navigation {
    flex-direction: column;
    gap: 1rem;
  }
  
  .quiz-navigation .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .quiz-title {
    font-size: 2rem;
  }
  
  .quiz-subtitle {
    font-size: 1rem;
  }
  
  .quiz-container,
  .quiz-form-container {
    padding: 1.5rem 1rem;
  }
  
  .quiz-score-circle {
    width: 120px;
    height: 120px;
  }
  
  .quiz-score-number {
    font-size: 2.5rem;
  }
}



/* Quiz Integration Styles for Homepage */

/* Quiz Navigation Link */
.quiz-nav-link {
  position: relative;
  background: linear-gradient(135deg, var(--primary-color), #4ade80) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 600 !important;
}

.quiz-nav-link::after {
  background: linear-gradient(135deg, var(--primary-color), #4ade80) !important;
}

/* Quiz CTA in Hero */
.quiz-cta {
  position: relative;
  overflow: hidden;
}

.quiz-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.quiz-cta:hover::before {
  left: 100%;
}

/* New Quiz Hero Section */
.section-quiz-hero {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  position: relative;
  overflow: hidden;
}

.section-quiz-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.quiz-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.quiz-hero-left {
  padding: 2rem 0;
}

.quiz-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary-color), #4ade80);
  color: var(--text-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(110, 255, 104, 0.3);
}

.quiz-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.quiz-hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-dark);
  opacity: 0.8;
  line-height: 1.6;
  margin-bottom: 2.5rem;
}

.quiz-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quiz-stat {
  text-align: center;
}

.quiz-stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.quiz-stat-label {
  font-size: 0.9rem;
  color: var(--text-dark);
  opacity: 0.7;
  font-weight: 500;
}

.quiz-hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.quiz-benefit-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-dark);
  font-weight: 500;
}

.quiz-benefit-item i {
  color: var(--primary-color);
  font-size: 1.2rem;
  width: 20px;
  flex-shrink: 0;
}

.quiz-hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-quiz-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--primary-color), #4ade80);
  color: var(--text-dark);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(110, 255, 104, 0.3);
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.btn-quiz-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(110, 255, 104, 0.4);
  background: linear-gradient(135deg, #4ade80, var(--primary-color));
}

.quiz-hero-trust {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark);
  opacity: 0.7;
  font-size: 0.9rem;
}

.quiz-hero-trust i {
  color: var(--primary-color);
}

/* Quiz Visual Container */
.quiz-hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.quiz-visual-container {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 500px;
}

.quiz-visual-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary-color), #4ade80);
  border-radius: 50%;
  opacity: 0.1;
  animation: pulse 3s infinite;
}

.quiz-visual-card {
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
  max-width: 380px;
  margin: 0 auto;
}

.quiz-visual-card:hover {
  transform: rotate(0deg) scale(1.02);
}

.quiz-card-header {
  background: var(--secondary-color);
  padding: 1.2rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quiz-card-dots {
  display: flex;
  gap: 0.5rem;
}

.quiz-card-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color);
}

.quiz-card-dots span:nth-child(2) {
  background: #fbbf24;
}

.quiz-card-dots span:nth-child(3) {
  background: #ef4444;
}

.quiz-card-title {
  color: var(--text-light);
  font-weight: 600;
  font-size: 1.1rem;
}

.quiz-card-content {
  padding: 2rem 1.5rem;
}

.quiz-card-question h4 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.quiz-card-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.quiz-card-option {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.quiz-card-option.selected {
  border-color: var(--primary-color);
  background-color: rgba(110, 255, 104, 0.1);
}

.quiz-card-radio {
  width: 16px;
  height: 16px;
  border: 2px solid #e5e7eb;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.quiz-card-option.selected .quiz-card-radio {
  border-color: var(--primary-color);
}

.quiz-card-option.selected .quiz-card-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--primary-color);
  border-radius: 50%;
}

.quiz-card-option span {
  color: var(--text-dark);
  font-size: 0.9rem;
  line-height: 1.3;
}

.quiz-card-progress {
  text-align: center;
}

.quiz-progress-bar {
  width: 100%;
  height: 6px;
  background-color: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 0.8rem;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color), #4ade80);
  border-radius: 3px;
  width: 20%;
  animation: progressGlow 2s infinite;
}

.quiz-progress-text {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Floating Elements */
.quiz-floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  color: var(--primary-color);
  font-size: 1.5rem;
}

.quiz-float-1 {
  top: 10%;
  right: 10%;
  animation: float 3s infinite;
}

.quiz-float-2 {
  top: 60%;
  right: 5%;
  animation: float 3s infinite 0.5s;
}

.quiz-float-3 {
  bottom: 20%;
  left: 5%;
  animation: float 3s infinite 1s;
}

.quiz-float-4 {
  top: 20%;
  left: 10%;
  animation: float 3s infinite 1.5s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes progressGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.05); }
}

/* Service Cards CTA */
.service-cta {
  margin-top: 1.5rem;
  text-align: center;
}

.btn-small {
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
}

/* FAQ Links */
.faq-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 0.3s ease;
}

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

/* Contact Quiz Link */
.contact-quiz-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: transparent;
  transition: all 0.3s ease;
}

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

/* Responsive Design for Quiz Integration */
@media (max-width: 768px) {
  .quiz-cta-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .quiz-preview-card {
    max-width: 350px;
    transform: rotate(0deg);
  }
  
  .quiz-cta-benefits {
    align-items: center;
  }
  
  .service-cta {
    margin-top: 1rem;
  }
}

@media (max-width: 480px) {
  .quiz-cta-section {
    padding: 3rem 0;
  }
  
  .quiz-preview-card {
    max-width: 300px;
  }
  
  .quiz-preview-content {
    padding: 1.5rem 1rem;
  }
  
  .btn-large {
    font-size: 1rem;
    padding: 1rem 2rem;
  }
}


/* Responsive Design for New Quiz Hero Section */
@media (max-width: 768px) {
  .quiz-hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .quiz-hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .quiz-stat-number {
    font-size: 1.8rem;
  }
  
  .quiz-visual-container {
    height: 400px;
    max-width: 350px;
  }
  
  .quiz-visual-card {
    max-width: 320px;
    transform: rotate(0deg);
  }
  
  .quiz-floating-element {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .quiz-hero-benefits {
    align-items: center;
  }
  
  .btn-quiz-hero {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .section-quiz-hero {
    padding: 3rem 0;
  }
  
  .quiz-hero-title {
    font-size: 2rem;
  }
  
  .quiz-hero-subtitle {
    font-size: 1rem;
  }
  
  .quiz-hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 1rem;
  }
  
  .quiz-stat-number {
    font-size: 1.5rem;
  }
  
  .quiz-stat-label {
    font-size: 0.8rem;
  }
  
  .quiz-visual-container {
    height: 350px;
    max-width: 300px;
  }
  
  .quiz-visual-card {
    max-width: 280px;
  }
  
  .quiz-card-content {
    padding: 1.5rem 1rem;
  }
  
  .quiz-floating-element {
    display: none;
  }
  
  .btn-quiz-hero {
    font-size: 1rem;
    padding: 1rem 2rem;
  }
}

