/* ==========================================================================
   Avtodrom24.uz - Ultra-Modern Automotive Dark Design System
   Neon Accents, Glassmorphism, Responsive Grid, Animated Telemetry
   ========================================================================== */

:root {
  --bg-dark: #070a12;
  --bg-darker: #04060a;
  --bg-card: rgba(15, 23, 42, 0.75);
  --bg-card-hover: rgba(22, 33, 58, 0.9);
  --border-glass: rgba(0, 229, 255, 0.2);
  --border-glass-hover: rgba(0, 229, 255, 0.6);
  
  --primary: #00e5ff;
  --primary-hover: #33ebff;
  --primary-glow: rgba(0, 229, 255, 0.35);
  
  --accent-green: #00e676;
  --accent-green-glow: rgba(0, 230, 118, 0.35);
  --accent-amber: #ffb300;
  --accent-amber-glow: rgba(255, 179, 0, 0.35);
  --accent-danger: #ff3d57;
  --accent-danger-glow: rgba(255, 61, 87, 0.4);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-sub: #cbd5e1;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: radial-gradient(circle at 85% 15%, rgba(0, 229, 255, 0.08) 0%, transparent 45%),
              radial-gradient(circle at 15% 85%, rgba(0, 230, 118, 0.06) 0%, transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-main);
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section {
  padding: 90px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(0, 229, 255, 0.1);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.3rem;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: var(--radius-pill);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #00b0ff 0%, #00e676 100%);
  color: #050d1a;
  box-shadow: 0 4px 20px var(--accent-green-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 230, 118, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--primary);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background: rgba(0, 229, 255, 0.15);
  transform: translateY(-2px);
}

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

.btn-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-xs {
  padding: 6px 14px;
  font-size: 0.75rem;
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 10, 18, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition-fast);
}

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

.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 1.8rem;
  filter: drop-shadow(0 0 10px var(--primary-glow));
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--text-main);
}

.logo-text .highlight {
  color: var(--primary);
}

.logo-text .domain {
  font-size: 0.8rem;
  color: var(--accent-green);
}

.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-fast);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(0, 229, 255, 0.08);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  user-select: none;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-heading);
  transition: var(--transition-fast);
}

.lang-switch-pill:hover {
  border-color: var(--primary);
  background: rgba(0, 229, 255, 0.1);
}

.lang-opt {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.lang-opt.active {
  color: var(--primary);
  text-shadow: 0 0 8px var(--primary-glow);
}

.lang-divider {
  color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero-section {
  padding: 80px 0 100px 0;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, rgba(0, 230, 118, 0.05) 50%, transparent 80%);
  filter: blur(80px);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: var(--accent-green);
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.3);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-green);
  animation: pulseAnim 2s infinite;
}

@keyframes pulseAnim {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 230, 118, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

.hero-title {
  font-size: 3.2rem;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 26px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

.hero-media {
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 229, 255, 0.15);
}

.hero-main-img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition-smooth);
}

.hero-image-wrapper:hover .hero-main-img {
  transform: scale(1.03);
}

.hero-floating-card {
  position: absolute;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid var(--border-glass-hover);
  backdrop-filter: blur(16px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  animation: floatCard 4s ease-in-out infinite alternate;
}

.hero-floating-card.top-card {
  top: 20px;
  left: -20px;
}

.hero-floating-card.bottom-card {
  bottom: 25px;
  right: -20px;
  animation-delay: 2s;
}

@keyframes floatCard {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}

.card-icon {
  font-size: 1.6rem;
}

.hero-floating-card strong {
  font-size: 0.9rem;
  color: var(--text-main);
  display: block;
}

.hero-floating-card p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Workflow Steps Section
   ========================================================================== */

.workflow-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.workflow-step-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.workflow-step-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 229, 255, 0.15);
}

.step-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(0, 229, 255, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
  margin-bottom: 16px;
}

.step-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.workflow-step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.workflow-step-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.step-footer-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-amber);
  background: rgba(255, 179, 0, 0.1);
  border: 1px solid rgba(255, 179, 0, 0.25);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.step-footer-tag.success {
  color: var(--accent-green);
  background: rgba(0, 230, 118, 0.1);
  border-color: rgba(0, 230, 118, 0.3);
}

/* ==========================================================================
   12 Exercises Section & Filters
   ========================================================================== */

