/* ═══════════════════════════════════════════════════════════════════════════
   ELITE+ PREMIUM LANDING STYLES 2.0
   Ultra-premium, modern landing page design system
   ═══════════════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════════════════
   1. PREMIUM LOADING SCREEN
   ═══════════════════════════════════════════════════════════════════════════ */
.elite-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #09090b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.elite-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 80px;
  height: 80px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(99, 102, 241, 0.2);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6366f1, #8b5cf6, #a855f7);
  border-radius: 2px;
  animation: loaderProgress 1.5s ease-in-out forwards;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes loaderProgress {
  0% { width: 0%; }
  50% { width: 70%; }
  100% { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   2. PREMIUM BACKGROUND SYSTEM
   ═══════════════════════════════════════════════════════════════════════════ */
.premium-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: #09090b;
}

/* Animated mesh gradient */
.mesh-gradient {
  position: absolute;
  inset: -50%;
  background: 
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(99, 102, 241, 0.15), transparent 70%),
    radial-gradient(ellipse 40% 50% at 80% 20%, rgba(139, 92, 246, 0.12), transparent 70%),
    radial-gradient(ellipse 45% 35% at 60% 80%, rgba(168, 85, 247, 0.1), transparent 70%),
    radial-gradient(ellipse 35% 45% at 10% 70%, rgba(99, 102, 241, 0.08), transparent 70%);
  animation: meshMove 20s ease-in-out infinite;
  will-change: transform;
}

@keyframes meshMove {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  25% { transform: translate(2%, -2%) rotate(2deg) scale(1.02); }
  50% { transform: translate(-1%, 3%) rotate(-1deg) scale(0.98); }
  75% { transform: translate(-3%, -1%) rotate(1deg) scale(1.01); }
}

/* Floating orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: orbFloat 15s ease-in-out infinite;
  will-change: transform;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
  bottom: -150px;
  left: -150px;
  animation-delay: -5s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
  top: 50%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, -40px); }
  50% { transform: translate(-20px, 30px); }
  75% { transform: translate(40px, 20px); }
}

/* Grid overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 30%, black, transparent);
}

/* Noise texture */
.noise-overlay {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   3. PREMIUM NAVBAR 2.0
   ═══════════════════════════════════════════════════════════════════════════ */
.navbar-premium {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-premium.scrolled {
  padding: 8px 0;
}

.navbar-glass {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar-glass-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  padding: 0 20px;
  background: rgba(15, 15, 18, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-premium.scrolled .navbar-glass-inner {
  background: rgba(15, 15, 18, 0.9);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.nav-logo-premium {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-premium img {
  width: 36px;
  height: 36px;
  transition: transform 0.3s ease;
}

.nav-logo-premium:hover img {
  transform: rotate(-10deg) scale(1.1);
}

.nav-logo-premium span {
  font-weight: 700;
  font-size: 18px;
  background: linear-gradient(135deg, #fff 0%, #a1a1aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link-premium {
  position: relative;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.25s ease;
  overflow: hidden;
}

.nav-link-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
  opacity: 0;
  transition: opacity 0.25s ease;
  border-radius: 10px;
}

.nav-link-premium:hover {
  color: var(--text-primary);
}

.nav-link-premium:hover::before {
  opacity: 1;
}

.nav-link-premium.active {
  color: var(--accent-hover);
}

.nav-link-premium.active::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
}

/* CTA Button in Nav */
.nav-cta {
  position: relative;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #818cf8, #a78bfa);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.nav-cta:hover::before {
  opacity: 1;
}

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

/* ═══════════════════════════════════════════════════════════════════════════
   4. PREMIUM HERO 2.0
   ═══════════════════════════════════════════════════════════════════════════ */
.hero-premium {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
}

.hero-premium-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Animated badge */
.hero-badge-premium {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 18px 8px 8px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.05));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 100px;
  margin-bottom: 24px;
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.1); }
  50% { box-shadow: 0 0 30px rgba(99, 102, 241, 0.2); }
}

.badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 50%;
  font-size: 14px;
}

.badge-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-hover);
}

