@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --blue: #070A78;
  --blue-dark: #04064A;
  --blue-light: #1A1D8A;
  --neon: #7CFF00;
  --neon-hover: #6AE000;
  --neon-glow: rgba(124, 255, 0, 0.3);
  --neon-dim: rgba(124, 255, 0, 0.12);
  --white: #FFFFFF;
  --off-white: #F8FAFB;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --dark: #0F172A;
  --shadow-sm: 0 1px 3px rgba(7,10,120,0.08);
  --shadow-md: 0 4px 20px rgba(7,10,120,0.12);
  --shadow-lg: 0 10px 40px rgba(7,10,120,0.18);
  --shadow-neon: 0 4px 24px rgba(124,255,0,0.25);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-500);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; }
.section-alt { background: var(--off-white); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--neon);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--neon);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--blue);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.125rem;
  color: var(--gray-400);
  max-width: 560px;
  line-height: 1.7;
}

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .section-sub { margin: 0 auto; }

/* ─── Navigation (Grab-style) ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--blue);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  height: 136px;
  transition: box-shadow 0.3s;
}

.nav.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 136px;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
  flex-shrink: 0;
  margin-right: 12px;
}

.nav-hamburger:hover { background: rgba(0,0,0,0.04); }

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--neon);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: auto;
}

.nav-logo img { height: 130px; width: auto; display: block; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.nav-right > a {
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  white-space: nowrap;
  transition: all 0.2s;
  padding: 8px 14px;
  border-radius: 8px;
}

.nav-right > a:hover { color: var(--neon); background: rgba(255,255,255,0.08); }

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  user-select: none;
}

.nav-dropdown-toggle i { font-size: 12px; }

.nav-dropdown-toggle:hover { color: var(--neon); background: rgba(255,255,255,0.08); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 8px;
  z-index: 100;
}

.nav-dropdown-menu.open { display: block; }

.nav-dropdown-menu li { margin: 0; }

.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-dropdown-menu a:hover { background: rgba(0,0,0,0.04); color: #111; }

/* ─── Drawer (horizontal dropdown) ─── */
.drawer-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 136px;
  left: 0; right: 0;
  background: #fff;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.25s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  max-height: 420px;
  overflow-y: auto;
}

.drawer.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.drawer-header {
  display: none;
}

.drawer-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
}

.drawer-close {
  display: none;
}

.drawer-body {
  display: flex;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 40px 36px;
}

.drawer-group {
  flex: 1;
  min-width: 0;
}

.drawer-group:last-child {
  flex: 0 0 auto;
}

.drawer-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: #aaa;
  margin-bottom: 12px;
  padding: 0 4px;
}

.drawer-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  font-size: 14px;
  font-weight: 500;
  color: #444;
  border-radius: 8px;
  transition: all 0.15s;
  white-space: nowrap;
}

.drawer-link i {
  width: 16px;
  text-align: center;
  font-size: 14px;
  color: #999;
  transition: color 0.15s;
}

.drawer-link:hover {
  background: #f5f7fa;
  color: var(--blue);
}

.drawer-link:hover i {
  color: var(--blue);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--neon);
  color: var(--blue);
}

.btn-primary:hover {
  background: var(--neon-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
}

.btn-outline:hover {
  border-color: var(--neon);
  color: var(--neon);
  background: rgba(124,255,0,0.08);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-500);
  border: 2px solid var(--gray-200);
}

.btn-ghost:hover {
  border-color: var(--neon);
  color: var(--blue);
  background: var(--neon-dim);
}

.btn-sm { padding: 10px 22px; font-size: 18px; }

/* ─── Hero ─── */
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: rgba(124,255,0,0.03);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(124,255,0,0.02);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,255,0,0.12);
  border: 1px solid rgba(124,255,0,0.2);
  padding: 8px 16px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  color: var(--neon);
  margin-bottom: 24px;
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 700;
  color: var(--neon);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.hero-title {
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--neon), #A8FF4D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

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

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

.hero-stat h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--neon);
  line-height: 1;
}

.hero-stat p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-phone-frame {
  width: 280px;
  height: 560px;
  border-radius: 36px;
  background: var(--blue-dark);
  border: 3px solid rgba(124,255,0,0.15);
  position: relative;
  box-shadow: 0 25px 80px rgba(4,6,74,0.5);
  overflow: hidden;
}

.hero-phone-frame::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: rgba(124,255,0,0.2);
  border-radius: 3px;
  z-index: 2;
}

