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

:root {
  --color-bg: #06080D;
  --color-surface: rgba(18, 22, 30, 0.65);
  --color-surface-hover: rgba(26, 32, 44, 0.85);
  --color-primary: #6366f1;
  --color-primary-glow: rgba(99, 102, 241, 0.35);
  --color-secondary: #0ea5e9;
  --color-accent: #a78bfa;
  --color-text: #f1f5f9;
  --color-text-muted: #8896ab;
  --color-border: rgba(255, 255, 255, 0.07);

  --font-main: 'Outfit', sans-serif;
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 20px;
  --border-radius-sm: 12px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* ===== BACKGROUND EFFECTS ===== */
.bg-glow {
  position: fixed;
  top: -25%;
  left: -15%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 65%);
  filter: blur(120px);
  z-index: -1;
  opacity: 0.45;
  animation: pulse-glow 8s ease-in-out infinite alternate;
}

.bg-glow-2 {
  position: fixed;
  bottom: -25%;
  right: -15%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.18) 0%, transparent 65%);
  filter: blur(120px);
  z-index: -1;
  opacity: 0.45;
  animation: pulse-glow 10s ease-in-out infinite alternate-reverse;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 30%, transparent 100%);
}

@keyframes pulse-glow {
  from { transform: scale(1); opacity: 0.4; }
  to   { transform: scale(1.15); opacity: 0.55; }
}

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

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== HEADER & NAV ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 0;
  z-index: 1000;
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--color-border);
  background: rgba(6, 8, 13, 0.75);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 10px 0;
  background: rgba(6, 8, 13, 0.92);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #fff, var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-logo {
  height: 34px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--color-text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.nav-links .btn-panel {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: white !important;
  padding: 9px 22px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  box-shadow: 0 4px 16px var(--color-primary-glow);
  transition: var(--transition-smooth);
}

.nav-links .btn-panel:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.5);
}

.nav-links .btn-panel::after {
  display: none;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 26px;
  cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  font-family: var(--font-main);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), #4f46e5);
  color: white;
  box-shadow: 0 4px 20px var(--color-primary-glow);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.55);
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
  color: var(--color-text);
  border: 1px solid var(--color-border);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 17px;
  border-radius: 14px;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 100px;
  padding-bottom: 60px;
  position: relative;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  border-radius: 40px;
  background: rgba(99, 102, 241, 0.08);
  color: #a5b4fc;
  border: 1px solid rgba(99, 102, 241, 0.18);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 28px;
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
}

.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  color: #fff;
}

