/* ==========================================================================
   AuraPocket Storefront Landing Page Styles
   €10,000 Ultra-Premium Bespoke Design System
   Anti-AI-Slop Editorial Theme with Specular Glassmorphism & Mouse Glow
   ========================================================================== */

:root {
  /* Obsidian Palette & Depth */
  --bg-primary: #020205;
  --bg-card: rgba(6, 6, 15, 0.55);
  --bg-card-hover: rgba(10, 10, 25, 0.7);
  --border-card: rgba(255, 255, 255, 0.05);
  --border-card-active: rgba(255, 255, 255, 0.12);
  
  --text-main: #f3f4f6;
  --text-muted: #8e9bb0;
  
  /* Elite Accent Neon Glows */
  --indigo-primary: #7c3aed;
  --indigo-glow: rgba(124, 58, 237, 0.25);
  
  --purple-primary: #a78bfa;
  --purple-glow: rgba(167, 139, 250, 0.25);
  
  --pink-primary: #f472b6;
  --pink-glow: rgba(244, 114, 182, 0.25);
  
  --emerald-primary: #10b981;
  --emerald-glow: rgba(16, 185, 129, 0.25);
  
  --amber-primary: #f59e0b;
  --amber-glow: rgba(245, 158, 11, 0.25);
  
  /* High-end Fluid Spring Transitions */
  --transition-elastic: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Typography Hierarchy */
  --font-display: 'Space Grotesk', sans-serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-primary);
  font-family: var(--font-sans);
  color: var(--text-main);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  line-height: 1.7;
}

/* ==========================================================================
   AMBIENT CHROMATIC BACKGROUND (Animated Aura Pulsar)
   ========================================================================== */
.aura-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  mix-blend-mode: screen;
  filter: blur(120px);
  animation: float-slow 20s infinite ease-in-out alternate;
}

.blob-indigo {
  width: 60vw;
  height: 60vw;
  top: -15vw;
  left: -15vw;
  background: radial-gradient(circle, var(--indigo-glow) 0%, transparent 70%);
}

.blob-purple {
  width: 55vw;
  height: 55vw;
  bottom: -10vw;
  right: -10vw;
  background: radial-gradient(circle, var(--purple-glow) 0%, transparent 70%);
  animation-delay: -5s;
}

.blob-pink {
  width: 45vw;
  height: 45vw;
  top: 30vh;
  left: 60vw;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--pink-glow) 0%, transparent 70%);
  animation-delay: -10s;
}

@keyframes float-slow {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -60px) scale(1.1); }
  100% { transform: translate(-20px, 30px) scale(0.95); }
}

/* Dynamic ambient overlay noise for tactile premium texture */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.02;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   SPECULAR GLASS CARDS (Cursor tracking light reflections)
   ========================================================================== */
.glass-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 28px;
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4), 
    inset 0 1px 0px rgba(255, 255, 255, 0.08);
  transition: var(--transition-elastic);
  overflow: hidden;
}

/* Dynamic Interactive Border Spotlight via Javascript coordinates */
.glass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(
    300px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(255, 255, 255, 0.18),
    transparent 60%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  transition: opacity 0.5s ease;
}

/* Dynamic Interactive Backlight Glow */
.glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    250px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
    rgba(124, 58, 237, 0.06),
    transparent 60%
  );
  pointer-events: none;
  z-index: -1;
  transition: opacity 0.5s ease;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-8px) scale(1.01);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.55), 
    0 0 40px rgba(124, 58, 237, 0.08),
    inset 0 1px 0px rgba(255, 255, 255, 0.12);
}

/* ==========================================================================
   PREMIUM BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition-elastic);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-indigo {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 50%, #3b0764 100%);
  background-size: 200% 100%;
  background-position: left center;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.35);
}

.btn-indigo:hover {
  background-position: right center;
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.55);
  transform: translateY(-3px) scale(1.02);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.05);
  transform: translateY(-3px) scale(1.02);
}

.btn-store {
  background: rgba(6, 6, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.btn-store:hover {
  background: rgba(15, 15, 30, 0.95);
  border-color: var(--purple-primary);
  box-shadow: 0 15px 30px rgba(167, 139, 250, 0.15);
  transform: translateY(-3px) scale(1.02);
}

.store-icon {
  flex-shrink: 0;
  color: #fff;
  transition: var(--transition-elastic);
}

/* ==========================================================================
   BADGES WITH MICRO-ANIMATIONS
   ========================================================================== */
