/* ============================================
   360 DEGREE M - ADDITIONAL SECTIONS
   ============================================ */

/* ============================================
   RESULTS SECTION
   ============================================ */

.results {
  position: relative;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

.result-card {
  background: rgba(123, 44, 255, 0.04);
  border: 1px solid rgba(123, 44, 255, 0.15);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.result-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.result-card:hover {
  transform: translateY(-8px);
  border-color: rgba(123, 44, 255, 0.4);
}

.result-card:hover::before {
  opacity: 0.05;
}

.result-icon {
  width: 70px;
  height: 70px;
  background: rgba(123, 44, 255, 0.15);
  border: 1px solid rgba(123, 44, 255, 0.3);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-3xl);
  margin: 0 auto var(--space-6);
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
}

.result-card:hover .result-icon {
  background: rgba(123, 44, 255, 0.25);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(123, 44, 255, 0.3);
}

.result-value {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-2);
  position: relative;
  z-index: 1;
}

.result-label {
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-2);
  position: relative;
  z-index: 1;
}

.result-description {
  font-size: var(--text-sm);
  color: var(--text-muted);
  position: relative;
  z-index: 1;
}

/* Progress Bars in Results */
.result-progress {
  margin-top: var(--space-6);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  width: 0;
  transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */

.why-us {
  position: relative;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

.why-card {
  background: rgba(123, 44, 255, 0.04);
  border: 1px solid rgba(123, 44, 255, 0.15);
  border-radius: var(--radius-2xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
  position: relative;
}

.why-card:hover {
  background: rgba(123, 44, 255, 0.08);
  border-color: rgba(123, 44, 255, 0.3);
  transform: translateY(-4px);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(123, 44, 255, 0.1);
  border: 1px solid rgba(123, 44, 255, 0.2);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-5);
  position: relative;
  transition: all var(--transition-base);
}

.why-icon::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--gradient-primary);
  opacity: 0;
  filter: blur(15px);
  z-index: -1;
  transition: opacity var(--transition-base);
}

.why-card:hover .why-icon {
  background: rgba(123, 44, 255, 0.2);
  border-color: rgba(123, 44, 255, 0.4);
  transform: scale(1.1);
}

.why-card:hover .why-icon::before {
  opacity: 0.5;
  animation: iconGlow 2s ease-in-out infinite;
}

@keyframes iconGlow {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.why-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--text-white);
  margin-bottom: var(--space-2);
}

.why-text {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
  position: relative;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(123, 44, 255, 0.04);
  border: 1px solid rgba(123, 44, 255, 0.15);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-4);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(123, 44, 255, 0.25);
}

.faq-item.active {
  background: rgba(123, 44, 255, 0.08);
  border-color: rgba(123, 44, 255, 0.4);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) var(--space-6);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: var(--text-base);
  color: var(--text-white);
  text-align: left;
  transition: all var(--transition-base);
}

.faq-question:hover {
  color: var(--primary-purple-light);
}

.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(123, 44, 255, 0.15);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  color: var(--primary-purple-light);
  transition: all var(--transition-base);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  background: var(--primary-purple);
  color: var(--text-white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 var(--space-6) var(--space-5);
}

.faq-answer p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.cta-section {
  position: relative;
  padding: var(--space-24) 0;
}

.cta-block {
  position: relative;
  background: linear-gradient(135deg, rgba(123, 44, 255, 0.15) 0%, rgba(0, 240, 255, 0.1) 100%);
  border: 1px solid rgba(123, 44, 255, 0.3);
  border-radius: var(--radius-3xl);
  padding: var(--space-16) var(--space-8);
  text-align: center;
  overflow: hidden;
}

.cta-block::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--gradient-primary);
  border-radius: inherit;
  z-index: -1;
  opacity: 0.3;
  filter: blur(20px);
  animation: ctaGlow 3s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { opacity: 0.2; filter: blur(15px); }
  50% { opacity: 0.4; filter: blur(25px); }
}

.cta-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237B2CFF' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .cta-title {
    font-size: var(--text-5xl);
  }
}

.cta-description {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto var(--space-8);
}

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

.cta-buttons .btn-primary {
  padding: var(--space-5) var(--space-10);
  font-size: var(--text-lg);
}
