/* ============================================================
   LOCAL DELIVERY APP — World-Class Premium Light Theme
   ============================================================ */

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

/* ── Reset & Variables ────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Curated Premium Light Corporate Palette */
  --bg-white: #FFFFFF;
  --bg-slate: #F8FAFC;
  /* Soft tech light gray */
  --bg-cream: #FFFDF7;
  /* Warm premium culinary cream */
  --bg-card: rgba(255, 255, 255, 0.75);
  /* Frosted glass white card */
  --border-color: rgba(15, 23, 42, 0.06);
  --border-glow: rgba(255, 78, 43, 0.15);

  /* Culinary Accent Palette */
  --primary: #FF4E2B;
  /* Vibrant Culinary Orange-Red */
  --primary-glow: rgba(255, 78, 43, 0.08);
  --accent-pink: #FF0060;

  /* Category Highlight Gradients */
  --grad-food: linear-gradient(135deg, #FF4E2B 0%, #FF0060 100%);
  --grad-grocery: linear-gradient(135deg, #10B981 0%, #059669 100%);
  --grad-rider: linear-gradient(135deg, #4F46E5 0%, #3B82F6 100%);

  /* Text & Contrast (WCAG AAA Compliant) */
  --text-dark: #0F172A;
  /* Slate graphite headings */
  --text-muted: #475569;
  /* Slate gray body */
  --text-dim: #64748B;
  --white: #FFFFFF;

  /* Depth & Animation Tokens */
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 20px 45px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 20px 45px rgba(255, 78, 43, 0.08);
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1200px;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-white);
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-muted);
  background-color: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: var(--container);
  margin: 0 auto;
}

/* ── Utility Sections ────────────────────────────────────────── */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section--white {
  background: var(--bg-white);
}

.section--slate {
  background: var(--bg-slate);
}

.section--cream {
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-cream) 100%);
}

.section--gradient {
  background: radial-gradient(circle at 80% 20%, rgba(255, 78, 43, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(79, 70, 229, 0.04) 0%, transparent 50%),
    var(--bg-white);
}

.tag {
  display: inline-block;
  background: var(--primary-glow);
  border: 1px solid rgba(255, 78, 43, 0.2);
  color: var(--primary);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 999px;
  margin-bottom: 20px;
  font-family: 'Outfit', sans-serif;
}

.section-head {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
  z-index: 10;
}

.section-head h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

.section-head h2 span {
  background: var(--grad-food);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head p {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto;
  font-weight: 300;
}

/* ── Custom Frosted Light Glassmorphism Cards ───────────────── */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 78, 43, 0.03) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

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

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 78, 43, 0.2);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

/* ── 3D Perspective & Motion ───────────────────────────────── */
.perspective-container {
  perspective: 1500px;
  transform-style: preserve-3d;
}

.tilt-element {
  transform-style: preserve-3d;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
  will-change: transform;
}

/* ── Scroll Reveal Animations ───────────────────────────────── */
.reveal-item {
  opacity: 0;
  transform: perspective(1200px) rotateX(-6deg) translateY(40px) scale(0.97);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-item.revealed {
  opacity: 1;
  transform: perspective(1200px) rotateX(0deg) translateY(0deg) scale(1);
}

/* ── Floating Assets ────────────────────────────────────────── */
.floating-asset {
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 15px 30px rgba(15, 23, 42, 0.08));
  z-index: 2;
}

.asset-1 {
  top: -40px;
  left: -10px;
  width: 80px;
  animation: asset-float 7s ease-in-out infinite;
}

.asset-2 {
  bottom: 20px;
  right: -20px;
  width: 90px;
  animation: asset-float 9s ease-in-out infinite 1.5s;
}

@keyframes asset-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-16px) rotate(6deg);
  }
}

