/* AccuNumber Brand Styles */


:root {
  --an-primary: #7c3aed;
  --an-primary-dark: #5b21b6;
  --an-primary-light: #8b5cf6;
  --an-secondary: #6b7280;
  --an-accent: #f59e0b;
  --an-accent-2: #d97706;
  --an-success: #10b981;
  --an-warning: #f59e0b;
  --an-error: #ef4444;
  
  --color-primary: var(--an-primary);
  --color-primary-dark: var(--an-primary-dark);
  --color-primary-light: var(--an-primary-light);
  --color-secondary: var(--an-secondary);
  
  --an-text-primary: #1e293b;
  --an-text-secondary: #475569;
  --an-text-muted: #64748b;
  
  --text-primary: var(--an-text-primary);
  --text-secondary: var(--an-text-secondary);
  --text-muted: var(--an-text-muted);
  
  --an-bg-primary: #ffffff;
  --an-bg-secondary: #f8fafc;
  --an-bg-tertiary: #f1f5f9;
  
  --bg-primary: var(--an-bg-primary);
  --bg-secondary: var(--an-bg-secondary);
  --bg-tertiary: var(--an-bg-tertiary);
  
  
  --brand-btn-outline-hover-bg: transparent;
  --brand-btn-outline-hover-color: var(--an-primary-light);
  --brand-btn-outline-hover-border: var(--an-primary-light);
  
  --brand-btn-outline-hover-bg-alt: rgba(124, 58, 237, 0.1);
  --brand-btn-outline-hover-color-alt: var(--an-primary-light);
  --brand-btn-outline-hover-border-alt: var(--an-primary-light);
  
  --brand-accent-primary: var(--an-primary-light);
  --brand-accent-secondary: var(--an-primary);
  
  --brand-link-hover-color: var(--an-primary-light);
  
  --brand-input-border-focus: var(--an-primary);
  --brand-input-shadow-focus: rgba(124, 58, 237, 0.15);
  
  --an-mystical-overlay-1: rgba(124, 58, 237, 0.08);
  --an-mystical-overlay-2: rgba(91, 33, 182, 0.06);
  --an-mystical-overlay-3: rgba(139, 92, 246, 0.04);
}


.an-btn-outline:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.testimonial-card [data-stat] {
  background: linear-gradient(135deg, var(--an-primary), var(--an-primary-light), var(--an-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mystical-icon:nth-child(odd),
.mystical-icon:nth-child(even) {
  background: none;
}

.slider-input::-webkit-slider-thumb {
  background: linear-gradient(135deg, var(--an-primary), var(--an-primary-light));
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4);
}

.slider-input::-moz-range-thumb {
  background: linear-gradient(135deg, var(--an-primary), var(--an-primary-light));
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4);
}

.slider-input::-webkit-slider-runnable-track {
  background: linear-gradient(to right, var(--an-primary) 0%, var(--an-primary-light) var(--slider-progress), var(--color-gray-200) var(--slider-progress), var(--color-gray-200) 100%);
}

.slider-input::-moz-range-progress {
  background: var(--an-accent);
}

.mystical-element {
  background: rgba(245, 158, 11, 0.08) !important;
}

.mystical-element:nth-of-type(9) {
  top: 65%;
  left: 45%;
  animation-duration: 22s;
  animation-delay: -12s;
  transform-origin: 10vw 15vh;
  box-shadow: 40vmin 0 5.5vmin currentColor;
}

.mystical-element:nth-of-type(10) {
  top: 30%;
  left: 75%;
  animation-duration: 19s;
  animation-delay: -15s;
  transform-origin: -12vw -10vh;
  box-shadow: -40vmin 0 5.4vmin currentColor;
}

/* =============================================================================
   HEADER & NAVIGATION
   ============================================================================= */

.an-header {
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
  padding: var(--space-4) 0;
  position: sticky;
  top: 0;
  z-index: var(--z-fixed);
}

.an-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}

.an-mobile-menu-toggle {
  display: none;
  background: none;
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  padding: var(--space-2);
  z-index: var(--z-dropdown);
  transition: all var(--transition-base);
}

.an-mobile-menu-toggle:hover {
  background: var(--bg-secondary);
  border-color: var(--color-primary);
}

.an-mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
  margin: 4px 0;
}

.an-mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.an-mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.an-mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

nav {
  display: flex;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.logo-icon-svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
  color: var(--an-primary);
}

.an-nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
  margin: 0;
  padding: 0;
}

.an-nav-link {
  color: var(--text-primary);
  font-weight: 500;
  transition: all var(--transition-base);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
}

.an-nav-link:hover,
.an-nav-link.active {
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 2px solid var(--an-primary);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  color: var(--an-primary);
}

.an-nav-link.an-nav-link-signup {
  background: var(--an-primary-dark) !important;
  color: white !important;
  border-radius: var(--radius-md);
  padding: var(--space-2) var(--space-5);
  font-weight: 600;
  border: none !important;
  white-space: nowrap;
}

.an-nav-link.an-nav-link-signup:hover,
.an-nav-link.an-nav-link-signup.active {
  background: var(--an-primary) !important;
  color: white !important;
  border: none !important;
}

.an-nav-actions {
  display: flex;
  gap: var(--space-3);
  align-items: center;
}

nav .an-nav-actions {
  display: none;
}

.an-nav-actions .an-btn {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.an-nav-actions .an-btn i {
  margin: 0;
}

/* =============================================================================
   HERO SECTIONS
   ============================================================================= */

.hero {
  position: relative;
  padding: var(--space-16) 0;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f3e8ff 100%);
  z-index: 0;
  overflow: hidden;
}

.mystical-element {
  position: absolute;
  width: 18vmin;
  height: 18vmin;
  border-radius: 50%;
  backface-visibility: hidden;
  animation: mystical-float linear infinite;
  filter: blur(70px);
  opacity: 0.6;
}

.mystical-element:nth-child(odd) {
  background: rgba(124, 58, 237, 0.6);
}

.mystical-element:nth-child(even) {
  background: rgba(245, 158, 11, 0.5);
}

.mystical-element:nth-child(1) {
  top: 77%;
  left: 88%;
  animation-duration: 15s;
  animation-delay: -3s;
  transform-origin: 16vw -2vh;
  box-shadow: 40vmin 0 5.7vmin currentColor;
}

.mystical-element:nth-child(2) {
  top: 42%;
  left: 2%;
  animation-duration: 18s;
  animation-delay: -29s;
  transform-origin: -19vw 21vh;
  box-shadow: -40vmin 0 5.2vmin currentColor;
}

.mystical-element:nth-child(3) {
  top: 28%;
  left: 18%;
  animation-duration: 16s;
  animation-delay: -8s;
  transform-origin: -22vw 3vh;
  box-shadow: 40vmin 0 5.3vmin currentColor;
}

.mystical-element:nth-child(4) {
  top: 50%;
  left: 79%;
  animation-duration: 14s;
  animation-delay: -21s;
  transform-origin: -17vw -6vh;
  box-shadow: 40vmin 0 5.3vmin currentColor;
}

.mystical-element:nth-child(5) {
  top: 46%;
  left: 15%;
  animation-duration: 15s;
  animation-delay: -40s;
  transform-origin: 4vw 0vh;
  box-shadow: -40vmin 0 6vmin currentColor;
}

.mystical-element:nth-child(6) {
  top: 77%;
  left: 16%;
  animation-duration: 13s;
  animation-delay: -10s;
  transform-origin: 18vw 4vh;
  box-shadow: 40vmin 0 5.2vmin currentColor;
}

.mystical-element:nth-child(7) {
  top: 22%;
  left: 17%;
  animation-duration: 20s;
  animation-delay: -6s;
  transform-origin: 1vw -23vh;
  box-shadow: -40vmin 0 5.7vmin currentColor;
}

.mystical-element:nth-child(8) {
  top: 41%;
  left: 47%;
  animation-duration: 17s;
  animation-delay: -28s;
  transform-origin: 25vw -3vh;
  box-shadow: 40vmin 0 5.2vmin currentColor;
}

@keyframes mystical-float {
  100% {
    transform: translate3d(0, 0, 1px) rotate(360deg);
  }
}

@media (max-width: 768px) {
  .mystical-element {
    width: 12vmin;
    height: 12vmin;
    filter: blur(80px);
    opacity: 0.4;
  }
  .mystical-element:nth-child(n+5) {
    display: none;
  }
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  line-height: 1.1;
  margin-bottom: var(--space-6);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
}

.video-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 16 / 9;
  width: 100%;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 600;
}

.video-section-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: var(--space-12) 0;
}

.video-section-content {
  text-align: left;
}

.video-section-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--an-primary);
  margin-bottom: 1rem;
}

.video-section-content p {
  font-size: 1.125rem;
  color: var(--an-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* =============================================================================
   FEATURE CARDS
   ============================================================================= */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  margin: var(--space-12) 0;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: var(--space-8);
  background: var(--bg-primary);
  border: 2px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--an-primary), var(--an-primary-light), var(--an-primary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.02;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(124, 58, 237, 1) 20px, rgba(124, 58, 237, 1) 21px);
  pointer-events: none;
  z-index: 0;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card:hover {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15), 0 0 0 1px rgba(124, 58, 237, 0.2);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--an-primary-dark) 0%, var(--an-primary) 40%, var(--an-primary-light) 80%, var(--an-primary) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2),
              0 0 0 4px rgba(124, 58, 237, 0.1),
              0 6px 20px rgba(124, 58, 237, 0.35),
              inset 0 2px 6px rgba(255, 255, 255, 0.3),
              inset 0 -2px 6px rgba(91, 33, 182, 0.25);
  position: relative;
  transition: all 0.3s ease;
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: var(--radius-md);
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
  z-index: -1;
  filter: blur(8px);
  transition: opacity 0.3s ease;
  animation: mystical-pulse-glow 2s ease-in-out infinite;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.3),
              0 0 0 6px rgba(124, 58, 237, 0.15),
              0 8px 24px rgba(124, 58, 237, 0.5),
              inset 0 2px 6px rgba(255, 255, 255, 0.35),
              inset 0 -2px 6px rgba(91, 33, 182, 0.3);
}

