/* ===== TARO REIMAGINED — Futuristic Mystical Design ===== */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  /* New Color Palette */
  --cosmic-black: #05030a;
  --deep-void: #0a0612;
  --nebula-purple: #4a1c6b;
  --cosmic-violet: #7c2ae8;
  --ethereal-blue: #3b82f6;
  --stellar-cyan: #06b6d4;
  --mystic-gold: #d4af37;
  --sacred-gold: #f4d03f;
  --rose-quartz: #e879a9;
  --moon-silver: #c4b5fd;
  
  /* Glow Effects */
  --glow-purple: 0 0 30px rgba(124, 42, 232, 0.5);
  --glow-gold: 0 0 30px rgba(212, 175, 55, 0.6);
  --glow-cyan: 0 0 30px rgba(6, 182, 212, 0.5);
  --glow-pink: 0 0 30px rgba(232, 121, 169, 0.5);
  
  /* Glass Effects */
  --glass-bg: rgba(15, 10, 25, 0.7);
  --glass-border: rgba(124, 42, 232, 0.2);
  --glass-light: rgba(255, 255, 255, 0.05);
  
  /* Typography */
  --font-display: 'Cinzel', Georgia, serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;
  
  /* Spacing */
  --section-padding: clamp(4rem, 10vw, 8rem);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cosmic-black);
  color: #f0ebf7;
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== DYNAMIC BACKGROUND ===== */
.cosmic-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  background: var(--cosmic-black);
}

.cosmic-gradient {
  position: fixed;
  inset: 0;
  z-index: -9;
  background: 
    radial-gradient(ellipse 100% 100% at 20% 0%, rgba(124, 42, 232, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 80% 80% at 80% 100%, rgba(212, 175, 55, 0.1) 0%, transparent 40%),
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(232, 121, 169, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, var(--cosmic-black) 0%, var(--deep-void) 50%, var(--cosmic-black) 100%);
  animation: cosmicPulse 15s ease-in-out infinite;
}

@keyframes cosmicPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

/* Floating Orbs */
.cosmic-orbs {
  position: fixed;
  inset: 0;
  z-index: -8;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--cosmic-violet) 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--mystic-gold) 0%, transparent 70%);
  bottom: -50px;
  right: -50px;
  animation-delay: -5s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--rose-quartz) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  animation-delay: -10s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -30px) scale(1.1); }
  50% { transform: translate(-20px, 20px) scale(0.9); }
  75% { transform: translate(20px, 10px) scale(1.05); }
}

/* Animated Stars */
.star-field {
  position: fixed;
  inset: 0;
  z-index: -7;
  pointer-events: none;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: white;
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

.star:nth-child(odd) { animation-duration: 4s; }
.star:nth-child(3n) { animation-duration: 5s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}

/* ===== NAVIGATION - NEW STYLE ===== */
.nav-cosmic {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(5, 3, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.nav-cosmic.scrolled {
  padding: 0.75rem 2rem;
  background: rgba(5, 3, 10, 0.95);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.nav-logo:hover {
  transform: scale(1.02);
}

.logo-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--cosmic-violet) 0%, var(--mystic-gold) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--glow-purple);
  transition: all 0.3s ease;
}

.nav-logo:hover .logo-icon {
  transform: rotate(15deg);
  box-shadow: var(--glow-gold);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--sacred-gold) 0%, var(--moon-silver) 50%, var(--sacred-gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  to { background-position: 200% center; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  position: relative;
  color: #a89cc8;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cosmic-violet), var(--mystic-gold));
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--sacred-gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--cosmic-violet) 0%, var(--nebula-purple) 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: var(--glow-purple);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(124, 42, 232, 0.6);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--sacred-gold);
  transition: all 0.3s ease;
}

/* ===== HERO SECTION - NEW LAYOUT ===== */
.hero-cosmic {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  animation: fadeSlideUp 1s ease forwards;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(124, 42, 232, 0.15);
  border: 1px solid rgba(124, 42, 232, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--moon-silver);
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 1s ease 0.2s forwards;
  opacity: 0;
}

.hero-badge-icon {
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeSlideUp 1s ease 0.3s forwards;
  opacity: 0;
}

.hero-title-line {
  display: block;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--sacred-gold) 0%, var(--mystic-gold) 50%, var(--rose-quartz) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.hero-description {
  font-size: 1.2rem;
  color: #a89cc8;
  max-width: 500px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  animation: fadeSlideUp 1s ease 0.4s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeSlideUp 1s ease 0.5s forwards;
  opacity: 0;
}

/* NEW BUTTON STYLES */
.btn-cosmic {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary-cosmic {
  background: linear-gradient(135deg, var(--cosmic-violet) 0%, var(--nebula-purple) 100%);
  color: white;
  border: none;
  box-shadow: var(--glow-purple);
}

.btn-primary-cosmic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--mystic-gold) 0%, var(--sacred-gold) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary-cosmic:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 40px rgba(124, 42, 232, 0.4);
}