/* Hero title with gradient animation */
.hero-title-premium {
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title-premium .line {
  display: block;
  overflow: hidden;
}

.hero-title-premium .line span {
  display: inline-block;
  transform: translateY(100%);
  animation: titleReveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-title-premium .line:nth-child(2) span {
  animation-delay: 0.1s;
}

.hero-title-premium .line:nth-child(3) span {
  animation-delay: 0.2s;
}

@keyframes titleReveal {
  to { transform: translateY(0); }
}

.hero-title-premium .gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 30%, #a855f7 60%, #6366f1 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s linear infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

.hero-desc-premium {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 500px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards 0.4s;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* CTA buttons */
.hero-cta-premium {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.5s;
}

.btn-premium-xl {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border: none;
  border-radius: 14px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium-xl::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #818cf8, #a78bfa);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-premium-xl::after {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
  border-radius: 16px;
  z-index: -1;
  opacity: 0;
  filter: blur(15px);
  transition: opacity 0.3s ease;
}

.btn-premium-xl:hover {
  transform: translateY(-3px);
}

.btn-premium-xl:hover::before {
  opacity: 1;
}

.btn-premium-xl:hover::after {
  opacity: 0.6;
}

.btn-premium-xl span,
.btn-premium-xl svg {
  position: relative;
  z-index: 1;
}

.btn-secondary-premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary-premium:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

/* Trust badges */
.hero-trust-premium {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  opacity: 0;
  animation: fadeUp 0.6s ease forwards 0.6s;
}

.trust-item-premium {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(34, 197, 94, 0.15);
  border-radius: 50%;
  color: #22c55e;
  font-size: 12px;
}

.trust-text-premium {
  font-size: 14px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   5. PREMIUM DASHBOARD PREVIEW (3D)
   ═══════════════════════════════════════════════════════════════════════════ */
.hero-visual-premium {
  perspective: 2000px;
  opacity: 0;
  animation: fadeUp 0.8s ease forwards 0.3s;
}

.dashboard-3d {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateY(-12deg) rotateX(8deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-3d:hover {
  transform: rotateY(-6deg) rotateX(4deg);
}

.dashboard-window {
  position: relative;
  background: linear-gradient(180deg, rgba(15, 15, 18, 0.9), rgba(24, 24, 27, 0.95));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 50px 100px -20px rgba(0, 0, 0, 0.5),
    0 30px 60px -30px rgba(99, 102, 241, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.dashboard-window::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.topbar-dot:hover {
  transform: scale(1.2);
}

.topbar-dot.red { background: #ef4444; }
.topbar-dot.yellow { background: #f59e0b; }
.topbar-dot.green { background: #22c55e; }

.topbar-title {
  flex: 1;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}

.dashboard-content {
  padding: 24px;
}

/* Stats grid */
.stats-grid-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.stat-card-premium {
  position: relative;
  padding: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  text-align: center;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-card-premium:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.stat-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--stat-gradient, linear-gradient(90deg, #6366f1, #8b5cf6));
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.stat-card-premium.goals { --stat-gradient: linear-gradient(90deg, #22c55e, #4ade80); }
.stat-card-premium.rating { --stat-gradient: linear-gradient(90deg, #f59e0b, #fbbf24); }
.stat-card-premium.xg { --stat-gradient: linear-gradient(90deg, #6366f1, #8b5cf6); }

.stat-value-premium {
  font-family: var(--font-mono, monospace);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card-premium.goals .stat-value-premium { color: #22c55e; }
.stat-card-premium.rating .stat-value-premium { color: #f59e0b; }
.stat-card-premium.xg .stat-value-premium { color: var(--accent-hover); }

.stat-label-premium {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Activity cards */
.activity-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.activity-card-premium {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.activity-card-premium:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(4px);
}

.activity-icon-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
  border-radius: 10px;
  font-size: 20px;
}

.activity-info {
  flex: 1;
}

.activity-info h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.activity-info p {
  font-size: 12px;
  color: var(--text-muted);
}

.activity-status {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px;
}

/* Floating badges */
.float-card {
  position: absolute;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(15, 15, 18, 0.95), rgba(24, 24, 27, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  animation: floatPremium 6s ease-in-out infinite;
  z-index: 10;
}

.float-card.ai-card {
  top: 20px;
  right: -40px;
  animation-delay: 0s;
}

.float-card.streak-card {
  bottom: 40px;
  left: -50px;
  animation-delay: -3s;
}

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

.float-card .value {
  font-family: var(--font-mono, monospace);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.float-card.ai-card .value { color: var(--accent-hover); }
.float-card.streak-card .value { color: #f59e0b; }

.float-card .label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   6. PREMIUM SECTION STYLES
   ═══════════════════════════════════════════════════════════════════════════ */
.section-premium {
  padding: 120px 24px;
  position: relative;
}

.section-header-premium {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-hover);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.section-title-premium {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-desc-premium {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════════════════
   7. PREMIUM FEATURE CARDS
   ═══════════════════════════════════════════════════════════════════════════ */
.features-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card-premium {
  position: relative;
  padding: 32px;
  background: linear-gradient(180deg, rgba(15, 15, 18, 0.8), rgba(24, 24, 27, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card-premium:hover {
  transform: translateY(-8px);
  border-color: rgba(99, 102, 241, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(99, 102, 241, 0.1);
}

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

.feature-icon-premium {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 16px;
  font-size: 28px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.feature-card-premium:hover .feature-icon-premium {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.15));
}

.feature-title-premium {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.feature-desc-premium {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   8. PREMIUM PRICING CARDS
   ═══════════════════════════════════════════════════════════════════════════ */
.pricing-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card-premium {
  position: relative;
  padding: 40px;
  background: linear-gradient(180deg, rgba(15, 15, 18, 0.9), rgba(24, 24, 27, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.pricing-card-premium.featured {
  border-color: rgba(99, 102, 241, 0.3);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.05), rgba(15, 15, 18, 0.9));
}

.pricing-card-premium.featured::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
  border-radius: 30px;
  z-index: -1;
  opacity: 0.2;
  filter: blur(20px);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header-premium {
  margin-bottom: 32px;
}

.pricing-plan {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.pricing-currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-secondary);
}

.pricing-amount {
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-period {
  font-size: 16px;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-features-premium {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-feature svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: #22c55e;
}

.pricing-cta {
  width: 100%;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 14px;
  transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════════════════════
   9. TESTIMONIALS PREMIUM
   ═══════════════════════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial-card-premium {
  padding: 32px;
  background: linear-gradient(180deg, rgba(15, 15, 18, 0.8), rgba(24, 24, 27, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  transition: all 0.3s ease;
}

.testimonial-card-premium:hover {
  border-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  color: #f59e0b;
  fill: #f59e0b;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.testimonial-info h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-info p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════════════════
   10. PREMIUM CTA SECTION
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-section-premium {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  overflow: hidden;
}

.cta-section-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(99, 102, 241, 0.12), transparent);
  pointer-events: none;
}

.cta-box-premium {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 48px;
  background: linear-gradient(180deg, rgba(15, 15, 18, 0.9), rgba(24, 24, 27, 0.8));
  border: 1px solid rgba(99, 102, 241, 0.2);
  border-radius: 32px;
  box-shadow: 0 0 60px rgba(99, 102, 241, 0.15);
}

.cta-title-premium {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.cta-desc-premium {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.cta-buttons-premium {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   11. PREMIUM FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.footer-premium {
  padding: 80px 24px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.2);
}

.footer-inner-premium {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid-premium {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 64px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 300px;
  margin: 16px 0 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.2);
  color: var(--accent-hover);
}

.footer-column h4 {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 12px;
}

.footer-column a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--text-primary);
}

/* ═══════════════════════════════════════════════════════════════════════════
   12. RESPONSIVE ADJUSTMENTS
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-premium-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc-premium {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-premium {
    justify-content: center;
  }

  .hero-trust-premium {
    justify-content: center;
  }

  .hero-visual-premium {
    max-width: 600px;
    margin: 0 auto;
  }

  .dashboard-3d {
    transform: rotateY(0) rotateX(0);
  }

  .float-card {
    display: none;
  }

  .footer-grid-premium {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links-premium {
    display: none;
  }

  .section-premium {
    padding: 80px 20px;
  }

  .features-grid-premium,
  .pricing-grid-premium,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid-premium {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-premium {
    padding: 100px 16px 60px;
  }

  .btn-premium-xl,
  .btn-secondary-premium {
    width: 100%;
    justify-content: center;
  }

  .hero-cta-premium {
    flex-direction: column;
  }

  .cta-box-premium {
    padding: 40px 24px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   13. REDUCED MOTION
   ═══════════════════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .mesh-gradient,
  .orb,
  .float-card,
  .hero-title-premium .line span {
    animation: none !important;
    transform: none !important;
  }

  .hero-title-premium .line span {
    transform: translateY(0) !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE NAVIGATION (Hamburger + Drawer)
   ═══════════════════════════════════════════════════════════════════════════ */

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-primary, #fff);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer — hidden by default */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100dvh;
  background: rgba(9, 9, 11, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 88px 24px 32px;
  gap: 32px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-nav-drawer.open {
  right: 0;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary, #a1a1aa);
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus {
  background: rgba(99, 102, 241, 0.1);
  color: #fff;
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

/* Desktop: "Sign In" text link stays in actions area */
.nav-link-desktop {
  /* visible on desktop, hidden on mobile via hamburger taking over */
}

@media (max-width: 768px) {
  .nav-hamburger {
    display: flex;
  }

  .nav-link-desktop {
    display: none;
  }

  .nav-actions-premium .nav-cta {
    display: none;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════════════════════ */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-item + .faq-item { margin-top: 0; }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary, #fafafa);
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.2s;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--text-muted, #71717a);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] .faq-q::after { content: '−'; }
.faq-q:hover { color: #818cf8; }

.faq-a {
  padding: 0 0 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary, #a1a1aa);
  max-width: 640px;
}