.feature-card:hover .feature-icon::before {
  opacity: 0.5;
}

.feature-card:nth-child(2) .feature-icon,
.feature-card:nth-child(4) .feature-icon {
  background: linear-gradient(135deg, var(--an-primary-dark) 0%, var(--an-primary) 50%, var(--an-primary-light) 100%);
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.25),
              0 0 0 4px rgba(124, 58, 237, 0.12),
              0 6px 20px rgba(124, 58, 237, 0.4),
              inset 0 2px 6px rgba(255, 255, 255, 0.3),
              inset 0 -2px 6px rgba(91, 33, 182, 0.25);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: var(--color-white);
}

.feature-icon i,
.feature-icon i[class*="fa-"] {
  font-size: 2rem;
  color: white;
  line-height: 1;
  display: inline-block;
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.feature-animation {
  display: none;
}

/* =============================================================================
   NUMEROLOGY PROFILE GRID - STAGGERED LAYOUT WITH NUMBER BADGES
   ============================================================================= */

.numerology-profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin: var(--space-12) 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  align-items: stretch;
}

.numerology-profile-grid .offset-card {
  margin-top: 0;
}

.numerology-profile-card {
  padding: var(--space-10);
  background: var(--bg-primary);
  border: 2px solid rgba(124, 58, 237, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.numerology-profile-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--an-primary), var(--an-primary-light), var(--an-primary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.numerology-profile-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.02;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 25px, rgba(124, 58, 237, 1) 25px, rgba(124, 58, 237, 1) 26px);
  pointer-events: none;
  z-index: 0;
}

.numerology-profile-card > * {
  position: relative;
  z-index: 1;
}


.numerology-number-badge {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--an-primary-dark) 0%, var(--an-primary) 40%, var(--an-primary-light) 80%, var(--an-primary) 100%);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.25),
              0 0 0 8px rgba(124, 58, 237, 0.12),
              0 8px 24px rgba(124, 58, 237, 0.35),
              inset 0 2px 8px rgba(255, 255, 255, 0.3),
              inset 0 -2px 8px rgba(91, 33, 182, 0.25);
  position: relative;
  animation: mystical-number-pulse 3s ease-in-out infinite;
}

.badge-icon {
  width: 3.5rem;
  height: 3.5rem;
  color: white;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.number-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  animation: mystical-pulse-glow 2s ease-in-out infinite;
  z-index: 0;
}

@keyframes mystical-number-pulse {
 0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.25),
                0 0 0 8px rgba(124, 58, 237, 0.12),
                0 8px 24px rgba(124, 58, 237, 0.35),
                inset 0 2px 8px rgba(255, 255, 255, 0.3),
                inset 0 -2px 8px rgba(91, 33, 182, 0.25);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.3),
                0 0 0 12px rgba(124, 58, 237, 0.18),
                0 12px 32px rgba(124, 58, 237, 0.45),
                inset 0 2px 8px rgba(255, 255, 255, 0.35),
                inset 0 -2px 8px rgba(91, 33, 182, 0.3);
  }
}


.numerology-profile-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
  text-align: center;
  color: var(--text-primary);
}

.numerology-profile-card p {
  color: var(--text-secondary);
  line-height: 1.7;
  text-align: center;
  flex-grow: 1;
}

.numerology-profile-card .feature-highlight {
  margin-top: var(--space-4);
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--an-primary);
  padding: var(--space-2) var(--space-4);
  background: rgba(124, 58, 237, 0.1);
  border-radius: var(--radius-md);
  display: inline-block;
  width: 100%;
}

@media (max-width: 1024px) {
  .numerology-profile-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .video-section-layout {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  
  .video-section-content {
    text-align: center;
  }
  
  .video-section-content h2 {
    font-size: 2rem;
    text-align: center;
  }
  
  .video-section-content p {
    text-align: center;
  }
  
  .numerology-profile-grid .offset-card {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .numerology-number-badge {
    width: 80px;
    height: 80px;
  }
  
  .badge-icon {
    width: 2.5rem;
    height: 2.5rem;
  }
  
  .numerology-profile-card {
    padding: var(--space-6);
  }
}

/* =============================================================================
   PREDICTIVE REPORTS SECTION (Unique Styling)
   ============================================================================= */

.predictive-reports-section {
  padding: 6rem 0;
  background-image: url('https://res.cloudinary.com/dbtcg826q/image/upload/v1762893413/common/sp-buckets/img/ArcaneTexture_Plum2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.features-section:nth-child(even) {
  position: relative;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(124, 58, 237, 0.03) 50%, var(--bg-secondary) 100%);
}

.features-section:nth-child(even)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(124, 58, 237, 0.015) 60px, rgba(124, 58, 237, 0.015) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(124, 58, 237, 0.015) 60px, rgba(124, 58, 237, 0.015) 61px);
  pointer-events: none;
  z-index: 0;
}

.features-section:nth-child(even) > .an-container {
  position: relative;
  z-index: 1;
}

.an-progress-dashboard-section {
  background: #1d1725 !important;
}

.an-progress-dashboard-section .an-section-title,
.an-progress-dashboard-section .an-section-description {
  color: #e9d5ff;
}

.an-progress-dashboard-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-12);
  align-items: start;
  margin: var(--space-12) 0;
}

.an-progress-dashboard-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.an-progress-dashboard-image img {
  width: 100%;
  height: auto;
  max-width: 500px;
  object-fit: contain;
}

.an-progress-dashboard-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.an-progress-item {
  padding: var(--space-5) 0;
  border-bottom: 1px solid rgba(233, 213, 255, 0.1);
}

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

.an-progress-item h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
  color: #e9d5ff;
  font-weight: 600;
}

.an-progress-item p {
  color: rgba(233, 213, 255, 0.85);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

.features-section:first-of-type {
  position: relative;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(124, 58, 237, 0.05) 50%, var(--bg-secondary) 100%);
  overflow: hidden;
}

.features-section:first-of-type::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: mystical-pulse-glow 4s ease-in-out infinite;
}

.features-section:first-of-type::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(124, 58, 237, 0.02) 40px, rgba(124, 58, 237, 0.02) 41px),
    repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(124, 58, 237, 0.015) 40px, rgba(124, 58, 237, 0.015) 41px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.features-section:first-of-type > .an-container {
  position: relative;
  z-index: 1;
}

.mission-section {
  position: relative;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.mission-section > .an-container {
  position: relative;
  z-index: 1;
}

.predictive-reports-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(124, 58, 237, 0.5);
  pointer-events: none;
  z-index: 0;
}

.predictive-reports-section .an-container {
  position: relative;
  z-index: 1;
}

.predictive-reports-section .an-section-title {
  color: #e9d5ff;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.predictive-reports-section .an-section-description {
  color: #e9d5ff;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.predictive-reports-section .feature-card {
  background: white;
  border: 2px solid rgba(124, 58, 237, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.predictive-reports-section .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--an-primary) 0%, var(--an-accent) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.predictive-reports-section .feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(124, 58, 237, 0.15);
  border-color: var(--an-primary);
}

.predictive-reports-section .feature-card:hover::before {
  opacity: 1;
}

.predictive-reports-section .feature-icon {
  background: linear-gradient(135deg, var(--an-primary-dark) 0%, var(--an-primary) 40%, var(--an-primary-light) 80%, var(--an-primary) 100%);
  width: 70px;
  height: 70px;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.25),
              0 0 0 4px rgba(124, 58, 237, 0.12),
              0 6px 20px rgba(124, 58, 237, 0.35),
              inset 0 2px 6px rgba(255, 255, 255, 0.3),
              inset 0 -2px 6px rgba(91, 33, 182, 0.25);
  position: relative;
}

.predictive-reports-section .feature-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
  z-index: -1;
  filter: blur(8px);
  animation: mystical-pulse-glow 2s ease-in-out infinite;
}

.predictive-reports-section .feature-card h3 {
  color: var(--an-primary);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.predictive-reports-section .feature-card p {
  color: var(--an-text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.predictive-reports-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin: var(--space-12) 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.predictive-report-card {
  padding: var(--space-8);
  background: rgba(233, 213, 255, 0.15);
  border: 2px solid rgba(233, 213, 255, 0.3);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.predictive-report-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(233, 213, 255, 0.1) 0%, transparent 70%);
  opacity: 0.3;
  z-index: 0;
  transition: opacity 0.4s ease;
}

.predictive-report-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(233, 213, 255, 0.02) 20px, rgba(233, 213, 255, 0.02) 21px);
  pointer-events: none;
  z-index: 0;
}

.predictive-report-card > * {
  position: relative;
  z-index: 1;
}

.predictive-report-card:hover {
  transform: translateY(-8px);
  border-color: rgba(233, 213, 255, 0.5);
  box-shadow: 0 12px 32px rgba(233, 213, 255, 0.2);
}

.predictive-report-card:hover::before {
  opacity: 0.5;
}

