/* CSS Variables */
:root {
  /* Colors */
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --secondary: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;
  --success: #10b981;
  
  /* Neutral Colors */
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  
  /* Background */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  
  /* Text */
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-tertiary: #94a3b8;
  --text-light: #ffffff;
  
  /* Borders */
  --border-color: #e2e8f0;
  --border-hover: #cbd5e1;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Borders */
  --border-radius-sm: 0.25rem;
  --border-radius: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 0.75rem;
  --border-radius-xl: 1rem;
  --border-radius-2xl: 1.5rem;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition: 200ms ease;
  --transition-slow: 300ms ease;
}

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

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-secondary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.lock{
  overflow: hidden;
}
/* Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading-spinner {
  text-align: center;
  color: white;
}

.spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto var(--space-4);
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
  margin-bottom: var(--space-4);
  color: var(--text-secondary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--primary-dark);
}

.link {
  color: var(--primary);
  font-weight: 500;
  transition: color var(--transition-fast);
}

.link:hover {
  color: var(--primary-dark);
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-4);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
}

.section-header h2 {
  margin-bottom: var(--space-4);
}

.section-header p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-sm);
  font-weight: 500;
  border-radius: var(--border-radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  gap: var(--space-2);
  min-height: 44px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  border: none;
  box-shadow: var(--shadow);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
  color: var(--text-light);
}

.btn-outline {
  background: white;
  color: var(--primary);
  border: 1px solid var(--border-color);
}

.btn-outline:hover:not(:disabled) {
  background: var(--gray-50);
  border-color: var(--primary);
}

.btn-secondary {
  background: var(--gray-100);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--gray-200);
}

.btn-success {
  background: var(--success);
  color: white;
}

.btn-success:hover:not(:disabled) {
  background: var(--success);
  opacity: 0.9;
}

.btn-error {
  background: var(--error);
  color: white;
}

.btn-error:hover:not(:disabled) {
  background: var(--error);
  opacity: 0.9;
}

.btn-large {
  padding: var(--space-4) var(--space-8);
  font-size: var(--font-size-base);
  min-height: 52px;
}

.btn-small {
  padding: var(--space-2) var(--space-4);
  font-size: var(--font-size-xs);
  min-height: 36px;
}

.btn-full {
  width: 100%;
}

/* Forms */
.form-group {
  margin-bottom: var(--space-6);
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  font-size: var(--font-size-base);
  background: white;
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: var(--font-size-sm);
  gap: var(--space-2);
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
}

.form-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-6);
}

/* Cards */
.card {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-lg);
}

.card-header {
  padding: var(--space-6);
  border-bottom: 1px solid var(--border-color);
}

.card-body {
  padding: var(--space-6);
}

.card-footer {
  padding: var(--space-6);
  border-top: 1px solid var(--border-color);
  background: var(--gray-50);
}

/* Glass Card Effect */
.glass-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Notifications */
.notification-container {
  position: fixed;
  top: var(--space-6);
  right: var(--space-6);
  z-index: 9999;
  max-width: 400px;
}

.notification {
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: var(--space-4);
  overflow: hidden;
  transform: translateX(100%);
  transition: all var(--transition);
}

.notification.show {
  transform: translateX(0);
}

.notification-content {
  padding: var(--space-4);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.notification-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-1);
  margin-left: auto;
  color: var(--text-tertiary);
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

.notification-close:hover {
  background: var(--gray-100);
  color: var(--text-secondary);
}

.notification-success {
  border-left: 4px solid var(--success);
}

.notification-error {
  border-left: 4px solid var(--error);
}

.notification-warning {
  border-left: 4px solid var(--warning);
}

.notification-info {
  border-left: 4px solid var(--primary);
}

/* Landing Page */
.landing-page {
  min-height: 100vh;
}

/* Navigation */
.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-4) 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary);
}

