/* ===== easyGroceries Landing Page ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #1a1a2e;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.lp-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== Header ===== */
.lp-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid #eceef2;
  z-index: 50;
}
.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  font-size: 1.1rem;
}
.lp-brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, #16a34a, #0d9488);
  color: #fff;
  font-weight: 800;
}
.lp-nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.95rem;
  color: #4b5563;
}
.lp-nav a:hover { color: #16a34a; }

/* ===== Buttons ===== */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.08s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  font-size: 0.95rem;
  padding: 0.65rem 1.25rem;
}
.lp-btn-sm { padding: 0.45rem 1rem; font-size: 0.9rem; }
.lp-btn-lg { padding: 0.9rem 1.6rem; font-size: 1.05rem; }
.lp-btn-primary {
  background: #16a34a;
  color: #fff;
}
.lp-btn-primary:hover { background: #15803d; transform: translateY(-1px); }
.lp-btn-ghost {
  background: transparent;
  color: #16a34a;
  border-color: #16a34a;
}
.lp-btn-ghost:hover { background: #f0fdf4; }

/* ===== Hero ===== */
.lp-hero {
  background:
    radial-gradient(1200px 400px at 20% -10%, #dcfce7 0%, transparent 60%),
    radial-gradient(800px 300px at 90% 0%, #ccfbf1 0%, transparent 60%),
    #ffffff;
  padding: 4.5rem 0 4rem;
}
.lp-hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}
.lp-eyebrow {
  display: inline-block;
  background: #ecfdf5;
  color: #047857;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.lp-hero-copy h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
  color: #0f172a;
}
.lp-lead {
  margin-top: 1.25rem;
  font-size: 1.15rem;
  color: #475569;
  max-width: 540px;
}
.lp-cta-row {
  margin-top: 2rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.lp-cta-note {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: #64748b;
}

/* ===== Hero mock card ===== */
.lp-hero-visual {
  display: flex;
  justify-content: center;
}
.lp-mock-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  box-shadow: 0 20px 50px -20px rgba(15, 23, 42, 0.25);
  padding: 1.25rem;
}
.lp-mock-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #f1f5f9;
  margin-bottom: 0.75rem;
}
.lp-mock-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}
.lp-mock-dot:nth-child(1) { background: #f87171; }
.lp-mock-dot:nth-child(2) { background: #fbbf24; }
.lp-mock-dot:nth-child(3) { background: #34d399; }
.lp-mock-title {
  margin-left: auto;
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}
.lp-mock-row {
  display: flex;
  justify-content: space-between;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  color: #334155;
  border-bottom: 1px dashed #f1f5f9;
}
.lp-mock-price { color: #0f172a; font-weight: 600; }
.lp-mock-totals {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.lp-mock-total {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: #f8fafc;
}
.lp-mock-total-best {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
}
.lp-mock-store { font-weight: 600; color: #0f172a; }
.lp-mock-amt { font-weight: 700; color: #0f172a; }
.lp-mock-tag {
  font-size: 0.75rem;
  background: #16a34a;
  color: #fff;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-weight: 600;
}
.lp-mock-tag-muted {
  background: #e2e8f0;
  color: #475569;
}

/* ===== Sections ===== */
.lp-section { padding: 5rem 0; }
.lp-section-alt { background: #f8fafc; }
.lp-section-title {
  text-align: center;
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.lp-section-sub {
  text-align: center;
  color: #64748b;
  margin-top: 0.65rem;
  font-size: 1.05rem;
}

/* ===== Steps ===== */
.lp-steps {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.lp-step {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
}
.lp-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #16a34a;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
}
.lp-step h3 { font-size: 1.15rem; margin-bottom: 0.4rem; color: #0f172a; }
.lp-step p { color: #475569; font-size: 0.95rem; }

/* ===== Features ===== */
.lp-features {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.lp-feature {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.5rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.lp-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -15px rgba(15, 23, 42, 0.18);
}
.lp-feature-icon {
  font-size: 1.6rem;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ecfdf5;
  border-radius: 12px;
  margin-bottom: 0.9rem;
}
.lp-feature h3 { font-size: 1.05rem; color: #0f172a; margin-bottom: 0.3rem; }
.lp-feature p { color: #475569; font-size: 0.93rem; }

/* ===== Stores ===== */
.lp-store-logos {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.lp-store-chip {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  color: #0f172a;
  font-size: 0.95rem;
}
.lp-store-chip-soon {
  background: transparent;
  color: #64748b;
  font-weight: 500;
  border-style: dashed;
}

/* ===== Testimonials ===== */
.lp-testimonials {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.lp-quote {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lp-quote blockquote {
  font-size: 0.98rem;
  color: #1f2937;
  line-height: 1.55;
}
.lp-quote figcaption {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: #64748b;
}
.lp-quote-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}

/* ===== Final CTA banner ===== */
.lp-cta-banner {
  background: linear-gradient(135deg, #16a34a 0%, #0d9488 100%);
  color: #fff;
  padding: 4rem 0;
}
.lp-cta-banner-inner {
  text-align: center;
}
.lp-cta-banner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
}
.lp-cta-banner p {
  margin-top: 0.6rem;
  opacity: 0.92;
  font-size: 1.05rem;
}
.lp-cta-banner .lp-btn-primary {
  margin-top: 1.75rem;
  background: #fff;
  color: #15803d;
}
.lp-cta-banner .lp-btn-primary:hover { background: #f0fdf4; }

/* ===== Footer ===== */
.lp-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 2rem 0;
}
.lp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.lp-footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #fff;
}
.lp-footer-copy { font-size: 0.85rem; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .lp-hero { padding: 3rem 0; }
  .lp-hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .lp-nav { display: none; }
  .lp-steps,
  .lp-features,
  .lp-testimonials { grid-template-columns: 1fr; }
  .lp-section { padding: 3.5rem 0; }
}
@media (max-width: 560px) {
  .lp-cta-row { flex-direction: column; align-items: stretch; }
  .lp-btn { width: 100%; }
  .lp-header-inner { gap: 0.5rem; }
}
