/* ═══════════════════════════════════════════════════════════════
   WayQuest — Website Styles
   Dark Adventure Theme — matching the app's #2E7D32 primary color
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --bg:          #0d1f0e;
  --bg-2:        #111f12;
  --bg-card:     rgba(255,255,255,0.04);
  --border:      rgba(255,255,255,0.08);
  --primary:     #2E7D32;
  --primary-light: #4CAF50;
  --accent:      #A5D6A7;
  --text:        #f0f0f0;
  --text-muted:  #8a9a8b;
  --glow:        rgba(76, 175, 80, 0.25);
  --glow-strong: rgba(76, 175, 80, 0.5);
  --radius:      16px;
  --radius-sm:   10px;
  --transition:  0.3s ease;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--primary-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent); }

/* ── Canvas particles ───────────────────────────────────────── */
#particles-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ── Navigation ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), backdrop-filter var(--transition);
}

nav.scrolled {
  background: rgba(13, 31, 14, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}

.nav-logo svg { color: var(--primary-light); }
.nav-logo img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: contain;
}

.lang-toggle {
  display: flex;
  gap: 0.2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.3rem;
}

.lang-btn {
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}

.lang-btn.active {
  background: var(--primary);
  color: white;
}

/* ── Sections ───────────────────────────────────────────────── */
section { position: relative; z-index: 1; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── HERO ───────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,125,50,0.18) 0%, transparent 70%);
  pointer-events: none;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76,175,80,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(76,175,80,0.1);
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: 99px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--primary-light);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 8px var(--primary-light);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 440px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 20px rgba(46,125,50,0.4);
}

.btn-primary:hover {
  background: var(--primary-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(76,175,80,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.3);
  color: var(--text);
  transform: translateY(-2px);
}

.btn.soon, .btn-primary.soon, .btn-outline.soon {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

.store-btn.soon {
  opacity: 0.5;
  cursor: default;
  pointer-events: none;
}

/* ── Phone Mockup ───────────────────────────────────────────── */
.phone-wrap {
  display: flex;
  justify-content: center;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}

.phone {
  width: 240px;
  height: 480px;
  background: #0a1a0b;
  border-radius: 36px;
  border: 2px solid rgba(76,175,80,0.3);
  position: relative;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 30px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(46,125,50,0.15);
  overflow: hidden;
}

.phone::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 22px;
  background: #0a1a0b;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.phone-screen {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #0d2e10 0%, #0a1a0b 40%, #0d1f2e 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding: 2rem 1.5rem;
}

.phone-map-dots {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.map-dot {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  animation: map-pulse 3s ease-in-out infinite;
}

.map-dot:nth-child(1) { top: 25%; left: 30%; background: #9C27B0; animation-delay: 0s; }
.map-dot:nth-child(2) { top: 40%; left: 65%; background: #2196F3; animation-delay: 0.5s; }
.map-dot:nth-child(3) { top: 60%; left: 45%; background: var(--primary-light); animation-delay: 1s; }
.map-dot:nth-child(4) { top: 35%; left: 50%; background: #FF9800; animation-delay: 1.5s; }
.map-dot:nth-child(5) { top: 70%; left: 25%; background: #F44336; animation-delay: 0.8s; }
.map-dot:nth-child(6) { top: 55%; left: 75%; background: #795548; animation-delay: 2s; }

@keyframes map-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 currentColor; opacity: 0.8; }
  50% { transform: scale(1.3); box-shadow: 0 0 0 6px rgba(255,255,255,0); opacity: 1; }
}

.phone-logo {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
}

.phone-tagline {
  position: relative;
  z-index: 1;
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.5px;
}

/* ── Scroll indicator ───────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── STATS ──────────────────────────────────────────────────── */
#stats {
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, transparent, rgba(46,125,50,0.04), transparent);
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--primary-light);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
}

/* ── FEATURES ───────────────────────────────────────────────── */
#features {
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}

.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: var(--radius);
}

.feature-card:hover { transform: translateY(-4px); border-color: rgba(76,175,80,0.3); }
.feature-card:hover::before { opacity: 1; }

.feature-card[data-color="map"]::before    { background: radial-gradient(circle at top left, rgba(33,150,243,0.06), transparent 60%); }
.feature-card[data-color="trophy"]::before { background: radial-gradient(circle at top left, rgba(255,152,0,0.06), transparent 60%); }
.feature-card[data-color="gps"]::before    { background: radial-gradient(circle at top left, rgba(76,175,80,0.06), transparent 60%); }
.feature-card[data-color="star"]::before   { background: radial-gradient(circle at top left, rgba(156,39,176,0.06), transparent 60%); }
.feature-card[data-color="medal"]::before  { background: radial-gradient(circle at top left, rgba(255,193,7,0.07), transparent 60%); }
.feature-card[data-color="rank"]::before   { background: radial-gradient(circle at top left, rgba(0,188,212,0.06), transparent 60%); }