.exercise-filter-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn:hover {
  background: rgba(0, 229, 255, 0.1);
  border-color: var(--primary);
  color: var(--text-main);
}

.filter-btn.active {
  background: var(--primary);
  color: #050d1a;
  border-color: var(--primary);
  box-shadow: 0 0 16px var(--primary-glow);
}

.exercises-banner-box {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid var(--border-glass);
}

.exercises-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-overlay-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(7, 10, 18, 0.95) 0%, rgba(7, 10, 18, 0.7) 60%, transparent 100%);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.banner-badge {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.banner-overlay-info p {
  font-size: 0.95rem;
  color: var(--text-sub);
  max-width: 900px;
}

.exercises-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.exercise-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.exercise-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-glass-hover);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 229, 255, 0.15);
}

.exercise-card.featured-card {
  border-color: rgba(0, 229, 255, 0.35);
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.85) 0%, rgba(10, 30, 50, 0.75) 100%);
}

.exercise-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.exercise-num {
  font-family: var(--font-mono);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary);
}

.category-pill {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.category-pill.basic {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.category-pill.maneuver {
  color: #a78bfa;
  background: rgba(167, 139, 250, 0.12);
  border: 1px solid rgba(167, 139, 250, 0.3);
}

.category-pill.parking {
  color: var(--accent-amber);
  background: rgba(255, 179, 0, 0.12);
  border: 1px solid rgba(255, 179, 0, 0.3);
}

.category-pill.complex {
  color: var(--accent-green);
  background: rgba(0, 230, 118, 0.12);
  border: 1px solid rgba(0, 230, 118, 0.3);
}

.exercise-info h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.exercise-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.exercise-specs {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spec-row {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.8rem;
}

.spec-label {
  color: var(--text-muted);
  font-weight: 700;
  white-space: nowrap;
}

.spec-val {
  color: var(--text-sub);
}

.spec-val.highlight {
  color: var(--accent-green);
}

.spec-val.highlight-danger {
  color: var(--accent-danger);
  font-weight: 800;
}

.penalty-tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ff9800;
  background: rgba(255, 152, 0, 0.1);
  border: 1px solid rgba(255, 152, 0, 0.3);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  margin-top: auto;
}

.penalty-tag.penalty-danger {
  color: var(--accent-danger);
  background: rgba(255, 61, 87, 0.12);
  border-color: rgba(255, 61, 87, 0.35);
}

.penalty-tag.penalty-critical {
  color: #ff1744;
  background: rgba(255, 23, 68, 0.2);
  border-color: #ff1744;
  font-weight: 900;
}

.penalty-tag.penalty-success {
  color: var(--accent-green);
  background: rgba(0, 230, 118, 0.12);
  border-color: rgba(0, 230, 118, 0.4);
}

/* ==========================================================================
   Interactive Calculator Section
   ========================================================================== */

.penalty-category-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.calc-tab-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition-fast);
}

.calc-tab-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text-main);
}

.calc-tab-btn.active {
  background: var(--primary);
  color: #050d1a;
  border-color: var(--primary);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 32px;
  align-items: start;
}

.calculator-options {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(10px);
}

.calc-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.calc-subheading {
  font-size: 1.15rem;
}

.calc-checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.calc-checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-fast);
  user-select: none;
  position: relative;
}

.calc-checkbox-label:hover {
  background: rgba(0, 229, 255, 0.06);
  border-color: rgba(0, 229, 255, 0.3);
}

.calc-check {
  display: none;
}

.custom-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.calc-check:checked + .custom-checkbox {
  background: var(--accent-danger);
  border-color: var(--accent-danger);
}

.calc-check:checked + .custom-checkbox::after {
  content: '✓';
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}

.calc-check:checked ~ .check-text {
  color: var(--accent-danger);
  font-weight: 600;
}

.check-text {
  font-size: 0.9rem;
  color: var(--text-sub);
  flex-grow: 1;
}

.points-badge {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.points-badge.p-5 {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
}

.points-badge.p-20 {
  color: #ffb300;
  background: rgba(255, 179, 0, 0.15);
}

.points-badge.p-25 {
  color: #ff7043;
  background: rgba(255, 112, 67, 0.15);
}

.points-badge.p-100 {
  color: #ff1744;
  background: rgba(255, 23, 68, 0.25);
  font-weight: 900;
}

.calculator-result-card {
  background: linear-gradient(160deg, rgba(15, 23, 42, 0.95) 0%, rgba(6, 18, 35, 0.95) 100%);
  border: 1px solid var(--border-glass-hover);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: sticky;
  top: 100px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 229, 255, 0.15);
}