.mystical-icon {
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mystical-icon {
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.mystical-icon svg {
  width: 80px;
  height: 80px;
  filter: drop-shadow(0 0 15px rgba(233, 213, 255, 0.5));
  transition: all 0.4s ease;
}

.predictive-report-card:hover .mystical-icon svg {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 25px rgba(233, 213, 255, 0.7));
}

.mystical-icon::before {
  display: none;
}

.predictive-report-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
  color: #e9d5ff;
  font-weight: 600;
}

.predictive-report-card p {
  color: #e9d5ff;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  opacity: 0.85;
}

.features-section .feature-icon {
  background: linear-gradient(135deg, var(--an-primary-dark) 0%, var(--an-primary) 40%, var(--an-primary-light) 80%, var(--an-primary) 100%);
  width: 70px;
  height: 70px;
  border-radius: 16px;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.25),
              0 0 0 4px rgba(124, 58, 237, 0.12),
              0 6px 20px rgba(124, 58, 237, 0.35),
              inset 0 2px 6px rgba(255, 255, 255, 0.3),
              inset 0 -2px 6px rgba(91, 33, 182, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.features-section .feature-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
  z-index: -1;
  filter: blur(8px);
  animation: mystical-pulse-glow 2s ease-in-out infinite;
}

.features-section .feature-icon svg {
  width: 32px;
  height: 32px;
  color: white;
  display: block;
}

.predictive-reports-section .feature-icon svg {
  width: 32px;
  height: 32px;
  color: white;
  display: block;
}


.features-mixed-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--space-6);
  margin: var(--space-12) 0;
}

.feature-card-featured {
  grid-column: 1 / -1;
  grid-row: 1;
  padding: var(--space-10);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.06) 0%, rgba(139, 92, 246, 0.03) 50%, rgba(124, 58, 237, 0.06) 100%);
  border: 2px solid rgba(124, 58, 237, 0.25);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.1);
  transition: all 0.4s ease;
}

.feature-card-featured::before {
  display: none;
}

.feature-card-featured::after {
  display: none;
}

.feature-card-featured:hover {
  border-color: rgba(124, 58, 237, 0.4);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.2),
              0 0 0 1px rgba(124, 58, 237, 0.3);
  transform: translateY(-2px);
}

.feature-card-featured > * {
  position: relative;
  z-index: 1;
}

.feature-number-badge {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--an-primary-dark) 0%, var(--an-primary) 40%, var(--an-primary-light) 80%, var(--an-primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.25),
              0 0 0 8px rgba(124, 58, 237, 0.12),
              0 8px 24px rgba(124, 58, 237, 0.35),
              inset 0 2px 8px rgba(255, 255, 255, 0.3),
              inset 0 -2px 8px rgba(91, 33, 182, 0.25);
  animation: mystical-number-pulse 3s ease-in-out infinite;
  position: relative;
}

.feature-number-badge::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
  z-index: -1;
  animation: mystical-pulse-glow 2s ease-in-out infinite;
}

.feature-number-badge span {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.feature-number-badge-small {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--an-primary-dark) 0%, var(--an-primary) 40%, var(--an-primary-light) 80%, var(--an-primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.25),
              0 0 0 6px rgba(124, 58, 237, 0.12);
  animation: mystical-number-pulse 3s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.feature-number-badge-small::before {
  display: none;
}

.feature-number-badge-small span {
  font-size: 1.75rem;
  font-weight: 700;
  color: white;
  text-shadow: none;
}

.feature-card-supporting:hover .feature-number-badge-small {
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.3),
              0 0 0 8px rgba(124, 58, 237, 0.15);
}

.feature-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--an-primary-dark) 0%, var(--an-primary) 40%, var(--an-primary-light) 80%, var(--an-primary) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-6);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.25),
              0 0 0 6px rgba(124, 58, 237, 0.12),
              0 8px 24px rgba(124, 58, 237, 0.35),
              inset 0 2px 8px rgba(255, 255, 255, 0.3),
              inset 0 -2px 8px rgba(91, 33, 182, 0.25);
  position: relative;
}

.feature-icon-large::before {
  display: none;
}

.feature-icon-large svg {
  width: 50px;
  height: 50px;
  color: white;
}

.feature-card-featured h3 {
  font-size: 1.75rem;
  margin-bottom: var(--space-4);
  color: var(--an-primary);
}

.feature-card-featured p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: var(--space-4);
}

.feature-highlight-badge {
  display: inline-block;
  padding: var(--space-2) var(--space-5);
  background: linear-gradient(135deg, var(--an-primary), var(--an-primary-light));
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: auto;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.feature-card-supporting {
  padding: var(--space-6);
  background: var(--bg-primary);
  border: 2px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 2px 12px rgba(124, 58, 237, 0.05);
}

.feature-card-supporting::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.feature-card-supporting::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 25px, rgba(124, 58, 237, 0.02) 25px, rgba(124, 58, 237, 0.02) 26px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

.feature-card-supporting:hover {
  border-color: rgba(124, 58, 237, 0.35);
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.2),
              0 0 0 1px rgba(124, 58, 237, 0.25);
  transform: translateY(-4px);
}

.feature-card-supporting:hover::before {
  opacity: 0.6;
}

.feature-card-supporting > * {
  position: relative;
  z-index: 1;
}

.feature-card-supporting .feature-icon {
  width: 50px;
  height: 50px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card-supporting h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
  text-align: center;
}

.feature-card-supporting p {
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: center;
}

.features-alternating-layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin: var(--space-12) 0;
}

.feature-alternating-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: var(--space-8);
  align-items: center;
  padding: var(--space-6);
  background: var(--bg-primary);
  border: 2px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.feature-alternating-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--an-primary), var(--an-primary-light));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-alternating-item:hover {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.15);
}

.feature-alternating-item:hover::before {
  opacity: 1;
}

.feature-alternating-item.reverse {
  grid-template-columns: 1fr 120px;
}

.feature-alternating-item.reverse .alternating-icon-wrapper {
  order: 2;
}

.feature-alternating-item.reverse .alternating-content {
  order: 1;
}

.alternating-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.alternating-icon-wrapper .feature-icon {
  width: 80px;
  height: 80px;
  margin: 0;
}

.alternating-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.alternating-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.features-vertical-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-12) 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.flow-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--space-6);
  align-items: center;
  width: 100%;
  padding: var(--space-6);
  background: var(--bg-primary);
  border: 2px solid rgba(124, 58, 237, 0.15);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--an-primary);
  position: relative;
  transition: all 0.3s ease;
}

.flow-item:hover {
  border-color: rgba(124, 58, 237, 0.3);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.15);
  transform: translateX(4px);
}

.flow-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--an-primary);
  text-align: center;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(139, 92, 246, 0.05));
  border-radius: var(--radius-md);
  padding: var(--space-3);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.flow-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flow-icon svg {
  width: 60px;
  height: 60px;
  filter: drop-shadow(0 0 6px rgba(124, 58, 237, 0.4));
  transition: all 0.3s ease;
}

.flow-item:hover .flow-icon svg {
  filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.6));
  transform: scale(1.05);
}

.flow-icon .feature-icon {
  width: 60px;
  height: 60px;
  margin: 0;
}

.flow-content h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.flow-content p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.flow-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, var(--an-primary), transparent);
  margin: var(--space-2) 0;
}