/* Medal chips inside feature card */
.medal-chips {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.medal-chip {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
  letter-spacing: 0.3px;
  cursor: default;
}

.medal-chip.bronze  { background: rgba(121,85,72,0.2);  border: 1px solid rgba(188,143,68,0.5);  color: #CD853F; }
.medal-chip.silver  { background: rgba(150,150,160,0.15); border: 1px solid rgba(180,180,190,0.4); color: #C0C0C0; }
.medal-chip.gold    { background: rgba(255,193,7,0.12);  border: 1px solid rgba(255,193,7,0.4);   color: #FFD700; }
.medal-chip.diamond { background: rgba(0,188,212,0.12);  border: 1px solid rgba(0,188,212,0.4);   color: #00BCD4; }

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── MEDAL LEVELS ────────────────────────────────────────────── */
#medal-levels {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, transparent, rgba(46,125,50,0.03), transparent);
}

.section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.8rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.levels-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.level-card {
  text-align: center;
  padding: 2rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.level-card:hover { transform: translateY(-5px); }

.level-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  border-radius: 2px 2px 0 0;
}

.level-bronze  { background: rgba(121,85,72,0.08);  border-color: rgba(188,143,68,0.25);  box-shadow: 0 4px 20px rgba(121,85,72,0.1); }
.level-silver  { background: rgba(150,150,160,0.06); border-color: rgba(180,180,190,0.2);  box-shadow: 0 4px 20px rgba(150,150,160,0.1); }
.level-gold    { background: rgba(255,193,7,0.06);  border-color: rgba(255,193,7,0.25);   box-shadow: 0 4px 20px rgba(255,193,7,0.1); }
.level-diamond { background: rgba(0,188,212,0.06);  border-color: rgba(0,188,212,0.25);   box-shadow: 0 4px 30px rgba(0,188,212,0.15); }

.level-bronze::before  { background: linear-gradient(90deg, #8B6914, #CD853F); }
.level-silver::before  { background: linear-gradient(90deg, #9E9E9E, #E0E0E0); }
.level-gold::before    { background: linear-gradient(90deg, #F9A825, #FFD700); }
.level-diamond::before { background: linear-gradient(90deg, #0097A7, #00BCD4, #80DEEA); }

.level-icon {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
  display: block;
}

.level-name {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: 0.3px;
}

.level-bronze  .level-name { color: #CD853F; }
.level-silver  .level-name { color: #C0C0C0; }
.level-gold    .level-name { color: #FFD700; }
.level-diamond .level-name { color: #00BCD4; }

.level-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Phone rank chip */
.phone-rank-chip {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(76,175,80,0.15);
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: 99px;
  padding: 0.3rem 0.9rem;
  font-size: 0.6rem;
  color: var(--primary-light);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.rank-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 6px var(--primary-light);
  animation: pulse-dot 2s infinite;
}

/* ── QUEST TYPES ─────────────────────────────────────────────── */
#quest-types {
  padding: 5rem 2rem;
  background: linear-gradient(180deg, transparent, rgba(46,125,50,0.03), transparent);
}

.types-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0.5rem;
  scrollbar-width: none;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}

.type-chip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border-radius: 99px;
  border: 1px solid;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition);
  cursor: default;
}

.type-chip:hover { transform: translateY(-3px); filter: brightness(1.2); }

.type-chip.nature    { color: #A5D6A7; border-color: rgba(76,175,80,0.3);  background: rgba(76,175,80,0.1); }
.type-chip.culture   { color: #CE93D8; border-color: rgba(156,39,176,0.3); background: rgba(156,39,176,0.1); }
.type-chip.culinary  { color: #FFCC80; border-color: rgba(255,152,0,0.3);  background: rgba(255,152,0,0.1); }
.type-chip.secret    { color: #B0BEC5; border-color: rgba(96,125,139,0.3); background: rgba(96,125,139,0.1); }
.type-chip.urban     { color: #90CAF9; border-color: rgba(33,150,243,0.3); background: rgba(33,150,243,0.1); }
.type-chip.adventure { color: #EF9A9A; border-color: rgba(244,67,54,0.3);  background: rgba(244,67,54,0.1); }

/* ── HOW IT WORKS ────────────────────────────────────────────── */
#how-it-works {
  padding: 6rem 2rem;
}

.steps-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 2.2rem;
  left: calc(16.66% + 1rem);
  right: calc(16.66% + 1rem);
  height: 1px;
  background: linear-gradient(90deg, var(--primary), transparent 50%, var(--primary));
  opacity: 0.3;
}

.step {
  text-align: center;
  padding: 1.5rem;
}

.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 20px rgba(46,125,50,0.4);
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── DOWNLOAD ────────────────────────────────────────────────── */
#download {
  padding: 6rem 2rem;
}

.download-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(76,175,80,0.25);
  border-radius: 24px;
  padding: 3.5rem 2.5rem;
  box-shadow: 0 0 60px rgba(46,125,50,0.1);
  position: relative;
  overflow: hidden;
}

.download-box::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(46,125,50,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.download-title {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.download-sub {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.store-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.6rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  text-decoration: none;
}

.store-btn.play {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 20px rgba(46,125,50,0.35);
}

.store-btn.play:hover {
  background: var(--primary-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(76,175,80,0.5);
}

.store-btn.apple {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.15);
}

.store-btn.apple:hover {
  background: rgba(255,255,255,0.1);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.store-note {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  font-size: 0.88rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── Scroll animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Subpages (privacy / impressum) ─────────────────────────── */
.subpage-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.subpage-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.subpage-hero .subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.subpage-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.subpage-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 2.5rem 0 0.8rem;
  color: var(--accent);
}

.subpage-content h2:first-child { margin-top: 0; }

.subpage-content p,
.subpage-content li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.6rem;
}

.subpage-content ul { padding-left: 1.4rem; }

.subpage-content a { color: var(--primary-light); }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .levels-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .medal-chips { justify-content: center; }

  .phone-wrap { order: -1; }
  .phone { width: 190px; height: 380px; }

  .features-grid { grid-template-columns: 1fr; }
  .levels-grid   { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-links { flex-wrap: wrap; gap: 1rem; }

  nav { padding: 1rem 1.2rem; }
  .nav-logo img { width: 30px; height: 30px; border-radius: 6px; }
  .nav-logo { font-size: 1.1rem; gap: 0.4rem; }
}

@media (max-width: 480px) {
  .levels-grid { grid-template-columns: 1fr; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
}
