:root {
  --green: #10B981;
  --green-light: #34D399;
  --green-dark: #059669;
  --blue-dark: #0F172A;
  --blue-mid: #1E293B;
  --blue-soft: #334155;
  --white: #ffffff;
  --gray-light: #F1F5F9;
  --gray-mid: #94A3B8;
  --glass-bg: rgba(255,255,255,0.06);
  --glass-border: rgba(255,255,255,0.12);
  --glow: 0 0 40px rgba(16,185,129,0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--blue-dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── KEYFRAMES ─────────────────────────────────── */
@keyframes float {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-18px); }
}
@keyframes floatReverse {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(14px) rotate(3deg); }
}
@keyframes pulse-glow {
  0%,100% { box-shadow: 0 0 20px rgba(16,185,129,0.3); }
  50% { box-shadow: 0 0 60px rgba(16,185,129,0.7); }
}
@keyframes drift {
  0% { transform: translate(0,0) scale(1); }
  33% { transform: translate(30px,-20px) scale(1.05); }
  66% { transform: translate(-20px,10px) scale(0.97); }
  100% { transform: translate(0,0) scale(1); }
}
@keyframes particle-rise {
  0% { opacity:0; transform: translateY(0) scale(0); }
  10% { opacity:1; }
  90% { opacity:0.6; }
  100% { opacity:0; transform: translateY(-120px) scale(1.5); }
}
@keyframes fadeInUp {
  from { opacity:0; transform: translateY(40px); }
  to { opacity:1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity:0; transform: translateX(-50px); }
  to { opacity:1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity:0; transform: translateX(50px); }
  to { opacity:1; transform: translateX(0); }
}
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes ping-dot {
  0%,100% { transform: scale(1); opacity:1; }
  50% { transform: scale(1.8); opacity:0.4; }
}

/* ─── REVEAL ON SCROLL ─── */
.reveal { opacity:0; transform:translateY(50px); transition:opacity 0.8s ease,transform 0.8s ease; }
.reveal.revealed { opacity:1; transform:translateY(0); }
.reveal-left { opacity:0; transform:translateX(-60px); transition:opacity 0.8s ease,transform 0.8s ease; }
.reveal-left.revealed { opacity:1; transform:translateX(0); }
.reveal-right { opacity:0; transform:translateX(60px); transition:opacity 0.8s ease,transform 0.8s ease; }
.reveal-right.revealed { opacity:1; transform:translateX(0); }

/* ─── NAVBAR ─────────────────────────────────────── */
nav {
  position: fixed;
  top:0; left:0; right:0;
  z-index: 1000;
  padding: 14px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(20px);
  background: rgba(15,23,42,0.85);
  border-bottom: 1px solid var(--glass-border);
  transition: all 0.3s ease;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: var(--gray-mid);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(16,185,129,0.4);
}