.nav-brand i {
  font-size: 1.5em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.language-selector {
  position: relative;
}

.language-select {
  background: var(--gray-50);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: var(--space-2) var(--space-3);
  font-size: var(--font-size-sm);
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding: calc(80px + var(--space-24)) 0 var(--space-24);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="white" stop-opacity="0.1"/><stop offset="100%" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="10" cy="10" r="10" fill="url(%23a)"/><circle cx="90" cy="10" r="10" fill="url(%23a)"/></svg>') repeat;
  opacity: 0.1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
  position: relative;
}

.hero-text h1 {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: var(--space-6);
  color: white;
}

.highlight {
  background: linear-gradient(120deg, #a78bfa 0%, #ec4899 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.hero-text p {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-8);
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

.hero-stats {
  display: flex;
  gap: var(--space-8);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: white;
}

.stat-label {
  display: block;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-2xl);
  padding: var(--space-8);
  animation: float 6s ease-in-out infinite;
  max-width: 400px;
  width: 100%;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.waveform {
  display: flex;
  align-items: end;
  gap: var(--space-1);
  height: 80px;
  margin-bottom: var(--space-6);
}

.wave {
  background: linear-gradient(to top, #a78bfa, #ec4899);
  border-radius: var(--border-radius);
  animation: wave 1.5s ease-in-out infinite;
}

.wave:nth-child(1) { width: 4px; height: 20px; animation-delay: 0s; }
.wave:nth-child(2) { width: 4px; height: 40px; animation-delay: 0.1s; }
.wave:nth-child(3) { width: 4px; height: 60px; animation-delay: 0.2s; }
.wave:nth-child(4) { width: 4px; height: 40px; animation-delay: 0.3s; }
.wave:nth-child(5) { width: 4px; height: 30px; animation-delay: 0.4s; }

@keyframes wave {
  0%, 100% { height: 20px; }
  50% { height: 60px; }
}

.transcription-preview {
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  padding: var(--space-4);
  font-family: 'Courier New', monospace;
  font-size: var(--font-size-sm);
  color: white;
  min-height: 60px;
}

.cursor {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* Features Section */
.features {
  padding: var(--space-24) 0;
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.form-group__password{
  position: relative;

}
span.required {
  color: #c72020;
}
.icon-button{
  color: transparent;
  background: transparent;
  border: none;
  outline: none;
  display:flex;
  justify-content: center;
  align-items: center;
}
.icon-button.hover{
  cursor: pointer;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.feature-card {
  text-align: center;
  padding: var(--space-8);
  border-radius: var(--border-radius-lg);
  background: var(--bg-secondary);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-6);
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 2rem;
}

.feature-card h3 {
  margin-bottom: var(--space-4);
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
}

/* Pricing Section */
.pricing {
  padding: var(--space-24) 0;
  background: var(--bg-secondary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .pricing-grid {
    max-width: 900px;
  }
}

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

  .pricing-card:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

.pricing-card {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow);
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--border-radius-lg);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.pricing-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.pricing-header h3 {
  margin-bottom: var(--space-4);
}

.price {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--primary);
}

.price span {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
}

.pricing-features {
  list-style: none;
  /*margin-bottom: var(--space-8);*/
  margin-bottom: auto;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  color: var(--text-secondary);
}

.pricing-features i {
  color: var(--success);
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: white;
  padding: var(--space-16) 0 var(--space-8);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-16);
  margin-bottom: var(--space-8);
}

.footer-brand .nav-brand {
  color: white;
  margin-bottom: var(--space-4);
}

.footer-brand p {
  color: var(--gray-300);
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.footer-section h4 {
  color: white;
  margin-bottom: var(--space-4);
}

.footer-section a {
  display: block;
  color: var(--gray-300);
  margin-bottom: var(--space-2);
  transition: color var(--transition-fast);
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid var(--gray-700);
  padding-top: var(--space-8);
  text-align: center;
  color: var(--gray-400);
}

/* Auth Pages */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: var(--space-4);
}

.auth-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  width: 100%;
  background: white;
  border-radius: var(--border-radius-2xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.auth-card {
  padding: var(--space-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.auth-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-6);
}

.auth-header h1 {
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.auth-header p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.auth-form {
  margin-bottom: var(--space-6);
}

.auth-footer {
  text-align: center;
}

.auth-visual {
  background: var(--gradient-primary);
  padding: var(--space-12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.auth-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><radialGradient id="a" cx="50%" cy="50%" r="50%"><stop offset="0%" stop-color="white" stop-opacity="0.1"/><stop offset="100%" stop-color="white" stop-opacity="0"/></radialGradient></defs><circle cx="10" cy="10" r="10" fill="url(%23a)"/><circle cx="90" cy="10" r="10" fill="url(%23a)"/></svg>') repeat;
  opacity: 0.1;
}

.visual-content {
  text-align: center;
  position: relative;
}

.visual-content h2 {
  color: white;
  margin-bottom: var(--space-4);
}

.visual-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
}

.visual-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.visual-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255, 255, 255, 0.9);
}

.visual-feature i {
  color: #10b981;
}

.visual-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.visual-stat {
  text-align: center;
}

.visual-stat .stat-number {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: white;
}

.visual-stat .stat-label {
  display: block;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
}

.visual-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.visual-step {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.step-number {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
}

.step-text {
  color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: var(--font-size-3xl);
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .auth-container {
    grid-template-columns: 1fr;
  }
  
  .auth-visual {
    order: -1;
    padding: var(--space-6);
  }
  
  .auth-card {
    padding: var(--space-6);
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
  }
  
  .nav-links {
    flex-direction: column;
    gap: var(--space-2);
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }
  
  .container {
    padding: 0 var(--space-3);
  }
}

@media (max-width: 480px) {
  .hero {
    padding: calc(80px + var(--space-12)) 0 var(--space-12);
  }
  
  .hero-text h1 {
    font-size: var(--font-size-2xl);
  }
  
  .btn-large {
    padding: var(--space-3) var(--space-6);
    font-size: var(--font-size-sm);
  }
  
  .stat-number {
    font-size: var(--font-size-xl);
  }
  
  .floating-card {
    padding: var(--space-4);
  }
  
  .navbar .container {
    flex-direction: column;
    gap: var(--space-4);
  }
}

/* Language Selector Dropdown */
.language-selector {
  position: relative;
  display: inline-block;
}

.language-selector-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  min-width: 120px;
}

.language-selector-btn:hover {
  background: var(--gray-50);
  border-color: var(--primary);
}

.language-selector-btn:active {
  transform: scale(0.98);
}

.language-selector-btn:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.language-selector-btn .lang-flag {
  display: inline-block;
  width: 24px;
  height: 18px;
  border-radius: 2px;
  overflow: hidden;
  flex-shrink: 0;
}

.language-selector-btn .lang-flag.flag-icon {
  background-size: cover;
  background-position: center;
}

.language-selector-btn .lang-name {
  color: var(--text-primary);
  white-space: nowrap;
}

.language-selector-btn .lang-chevron {
  transition: transform var(--transition);
  color: var(--text-secondary);
  margin-left: auto;
}

.language-selector-btn:hover .lang-chevron {
  color: var(--text-primary);
}

.language-selector:has(.language-dropdown.open) .language-selector-btn .lang-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 200px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 6px 10px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: all 0.2s ease-out;
  z-index: 1000;
  overflow: hidden;
}

.language-dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: var(--font-size-sm);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.language-option:hover {
  background: var(--gray-50);
}

.language-option.active {
  background: var(--primary);
  color: white;
}

.language-option.active:hover {
  background: var(--primary);
}

.language-option.active .lang-name {
  font-weight: 600;
}

.language-option:first-child {
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
}

.language-option:last-child {
  border-radius: 0 0 var(--border-radius-md) var(--border-radius-md);
}

.language-option .lang-flag {
  display: inline-block;
  width: 28px;
  height: 21px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
}

.language-option .lang-flag.flag-icon {
  background-size: cover;
  background-position: center;
}

.language-option .lang-name {
  flex: 1;
  font-weight: 500;
}

.language-option .lang-check {
  margin-left: auto;
  font-weight: 700;
  font-size: 1rem;
  color: white;
}

red {
  color: var(--error);
}


/* HOVER */
.hover:hover {
  cursor: pointer;
}

@media (max-width: 768px) {
  .language-selector-btn {
    min-width: auto;
  }

  .language-selector-btn .lang-name {
    display: none;
  }

  .language-dropdown {
    right: 0;
    min-width: 180px;
  }
}