.receipt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  padding-bottom: 12px;
}

.receipt-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
}

.live-clock {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.calculator-result-card h4 {
  font-size: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.score-display {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.score-number {
  font-family: var(--font-heading);
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--accent-green);
  transition: var(--transition-fast);
}

.score-number.fail {
  color: var(--accent-danger);
  animation: shakeNum 0.4s ease;
}

@keyframes shakeNum {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

.score-max {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-muted);
  font-weight: 700;
}

.score-meter-wrap {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 18px;
}

.score-meter-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-green) 0%, var(--accent-amber) 70%, var(--accent-danger) 100%);
  transition: width 0.3s ease;
}

.score-status-badge {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
  transition: var(--transition-fast);
}

.score-status-badge.pass {
  background: rgba(0, 230, 118, 0.15);
  color: var(--accent-green);
  border: 1px solid rgba(0, 230, 118, 0.4);
}

.score-status-badge.fail {
  background: rgba(255, 61, 87, 0.2);
  color: var(--accent-danger);
  border: 1px solid rgba(255, 61, 87, 0.5);
}

.receipt-details {
  width: 100%;
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.receipt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-sub);
}

.receipt-row strong {
  color: var(--text-main);
  font-family: var(--font-mono);
}

.score-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 22px;
}

/* ==========================================================================
   Voice Engine & Soundboard Section
   ========================================================================== */

.voice-board-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(12px);
}

.voice-board-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 22px;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}

.voice-indicator {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 22px;
}

.wave-bar {
  width: 4px;
  height: 6px;
  background: var(--primary);
  border-radius: 2px;
  transition: height 0.2s ease;
}

.voice-indicator.playing .wave-bar {
  animation: wavePulse 0.8s infinite ease-in-out alternate;
}

.voice-indicator.playing .wave-bar:nth-child(2) { animation-delay: 0.15s; }
.voice-indicator.playing .wave-bar:nth-child(3) { animation-delay: 0.3s; }
.voice-indicator.playing .wave-bar:nth-child(4) { animation-delay: 0.45s; }
.voice-indicator.playing .wave-bar:nth-child(5) { animation-delay: 0.6s; }

@keyframes wavePulse {
  0% { height: 4px; }
  100% { height: 22px; }
}

.voice-status-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-sub);
}

.voice-buttons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.voice-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 18px 14px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.voice-btn:hover {
  background: rgba(0, 229, 255, 0.08);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 229, 255, 0.15);
}

.voice-btn.warning-voice:hover {
  background: rgba(255, 179, 0, 0.1);
  border-color: var(--accent-amber);
  box-shadow: 0 8px 20px var(--accent-amber-glow);
}

.voice-btn.success-voice:hover {
  background: rgba(0, 230, 118, 0.1);
  border-color: var(--accent-green);
  box-shadow: 0 8px 20px var(--accent-green-glow);
}

.voice-btn.danger-voice:hover {
  background: rgba(255, 61, 87, 0.1);
  border-color: var(--accent-danger);
  box-shadow: 0 8px 20px var(--accent-danger-glow);
}

.v-icon {
  font-size: 1.6rem;
}

.v-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-main);
}

.v-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ==========================================================================
   Scenario Quiz Section
   ========================================================================== */

.quiz-container {
  max-width: 850px;
  margin: 0 auto;
}

.quiz-progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-bottom: 20px;
}

.quiz-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-green) 100%);
  transition: width 0.3s ease;
}

.quiz-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(12px);
}

.quiz-question-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.q-badge {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  background: rgba(0, 229, 255, 0.12);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.q-points {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-green);
}

.quiz-question-title {
  font-size: 1.35rem;
  margin-bottom: 24px;
  line-height: 1.5;
}

.quiz-options-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.quiz-opt-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  text-align: left;
  color: var(--text-sub);
  font-size: 0.95rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition-fast);
}

.quiz-opt-btn:hover:not(:disabled) {
  background: rgba(0, 229, 255, 0.08);
  border-color: var(--primary);
  color: var(--text-main);
  transform: translateX(4px);
}

