/* ============================================
   AURORACALM WEBSITE STYLES
   Premium Aurora Design System
   ============================================ */

:root {
  --bg: #030509;
  --bg-layer: #050a14;
  --bg-card: rgba(15, 25, 45, 0.4);
  --text: #e8f4ff;
  --text-muted: #9bb3d4;
  --text-subtle: #6b8aaf;
  
  /* Aurora Colors */
  --aurora-cyan: #00d9ff;
  --aurora-blue: #0099ff;
  --aurora-purple: #8b5cf6;
  --aurora-pink: #ec4899;
  --aurora-green: #10b981;
  --aurora-yellow: #fbbf24;
  --aurora-indigo: #6366f1;
  
  /* Liquid Glass */
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shine: rgba(255, 255, 255, 0.15);
  
  /* Spacing */
  --radius: 20px;
  --radius-lg: 28px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  --glow: 0 0 40px rgba(0, 217, 255, 0.3);
}

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

html { 
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* ============================================
   ANIMATED AURORA BACKGROUND
   ============================================ */
.aurora-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -3;
  opacity: 0.6;
  overflow: hidden;
}

/* Multiple Aurora Layers */
.aurora-layer {
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: -2;
  opacity: 0.5;
  background: 
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(0,217,255,0.4), transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(139,92,246,0.3), transparent 60%),
    radial-gradient(ellipse 70% 45% at 20% 30%, rgba(0,153,255,0.35), transparent 65%);
  animation: aurora-shift 25s ease-in-out infinite;
  filter: blur(100px);
}

.aurora-layer-2 {
  position: fixed;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  z-index: -2;
  opacity: 0.4;
  background: 
    radial-gradient(ellipse 70% 60% at 30% 20%, rgba(16,185,129,0.25), transparent 65%),
    radial-gradient(ellipse 50% 50% at 70% 40%, rgba(236,72,153,0.2), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(139,92,246,0.25), transparent 70%);
  animation: aurora-shift-2 30s ease-in-out infinite reverse;
  filter: blur(90px);
}

.aurora-layer-3 {
  position: fixed;
  top: -40%;
  left: -40%;
  width: 180%;
  height: 180%;
  z-index: -2;
  opacity: 0.3;
  background: 
    radial-gradient(ellipse 90% 60% at 60% 15%, rgba(0,217,255,0.2), transparent 75%),
    radial-gradient(ellipse 55% 45% at 15% 50%, rgba(16,185,129,0.15), transparent 65%);
  animation: aurora-shift-3 35s ease-in-out infinite;
  filter: blur(120px);
}

@keyframes aurora-shift {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg) scale(1); 
    opacity: 0.5;
  }
  25% { 
    transform: translate(-8%, 6%) rotate(2deg) scale(1.05); 
    opacity: 0.6;
  }
  50% { 
    transform: translate(5%, -4%) rotate(-1.5deg) scale(0.98); 
    opacity: 0.55;
  }
  75% { 
    transform: translate(-3%, 8%) rotate(1deg) scale(1.02); 
    opacity: 0.5;
  }
}

@keyframes aurora-shift-2 {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg) scale(1); 
    opacity: 0.4;
  }
  33% { 
    transform: translate(10%, -5%) rotate(-2deg) scale(1.08); 
    opacity: 0.5;
  }
  66% { 
    transform: translate(-7%, 7%) rotate(1.5deg) scale(0.95); 
    opacity: 0.45;
  }
}

@keyframes aurora-shift-3 {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg) scale(1); 
    opacity: 0.3;
  }
  40% { 
    transform: translate(-12%, 10%) rotate(3deg) scale(1.1); 
    opacity: 0.4;
  }
  80% { 
    transform: translate(8%, -8%) rotate(-2deg) scale(0.92); 
    opacity: 0.35;
  }
}

/* Particle Effects */
.particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: radial-gradient(circle, rgba(0,217,255,0.8), transparent);
  border-radius: 50%;
  animation: float-particle 15s infinite ease-in-out;
  opacity: 0;
}