/* ── Premium High-End Corporate Buttons ──────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  z-index: 1;
  overflow: hidden;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--grad-food);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255, 78, 43, 0.2);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FF0060 0%, #FF4E2B 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 78, 43, 0.35);
}

.btn-outline {
  border-color: rgba(15, 23, 42, 0.12);
  background: transparent;
  color: var(--text-dark);
}

.btn-outline:hover {
  background: var(--text-dark);
  color: var(--white);
  border-color: var(--text-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(15, 23, 42, 0.1);
}

.btn-ghost {
  border-color: rgba(255, 78, 43, 0.2);
  background: rgba(255, 78, 43, 0.02);
  color: var(--primary);
}

.btn-ghost:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 78, 43, 0.15);
}

/* ── Interactive Frosted Light Navbar ───────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
  transition: background var(--transition), border-color var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 78, 43, 0.12);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 85px;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.navbar__logo {
  height: 48px;
  width: 48px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.08);
  object-fit: cover;
  transition: var(--transition);
}

.navbar__brand:hover .navbar__logo {
  transform: scale(1.06) rotate(3deg);
}

.navbar__name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-dark);
}

.navbar__name span {
  background: var(--grad-food);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
  padding: 8px 0;
}

.navbar__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-food);
  transition: var(--transition);
}

.navbar__links a:hover {
  color: var(--text-dark);
}

.navbar__links a:hover::after,
.navbar__links a.active::after {
  width: 100%;
}

.navbar__links a.active {
  color: var(--text-dark);
}

.navbar__cta .btn {
  padding: 12px 24px;
  font-size: 0.85rem;
}

/* Hamburger menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 99px;
  transition: var(--transition);
}

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

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

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

/* Mobile nav menu */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(15, 23, 42, 0.08);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 120px 40px 40px;
  gap: 24px;
  transition: var(--transition);
}

.mobile-nav.active {
  right: 0;
}

.mobile-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
  font-family: 'Outfit', sans-serif;
  transition: var(--transition);
}

.mobile-link:hover {
  color: var(--primary);
  transform: translateX(6px);
}

/* ── Hero Section ───────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 135px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

#particle-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-glow);
  border: 1px solid rgba(255, 78, 43, 0.2);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero__title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero__title span {
  background: var(--grad-food);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  font-weight: 300;
  max-width: 580px;
}

/* World-class Search bar mockup */
.hero__search-mock {
  display: flex;
  align-items: center;
  background: var(--bg-white);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-sm);
  padding: 10px;
  margin-bottom: 40px;
  max-width: 560px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.search-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  padding: 8px 16px;
  border-right: 1px solid rgba(15, 23, 42, 0.08);
  white-space: nowrap;
}

.search-loc span {
  color: var(--primary);
  font-size: 0.7rem;
}