@media (max-width: 1024px) {
  .features-mixed-layout {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto auto;
  }
  
  .feature-card-featured {
    grid-row: 1;
    grid-column: 1 / -1;
  }
  
  .predictive-reports-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .an-progress-dashboard-section {
    padding: var(--space-8) 0 !important;
  }
  
  .an-progress-dashboard-section .an-section-description {
    margin-bottom: var(--space-4) !important;
  }
  
  .an-progress-dashboard-layout {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin: var(--space-4) 0 !important;
  }
  
  .an-progress-dashboard-image {
    justify-content: center;
    padding: 0;
    align-items: flex-start;
  }
  
  .an-progress-dashboard-image img {
    max-width: 280px;
    transform: scale(0.7);
    display: block;
  }
  
  .an-progress-dashboard-content {
    text-align: center;
  }
  
  .an-progress-item {
    text-align: center;
  }
  
  .an-progress-item h3,
  .an-progress-item p {
    text-align: center;
  }
  
  .mystical-icon svg {
    width: 70px;
    height: 70px;
  }
  
  .mystical-icon {
    margin-bottom: var(--space-4);
  }
  
  .features-section:first-of-type::before {
    width: 800px;
    height: 800px;
  }
  
  .feature-number-badge-small {
    width: 50px;
    height: 50px;
  }
  
  .feature-number-badge-small span {
    font-size: 1.5rem;
  }
  
  .feature-alternating-item,
  .feature-alternating-item.reverse {
    grid-template-columns: 100px 1fr;
  }
  
  .feature-alternating-item.reverse .alternating-icon-wrapper {
    order: 1;
  }
  
  .feature-alternating-item.reverse .alternating-content {
    order: 2;
  }
  
  .alternating-content {
    text-align: center;
  }
  
  .alternating-content h3,
  .alternating-content p {
    text-align: center;
  }
  
  .flow-item {
    grid-template-columns: 60px 1fr;
    text-align: center;
  }
  
  .flow-content {
    text-align: center;
  }
  
  .flow-content h3,
  .flow-content p {
    text-align: center;
  }
  
  .page-title,
  .page-subtitle {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .features-mixed-layout {
    grid-template-columns: 1fr;
  }
  
  .feature-card-featured {
    grid-column: 1;
    padding: var(--space-8);
  }
  
  .predictive-reports-grid {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .mystical-icon svg {
    width: 60px;
    height: 60px;
  }
  
  .mystical-icon {
    margin-bottom: var(--space-4);
  }
  
  .predictive-report-card {
    padding: var(--space-6);
  }
  
  .an-progress-dashboard-section {
    padding: var(--space-6) 0 !important;
  }
  
  .an-progress-dashboard-section .an-section-description {
    margin-bottom: var(--space-4) !important;
  }
  
  .an-progress-dashboard-layout {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin: var(--space-4) 0 !important;
  }
  
  .an-progress-dashboard-image {
    padding: 0;
    align-items: flex-start;
  }
  
  .an-progress-dashboard-image img {
    max-width: 70%;
    transform: scale(0.7);
    display: block;
  }
  
  .an-progress-dashboard-content {
    text-align: center;
  }
  
  .an-progress-item {
    padding: var(--space-4) 0;
    text-align: center;
  }
  
  .an-progress-item h3 {
    font-size: 1.25rem;
    text-align: center;
  }
  
  .an-progress-item p {
    text-align: center;
  }
  
  .features-section:first-of-type::before {
    width: 600px;
    height: 600px;
  }
  
  .features-section:first-of-type::after {
    opacity: 0.4;
  }
  
  .feature-number-badge-small {
    width: 45px;
    height: 45px;
    margin-bottom: var(--space-3);
  }
  
  .feature-number-badge-small span {
    font-size: 1.25rem;
  }
  
  .feature-card-supporting {
    padding: var(--space-5);
  }
  
  .feature-alternating-item,
  .feature-alternating-item.reverse {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
  
  .alternating-icon-wrapper {
    justify-self: center;
  }
  
  .alternating-content {
    text-align: center;
  }
  
  .alternating-content h3,
  .alternating-content p {
    text-align: center;
  }
  
  .flow-item {
    grid-template-columns: 1fr;
    gap: var(--space-4);
    text-align: center;
  }
  
  .flow-number {
    margin: 0 auto;
  }
  
  .flow-icon {
    justify-self: center;
  }
  
  .flow-content {
    text-align: center;
  }
  
  .flow-content h3,
  .flow-content p {
    text-align: center;
  }
  
  .page-title,
  .page-subtitle {
    text-align: center;
  }
}

/* =============================================================================
   TESTIMONIALS
   ============================================================================= */

.testimonials-section {
  padding: var(--space-20) 0;
  background: var(--bg-secondary);
}

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

.testimonial-card {
  padding: var(--space-6);
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.testimonial-author {
  font-weight: 600;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* =============================================================================
   FOOTER - MYSTICAL NUMEROLOGY THEME
   ============================================================================= */

.an-footer {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
  color: var(--text-inverse);
  padding: var(--space-12) 0 var(--space-6);
  position: relative;
  overflow: hidden;
}

.an-footer::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.an-footer .an-container {
  position: relative;
  z-index: 1;
}

.an-footer-links-container {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
  position: relative;
  z-index: 1;
  align-items: center;
}

.an-footer-links-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.an-footer-links-row a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.an-footer-links-row a:hover {
  color: var(--color-white);
  text-shadow: 0 0 8px rgba(124, 58, 237, 0.5);
}

.an-footer-link-separator {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.875rem;
  margin: 0 var(--space-1);
}

.an-footer-bottom {
  padding-top: var(--space-6);
  border-top: 2px solid;
  border-image: linear-gradient(90deg, transparent, var(--an-primary-light), var(--an-primary), var(--an-primary-light), transparent) 1;
  text-align: center;
  color: white;
  font-size: 0.875rem;
  position: relative;
  z-index: 1;
}

.an-footer-bottom p {
  color: white;
  margin: 0;
}

@media (max-width: 1024px) {
  .an-footer-links-container {
    align-items: center;
    text-align: center;
  }
  
  .an-footer-links-row {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .an-footer-links-container {
    align-items: center;
    text-align: center;
  }
  
  .an-footer-links-row {
    justify-content: center;
    gap: var(--space-2);
    font-size: 0.8125rem;
  }
  
  .an-footer-links-row a {
    font-size: 0.8125rem;
  }
}

/* =============================================================================
   PAGE-SPECIFIC STYLES
   ============================================================================= */

.page-header {
  position: relative;
  padding: var(--space-16) 0;
  background: var(--an-primary-dark);
  color: var(--color-white);
  overflow: hidden;
}

.number-particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.number-particle {
  position: absolute;
  color: rgba(124, 58, 237, 0.15);
  font-weight: 300;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  user-select: none;
  animation: float-drift linear infinite;
  text-shadow: none;
}

.number-particle.particle-small {
  font-size: 1.5rem;
}

.number-particle.particle-medium {
  font-size: 2.5rem;
}

.number-particle.particle-large {
  font-size: 3.5rem;
}

.page-header .number-particle {
  color: rgba(255, 255, 255, 0.3);
}

@keyframes float-drift {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translate(var(--drift-x-end, 100px), var(--drift-y-end, 100px)) rotate(var(--rotation, 360deg));
    opacity: 0;
  }
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  z-index: 0;
  pointer-events: none;
}

.page-header .an-container,
.hero-numerology .an-container {
  position: relative;
  z-index: 2;
}

.number-particles-container.paused .number-particle {
  animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
  .number-particle {
    animation: none;
    opacity: 0.2;
  }
}

.page-title {
  font-size: 3rem;
  margin-bottom: var(--space-4);
  color: white;
}

.page-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

.features-section {
  padding: var(--space-16) 0;
}

.an-section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--space-6);
}

.an-section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--space-12);
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-6);
  margin: var(--space-12) 0;
}

.cert-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-6);
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.cert-icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.cert-name {
  font-weight: 600;
  text-align: center;
}

.contact-section {
  padding: var(--space-16) 0;
}

.support-message {
  max-width: 600px;
  margin: 0 auto var(--space-8);
  padding: var(--space-4) var(--space-6);
  background: var(--bg-secondary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  line-height: 1.6;
}

.support-message strong {
  color: var(--color-primary);
  display: block;
  margin-bottom: var(--space-2);
  font-size: 0.9375rem;
}

.support-message br {
  line-height: var(--space-3);
}

.support-message .an-btn {
  color: white !important;
  background: var(--an-primary) !important;
  border: none !important;
  padding: 0.75rem 1.5rem !important;
  border-radius: 8px !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  display: inline-block !important;
  transition: all 0.3s ease !important;
  margin-top: 1rem !important;
}

.support-message .an-btn:hover {
  background: var(--an-primary-dark) !important;
  color: white !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.pricing-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
  margin: var(--space-8) 0;
}

.toggle-info {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* =============================================================================
   RESPONSIVE DESIGN
   ============================================================================= */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 900px) {
  .an-nav-links {
    gap: var(--space-4);
  }
  
  .an-nav-link.an-nav-link-signup {
    padding: var(--space-2) var(--space-4);
  }
}

@media (max-width: 768px) {
  .an-mobile-menu-toggle {
    display: block;
  }

  .an-header-container {
    position: relative;
    justify-content: space-between;
  }

  .an-header-container > .logo {
    order: 1;
  }
  
  .an-header-container > .an-nav-actions {
    display: none;
  }
  
  .an-mobile-menu-toggle {
    order: 2;
  }
  
  nav {
    order: 3;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height var(--transition-base), opacity var(--transition-base), padding var(--transition-base);
    z-index: var(--z-dropdown);
  }

  nav.active {
    max-height: 500px;
    opacity: 1;
    padding: var(--space-6) 0;
  }

  .an-nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 var(--space-4) var(--space-6);
  }

  .an-nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .an-nav-links li:last-child {
    border-bottom: none;
  }

  .an-nav-link {
    display: block;
    padding: var(--space-4) var(--space-4);
    border-radius: 0;
    transition: background var(--transition-base), color var(--transition-base);
    text-align: center;
    border-bottom: 2px solid transparent;
  }

  .an-nav-link:hover,
  .an-nav-link.active {
    background: rgba(124, 58, 237, 0.05);
    border: 1px solid transparent;
    border-bottom: 2px solid var(--an-primary);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    color: var(--an-primary);
  }
  
  .an-nav-link.an-nav-link-signup {
    background: var(--an-primary-dark) !important;
    color: white !important;
    border: none !important;
    border-radius: var(--radius-md);
    margin: var(--space-2) 0;
  }
  
  .an-nav-links li:has(.an-nav-link-signup) {
    border-bottom: none;
  }
  
  .an-nav-link.an-nav-link-signup:hover,
  .an-nav-link.an-nav-link-signup.active {
    background: var(--an-primary) !important;
    color: white !important;
    border: none !important;
  }

  nav.active {
    display: flex;
    flex-direction: column;
  }

  .an-nav-actions {
    flex-direction: column;
    width: 100%;
    padding: 0 var(--space-4);
    margin-top: var(--space-4);
    gap: var(--space-2);
  }

  nav.active .an-nav-actions {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: var(--space-3);
    padding: var(--space-2) var(--space-4) var(--space-4);
    margin-top: 0;
    border-top: 1px solid var(--border-color);
  }

  nav.active .an-nav-actions .an-btn {
    width: auto;
    padding: var(--space-2) var(--space-3);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  nav.active .an-nav-actions .an-btn .an-btn-text {
    display: none;
  }

  nav.active .an-nav-actions .an-btn i {
    margin: 0;
    font-size: 1.125rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .an-section-title {
    font-size: 1.75rem;
  }
  
  .video-section-layout {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  
  .video-section-content {
    text-align: center;
  }
  
  .video-section-content h2 {
    font-size: 2rem;
    text-align: center;
  }
  
  .video-section-content p {
    text-align: center;
  }
}


.an-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.an-accordion-item {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.an-accordion-item:last-child {
  margin-bottom: 0;
}

.an-accordion-numerology .an-accordion-header {
  background: rgba(124, 58, 237, 0.05);
  border-left: 4px solid var(--an-primary);
  padding: 1.5rem 2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.an-accordion-numerology .an-accordion-header:hover {
  background: rgba(124, 58, 237, 0.1);
}

.an-accordion-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
  margin: 0;
}

.an-accordion-icon {
  font-size: 0.875rem;
  color: #6b7280;
  transition: transform 0.3s ease;
}

.an-accordion-content {
  padding: 0;
  background: white;
  color: #6b7280;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  opacity: 0;
}

.an-accordion-item.active .an-accordion-content {
  max-height: 300px;
  padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  opacity: 1;
}

.an-accordion-item.active .an-accordion-icon {
  transform: rotate(180deg);
}

.auth-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--an-primary) 0%, var(--an-accent) 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.auth-container {
  max-width: 450px;
  margin: 0 auto;
  background: white;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.auth-header h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--an-primary);
  margin-bottom: 0.5rem;
}

.auth-header p {
  color: var(--an-secondary);
  font-size: 1rem;
}

.plan-selection-display {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(124, 58, 237, 0.02) 100%);
  border: 2px solid rgba(124, 58, 237, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.plan-selection-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.plan-selection-header h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--an-primary);
  margin: 0;
}

.plan-change-btn {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  text-decoration: none;
}

.plan-selection-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan-selection-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.plan-selection-price {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--an-primary);
}