@keyframes float-particle {
  0% {
    transform: translateY(100vh) translateX(0) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px) scale(1.5);
    opacity: 0;
  }
}

/* Aurora Glow Pulses */
.aurora-pulse {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,217,255,0.15), transparent 70%);
  filter: blur(60px);
  animation: pulse-glow 8s ease-in-out infinite;
  z-index: -2;
  pointer-events: none;
}

.aurora-pulse-1 {
  top: 10%;
  left: 20%;
  animation-delay: 0s;
}

.aurora-pulse-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
  background: radial-gradient(circle, rgba(139,92,246,0.15), transparent 70%);
}

.aurora-pulse-3 {
  bottom: 20%;
  left: 40%;
  animation-delay: 4s;
  background: radial-gradient(circle, rgba(16,185,129,0.12), transparent 70%);
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

/* Stars */
.stars {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.6;
}

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

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

/* ============================================
   LIQUID GLASS COMPONENTS
   ============================================ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--glass-shine), transparent);
  animation: glass-shimmer 3s infinite;
}

@keyframes glass-shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

.glass-card {
  background: linear-gradient(135deg, 
    rgba(255,255,255,0.05) 0%, 
    rgba(255,255,255,0.02) 100%);
  backdrop-filter: blur(30px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0,217,255,0.15) 0%, transparent 70%);
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0,217,255,0.1), transparent);
  animation: card-shimmer 4s infinite;
}

@keyframes card-shimmer {
  0% { left: -100%; }
  50% { left: -100%; }
  100% { left: 200%; }
}

.glass-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(0,0,0,.4), 
    0 0 80px rgba(0,217,255,.3),
    inset 0 0 100px rgba(0,217,255,0.05);
  border-color: rgba(0,217,255,0.4);
}

.glass-card:hover::before {
  opacity: 1;
  top: -20%;
  right: -20%;
}

.glass-card:hover::after {
  animation: card-shimmer-fast 2s infinite;
}

@keyframes card-shimmer-fast {
  0% { left: -100%; }
  100% { left: 200%; }
}

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

.nav.scrolled {
  padding: 12px 0;
  background: rgba(3, 5, 9, 0.95);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.logo-area {
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo-area:hover {
  transform: scale(1.05);
}

.logo {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: url('aurora.png') center/cover;
  box-shadow: 0 8px 24px rgba(0, 217, 255, 0.3);
  border: 1px solid var(--glass-border);
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--aurora-cyan), var(--aurora-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 10px 18px;
  border-radius: 10px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  opacity: 0.8;
}

.nav-link:hover {
  opacity: 1;
  background: var(--glass-bg);
}

.lang-selector {
  display: flex;
  gap: 4px;
  margin-left: 16px;
  padding: 6px;
  background: var(--glass-bg);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

.lang-btn {
  padding: 8px 14px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--aurora-cyan), var(--aurora-blue));
  color: var(--bg);
  box-shadow: 0 4px 12px rgba(0, 217, 255, 0.3);
}

.mobile-menu-btn {
  display: none;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text);
  padding: 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 24px;
}

/* NAV APP STORE BUTTON */
.nav-app-store-btn {
  background: linear-gradient(135deg, #10b981, #00d9ff) !important;
  color: white !important;
  padding: 12px 24px !important;
  border-radius: 14px !important;
  font-weight: 800 !important;
  font-size: 15px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
  margin-left: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  box-shadow: 0 6px 25px rgba(0, 217, 255, 0.5) !important;
  border: 2px solid rgba(0, 217, 255, 0.4) !important;
}

.nav-app-store-btn:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.7) !important;
  background: linear-gradient(135deg, #00d9ff, #8b5cf6) !important;
}

.nav-app-store-btn span {
  color: white !important;
  font-weight: 800 !important;
}

@media (max-width: 968px) {
  .nav-container {
    padding: 0 20px;
  }
  
  .logo {
    width: 40px;
    height: 40px;
  }
  
  .logo-text {
    font-size: 20px;
  }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(3, 5, 9, 0.98);
    backdrop-filter: blur(30px);
    padding: 20px;
    gap: 12px;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    display: none;
  }
  
  .nav-links.active {
    display: flex !important;
  }
  
  .nav-link {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
  }
  
  .lang-selector {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    padding: 12px;
  }
  
  .lang-btn {
    flex: 1;
    padding: 12px;
    font-size: 14px;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-app-store-btn {
    display: none !important;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 600px;
  background: radial-gradient(ellipse 100% 50% at 50% 0%, rgba(0,217,255,0.15), transparent);
  pointer-events: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

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

.hero-content h1 {
  font-size: clamp(42px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--aurora-cyan), var(--aurora-purple), var(--aurora-pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 6s ease infinite;
}

@keyframes gradient-shift {
  0%, 100% { filter: hue-rotate(0deg); }
  50% { filter: hue-rotate(20deg); }
}

.hero-subtitle {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.cta-group {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

@media (max-width: 968px) {
  .cta-group {
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 17px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--aurora-cyan), var(--aurora-blue));
  color: var(--bg);
  box-shadow: 0 10px 40px rgba(0, 217, 255, 0.4);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--aurora-blue), var(--aurora-purple));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.5);
}

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

.btn-secondary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text);
  backdrop-filter: blur(20px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--aurora-cyan);
  box-shadow: var(--glow);
  transform: translateY(-4px);
}