.search-input {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  color: var(--text-dim);
  font-size: 0.9rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.search-placeholder-rotator {
  position: absolute;
  left: 36px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  white-space: nowrap;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 30px;
  max-width: 500px;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}

.hero__stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Smartphone Showcase Mockup (Premium Silver) */
.hero__img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-mock-device {
  width: 320px;
  height: 640px;
  background: var(--bg-white);
  border-radius: 44px;
  border: 12px solid #E2E8F0;
  /* Premium Silver Aluminum */
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(15, 23, 42, 0.02);
  position: relative;
  overflow: hidden;
}

.device-notch {
  width: 130px;
  height: 24px;
  background: #E2E8F0;
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

/* ── Company Core Values Section ───────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  padding: 40px 30px;
  text-align: left;
  border-radius: var(--radius-md);
  border: 1px solid rgba(15, 23, 42, 0.04);
  background: var(--bg-white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 78, 43, 0.15);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.value-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  background: rgba(255, 78, 43, 0.05);
  border: 1px solid rgba(255, 78, 43, 0.1);
  color: var(--primary);
  margin-bottom: 24px;
}

.value-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
}

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

.why-card {
  padding: 45px 35px;
  text-align: left;
}

.why-card__icon {
  font-size: 2.8rem;
  margin-bottom: 24px;
  display: inline-block;
  background: var(--primary-glow);
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 78, 43, 0.15);
}

.why-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 300;
}

/* ── Service Categories ─────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.cat-card {
  border-radius: var(--radius-md);
  padding: 40px;
  text-align: left;
  border: 1px solid rgba(15, 23, 42, 0.05);
  background: var(--bg-white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.cat-card:hover {
  transform: translateY(-8px);
}

.cat-card--food:hover {
  border-color: rgba(255, 78, 43, 0.25);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.cat-card--grocery:hover {
  border-color: rgba(16, 185, 129, 0.25);
  box-shadow: var(--shadow-md), 0 20px 45px rgba(16, 185, 129, 0.08);
}

.cat-card--courier:hover {
  border-color: rgba(79, 70, 229, 0.25);
  box-shadow: var(--shadow-md), 0 20px 45px rgba(79, 70, 229, 0.08);
}

.cat-card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: 28px;
}

.cat-card--food .cat-card__icon {
  background: rgba(255, 78, 43, 0.06);
  border: 1px solid rgba(255, 78, 43, 0.15);
}

.cat-card--grocery .cat-card__icon {
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.cat-card--courier .cat-card__icon {
  background: rgba(79, 70, 229, 0.06);
  border: 1px solid rgba(79, 70, 229, 0.15);
}

.cat-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.cat-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
  font-weight: 300;
}

.cat-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.cat-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 300;
}

.cat-card__list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 900;
}

.cat-card--grocery .cat-card__list li::before {
  color: #10B981;
}

.cat-card--courier .cat-card__list li::before {
  color: #4F46E5;
}

.cat-card .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* ── Interactive Smartphone Mockup Display ─────────────────────── */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.tabs-control {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  border: 1px solid rgba(15, 23, 42, 0.05);
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.tab-btn__icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: rgba(15, 23, 42, 0.03);
  transition: var(--transition);
}

.tab-btn h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.tab-btn p {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

.tab-btn:hover {
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: var(--shadow-md);
}

.tab-btn.active {
  box-shadow: var(--shadow-md);
}

.tab-btn.active[data-tab="food"] {
  border-color: rgba(255, 78, 43, 0.4);
  background: rgba(255, 78, 43, 0.02);
}

.tab-btn.active[data-tab="food"] .tab-btn__icon {
  background: rgba(255, 78, 43, 0.08);
  color: var(--primary);
}

.tab-btn.active[data-tab="grocery"] {
  border-color: rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.02);
}

.tab-btn.active[data-tab="grocery"] .tab-btn__icon {
  background: rgba(16, 185, 129, 0.08);
  color: #10B981;
}

.tab-btn.active[data-tab="rider"] {
  border-color: rgba(79, 70, 229, 0.4);
  background: rgba(79, 70, 229, 0.02);
}

.tab-btn.active[data-tab="rider"] .tab-btn__icon {
  background: rgba(79, 70, 229, 0.08);
  color: #4F46E5;
}

/* Smartphone Mockup Interface Display (Light) */
.mockup-header {
  padding: 16px 20px;
  background: var(--bg-slate);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-profile {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad-food);
}

.mockup-body {
  padding: 20px;
  height: calc(100% - 65px);
  background: var(--white);
  overflow-y: auto;
  scrollbar-width: none;
}

.mockup-body::-webkit-scrollbar {
  display: none;
}

.mockup-screen {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.mockup-screen.active {
  display: block;
  opacity: 1;
}

/* Showcase lists inside device mockup (Light) */
.mock-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mock-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: var(--bg-slate);
  border: 1px solid rgba(15, 23, 42, 0.04);
}

.mock-item__info {
  flex-grow: 1;
}

.mock-item__name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
}

.mock-item__detail {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.mock-item__badge {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
}

.mock-item__badge--food {
  background: rgba(255, 78, 43, 0.08);
  color: var(--primary);
}

.mock-item__badge--grocery {
  background: rgba(16, 185, 129, 0.08);
  color: #10B981;
}

/* ── App Features List ──────────────────────────────────────── */
.features-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-item:hover {
  border-color: rgba(255, 78, 43, 0.15);
  box-shadow: var(--shadow-md);
}

.feature-item__icon {
  font-size: 1.8rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-glow);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  border: 1px solid rgba(255, 78, 43, 0.15);
}

.feature-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ── Download ───────────────────────────────────────────────── */
.download {
  background: radial-gradient(circle at 20% 80%, rgba(255, 78, 43, 0.04) 0%, transparent 60%),
    var(--bg-slate);
  border-radius: var(--radius-lg);
  padding: 80px;
  border: 1px solid rgba(15, 23, 42, 0.04);
  margin: 60px auto;
  width: 90%;
  max-width: var(--container);
  box-shadow: var(--shadow);
}

.download__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.download h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 18px;
  line-height: 1.2;
}

.download h2 span {
  background: var(--grad-food);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.download p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 36px;
  font-weight: 300;
}

.qr-code-box {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(15, 23, 42, 0.05);
  padding: 24px;
  border-radius: var(--radius-sm);
  margin-bottom: 30px;
  box-shadow: var(--shadow);
}

