/* VyaparBalance Landing Page — standalone stylesheet, no dependency on /web/assets */

:root {
  --lp-primary: #2563eb;
  --lp-primary-dark: #1d4ed8;
  --lp-primary-light: #dbeafe;
  --lp-violet: #7c3aed;
  --lp-success: #16a34a;
  --lp-warning: #f59e0b;
  --lp-ink: #0f172a;
  --lp-ink-soft: #334155;
  --lp-muted: #64748b;
  --lp-border: #e2e8f0;
  --lp-surface: #f8fafc;
  --lp-radius-sm: 8px;
  --lp-radius: 14px;
  --lp-radius-lg: 22px;
  --lp-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px -8px rgba(15, 23, 42, 0.08);
  --lp-shadow-lg: 0 20px 60px -15px rgba(37, 99, 235, 0.25);
  --lp-gradient: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-violet) 100%);
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--lp-ink-soft);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .lp-display {
  font-family: 'Inter', sans-serif;
  color: var(--lp-ink);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lp-primary);
  background: var(--lp-primary-light);
  border-radius: var(--lp-radius-pill, 999px);
  padding: 0.35rem 0.9rem;
}

.lp-section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.lp-section-sub {
  color: var(--lp-muted);
  font-size: 1.05rem;
  max-width: 640px;
}

.lp-btn {
  border-radius: var(--lp-radius-sm);
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  transition: all 0.2s ease;
  border: none;
}

.lp-btn-primary {
  background: var(--lp-gradient);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(37, 99, 235, 0.5);
}
.lp-btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -8px rgba(37, 99, 235, 0.6);
}

.lp-btn-outline {
  background: #fff;
  color: var(--lp-ink);
  border: 1.5px solid var(--lp-border);
}
.lp-btn-outline:hover {
  border-color: var(--lp-primary);
  color: var(--lp-primary);
  transform: translateY(-2px);
}

.lp-btn-ghost {
  background: transparent;
  color: var(--lp-ink);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.lp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* ===== Header ===== */
.lp-navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
  padding: 0.9rem 0;
}
.lp-navbar.lp-scrolled {
  border-bottom-color: var(--lp-border);
  box-shadow: 0 2px 20px rgba(15, 23, 42, 0.06);
  padding: 0.6rem 0;
}
.lp-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--lp-ink) !important;
  text-decoration: none;
}
.lp-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #fff;
}
.lp-brand-mark img {
  width: 100%;
  height: 100%;
  /* logo.png is a full lockup (emblem + wordmark + tagline) in one square
     file -- cropping to the top keeps just the circular VB emblem legible
     at navbar size instead of shrinking the whole poster illegibly. */
  object-fit: cover;
  object-position: top center;
  transform: scale(1.7);
  transform-origin: top center;
}
.lp-brand-logo-full {
  height: 46px;
  width: auto;
}
.lp-nav-link {
  font-weight: 600;
  color: var(--lp-ink-soft) !important;
  padding: 0.5rem 0.9rem !important;
  border-radius: var(--lp-radius-sm);
  transition: all 0.15s ease;
}
.lp-nav-link:hover,
.lp-nav-link.active {
  color: var(--lp-primary) !important;
  background: var(--lp-primary-light);
}

/* ===== Hero ===== */
.lp-hero {
  position: relative;
  padding: 8rem 0 6rem;
  background: linear-gradient(180deg, #f5f8ff 0%, #ffffff 65%);
  overflow: hidden;
}
.lp-hero::before,
.lp-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
}
.lp-hero::before {
  width: 480px;
  height: 480px;
  background: var(--lp-primary);
  top: -180px;
  right: -120px;
}
.lp-hero::after {
  width: 380px;
  height: 380px;
  background: var(--lp-violet);
  bottom: -160px;
  left: -100px;
  opacity: 0.2;
}
.lp-hero > .container { position: relative; z-index: 1; }

.lp-hero h1 {
  font-size: clamp(2.25rem, 4.2vw, 3.6rem);
  line-height: 1.1;
}
.lp-hero .lp-lead {
  font-size: 1.15rem;
  color: var(--lp-muted);
  max-width: 560px;
}

.lp-hero-stats {
  display: flex;
  gap: 2.2rem;
  margin-top: 2.5rem;
}
.lp-hero-stats .num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--lp-ink);
}
.lp-hero-stats .lbl {
  font-size: 0.82rem;
  color: var(--lp-muted);
}