.quiz-opt-btn.correct {
  background: rgba(0, 230, 118, 0.2);
  border-color: var(--accent-green);
  color: var(--accent-green);
  font-weight: 700;
}

.quiz-opt-btn.wrong {
  background: rgba(255, 61, 87, 0.2);
  border-color: var(--accent-danger);
  color: var(--accent-danger);
  font-weight: 700;
}

.quiz-explanation {
  display: none;
  background: rgba(0, 0, 0, 0.35);
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.6;
}

.quiz-actions {
  display: flex;
  justify-content: flex-end;
}

/* ==========================================================================
   Candidate Checklist Section
   ========================================================================== */

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.checklist-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(10px);
}

.checklist-card h3 {
  font-size: 1.2rem;
  margin-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 14px;
}

.check-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.custom-todo {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  cursor: pointer;
  user-select: none;
  font-size: 0.92rem;
  color: var(--text-sub);
  line-height: 1.5;
}

.todo-check {
  display: none;
}

.todo-box {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  flex-shrink: 0;
  margin-top: 2px;
}

.todo-check:checked + .todo-box {
  background: var(--accent-green);
  border-color: var(--accent-green);
}

.todo-check:checked + .todo-box::after {
  content: '✓';
  color: #050d1a;
  font-weight: 900;
  font-size: 0.8rem;
}

.todo-check:checked ~ span {
  text-decoration: line-through;
  color: var(--text-muted);
}

/* ==========================================================================
   Hardware Section
   ========================================================================== */

.hardware-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hardware-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.hardware-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.li-icon {
  width: 28px;
  height: 28px;
  background: rgba(0, 229, 255, 0.15);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

.hardware-features-list strong {
  font-size: 1rem;
  color: var(--text-main);
  display: block;
  margin-bottom: 4px;
}

.hardware-features-list p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hardware-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.hardware-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */

.faq-container {
  max-width: 900px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(0, 229, 255, 0.3);
}

.faq-item.active {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
}

.faq-chevron {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-card-box {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.85) 0%, rgba(6, 18, 35, 0.85) 100%);
  border: 1px solid var(--border-glass-hover);
  border-radius: var(--radius-lg);
  padding: 48px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.contact-header {
  max-width: 700px;
  margin: 0 auto 36px auto;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.contact-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.c-icon {
  font-size: 2rem;
  margin-bottom: 4px;
}

.contact-item strong {
  font-size: 0.9rem;
  color: var(--text-sub);
}

.contact-item p {
  font-size: 1.05rem;
  color: var(--primary);
  font-weight: 700;
}

.contact-item a {
  color: var(--primary);
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 70px 0 30px 0;
}

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

.footer-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 14px;
  max-width: 380px;
}

.footer-links-col h4, .footer-seo-col h4 {
  font-size: 1.05rem;
  margin-bottom: 18px;
  color: var(--text-main);
}

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

.footer-links-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links-col a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.seo-tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-tags-cloud span {
  font-size: 0.75rem;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

.footer-bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.made-with {
  color: var(--text-sub);
}

/* Custom Brand Button & Logo Styles */
.brand-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00AFCA;
  box-shadow: 0 0 16px rgba(0, 175, 202, 0.4);
}

.btn-header-game {
  background: linear-gradient(135deg, #00AFCA 0%, #1EB53A 100%) !important;
  color: #fff !important;
  font-weight: 800;
  border-radius: 12px;
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 0 18px rgba(0, 175, 202, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.btn-hero-game {
  background: linear-gradient(135deg, #00AFCA 0%, #1EB53A 100%) !important;
  padding: 16px 28px !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  border-radius: 14px !important;
  text-decoration: none !important;
  box-shadow: 0 10px 30px rgba(0, 175, 202, 0.4) !important;
  color: #fff !important;
}

.btn-hero-game:hover, .btn-header-game:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 175, 202, 0.55) !important;
}

/* ==========================================================================
   Hero Game Launcher Card & Big Play Button
   ========================================================================== */

.hero-game-launcher-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: rgba(15, 23, 42, 0.85);
  border: 2px solid rgba(0, 175, 202, 0.4);
  border-radius: 28px;
  padding: 28px 24px;
  text-decoration: none;
  overflow: hidden;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 175, 202, 0.25);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.hero-game-launcher-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: #00AFCA;
  box-shadow: 0 30px 60px -10px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 175, 202, 0.45);
}

