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

:root {
  --orange-primary: #FF6B00;
  --orange-light: #FF8A3D;
  --orange-dark: #E55800;
  --orange-glow: #FF9F5A;
  --bg-dark: #0A0A0F;
  --bg-card: rgba(255,255,255,0.04);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.65);
  --gradient-fire: linear-gradient(135deg, #FF6B00, #FF2D55);
  --gradient-ocean: linear-gradient(135deg, #00C6FF, #0072FF);
  --gradient-aurora: linear-gradient(135deg, #7B2FF7, #C471F5);
  --gradient-mint: linear-gradient(135deg, #00D2A0, #00B4D8);
  --gradient-sunset: linear-gradient(135deg, #FF6B6B, #FFA07A);
  --gradient-neon: linear-gradient(135deg, #F72585, #B5179E);
  --gradient-gold: linear-gradient(135deg, #FFD700, #FF8C00);
  --gradient-lime: linear-gradient(135deg, #A8E063, #56AB2F);
  --gradient-cosmic: linear-gradient(135deg, #667eea, #764ba2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', sans-serif;
  background: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== NOISE TEXTURE OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ===== ANIMATED BACKGROUND BLOBS ===== */
.bg-blobs {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: blobFloat 20s ease-in-out infinite;
}
.blob-1 { width: 600px; height: 600px; background: #FF6B00; top: -10%; left: -5%; animation-delay: 0s; }
.blob-2 { width: 500px; height: 500px; background: #FF2D55; top: 30%; right: -10%; animation-delay: -7s; }
.blob-3 { width: 450px; height: 450px; background: #7B2FF7; bottom: -5%; left: 20%; animation-delay: -14s; }
.blob-4 { width: 350px; height: 350px; background: #00C6FF; top: 60%; left: -8%; animation-delay: -3s; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(60px, -40px) scale(1.1); }
  50% { transform: translate(-30px, 60px) scale(0.95); }
  75% { transform: translate(40px, 30px) scale(1.05); }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--orange-primary); border-radius: 3px; }

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  background: rgba(10,10,15,0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.4s;
}
.logo {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  cursor: pointer;
  text-decoration: none;
}
.logo span {
  -webkit-text-fill-color: white;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gradient-fire);
  transition: width 0.3s;
  border-radius: 2px;
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  padding: 10px 28px;
  background: var(--gradient-fire);
  border: none;
  border-radius: 50px;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(255,107,0,0.3);
  text-decoration: none;
  display: inline-block;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255,107,0,0.5);
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
}
.menu-toggle span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}
.lang-switcher-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text-secondary);
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.lang-switcher-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.lang-switcher-btn .lang-flag {
  font-size: 16px;
  line-height: 1;
}
.lang-switcher-btn .lang-arrow {
  font-size: 10px;
  transition: transform 0.3s;
}
.lang-switcher.open .lang-arrow {
  transform: rotate(180deg);
}
.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 160px;
  background: rgba(10,10,15,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px;
  z-index: 1002;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.lang-switcher.open .lang-dropdown {
  display: block;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.lang-option:hover {
  background: rgba(255,107,0,0.1);
  color: #fff;
}
.lang-option.active {
  color: var(--orange-light);
  font-weight: 600;
}
.lang-option .lang-flag {
  font-size: 18px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 80px;
  z-index: 1;
}
.hero-content { max-width: 900px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--orange-light);
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--orange-primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 10px;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, #FF6B00, #FF2D55, #FF8A3D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: gradientShift 4s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-claim {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 700;
  color: var(--orange-light);
  margin-bottom: 28px;
  letter-spacing: -0.5px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
.hero-claim em {
  font-style: italic;
  background: linear-gradient(135deg, #FFD700, #FF6B00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.btn-primary {
  padding: 16px 40px;
  background: var(--gradient-fire);
  border: none;
  border-radius: 60px;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(255,107,0,0.35);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255,107,0,0.5);
}
.btn-secondary {
  padding: 16px 40px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 60px;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* ===== FLOATING EQUALIZER ===== */
.equalizer {
  display: flex;
  gap: 4px;
  align-items: flex-end;
  height: 40px;
  margin: 50px auto 0;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}
.eq-bar {
  width: 4px;
  border-radius: 4px;
  animation: eqBounce 1.2s ease-in-out infinite;
}
.eq-bar:nth-child(1) { height: 20px; background: #FF6B00; animation-delay: 0s; }
.eq-bar:nth-child(2) { height: 30px; background: #FF2D55; animation-delay: 0.1s; }
.eq-bar:nth-child(3) { height: 15px; background: #7B2FF7; animation-delay: 0.2s; }
.eq-bar:nth-child(4) { height: 35px; background: #00C6FF; animation-delay: 0.3s; }
.eq-bar:nth-child(5) { height: 25px; background: #FFD700; animation-delay: 0.15s; }
.eq-bar:nth-child(6) { height: 18px; background: #00D2A0; animation-delay: 0.25s; }
.eq-bar:nth-child(7) { height: 32px; background: #FF6B6B; animation-delay: 0.05s; }
.eq-bar:nth-child(8) { height: 22px; background: #F72585; animation-delay: 0.35s; }
.eq-bar:nth-child(9) { height: 28px; background: #A8E063; animation-delay: 0.2s; }
@keyframes eqBounce {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* ===== SECTION STYLING ===== */
section {
  position: relative;
  z-index: 1;
  padding: 100px 60px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.section-label .line {
  width: 30px; height: 2px;
  border-radius: 2px;
}
.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

/* ===== AI BADGE SECTION ===== */
.ai-section {
  text-align: center;
  padding: 60px 60px 40px;
}
.ai-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 36px;
  background: linear-gradient(135deg, rgba(255,107,0,0.08), rgba(127,47,247,0.08));
  border: 1px solid rgba(255,107,0,0.15);
  border-radius: 60px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
}
.ai-badge-large .ai-icon {
  width: 32px; height: 32px;
  background: var(--gradient-aurora);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.ai-badge-large strong {
  color: #fff;
  font-weight: 600;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.feature-card {
  position: relative;
  padding: 36px 32px;
  border-radius: 24px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: default;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  border-radius: 24px 24px 0 0;
}
.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.feature-card .icon-wrap {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  position: relative;
}
.feature-card .icon-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  opacity: 0.15;
}
.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Card color variations */
.card-fire::before { background: var(--gradient-fire); }
.card-fire .icon-wrap { background: linear-gradient(135deg, rgba(255,107,0,0.2), rgba(255,45,85,0.2)); }

.card-ocean::before { background: var(--gradient-ocean); }
.card-ocean .icon-wrap { background: linear-gradient(135deg, rgba(0,198,255,0.2), rgba(0,114,255,0.2)); }

.card-aurora::before { background: var(--gradient-aurora); }
.card-aurora .icon-wrap { background: linear-gradient(135deg, rgba(123,47,247,0.2), rgba(196,113,245,0.2)); }

.card-mint::before { background: var(--gradient-mint); }
.card-mint .icon-wrap { background: linear-gradient(135deg, rgba(0,210,160,0.2), rgba(0,180,216,0.2)); }

.card-sunset::before { background: var(--gradient-sunset); }
.card-sunset .icon-wrap { background: linear-gradient(135deg, rgba(255,107,107,0.2), rgba(255,160,122,0.2)); }

.card-neon::before { background: var(--gradient-neon); }
.card-neon .icon-wrap { background: linear-gradient(135deg, rgba(247,37,133,0.2), rgba(181,23,158,0.2)); }

.card-gold::before { background: var(--gradient-gold); }
.card-gold .icon-wrap { background: linear-gradient(135deg, rgba(255,215,0,0.2), rgba(255,140,0,0.2)); }

.card-lime::before { background: var(--gradient-lime); }
.card-lime .icon-wrap { background: linear-gradient(135deg, rgba(168,224,99,0.2), rgba(86,171,47,0.2)); }

.card-cosmic::before { background: var(--gradient-cosmic); }
.card-cosmic .icon-wrap { background: linear-gradient(135deg, rgba(102,126,234,0.2), rgba(118,75,162,0.2)); }

/* ===== HOW IT WORKS ===== */
.how-section {
  text-align: center;
}
.steps-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  flex-wrap: wrap;
}
.step-item {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  position: relative;
}
.step-number {
  width: 72px; height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
}
.step-number::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 24px;
  border: 2px dashed rgba(255,255,255,0.08);
}
.step-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step-item p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.step-1 .step-number { background: var(--gradient-fire); }
.step-2 .step-number { background: var(--gradient-aurora); }
.step-3 .step-number { background: var(--gradient-ocean); }

/* ===== TESTIMONIAL / CLAIM BANNER ===== */
.claim-banner {
  text-align: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}
.claim-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,107,0,0.06), rgba(255,45,85,0.04), rgba(123,47,247,0.06));
  border-top: 1px solid rgba(255,107,0,0.1);
  border-bottom: 1px solid rgba(255,107,0,0.1);
}
.claim-text {
  position: relative;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.2;
}
.claim-text .highlight {
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.claim-sub {
  position: relative;
  margin-top: 20px;
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== STATS ROW ===== */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
  margin-top: 80px;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: -2px;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ===== DOWNLOAD / CTA SECTION ===== */
.cta-section {
  text-align: center;
  padding: 120px 40px;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.12), transparent 70%);
  pointer-events: none;
}
.cta-section .section-title {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.store-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.store-btn:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--orange-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255,107,0,0.2);
}
.store-btn .store-icon {
  font-size: 28px;
}
.store-btn .store-info {
  text-align: left;
}
.store-btn .store-info small {
  font-size: 11px;
  color: var(--text-secondary);
  display: block;
}
.store-btn .store-info strong {
  font-size: 16px;
  font-weight: 600;
}

/* ===== FOOTER ===== */
footer {
  position: relative;
  z-index: 1;
  padding: 60px 60px 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.footer-brand { max-width: 320px; }
.footer-brand .logo { font-size: 32px; margin-bottom: 12px; display: inline-block; }
.footer-brand p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.footer-links-group h5 {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: var(--text-secondary);
}
.footer-links-group a {
  display: block;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  padding: 4px 0;
  transition: color 0.3s;
}
.footer-links-group a:hover { color: var(--orange-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s;
}
.social-links a:hover {
  background: rgba(255,107,0,0.15);
  border-color: rgba(255,107,0,0.3);
  color: var(--orange-light);
  transform: translateY(-2px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  overflow: hidden;
  padding: 30px 0;
  position: relative;
  z-index: 1;
}
.marquee-wrap::before, .marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  width: 100px; height: 100%;
  z-index: 2;
}
.marquee-wrap::before { left: 0; background: linear-gradient(90deg, var(--bg-dark), transparent); }
.marquee-wrap::after { right: 0; background: linear-gradient(-90deg, var(--bg-dark), transparent); }
.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0.35;
  display: flex;
  align-items: center;
  gap: 12px;
}
.marquee-item .dot-m {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange-primary);
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== LEGAL PAGES ===== */
.legal-page {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 40px 80px;
}
.legal-page h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 8px;
  background: var(--gradient-fire);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.legal-page .legal-updated {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}
.legal-page h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin: 40px 0 16px;
  color: var(--text-primary);
}
.legal-page p,
.legal-page li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-page ul {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal-page a {
  color: var(--orange-light);
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 80px 40px; }
}
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(10,10,15,0.98);
    backdrop-filter: blur(20px);
    align-items: center;
    justify-content: center;
    gap: 30px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 22px; }
  .nav-links.open .lang-switcher { margin-top: 20px; }
  .nav-links.open .lang-dropdown {
    position: static;
    margin-top: 8px;
    min-width: 200px;
  }
  .nav-links.open .nav-cta { font-size: 18px; padding: 14px 36px; }
  .features-grid { grid-template-columns: 1fr; }
  section { padding: 60px 24px; }
  .hero { padding: 120px 24px 60px; }
  .stats-row { gap: 40px; }
  .steps-row { flex-direction: column; align-items: center; }
  .footer-top { flex-direction: column; }
  .legal-page { padding: 120px 24px 60px; }
}
@media (max-width: 480px) {
  .hero h1 { letter-spacing: -1.5px; }
  .store-buttons { flex-direction: column; align-items: center; }
}