/* ─── HERO ─────────────────────────────────────── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 5% 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 40%, rgba(16,185,129,0.18) 0%, transparent 60%),
              radial-gradient(ellipse 60% 80% at 80% 70%, rgba(15,23,42,0.8) 0%, transparent 60%),
              linear-gradient(135deg, #0F172A 0%, #0d1f2d 50%, #0F172A 100%);
  overflow: hidden;
}
.hero-bg::before {
  content:'';
  position:absolute;
  width:800px;height:800px;
  top:-200px;right:-200px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
  animation: drift 12s ease-in-out infinite;
}
.hero-bg::after {
  content:'';
  position:absolute;
  width:600px;height:600px;
  bottom:-150px;left:10%;
  border-radius:50%;
  background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%);
  animation: drift 16s ease-in-out infinite reverse;
}
.particles { position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.particle {
  position:absolute;
  width:4px;height:4px;
  border-radius:50%;
  background: var(--green);
  animation: particle-rise linear infinite;
  opacity:0;
}
.hero-content {
  position:relative;
  z-index:2;
  flex:1;
  max-width:620px;
  animation: fadeInLeft 1s ease 0.3s both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--green-light);
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}
.hero-badge .dot {
  width:6px;height:6px;
  border-radius:50%;
  background:var(--green);
  animation: ping-dot 1.5s ease infinite;
}
.hero-headline {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-headline .accent {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 50%, #6EE7B7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: shimmer 4s linear infinite;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--gray-mid);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(16,185,129,0.5);
}
.btn-secondary {
  background: transparent;
  color: white;
  border: 1.5px solid var(--glass-border);
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-3px);
  background: rgba(16,185,129,0.08);
}
.hero-stats { display: flex; gap: 40px; }
.stat-item { text-align: left; }
.stat-number { font-family: 'Poppins', sans-serif; font-size: 1.6rem; font-weight: 800; color: var(--green-light); }
.stat-label { font-size: 0.78rem; color: var(--gray-mid); margin-top: 2px; }

/* Phone mockup */
.hero-visual {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  animation: fadeInRight 1s ease 0.5s both;
}
.phone-wrapper {
  position: relative;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 40px 80px rgba(16,185,129,0.3));
}
.phone-frame {
  width: 270px; height: 540px;
  background: linear-gradient(145deg, #1E293B, #0F172A);
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,0.12);
  overflow: hidden;
  position: relative;
  box-shadow: 0 0 0 1px rgba(16,185,129,0.2), inset 0 1px 0 rgba(255,255,255,0.08);
}
.phone-notch {
  width: 100px; height: 26px;
  background: #0F172A;
  border-radius: 0 0 20px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.phone-screen { background: #0D1B2A; height: 100%; padding: 8px; overflow: hidden; }
.app-header {
  background: linear-gradient(135deg, var(--green-dark), #064E3B);
  border-radius: 16px; padding: 12px; margin-bottom: 8px;
}
.app-header-row { display:flex; align-items:center; justify-content:space-between; margin-bottom: 8px; }
.app-logo-sm { font-family:'Poppins',sans-serif; font-weight:800; font-size:0.9rem; color:white; }
.search-bar-sm {
  background:rgba(255,255,255,0.15); border-radius:8px;
  padding:6px 10px; font-size:0.6rem; color:rgba(255,255,255,0.7);
  display:flex; align-items:center; gap:6px;
}
.app-cats { display:flex; gap:6px; margin-bottom:8px; overflow:hidden; }
.app-cat-pill {
  background:rgba(16,185,129,0.15); border:1px solid rgba(16,185,129,0.3);
  border-radius:20px; padding:3px 10px; font-size:0.5rem; color:var(--green-light); white-space:nowrap;
}
.app-section-title { font-size:0.6rem; font-weight:600; color:rgba(255,255,255,0.9); margin-bottom:6px; font-family:'Poppins',sans-serif; }
.app-shops { display:grid; grid-template-columns:1fr 1fr; gap:5px; margin-bottom:8px; }
.app-shop-card { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); border-radius:10px; overflow:hidden; }
.app-shop-img { width:100%; height:40px; object-fit:cover; }
.app-shop-info { padding:4px 5px; }
.app-shop-name { font-size:0.5rem; font-weight:600; color:white; }
.app-shop-dist { font-size:0.45rem; color:var(--green-light); display:flex; align-items:center; gap:2px; }
.app-product-row { display:flex; gap:5px; overflow:hidden; }
.app-product-card { background:rgba(255,255,255,0.06); border:1px solid rgba(255,255,255,0.1); border-radius:8px; padding:5px; min-width:60px; }
.app-product-img { width:100%; height:30px; object-fit:cover; border-radius:5px; margin-bottom:3px; }
.app-product-name { font-size:0.45rem; color:rgba(255,255,255,0.8); }
.app-product-price { font-size:0.5rem; color:var(--green-light); font-weight:700; }
.float-icons { position:absolute; inset:0; pointer-events:none; }
.float-icon {
  position:absolute;
  background: var(--glass-bg);
  backdrop-filter:blur(10px);
  border:1px solid var(--glass-border);
  border-radius:16px;
  padding:10px 14px;
  display:flex; align-items:center; gap:8px;
  font-size:0.75rem; color:white; font-weight:600; white-space:nowrap;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.float-icon .icon-emoji { font-size:1.2rem; }
.fi-1 { top:12%; left:-20%; animation: float 5s ease-in-out infinite; }
.fi-2 { top:28%; right:-15%; animation: float 6s ease-in-out 1s infinite; }
.fi-3 { top:55%; left:-22%; animation: floatReverse 7s ease-in-out 0.5s infinite; }
.fi-4 { bottom:20%; right:-18%; animation: float 5.5s ease-in-out 1.5s infinite; }
.fi-5 { bottom:8%; left:-8%; animation: floatReverse 8s ease-in-out 2s infinite; }

/* ─── SECTION COMMON ─────────────────────────────── */
section { padding: 100px 5%; position: relative; overflow: hidden; }
.section-label { font-size:0.78rem; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:var(--green); margin-bottom:12px; }
.section-title { font-family:'Poppins',sans-serif; font-size:clamp(1.8rem,3.5vw,2.8rem); font-weight:800; line-height:1.15; margin-bottom:16px; letter-spacing:-0.5px; }
.section-sub { font-size:1rem; color:var(--gray-mid); line-height:1.7; max-width:560px; }
.section-header { text-align:center; margin-bottom:64px; }
.section-header .section-sub { margin:0 auto; }

/* ─── FEATURES ─────────────────────────────────── */
#features { background: var(--blue-mid); }
.features-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:24px; }
.feature-card {
  background:var(--glass-bg); backdrop-filter:blur(20px);
  border:1px solid var(--glass-border); border-radius:20px; padding:28px;
  transition:all 0.4s ease; position:relative; overflow:hidden; cursor:default;
}
.feature-card::before {
  content:''; position:absolute; top:0;left:0;right:0; height:2px;
  background:linear-gradient(90deg,transparent,var(--green),transparent);
  opacity:0; transition:opacity 0.3s;
}
.feature-card:hover { transform:translateY(-8px); border-color:rgba(16,185,129,0.4); box-shadow:0 20px 60px rgba(0,0,0,0.4),var(--glow); }
.feature-card:hover::before { opacity:1; }
.feature-icon {
  width:52px;height:52px;
  background:linear-gradient(135deg,rgba(16,185,129,0.2),rgba(16,185,129,0.05));
  border:1px solid rgba(16,185,129,0.3); border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  font-size:1.4rem; margin-bottom:16px; transition:all 0.3s;
}
.feature-card:hover .feature-icon {
  background:linear-gradient(135deg,rgba(16,185,129,0.35),rgba(16,185,129,0.1));
  box-shadow:0 0 20px rgba(16,185,129,0.3); transform:scale(1.1);
}
.feature-title { font-family:'Poppins',sans-serif; font-size:1rem; font-weight:700; margin-bottom:8px; }
.feature-desc { font-size:0.85rem; color:var(--gray-mid); line-height:1.6; }
.stagger-child { transition-delay: calc(var(--i, 0) * 0.08s); }

/* ─── CATEGORIES ─────────────────────────────────── */
#categories { background: var(--blue-dark); }
.categories-grid { display:grid; grid-template-columns:repeat(3,1fr); grid-template-rows:auto auto; gap:20px; }
.cat-card { position:relative; border-radius:24px; overflow:hidden; cursor:pointer; transition:transform 0.4s ease; }
.cat-card:hover { transform:translateY(-6px) scale(1.02); }
.cat-card:hover .cat-img { transform:scale(1.1); }
.cat-card:nth-child(1) { grid-row:span 2; min-height:440px; }
.cat-card:nth-child(2),.cat-card:nth-child(3),.cat-card:nth-child(4),.cat-card:nth-child(5) { min-height:200px; }
.cat-img { width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease;position:absolute;inset:0; }
.cat-overlay {
  position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 30%,rgba(15,23,42,0.95) 100%);
  display:flex;flex-direction:column;justify-content:flex-end;padding:24px;transition:background 0.3s;
}
.cat-card:hover .cat-overlay { background:linear-gradient(180deg,rgba(16,185,129,0.05) 0%,rgba(15,23,42,0.97) 100%); }
.cat-name { font-family:'Poppins',sans-serif; font-size:1.2rem; font-weight:800; color:white; }
.cat-count { font-size:0.8rem; color:var(--green-light); margin-top:4px; }
.cat-arrow {
  position:absolute;top:16px;right:16px;width:36px;height:36px;
  background:rgba(16,185,129,0.2);border:1px solid rgba(16,185,129,0.4);
  border-radius:50%;display:flex;align-items:center;justify-content:center;
  font-size:0.9rem;opacity:0;transform:translate(4px,-4px);transition:all 0.3s;
}
.cat-card:hover .cat-arrow { opacity:1; transform:translate(0,0); }

/* ─── HOW IT WORKS ──────────────────────────────── */
#how-it-works { background: var(--blue-mid); }
.steps-container {
  display:flex; gap:0; align-items:flex-start; position:relative;
  justify-content:center; max-width:900px; margin:0 auto;
}
.step-item { flex:1; text-align:center; position:relative; padding:0 20px; }
.step-connector {
  position:absolute; top:36px; left:50%; right:-50%;
  height:2px; background:linear-gradient(90deg,var(--green),rgba(16,185,129,0.2));
}
.step-item:last-child .step-connector { display:none; }
.step-number-ring {
  width:72px;height:72px;border-radius:50%;border:2px solid var(--green);
  display:flex;align-items:center;justify-content:center;
  margin:0 auto 24px;position:relative;
  background:linear-gradient(135deg,rgba(16,185,129,0.15),rgba(16,185,129,0.03));
  box-shadow:0 0 30px rgba(16,185,129,0.2);transition:all 0.4s;
}
.step-item:hover .step-number-ring { box-shadow:0 0 50px rgba(16,185,129,0.5); transform:scale(1.1); }
.step-icon-ring { font-size:1.6rem; }
.step-title { font-family:'Poppins',sans-serif; font-size:1.1rem; font-weight:700; margin-bottom:10px; }
.step-desc { font-size:0.88rem; color:var(--gray-mid); line-height:1.6; }

/* ─── SHOPKEEPER ────────────────────────────────── */
#shopkeeper { background: var(--blue-dark); }
.shop-layout { display:grid; grid-template-columns:1fr 1.1fr; gap:80px; align-items:center; }
.shop-features-list { display:flex; flex-direction:column; gap:16px; margin-top:36px; }
.shop-feature-item {
  display:flex; gap:16px; align-items:flex-start; padding:18px;
  background:var(--glass-bg); border:1px solid var(--glass-border); border-radius:16px; transition:all 0.3s;
}
.shop-feature-item:hover { border-color:rgba(16,185,129,0.4); background:rgba(16,185,129,0.06); transform:translateX(8px); }
.shop-feature-icon {
  font-size:1.4rem; flex-shrink:0; width:44px;height:44px;
  background:rgba(16,185,129,0.1); border-radius:12px; display:flex;align-items:center;justify-content:center;
}
.shop-feature-text h4 { font-family:'Poppins',sans-serif; font-size:0.95rem; font-weight:700; margin-bottom:4px; }
.shop-feature-text p { font-size:0.82rem; color:var(--gray-mid); line-height:1.5; }
.dashboard-mockup {
  background:var(--blue-mid); border:1px solid var(--glass-border); border-radius:24px;
  padding:24px; animation:float 7s ease-in-out infinite;
  box-shadow:0 40px 80px rgba(0,0,0,0.5),0 0 40px rgba(16,185,129,0.1);
}
.dash-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:20px; }
.dash-title { font-family:'Poppins',sans-serif; font-size:1rem; font-weight:700; }
.dash-date { font-size:0.75rem; color:var(--gray-mid); }
.dash-stats-row { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-bottom:20px; }
.dash-stat { background:rgba(16,185,129,0.08); border:1px solid rgba(16,185,129,0.2); border-radius:14px; padding:14px; text-align:center; }
.dash-stat-val { font-family:'Poppins',sans-serif; font-size:1.3rem; font-weight:800; color:var(--green-light); }
.dash-stat-label { font-size:0.65rem; color:var(--gray-mid); margin-top:2px; }
.dash-chart { background:rgba(0,0,0,0.2); border-radius:14px; padding:16px; margin-bottom:16px; }
.chart-title { font-size:0.75rem; color:var(--gray-mid); margin-bottom:12px; }
.chart-bars { display:flex; align-items:flex-end; gap:8px; height:70px; }
.chart-bar { flex:1; background:linear-gradient(180deg,var(--green),var(--green-dark)); border-radius:4px 4px 0 0; transition:height 1s ease; opacity:0.85; }
.chart-bar:hover { opacity:1; }
.chart-labels { display:flex; gap:8px; margin-top:6px; }
.chart-label { flex:1; text-align:center; font-size:0.55rem; color:var(--gray-mid); }
.dash-products-list { display:flex; flex-direction:column; gap:8px; }
.dash-product-row { display:flex; justify-content:space-between; align-items:center; padding:8px 12px; background:rgba(255,255,255,0.04); border-radius:10px; }
.dash-product-name { font-size:0.75rem; color:rgba(255,255,255,0.85); display:flex; align-items:center; gap:8px; }
.dash-product-dot { width:8px;height:8px; border-radius:50%; background:var(--green); }
.dash-product-price { font-size:0.75rem; font-weight:700; color:var(--green-light); }

