/* XternalTrack Landing Page */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* Language toggle: show/hide */
[data-lang="es"] .lang-en { display: none !important; }
[data-lang="en"] .lang-es { display: none !important; }

/* Language toggle button */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 2px;
}
.lang-btn {
  padding: 4px 10px;
  border-radius: 6px;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.25s ease;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
.lang-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}
.lang-btn.active {
  background: rgba(93, 184, 94, 0.2);
  color: var(--green-300);
}

:root {
  --green-900: #0a2e1a;
  --green-800: #0d4a28;
  --green-700: #14693a;
  --green-600: #1a8a4c;
  --green-500: #4a9a4e;
  --green-400: #5db85e;
  --green-300: #7ae6a5;
  --green-200: #b8f2ce;
  --green-100: #e6faf0;
  --dark: #0c1117;
  --dark-card: #131a24;
  --dark-border: #1e2a38;
  --gray-400: #8b99a8;
  --gray-300: #a8b4c0;
  --white: #f0f4f8;
  --accent-glow: rgba(93, 184, 94, 0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  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;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(12, 17, 23, 0.5);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s ease;
}
nav.scrolled {
  background: rgba(12, 17, 23, 0.95);
  border-bottom-color: var(--dark-border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.nav-logo img { width: 32px; height: 32px; object-fit: contain; }
.nav-logo span {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-logo span em { font-style: normal; color: var(--green-400); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--green-400); }
.nav-cta {
  padding: 0.6rem 1.5rem;
  background: var(--green-600);
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: all 0.3s !important;
  border: 1px solid transparent;
}
.nav-cta:hover {
  background: transparent !important;
  border-color: var(--green-500) !important;
  color: var(--green-400) !important;
}
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-menu-btn svg { width: 24px; height: 24px; }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-wrap video {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg,
    rgba(12, 17, 23, 0.65) 0%,
    rgba(12, 17, 23, 0.50) 30%,
    rgba(12, 17, 23, 0.55) 60%,
    rgba(12, 17, 23, 0.95) 100%
  );
}
.hero-video-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(93, 184, 94, 0.08) 0%, transparent 60%);
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(93, 184, 94, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 184, 94, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 50% 40%, black 10%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-text { max-width: 580px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: rgba(93, 184, 94, 0.12);
  border: 1px solid rgba(93, 184, 94, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--green-300);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--green-400);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}
.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.15s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--green-400), var(--green-300));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 480px;
  animation: fadeUp 0.8s ease 0.3s both;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.45s both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 24px rgba(93, 184, 94, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(93, 184, 94, 0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  border-color: var(--green-500);
  color: var(--green-400);
  background: rgba(93, 184, 94, 0.1);
}

/* Phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeUp 1s ease 0.4s both;
}
.phone-mockup {
  position: relative;
  width: 280px; height: 570px;
  background: #1a1a2e;
  border-radius: 40px;
  border: 3px solid rgba(255,255,255,0.1);
  box-shadow: 0 40px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05) inset, 0 0 80px rgba(93, 184, 94, 0.1);
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 120px; height: 28px;
  background: #1a1a2e;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}
.phone-screen {
  position: absolute;
  inset: 3px;
  border-radius: 37px;
  overflow: hidden;
  background: linear-gradient(180deg, #2d4a30, var(--green-900) 30%, var(--dark) 60%);
}
.phone-app-header {
  padding: 2.8rem 1.5rem 1rem;
  text-align: center;
}
.phone-app-header .logo-icon {
  width: 52px; height: 52px;
  margin: 0 auto 0.4rem;
}
.phone-app-header .logo-icon img { width: 100%; height: 100%; object-fit: contain; }
.phone-app-header p { font-size: 0.75rem; color: var(--green-300); font-weight: 500; }
.phone-card {
  margin: 0.8rem;
  padding: 1rem;
  background: rgba(255,255,255,0.06);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}
.phone-card-title {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  margin-bottom: 0.6rem;
}
.phone-status-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.status-dot.active { background: var(--green-400); box-shadow: 0 0 8px var(--green-400); }
.status-dot.transit { background: #f0b429; }
.status-dot.delivered { background: #4da6ff; }
.phone-status-row span { font-size: 0.75rem; color: var(--gray-300); }
.phone-status-row .time { margin-left: auto; font-size: 0.65rem; color: var(--gray-400); }
.phone-map-area {
  margin: 0.8rem;
  height: 120px;
  background: linear-gradient(135deg, rgba(93, 184, 94, 0.1), rgba(93, 184, 94, 0.05));
  border-radius: 16px;
  border: 1px solid rgba(93, 184, 94, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.phone-map-area::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(93, 184, 94, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93, 184, 94, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
}
.map-pin {
  width: 32px; height: 32px;
  background: var(--green-500);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  position: relative;
  z-index: 1;
  animation: bounce 2s ease-in-out infinite;
  box-shadow: 0 4px 12px rgba(93, 184, 94, 0.4);
}
@keyframes bounce {
  0%, 100% { transform: rotate(-45deg) translateY(0); }
  50% { transform: rotate(-45deg) translateY(-8px); }
}
.floating-card {
  position: absolute;
  padding: 0.7rem 1rem;
  background: rgba(19, 26, 36, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  font-size: 0.78rem;
  color: var(--gray-300);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  white-space: nowrap;
  z-index: 3;
}
.floating-card.loc { top: 15%; right: -30px; animation: floatCard 4s ease-in-out infinite; }
.floating-card.eta { bottom: 20%; left: -40px; animation: floatCard 4s ease-in-out infinite 1s; }
.floating-card .fc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 6px;
  background: var(--accent-glow);
  font-size: 0.7rem;
  margin-right: 0.4rem;
  vertical-align: middle;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* STATS */
.stats-bar {
  padding: 3rem 2rem;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}
.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--green-400), var(--green-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-item p { font-size: 0.85rem; color: var(--gray-400); margin-top: 0.3rem; }

/* FEATURES */
.features { padding: 7rem 2rem; }
.section-header { text-align: center; max-width: 600px; margin: 0 auto 4rem; }
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-400);
  margin-bottom: 1rem;
}
.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-header p { font-size: 1.05rem; color: var(--gray-300); line-height: 1.7; }
.features-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 2rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-500), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.feature-card:hover {
  border-color: rgba(93, 184, 94, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.3rem;
}
.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.feature-card p { font-size: 0.9rem; color: var(--gray-400); line-height: 1.65; }

/* HOW IT WORKS */
.how-it-works {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, transparent, rgba(93, 184, 94, 0.03), transparent);
}
.steps-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-container::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(90deg, var(--dark-border), var(--green-700), var(--dark-border));
}
.step { text-align: center; position: relative; }
.step-number {
  width: 64px; height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--dark-card);
  border: 2px solid var(--green-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-400);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 20px rgba(93, 184, 94, 0.15);
}
.step h3 { font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; }
.step p { font-size: 0.88rem; color: var(--gray-400); line-height: 1.6; max-width: 260px; margin: 0 auto; }

