/* ═══════════════════════════════════════════════════════════════════
   GoChef Landing Page — Premium Dark Theme CSS
   Colors: #EB1E8C (fuchsia), #0F131C (background), #1C2029 (surface)
═══════════════════════════════════════════════════════════════════ */

:root {
  --primary: #EB1E8C;
  --primary-dark: #BA005E;
  --primary-light: #FF4A90;
  --bg: #0F131C;
  --bg-alt: #0A0E17;
  --surface: #1C2029;
  --surface-high: #262A34;
  --surface-highest: #31353F;
  --border: rgba(169, 136, 144, 0.12);
  --text: #DFE2EF;
  --text-muted: #8892A4;
  --gradient: linear-gradient(135deg, #FF4A90, #EB1E8C);
  --gradient-wide: linear-gradient(135deg, #FF4A90 0%, #EB1E8C 50%, #BA005E 100%);
  --shadow-glow: 0 0 40px rgba(235, 30, 140, 0.25);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ══════════════════════ TYPOGRAPHY ════════════════════════ */
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.section {
  padding: 100px 0;
  position: relative;
}

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

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

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

/* ══════════════════════ BUTTONS ════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gradient);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(235, 30, 140, 0.4);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: var(--transition);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(235, 30, 140, 0.55); }
.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); transform: translateY(-2px); }

/* ══════════════════════ NAVBAR ════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-img { width: 36px; height: 36px; border-radius: 8px; }
.nav-brand { font-size: 18px; font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.brand-accent { color: var(--primary); }
.nav-links { display: flex; list-style: none; gap: 32px; margin: 0; margin-left: auto; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 15px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: #fff; }
.btn-nav {
  display: inline-flex;
  align-items: center;
  background: var(--gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 100px;
  text-decoration: none;
  flex-shrink: 0;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(235, 30, 140, 0.3);
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(235, 30, 140, 0.5); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: var(--transition); }
.nav-mobile { display: none; flex-direction: column; background: var(--surface); padding: 16px 24px 24px; gap: 0; }
.nav-mobile a { color: var(--text-muted); text-decoration: none; font-size: 16px; font-weight: 500; padding: 14px 0; border-bottom: 1px solid var(--border); display: block; }
.nav-mobile a:last-child { border: none; }
.nav-mobile a:hover { color: var(--primary); }
.nav-mobile.open { display: flex; }

/* ══════════════════════ HERO ═══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.35) saturate(0.8);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 23, 0.85) 0%,
    rgba(10, 14, 23, 0.55) 50%,
    rgba(235, 30, 140, 0.08) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  max-width: 700px;
  padding-left: 60px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #fff;
}
.hero-subtitle {
  font-size: 18px;
  color: rgba(223, 226, 239, 0.8);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 560px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  flex-direction: column;
}
.stat-item > span:first-child,
.stat-number { font-size: 36px; font-weight: 900; color: #fff; letter-spacing: -0.02em; line-height: 1; }
.stat-suffix { font-size: 24px; font-weight: 900; color: var(--primary); display: inline; }
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.scroll-arrow {
  width: 28px;
  height: 48px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  position: relative;
}
.scroll-arrow::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  70% { transform: translateX(-50%) translateY(12px); opacity: 0.3; }
}

/* ══════════════════════ KITCHENS ═══════════════════════════ */
.kitchens-filter, .menu-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn, .tab-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.filter-btn:hover, .tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.filter-btn.active, .tab-btn.active {
  background: var(--gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(235, 30, 140, 0.3);
}

.kitchens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.kitchen-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.kitchen-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  border-color: rgba(235, 30, 140, 0.3);
}
.kitchen-card-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.kitchen-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.kitchen-card:hover .kitchen-card-img { transform: scale(1.08); }
.kitchen-card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}
.kitchen-card-rating {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(10,14,23,0.85);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  gap: 4px;
}
.kitchen-card-rating::before { content: '⭐'; font-size: 11px; }
.kitchen-card-body { padding: 20px; }
.kitchen-card-emoji { font-size: 32px; margin-bottom: 10px; }
.kitchen-card-name { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.kitchen-card-cuisine { font-size: 13px; color: var(--primary); font-weight: 600; margin-bottom: 8px; }
.kitchen-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; }
.kitchen-card-meta { display: flex; gap: 16px; align-items: center; }
.kitchen-meta-item { font-size: 12px; color: var(--text-muted); display: flex; align-items: center; gap: 4px; }
.kitchen-card-order {
  margin-left: auto;
  background: var(--gradient);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}
.kitchen-card-order:hover { transform: scale(1.05); }

/* ══════════════════════ MENU GRID ════════════════════════ */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.menu-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}
.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  border-color: rgba(235, 30, 140, 0.25);
}
.menu-card-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.menu-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img { transform: scale(1.06); }
.menu-card-emoji-fallback {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  background: var(--surface-high);
}
.menu-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10,14,23,0.8);
  color: var(--primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(235,30,140,0.3);
}
.menu-card-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  background: rgba(10,14,23,0.75);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.menu-card-fav:hover { background: var(--primary); transform: scale(1.1); }
.menu-card-body { padding: 18px; }
.menu-card-kitchen { font-size: 12px; color: var(--primary); font-weight: 600; margin-bottom: 6px; }
.menu-card-name { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.3; }
.menu-card-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; margin-bottom: 16px; }
.menu-card-footer { display: flex; align-items: center; justify-content: space-between; }
.menu-card-price { font-size: 20px; font-weight: 800; color: #FFFFFF; }
.menu-card-add {
  width: 36px;
  height: 36px;
  background: var(--gradient);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  box-shadow: 0 4px 12px rgba(235,30,140,0.4);
}
.menu-card-add:hover { transform: scale(1.15) rotate(90deg); }
.menu-card-rating { font-size: 12px; color: #FFD700; display: flex; align-items: center; gap: 3px; }

/* ══════════════════════ STEPS ════════════════════════════ */
.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}
.step-card {
  flex: 1;
  max-width: 300px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
  text-align: center;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 255, 255, 0.15);
}
.step-number {
  font-size: 56px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
  font-family: inherit;
  letter-spacing: -0.04em;
}
.step-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}
.step-card:hover .step-icon {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  color: #FFFFFF;
}
.step-card h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.step-connector {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
  flex-shrink: 0;
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,255,255,0.4);
  border-top: 2px solid rgba(255,255,255,0.4);
  transform: rotate(45deg);
}

