@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Dark Glassmorphic Theme Variables */
  --bg-app: radial-gradient(circle at top right, hsl(230, 40%, 10%), hsl(224, 25%, 5%));
  --bg-glass: rgba(15, 18, 30, 0.65);
  --bg-glass-hover: rgba(25, 30, 45, 0.75);
  --bg-glass-active: rgba(35, 40, 60, 0.85);
  
  --primary: hsl(262, 82%, 65%);
  --primary-hover: hsl(262, 85%, 72%);
  --primary-glow: rgba(139, 92, 246, 0.25);
  
  --accent: hsl(316, 75%, 62%);
  --accent-glow: rgba(236, 72, 153, 0.2);
  
  --text-primary: hsl(210, 40%, 98%);
  --text-secondary: hsl(211, 20%, 78%);
  --text-muted: hsl(211, 15%, 55%);
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --border-focus: hsla(262, 82%, 65%, 0.4);
  
  --success: hsl(142, 72%, 55%);
  --success-glow: rgba(34, 197, 94, 0.15);
  --warning: hsl(38, 92%, 58%);
  --warning-glow: rgba(245, 158, 11, 0.15);
  --danger: hsl(350, 82%, 60%);
  --danger-glow: rgba(239, 68, 68, 0.15);
  
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  --glass-blur: blur(16px);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-family: 'Outfit', sans-serif;
}

/* Global Reset & Base */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background: var(--bg-app);
  background-attachment: fixed;
  color: var(--text-primary);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Scrollbars */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.2);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Typography elements */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Grid & Utilities */
.grid {
  display: grid;
  gap: 32px;
}
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* Glassmorphic Components */
.glass-card {
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--glass-shadow);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Header Navbar */
header.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 12, 22, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

