/**
 * Modern Landing Page Styles
 * Flashy, animated, commercial design for MyCompanyDesk
 */

/* ============================================
 * CSS CUSTOM PROPERTIES FOR LANDING
 * ============================================ */
:root {
  --landing-gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --landing-gradient-2: linear-gradient(135deg, #00c6fb 0%, #005bea 100%);
  --landing-gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --landing-gradient-4: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --landing-gradient-hero: linear-gradient(135deg, #0a0a1a 0%, #1a1a3e 50%, #0f0f2d 100%);
  --landing-accent: #00d4ff;
  --landing-accent-2: #7c3aed;
  --landing-accent-3: #f59e0b;
  --landing-glow: 0 0 40px rgba(0, 212, 255, 0.3);
  --landing-glow-purple: 0 0 40px rgba(124, 58, 237, 0.3);
  --landing-transition: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
 * KEYFRAME ANIMATIONS
 * ============================================ */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 212, 255, 0.4); }
  50% { box-shadow: 0 0 40px rgba(0, 212, 255, 0.8); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

@keyframes bounce-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

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

@keyframes particle-float {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* ============================================
 * MODERN NAVIGATION BAR
 * ============================================ */
.landing-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background: rgba(10, 10, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 1000;
  transition: all 0.3s var(--landing-transition);
}

.landing-nav.scrolled {
  background: rgba(10, 10, 26, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.landing-nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.landing-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.landing-nav-logo {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

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

.landing-nav-title {
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #fff 0%, var(--landing-accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.landing-nav-link {
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.25s ease;
  position: relative;
}

.landing-nav-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.landing-nav-link.active {
  color: var(--landing-accent);
  background: rgba(0, 212, 255, 0.1);
}

.landing-nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ============================================
 * LANGUAGE SELECTOR
 * ============================================ */
.language-selector {
  display: flex;
  align-items: center;
  /* Reserve space to prevent layout shift when JS populates the select */
  min-width: 90px;
  min-height: 38px;
}

.language-select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' 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: 32px;
}

.language-select:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
}

.language-select:focus {
  outline: none;
  border-color: var(--landing-accent);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.language-select option {
  background: #1a1a3e;
  color: #fff;
  padding: 8px;
}

/* Mobile language selector */
.nav-mobile-drawer .language-selector {
  padding: 12px 0;
}

.nav-mobile-drawer .language-select {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
}

/* ============================================
 * MODERN BUTTONS
 * ============================================ */
.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s var(--landing-transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.landing-btn-primary {
  background: linear-gradient(135deg, var(--landing-accent) 0%, #0099cc 100%);
  color: #000;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
}

.landing-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
}

.landing-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.landing-btn-primary:hover::before {
  transform: translateX(100%);
}

.landing-btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.landing-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.landing-btn-large {
  padding: 16px 40px;
  font-size: 17px;
}

.landing-btn-icon {
  font-size: 1.2em;
}

/* ============================================
 * HERO SECTION
 * ============================================ */
.landing-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  background: var(--landing-gradient-hero);
  overflow: hidden;
}

.landing-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -25%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.12) 0%, transparent 70%);
  animation: rotate-slow 60s linear infinite;
}

.landing-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.1) 0%, transparent 60%);
  animation: rotate-slow 80s linear infinite reverse;
}

.landing-hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.landing-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(0, 212, 255, 0.6);
  border-radius: 50%;
  animation: particle-float 15s linear infinite;
}

.landing-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 20s; }
.landing-particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.landing-particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 22s; }
.landing-particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 17s; }
.landing-particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 21s; }
.landing-particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 19s; }
.landing-particle:nth-child(7) { left: 70%; animation-delay: 2.5s; animation-duration: 23s; }
.landing-particle:nth-child(8) { left: 80%; animation-delay: 0.5s; animation-duration: 16s; }
.landing-particle:nth-child(9) { left: 90%; animation-delay: 3.5s; animation-duration: 20s; }
.landing-particle:nth-child(10) { left: 15%; animation-delay: 4.5s; animation-duration: 18s; }

.landing-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.landing-hero-content {
  animation: slide-in-left 1s var(--landing-transition);
}