/* ─── LIVE MARKET ──────────────────────────────── */
#live-market { background: var(--blue-mid); }
.market-layout { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
.map-mockup { position:relative; border-radius:24px; overflow:hidden; border:1px solid var(--glass-border); box-shadow:0 40px 80px rgba(0,0,0,0.4); height:460px; }
.map-bg { width:100%; height:100%; object-fit:cover; filter:saturate(0.6) brightness(0.6); }
.map-overlay-ui { position:absolute; inset:0; background:linear-gradient(180deg,rgba(15,23,42,0.3) 0%,rgba(15,23,42,0.6) 100%); }
.map-pins { position:absolute; inset:0; }
.map-pin { position:absolute; display:flex; flex-direction:column; align-items:center; cursor:pointer; }
.map-pin-dot { width:14px;height:14px; border-radius:50%; background:var(--green); border:2px solid white; box-shadow:0 0 0 4px rgba(16,185,129,0.3); animation:ping-dot 2s ease infinite; }
.map-pin-label { background:rgba(15,23,42,0.9); border:1px solid rgba(16,185,129,0.4); border-radius:8px; padding:4px 10px; font-size:0.65rem; font-weight:600; color:white; white-space:nowrap; margin-top:4px; }
.map-product-float {
  position:absolute; background:rgba(15,23,42,0.92); backdrop-filter:blur(10px);
  border:1px solid var(--glass-border); border-radius:12px; padding:10px 12px;
  display:flex; align-items:center; gap:10px; box-shadow:0 8px 32px rgba(0,0,0,0.4);
}
.mpf-img { width:40px;height:40px; border-radius:8px; object-fit:cover; }
.mpf-name { font-size:0.7rem; font-weight:600; color:white; }
.mpf-price { font-size:0.7rem; color:var(--green-light); font-weight:700; }
.live-badge { position:absolute; top:16px;right:16px; background:rgba(16,185,129,0.2); border:1px solid rgba(16,185,129,0.5); border-radius:20px; padding:6px 14px; font-size:0.7rem; color:var(--green-light); font-weight:700; display:flex; align-items:center; gap:6px; }
.live-dot { width:6px;height:6px; border-radius:50%; background:var(--green); animation:ping-dot 1s ease infinite; }
.market-right { display:flex; flex-direction:column; gap:20px; }
.market-card { background:var(--glass-bg); border:1px solid var(--glass-border); border-radius:18px; padding:20px; display:flex; gap:16px; align-items:center; transition:all 0.3s; }
.market-card:hover { border-color:rgba(16,185,129,0.4); transform:translateX(8px); }
.market-card-icon { width:48px;height:48px; border-radius:14px; overflow:hidden; flex-shrink:0; }
.market-card-icon img { width:100%;height:100%; object-fit:cover; }
.market-card-name { font-family:'Poppins',sans-serif; font-size:0.9rem; font-weight:700; margin-bottom:4px; }
.market-card-meta { font-size:0.75rem; color:var(--gray-mid); }
.market-card-price { margin-left:auto; text-align:right; }
.market-card-price-val { font-family:'Poppins',sans-serif; font-size:0.95rem; font-weight:800; color:var(--green-light); }
.market-card-price-label { font-size:0.65rem; color:var(--gray-mid); }

/* ─── TESTIMONIALS ──────────────────────────────── */
#testimonials { background: var(--blue-dark); overflow:hidden; }
.testimonials-track-wrapper { overflow:hidden; margin:0 -5%; padding:0 5%; }
.testimonials-track { display:flex; gap:24px; transition:transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.testimonial-card {
  background:var(--glass-bg); border:1px solid var(--glass-border); border-radius:24px;
  padding:28px; min-width:360px; flex-shrink:0; position:relative; overflow:hidden; transition:all 0.3s;
}
.testimonial-card::before { content:''; position:absolute; top:0;left:0;right:0; height:2px; background:linear-gradient(90deg,var(--green),transparent); }
.testimonial-card:hover { border-color:rgba(16,185,129,0.35); transform:translateY(-4px); box-shadow:0 20px 50px rgba(0,0,0,0.4); }
.testimonial-quote { font-size:2rem; color:rgba(16,185,129,0.3); font-family:Georgia,serif; line-height:1; margin-bottom:12px; }
.testimonial-text { font-size:0.9rem; color:rgba(255,255,255,0.85); line-height:1.7; margin-bottom:20px; }
.testimonial-author { display:flex; align-items:center; gap:14px; }
.author-avatar {
  width:44px;height:44px; border-radius:50%;
  background:linear-gradient(135deg,var(--green-dark),var(--blue-mid));
  display:flex;align-items:center;justify-content:center;
  font-size:1.1rem; border:2px solid rgba(16,185,129,0.3);
  font-weight:700; font-family:'Poppins',sans-serif; color:var(--green-light);
}
.author-name { font-family:'Poppins',sans-serif; font-size:0.9rem; font-weight:700; }
.author-role { font-size:0.75rem; color:var(--gray-mid); }
.stars { color:#F59E0B; font-size:0.8rem; margin-left:auto; letter-spacing:2px; }
.slider-controls { display:flex; justify-content:center; gap:12px; margin-top:40px; }
.slider-btn { width:44px;height:44px; border-radius:50%; border:1px solid var(--glass-border); background:var(--glass-bg); color:white; font-size:1rem; cursor:pointer; display:flex;align-items:center;justify-content:center; transition:all 0.2s; }
.slider-btn:hover { border-color:var(--green); background:rgba(16,185,129,0.1); transform:scale(1.1); }
.slider-dots { display:flex; gap:8px; align-items:center; }
.slider-dot { width:8px;height:8px; border-radius:50%; background:var(--blue-soft); transition:all 0.3s; cursor:pointer; }
.slider-dot.active { background:var(--green); width:24px; border-radius:4px; }

/* ─── CTA ────────────────────────────────────────── */
#cta { padding:120px 5%; position:relative; overflow:hidden; text-align:center; }
.cta-bg {
  position:absolute; inset:0;
  background:radial-gradient(ellipse 100% 100% at 50% 50%,rgba(16,185,129,0.15) 0%,transparent 70%),
             linear-gradient(135deg,#0F172A,#0d1f2d);
}
.cta-bg::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(circle at 20% 50%,rgba(16,185,129,0.12) 0%,transparent 40%),
              radial-gradient(circle at 80% 30%,rgba(16,185,129,0.08) 0%,transparent 40%);
}
.cta-content { position:relative; z-index:2; }
.cta-title { font-family:'Poppins',sans-serif; font-size:clamp(2rem,4vw,3.5rem); font-weight:900; margin-bottom:16px; letter-spacing:-1px; }
.cta-sub { font-size:1.05rem; color:var(--gray-mid); margin-bottom:48px; max-width:500px; margin-left:auto; margin-right:auto; }
.cta-buttons { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; margin-top:24px; }
.btn-cta-primary {
  background:linear-gradient(135deg,var(--green),var(--green-dark));
  color:white; border:none; padding:16px 40px; border-radius:50px;
  font-family:'Poppins',sans-serif; font-weight:700; font-size:1rem; cursor:pointer;
  animation:pulse-glow 3s ease infinite; transition:transform 0.2s;
  text-decoration:none; display:inline-flex; align-items:center; gap:10px;
}
.btn-cta-primary:hover { transform:scale(1.05); }
.btn-cta-secondary {
  background:transparent; color:white; border:2px solid rgba(255,255,255,0.2); padding:16px 40px;
  border-radius:50px; font-family:'Poppins',sans-serif; font-weight:700; font-size:1rem; cursor:pointer;
  transition:all 0.3s; text-decoration:none; display:inline-block;
}
.btn-cta-secondary:hover { border-color:var(--green); color:var(--green); background:rgba(16,185,129,0.08); }

/* Waitlist Form */
.waitlist-form { max-width:700px; margin:0 auto; }
.waitlist-input-row {
  display:flex; gap:12px; flex-wrap:wrap; justify-content:center; margin-bottom:14px;
}
.waitlist-input {
  flex:1; min-width:180px; padding:14px 20px;
  background:rgba(255,255,255,0.07); border:1px solid rgba(255,255,255,0.15);
  border-radius:50px; color:white; font-family:'Inter',sans-serif; font-size:0.9rem;
  outline:none; transition:border-color 0.2s,background 0.2s;
}
.waitlist-input::placeholder { color:rgba(255,255,255,0.4); }
.waitlist-input:focus { border-color:var(--green); background:rgba(16,185,129,0.08); }
.waitlist-select { appearance:none; -webkit-appearance:none; cursor:pointer; }
.waitlist-select option { background:#1E293B; color:white; }
.waitlist-note { font-size:0.78rem; color:var(--gray-mid); text-align:center; }
.waitlist-submit {
  background:linear-gradient(135deg,var(--green),var(--green-dark));
  color:white; border:none; padding:14px 28px; border-radius:50px;
  font-family:'Poppins',sans-serif; font-weight:700; font-size:0.95rem;
  cursor:pointer; transition:all 0.3s; white-space:nowrap;
}
.waitlist-submit:hover { transform:translateY(-2px); box-shadow:0 10px 30px rgba(16,185,129,0.5); }
.waitlist-success {
  display:none; flex-direction:column; align-items:center;
  gap:12px; padding:32px; background:rgba(16,185,129,0.1);
  border:1px solid rgba(16,185,129,0.3); border-radius:20px; max-width:480px; margin:0 auto;
}
.waitlist-success .success-icon { font-size:3rem; }
.waitlist-success h3 { font-family:'Poppins',sans-serif; font-size:1.3rem; font-weight:800; color:var(--green-light); }
.waitlist-success p { font-size:0.9rem; color:var(--gray-mid); text-align:center; line-height:1.6; }

/* ─── FOOTER ─────────────────────────────────────── */
footer { background:#080F1A; padding:80px 5% 40px; border-top:1px solid var(--glass-border); }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:60px; margin-bottom:60px; }
.footer-logo { display:flex; align-items:center; gap:10px; margin-bottom:16px; }
.footer-logo img { height:36px; width:auto; object-fit:contain; }
.footer-logo-text { font-family:'Poppins',sans-serif; font-size:1.4rem; font-weight:800; background:linear-gradient(135deg,#10B981,#34D399); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.footer-brand-desc { font-size:0.87rem; color:var(--gray-mid); line-height:1.7; margin-bottom:24px; max-width:280px; }
.social-links { display:flex; gap:10px; }
.social-link {
  width:38px;height:38px; border-radius:10px; background:var(--glass-bg);
  border:1px solid var(--glass-border); display:flex;align-items:center;justify-content:center;
  font-size:0.9rem; color:var(--gray-mid); text-decoration:none; transition:all 0.2s;
}
.social-link:hover { background:rgba(16,185,129,0.15); border-color:rgba(16,185,129,0.4); color:var(--green-light); transform:translateY(-2px); box-shadow:0 0 12px rgba(16,185,129,0.3); }
.footer-col-title { font-family:'Poppins',sans-serif; font-size:0.9rem; font-weight:700; margin-bottom:20px; color:white; }
.footer-links { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:0.85rem; color:var(--gray-mid); text-decoration:none; transition:color 0.2s; display:inline-block; }
.footer-links a:hover { color:var(--green-light); transform:translateX(4px); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.06); padding-top:30px; display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px; }
.footer-copy { font-size:0.82rem; color:var(--gray-mid); }
.footer-copy span { color:var(--green-light); }
.app-badges { display:flex; gap:12px; }
.app-badge {
  background:rgba(255,255,255,0.06); border:1px solid var(--glass-border); border-radius:10px;
  padding:8px 16px; font-size:0.75rem; color:white; font-weight:600;
  display:flex;align-items:center;gap:8px; cursor:pointer; transition:all 0.2s;
}
.app-badge:hover { background:rgba(16,185,129,0.1); border-color:rgba(16,185,129,0.3); }
.app-badge-icon { font-size:1.1rem; }

/* ─── HAMBURGER ────────────────────────────────── */
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; background:none; border:none; }
.hamburger span { width:24px; height:2px; background:white; border-radius:2px; transition:all 0.3s; }
.mobile-menu {
  display:none; position:fixed; top:68px; left:0; right:0; z-index:999;
  background:rgba(15,23,42,0.98); backdrop-filter:blur(20px);
  border-bottom:1px solid var(--glass-border); padding:20px 5%;
  flex-direction:column; gap:16px;
}
.mobile-menu.open { display:flex; }
.mobile-menu a { color:var(--gray-mid); text-decoration:none; font-size:1rem; font-weight:500; padding:8px 0; border-bottom:1px solid rgba(255,255,255,0.06); transition:color 0.2s; }
.mobile-menu a:hover { color:var(--green); }

/* ─── RESPONSIVE ──────────────────────────────────── */
@media (max-width:900px) {
  #hero { flex-direction:column; padding:100px 5% 60px; gap:60px; }
  .hero-visual { order:-1; }
  .phone-frame { width:220px; height:440px; }
  .fi-1,.fi-2,.fi-3,.fi-4,.fi-5 { display:none; }
  .categories-grid { grid-template-columns:1fr 1fr; }
  .cat-card:nth-child(1) { grid-column:span 2; min-height:220px; grid-row:span 1; }
  .shop-layout { grid-template-columns:1fr; gap:40px; }
  .market-layout { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .steps-container { flex-direction:column; align-items:center; }
  .step-connector { display:none; }
}
@media (max-width:600px) {
  .categories-grid { grid-template-columns:1fr; }
  .cat-card:nth-child(1) { grid-column:auto; min-height:200px; }
  .footer-grid { grid-template-columns:1fr; gap:36px; }
  .hero-stats { gap:24px; }
  .testimonial-card { min-width:290px; }
  .waitlist-input-row { flex-direction:column; align-items:stretch; }
  .waitlist-input { min-width:unset; border-radius:14px; }
  .waitlist-submit { border-radius:14px; width:100%; }
}