.plan-selection-features {
  margin-top: 0.5rem;
}

.plan-selection-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.plan-selection-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.plan-selection-features li i {
  color: var(--an-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .plan-selection-display {
    padding: 1.25rem;
  }
  
  .plan-selection-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .plan-selection-header h3 {
    margin-bottom: 0;
  }
  
  .plan-change-btn {
    width: 100%;
    text-align: center;
    padding: 0.625rem 1rem;
  }
  
  .plan-selection-name {
    font-size: 1.25rem;
  }
  
  .plan-selection-price {
    font-size: 1.125rem;
  }
}

.auth-section .an-btn-primary {
  background: var(--an-primary-dark);
  color: white;
  border: none;
  font-weight: 600;
}

.auth-section .an-btn-primary:hover {
  background: var(--an-primary);
  color: white;
  border: none;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.auth-form .an-form-group {
  display: flex;
  flex-direction: column;
}

.auth-form .an-form-group label {
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.auth-form .an-form-group input {
  padding: 0.875rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f9fafb;
}

.auth-form .an-form-group input:focus {
  outline: none;
  border-color: var(--an-primary);
  background: white;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.auth-form .an-form-group input:invalid {
  border-color: #ef4444;
}

.an-form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.an-form-options .checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--an-secondary);
}

.an-form-options .checkbox-label input[type="checkbox"] {
  margin: 0;
  width: auto;
}

.an-form-options .checkmark {
  width: 16px;
  height: 16px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

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

.an-form-options .checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  color: white;
  font-size: 10px;
  font-weight: bold;
}

.forgot-link {
  color: var(--an-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.forgot-link:hover {
  text-decoration: underline;
}

.auth-divider {
  text-align: center;
  margin: 2rem 0;
  position: relative;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e7eb;
}

.auth-divider span {
  background: white;
  padding: 0 1rem;
  color: var(--an-secondary);
  font-size: 0.9rem;
}

.auth-footer {
  margin-top: 1rem;
}

.an-btn-full {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}


.legal-content {
  padding: 4rem 0;
  background: white;
}

.legal-text {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.legal-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--an-primary);
  margin: 3rem 0 1.5rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #e5e7eb;
}

.legal-text h2:first-child {
  margin-top: 0;
}

.legal-text h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin: 2rem 0 1rem 0;
}

.legal-text p {
  color: #374151;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.legal-text ul {
  margin: 1rem 0 2rem 0;
  padding-left: 0;
  list-style: none;
}

.legal-text li {
  color: #374151;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
}

.legal-text li::before {
  content: '•';
  color: var(--an-primary);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.legal-text strong {
  color: #1f2937;
  font-weight: 600;
}

.legal-footer {
  background: #f9fafb;
  border-left: 4px solid var(--an-primary);
  padding: 2rem;
  margin: 3rem 0 0 0;
  border-radius: 0 8px 8px 0;
}

.legal-footer p {
  margin: 0;
  font-size: 1.1rem;
  color: #1f2937;
  font-style: italic;
}


.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 2px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  min-height: 0;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--an-primary);
}

.pricing-card.featured {
  border-color: var(--an-primary);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--an-accent);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

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

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.pricing-price {
  margin-bottom: 1rem;
}

.price-currency {
  font-size: 1.5rem;
  color: var(--an-secondary);
  vertical-align: top;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--an-primary);
}

.price-period {
  font-size: 1rem;
  color: var(--an-secondary);
}

.pricing-description {
  color: var(--an-secondary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

.pricing-features {
  flex: 1 1 auto;
  margin-bottom: 2rem;
  min-height: 0;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li i {
  color: var(--an-primary);
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing-action {
  margin-top: auto;
  padding-top: 2rem;
  flex-shrink: 0;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(124, 58, 237, 0.08);
  color: var(--an-secondary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 400;
  border: none;
  cursor: default;
  box-shadow: none;
  transition: none;
}

.trust-badge:hover {
  background: rgba(124, 58, 237, 0.08);
  transform: none;
  box-shadow: none;
}

.trust-badge i {
  font-size: 0.9rem;
  color: var(--an-secondary);
}

.cta {
  padding: 4rem 0;
  background: var(--an-primary);
  text-align: center;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

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

.cta .an-btn-primary {
  background: white;
  color: var(--an-primary);
  border-color: white;
}

.cta .an-btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--an-primary);
  border-color: white;
}

.cta .an-btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.cta .an-btn-outline:hover {
  background: white;
  color: var(--an-primary);
  border-color: white;
}

.cta .trust-indicators {
  margin-top: 2rem;
}

.cta .trust-badge {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: default;
  box-shadow: none;
}

.cta .trust-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: none;
  box-shadow: none;
}

.cta .trust-badge i {
  color: rgba(255, 255, 255, 0.8);
}


.mission-section {
  padding: 6rem 0;
  background: linear-gradient(to bottom, rgba(124, 58, 237, 0.03), white);
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 4rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.mission-card {
  background: white;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
  border: 3px solid transparent;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--an-primary) 0%, var(--an-accent) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(124, 58, 237, 0.2);
  border-color: var(--an-primary);
}

.mission-card:hover::before {
  transform: scaleX(1);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--an-primary-dark) 0%, var(--an-primary) 40%, var(--an-primary-light) 80%, var(--an-primary) 100%);
  border-radius: 16px;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.25),
              0 0 0 4px rgba(124, 58, 237, 0.12),
              0 6px 20px rgba(124, 58, 237, 0.35),
              inset 0 2px 6px rgba(255, 255, 255, 0.3),
              inset 0 -2px 6px rgba(91, 33, 182, 0.25);
  transition: all 0.4s ease;
  position: relative;
}

.mission-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 16px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
  z-index: -1;
  filter: blur(8px);
  animation: mystical-pulse-glow 2s ease-in-out infinite;
}

.mission-card:hover .mission-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.3),
              0 0 0 6px rgba(124, 58, 237, 0.15),
              0 8px 24px rgba(124, 58, 237, 0.5),
              inset 0 2px 6px rgba(255, 255, 255, 0.35),
              inset 0 -2px 6px rgba(91, 33, 182, 0.3);
}

.mission-icon svg {
  width: 32px;
  height: 32px;
  color: white;
  display: block;
}

.mission-icon i,
.mission-icon i[class*="fa-"],
.mission-icon .fa-solid {
  font-size: 2.5rem !important;
  color: white !important;
  line-height: 1 !important;
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.mission-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--an-primary);
  margin-bottom: 1.25rem;
}

.mission-card p {
  color: var(--an-text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
  margin: 0;
}

@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .mission-card {
    padding: 2.5rem 2rem;
  }
  
  .mission-icon {
    width: 70px;
    height: 70px;
  }
  
  .mission-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .mission-icon i {
    font-size: 2.2rem;
  }
}

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

.team-member {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: var(--an-primary);
}

.member-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--an-primary-dark) 0%, var(--an-primary) 40%, var(--an-primary-light) 80%, var(--an-primary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: white;
  font-size: 2rem;
  overflow: hidden;
  border: 3px solid rgba(124, 58, 237, 0.3);
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2),
              0 0 0 4px rgba(124, 58, 237, 0.1),
              0 6px 20px rgba(124, 58, 237, 0.3),
              inset 0 2px 6px rgba(255, 255, 255, 0.2);
  position: relative;
}