.hero-phone-frame img {
  position: absolute;
  top: 24px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border-radius: 28px;
  width: calc(100% - 16px);
  height: calc(100% - 32px);
  object-fit: cover;
}

.hero-floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue);
  animation: float 3s ease-in-out infinite;
}

.hero-floating-card i { color: var(--neon); font-size: 16px; }

.hero-floating-card:nth-child(2) {
  top: 15%;
  right: -30px;
  animation-delay: 0.5s;
}

.hero-floating-card:nth-child(3) {
  bottom: 20%;
  left: -40px;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ─── Services Grid ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--neon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--neon);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card img.srv-img {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ─── Why MustGo ─── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--neon);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--neon-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  color: var(--blue);
}

.why-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ─── Stats ─── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--neon);
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 900;
  color: var(--neon);
  line-height: 1;
  margin-bottom: 8px;
  -webkit-text-stroke: 1px var(--blue);
}

.stat-label {
  font-size: 0.938rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ─── Feature Grid (subpages) ─── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--neon);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--neon);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card .fc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--neon-dim);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 20px; color: var(--neon);
}
.feature-card h3 {
  font-size: 1.125rem; font-weight: 700;
  color: var(--blue); margin-bottom: 8px;
}
.feature-card p {
  font-size: 0.938rem; color: var(--gray-400);
  line-height: 1.6; margin: 0;
}

/* ─── Page Hero (subpages) ─── */
.page-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%; right: -15%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(124,255,0,0.04);
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(124,255,0,0.02);
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 900; color: var(--white);
  margin-bottom: 16px; position: relative; z-index: 1;
}
.page-hero p {
  font-size: 1.2rem; color: rgba(255,255,255,0.75);
  max-width: 640px; margin: 0 auto 32px;
  position: relative; z-index: 1;
}
.page-content { padding: 80px 0; }

/* ─── How It Works ─── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: linear-gradient(to right, var(--neon-dim), var(--neon));
}

.step { text-align: center; position: relative; }

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--neon);
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: var(--neon-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--blue);
}

.step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.938rem;
  color: var(--gray-400);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ─── Testimonials ─── */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--neon);
}

.stars { color: #FFB800; font-size: 1.125rem; letter-spacing: 3px; margin-bottom: 16px; }

.testimonial-card > p {
  font-size: 0.938rem;
  color: var(--gray-500);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

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

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--neon-dim);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.author strong { display: block; font-size: 0.938rem; color: var(--blue); }
.author span { font-size: 0.813rem; color: var(--gray-400); }

/* ─── Earn Section ─── */
.earn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.earn-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s ease;
  display: block;
}

.earn-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--neon);
}

.earn-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--neon-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--blue);
}

.earn-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--blue); margin-bottom: 8px; }
.earn-card p { font-size: 0.875rem; color: var(--gray-400); line-height: 1.6; margin-bottom: 20px; }

/* ─── Download CTA ─── */
.download-cta {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}

.download-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(124,255,0,0.03);
}

.download-cta .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.download-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.download-content > p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 36px;
  max-width: 480px;
}

.store-badges {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.store-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: var(--white);
  border-radius: 12px;
  color: var(--blue);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.store-badge:hover {
  border-color: var(--neon);
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon);
}

.store-text { font-size: 11px; line-height: 1.2; color: var(--gray-400); }
.store-text strong { display: block; font-size: 15px; color: var(--blue); font-weight: 600; }

.download-meta {
  font-size: 0.813rem;
  color: rgba(255,255,255,0.5);
  margin-top: 20px;
}

.download-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.download-visual img {
  width: 240px;
  height: 240px;
  border-radius: 32px;
  object-fit: cover;
}

/* ─── Footer ─── */
.footer {
  background: var(--blue);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.footer-logo img { height: 130px; }

.footer-tagline {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--neon);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(124,255,0,0.1);
  color: var(--neon);
  font-size: 16px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--neon);
  color: var(--blue);
  transform: translateY(-2px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--neon);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}

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

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--neon); }

.footer-bottom span.sep { margin: 0 12px; color: rgba(255,255,255,0.15); }

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

/* ─── Inner Pages ─── */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(124,255,0,0.03);
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--white);
}

.page-hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  margin: 0 auto;
}

.page-content { padding: 80px 0; }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 40px 0;
}

.feature-row:nth-child(even) { direction: rtl; }
.feature-row:nth-child(even) > * { direction: ltr; }

.feature-text h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 16px;
}