/* ===== Mockup (CSS-built product screenshot, no external images) ===== */
.lp-mockup-frame {
  border-radius: var(--lp-radius-lg);
  background: #fff;
  box-shadow: var(--lp-shadow-lg);
  border: 1px solid var(--lp-border);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.4s ease;
}
.lp-mockup-frame:hover { transform: perspective(1400px) rotateY(-2deg) rotateX(1deg); }
.lp-mockup-bar {
  background: var(--lp-surface);
  border-bottom: 1px solid var(--lp-border);
  padding: 0.6rem 0.9rem;
  display: flex;
  gap: 0.35rem;
}
.lp-mockup-bar span {
  width: 10px; height: 10px; border-radius: 50%; background: #cbd5e1;
}
.lp-mockup-body {
  display: flex;
  min-height: 320px;
}
.lp-mockup-side {
  width: 30%;
  background: var(--lp-ink);
  padding: 1rem 0.75rem;
}
.lp-mockup-side .bar { height: 9px; border-radius: 4px; background: rgba(255,255,255,0.14); margin-bottom: 0.6rem; }
.lp-mockup-side .bar.active { background: var(--lp-primary); }
.lp-mockup-main { flex: 1; padding: 1.1rem; background: var(--lp-surface); }
.lp-mockup-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.6rem; margin-bottom: 0.9rem; }
.lp-mockup-kpi { background: #fff; border-radius: 10px; padding: 0.7rem; border: 1px solid var(--lp-border); }
.lp-mockup-kpi .v { height: 8px; width: 60%; border-radius: 3px; background: var(--lp-ink); opacity: 0.85; margin-bottom: 0.4rem; }
.lp-mockup-kpi .l { height: 6px; width: 40%; border-radius: 3px; background: var(--lp-border); }
.lp-mockup-chart { background: #fff; border-radius: 10px; border: 1px solid var(--lp-border); padding: 0.8rem; height: 130px; display: flex; align-items: flex-end; gap: 0.4rem; }
.lp-mockup-chart .bar { flex: 1; border-radius: 4px 4px 0 0; background: var(--lp-gradient); opacity: 0.85; }
.lp-mockup-rows { margin-top: 0.7rem; }
.lp-mockup-rows .row-line { height: 10px; border-radius: 4px; background: #fff; border: 1px solid var(--lp-border); margin-bottom: 0.45rem; }

/* Small floating badge over the hero mockup */
.lp-float-badge {
  position: absolute;
  background: #fff;
  border-radius: var(--lp-radius);
  box-shadow: var(--lp-shadow);
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--lp-ink);
  animation: lp-float 3.5s ease-in-out infinite;
}
.lp-float-badge .ic {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--lp-success); color: #fff; font-size: 0.95rem;
}
@keyframes lp-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* ===== Sections generic ===== */
.lp-section { padding: 5.5rem 0; }
.lp-section-alt { background: var(--lp-surface); }

/* ===== Feature / Module Cards ===== */
.lp-feature-card {
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 1.5rem 1.35rem;
  height: 100%;
  transition: all 0.22s ease;
}
.lp-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--lp-shadow);
  border-color: var(--lp-primary-light);
}
.lp-feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #fff;
}
.lp-feature-card h3 { font-size: 1.02rem; margin-bottom: 0.35rem; font-weight: 700; }
.lp-feature-card p { font-size: 0.88rem; color: var(--lp-muted); margin-bottom: 0; }