.landing-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.25);
  border-radius: 50px;
  color: var(--landing-accent);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.landing-hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--landing-accent);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
}

.landing-hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
}

.landing-hero-title-gradient {
  background: linear-gradient(135deg, var(--landing-accent) 0%, #a855f7 50%, #ec4899 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s ease infinite;
}

.landing-hero-subtitle {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 540px;
}

.landing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.landing-hero-stats {
  display: flex;
  gap: 48px;
}

.landing-hero-stat {
  text-align: left;
}

.landing-hero-stat-value {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 4px;
}

.landing-hero-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Hero visual / screenshot */
.landing-hero-visual {
  position: relative;
  animation: slide-in-right 1s var(--landing-transition);
}

.landing-hero-screenshot {
  width: 100%;
  border-radius: 20px;
  box-shadow: 
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
  transition: transform 0.4s ease;
}

.landing-hero-screenshot:hover {
  transform: scale(1.02);
}

.landing-hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(0, 212, 255, 0.2) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* ============================================
 * FEATURE SECTIONS
 * ============================================ */
.landing-section {
  padding: 120px 24px;
  position: relative;
}

.landing-section-dark {
  background: #0a0a1a;
}

.landing-section-gradient {
  background: linear-gradient(180deg, #0a0a1a 0%, #1a1a3e 100%);
}

.landing-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.landing-section-header {
  text-align: center;
  margin-bottom: 64px;
  animation: slide-up 0.8s var(--landing-transition);
}

.landing-section-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 20px;
  color: #a855f7;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.landing-section-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.landing-section-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Feature Grid */
.landing-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.landing-feature-card {
  position: relative;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.4s var(--landing-transition);
  overflow: hidden;
}

.landing-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--landing-accent), var(--landing-accent-2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.landing-feature-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(0, 212, 255, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.landing-feature-card:hover::before {
  opacity: 1;
}

.landing-feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 28px;
}

.landing-feature-icon-blue {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 212, 255, 0.05) 100%);
  color: var(--landing-accent);
}

.landing-feature-icon-purple {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(124, 58, 237, 0.05) 100%);
  color: #a855f7;
}

.landing-feature-icon-orange {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(245, 158, 11, 0.05) 100%);
  color: #f59e0b;
}

.landing-feature-icon-green {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(16, 185, 129, 0.05) 100%);
  color: #10b981;
}

.landing-feature-icon-pink {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(236, 72, 153, 0.05) 100%);
  color: #ec4899;
}

.landing-feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.landing-feature-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

/* ============================================
 * SCREENSHOT SHOWCASE
 * ============================================ */
.landing-showcase {
  padding: 120px 24px;
  background: linear-gradient(180deg, #1a1a3e 0%, #0a0a1a 100%);
  overflow: hidden;
}

.landing-showcase-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.landing-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  align-items: center;
}

.landing-showcase-content {
  animation: slide-in-left 0.8s var(--landing-transition);
}

.landing-showcase-visual {
  position: relative;
  animation: slide-in-right 0.8s var(--landing-transition);
}

.landing-showcase-image {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease;
}

.landing-showcase-image:hover {
  transform: scale(1.03) rotate(-1deg);
}

.landing-showcase-title {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.landing-showcase-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 32px;
}

.landing-showcase-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.landing-showcase-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-showcase-list li:last-child {
  border-bottom: none;
}

.landing-showcase-check {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--landing-accent) 0%, #0099cc 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 14px;
  flex-shrink: 0;
}

/* ============================================
 * STATISTICS SECTION
 * ============================================ */
.landing-stats-section {
  padding: 100px 24px;
  background: linear-gradient(135deg, var(--landing-accent-2) 0%, #1a1a3e 100%);
  position: relative;
  overflow: hidden;
}

.landing-stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.landing-stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.landing-stat-item {
  text-align: center;
  animation: scale-in 0.6s var(--landing-transition);
}

.landing-stat-value {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.landing-stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ============================================
 * TESTIMONIALS / SOCIAL PROOF
 * ============================================ */
.landing-testimonials {
  padding: 120px 24px;
  background: #0a0a1a;
}

.landing-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.landing-testimonial-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.landing-testimonial-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.landing-testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #f59e0b;
  font-size: 18px;
}

.landing-testimonial-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  font-style: italic;
}

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