.badge-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 968px) {
  .badge-group {
    justify-content: center;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px);
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.app-icon-hero {
  width: 100%;
  max-width: 450px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: url('aurora.png') center/cover;
  box-shadow: 
    0 40px 100px rgba(0, 0, 0, 0.6),
    0 20px 60px rgba(0, 217, 255, 0.4),
    0 0 100px rgba(139, 92, 246, 0.3),
    inset 0 0 120px rgba(0, 217, 255, 0.15);
  border: 2px solid var(--glass-border);
  animation: float-icon 8s ease-in-out infinite, icon-glow 4s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.app-icon-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -200%;
  width: 80%;
  height: 200%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 20%,
    rgba(0,217,255,0.15) 35%,
    rgba(139,92,246,0.25) 50%,
    rgba(0,217,255,0.15) 65%,
    transparent 80%,
    transparent 100%
  );
  animation: aurora-shimmer 12s cubic-bezier(0.4, 0.0, 0.2, 1) infinite;
  opacity: 0.7;
  filter: blur(40px);
  transform: rotate(-20deg);
}

.app-icon-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, 
    rgba(0,217,255,0.1) 0%,
    transparent 50%,
    rgba(139,92,246,0.1) 100%
  );
  opacity: 0.8;
}

@keyframes float-icon {
  0%, 100% { 
    transform: translateY(0) rotate(0deg) scale(1); 
    box-shadow: 
      0 40px 100px rgba(0, 0, 0, 0.6),
      0 20px 60px rgba(0, 217, 255, 0.4),
      0 0 100px rgba(139, 92, 246, 0.3);
  }
  25% {
    transform: translateY(-20px) rotate(2deg) scale(1.05);
    box-shadow: 
      0 50px 120px rgba(0, 0, 0, 0.7),
      0 30px 80px rgba(0, 217, 255, 0.5),
      0 0 120px rgba(139, 92, 246, 0.4);
  }
  50% { 
    transform: translateY(-30px) rotate(0deg) scale(1.08); 
    box-shadow: 
      0 60px 140px rgba(0, 0, 0, 0.8),
      0 40px 100px rgba(0, 217, 255, 0.6),
      0 0 140px rgba(236, 72, 153, 0.4);
  }
  75% {
    transform: translateY(-20px) rotate(-2deg) scale(1.05);
    box-shadow: 
      0 50px 120px rgba(0, 0, 0, 0.7),
      0 30px 80px rgba(139, 92, 246, 0.5),
      0 0 120px rgba(16, 185, 129, 0.4);
  }
}