.launcher-glow-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 175, 202, 0.12) 0%, transparent 60%);
  pointer-events: none;
  animation: pulseGlow 4s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: scale(0.95); opacity: 0.7; }
  100% { transform: scale(1.05); opacity: 1; }
}

.launcher-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.launcher-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 175, 202, 0.15);
  border: 1px solid rgba(0, 175, 202, 0.4);
  color: #38bdf8;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 6px 12px;
  border-radius: 9999px;
}

.launcher-badge .live-pulse {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: pulse 1.5s infinite;
}

.launcher-free-tag {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #000;
  font-size: 0.75rem;
  font-weight: 900;
  padding: 5px 12px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}

.launcher-centerpiece {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 20px 0;
  z-index: 2;
}

.launcher-wheel-img {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(0, 175, 202, 0.7);
  box-shadow: 0 0 30px rgba(0, 175, 202, 0.4);
  transition: transform 0.4s ease;
}

.hero-game-launcher-card:hover .launcher-wheel-img {
  transform: rotate(15deg) scale(1.04);
}

.big-play-btn-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #00AFCA 0%, #1EB53A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(0, 229, 255, 0.8), inset 0 0 10px rgba(255, 255, 255, 0.4);
  border: 3px solid #fff;
  transition: all 0.3s ease;
  animation: pulsePlay 2s infinite;
}

@keyframes pulsePlay {
  0% { box-shadow: 0 0 0 0 rgba(0, 175, 202, 0.7); }
  70% { box-shadow: 0 0 0 16px rgba(0, 175, 202, 0); }
  100% { box-shadow: 0 0 0 0 rgba(0, 175, 202, 0); }
}

.hero-game-launcher-card:hover .big-play-btn-circle {
  transform: translate(-50%, -50%) scale(1.15);
  background: linear-gradient(135deg, #38bdf8 0%, #34d399 100%);
}

.play-svg-icon {
  width: 32px;
  height: 32px;
  color: #fff;
  margin-left: 4px;
}

.launcher-title-area {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.launcher-main-title {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 6px;
  background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.launcher-sub-text {
  font-size: 0.85rem;
  color: #94a3b8;
}

.launcher-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.l-feat-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #cbd5e1;
}

.l-feat-icon {
  font-size: 1rem;
}

.launcher-action-btn {
  background: linear-gradient(135deg, #00AFCA 0%, #1EB53A 100%);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 14px;
  border-radius: 14px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 25px rgba(0, 175, 202, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.hero-game-launcher-card:hover .launcher-action-btn {
  background: linear-gradient(135deg, #38bdf8 0%, #34d399 100%);
  box-shadow: 0 12px 30px rgba(0, 175, 202, 0.55);
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .workflow-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .exercises-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .calculator-result-card {
    position: static;
  }

  .voice-buttons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .site-header {
    height: 68px;
  }

  .header-container {
    height: 68px;
    padding: 0 14px;
  }

  .brand-logo-img {
    width: 36px;
    height: 36px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .main-nav {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    background: rgba(7, 10, 18, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 175, 202, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    transform: translateY(-150%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .main-nav .nav-link {
    font-size: 1.05rem;
    padding: 8px 12px;
    width: 100%;
  }

  .header-actions {
    gap: 8px;
  }

  .lang-switch-pill {
    padding: 4px 8px;
    font-size: 0.72rem;
  }

  .btn-header-game {
    padding: 6px 12px;
    font-size: 0.78rem;
    border-radius: 10px;
  }

  .btn-header-auth {
    padding: 6px 10px;
    font-size: 0.78rem;
  }

  .btn-auth-text {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-section {
    padding: 40px 0 60px 0;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.25;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
    padding: 14px;
  }

  .stat-item .stat-num {
    font-size: 1.3rem;
  }

  .stat-item .stat-label {
    font-size: 0.75rem;
  }

  .stat-divider {
    display: none;
  }

  .hero-floating-card.top-card {
    left: 10px;
    top: 10px;
  }

  .hero-floating-card.bottom-card {
    right: 10px;
    bottom: 10px;
  }

  .workflow-steps-grid {
    grid-template-columns: 1fr;
  }

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

  .voice-buttons-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-info-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 480px) {
  .logo-text .domain {
    display: none;
  }

  .btn-game-text {
    display: none;
  }

  .btn-header-game {
    padding: 6px 8px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
