/* ============================================================
   Incentiwise — Landing page styles
   ============================================================ */

:root {
  --lp-blue:        #2563eb;
  --lp-blue-dark:   #1d4ed8;
  --lp-blue-light:  #eff6ff;
  --lp-ink:         #09090b;
  --lp-muted:       #64748b;
  --lp-border:      #e2e8f0;
  --lp-surface:     #f8fafc;
}

/* ── Body ── */
body {
  font-family: 'Open Sans', sans-serif;
  background: #ffffff;
  color: var(--lp-ink);
  -webkit-font-smoothing: antialiased;
}

/* ── Navbar ── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lp-border);
  padding: 0.85rem 0;
}

.lp-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--lp-ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.lp-brand span { color: var(--lp-blue); }

.lp-nav-links a {
  color: var(--lp-muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  transition: color 0.15s;
}
.lp-nav-links a:hover { color: var(--lp-ink); }

/* ── Buttons ── */
.btn-landing-primary {
  background: var(--lp-blue);
  color: #fff;
  border: none;
  border-radius: 99px;
  padding: 0.5rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.15s;
  line-height: 1.5;
}
.btn-landing-primary:hover { background: var(--lp-blue-dark); color: #fff; }

.btn-landing-ghost {
  background: transparent;
  color: #374151;
  border: 1.5px solid #d1d5db;
  border-radius: 99px;
  padding: 0.45rem 1.1rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.15s, color 0.15s;
  line-height: 1.5;
}
.btn-landing-ghost:hover { border-color: var(--lp-blue); color: var(--lp-blue); }

.btn-landing-ghost-light {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 99px;
  padding: 0.5rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.15s;
}
.btn-landing-ghost-light:hover { border-color: #fff; color: #fff; }

/* ── Container ── */
.landing-container { max-width: 1140px; }

/* ── Sections ── */
.lp-section { padding: 5rem 0; }

.lp-section-head h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* ── Hero ── */
.lp-hero {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background: linear-gradient(180deg, rgba(239,246,255,0.5) 0%, #fff 100%);
  overflow: hidden;
}

.lp-hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--lp-ink);
}

/* Dashboard mockup in hero */
.lp-hero-mockup {
  margin-top: 3.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.lp-mockup-window {
  background: #ffffff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.07), 0 4px 12px rgba(0,0,0,0.03);
}

.lp-mockup-titlebar {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.65rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.lp-mockup-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.lp-mockup-body {
  padding: 1.5rem;
  background: #f8fafc;
}

/* Sparkline chart fake */
.lp-spark {
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 3px;
}
.lp-spark-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: var(--lp-blue);
  opacity: 0.15;
  transition: opacity 0.2s;
}
.lp-spark-bar.hi { opacity: 0.9; }
.lp-spark-bar.md { opacity: 0.5; }

/* ── Feature cards ── */
.lp-feature-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 1.5rem;
  height: 100%;
  transition: box-shadow 0.2s, transform 0.2s;
}
.lp-feature-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

/* ── Toggle pills ── */
.lp-toggle {
  display: inline-flex;
  align-items: center;
  background: #f1f5f9;
  border-radius: 99px;
  padding: 4px;
  gap: 2px;
  border: 1px solid var(--lp-border);
}
.lp-toggle-btn {
  border: none;
  background: transparent;
  border-radius: 99px;
  padding: 0.35rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--lp-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.lp-toggle-btn.active {
  background: var(--lp-ink);
  color: #fff;
}

/* ── Steps ── */
.lp-step-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.lp-step-num {
  font-size: 6rem;
  font-weight: 900;
  color: #f1f5f9;
  position: absolute;
  right: 10px;
  bottom: -20px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* ── Pricing ── */
.lp-plan-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 1.75rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s;
}
.lp-plan-card.recommended {
  border-color: var(--lp-blue) !important;
  box-shadow: 0 12px 36px rgba(37,99,235,0.08);
}
.lp-plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lp-blue);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.85rem;
  border-radius: 99px;
  white-space: nowrap;
}
.lp-plan-price {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.lp-plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  font-size: 0.88rem;
}
.lp-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  color: var(--lp-muted);
}
.lp-plan-features li i {
  margin-top: 2px;
  color: var(--lp-blue);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ── FAQ accordion ── */
.lp-faq-accordion .accordion-button {
  background: transparent !important;
  box-shadow: none !important;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--lp-ink);
  padding-left: 0;
  padding-right: 0;
}
.lp-faq-accordion .accordion-button::after {
  filter: none;
}
.lp-faq-accordion .accordion-item {
  border: none !important;
  border-bottom: 1px solid var(--lp-border) !important;
  border-radius: 0 !important;
  background: transparent;
}
.lp-faq-accordion .accordion-body {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  font-size: 0.9rem;
  color: var(--lp-muted);
  line-height: 1.7;
  white-space: pre-line;
}

/* ── CTA block ── */
.lp-cta-block {
  background: var(--lp-blue);
  border-radius: 24px;
  padding: 4rem 2rem;
  text-align: center;
}

/* ── Pipeline connector ── */
.lp-pipeline {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  padding: 2rem;
  max-width: 820px;
  margin: 2.5rem auto 0;
}
.lp-pipeline-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.lp-pipeline-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.lp-pipeline-arrow {
  flex: 1;
  height: 2px;
  background: var(--lp-border);
  position: relative;
  max-width: 80px;
}
.lp-pipeline-arrow::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -4px;
  border-left: 6px solid var(--lp-border);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

/* ── Footer ── */
.lp-footer {
  background: #0f172a;
  color: rgba(255,255,255,0.55);
  padding: 3.5rem 0 2rem;
  font-size: 0.85rem;
}
.lp-footer a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.15s;
}
.lp-footer a:hover { color: #fff; }
.lp-footer-brand {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.lp-footer-brand span { color: #60a5fa; }
.lp-footer hr { border-color: rgba(255,255,255,0.08); }

/* ── Seat slider ── */
.lp-seat-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  max-width: 480px;
  margin: 1.5rem auto;
  box-shadow: 0 4px 14px rgba(0,0,0,0.02);
}
input[type="range"].lp-slider {
  accent-color: var(--lp-blue);
  height: 6px;
}

/* ── Shadow glow ── */
.shadow-glow { box-shadow: 0 4px 20px rgba(37,99,235,0.25); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .lp-hero { padding-top: 3rem; }
  .lp-hero-copy h1 { font-size: 2.2rem; }
  .lp-section { padding: 3rem 0; }
  .lp-section-head h2 { font-size: 1.75rem; }
  .lp-nav-links { display: none; }
}