/* ══════════════════════ FEATURES ══════════════════════════ */
.features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.features-left .section-title { text-align: left; }
.features-left .section-badge { margin-bottom: 16px; }
.features-list { display: flex; flex-direction: column; gap: 24px; margin-top: 40px; }
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-item:hover { border-color: rgba(255,255,255,0.35); transform: translateX(4px); box-shadow: 0 8px 24px rgba(0,0,0,0.4), 0 0 20px rgba(255,255,255,0.08); }
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.feature-item h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.feature-item p { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ── App Mockup ── */
.features-right { position: relative; display: flex; justify-content: center; }
.app-mockup { position: relative; display: flex; justify-content: center; }
.mockup-phone {
  width: 300px;
  background: var(--surface-high);
  border-radius: 40px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.05);
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.mockup-screen { padding: 16px; }
.mockup-status-bar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; font-size: 11px; font-weight: 700; color: #fff; }
.mockup-icons { display: flex; gap: 4px; }
.mockup-icons .dot { width: 6px; height: 6px; background: rgba(255,255,255,0.6); border-radius: 50%; }
.mockup-header { margin-bottom: 16px; }
.mockup-logo-row { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.mockup-logo { width: 28px; height: 28px; border-radius: 7px; }
.mockup-brand { font-size: 16px; font-weight: 800; color: #fff; }
.mockup-search { background: var(--surface-highest); border-radius: 12px; padding: 10px 14px; display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 12px; }
.mockup-categories { display: flex; gap: 8px; margin-bottom: 16px; overflow: hidden; }
.mockup-cat { font-size: 11px; font-weight: 600; padding: 6px 12px; border-radius: 100px; background: var(--surface-highest); color: var(--text-muted); white-space: nowrap; border: 1px solid var(--border); }
.mockup-cat.active { background: var(--gradient); color: #fff; border-color: transparent; }
.mockup-featured-label { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.mockup-card { display: flex; gap: 10px; background: var(--surface-highest); border-radius: 14px; overflow: hidden; margin-bottom: 10px; border: 1px solid var(--border); }
.mockup-card-img { width: 80px; height: 80px; object-fit: cover; flex-shrink: 0; }
.mockup-card-info { padding: 10px 10px 10px 0; flex: 1; min-width: 0; }
.mockup-card-name { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mockup-card-kitchen { font-size: 10px; color: var(--text-muted); margin-bottom: 8px; }
.mockup-card-bottom { display: flex; align-items: center; justify-content: space-between; }
.mockup-price { font-size: 13px; font-weight: 800; color: #FFFFFF; }
.mockup-add { width: 22px; height: 22px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #fff; font-weight: 700; }
.mockup-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(235,30,140,0.25) 0%, transparent 70%);
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(40px);
  z-index: 0;
}

/* ══════════════════════ REVIEWS ══════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); border-color: rgba(235,30,140,0.25); box-shadow: var(--shadow-card); }
.review-card-featured {
  background: linear-gradient(135deg, rgba(235,30,140,0.12), rgba(186,0,94,0.08));
  border-color: rgba(235,30,140,0.35);
  position: relative;
}
.review-card-featured::before {
  content: '⭐ Featured';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
}
.review-stars { color: #FFD700; font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.review-text { font-size: 15px; color: var(--text); line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-size: 15px; font-weight: 700; color: #fff; }
.author-sub { font-size: 12px; color: var(--text-muted); }

/* ══════════════════════ CTA SECTION ══════════════════════ */
.cta-section { overflow: hidden; }
.cta-inner {
  position: relative;
  background: linear-gradient(135deg, rgba(235,30,140,0.1) 0%, rgba(186,0,94,0.06) 100%);
  border: 1px solid rgba(235,30,140,0.25);
  border-radius: 32px;
  padding: 80px 60px;
  text-align: center;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(235,30,140,0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-title { font-size: clamp(32px, 5vw, 56px); font-weight: 900; letter-spacing: -0.03em; margin-bottom: 16px; line-height: 1.1; }
.cta-subtitle { font-size: 18px; color: var(--text-muted); max-width: 520px; margin: 0 auto 48px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  text-decoration: none;
  padding: 16px 28px;
  border-radius: 16px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.store-btn svg {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: block;
}
.store-btn:hover { background: rgba(255,255,255,0.12); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.3); }
.store-btn-apple { border-color: rgba(255,255,255,0.22); background: rgba(255,255,255,0.08); }
.store-btn-apple:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); }
.store-btn-outline { border-color: rgba(235,30,140,0.4); background: rgba(235,30,140,0.08); }
.store-btn-outline:hover { background: rgba(235,30,140,0.16); border-color: rgba(235,30,140,0.6); }
.store-btn-sub { display: block; font-size: 11px; font-weight: 600; opacity: 0.7; letter-spacing: 1px; text-transform: uppercase; }
.store-btn-main { display: block; font-size: 18px; font-weight: 800; }
.cta-trust { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); font-weight: 500; }

/* ══════════════════════ FOOTER ════════════════════════════ */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-logo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo { width: 36px; height: 36px; border-radius: 8px; }
.footer-brand-name { font-size: 18px; font-weight: 800; color: #fff; }
.footer-tagline { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 24px; max-width: 300px; }
.footer-social { display: flex; gap: 12px; }
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  text-decoration: none;
  transition: var(--transition);
}
.social-btn:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.35); color: #fff; transform: translateY(-2px); }
.footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 20px; letter-spacing: 0.5px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: var(--text-muted); }

/* ══════════════════════ ANIMATIONS ════════════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ══════════════════════ RESPONSIVE ════════════════════════ */
@media (max-width: 1024px) {
  .features-layout { grid-template-columns: 1fr; gap: 60px; }
  .features-right { display: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner { gap: 0; justify-content: space-between; }
  .hero-content { padding: 100px 24px 80px; }
  .steps-grid { flex-direction: column; gap: 16px; align-items: stretch; }
  .step-connector { display: none; }
  .step-card { max-width: 100%; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-inner { padding: 48px 24px; }
  .hero-stats { gap: 20px; }
}

@media (max-width: 480px) {
  .kitchens-grid, .menu-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .hero-cta { flex-direction: column; }
}

/* ============================================================
   SKELETON SHIMMER STYLES
   ============================================================ */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.skeleton-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
  display: flex;
  flex-direction: column;
}

.skeleton-box {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-highest) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 6px;
}

.skeleton-img {
  width: 100%;
  height: 180px;
  border-radius: 0;
}

.skeleton-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.skeleton-title {
  height: 22px;
  width: 75%;
  margin-bottom: 12px;
}

.skeleton-text {
  height: 14px;
  width: 90%;
  margin-bottom: 8px;
}

.skeleton-text.short {
  width: 50%;
  margin-bottom: 20px;
}

.skeleton-meta {
  height: 26px;
  width: 100%;
  margin-top: auto;
}

/* ============================================================
   KITCHEN & MENU ENHANCEMENTS (REAL DATA)
   ============================================================ */
.kitchen-card-chef {
  font-size: 13px;
  color: #fff;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.kitchen-chef-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--primary);
  flex-shrink: 0;
}

.kitchen-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
  margin-left: auto;
}

.kitchen-badge-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.menu-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 12px;
  font-size: 12px;
  color: var(--text-muted);
}

.menu-card-badge-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #FFFFFF;
  padding: 3px 9px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 11px;
}