.member-avatar::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
  z-index: -1;
  animation: mystical-pulse-glow 2s ease-in-out infinite;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.team-member h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.member-role {
  color: var(--an-primary);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.member-bio {
  color: #6b7280;
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .team-member {
    padding: 1.5rem;
  }
  
  .member-avatar {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}


.support-message {
  background: rgba(124, 58, 237, 0.05);
  border-left: 4px solid var(--an-primary);
  padding: 2rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 3rem;
}

.support-message strong {
  color: var(--an-primary);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 1rem;
}

.support-message a {
  color: var(--an-primary);
  text-decoration: none;
  font-weight: 500;
}

.support-message a:hover {
  text-decoration: underline;
}

.support-message .an-btn {
  margin-top: 1rem;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

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

.features-section .section-header h2 {
  margin-bottom: 1rem;
}

.features-section .section-header p {
  margin: 0;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: #6b7280;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: var(--an-primary);
}

.method-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--an-primary), var(--an-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.method-icon svg {
  width: 24px;
  height: 24px;
  color: white;
  display: block;
}

.method-icon i {
  font-size: 1.2rem;
  color: white;
}

.method-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.method-content p {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.4;
}

.method-content p:first-of-type {
  font-weight: 500;
  color: var(--an-primary);
  font-size: 1rem;
}

.contact-form-container {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e5e7eb;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.an-form-group {
  display: flex;
  flex-direction: column;
}

.an-form-group label {
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.an-form-group input,
.an-form-group select,
.an-form-group textarea {
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
}

.an-form-group input:focus,
.an-form-group select:focus,
.an-form-group textarea:focus {
  outline: none;
  border-color: var(--an-primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.an-form-group textarea {
  resize: vertical;
  min-height: 120px;
}

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

.checkbox-label input[type="checkbox"] {
  margin: 0;
  width: auto;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.checkbox-label input[type="checkbox"]:checked {
  accent-color: var(--an-primary);
}

.contact-form .an-btn {
  margin-top: 1rem;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-method {
    padding: 1rem;
  }
  
  .method-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
}

/* =============================================================================
   UNIQUE INDEX PAGE LAYOUT
   ============================================================================= */

.hero-numerology {
  padding: 6rem 0;
  background: transparent;
  color: #1f2937;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-numerology .number-particles-container {
  display: none;
}

.hero-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 1;
}

@media (max-width: 768px) {
  .hero-numerology {
    min-height: 500px;
    padding: 4rem 0;
  }
  
  .hero-background-video {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-background-video {
    display: none;
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}


.geometric-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(91, 33, 182, 0.1) 0%, transparent 50%),
    repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(255, 255, 255, 0.02) 40px, rgba(255, 255, 255, 0.02) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255, 255, 255, 0.02) 40px, rgba(255, 255, 255, 0.02) 41px);
  animation: mystical-pattern-shift 20s ease-in-out infinite;
}

@keyframes mystical-pattern-shift {
  0%, 100% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0 0, 0 0;
  }
  50% {
    background-position: 10% 10%, -10% -10%, 5% 5%, 20px 20px, -20px -20px;
  }
}

.subtle-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, rgba(139, 92, 246, 0.1) 30%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: mystical-pulse-glow 4s ease-in-out infinite;
  filter: blur(40px);
}

.subtle-glow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: mystical-pulse-glow 3s ease-in-out infinite reverse;
  filter: blur(30px);
}

@keyframes mystical-pulse-glow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 1;
  }
}

.hero-content-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #f1f1f1;
  font-weight: 500;
}

.hero-tagline i {
  color: var(--an-primary-light);
  filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.5));
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: #e4daf5;
}

.title-highlight {
  background: linear-gradient(135deg, #a78bfa, #c4b5fd, #ddd6fe, #e9d5ff, #f3e8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: mystical-text-shimmer 3s ease-in-out infinite;
  background-size: 200% 100%;
}

@keyframes mystical-text-shimmer {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  color: #e4daf5;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-actions .an-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-actions .an-btn-outline {
  color: #f1f1f1;
  border-color: #f1f1f1;
  background-color: transparent;
}

.hero-actions .an-btn-outline:hover {
  color: #f1f1f1;
  border-color: #f1f1f1;
  background-color: rgba(241, 241, 241, 0.1);
}

.hero-actions .an-btn i {
  transition: transform 0.3s ease;
}

.hero-actions .an-btn:hover i {
  transform: translateX(3px);
}

.trust-indicators {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.trust-item i {
  color: var(--an-accent);
  font-size: 1rem;
}


@media (max-width: 1024px) {
  .hero-tagline i {
    display: none;
  }
  
  .cycle-text {
    text-align: center;
  }
  
  .cycle-text h2 {
    text-align: center;
  }
  
  .cycle-text > p {
    text-align: center;
  }
  
  .cycle-features {
    text-align: left;
  }
  
  .features-section {
    padding: var(--space-8) 0;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .trust-indicators {
    justify-content: center;
  }
}

.cycle-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.cycle-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.cycle-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.cycle-text > p {
  font-size: 1.1rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cycle-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cycle-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.cycle-feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--an-primary-dark) 0%, var(--an-primary) 50%, var(--an-primary-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.25),
              0 0 0 4px rgba(124, 58, 237, 0.12),
              0 4px 12px rgba(124, 58, 237, 0.3),
              inset 0 1px 4px rgba(255, 255, 255, 0.3),
              inset 0 -1px 4px rgba(91, 33, 182, 0.25);
  position: relative;
}

.cycle-feature-icon::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
  z-index: -1;
  animation: mystical-pulse-glow 2s ease-in-out infinite;
}

.cycle-feature-icon svg {
  width: 20px;
  height: 20px;
  color: white;
  display: block;
}

.cycle-feature i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--an-primary), var(--an-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.cycle-feature h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.cycle-feature p {
  color: #6b7280;
  font-size: 0.9rem;
  margin: 0;
}

.cycle-visualization {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cycle-wheel {
  width: 300px;
  height: 300px;
  position: relative;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(245, 158, 11, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: wheelGlow 4s ease-in-out infinite;
}

@keyframes wheelGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
  }
  50% {
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.4);
  }
}

.cycle-center {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--an-primary-dark) 0%, var(--an-primary) 50%, var(--an-primary-light) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.2),
              0 0 0 8px rgba(124, 58, 237, 0.1),
              0 8px 24px rgba(124, 58, 237, 0.4),
              inset 0 2px 8px rgba(255, 255, 255, 0.2);
  z-index: 3;
  animation: centerPulse 3s ease-in-out infinite;
  position: relative;
}


@keyframes centerPulse {
 0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.2),
                0 0 0 8px rgba(124, 58, 237, 0.1),
                0 8px 24px rgba(124, 58, 237, 0.4),
                inset 0 2px 8px rgba(255, 255, 255, 0.2);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.3),
                0 0 0 12px rgba(124, 58, 237, 0.15),
                0 12px 32px rgba(124, 58, 237, 0.5),
                inset 0 2px 8px rgba(255, 255, 255, 0.3);
  }
}

.cycle-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.cycle-label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.25rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.cycle-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(124, 58, 237, 0.3);
}

.cycle-ring-1 {
  width: 200px;
  height: 200px;
  top: 50px;
  left: 50px;
  animation: ringRotate 20s linear infinite;
  transform-origin: 50% 50%;
  border: 2px solid rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.3),
              inset 0 0 20px rgba(124, 58, 237, 0.1),
              0 0 0 1px rgba(139, 92, 246, 0.3);
  background: conic-gradient(from 0deg, transparent, rgba(124, 58, 237, 0.1), transparent, rgba(139, 92, 246, 0.1), transparent);
}

.cycle-ring-2 {
  width: 280px;
  height: 280px;
  top: 10px;
  left: 10px;
  border-style: dashed;
  border-width: 2px;
  border-color: rgba(124, 58, 237, 0.4);
  animation: ringRotateReverse 25s linear infinite;
  transform-origin: 50% 50%;
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.2),
              inset 0 0 30px rgba(139, 92, 246, 0.1);
}

@keyframes ringRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes ringRotateReverse {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}


.cycle-point {
  position: absolute;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  border: 2px solid var(--an-primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--an-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2),
              inset 0 1px 2px rgba(255, 255, 255, 0.5);
}

.cycle-point.active {
  background: linear-gradient(135deg, var(--an-primary-dark) 0%, var(--an-primary) 50%, var(--an-primary-light) 100%);
  color: white;
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.3),
              0 6px 16px rgba(124, 58, 237, 0.5),
              inset 0 2px 4px rgba(255, 255, 255, 0.2);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.cycle-point:nth-child(4) { 
  top: -20px; 
  left: 50%; 
  animation: pointFloatTop 4s ease-in-out infinite;
  animation-delay: 0s;
}

.cycle-point:nth-child(5) { 
  right: -20px; 
  top: 50%; 
  animation: pointFloatRight 4s ease-in-out infinite;
  animation-delay: 1s;
}

.cycle-point:nth-child(6) { 
  bottom: -20px; 
  left: 50%; 
  animation: pointFloatBottom 4s ease-in-out infinite;
  animation-delay: 2s;
}

.cycle-point:nth-child(7) { 
  left: -20px; 
  top: 50%; 
  animation: pointFloatLeft 4s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes pointFloatTop {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}

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

@keyframes pointFloatBottom {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}

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

@keyframes pointFloatX1 {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}


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

@keyframes pointFloatX3 {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-5px);
  }
}

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

.cycle-point.active:nth-child(4) {
  animation: pointPulseTop 2s ease-in-out infinite;
}

.cycle-point.active:nth-child(5) {
  animation: pointPulseRight 2s ease-in-out infinite;
}

.cycle-point.active:nth-child(6) {
  animation: pointPulseBottom 2s ease-in-out infinite;
}

.cycle-point.active:nth-child(7) {
  animation: pointPulseLeft 2s ease-in-out infinite;
}

@keyframes pointPulseTop {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7);
    transform: translateX(-50%) scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(124, 58, 237, 0);
    transform: translateX(-50%) scale(1.1);
  }
}

@keyframes pointPulseRight {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7);
    transform: translateY(-50%) scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(124, 58, 237, 0);
    transform: translateY(-50%) scale(1.1);
  }
}

@keyframes pointPulseBottom {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7);
    transform: translateX(-50%) scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(124, 58, 237, 0);
    transform: translateX(-50%) scale(1.1);
  }
}

