/* ═══════════════════════════════════════
   HOME PAGE — yummyever.com style
   Clean white, bold type, SaaS feel
═══════════════════════════════════════ */

/* ── NAVBAR — dark always, same as all pages ── */
.btn-nav-cta {
  display: inline-flex; align-items: center;
  padding: 0.5rem 1.3rem; border-radius: 50px;
  background: #6366f1; color: #fff;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap; margin-left: 0.5rem;
}
.btn-nav-cta:hover { background: #4f46e5; transform: translateY(-1px); }

/* ── HERO ── */
.lp-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #111827 100%);
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 66px; position: relative; overflow: hidden;
}
.lp-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 65% 45%, rgba(99,102,241,0.2) 0%, transparent 65%);
}
.lp-hero-inner {
  max-width: 1200px; margin: 0 auto; padding: 5rem 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  position: relative; z-index: 1;
}
.lp-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(99,102,241,0.15); border: 1px solid rgba(99,102,241,0.3);
  color: #a5b4fc; padding: 5px 14px; border-radius: 50px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.lp-h1 {
  font-size: clamp(2.6rem, 5vw, 4rem); font-weight: 900;
  color: #fff; line-height: 1.08; letter-spacing: -0.04em; margin-bottom: 1.4rem;
}
.lp-h1 span { color: #818cf8; }
.lp-sub { font-size: 1.05rem; color: #9ca3af; line-height: 1.8; margin-bottom: 2.5rem; max-width: 460px; }
.lp-hero-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3rem; }
.lp-btn-primary {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 0.75rem 1.8rem; border-radius: 9px;
  background: #6366f1; color: #fff; font-weight: 700; font-size: 0.95rem;
  font-family: 'Outfit', sans-serif; transition: all 0.2s;
}
.lp-btn-primary:hover { background: #4f46e5; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(99,102,241,0.35); }
.lp-btn-ghost {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 0.75rem 1.8rem; border-radius: 9px;
  background: rgba(255,255,255,0.08); color: #e5e7eb;
  border: 1px solid rgba(255,255,255,0.15); font-weight: 600; font-size: 0.95rem;
  font-family: 'Outfit', sans-serif; transition: all 0.2s;
}
.lp-btn-ghost:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.3); }
.lp-stats { display: flex; align-items: center; gap: 1.5rem; }
.lp-stat { display: flex; flex-direction: column; }
.lp-stat-num { font-size: 1.8rem; font-weight: 900; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.lp-stat-lbl { font-size: 0.75rem; color: #6b7280; font-weight: 500; margin-top: 3px; }
.lp-stat-div { width: 1px; height: 36px; background: rgba(255,255,255,0.1); }

/* Hero right cards */
.lp-hero-visual { display: flex; flex-direction: column; gap: 0.75rem; }
.lp-hero-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px; padding: 1.1rem 1.4rem;
  display: flex; align-items: center; gap: 1rem;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.lp-hero-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(99,102,241,0.3); transform: translateX(5px); }
.lp-card-main { border-color: rgba(99,102,241,0.25); background: rgba(99,102,241,0.08); }
.lp-hcard-icon {
  width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.lp-hcard-title { font-weight: 700; color: #f9fafb; font-size: 0.9rem; }
.lp-hcard-sub { font-size: 0.78rem; color: #6b7280; margin-top: 2px; }

/* ── ICON COLORS ── */
.lp-ic-indigo { background: rgba(99,102,241,0.15); color: #818cf8; }
.lp-ic-violet { background: rgba(139,92,246,0.15); color: #a78bfa; }
.lp-ic-emerald { background: rgba(16,185,129,0.15); color: #34d399; }
.lp-ic-amber { background: rgba(245,158,11,0.15); color: #fbbf24; }
.lp-ic-rose { background: rgba(244,63,94,0.15); color: #fb7185; }
.lp-ic-sky { background: rgba(14,165,233,0.15); color: #38bdf8; }

/* ── SECTIONS ── */
.lp-section { padding: 5rem 2rem; background: #f9fafb; }
.lp-section-white { background: #fff; }
.lp-inner { max-width: 1200px; margin: 0 auto; }
.lp-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem;
}
.lp-section-head.center { flex-direction: column; align-items: center; text-align: center; }
.lp-section-head h2 { font-size: 2rem; font-weight: 800; color: #111827; letter-spacing: -0.03em; margin: 0.4rem 0; line-height: 1.2; }
.lp-section-head p { color: #6b7280; font-size: 0.95rem; max-width: 480px; }
.lp-badge {
  display: inline-block; padding: 3px 12px; border-radius: 50px;
  background: #eef2ff; color: #4f46e5;
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em;
}

/* ── HOW IT WORKS ── */
.lp-steps {
  display: flex; align-items: flex-start; gap: 0; justify-content: center;
  flex-wrap: wrap;
}
.lp-step {
  flex: 1; min-width: 200px; max-width: 280px;
  background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
  padding: 2rem 1.5rem; text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.lp-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: #eef2ff; color: #6366f1;
  font-size: 1rem; font-weight: 900; margin: 0 auto 1rem;
}
.lp-step h3 { font-size: 1rem; font-weight: 700; color: #111827; margin-bottom: 0.5rem; }
.lp-step p { font-size: 0.85rem; color: #6b7280; line-height: 1.6; }
.lp-step-arrow {
  display: flex; align-items: center; justify-content: center;
  color: #d1d5db; padding: 0 0.5rem; margin-top: 1.5rem; flex-shrink: 0;
}

/* ── FEATURES GRID ── */
.lp-features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem;
}
.lp-feat-card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 16px;
  padding: 1.75rem; transition: all 0.22s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.lp-feat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.09); border-color: #c7d2fe; }
.lp-feat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.1rem; }
.lp-feat-card h3 { font-size: 1rem; font-weight: 700; color: #111827; margin-bottom: 0.5rem; letter-spacing: -0.01em; }
.lp-feat-card p { font-size: 0.875rem; color: #6b7280; line-height: 1.65; }

/* ── CONTENT CARDS ── */
.lp-cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.25rem; }
.lp-card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 14px;
  padding: 1.4rem; display: flex; flex-direction: column; gap: 0.6rem;
  transition: all 0.22s; box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.lp-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.09); border-color: #c7d2fe; }
.lp-card-top { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.lp-tag {
  display: inline-block; padding: 2px 9px; border-radius: 50px;
  font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  background: #eef2ff; color: #4338ca;
}
.lp-tag-amber { background: #fffbeb; color: #92400e; }
.lp-tag-type { background: #f0fdf4; color: #065f46; }
.lp-card-title { font-size: 1rem; font-weight: 700; color: #111827; line-height: 1.4; letter-spacing: -0.01em; }
.lp-card-desc { font-size: 0.84rem; color: #6b7280; line-height: 1.6; flex: 1; }
.lp-card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: 0.6rem; border-top: 1px solid #f3f4f6; margin-top: auto; }
.lp-card-date { font-size: 0.78rem; color: #9ca3af; }
.lp-card-link { display: inline-flex; align-items: center; gap: 4px; font-size: 0.82rem; font-weight: 700; color: #6366f1; transition: gap 0.2s; }
.lp-card-link:hover { gap: 7px; }

/* ── FAQ ── */
.lp-faq-wrap { max-width: 760px; }
.lp-faq-list { display: flex; flex-direction: column; gap: 0.6rem; }
.lp-faq-item { background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; }
.lp-faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem; background: none; border: none; cursor: pointer;
  font-family: 'Outfit', sans-serif; font-size: 0.95rem; font-weight: 600; color: #111827;
  text-align: left; gap: 1rem;
}
.lp-faq-q:hover { background: #f9fafb; }
.lp-faq-icon { flex-shrink: 0; color: #9ca3af; transition: transform 0.25s ease; }
.lp-faq-item.open .lp-faq-icon { transform: rotate(180deg); color: #6366f1; }
.lp-faq-a {
  max-height: 0; overflow: hidden; padding: 0 1.4rem;
  font-size: 0.9rem; color: #6b7280; line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.lp-faq-item.open .lp-faq-a { max-height: 200px; padding: 0 1.4rem 1.2rem; }

/* ── CTA BANNER ── */
.lp-cta-banner {
  background: #0b1120;
  padding: 5rem 2rem; text-align: center;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.lp-cta-banner::before { display: none; }
.lp-cta-content { position: relative; z-index: 1; }
.lp-cta-content h2 { font-size: 2.2rem; font-weight: 900; color: #fff; letter-spacing: -0.03em; margin-bottom: 0.8rem; }
.lp-cta-content p { color: rgba(255,255,255,0.55); font-size: 1rem; margin-bottom: 2rem; }
.lp-cta-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.lp-btn-white {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 0.75rem 1.8rem; border-radius: 9px;
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1px solid rgba(255,255,255,0.15); font-weight: 600; font-size: 0.95rem;
  font-family: 'Outfit', sans-serif; transition: all 0.2s;
}
.lp-btn-white:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }
.lp-btn-outline {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 0.5rem 1.2rem; border-radius: 8px;
  background: transparent; color: #6366f1;
  border: 1.5px solid #c7d2fe; font-weight: 600; font-size: 0.85rem;
  font-family: 'Outfit', sans-serif; transition: all 0.2s; white-space: nowrap;
}
.lp-btn-outline:hover { background: #eef2ff; border-color: #6366f1; }

/* ── LOADING / EMPTY ── */
.lp-loading { display: flex; align-items: center; gap: 10px; padding: 3rem; color: #9ca3af; font-size: 0.9rem; }
.lp-spinner { width: 22px; height: 22px; border: 2.5px solid #e5e7eb; border-top-color: #6366f1; border-radius: 50%; animation: spin 0.7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.lp-empty { padding: 3rem; color: #9ca3af; font-size: 0.9rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .lp-hero-inner { grid-template-columns: 1fr; text-align: center; padding: 4rem 2rem; }
  .lp-sub { margin: 0 auto 2.5rem; }
  .lp-hero-btns { justify-content: center; }
  .lp-stats { justify-content: center; }
  .lp-hero-visual { display: none; }
}
@media (max-width: 768px) {
  .lp-hero-inner { padding: 4rem 1.25rem; }
  .lp-h1 { font-size: 2.4rem; }
  .lp-section { padding: 3.5rem 1.25rem; }
  .lp-steps { flex-direction: column; align-items: center; }
  .lp-step-arrow { transform: rotate(90deg); margin: 0; padding: 0.25rem 0; }
  .lp-cta-content h2 { font-size: 1.8rem; }
}

/* ── ADDITIONAL RESPONSIVE ── */
@media (max-width: 480px) {
  .lp-hero-inner { padding: 3rem 1rem; }
  .lp-h1 { font-size: 2rem; }
  .lp-sub { font-size: 0.95rem; }
  .lp-hero-btns { flex-direction: column; }
  .lp-btn-primary, .lp-btn-ghost { width: 100%; justify-content: center; }
  .lp-stats { gap: 1rem; }
  .lp-stat-num { font-size: 1.4rem; }

  .lp-section { padding: 2.5rem 1rem; }
  .lp-section-head h2 { font-size: 1.6rem; }

  .lp-features-grid { grid-template-columns: 1fr; }
  .lp-cards-grid { grid-template-columns: 1fr; }

  .lp-step { min-width: unset; width: 100%; }

  .lp-faq-q { font-size: 0.88rem; padding: 0.9rem 1rem; }
  .lp-faq-a { padding: 0 1rem; }
  .lp-faq-item.open .lp-faq-a { padding: 0 1rem 1rem; }

  .lp-cta-content h2 { font-size: 1.6rem; }
  .lp-cta-btns { flex-direction: column; align-items: center; }
  .lp-btn-white { width: 100%; justify-content: center; }
}