.api-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.25);
  margin-top: 10px;
}

.api-status-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

/* ============================================================
   CHEF EARNINGS CALCULATOR STYLES
   ============================================================ */
.section-calc {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(235, 30, 140, 0.04) 50%, var(--bg) 100%);
}

.calc-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(235, 30, 140, 0.25);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(235, 30, 140, 0.1);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
  margin-top: 32px;
}

.calc-inputs-col {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-right: 1px solid var(--border);
}

.calc-slider-box {
  background: var(--surface-high);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.calc-label {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.calc-badge {
  background: var(--gradient);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(235, 30, 140, 0.3);
}

.calc-range {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--surface-highest);
  outline: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #EB1E8C;
  border: 3px solid #fff;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(235, 30, 140, 0.6);
  transition: transform 0.15s ease;
}

.calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.calc-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #EB1E8C;
  border: 3px solid #fff;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(235, 30, 140, 0.6);
}

.calc-range-ticks {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 10px;
  font-weight: 500;
}

.calc-perks-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

.calc-perk {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
}

.calc-perk-icon {
  font-size: 20px;
  line-height: 1;
}

.calc-perk strong {
  display: block;
  color: #fff;
  font-size: 13px;
  margin-bottom: 2px;
}

.calc-perk p {
  color: var(--text-muted);
  line-height: 1.4;
  margin: 0;
}