.landing-testimonial-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--landing-accent) 0%, var(--landing-accent-2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.landing-testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.landing-testimonial-role {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
 * CTA SECTION
 * ============================================ */
.landing-cta {
  padding: 120px 24px;
  background: linear-gradient(180deg, #0a0a1a 0%, #1a1a3e 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.landing-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 60%);
}

.landing-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.landing-cta-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
}

.landing-cta-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  line-height: 1.7;
}

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

/* ============================================
 * FOOTER
 * ============================================ */
.landing-footer {
  padding: 80px 24px 40px;
  background: #0a0a1a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.landing-footer-brand p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 300px;
}

.landing-footer-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

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

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

.landing-footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.landing-footer-links a:hover {
  color: var(--landing-accent);
}

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

.landing-footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.landing-footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
}

.landing-footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}

.landing-footer-legal a:hover {
  color: var(--landing-accent);
}

/* Footer language selector */
.landing-footer-legal .language-selector {
  margin-right: 8px;
}

.landing-footer-legal .language-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
  padding-right: 28px;
  font-size: 13px;
  border-radius: 6px;
}

/* ============================================
 * RESPONSIVE DESIGN
 * ============================================ */
@media (max-width: 1024px) {
  .landing-hero-inner {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .landing-hero-content {
    order: 1;
  }
  
  .landing-hero-visual {
    order: 2;
  }
  
  .landing-hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  
  .landing-hero-actions {
    justify-content: center;
  }
  
  .landing-hero-stats {
    justify-content: center;
  }
  
  .landing-showcase-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .landing-showcase-list li {
    justify-content: center;
  }
  
  .landing-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .landing-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .landing-nav-links {
    display: none;
  }
  
  .landing-hero {
    padding: 100px 16px 60px;
    min-height: auto;
  }
  
  .landing-hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .landing-hero-stat {
    text-align: center;
  }
  
  .landing-section {
    padding: 80px 16px;
  }
  
  .landing-features-grid {
    grid-template-columns: 1fr;
  }
  
  .landing-showcase-grid {
    grid-template-columns: 1fr;
  }
  
  .landing-stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .landing-testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .landing-footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .landing-footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .landing-btn-large {
    padding: 14px 28px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .landing-hero-title {
    font-size: 28px;
  }
  
  .landing-hero-subtitle {
    font-size: 16px;
  }
  
  .landing-hero-actions {
    flex-direction: column;
  }
  
  .landing-btn {
    width: 100%;
  }
  
  .landing-feature-card {
    padding: 24px;
  }
  
  .landing-cta-buttons {
    flex-direction: column;
  }
}

/* ============================================
 * SCROLL ANIMATIONS (using Intersection Observer)
 * Progressive enhancement: elements are visible by default
 * and animate in when JS is available
 * ============================================ */
.landing-animate {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* When JS is ready, hide elements initially */
.js-ready .landing-animate {
  opacity: 0;
  transform: translateY(30px);
}

.js-ready .landing-animate.visible,
.landing-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-animate-delay-1 { transition-delay: 0.1s; }
.landing-animate-delay-2 { transition-delay: 0.2s; }
.landing-animate-delay-3 { transition-delay: 0.3s; }
.landing-animate-delay-4 { transition-delay: 0.4s; }
.landing-animate-delay-5 { transition-delay: 0.5s; }

/* ============================================
 * COOKIE CONSENT BANNER
 * ============================================ */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  padding: 16px;
  background: linear-gradient(180deg, rgba(15, 15, 35, 0.95) 0%, rgba(10, 10, 26, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.cookie-consent-banner.cookie-consent-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-consent-banner.cookie-consent-hiding {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 280px;
}

.cookie-consent-text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-consent-link {
  color: var(--landing-accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.cookie-consent-link:hover {
  color: #fff;
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-consent-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.cookie-consent-btn-primary {
  background: linear-gradient(135deg, var(--landing-accent) 0%, #00a3cc 100%);
  color: #000;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.cookie-consent-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 212, 255, 0.4);
}

.cookie-consent-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-consent-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 640px) {
  .cookie-consent-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-consent-actions {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-consent-btn {
    flex: 1;
    max-width: 160px;
  }
}