/* Rotating tone palette for icons (kept in fixed order, not randomized) */
.lp-tone-0 { background: linear-gradient(135deg,#2563eb,#3b82f6); }
.lp-tone-1 { background: linear-gradient(135deg,#7c3aed,#a78bfa); }
.lp-tone-2 { background: linear-gradient(135deg,#16a34a,#4ade80); }
.lp-tone-3 { background: linear-gradient(135deg,#f59e0b,#fbbf24); }
.lp-tone-4 { background: linear-gradient(135deg,#0ea5e9,#38bdf8); }
.lp-tone-5 { background: linear-gradient(135deg,#dc2626,#f87171); }

/* ===== Why Choose Us ===== */
.lp-why-item { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; }
.lp-why-item .ic {
  width: 46px; height: 46px; flex-shrink: 0; border-radius: 12px;
  background: var(--lp-primary-light); color: var(--lp-primary);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.lp-why-item h4 { font-size: 1rem; margin-bottom: 0.2rem; font-weight: 700; }
.lp-why-item p { font-size: 0.87rem; color: var(--lp-muted); margin-bottom: 0; }

/* ===== Screenshots slider ===== */
.lp-shot-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2rem; }
.lp-shot-tab {
  border: 1.5px solid var(--lp-border);
  background: #fff;
  border-radius: var(--lp-radius-pill, 999px);
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--lp-ink-soft);
  cursor: pointer;
  transition: all 0.15s ease;
}
.lp-shot-tab.active,
.lp-shot-tab:hover { background: var(--lp-gradient); color: #fff; border-color: transparent; }

.lp-shot-frame .lp-mockup-frame { transform: none; }

/* ===== Pricing ===== */
.lp-price-card {
  background: #fff;
  border: 1.5px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 2.2rem 1.8rem;
  height: 100%;
  position: relative;
  transition: all 0.22s ease;
}
.lp-price-card:hover { transform: translateY(-6px); box-shadow: var(--lp-shadow); }
.lp-price-card.lp-featured {
  border-color: var(--lp-primary);
  box-shadow: var(--lp-shadow-lg);
  transform: scale(1.03);
}
.lp-price-card.lp-featured:hover { transform: scale(1.03) translateY(-6px); }
.lp-price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--lp-gradient); color: #fff; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 999px; white-space: nowrap;
}
.lp-price-amount { font-size: 2.4rem; font-weight: 800; color: var(--lp-ink); }
.lp-price-amount span { font-size: 0.95rem; font-weight: 600; color: var(--lp-muted); }
.lp-price-feature { display: flex; align-items: center; gap: 0.55rem; font-size: 0.9rem; padding: 0.4rem 0; color: var(--lp-ink-soft); }
.lp-price-feature i { color: var(--lp-success); }

/* ===== About stats ===== */
.lp-stat-card { text-align: center; padding: 1.5rem 1rem; }
.lp-stat-card .num { font-size: 2.4rem; font-weight: 800; background: var(--lp-gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lp-stat-card .lbl { color: var(--lp-muted); font-weight: 600; font-size: 0.92rem; }

/* ===== Testimonials ===== */
.lp-testimonial-card {
  background: #fff; border: 1px solid var(--lp-border); border-radius: var(--lp-radius);
  padding: 1.6rem; height: 100%;
}
.lp-testimonial-card .stars { color: var(--lp-warning); font-size: 0.85rem; margin-bottom: 0.7rem; }
.lp-testimonial-card p.quote { font-size: 0.94rem; color: var(--lp-ink-soft); font-style: italic; }
.lp-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--lp-gradient); color: #fff; font-weight: 700; font-size: 0.9rem;
  flex-shrink: 0;
}

/* ===== FAQ ===== */
.lp-accordion .accordion-item { border: 1px solid var(--lp-border); border-radius: var(--lp-radius) !important; overflow: hidden; margin-bottom: 0.8rem; }
.lp-accordion .accordion-button { font-weight: 700; color: var(--lp-ink); }
.lp-accordion .accordion-button:not(.collapsed) { background: var(--lp-primary-light); color: var(--lp-primary-dark); box-shadow: none; }
.lp-accordion .accordion-button:focus { box-shadow: none; }

/* ===== Contact ===== */
.lp-contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.4rem; }
.lp-contact-item .ic {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 10px;
  background: var(--lp-primary-light); color: var(--lp-primary);
  display: flex; align-items: center; justify-content: center;
}
.lp-map-frame { border-radius: var(--lp-radius); overflow: hidden; border: 1px solid var(--lp-border); filter: grayscale(0.15); }
.lp-form-control {
  border: 1.5px solid var(--lp-border); border-radius: var(--lp-radius-sm); padding: 0.65rem 0.9rem; font-size: 0.92rem;
}
.lp-form-control:focus { border-color: var(--lp-primary); box-shadow: 0 0 0 3px var(--lp-primary-light); outline: none; }

/* ===== CTA band ===== */
.lp-cta-band {
  background: var(--lp-gradient);
  border-radius: var(--lp-radius-lg);
  padding: 3.5rem 2rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* ===== Footer ===== */
.lp-footer { background: var(--lp-ink); color: #cbd5e1; padding: 4rem 0 1.5rem; }
.lp-footer h6 { color: #fff; font-weight: 700; margin-bottom: 1.1rem; font-size: 0.95rem; }
.lp-footer a { color: #94a3b8; text-decoration: none; font-size: 0.9rem; }
.lp-footer a:hover { color: #fff; }
.lp-footer ul { list-style: none; padding: 0; }
.lp-footer ul li { margin-bottom: 0.6rem; }
.lp-social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: all 0.15s ease;
}
.lp-social-icon:hover { background: var(--lp-primary); transform: translateY(-3px); }
.lp-footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; margin-top: 2.5rem; font-size: 0.85rem; color: #94a3b8; }

/* ===== Reveal-on-scroll ===== */
.lp-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.lp-reveal.lp-in { opacity: 1; transform: translateY(0); }

/* ===== Back to top ===== */
.lp-to-top {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 1000;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--lp-gradient); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--lp-shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all 0.25s ease;
}
.lp-to-top.lp-show { opacity: 1; visibility: visible; transform: translateY(0); }

@media (max-width: 991.98px) {
  .lp-mockup-frame { transform: none; margin-top: 2.5rem; }
  .lp-hero { padding: 7rem 0 4rem; text-align: center; }
  .lp-hero .lp-lead { margin-left: auto; margin-right: auto; }
  .lp-hero-stats { justify-content: center; }
}