@keyframes pointPulseLeft {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.7);
    transform: translateY(-50%) scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(124, 58, 237, 0);
    transform: translateY(-50%) scale(1.1);
  }
}

.cycle-segment {
  position: absolute;
  width: 50%;
  height: 50%;
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-radius: 50%;
  animation: segmentFade 6s ease-in-out infinite;
}

.cycle-segment:nth-child(1) {
  animation-delay: 0s;
}

.cycle-segment:nth-child(2) {
  animation-delay: 1.5s;
}

.cycle-segment:nth-child(3) {
  animation-delay: 3s;
}

.cycle-segment:nth-child(4) {
  animation-delay: 4.5s;
}

@keyframes segmentFade {
  0%, 100% {
    opacity: 0.3;
    border-color: rgba(245, 158, 11, 0.3);
  }
  50% {
    opacity: 0.6;
    border-color: rgba(245, 158, 11, 0.6);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cycle-wheel,
  .cycle-center,
  .cycle-ring-1,
  .cycle-ring-2,
  .cycle-point,
  .cycle-segment {
    animation: none !important;
  }
}

.cycle-segment:nth-child(1) { top: 0; left: 0; border-right: none; border-bottom: none; }
.cycle-segment:nth-child(2) { top: 0; right: 0; border-left: none; border-bottom: none; }
.cycle-segment:nth-child(3) { bottom: 0; left: 0; border-right: none; border-top: none; }
.cycle-segment:nth-child(4) { bottom: 0; right: 0; border-left: none; border-top: none; }

.numerology-card {
  position: relative;
  overflow: hidden;
}

.numerology-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--an-primary), var(--an-accent));
}

.feature-highlight {
  background: rgba(124, 58, 237, 0.1);
  color: var(--an-primary);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .hero-numerology-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .cycle-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .cycle-text {
    text-align: center;
  }
  
  .cycle-text h2 {
    text-align: center;
  }
  
  .cycle-text > p {
    text-align: center;
  }
  
  .cycle-features {
    text-align: left;
  }
  
  .features-section {
    padding: var(--space-8) 0;
  }
  
  .cycle-wheel {
    width: 250px;
    height: 250px;
  }
  
  .cycle-ring-1 {
    width: 150px;
    height: 150px;
    top: 50px;
    left: 50px;
  }
  
  .cycle-ring-2 {
    width: 230px;
    height: 230px;
    top: 10px;
    left: 10px;
  }
}

input:invalid,
select:invalid,
textarea:invalid,
.an-form-input:invalid,
.an-form-select:invalid,
.an-form-textarea:invalid {
  box-shadow: none !important;
  border-color: var(--border-color, #e5e7eb) !important;
}

.auth-form input:invalid,
.auth-form select:invalid,
.auth-form textarea:invalid,
.auth-form .an-form-input:invalid,
.auth-form .an-form-select:invalid,
.auth-form .an-form-textarea:invalid {
  border-color: var(--border-color, #e5e7eb) !important;
  box-shadow: none !important;
}

.an-form-input.error,
.an-form-select.error,
.an-form-textarea.error,
input.error,
select.error,
textarea.error {
  border-color: var(--color-error, #ef4444);
}

.an-form-error {
  display: block;
  margin: 0.5rem 0 0 0;
  font-size: 0.875rem;
  color: var(--color-error, #ef4444);
}

.an-form-checkbox.error {
  outline: 2px solid var(--color-error, #ef4444);
  outline-offset: 2px;
}

.an-checkbox-group {
  display: block;
}
.an-checkbox-group .an-form-error {
  display: block;
  margin-top: 0.5rem;
  margin-left: 0;
}

.an-form-checkbox-label,
.checkbox-label {
  display: inline;
  font-size: 0.9rem;
  color: var(--an-text-secondary);
}
.an-form-checkbox { width: auto; }
.payment-section h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--an-primary);
  margin-bottom: 1rem;
}

.an-card-type-indicator {
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: var(--an-primary);
  pointer-events: none;
  opacity: 0;
}
.an-card-type-indicator.visible { opacity: 1; }

.cvv-tooltip {
  position: absolute;
  background: var(--bg-primary);
  border: 1px solid var(--border-color, #e5e7eb);
  border-radius: 8px;
  padding: 1rem;
  box-shadow: var(--shadow-lg, 0 10px 25px rgba(0,0,0,0.08));
  z-index: 1000;
  width: 280px;
  max-width: calc(100vw - 2rem);
  display: block;
}
.cvv-tooltip strong { color: var(--an-primary); }

.payment-security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  margin: 1.5rem auto 0 auto;
  background: transparent;
  border: none;
  border-radius: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.payment-security-badge i { color: var(--an-primary); }

.hidden {
  display: none !important;
}

.an-form-error {
  display: block;
  margin: 0.5rem 0 0.25rem 0;
  font-size: 0.875rem;
  color: var(--an-error, #ef4444);
}

.an-form-error--form-level {
  margin: 0 0 1rem 0;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding: 0.75rem 1rem;
  background-color: rgba(239, 68, 68, 0.1);
  border-left: 3px solid var(--an-error, #ef4444);
  border-radius: 6px;
}

.an-form-error--success {
  color: var(--an-success, #10b981);
  background-color: rgba(16, 185, 129, 0.1);
  border-left: 3px solid var(--an-success, #10b981);
}

.payment-error-badge {
  display: block;
  padding: 1rem;
  margin-top: 1rem;
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  color: var(--an-error, #ef4444);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.plan-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.plan-item { display: flex; align-items: center; gap: 0.75rem; padding: 1rem; background: #fff; border: 2px solid #e5e7eb; border-radius: 8px; cursor: pointer; }
.plan-item:hover { border-color: var(--an-primary); background: #f9fafb; }
.plan-item input[type="radio"] { width: 18px; height: 18px; accent-color: var(--an-primary); }
.plan-info { display: flex; flex-direction: column; }
.plan-title { font-weight: 600; color: var(--an-text-primary); }
.plan-desc { color: var(--an-text-secondary); font-size: 0.9rem; }
.plan-item:has(input[type="radio"]:checked) { border-color: var(--an-primary); background: rgba(124,58,237,0.05); }

body[data-brand="accunumber"]:has(#signup-form) .auth-container { max-width: 650px; }
@media (max-width: 768px) {
  body[data-brand="accunumber"]:has(#signup-form) .auth-container { max-width: 100%; margin: 0 1rem; }
}
.payment-section { width: 100%; }
.payment-section .an-form-group,
.payment-section .an-form-input,
.payment-section input,
.payment-section select,
.payment-section textarea { width: 100%; }

.an-btn-full { width: 100%; text-align: center; }

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.auth-divider {
  text-align: center;
  margin: 2rem 0;
  position: relative;
}

.auth-divider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #e5e7eb;
}

.auth-divider span {
  display: inline-block;
  position: relative;
  margin-top: 0.75rem;
  background: white;
  padding: 0 0.5rem;
  color: var(--an-secondary, #6b7280);
  font-size: 0.9rem;
  z-index: 1;
}

.contact-content {
  display: flex;
  justify-content: center;
}

.contact-form-container {
  width: 100%;
  max-width: 600px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.an-progress-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
}

.an-progress-indicator::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: #e5e7eb;
  z-index: 0;
}

.an-progress-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.an-progress-step .step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--an-text-muted, #64748b);
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.an-progress-step.active .step-number {
  background: var(--an-primary);
  border-color: var(--an-primary);
  color: #fff;
}

.an-progress-step .step-label {
  font-size: 0.95rem;
  color: var(--an-text-secondary);
  font-weight: 600;
}

.an-progress-step.active .step-label {
  color: var(--an-primary);
}

.pricing-card {
  position: relative;
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--an-primary) 0%, var(--an-accent) 50%, var(--an-primary-light) 100%) border-box;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.08),
              0 2px 4px rgba(124, 58, 237, 0.04),
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(124, 58, 237, 0.05), 
    transparent);
  transition: left 0.5s ease;
}

.pricing-card:hover::before {
  left: 100%;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.12),
              0 4px 8px rgba(124, 58, 237, 0.08),
              inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--an-primary-light) 0%, var(--an-accent) 50%, var(--an-primary) 100%) border-box;
}

.pricing-card.featured {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
              linear-gradient(135deg, var(--an-primary) 0%, var(--an-accent) 100%) border-box;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.15),
              0 4px 8px rgba(245, 158, 11, 0.1),
              inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.pricing-card.featured:hover {
  box-shadow: 0 10px 32px rgba(124, 58, 237, 0.2),
              0 6px 12px rgba(245, 158, 11, 0.15),
              inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.pricing-grid {
  gap: 2rem;
  position: relative;
}

.pricing-grid::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.pricing-grid > * {
  position: relative;
  z-index: 1;
}

.pricing-header {
  position: relative;
}

.pricing-header::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent, 
    var(--an-primary-light), 
    var(--an-accent), 
    var(--an-primary-light), 
    transparent);
  border-radius: 2px;
  opacity: 0.6;
}

.pricing-features li i {
  color: var(--an-primary);
  filter: drop-shadow(0 1px 2px rgba(124, 58, 237, 0.2));
  transition: all 0.2s ease;
}

.pricing-features li:hover i {
  color: var(--an-accent);
  filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
  transform: scale(1.1);
}

.pricing-action .an-btn-primary {
  background: linear-gradient(135deg, var(--an-primary) 0%, var(--an-primary-light) 100%);
  border: none;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2),
              0 1px 3px rgba(124, 58, 237, 0.1);
  transition: all 0.3s ease;
}

.pricing-action .an-btn-primary:hover {
  background: linear-gradient(135deg, var(--an-primary-light) 0%, var(--an-accent) 100%);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3),
              0 2px 6px rgba(245, 158, 11, 0.2);
  transform: translateY(-2px);
}

.pricing-action .an-btn-outline {
  border: 2px solid var(--an-primary);
  color: var(--an-primary);
  background: transparent;
  transition: all 0.3s ease;
}

.pricing-action .an-btn-outline:hover {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
  border-color: var(--an-accent);
  color: var(--an-accent);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.15);
  transform: translateY(-2px);
}

.pricing-badge {
  background: linear-gradient(135deg, var(--an-primary) 0%, var(--an-accent) 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

.pricing-page .page-header {
  position: relative;
  overflow: hidden;
}

.pricing-page .page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-page .page-header::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* =============================================================================
   CONTACT PAGE - NUMEROLOGY THEMED CENTERED CARD DESIGN
   ============================================================================= */

.contact-container-numerology {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  padding: var(--space-12) var(--space-4);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(91, 33, 182, 0.08) 50%, rgba(245, 158, 11, 0.03) 100%);
  position: relative;
  overflow: hidden;
}

.contact-container-numerology::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  animation: mystical-rotate-pulse 20s ease-in-out infinite;
  pointer-events: none;
}

.contact-container-numerology::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  animation: mystical-rotate-pulse 25s ease-in-out infinite reverse;
  pointer-events: none;
}