.hero-badge, .badge-emerald, .badge-indigo, .badge-purple, .badge-pink {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.05);
  transition: var(--transition-elastic);
}

.hero-badge {
  color: var(--purple-primary);
  border-color: rgba(167, 139, 250, 0.2);
}

.badge-emerald {
  color: var(--emerald-primary);
  border-color: rgba(16, 185, 129, 0.2);
}

.badge-indigo {
  color: var(--indigo-primary);
  border-color: rgba(124, 58, 237, 0.2);
}

.badge-purple {
  color: var(--purple-primary);
  border-color: rgba(167, 139, 250, 0.2);
}

.badge-pink {
  color: var(--pink-primary);
  border-color: rgba(244, 114, 182, 0.2);
}

.hero-badge:hover, .badge-emerald:hover, .badge-indigo:hover, .badge-purple:hover, .badge-pink:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: scale(1.05);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: rgba(2, 2, 5, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
}

.nav-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo-image {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: contain;
}

.logo-text span {
  color: var(--purple-primary);
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-elastic);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--purple-primary);
  transition: var(--transition-elastic);
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Premium Language Selector Dropdown */
.lang-selector-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  font-family: inherit;
  transition: var(--transition-elastic);
  backdrop-filter: blur(10px);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238e9bb0' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

.lang-select:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.lang-select option {
  background: #020205;
  color: #fff;
}

/* ==========================================================================
   HERO SECTION (Editorial High-Fashion Layout)
   ========================================================================== */
.hero {
  padding: 180px 0 100px 0;
  position: relative;
}

.hero-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 10;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 25px;
  background: linear-gradient(135deg, #ffffff 40%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 580px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

/* Floating devices showcase */
.hero-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mockup-frame {
  position: relative;
  border-radius: 40px;
  background: rgba(0, 0, 0, 0.4);
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.7), 
    0 0 50px rgba(167, 139, 250, 0.1);
  animation: float 8s ease-in-out infinite;
}

.mockup-image {
  width: 100%;
  height: auto;
  border-radius: 34px;
  display: block;
}

/* Dedicated Clean Styles for Hero Mockup (No Background, Large) */
.hero-mockup-frame {
  position: relative;
  background: transparent;
  padding: 0;
  border: none;
  box-shadow: none;
  width: 100%;
  max-width: 100%;
  animation: float 8s ease-in-out infinite;
}

.hero-mockup-image {
  width: 100%;
  height: auto;
  border-radius: 0;
  display: block;
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

/* ==========================================================================
   SECTIONS DESIGN & ASYMMETRICAL SPACING
   ========================================================================== */
.section-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.15;
  background: linear-gradient(135deg, #ffffff 60%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.7;
}

/* ==========================================================================
   PRIVACY CARDS (Tactile Glass Layout)
   ========================================================================== */
.privacy-section {
  background: linear-gradient(180deg, transparent, rgba(6, 6, 15, 0.3));
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.privacy-card {
  padding: 30px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 18px;
  row-gap: 16px;
  text-align: left;
}

.card-icon {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0 !important;
}

.privacy-card h3 {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0 !important;
  letter-spacing: -0.5px;
  color: #ffffff;
}

.privacy-card p {
  grid-column: 1 / span 2;
  grid-row: 2;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   INTERACTIVE BUDGET SIMULATOR
   ========================================================================== */
.simulator-widget-wrapper {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.simulator-card {
  padding: 40px;
  border-color: rgba(255, 255, 255, 0.08);
}

.sim-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 20px;
}

.sim-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}

.sim-status {
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-elastic);
}

/* Simulated Neon Progress Bar */
.progress-bar-wrapper {
  position: relative;
  width: 100%;
  height: 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  overflow: hidden;
  margin-bottom: 30px;
}

.progress-bar-fill {
  height: 100%;
  width: 40%;
  border-radius: 30px;
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
}

.progress-bar-glow {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  opacity: 0.15;
  filter: blur(4px);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
}

.sim-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.metric {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 20px;
  padding: 16px 18px;
  transition: var(--transition-elastic);
}

.metric:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.metric-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 5px;
}