.btn-primary-cosmic:hover::before {
  opacity: 1;
}

.btn-primary-cosmic span {
  position: relative;
  z-index: 1;
}

.btn-secondary-cosmic {
  background: transparent;
  color: var(--sacred-gold);
  border: 2px solid rgba(212, 175, 55, 0.4);
}

.btn-secondary-cosmic:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--sacred-gold);
  box-shadow: var(--glow-gold);
  transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 3rem;
  animation: fadeSlideUp 1s ease 0.6s forwards;
  opacity: 0;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--sacred-gold) 0%, var(--moon-silver) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.85rem;
  color: #7a6b9a;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeSlideUp 1s ease 0.4s forwards;
  opacity: 0;
}

.tarot-card-3d {
  position: relative;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  perspective: 1000px;
}

.card-main {
  position: relative;
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, 
    rgba(124, 42, 232, 0.3) 0%, 
    rgba(74, 28, 107, 0.3) 50%,
    rgba(212, 175, 55, 0.2) 100%);
  border-radius: 24px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  animation: cardFloat 6s ease-in-out infinite;
  box-shadow: 
    0 0 60px rgba(124, 42, 232, 0.3),
    inset 0 0 60px rgba(212, 175, 55, 0.1);
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0) rotateY(0deg) rotateX(5deg); }
  50% { transform: translateY(-20px) rotateY(5deg) rotateX(-5deg); }
}

.card-symbol {
  font-size: 8rem;
  filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5));
  animation: symbolGlow 3s ease-in-out infinite;
}

@keyframes symbolGlow {
  0%, 100% { filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.5)); }
  50% { filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.8)); }
}

/* Floating Cards */
.floating-card {
  position: absolute;
  width: 80px;
  height: 120px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.floating-card:nth-child(2) {
  top: -20px;
  right: -30px;
  animation: float1 5s ease-in-out infinite;
}

.floating-card:nth-child(3) {
  bottom: 20px;
  left: -40px;
  animation: float2 6s ease-in-out infinite;
}

.floating-card:nth-child(4) {
  bottom: -30px;
  right: 20px;
  animation: float3 7s ease-in-out infinite;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(-10deg); }
  50% { transform: translateY(-15px) rotate(-5deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(10deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-10px) rotate(5deg); }
}

/* ===== SECTIONS - NEW DESIGN ===== */
.section-cosmic {
  padding: var(--section-padding) 2rem;
  position: relative;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(124, 42, 232, 0.1);
  border: 1px solid rgba(124, 42, 232, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--cosmic-violet);
  margin-bottom: 1rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f0ebf7;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #a89cc8;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SERVICES GRID - NEW CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(124, 42, 232, 0.1) 0%, 
    transparent 50%,
    rgba(212, 175, 55, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(124, 42, 232, 0.5);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(124, 42, 232, 0.2);
}

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

.service-icon {
  position: relative;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--cosmic-violet) 0%, var(--nebula-purple) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.5s ease;
  z-index: 1;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--glow-purple);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #f0ebf7;
  position: relative;
  z-index: 1;
}

.service-description {
  color: #a89cc8;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sacred-gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  z-index: 1;
}

.service-link:hover {
  gap: 0.75rem;
  text-shadow: var(--glow-gold);
}

/* ===== KNOWLEDGE SUITS - NEW DESIGN ===== */
.suits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.suit-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  backdrop-filter: blur(20px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
}

.suit-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(124, 42, 232, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.suit-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(124, 42, 232, 0.5);
}

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

.suit-emoji {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  display: block;
  transition: all 0.5s ease;
}

.suit-card:hover .suit-emoji {
  transform: scale(1.2) rotate(-5deg);
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.suit-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #f0ebf7;
  position: relative;
  z-index: 1;
}

.suit-description {
  font-size: 0.9rem;
  color: #a89cc8;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.suit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sacred-gold);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.suit-card:hover .suit-link {
  gap: 0.75rem;
}