.contact-box-numerology {
  width: 100%;
  max-width: 650px;
  background: var(--bg-primary);
  padding: var(--space-10);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(124, 58, 237, 0.15), 0 0 0 1px rgba(124, 58, 237, 0.1);
  border: 2px solid rgba(124, 58, 237, 0.2);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-box-numerology::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--an-primary) 0%, var(--an-accent) 50%, var(--an-primary-light) 100%);
  z-index: 2;
}


.contact-header-numerology {
  text-align: center;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-6);
  border-bottom: 2px solid rgba(124, 58, 237, 0.1);
  position: relative;
  z-index: 2;
}

.contact-header-icon-numerology {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-4);
  background: linear-gradient(135deg, var(--an-primary) 0%, var(--an-accent) 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3), 0 0 0 4px rgba(124, 58, 237, 0.1);
  position: relative;
}

.contact-header-icon-numerology::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--an-primary), var(--an-accent));
  opacity: 0.3;
  z-index: -1;
  animation: mystical-rotate-pulse 3s ease-in-out infinite;
}

.contact-header-icon-numerology i {
  color: white;
  font-size: 2rem;
  z-index: 1;
  position: relative;
}

.contact-header-numerology h1 {
  margin-bottom: var(--space-2);
  color: var(--text-primary);
  font-size: 2.5rem;
}

.contact-header-numerology p {
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.contact-form-numerology {
  position: relative;
  z-index: 2;
}

.contact-form-numerology .an-form-input:focus,
.contact-form-numerology .an-form-textarea:focus {
  border-color: var(--an-primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.contact-form-numerology .an-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.3);
}

@media (max-width: 768px) {
  .contact-container-numerology {
    padding: var(--space-8) var(--space-4);
    min-height: auto;
  }
  
  .contact-box-numerology {
    padding: var(--space-6);
  }
  
  .contact-header-numerology h1 {
    font-size: 2rem;
  }
}

/* =============================================================================
   NUMEROLOGY STATS SECTION - CIRCULAR/WHEEL-INSPIRED DESIGN
   ============================================================================= */

.numerology-stats-section {
  padding: var(--space-16) 0;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(124, 58, 237, 0.03) 50%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.numerology-stats-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.numerology-stats-section .an-container {
  position: relative;
  z-index: 1;
}

.numerology-stats-wheel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-8);
  max-width: 1200px;
  margin: var(--space-12) auto;
  position: relative;
}

.numerology-stat-card {
  text-align: center;
  padding: var(--space-8);
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(124, 58, 237, 0.15);
  box-shadow: 0 4px 20px rgba(124, 58, 237, 0.08);
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.numerology-stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--an-primary), var(--an-accent), var(--an-primary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.numerology-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.3);
}

.numerology-stat-card:hover::before {
  opacity: 1;
}

.numerology-stat-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.02;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(124, 58, 237, 1) 15px, rgba(124, 58, 237, 1) 16px);
  pointer-events: none;
  z-index: 0;
}

.numerology-stat-card > * {
  position: relative;
  z-index: 1;
}

.stat-number-circle {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--an-primary-dark) 0%, var(--an-primary) 30%, var(--an-primary-light) 70%, var(--an-primary) 100%);
  box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.3),
              0 0 0 8px rgba(124, 58, 237, 0.15),
              0 12px 32px rgba(124, 58, 237, 0.4),
              inset 0 2px 8px rgba(255, 255, 255, 0.3),
              inset 0 -2px 8px rgba(91, 33, 182, 0.3);
  position: relative;
  animation: mystical-pulse 3s ease-in-out infinite;
}

.stat-number-circle::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.4) 0%, rgba(139, 92, 246, 0.2) 50%, transparent 70%);
  z-index: -1;
  animation: mystical-rotate-pulse 4s ease-in-out infinite;
}

.stat-number-circle span {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
}

.numerology-stat-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.numerology-stat-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

@keyframes mystical-pulse {
 0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.3),
                0 0 0 8px rgba(124, 58, 237, 0.15),
                0 12px 32px rgba(124, 58, 237, 0.4),
                inset 0 2px 8px rgba(255, 255, 255, 0.3),
                inset 0 -2px 8px rgba(91, 33, 182, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 6px rgba(124, 58, 237, 0.35),
                0 0 0 12px rgba(124, 58, 237, 0.2),
                0 16px 40px rgba(124, 58, 237, 0.5),
                inset 0 2px 8px rgba(255, 255, 255, 0.35),
                inset 0 -2px 8px rgba(91, 33, 182, 0.35);
  }
}

@media (max-width: 768px) {
  .numerology-stats-wheel {
    grid-template-columns: 1fr;
    gap: var(--space-6);
  }
  
  .stat-number-circle {
    width: 100px;
    height: 100px;
  }
  
  .stat-number-circle span {
    font-size: 2rem;
  }
}

/* =============================================================================
   UTILITY CLASSES - For inline style replacements
   ============================================================================= */

.an-form-group-relative {
  position: relative;
}

.an-btn-margin-right {
  margin-right: var(--space-4);
}

.an-checkbox-group-spacing {
  margin: 1.5rem 0;
}

/* =============================================================================
   COMPONENT CLASSES - For inline style replacements
   ============================================================================= */

.an-logo-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cvv-tooltip-hidden {
  display: none;
}

.an-form-error-hidden {
  display: none;
}

.an-form-error-visible {
  display: block;
}

.payment-section-hidden {
  display: none;
}

.features-section-alt {
  background: var(--bg-secondary);
}

.section-cta-center {
  text-align: center;
  margin-top: var(--space-12);
}

.stats-cta-center {
  text-align: center;
  margin-top: var(--space-12);
}

.trust-indicators-center {
  text-align: center;
  margin-top: var(--space-12);
}

.contact-form-wrapper {
  margin-top: var(--space-6);
}


.unsubscribe-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
  padding: var(--space-12) 0;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.05) 0%, rgba(245, 158, 11, 0.08) 100%);
}

.unsubscribe-box {
  width: 100%;
  max-width: 550px;
  background: var(--bg-primary);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.unsubscribe-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--an-primary) 0%, var(--an-accent) 50%, var(--an-accent-2) 100%);
}

.unsubscribe-header {
  text-align: center;
  margin-bottom: var(--space-8);
  padding-bottom: var(--space-6);
  border-bottom: 2px solid var(--border-color);
  position: relative;
}

.unsubscribe-header-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  background: linear-gradient(135deg, var(--an-error) 0%, #dc2626 100%);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.unsubscribe-header-icon i {
  color: white;
  font-size: 1.75rem;
}

.unsubscribe-header h1 {
  margin: 0;
  font-size: 2rem;
  color: var(--an-primary);
}

.unsubscribe-header p {
  margin: var(--space-2) 0 0;
  color: var(--text-secondary);
  font-size: 1rem;
}

.unsubscribe-form {
  margin-top: var(--space-6);
}

.unsubscribe-form .an-form-input:focus {
  border-color: var(--an-primary);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.unsubscribe-button-text {
  margin-left: var(--space-2);
}

.info-box {
  margin-top: var(--space-6);
  text-align: left;
  padding: var(--space-5) var(--space-6);
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(139, 92, 246, 0.05) 100%);
  border-radius: var(--radius-lg);
  border: 2px solid rgba(124, 58, 237, 0.2);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.1);
  position: relative;
  overflow: hidden;
}

.info-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--an-primary) 0%, var(--an-accent) 100%);
}

.info-box p {
  font-size: 0.875rem;
  color: var(--an-primary-dark);
  margin: 0;
  line-height: 1.6;
  padding-left: var(--space-1);
}

.info-box i {
  color: var(--an-primary);
  margin-right: var(--space-3);
  font-size: 1rem;
}

.unsubscribe-footer {
  margin-top: var(--space-8);
  text-align: center;
  padding-top: var(--space-6);
  border-top: 1px solid var(--border-color);
}

.back-link {
  font-size: 0.875rem;
  color: var(--an-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  background: white;
  border: 2px solid var(--an-primary);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
  font-weight: 500;
}

.back-link i {
  font-size: 0.75rem;
  color: var(--an-primary);
}

.back-link:hover {
  background: var(--an-primary);
  color: white;
  border-color: var(--an-primary);
}

.back-link:hover i {
  color: white;
}