/* Right Result Column */
.calc-display-col {
  padding: 40px;
  background: linear-gradient(135deg, rgba(28, 32, 41, 0.95), rgba(38, 42, 52, 0.95));
  display: flex;
  align-items: center;
  justify-content: center;
}

.calc-result-box {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.calc-toggle-group {
  display: inline-flex;
  background: var(--surface-highest);
  padding: 4px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.calc-toggle-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.calc-toggle-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(235, 30, 140, 0.4);
}

.calc-headline {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--primary-light);
  margin-bottom: 8px;
}

.calc-big-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}

.calc-dollar {
  font-size: 32px;
  font-weight: 800;
  color: #22c55e;
}

.calc-number {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: -1px;
  text-shadow: 0 0 30px rgba(34, 197, 94, 0.35);
}

.calc-period {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
}

.calc-hourly-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
}

.calc-hourly-pill strong {
  color: #fff;
}

.calc-summary-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  background: var(--surface);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

.calc-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-muted);
}

.calc-summary-item strong {
  color: #fff;
}

.calc-apply-btn {
  width: 100%;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.calc-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.4;
  max-width: 90%;
  margin: 0;
}

@media (max-width: 860px) {
  .calc-card {
    grid-template-columns: 1fr;
  }
  .calc-inputs-col {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 28px;
  }
  .calc-display-col {
    padding: 28px;
  }
}

/* ============================================================
   HERO & DECORATIVE VIDEO STYLES
   ============================================================ */
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.42) saturate(0.9);
}

.section-video-banner {
  position: relative;
  padding: 0;
  overflow: hidden;
  margin: 40px 0 20px;
}

.video-full-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  line-height: 0;
}

.video-full-media {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: contain;
  filter: brightness(0.96) saturate(1.15) contrast(1.05);
}

.video-full-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #0F131C 0%, transparent 12%, transparent 88%, #0F131C 100%);
  pointer-events: none;
  z-index: 1;
}

.video-banner-content-below {
  padding-top: 40px;
  padding-bottom: 30px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.video-banner-headline {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
  margin: 16px 0 14px;
}

.video-banner-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 620px;
  margin: 0 auto 24px;
}

.video-banner-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.video-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 13px;
  color: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.video-chip:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  background: rgba(235, 30, 140, 0.12);
}

@media (max-width: 768px) {
  .video-banner-headline {
    font-size: 26px;
  }
  .video-banner-content-below {
    padding-top: 24px;
  }
}