/* ===== PRICING - NEW DESIGN ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 2.5rem;
  text-align: center;
  backdrop-filter: blur(20px);
  transition: all 0.5s ease;
}

.pricing-card.featured {
  border-color: var(--cosmic-violet);
  box-shadow: var(--glow-purple);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: 'ХИТ';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--cosmic-violet) 0%, var(--nebula-purple) 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-card:hover {
  transform: translateY(-10px);
  border-color: rgba(124, 42, 232, 0.5);
}

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

.pricing-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--sacred-gold) 0%, var(--mystic-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pricing-label {
  color: #a89cc8;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0ebf7;
  margin-bottom: 0.5rem;
}

.pricing-description {
  color: #7a6b9a;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sacred-gold);
  margin-bottom: 1.5rem;
}

.pricing-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.pricing-btn-primary {
  background: linear-gradient(135deg, var(--cosmic-violet) 0%, var(--nebula-purple) 100%);
  color: white;
  border: none;
}

.pricing-btn-primary:hover {
  box-shadow: var(--glow-purple);
  transform: translateY(-2px);
}

.pricing-btn-secondary {
  background: transparent;
  color: var(--sacred-gold);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.pricing-btn-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--sacred-gold);
}

/* ===== FAQ - ACCORDION STYLE ===== */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  margin-bottom: 1rem;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(124, 42, 232, 0.4);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, var(--cosmic-violet) 0%, var(--nebula-purple) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.faq-question-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: #f0ebf7;
}

.faq-answer {
  padding: 0 2rem 1.5rem 4.5rem;
  color: #a89cc8;
  line-height: 1.7;
}

/* ===== FOOTER - NEW DESIGN ===== */
.footer-cosmic {
  background: var(--deep-void);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-description {
  color: #7a6b9a;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #f0ebf7;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: #a89cc8;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--sacred-gold);
  padding-left: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 2rem;
  text-align: center;
  color: #5a4d7a;
  font-size: 0.9rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-visual {
    order: 0;
    margin-bottom: 2rem;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .suits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .hero-cosmic {
    padding: 6rem 1.5rem 3rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-cosmic {
    width: 100%;
    max-width: 300px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .suits-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand {
    align-items: center;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
  background: linear-gradient(135deg, var(--sacred-gold) 0%, var(--moon-silver) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--deep-void);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--cosmic-violet) 0%, var(--nebula-purple) 100%);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--mystic-gold) 0%, var(--sacred-gold) 100%);
}

/* ===== SELECTION ===== */
::selection {
  background: var(--cosmic-violet);
  color: white;
}

/* ===== ARTICLE PAGES STYLES ===== */
.article-cosmic {
  padding: 8rem 2rem 4rem;
}

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

.breadcrumb-cosmic {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #7a6b9a;
  margin-bottom: 2rem;
}

.breadcrumb-cosmic a {
  color: #a89cc8;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumb-cosmic a:hover {
  color: var(--sacred-gold);
}

.breadcrumb-cosmic span {
  color: var(--sacred-gold);
}

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

.article-emoji {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  display: block;
  animation: floatOrb 6s ease-in-out infinite;
}

.article-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: #f0ebf7;
  margin-bottom: 1rem;
}

.article-meta {
  color: #7a6b9a;
  font-size: 0.9rem;
}

.article-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 3rem;
  backdrop-filter: blur(20px);
}

.article-content h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #f0ebf7;
  margin: 2.5rem 0 1rem;
}

.article-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: #f0ebf7;
  margin: 2rem 0 1rem;
}

.article-content p {
  color: #c4b8d4;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.article-content strong {
  color: var(--sacred-gold);
}

.article-content a {
  color: var(--cosmic-violet);
  text-decoration: none;
  transition: color 0.3s ease;
}

.article-content a:hover {
  color: var(--sacred-gold);
}

/* Card Info Boxes */
.card-info-box {
  background: rgba(124, 42, 232, 0.1);
  border: 1px solid rgba(124, 42, 232, 0.2);
  border-left: 4px solid var(--cosmic-violet);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.card-info-box h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--sacred-gold);
  margin-bottom: 0.75rem;
}

.card-info-box p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

/* Related Suits */
.related-suits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.related-suit-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
}

.related-suit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(124, 42, 232, 0.5);
  box-shadow: var(--glow-purple);
}

.related-suit-emoji {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.related-suit-title {
  font-family: var(--font-display);
  font-weight: 700;
  color: #f0ebf7;
}

/* CTA Block */
.cta-block {
  background: linear-gradient(135deg, var(--cosmic-violet) 0%, var(--nebula-purple) 100%);
  border-radius: 24px;
  padding: 3rem;
  text-align: center;
  margin: 3rem 0;
}

.cta-block h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: white;
  margin-bottom: 1rem;
}

.cta-block p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-block a {
  display: inline-block;
  background: white;
  color: var(--cosmic-violet);
  padding: 1rem 2rem;
  border-radius: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-block a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Back Link */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--sacred-gold);
  text-decoration: none;
  font-weight: 600;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}

.back-link:hover {
  gap: 0.75rem;
}

/* ===== CURSOR GLOW EFFECT ===== */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 42, 232, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

/* ===== LOADING ANIMATION ===== */
.loading-screen {
  position: fixed;
  inset: 0;
  background: var(--cosmic-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid var(--glass-border);
  border-top-color: var(--cosmic-violet);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== PARTICLE EFFECT ===== */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -5;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--sacred-gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s ease-in-out infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(1);
  }
}