@keyframes aurora-shimmer {
  0% { 
    left: -200%;
    opacity: 0;
  }
  15% {
    opacity: 0.4;
  }
  35% { 
    left: 0%;
    opacity: 0.6;
  }
  50% {
    left: 80%;
    opacity: 0.5;
  }
  70% {
    left: 180%;
    opacity: 0.3;
  }
  85% {
    opacity: 0;
  }
  100% { 
    left: -200%;
    opacity: 0;
  }
}

@keyframes icon-glow {
  0%, 100% {
    box-shadow: 
      0 40px 100px rgba(0, 0, 0, 0.6),
      0 20px 60px rgba(0, 217, 255, 0.4),
      0 0 100px rgba(139, 92, 246, 0.3),
      inset 0 0 120px rgba(0, 217, 255, 0.15);
  }
  50% {
    box-shadow: 
      0 40px 100px rgba(0, 0, 0, 0.6),
      0 25px 80px rgba(0, 217, 255, 0.6),
      0 0 140px rgba(236, 72, 153, 0.5),
      inset 0 0 160px rgba(139, 92, 246, 0.25);
  }
}

@media (max-width: 968px) {
  .app-icon-hero {
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 20px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.feature-card {
  padding: 40px;
  transition: all 0.4s ease;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--aurora-cyan), var(--aurora-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

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

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

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

.pricing-card {
  padding: 36px 32px;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 2px solid var(--aurora-cyan);
  box-shadow: 0 20px 60px rgba(0, 217, 255, 0.3);
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .pricing-card {
    padding: 28px 24px;
  }

  .pricing-card.featured {
    transform: scale(1);
    order: -1;
  }

  .pricing-badge {
    font-size: 11px;
    padding: 6px 12px;
    letter-spacing: 0.3px;
    white-space: nowrap;
  }

  .price {
    font-size: 44px;
    margin: 16px 0;
  }

  .price-period {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .pricing-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .pricing-comparison-grid {
    grid-template-columns: 1fr !important;
    max-width: 320px;
  }
}

.pricing-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--aurora-cyan), var(--aurora-blue));
  color: var(--bg);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 16px;
}

.price {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--aurora-cyan), var(--aurora-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 24px 0;
  line-height: 1;
}

.price-period {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  text-align: left;
}

.features-list li {
  padding: 12px 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.features-list li::before {
  content: '✨';
  font-size: 18px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--glass-border);
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.3));
}

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

@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: url('aurora.png') center/cover;
  border: 1px solid var(--glass-border);
}

.footer h4 {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 15px;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--aurora-cyan);
  transform: translateX(4px);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  color: var(--text-subtle);
  font-size: 14px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-section {
  padding: 140px 0 100px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--aurora-cyan), var(--aurora-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.legal-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 48px 0 16px;
  color: var(--text);
}

.legal-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--text);
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-content ul, .legal-content ol {
  color: var(--text-muted);
  margin: 16px 0;
  padding-left: 24px;
  line-height: 1.8;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--aurora-cyan);
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 24px 0;
}

/* ============================================
   LANGUAGE SYSTEM
   ============================================ */
[data-lang="de"] .lang-de { display: inline; }
[data-lang="de"] .lang-en { display: none; }
[data-lang="de"] .lang-fr { display: none; }
[data-lang="de"] .lang-es { display: none; }

[data-lang="en"] .lang-de { display: none; }
[data-lang="en"] .lang-en { display: inline; }
[data-lang="en"] .lang-fr { display: none; }
[data-lang="en"] .lang-es { display: none; }

[data-lang="fr"] .lang-de { display: none; }
[data-lang="fr"] .lang-en { display: none; }
[data-lang="fr"] .lang-fr { display: inline; }
[data-lang="fr"] .lang-es { display: none; }

[data-lang="es"] .lang-de { display: none; }
[data-lang="es"] .lang-en { display: none; }
[data-lang="es"] .lang-fr { display: none; }
[data-lang="es"] .lang-es { display: inline; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.hidden {
  display: none !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--aurora-cyan), var(--aurora-blue));
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--aurora-cyan);
}
