/* ═══════════════════════════════════════════════════════════════
   ORBIS LANDING PAGE - COSMIC THEME
   ═══════════════════════════════════════════════════════════════ */

/* CSS Variables */
:root {
  --primary: #9333ea;
  --primary-light: #a855f7;
  --primary-dark: #7c3aed;
  --gold: #fbbf24;
  --gold-light: #fcd34d;
  --bg-dark: #0a0118;
  --bg-card: rgba(15, 5, 30, 0.8);
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --gradient-primary: linear-gradient(
    135deg,
    #9333ea 0%,
    #7c3aed 50%,
    #6366f1 100%
  );
  --gradient-gold: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  --glass: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
}

/* Reset & Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Outfit", sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   COSMIC BACKGROUND
   ═══════════════════════════════════════════════════════════════ */

.cosmic-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(ellipse at bottom, #1a0a2e 0%, #0a0118 100%);
}

.stars,
.stars2,
.stars3 {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: repeat;
}

.stars {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 400 400'%3E%3Ccircle fill='%23ffffff' cx='50' cy='50' r='1'/%3E%3Ccircle fill='%23ffffff' cx='150' cy='100' r='0.5'/%3E%3Ccircle fill='%23ffffff' cx='250' cy='150' r='1.2'/%3E%3Ccircle fill='%23ffffff' cx='350' cy='50' r='0.8'/%3E%3Ccircle fill='%23ffffff' cx='100' cy='200' r='0.6'/%3E%3Ccircle fill='%23ffffff' cx='300' cy='250' r='1'/%3E%3Ccircle fill='%23ffffff' cx='50' cy='300' r='0.7'/%3E%3Ccircle fill='%23ffffff' cx='200' cy='350' r='0.5'/%3E%3Ccircle fill='%23ffffff' cx='350' cy='300' r='0.9'/%3E%3C/svg%3E");
  animation: twinkle 8s ease-in-out infinite;
  opacity: 0.5;
}

.stars2 {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300'%3E%3Ccircle fill='%239333ea' cx='75' cy='75' r='1.5'/%3E%3Ccircle fill='%23fbbf24' cx='225' cy='150' r='1'/%3E%3Ccircle fill='%236366f1' cx='150' cy='225' r='1.2'/%3E%3C/svg%3E");
  animation: twinkle 12s ease-in-out infinite reverse;
  opacity: 0.3;
}

.stars3 {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500' viewBox='0 0 500 500'%3E%3Ccircle fill='%23ffffff' cx='100' cy='100' r='2'/%3E%3Ccircle fill='%23ffffff' cx='400' cy='200' r='1.5'/%3E%3Ccircle fill='%23ffffff' cx='250' cy='400' r='2'/%3E%3C/svg%3E");
  animation: twinkle 15s ease-in-out infinite;
  opacity: 0.4;
}