/* PRICING */
.pricing { padding: 7rem 2rem; }
.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}
.price-card {
  padding: 2.2rem 1.8rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
}
.price-card.featured {
  border-color: var(--green-500);
  background: linear-gradient(180deg, rgba(93, 184, 94, 0.08), var(--dark-card) 40%);
  box-shadow: 0 0 40px rgba(93, 184, 94, 0.1);
}
.price-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 1rem;
  background: var(--green-500);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.plan-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-400);
  margin-bottom: 1rem;
}
.plan-price { display: flex; align-items: baseline; gap: 0.3rem; margin-bottom: 0.3rem; }
.plan-price .currency { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--gray-300); }
.plan-price .amount { font-family: 'Outfit', sans-serif; font-size: 3rem; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.plan-price .period { font-size: 0.85rem; color: var(--gray-400); }
.plan-desc {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 1.8rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--dark-border);
}
.plan-features { list-style: none; flex: 1; margin-bottom: 2rem; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.88rem;
  color: var(--gray-300);
  line-height: 1.4;
}
.plan-features li::before {
  content: '\2713';
  flex-shrink: 0;
  width: 18px; height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(93, 184, 94, 0.15);
  color: var(--green-400);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  margin-top: 0.1rem;
}
.plan-btn {
  display: block;
  width: 100%;
  padding: 0.85rem;
  text-align: center;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--dark-border);
  background: transparent;
  color: var(--white);
}
.plan-btn:hover { border-color: var(--green-500); color: var(--green-400); }
.price-card.featured .plan-btn {
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(93, 184, 94, 0.3);
}
.price-card.featured .plan-btn:hover { box-shadow: 0 8px 28px rgba(93, 184, 94, 0.45); transform: translateY(-1px); }

/* CTA */
.cta-section { padding: 7rem 2rem; }
.cta-box {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem;
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  border-radius: 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(93, 184, 94, 0.2);
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(93, 184, 94, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(93, 184, 94, 0.1) 0%, transparent 50%);
}
.cta-box > * { position: relative; z-index: 1; }
.cta-box .cta-logo {
  display: inline-flex; align-items: center; gap: 0.6rem; margin: 0 auto 1.5rem;
}
.cta-box .cta-logo img { width: 40px; height: 40px; object-fit: contain; }
.cta-box .cta-logo span { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--white); }
.cta-box .cta-logo em { font-style: normal; color: var(--green-400); }
.cta-box h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.cta-box p { font-size: 1.1rem; color: var(--green-200); max-width: 500px; margin: 0 auto 2rem; line-height: 1.6; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: #fff;
  color: var(--green-900);
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,0.2); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: transparent;
  color: var(--green-200);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.store-badges { display: flex; gap: 0.8rem; margin-top: 0.5rem; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  transition: all 0.3s;
}
.store-badge:hover { border-color: var(--green-400); }
.store-badge svg { width: 18px; height: 18px; }

/* FOOTER */
footer { padding: 3rem 2rem; border-top: 1px solid var(--dark-border); }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-left { display: flex; align-items: center; gap: 0.6rem; }
.footer-left img { width: 32px; height: 32px; object-fit: contain; }
.footer-left span { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.1rem; color: var(--white); }
.footer-left em { font-style: normal; color: var(--green-400); }
.footer-copy { font-size: 0.85rem; color: var(--gray-400); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--gray-400); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--green-400); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { max-width: 100%; margin: 0 auto; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 2rem; }
  .features-grid { grid-template-columns: 1fr; max-width: 420px; }
  .steps-container { grid-template-columns: 1fr; }
  .steps-container::before { display: none; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 56px; left: 0; right: 0; background: rgba(12, 17, 23, 0.95); backdrop-filter: blur(20px); padding: 1rem 2rem; gap: 1rem; border-bottom: 1px solid var(--dark-border); }
  .nav-links li { list-style: none; }
  .nav-links .lang-toggle { justify-content: center; }
  .mobile-menu-btn { display: block; }
  .floating-card { display: none; }
  .cta-box { padding: 2.5rem 1.5rem; }
}

.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); }