.hero p {
  font-size: clamp(16px, 2.5vw, 19px);
  color: var(--color-text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

.phone-mockup {
  position: relative;
}

.phone-frame {
  width: 280px;
  height: 580px;
  background: linear-gradient(145deg, #2a3045, #151a25);
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.18),
    0 20px 60px rgba(0,0,0,0.6),
    0 0 100px rgba(99, 102, 241, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.phone-frame:hover {
  transform: scale(1.02);
}

.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #0d1017;
  border-radius: 0 0 16px 16px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.phone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle at center, var(--color-primary-glow) 0%, transparent 65%);
  filter: blur(60px);
  z-index: -1;
  opacity: 0.6;
  animation: pulse-glow 6s ease-in-out infinite alternate;
}

.phone-hero .phone-frame {
  animation: float-phone 6s ease-in-out infinite;
}

@keyframes float-phone {
  0%, 100% { transform: translateY(0px) rotateY(-5deg) rotateX(2deg); }
  50% { transform: translateY(-20px) rotateY(-5deg) rotateX(2deg); }
}

.phone-hero .phone-frame:hover {
  animation-play-state: paused;
  transform: translateY(-10px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 60px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: rgba(10, 13, 20, 0.5);
  backdrop-filter: blur(10px);
}

.stats-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-suffix {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.stat-label {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: var(--color-text-muted);
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--color-border);
}

/* ===== SECTION COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 30px;
  background: rgba(99, 102, 241, 0.08);
  color: var(--color-accent);
  border: 1px solid rgba(99, 102, 241, 0.18);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #fff;
}

.section-subtitle {
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
}

/* ===== FEATURES ===== */
.features {
  padding: 120px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Glass Card */
.glass-card {
  background: var(--color-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 36px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(99,102,241,0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.glass-card:hover {
  background: var(--color-surface-hover);
  border-color: rgba(99, 102, 241, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 40px rgba(99, 102, 241, 0.08);
}

.glass-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(99, 102, 241, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: var(--transition-smooth);
}

.glass-card:hover .feature-icon {
  transform: scale(1.1);
}

.icon-cyan { background: rgba(14, 165, 233, 0.12); color: var(--color-secondary); }
.icon-green { background: rgba(34, 197, 94, 0.12); color: #22c55e; }
.icon-orange { background: rgba(249, 115, 22, 0.12); color: #f97316; }
.icon-pink { background: rgba(236, 72, 153, 0.12); color: #ec4899; }
.icon-yellow { background: rgba(234, 179, 8, 0.12); color: #eab308; }

.feature-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}

.feature-desc {
  color: var(--color-text-muted);
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.feature-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--color-primary);
  border: 1px solid rgba(99, 102, 241, 0.15);
}

.tag-cyan { background: rgba(14, 165, 233, 0.1); color: var(--color-secondary); border-color: rgba(14, 165, 233, 0.15); }
.tag-green { background: rgba(34, 197, 94, 0.1); color: #22c55e; border-color: rgba(34, 197, 94, 0.15); }
.tag-orange { background: rgba(249, 115, 22, 0.1); color: #f97316; border-color: rgba(249, 115, 22, 0.15); }
.tag-pink { background: rgba(236, 72, 153, 0.1); color: #ec4899; border-color: rgba(236, 72, 153, 0.15); }
.tag-yellow { background: rgba(234, 179, 8, 0.1); color: #eab308; border-color: rgba(234, 179, 8, 0.15); }

/* ===== STREET VENDORS SECTION ===== */
.street-vendors-section {
  padding: 0 0 40px 0;
}

.vendor-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  background: linear-gradient(145deg, rgba(18, 22, 30, 0.8), rgba(6, 8, 13, 0.9));
}

.vendor-desc {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.vendor-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vendor-features li {
  display: flex;
  gap: 18px;
}

.vfeature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.12);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vendor-features strong {
  display: block;
  font-size: 16px;
  color: #fff;
  margin-bottom: 4px;
}

.vendor-features span {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Route Visualization */
.route-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: rgba(10, 13, 20, 0.5);
  border-radius: 24px;
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.route-visual-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.route-map-svg {
  position: relative;
  z-index: 1;
  width: 90%;
  height: 90%;
}

.route-path {
  stroke-dasharray: 12;
  animation: march 1.5s linear infinite;
}

@keyframes march {
  to { stroke-dashoffset: -24; }
}

.route-node {
  transform-origin: center;
  animation: pulse-node 2s infinite alternate;
}

@keyframes pulse-node {
  from { transform: scale(0.9); }
  to { transform: scale(1.1); filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.6)); }
}

.floating-widget {
  animation: float-widget 6s ease-in-out infinite;
}

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

/* ===== APP SHOWCASE ===== */
.app-showcase {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(99, 102, 241, 0.03), transparent);
}

.showcase-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.showcase-text .section-title {
  text-align: left;
}

.showcase-desc {
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.showcase-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.showcase-checklist li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.check-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 8px;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-top: 2px;
}

.showcase-checklist strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #fff;
}

.showcase-checklist span {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* Phones Container */
.showcase-phones {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

.phones-container {
  position: relative;
  width: 400px;
  height: 580px;
}

.phone-back {
  position: absolute;
  top: 20px;
  left: 0;
}

.phone-back .phone-frame {
  width: 240px;
  height: 500px;
  opacity: 0.7;
  transform: perspective(1200px) rotateY(15deg) translateZ(-30px);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.phones-container:hover .phone-back .phone-frame {
  opacity: 0.85;
  transform: perspective(1200px) rotateY(10deg) translateZ(-15px) translateX(-10px);
}

.phone-front {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}

.phone-front .phone-frame {
  width: 260px;
  height: 540px;
  transform: perspective(1200px) rotateY(-8deg);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  animation: float-phone 7s ease-in-out infinite;
}

.phones-container:hover .phone-front .phone-frame {
  transform: perspective(1200px) rotateY(-4deg) scale(1.02);
  animation-play-state: paused;
}

.phones-glow {
  position: absolute;
  inset: -60px;
  background: radial-gradient(ellipse at center, var(--color-primary-glow) 0%, transparent 60%);
  filter: blur(80px);
  z-index: -1;
  opacity: 0.5;
}

/* ===== PANEL SHOWCASE ===== */
.panel-showcase {
  padding: 120px 0;
}

.panel-preview {
  position: relative;
  margin-bottom: 60px;
}

.browser-mockup {
  background: linear-gradient(145deg, #141820, #0d1017);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 30px 80px rgba(0,0,0,0.55),
    0 0 60px rgba(99, 102, 241, 0.08);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.browser-mockup:hover {
  transform: perspective(2000px) rotateX(1deg) translateY(-8px);
  box-shadow:
    0 0 0 1px rgba(99, 102, 241, 0.15),
    0 40px 100px rgba(0,0,0,0.6),
    0 0 80px rgba(99, 102, 241, 0.12);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  background: rgba(10, 12, 18, 0.8);
  border-bottom: 1px solid var(--color-border);
}

.browser-dots {
  display: flex;
  gap: 7px;
}

.browser-dots span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #eab308; }
.browser-dots span:nth-child(3) { background: #22c55e; }

.browser-url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

.browser-url svg {
  color: #22c55e;
}

.browser-screen {
  width: 100%;
  display: block;
}

.panel-glow {
  position: absolute;
  inset: -80px;
  background: radial-gradient(ellipse at center, var(--color-primary-glow) 0%, transparent 55%);
  filter: blur(100px);
  z-index: -1;
  opacity: 0.35;
}

.panel-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.panel-feature {
  display: flex;
  gap: 18px;
  padding: 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  transition: var(--transition-smooth);
}

.panel-feature:hover {
  background: var(--color-surface-hover);
  border-color: rgba(99, 102, 241, 0.15);
  transform: translateY(-3px);
}

.pf-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.panel-feature h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
}

.panel-feature p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.panel-second-preview .browser-mockup {
  max-width: 900px;
  margin: 0 auto;
}

.browser-small {
  opacity: 0.85;
  transition: var(--transition-smooth), opacity 0.4s ease;
}

.browser-small:hover {
  opacity: 1;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 120px 0;
}

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

.step-card {
  position: relative;
  padding: 40px 32px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.step-card:hover {
  background: var(--color-surface-hover);
  border-color: rgba(99, 102, 241, 0.2);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.step-number {
  font-size: 64px;
  font-weight: 800;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(14, 165, 233, 0.2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 18px;
}

.step-card:hover .step-number {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-line {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
  margin: 0 auto 20px;
  border-radius: 3px;
  opacity: 0.5;
  transition: var(--transition-smooth);
}

.step-card:hover .step-line {
  width: 60px;
  opacity: 1;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}

.step-card p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 100px 0 120px;
}

.cta-card {
  position: relative;
  padding: 80px 60px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 28px;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 150%;
  background: radial-gradient(ellipse at center, rgba(99, 102, 241, 0.08) 0%, transparent 55%);
  z-index: 0;
  animation: pulse-glow 8s ease-in-out infinite alternate;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.cta-text {
  flex: 1;
  text-align: left;
}

.cta-card h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #fff;
}

.cta-text > p {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 520px;
  margin: 0 0 36px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cta-trust {
  display: flex;
  gap: 32px;
  justify-content: flex-start;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--color-text-muted);
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.cta-qr-wrapper {
  width: 180px;
  height: 180px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 60px rgba(99, 102, 241, 0.1);
  transition: var(--transition-smooth);
}

.cta-qr-wrapper:hover {
  transform: scale(1.05);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 0 80px rgba(99, 102, 241, 0.18);
}

.cta-qr-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.cta-qr-label {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== FOOTER ===== */
footer {
  border-top: 1px solid var(--color-border);
  padding: 64px 0 0;
  color: var(--color-text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-border);
}

.footer-brand p {
  margin-top: 16px;
  font-size: 15px;
  line-height: 1.6;
  max-width: 280px;
}

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

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition-smooth);
}

.footer-col a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  padding: 28px 0;
  text-align: center;
  font-size: 14px;
}

/* ===== FORMS (contact page) ===== */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-text-muted);
}

.form-control {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 16px;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-section {
  padding: 120px 0 80px;
}

.contact-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

/* ===== PRIVACY POLICY ===== */
.content-section {
  padding: 140px 0 80px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-surface);
  backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  padding: 52px;
}

.content-wrapper h1 {
  font-size: 32px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 16px;
}

.content-wrapper h2 {
  font-size: 24px;
  margin: 32px 0 16px;
  color: var(--color-text);
}

.content-wrapper p, .content-wrapper li {
  color: var(--color-text-muted);
  margin-bottom: 16px;
  font-size: 16px;
}

.content-wrapper ul {
  padding-left: 24px;
  margin-bottom: 24px;
}

.content-wrapper li {
  margin-bottom: 8px;
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.features-grid .glass-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid .glass-card:nth-child(3) { transition-delay: 0.2s; }
.features-grid .glass-card:nth-child(4) { transition-delay: 0.3s; }
.features-grid .glass-card:nth-child(5) { transition-delay: 0.4s; }
.features-grid .glass-card:nth-child(6) { transition-delay: 0.5s; }

.steps-grid .step-card:nth-child(2) { transition-delay: 0.15s; }
.steps-grid .step-card:nth-child(3) { transition-delay: 0.3s; }

.stats-grid .stat-item:nth-child(2) { transition-delay: 0.1s; }
.stats-grid .stat-item:nth-child(3) { transition-delay: 0.2s; }
.stats-grid .stat-item:nth-child(4) { transition-delay: 0.3s; }

/* ===== RESPONSIVENESS ===== */
@media (max-width: 992px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .vendor-card {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    gap: 40px;
  }

  .showcase-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .showcase-text {
    text-align: center;
  }

  .showcase-text .section-title {
    text-align: center;
  }

  .showcase-checklist li {
    text-align: left;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel-features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-bottom: 20px;
  }

  .stats-section,
  .features,
  .street-vendors-section,
  .app-showcase,
  .panel-showcase,
  .how-it-works,
  .cta-section {
    padding: 20px 0;
  }

  .features {
    padding-top: 60px;
  }

  .how-it-works {
    padding-top: 8px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    background: rgba(6, 8, 13, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    border-bottom: 1px solid var(--color-border);
    gap: 16px;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }



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

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    gap: 32px;
  }

  .stat-divider {
    display: none;
  }

  .stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .phones-container {
    width: 320px;
    height: 460px;
  }

  .phone-back .phone-frame {
    width: 200px;
    height: 420px;
  }

  .phone-front .phone-frame {
    width: 220px;
    height: 460px;
  }

  .cta-card {
    padding: 48px 24px;
  }

  .cta-layout {
    flex-direction: column;
    text-align: center;
  }

  .cta-text {
    text-align: center;
  }

  .cta-actions {
    justify-content: center;
  }

  .cta-trust {
    justify-content: center;
  }

  .cta-qr-wrapper {
    width: 160px;
    height: 160px;
  }

  .content-wrapper {
    padding: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .panel-second-preview {
    display: none;
  }
}

@media (max-width: 480px) {
  .phone-hero .phone-frame {
    width: 240px;
    height: 500px;
  }

  .phones-container {
    width: 280px;
    height: 420px;
  }

  .phone-back .phone-frame {
    width: 180px;
    height: 380px;
  }

  .phone-front .phone-frame {
    width: 200px;
    height: 420px;
  }
}