.metric-value {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.sim-controls {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.control-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.control-group input[type="number"] {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  height: 48px;
  padding: 0 18px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  font-family: inherit;
  transition: var(--transition-elastic);
}

.control-group input[type="number"]:focus {
  border-color: var(--purple-primary);
  box-shadow: 0 0 20px rgba(167, 139, 250, 0.2);
  background: rgba(0, 0, 0, 0.6);
}

.slider-container {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.slider-container input[type="range"] {
  flex-grow: 1;
  height: 6px;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  outline: none;
  cursor: pointer;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid var(--purple-primary);
  box-shadow: 0 0 10px rgba(167, 139, 250, 0.4);
  transition: var(--transition-elastic);
}

.slider-container input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 15px rgba(167, 139, 250, 0.6);
}

.slider-val {
  min-width: 90px;
  text-align: right;
  font-weight: 800;
  font-size: 1rem;
  color: #ffffff;
}

.sim-features-info h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
}

.sim-features-info p {
  color: var(--text-muted);
  margin-bottom: 35px;
  font-size: 1.05rem;
}

.sim-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sim-bullet-list li {
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.bullet {
  font-size: 0.8rem;
  margin-top: 2px;
}

/* Global color-coding for simulator list labels (Desktop & general) */
/* 1. Emerald Green Label */
.sim-bullet-list li:nth-child(1) strong,
.sim-bullet-list li:nth-child(1) strong span {
  color: var(--emerald-primary);
}

/* 2. Amber Orange Label */
.sim-bullet-list li:nth-child(2) strong,
.sim-bullet-list li:nth-child(2) strong span {
  color: var(--amber-primary);
}

/* 3. Neon Pink Label */
.sim-bullet-list li:nth-child(3) strong,
.sim-bullet-list li:nth-child(3) strong span {
  color: var(--pink-primary);
}

/* ==========================================================================
   FEATURES GRID
   ========================================================================== */
.features-section {
  background: linear-gradient(180deg, rgba(6, 6, 15, 0.3), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.feature-card {
  padding: 30px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 18px;
  row-gap: 16px;
  text-align: left;
}

.feat-icon {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0 !important;
}

.feature-card h4 {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0 !important;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.feature-card p {
  grid-column: 1 / span 2;
  grid-row: 2;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   LAYOUTS SHOWCASE
   ========================================================================== */
.layouts-section {
  position: relative;
}

.showcase-viewer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  width: 100%;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.faq-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  padding: 24px 30px;
  cursor: pointer;
  border-color: rgba(255, 255, 255, 0.04);
}

.faq-question {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-arrow {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active {
  border-color: rgba(167, 139, 250, 0.15);
  background: rgba(10, 10, 25, 0.6);
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--purple-primary);
}

.faq-item.active .faq-answer {
  max-height: 250px;
  opacity: 1;
  margin-top: 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #010103;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  padding: 50px 0 30px 0;
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.footer-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  width: 100%;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links-group {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-elastic);
}

.footer-link:hover {
  color: var(--purple-primary);
  text-shadow: 0 0 10px rgba(167, 139, 250, 0.4);
}

.footer-sep {
  opacity: 0.3;
  user-select: none;
}

/* Cookie Modal Popup Styles */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 2, 5, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-elastic);
}

.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-card {
  max-width: 500px;
  width: 90%;
  padding: 35px;
  border-color: rgba(167, 139, 250, 0.2);
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8), 0 0 40px rgba(167, 139, 250, 0.15);
  transform: scale(0.9);
  transition: var(--transition-elastic);
}

.cookie-modal-overlay.active .cookie-modal-card {
  transform: scale(1);
}

.cookie-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.cookie-header h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.cookie-body p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 25px;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
}

/* ==========================================================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================================================== */
@media (max-width: 1200px) {
  .privacy-grid, .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 100px 0 50px 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 15px;
    gap: 35px;
  }
  
  .hero-content {
    align-items: center;
    width: 100%;
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-bottom: 30px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
  
  .privacy-grid, .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .simulator-widget-wrapper {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  
  .simulator-card {
    max-width: 580px;
    width: 100%;
    margin: 0 auto;
  }
  
  .sim-features-info {
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
  }
  
  .sim-bullet-list {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: auto;
    padding: 15px 0;
    position: sticky;
  }
  
  .nav-container {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 20px;
    width: 100%;
  }

  .nav-links a {
    font-size: 0.85rem;
  }
  
  .privacy-grid, .features-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .section-header h2 {
    font-size: 2.1rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 16px;
    padding-top: 25px;
  }

  .footer-links-group {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    line-height: 2;
  }
}

@media (min-width: 993px) {
  .hero-showcase {
    margin-left: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* Mobile Overflow and Fine-Tuning (iPhone SE / small screens) */
@media (max-width: 480px) {
  /* Ultra-compact premium navbar elements for small viewports */
  .nav-cta {
    padding: 8px 14px;
    font-size: 0.8rem;
    border-radius: 10px;
  }
  
  .lang-select {
    padding: 6px 6px;
    padding-right: 20px;
    font-size: 0.78rem;
    border-radius: 10px;
    background-position: right 6px center;
  }
  
  .logo {
    gap: 10px;
  }
  
  .logo-text {
    font-size: 1.45rem;
  }
  
  .logo-image {
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px !important;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  /* Compact simulator card padding for mobile screens */
  .simulator-card {
    padding: 20px 14px;
    border-radius: 20px;
  }
  
  .sim-header {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
  
  .sim-header h3 {
    font-size: 1rem;
  }
  
  .sim-status {
    padding: 4px 10px;
    font-size: 0.65rem;
  }

  /* Keep metrics horizontal (side-by-side) to feel native, compact, and scannable */
  .sim-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 20px;
  }
  
  .metric {
    padding: 10px 4px;
    border-radius: 12px;
    text-align: center;
    align-items: center;
  }
  
  .metric-label {
    font-size: 0.58rem;
    letter-spacing: 0px;
    margin-bottom: 2px;
  }
  
  .metric-value {
    font-size: 0.82rem;
    font-weight: 800;
  }
  
  /* Save vertical height in controls */
  .sim-controls {
    gap: 16px;
  }
  
  .control-group label {
    font-size: 0.72rem;
    margin-bottom: 4px;
  }
  
  .control-group input[type="number"] {
    height: 40px;
    font-size: 0.9rem;
    border-radius: 12px;
  }

  /* Keep slider inline (row) with small gap to prevent visual clutter */
  .slider-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  
  .slider-container input[type="range"] {
    height: 4px;
  }
  
  .slider-container input[type="range"]::-webkit-slider-thumb {
    width: 18px;
    height: 18px;
  }
  
  .slider-val {
    font-size: 0.88rem;
    min-width: 65px;
    text-align: right;
  }

  /* Exquisite mobile visual hierarchy: Centered blocks, color-coded labels, white descriptions (A capo) */
  .sim-bullet-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    margin-top: 15px;
    align-items: center;
  }

  .sim-bullet-list li {
    display: block !important;
    text-align: center !important;
    font-size: 0.88rem;
    line-height: 1.5;
    width: 100%;
    margin-bottom: 8px;
  }

  /* Hide bullet points completely on mobile */
  .sim-bullet-list li .bullet {
    display: none !important;
  }

  /* Bold titles: Centered, color-coded, and placed on a new line (A capo) */
  .sim-bullet-list li strong {
    font-size: 0.92rem;
    font-weight: 700;
    display: block !important; /* Force a capo */
    margin-bottom: 4px;
    text-align: center !important;
  }
  
  /* Descriptive text: Centered, placed on a new line, rendered in pure white */
  /* Direct child combinator (li > span) ensures we target ONLY the description span, NOT the label span nested inside strong */
  .sim-bullet-list li > span:not(.bullet) {
    display: block !important; /* Force a capo */
    color: #ffffff !important; /* Pure white */
    font-size: 0.82rem;
    opacity: 0.9;
    text-align: center !important;
  }

  /* Color-coding only the bold labels (strong and its nested span) */
  /* 1. Emerald Green Label */
  .sim-bullet-list li:nth-child(1) strong,
  .sim-bullet-list li:nth-child(1) strong span {
    color: var(--emerald-primary) !important;
  }

  /* 2. Amber Orange Label */
  .sim-bullet-list li:nth-child(2) strong,
  .sim-bullet-list li:nth-child(2) strong span {
    color: var(--amber-primary) !important;
  }

  /* 3. Neon Pink Label */
  .sim-bullet-list li:nth-child(3) strong,
  .sim-bullet-list li:nth-child(3) strong span {
    color: var(--pink-primary) !important;
  }

  /* Exquisite mobile FAQ styling */
  .faq-container {
    gap: 12px;
  }

  .faq-item {
    padding: 16px 18px;
    border-radius: 20px;
  }

  .faq-question {
    font-size: 0.98rem;
    gap: 10px;
    line-height: 1.4;
  }

  .faq-arrow {
    font-size: 0.72rem;
  }

  .faq-answer p {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .faq-item.active .faq-answer {
    margin-top: 14px;
    max-height: 350px; /* Allow ample height for wrapped lines on narrow screens */
  }
}


/* Hamburger Menu Button */
.hamburger-btn {
  display: none;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: var(--transition-elastic);
  backdrop-filter: blur(10px);
  outline: none;
}

.hamburger-btn:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: var(--purple-primary);
  color: #fff;
}

@media (max-width: 768px) {
  .navbar {
    height: 80px !important;
    padding: 0 !important;
    position: fixed !important;
  }
  
  .nav-container {
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    width: 90% !important;
    gap: 0 !important;
  }

  .hamburger-btn {
    display: inline-flex !important;
  }

  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: rgba(2, 2, 5, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important;
    padding: 40px !important;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    z-index: 999;
  }

  .nav-links.nav-active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a {
    font-size: 1.25rem !important;
    font-weight: 600;
  }
  
  /* Make page containers have a stable top padding because navbar is fixed again */
  .premium-page-container, 
  .legal-page-container,
  .support-page-container {
    padding-top: 120px !important;
  }
}

/* Feature Pack Badges */
.feat-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  pointer-events: none;
  font-family: var(--font-sans);
}

.feat-badge.badge-base {
  border-color: rgba(16, 185, 129, 0.2);
  color: var(--emerald-primary);
  background: rgba(16, 185, 129, 0.03);
}

.feat-badge.badge-premium {
  border-color: rgba(167, 139, 250, 0.2);
  color: var(--purple-primary);
  background: rgba(167, 139, 250, 0.03);
}

/* Tabs for Features Section */
.features-tabs-container {
  width: 100%;
  margin-top: 40px;
}

.features-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  padding: 12px 24px;
  border-radius: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-elastic);
  backdrop-filter: blur(10px);
  font-family: var(--font-sans);
  font-size: 0.9rem;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.tab-btn.active {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  border-color: var(--purple-primary);
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.features-tab-panel {
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.features-tab-panel.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}




/* ==========================================================================
   BACK TO TOP BUTTON (Ultra-Premium Specular Glass)
   ========================================================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(6, 6, 15, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, color 0.3s ease;
  transform: translateY(15px);
  outline: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.back-to-top:hover {
  border-color: var(--purple-primary);
  color: #ffffff;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 35px rgba(167, 139, 250, 0.2), 0 0 15px rgba(167, 139, 250, 0.1);
}

.back-to-top-icon {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.back-to-top:hover .back-to-top-icon {
  transform: translateY(-2px);
}


/* ==========================================================================
   COOKIE CONSENT BANNER (Ultra-Premium Glassmorphic Slide-up)
   ========================================================================== */
.cookie-banner {
  position: fixed;
  bottom: -150px;
  left: 24px;
  right: 24px;
  background: rgba(6, 6, 15, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  color: var(--text-main);
  padding: 16px 28px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.5), 
    inset 0 1px 0px rgba(255, 255, 255, 0.05);
  z-index: 9998;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  font-family: var(--font-sans);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner.visible {
  bottom: 24px;
  opacity: 1;
  pointer-events: all;
}

.cookie-banner-content {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 70%;
}

.cookie-banner-content strong {
  color: #fff;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-elastic);
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.btn-cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.35);
}

.cookie-banner-link {
  color: var(--purple-primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition-elastic);
}

.cookie-banner-link:hover {
  color: #fff;
  text-shadow: 0 0 10px rgba(167, 139, 250, 0.4);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 20px;
    left: 16px;
    right: 16px;
  }
  .cookie-banner-content {
    max-width: 100%;
    font-size: 0.82rem;
  }
  .cookie-banner-actions {
    justify-content: flex-end;
    gap: 16px;
  }
}
