/* ═══════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Inter', sans-serif;
  color: #1A1A2E;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* ═══════════════════════════════════════════
   CSS VARIABLES
═══════════════════════════════════════════ */
:root {
  --primary: #6C63FF;
  --primary-dark: #5A52E0;
  --primary-light: #EEF0FF;
  --accent: #FF6B6B;
  --green: #11998E;
  --yellow: #F7971E;
  --dark: #1A1A2E;
  --dark-2: #2D2D44;
  --gray: #6B7280;
  --gray-light: #F3F4F6;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(108,99,255,0.10);
  --shadow-lg: 0 12px 48px rgba(108,99,255,0.18);
  --transition: 0.3s ease;
}

/* ═══════════════════════════════════════════
   CONTAINER
═══════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(108,99,255,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-lg { padding: 14px 28px; font-size: 15px; border-radius: 14px; }
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 10px; }

/* ═══════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 14px;
  letter-spacing: 0.3px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 16px;
  color: var(--gray);
  max-width: 520px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
}
.logo-icon { font-size: 24px; }
.logo-text strong { color: var(--primary); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  transition: color var(--transition);
}
.nav-links li a:hover { color: var(--primary); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #f0eeff 0%, #fff5f5 50%, #f0fff8 100%);
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}
.hero-bg-blobs { position: absolute; inset: 0; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.blob-1 { width: 500px; height: 500px; background: #6C63FF; top: -150px; left: -150px; }
.blob-2 { width: 400px; height: 400px; background: #FF6B6B; bottom: -100px; right: -100px; }
.blob-3 { width: 300px; height: 300px; background: #11998E; top: 40%; left: 40%; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(108,99,255,0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(108,99,255,0.2);
}
.hero-title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
}
.trust-item { text-align: center; }
.trust-num { display: block; font-size: 22px; font-weight: 800; color: var(--dark); }
.trust-label { font-size: 12px; color: var(--gray); font-weight: 500; }
.trust-divider { width: 1px; height: 36px; background: #ddd; }

/* Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockup {
  position: relative;
  z-index: 2;
}
.phone-frame {
  width: 260px;
  height: 520px;
  background: #1A1A2E;
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 32px 80px rgba(26,26,46,0.35), 0 0 0 1px rgba(255,255,255,0.1);
  position: relative;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 6px;
  background: #333;
  border-radius: 3px;
  z-index: 10;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: #f8f7ff;
  border-radius: 30px;
  overflow: hidden;
  padding-top: 20px;
}
.app-ui { padding: 12px; }
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.app-greeting { font-size: 10px; font-weight: 600; color: var(--dark); }
.app-wallet {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 3px 8px;
  border-radius: 20px;
}
.app-search {
  background: #fff;
  border-radius: 8px;
  padding: 7px 10px;
  font-size: 9px;
  color: #aaa;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.app-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 10px;
}
.service-chip {
  padding: 7px 6px;
  border-radius: 8px;
  font-size: 9px;
  font-weight: 600;
  text-align: center;
}
.chip-shop    { background: #EEF0FF; color: #6C63FF; }
.chip-recharge{ background: #FFF0F0; color: #FF6B6B; }
.chip-bills   { background: #F0FFF8; color: #11998E; }
.chip-transfer{ background: #FFFBF0; color: #F7971E; }

.app-banner {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.app-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.app-product {
  background: #fff;
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.product-img { font-size: 20px; margin-bottom: 4px; }
.product-name { font-size: 8px; color: var(--gray); margin-bottom: 2px; }
.product-price { font-size: 9px; font-weight: 700; color: var(--dark); }

.phone-glow {
  position: absolute;
  bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 60px;
  background: var(--primary);
  filter: blur(40px);
  opacity: 0.3;
  border-radius: 50%;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}
.card-order  { top: 60px; right: -20px; animation-delay: 0s; }
.card-recharge { bottom: 80px; left: -20px; animation-delay: 1.5s; }
.fc-icon { font-size: 22px; }
.fc-title { font-size: 12px; font-weight: 700; color: var(--dark); }
.fc-sub   { font-size: 10px; color: var(--gray); }

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

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ═══════════════════════════════════════════
   FEATURES
═══════════════════════════════════════════ */
.features {
  padding: 100px 0;
  background: #f8f7ff;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid rgba(108,99,255,0.06);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 18px;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feature-list li {
  font-size: 13px;
  color: var(--dark);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how-it-works {
  padding: 100px 0;
  background: #fff;
}
.steps-wrapper { position: relative; }
.steps-line {
  position: absolute;
  top: 60px;
  left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.25;
  z-index: 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.step-card {
  text-align: center;
  padding: 32px 24px;
}
.step-number {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 16px;
  opacity: 0.6;
}
.step-icon {
  width: 72px;
  height: 72px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  border: 3px solid #fff;
  box-shadow: 0 4px 20px rgba(108,99,255,0.15);
}
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.step-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   STATS
═══════════════════════════════════════════ */
.stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #9B8FFF 100%);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials {
  padding: 100px 0;
  background: #f8f7ff;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(108,99,255,0.06);
  transition: all var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.stars {
  color: #F7971E;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-card p {
  font-size: 15px;
  color: var(--dark-2);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
}
.reviewer-city {
  font-size: 12px;
  color: var(--gray);
}

/* ═══════════════════════════════════════════
   DOWNLOAD CTA
═══════════════════════════════════════════ */
.download {
  padding: 100px 0;
  background: linear-gradient(135deg, #1A1A2E 0%, #2D2D44 100%);
  position: relative;
  overflow: hidden;
}
.download-bg-blobs { position: absolute; inset: 0; pointer-events: none; }
.blob-d1 { width: 400px; height: 400px; background: #6C63FF; top: -150px; right: -100px; opacity: 0.2; }
.blob-d2 { width: 300px; height: 300px; background: #FF6B6B; bottom: -100px; left: -80px; opacity: 0.15; }

.download-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.download-content h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.download-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}
.download-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 14px 24px;
  border-radius: 14px;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.store-btn:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.store-sub { font-size: 11px; opacity: 0.7; }
.store-name { font-size: 16px; font-weight: 700; }
.qr-hint {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* QR Box */
.qr-box {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.qr-placeholder {
  width: 140px;
  height: 140px;
  margin: 0 auto 12px;
  padding: 12px;
  background: #fff;
  border: 2px solid #eee;
  border-radius: 12px;
}
.qr-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  width: 100%;
  height: 100%;
}
.qr-cell {
  border-radius: 2px;
}
.qr-cell.dark  { background: #1A1A2E; }
.qr-cell.light { background: #fff; }
.qr-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: #0F0F1E;
  padding: 72px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  margin-bottom: 24px;
  max-width: 300px;
  line-height: 1.7;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.social-links a:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="fade-left"] {
  transform: translateX(40px);
}
[data-animate].visible {
  opacity: 1;
  transform: translate(0);
}

/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { gap: 40px; }
  .phone-frame { width: 230px; height: 460px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .download-inner { grid-template-columns: 1fr; text-align: center; }
  .download-content p { margin: 0 auto 36px; }
  .download-btns { justify-content: center; }
  .qr-hint { text-align: center; }
  .download-visual { display: flex; justify-content: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Navbar */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 75%;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 40px;
    gap: 24px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    transition: right var(--transition);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links li a { font-size: 16px; }

  /* Hero */
  .hero { padding: 100px 0 60px; }
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .hero-subtitle { margin: 0 auto 36px; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { order: -1; }
  .phone-frame { width: 210px; height: 420px; }
  .card-order  { right: 0; top: 20px; }
  .card-recharge { left: 0; bottom: 40px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; }

  /* Steps */
  .steps-line { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Download */
  .download-btns { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; max-width: 260px; justify-content: center; }

  /* Footer */
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
═══════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: center; }
  .btn-lg { width: 100%; max-width: 280px; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-links { grid-template-columns: 1fr; }
  .floating-card { display: none; }
}