header.main-header.scrolled {
  background: rgba(10, 12, 22, 0.85);
  border-bottom-color: var(--border-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.logo-icon svg {
  width: 18px;
  height: 18px;
}

.logo-text {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.logo-text span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

nav.nav-menu {
  display: none;
}

@media (min-width: 900px) {
  nav.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
  }
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: var(--transition-smooth);
}
.nav-link:hover {
  color: var(--text-primary);
}
.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

@media (min-width: 900px) {
  .header-actions {
    display: flex;
  }
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  white-space: nowrap;
  user-select: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 4px 15px var(--primary-glow);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-toggle svg {
  width: 26px;
  height: 26px;
}

@media (min-width: 900px) {
  .mobile-toggle {
    display: none;
  }
}

/* Mobile Drawer Overlay */
.drawer-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(12, 14, 25, 0.95);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--border-color);
  z-index: 1001;
  padding: 40px 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.drawer-menu.open {
  right: 0;
}

.drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
}
.drawer-close svg {
  width: 24px;
  height: 24px;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.drawer-links .nav-link {
  font-size: 1.1rem;
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

/* Hero Section */
.hero-section {
  padding: 160px 0 80px 0;
  position: relative;
  overflow: hidden;
}

/* Background glowing orbs */
.glow-orb {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  background: var(--primary);
  top: 10%;
  right: -5%;
}
.orb-2 {
  background: var(--accent);
  bottom: 10%;
  left: -5%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(234, 179, 8, 0.08);
  border: 1px solid rgba(234, 179, 8, 0.25);
  color: #fbbf24;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: 0 4px 15px rgba(234, 179, 8, 0.05);
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.15;
}

@media (min-width: 600px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
}

.text-gradient {
  background: linear-gradient(135deg, var(--text-primary), rgba(255, 255, 255, 0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-gradient-neon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.cta-subtext {
  font-size: 0.82rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-subtext svg {
  width: 14px;
  height: 14px;
  color: var(--success);
}

/* Floating CSS Mockup */
.mockup-container {
  position: relative;
  width: 100%;
  height: 380px;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (min-width: 900px) {
  .mockup-container {
    height: 480px;
  }
}

.mockup-base {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 340px;
  transform: rotateX(12deg) rotateY(-18deg) rotateZ(3deg);
  transform-style: preserve-3d;
  animation: floating 6s infinite ease-in-out;
}

@keyframes floating {
  0% { transform: rotateX(12deg) rotateY(-18deg) rotateZ(3deg) translateY(0); }
  50% { transform: rotateX(12deg) rotateY(-18deg) rotateZ(3deg) translateY(-15px); }
  100% { transform: rotateX(12deg) rotateY(-18deg) rotateZ(3deg) translateY(0); }
}

.mockup-widget {
  position: absolute;
  width: 250px;
  padding: 16px;
  background: rgba(18, 22, 38, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}

.mockup-widget:hover {
  transform: translateZ(25px) scale(1.03);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Position widgets in 3D layered space */
.widget-schedule {
  top: 10%;
  left: 0%;
  z-index: 2;
}
.widget-metrics {
  bottom: 12%;
  right: -5%;
  z-index: 3;
  width: 220px;
}
.widget-toast {
  top: 40%;
  right: -10%;
  z-index: 4;
  width: 240px;
  border-left: 4px solid var(--success);
  box-shadow: 0 10px 30px var(--success-glow), var(--glass-shadow);
}

.widget-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 8px;
}
.widget-header h4 {
  font-size: 0.85rem;
  font-weight: 700;
}
.widget-header svg {
  width: 14px;
  height: 14px;
  color: var(--primary);
}

.widget-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.widget-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  font-size: 0.72rem;
}
.widget-item .title {
  font-weight: 600;
}
.widget-item .time {
  color: var(--text-muted);
}
.widget-item .badge {
  padding: 2px 6px;
  font-size: 0.62rem;
  font-weight: 700;
  border-radius: 4px;
  text-transform: uppercase;
}
.badge-online {
  background: var(--success-glow);
  color: var(--success);
}
.badge-in-person {
  background: var(--warning-glow);
  color: var(--warning);
}

.metric-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.metric-row span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}
.metric-row h3 {
  font-size: 1.4rem;
  font-weight: 800;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 600;
}
.toast-icon {
  color: var(--success);
}
.toast-icon svg {
  width: 16px;
  height: 16px;
}

/* Feature Section */
.section {
  padding: 80px 0;
  position: relative;
}

.section-title-area {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 56px auto;
}

.section-title-area h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
@media (min-width: 600px) {
  .section-title-area h2 {
    font-size: 2.5rem;
  }
}
.section-title-area p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.features-grid .glass-card {
  padding: 32px;
}

.feat-icon-container {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}
.glass-card:hover .feat-icon-container {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px var(--primary-glow);
  transform: scale(1.05);
}

.feat-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feat-desc {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Custom icon accent for each card */
.glass-card:nth-child(2) .feat-icon-container {
  background: rgba(236, 72, 153, 0.08);
  border-color: rgba(236, 72, 153, 0.2);
  color: var(--accent);
}
.glass-card:nth-child(2):hover .feat-icon-container {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.glass-card:nth-child(3) .feat-icon-container {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.2);
  color: var(--success);
}
.glass-card:nth-child(3):hover .feat-icon-container {
  background: var(--success);
  color: white;
  box-shadow: 0 4px 15px var(--success-glow);
}

/* Pricing Section */
.pricing-section {
  padding: 80px 0;
  position: relative;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.pricing-header {
  display: flex;
  flex-direction: column;
}

.plan-trial-badge {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: var(--success);
  margin-bottom: 16px;
}

.plan-name {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
  height: 40px;
}

.plan-price-block {
  display: flex;
  align-items: baseline;
  margin-top: 8px;
}

.price-currency {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
}

.price-value {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 6px;
}

.pricing-features-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
}

.feat-bullet {
  color: var(--primary);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.feat-bullet svg {
  width: 16px;
  height: 16px;
}

.pricing-card.popular {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(236, 72, 153, 0.05) 0%, rgba(15, 18, 30, 0.75) 100%);
  animation: neonGlowPulse 4s infinite alternate ease-in-out;
}

.popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: white;
  box-shadow: 0 4px 10px var(--accent-glow);
}

.popular .feat-bullet {
  color: var(--accent);
}

@keyframes neonGlowPulse {
  0% {
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 0 10px rgba(236, 72, 153, 0.05);
  }
  100% {
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5), 0 0 25px rgba(236, 72, 153, 0.2);
  }
}

.plan-btn {
  width: 100%;
  margin-top: auto;
  border-radius: var(--radius-sm);
  padding: 12px 0;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  position: relative;
}

.faq-container {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  background: var(--bg-glass-hover);
  border-color: var(--border-hover);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-arrow {
  color: var(--text-muted);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  align-items: center;
}
.faq-arrow svg {
  width: 18px;
  height: 18px;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), padding 0.4s ease;
  padding: 0 24px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  padding: 0 24px 20px 24px;
}

/* Call to Action Banner */
.cta-section {
  padding: 80px 0;
  position: relative;
}

.cta-banner {
  padding: 56px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.08) 0%, rgba(236, 72, 153, 0.08) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
@media (min-width: 600px) {
  .cta-banner h2 {
    font-size: 2.8rem;
  }
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Footer styling */
footer.main-footer {
  padding: 56px 0 32px 0;
  border-top: 1px solid var(--border-color);
  background: rgba(10, 12, 22, 0.6);
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
}

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

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition-smooth);
}
.footer-links a:hover {
  color: var(--text-primary);
  transform: translateX(2px);
}

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

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom span {
  color: var(--primary);
  font-weight: 600;
}

/* Language Dropdown Selector (Premium Glassmorphism) */
.lang-dropdown {
  position: relative;
  display: inline-block;
  margin-right: 8px;
}

.lang-dropdown-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.lang-dropdown-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-hover);
}

.lang-dropdown-btn .arrow-icon {
  width: 14px;
  height: 14px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.lang-dropdown.open .lang-dropdown-btn .arrow-icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.lang-dropdown-content {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(15, 18, 30, 0.95);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  box-shadow: var(--glass-shadow);
  min-width: 130px;
  display: none;
  flex-direction: column;
  padding: 6px;
  z-index: 1010;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.lang-dropdown.open .lang-dropdown-content {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.lang-option {
  padding: 8px 12px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: 6px;
  transition: var(--transition-smooth);
  text-align: left;
  display: block;
}

.lang-option:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.lang-option.active {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-weight: 600;
}

/* Mobile Language Switcher (within drawer) */
.drawer-lang-selector {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 4px;
  gap: 4px;
  margin-top: 16px;
}

.drawer-lang-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  padding: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-family);
  transition: var(--transition-smooth);
  text-align: center;
  display: block;
}

.drawer-lang-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.02);
}

.drawer-lang-btn.active {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 4px 15px var(--primary-glow);
}