.nebula {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      ellipse at 20% 30%,
      rgba(147, 51, 234, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(99, 102, 241, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 50% 50%,
      rgba(251, 191, 36, 0.05) 0%,
      transparent 40%
    );
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.6;
  }
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  background: rgba(10, 1, 24, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

.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.5rem;
  text-decoration: none;
  color: var(--text-primary);
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 600;
}

.logo-icon {
  font-size: 1.8rem;
  color: var(--gold);
  text-shadow: 0 0 20px var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-cta {
  background: var(--gradient-primary);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  color: white !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(10, 1, 24, 0.98);
  padding: 1rem;
  flex-direction: column;
  gap: 1rem;
  z-index: 999;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.8rem 1rem;
  border-radius: 8px;
  background: var(--glass);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
}

.hero-content {
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: "Cinzel", serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #d4d4d8 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.title-icon {
  color: var(--gold);
  text-shadow: 0 0 30px var(--gold);
  -webkit-text-fill-color: var(--gold);
}

.hero-subtitle {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  letter-spacing: 0.3em;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: transparent;
  padding: 0;
}

.store-badge {
  height: 50px;
}

.btn-secondary {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.btn-secondary:hover {
  background: var(--primary);
  border-color: var(--primary);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

/* Hero Visual - Orbit Animation */
.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit-container {
  position: relative;
  width: 400px;
  height: 400px;
}

.planet {
  position: absolute;
  border-radius: 50%;
}

.sun {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  box-shadow: 0 0 60px #fbbf24, 0 0 120px rgba(251, 191, 36, 0.5);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit {
  position: absolute;
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  animation: orbit-rotate linear infinite;
}

.orbit-1 {
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  animation-duration: 8s;
}

.orbit-2 {
  width: 250px;
  height: 250px;
  margin: -125px 0 0 -125px;
  animation-duration: 15s;
}

.orbit-3 {
  width: 350px;
  height: 350px;
  margin: -175px 0 0 -175px;
  animation-duration: 25s;
}

.mercury {
  width: 12px;
  height: 12px;
  background: #94a3b8;
  box-shadow: 0 0 10px #94a3b8;
  top: -6px;
  left: 50%;
  margin-left: -6px;
}

.venus {
  width: 18px;
  height: 18px;
  background: #fcd34d;
  box-shadow: 0 0 15px #fcd34d;
  top: -9px;
  left: 50%;
  margin-left: -9px;
}

.earth {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
  box-shadow: 0 0 15px #3b82f6;
  top: -10px;
  left: 50%;
  margin-left: -10px;
}

@keyframes orbit-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 992px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-description {
    margin: 0 auto 2rem;
  }
  .hero-buttons,
  .hero-stats {
    justify-content: center;
  }
  .orbit-container {
    width: 300px;
    height: 300px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS COMMON
   ═══════════════════════════════════════════════════════════════ */

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  background: var(--gradient-primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES SECTION
   ═══════════════════════════════════════════════════════════════ */

.features {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(147, 51, 234, 0.05) 50%,
    transparent 100%
  );
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon .material-symbols-rounded {
  font-size: 28px;
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS SECTION
   ═══════════════════════════════════════════════════════════════ */

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: center;
  gap: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-dark);
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-secondary);
}

.step-icon {
  width: 50px;
  height: 50px;
  background: var(--glass);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-icon .material-symbols-rounded {
  font-size: 24px;
  color: var(--primary-light);
}

.step-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), var(--primary));
  margin-left: 29px;
}

@media (max-width: 600px) {
  .step {
    flex-direction: column;
    text-align: center;
  }
  .step-connector {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SCREENSHOTS SECTION
   ═══════════════════════════════════════════════════════════════ */

.screenshots {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(99, 102, 241, 0.05) 50%,
    transparent 100%
  );
}

.screenshots-carousel {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.screenshot-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.screenshot-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.screenshot-card img {
  width: 250px;
  height: auto;
  border-radius: 16px;
}

.screenshot-caption {
  text-align: center;
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* ═══════════════════════════════════════════════════════════════
   ANALYSIS TYPES SECTION
   ═══════════════════════════════════════════════════════════════ */

.analysis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.analysis-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
}

.analysis-item:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.analysis-icon {
  font-size: 2rem;
}

.analysis-item span:last-child {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.analysis-item:hover span:last-child {
  color: white;
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */

.cta-section {
  padding: 6rem 2rem;
}

.cta-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 4rem 2rem;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(147, 51, 234, 0.3) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.cta-container h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
  position: relative;
}

.cta-container p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.btn-download {
  display: block;
}

.store-badge-lg {
  height: 60px;
}

.btn-web {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-web:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.4);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */

.footer {
  background: rgba(5, 0, 15, 0.9);
  border-top: 1px solid var(--glass-border);
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.footer-copyright {
  margin-top: 1rem;
  color: var(--text-muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-column h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.footer-column a {
  display: block;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding: 1.5rem 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-links {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   SAMPLE INTERPRETATIONS SECTION
   ═══════════════════════════════════════════════════════════════ */

.sample-interpretations {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(251, 191, 36, 0.03) 30%,
    rgba(147, 51, 234, 0.05) 70%,
    transparent 100%
  );
}

.interpretations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.5rem;
}

.interpretation-card {
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(15, 5, 30, 0.9) 0%,
    rgba(25, 10, 50, 0.8) 100%
  );
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.interpretation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.interpretation-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(147, 51, 234, 0.25),
    0 0 60px rgba(147, 51, 234, 0.1);
}

.interpretation-card:hover::before {
  opacity: 1;
}

.interpretation-card.featured {
  border-color: var(--gold);
  background: linear-gradient(
    145deg,
    rgba(40, 25, 10, 0.9) 0%,
    rgba(25, 15, 40, 0.8) 100%
  );
}

.interpretation-card.featured::before {
  background: var(--gradient-gold);
  opacity: 1;
}

.featured-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gradient-gold);
  color: var(--bg-dark);
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
  }
  50% {
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
  }
}

.interpretation-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.interpretation-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.sun-icon {
  background: linear-gradient(
    135deg,
    rgba(251, 191, 36, 0.3) 0%,
    rgba(245, 158, 11, 0.2) 100%
  );
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.2);
}

.moon-icon {
  background: linear-gradient(
    135deg,
    rgba(148, 163, 184, 0.3) 0%,
    rgba(100, 116, 139, 0.2) 100%
  );
  box-shadow: 0 0 20px rgba(148, 163, 184, 0.2);
}

.career-icon {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.3) 0%,
    rgba(37, 99, 235, 0.2) 100%
  );
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}

.love-icon {
  background: linear-gradient(
    135deg,
    rgba(236, 72, 153, 0.3) 0%,
    rgba(219, 39, 119, 0.2) 100%
  );
  box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
}

.transit-icon {
  background: linear-gradient(
    135deg,
    rgba(147, 51, 234, 0.3) 0%,
    rgba(124, 58, 237, 0.2) 100%
  );
  box-shadow: 0 0 20px rgba(147, 51, 234, 0.2);
}

.vedic-icon {
  background: linear-gradient(
    135deg,
    rgba(249, 115, 22, 0.3) 0%,
    rgba(234, 88, 12, 0.2) 100%
  );
  box-shadow: 0 0 20px rgba(249, 115, 22, 0.2);
}

.interpretation-meta h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.interpretation-tag {
  display: inline-block;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.7rem;
  color: var(--primary-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.interpretation-content {
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid var(--primary);
  margin-bottom: 1rem;
}

.interpretation-content p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
}

.interpretation-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.typing-indicator {
  display: flex;
  align-items: center;
  gap: 4px;
}

.typing-indicator span {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: typing-bounce 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) {
  animation-delay: 0s;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-bounce {
  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.ai-badge {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ai-badge::before {
  content: "✨";
  font-size: 0.8rem;
}

.interpretations-cta {
  text-align: center;
  margin-top: 3rem;
  padding: 2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

.interpretations-cta p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.btn-try-now {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.btn-try-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(147, 51, 234, 0.4);
}

.btn-try-now .material-symbols-rounded {
  font-size: 1.2rem;
  animation: sparkle 1.5s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(15deg) scale(1.1);
  }
}

@media (max-width: 768px) {
  .interpretations-grid {
    grid-template-columns: 1fr;
  }

  .interpretation-card {
    padding: 1.25rem;
  }

  .featured-badge {
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.6rem;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PRICING SECTION
   ═══════════════════════════════════════════════════════════════ */

.pricing-section {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(147, 51, 234, 0.03) 30%,
    rgba(251, 191, 36, 0.03) 70%,
    transparent 100%
  );
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.pricing-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.pricing-card:hover::before {
  opacity: 1;
}

/* Free Plan */
.pricing-card.free::before {
  background: linear-gradient(90deg, #94a3b8, #64748b);
}

.pricing-card.free:hover {
  border-color: #94a3b8;
}

/* Premium Popular */
.pricing-card.premium {
  border-color: var(--primary);
  transform: scale(1.02);
}

.pricing-card.premium::before {
  background: var(--gradient-primary);
  opacity: 1;
}

.pricing-card.premium:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 25px 50px rgba(147, 51, 234, 0.3),
    0 0 80px rgba(147, 51, 234, 0.15);
}

/* Yearly Plan */
.pricing-card.yearly::before {
  background: var(--gradient-gold);
}

.pricing-card.yearly:hover {
  border-color: var(--gold);
}

.popular-badge,
.save-badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  padding: 0.4rem 1rem;
  border-radius: 0 0 12px 12px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.popular-badge {
  background: var(--gradient-primary);
  color: white;
}

.save-badge {
  background: var(--gradient-gold);
  color: var(--bg-dark);
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--glass-border);
}

.pricing-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.75rem;
}

.pricing-header h3 {
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text-primary), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-monthly {
  font-size: 0.8rem;
  color: var(--primary-light);
  margin-top: 0.25rem;
}

.pricing-features {
  margin-bottom: 1.5rem;
}

.pricing-features .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-features .feature-item:last-child {
  border-bottom: none;
}

.pricing-features .check {
  color: #22c55e;
  font-size: 1.1rem;
}

.pricing-features .feature-item.muted {
  opacity: 0.5;
}

.pricing-features .feature-item.muted .material-symbols-rounded {
  color: var(--text-muted);
}

.pricing-features span:last-child {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.pricing-features strong {
  color: var(--text-primary);
}

.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.free-btn {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
}

.free-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.premium-btn {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.3);
}

.premium-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(147, 51, 234, 0.4);
}

.yearly-btn {
  background: var(--gradient-gold);
  color: var(--bg-dark);
  box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.yearly-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(251, 191, 36, 0.4);
}

/* Other Packages */
.other-packages {
  text-align: center;
  margin-bottom: 3rem;
}

.other-packages h4 {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.packages-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.mini-package {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.mini-package:hover {
  border-color: var(--primary);
  background: rgba(147, 51, 234, 0.1);
}

.package-name {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.package-credits {
  font-size: 0.75rem;
  color: var(--primary-light);
}

/* Credit Packages */
.credit-packages {
  text-align: center;
}

.credit-packages h4 {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.credit-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

.credits-row {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.credit-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  min-width: 80px;
  transition: all 0.3s ease;
}

.credit-item:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.credit-item.popular-credit {
  border-color: var(--gold);
  background: rgba(251, 191, 36, 0.1);
}

.credit-amount {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-light);
}

.credit-amount::after {
  content: " kredi";
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--text-muted);
}

.credit-price {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.best-value {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--bg-dark);
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.premium {
    transform: none;
  }

  .pricing-card.premium:hover {
    transform: translateY(-5px);
  }

  .packages-row,
  .credits-row {
    gap: 0.75rem;
  }

  .mini-package {
    padding: 0.75rem 1.5rem;
  }

  .credit-item {
    padding: 0.75rem 1rem;
    min-width: 70px;
  }
}