.qr-img-frame {
  width: 76px;
  height: 76px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow);
}

.qr-info h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.qr-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

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

.store-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  border-radius: 12px;
  background: var(--text-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid transparent;
  transition: var(--transition);
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.15);
}

.store-badge .icon {
  font-size: 1.4rem;
}

/* Download preview wrap */
.download__img {
  display: flex;
  justify-content: center;
  position: relative;
}

.download__img img {
  width: 300px;
  border-radius: 30px;
  border: 8px solid var(--white);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.06);
  transform: rotate(2deg);
  transition: var(--transition);
}

.download__img:hover img {
  transform: rotate(0deg) scale(1.02);
}

/* ── FAQ Accordion (Light Theme) ────────────────────────────── */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(15, 23, 42, 0.05);
  background: var(--bg-card);
  transition: var(--transition);
}

.faq-header {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}

.faq-icon {
  font-size: 1rem;
  color: var(--primary);
  transition: transform 0.4s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 30px;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
}

.faq-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-bottom: 24px;
}

.faq-item.active {
  border-color: rgba(255, 78, 43, 0.25);
  box-shadow: var(--shadow);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-content {
  max-height: 200px;
}

/* ── Testimonials (Light Theme) ─────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  padding: 40px 30px;
  text-align: left;
}

.testimonial-stars {
  color: #F59E0B;
  font-size: 1rem;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 30px;
  font-weight: 300;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-glow);
  border: 1px solid rgba(255, 78, 43, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
}

.testimonial-profile strong {
  font-size: 0.95rem;
  color: var(--text-dark);
}

.testimonial-profile span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Legal & About Pages (Light) ────────────────────────────── */
.legal-hero {
  padding: 140px 0 60px;
  text-align: center;
  background: radial-gradient(circle at 50% 120%, rgba(255, 78, 43, 0.04) 0%, transparent 60%);
}

.legal-hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 6vw, 3.8rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.legal-hero h1 span {
  background: var(--grad-food);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.legal-hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

.legal-content {
  padding-bottom: 100px;
}

.legal-card {
  padding: 50px 60px;
  background: var(--bg-white);
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: var(--radius-md);
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.legal-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-top: 36px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  padding-bottom: 10px;
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card p {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 300;
}

.legal-card ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 24px;
}

.legal-card li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 10px;
  font-weight: 300;
}

/* ── Location Grid List (Light Theme) ───────────────────────── */
.locations-section {
  padding: 80px 0;
}

.locs-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.loc-pill {
  padding: 16px 20px;
  border-radius: 14px;
  background: var(--bg-slate);
  border: 1px solid rgba(15, 23, 42, 0.05);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.88rem;
  transition: var(--transition);
}

.loc-pill:hover {
  background: var(--primary-glow);
  border-color: rgba(255, 78, 43, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 78, 43, 0.04);
}

.loc-pill span {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Footer Section */
.footer {
  padding: 80px 0 40px;
  background: var(--bg-slate);
  border-top: 1px solid rgba(15, 23, 42, 0.04);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer__about p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 20px;
  font-weight: 300;
}

.footer h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 24px;
  font-weight: 700;
}

.footer__links-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__links-col a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer__links-col a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__contact-item {
  display: flex;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 300;
}

.footer__contact-item .icon {
  color: var(--primary);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding-top: 30px;
  flex-wrap: wrap;
  gap: 20px;
}

.footer__bottom p {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  color: var(--text-dim);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer__bottom-links a:hover {
  color: var(--text-dark);
}

/* ── Responsive Breakdown ───────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__desc,
  .hero__search-mock {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__stats {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero__img-wrap {
    order: -1;
  }

  .why-grid,
  .values-grid,
  .cat-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .locs-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer__grid>div:last-child {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {

  .navbar__links,
  .navbar__cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .why-grid,
  .values-grid,
  .cat-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

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

  .download__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .qr-code-box,
  .store-badges {
    justify-content: center;
  }

  .download__img {
    order: -1;
  }

  .download {
    padding: 40px 24px;
  }

  .legal-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .locs-grid {
    grid-template-columns: 1fr;
  }

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

  .footer__grid>div:last-child {
    grid-column: span 1;
  }

  .search-loc {
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .search-input {
    font-size: 0.8rem;
    padding: 6px 10px;
  }
}