.feature-text p {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-text ul { margin-bottom: 16px; }
.feature-text li {
  font-size: 0.938rem;
  color: var(--gray-500);
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
}

.feature-text li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--neon);
  font-weight: 700;
}

.feature-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
}

.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── Services Overview Page ─── */
.features-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 24px auto 0;
  max-width: 600px;
}

.feature-item {
  font-size: 0.95rem;
  color: var(--gray-400);
  line-height: 1.6;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.feature-item i {
  color: var(--neon);
  font-size: 1rem;
  flex-shrink: 0;
}

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

.service-card-lg {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card-lg:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--neon);
}

.service-card-lg img.srv-img {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
}

.service-card-lg h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 8px;
}

.service-card-lg p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ─── Safety List ─── */
.safety-list { max-width: 600px; }

.safety-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.safety-check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--neon);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-weight: 700;
  font-size: 13px;
  margin-top: 2px;
}

.safety-list li strong {
  display: block;
  font-size: 1em;
  color: var(--blue);
  margin-bottom: 2px;
}

.safety-list li p {
  font-size: 0.875rem;
  color: var(--gray-400);
  margin: 0;
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info h3 { font-size: 1.5rem; font-weight: 700; color: var(--blue); margin-bottom: 16px; }
.contact-info p { color: var(--gray-500); line-height: 1.7; margin-bottom: 24px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-item i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--neon-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.contact-item a { color: var(--neon); font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--neon-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 18px;
  transition: all 0.3s;
}

.social-links a:hover {
  background: var(--neon);
  color: var(--blue);
  transform: translateY(-2px);
}

/* ─── Utility ─── */
.country-selector { margin-top: 20px; }
.country-selector a {
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.country-selector a:hover { color: var(--neon); }

.flag {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}

/* ─── About Page - Benefits Grid ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--neon);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--neon-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
}

.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--gray-400);
  line-height: 1.6;
  margin: 0;
}

/* ─── About Page - Stats ─── */
.stats-grid-about {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-card-about {
  text-align: center;
  padding: 40px 20px;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.stat-card-about:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--neon);
}

.stat-number-about {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--neon);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label-about {
  font-size: 0.938rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ─── Animations ─── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

[data-delay="100"] { transition-delay: 0.1s; }
[data-delay="200"] { transition-delay: 0.2s; }
[data-delay="300"] { transition-delay: 0.3s; }
[data-delay="400"] { transition-delay: 0.4s; }
[data-delay="500"] { transition-delay: 0.5s; }

/* ─── Responsive ─── */
@media (max-width: 1023px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .hero-actions { justify-content: center; }
  .services-grid, .why-grid, .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .earn-grid { grid-template-columns: repeat(2, 1fr); }
  .download-cta .container { grid-template-columns: 1fr; text-align: center; }
  .download-content > p { margin: 0 auto 36px; }
  .store-badges { justify-content: center; }
  .download-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-row { grid-template-columns: 1fr; gap: 32px; }
  .feature-row:nth-child(even) { direction: ltr; }
  .feature-text { text-align: center; }
  .feature-text ul { text-align: left; max-width: 400px; margin: 0 auto 16px; }
  .features-list { align-items: center; }
  .services-overview { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; text-align: center; }
  .contact-item { justify-content: center; text-align: left; }
  .social-links { justify-content: center; }
  .steps::before { display: none; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .page-hero h1 { font-size: 2rem; }
}

@media (max-width: 767px) {
  .section { padding: 60px 0; }
  .hero { padding: 138px 0 60px; min-height: auto; }
  .nav-right { display: none; }
  .services-grid, .why-grid, .testimonial-grid, .services-overview { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-number { font-size: 2rem; }
  .earn-grid { grid-template-columns: 1fr; }
  .feature-item { font-size: 0.85rem; text-align: left; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.25rem; }
  .hero-sub { font-size: 1rem; }

  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .store-badges { flex-direction: column; align-items: center; }
  .page-hero { padding: 100px 0 40px; }
  .page-content { padding: 40px 0; }
  .stat-card { padding: 24px 16px; }
  .service-card { padding: 24px 16px; }
  .nav { height: 134px; }
  .nav-inner { height: 134px; }
  .drawer { top: 134px; max-height: calc(100vh - 134px); overflow-y: auto; }
  .drawer-body { flex-direction: column; gap: 24px; padding: 24px 20px; }
  .drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--gray-200); }
  .drawer-close { display: flex; background: none; border: none; font-size: 28px; color: var(--gray-400); cursor: pointer; }
}
