﻿/* ============================================================
   ACCOUNTANT — Landing (UjDesign) — scoped under .lp / .lp-nav
   ============================================================ */
.lp {
  --lp-dark:        #0e1322;
  --lp-dark-2:      #161b2e;
  --lp-dark-border: rgba(255,255,255,0.08);
  --lp-on-dark:     #9aa3b6;
  --lp-light-bg:    #f5f7fa;
  --lp-card-border: #e2e7ee;
  --lp-text-body:   #5a6374;
  --lp-text-dark:   #171c28;

  /* aliases matching the original design HTML variable names (scoped) */
  --dark:         #0e1322;
  --dark-2:       #161b2e;
  --dark-border:  rgba(255,255,255,0.08);
  --purple:       #7c3aed;
  --blue:         #2f6bf0;
  --text-on-dark: #9aa3b6;
  --light-bg:     #f5f7fa;
  --card-border:  #e2e7ee;
  --text-body:    #5a6374;
  --text-dark:    #171c28;

  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: #fff;
  color: var(--lp-text-dark);
  line-height: 1.6;
}
.lp a { text-decoration: none; color: inherit; }

/* ─── NAV ─── */
.lp-nav {
  position: sticky; top: 0; z-index: 1000;
  height: 58px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  background: rgba(14,19,34,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lp-logo { display: flex; align-items: center; gap: 9px; color: #fff; font-size: 14px; font-weight: 700; letter-spacing: -0.01em; }
.lp-logo-mark {
  width: 30px; height: 30px; border-radius: 8px;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lp-nav-actions { display: flex; align-items: center; gap: 10px; }

/* ─── BUTTONS ─── */
.lp-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px; border: none; cursor: pointer;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  color: #fff !important; font-family: inherit; font-size: 14px; font-weight: 600;
  transition: opacity .18s, transform .18s;
}
.lp-btn-primary:hover { opacity: .88; transform: translateY(-1px); color: #fff; }
.lp-btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px; cursor: pointer;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  color: #c3c9d6 !important; font-family: inherit; font-size: 14px; font-weight: 600;
  transition: background .18s;
}
.lp-btn-ghost:hover { background: rgba(255,255,255,0.10); }
.lp-nav .lp-btn-primary, .lp-nav .lp-btn-ghost { padding: 8px 16px; font-size: 13px; }

/* ─── HERO ─── */
.lp .hero {
  min-height: calc(100vh - 58px);
  background: var(--lp-dark);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 72px 56px;
}
.lp .glow { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(90px); }
.lp .glow-1 { width: 640px; height: 640px; background: rgba(124,58,237,0.16); top: -160px; left: -160px; }
.lp .glow-2 { width: 520px; height: 520px; background: rgba(47,107,240,0.14); bottom: -80px; right: 120px; }
.lp .glow-3 { width: 300px; height: 300px; background: rgba(124,58,237,0.08); top: 40%; right: -60px; }
.lp .hero::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.lp .hero-inner {
  position: relative; z-index: 1;
  max-width: 1240px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.lp .badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 13px; border-radius: 99px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.lp .badge-ghost { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.13); color: #9ba6c6; }
.lp .badge-dot { width: 6px; height: 6px; border-radius: 50%; background: #3b82f6; }
.lp .hero-left { display: flex; flex-direction: column; gap: 26px; }
.lp .hero-h1 { font-size: clamp(38px, 4.2vw, 56px); font-weight: 800; line-height: 1.08; letter-spacing: -0.025em; color: #fff; }
.lp .grad-text { background: linear-gradient(130deg, #c084fc 10%, #60a5fa 90%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.lp .hero-desc { font-size: 16px; color: var(--lp-on-dark); line-height: 1.75; max-width: 400px; }
.lp .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.lp .trust { display: flex; gap: 20px; flex-wrap: wrap; }
.lp .trust span { font-size: 12px; color: #717b90; }

/* ─── DASHBOARD MOCKUP ─── */
.lp .hero-right { display: flex; justify-content: center; }
.lp .dash-window {
  width: 100%; max-width: 540px; border-radius: 16px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.09), 0 32px 80px rgba(0,0,0,0.55), 0 8px 24px rgba(124,58,237,0.15);
  transform: perspective(1100px) rotateY(-4deg) rotateX(2deg);
}
.lp .win-bar { background: #dde1e8; padding: 11px 16px; display: flex; align-items: center; gap: 10px; border-bottom: 1px solid #ced3dc; }
.lp .win-dots { display: flex; gap: 6px; }
.lp .win-dot { width: 10px; height: 10px; border-radius: 50%; }
.lp .dot-r { background: #ff5f57; } .lp .dot-y { background: #febc2e; } .lp .dot-g { background: #28c840; }
.lp .win-title { font-size: 12px; color: #767c8b; font-weight: 500; }
.lp .win-body { background: #fff; padding: 22px; }
.lp .dash-kpis { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; margin-bottom: 20px; }
.lp .kpi { padding-bottom: 14px; border-bottom: 1px solid #e8ebf0; }
.lp .kpi + .kpi { padding-left: 16px; border-left: 1px solid #e8ebf0; }
.lp .kpi-label { font-size: 9px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: #7c8597; margin-bottom: 4px; }
.lp .kpi-val { font-size: 17px; font-weight: 800; letter-spacing: -0.01em; }
.lp .v-neu { color: #232a3a; } .lp .v-grn { color: #16a34a; } .lp .v-red { color: #dc2626; }
.lp .dash-label { font-size: 9px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: #7c8597; margin: 16px 0 10px; }
.lp .chart { display: flex; align-items: flex-end; gap: 5px; height: 52px; margin-bottom: 18px; }
.lp .bar { flex: 1; border-radius: 3px 3px 0 0; background: #c4d3f5; }
.lp .bar.hi { background: #2563eb; }
.lp .txlist { display: flex; flex-direction: column; gap: 11px; }
.lp .tx { display: flex; align-items: center; gap: 11px; }
.lp .tx-ico { width: 32px; height: 32px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.lp .tx-meta { flex: 1; }
.lp .tx-cat { font-size: 9px; color: #828ba0; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
.lp .tx-name { font-size: 13px; font-weight: 600; color: #232a3a; }
.lp .tx-amt { font-size: 13px; font-weight: 700; }
.lp .neg { color: #dc2626; } .lp .pos { color: #16a34a; }

/* ─── SECTIONS ─── */
.lp .sec { padding: 96px 56px; }
.lp .sec-inner { max-width: 1240px; margin: 0 auto; }
.lp .sec-head { text-align: center; margin-bottom: 56px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.lp .badge-tinted { background: #e0e5f7; border: 1px solid #c5cdef; color: #4338ca; }
.lp .sec-title { font-size: clamp(28px, 3.2vw, 40px); font-weight: 800; letter-spacing: -0.022em; color: var(--lp-text-dark); }
.lp .sec-sub { font-size: 15px; color: var(--lp-text-body); max-width: 480px; text-align: center; line-height: 1.7; }

/* ─── FEATURES ─── */
.lp .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.lp .feat-card { background: #fff; border: 1px solid var(--lp-card-border); border-radius: 16px; padding: 28px; transition: box-shadow .22s, transform .22s, border-color .22s; }
.lp .feat-card:hover { box-shadow: 0 12px 36px rgba(124,58,237,0.10); transform: translateY(-3px); border-color: #a7adde; }
.lp .feat-ico { width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.lp .feat-name { font-size: 14px; font-weight: 700; margin-bottom: 7px; color: var(--lp-text-dark); }
.lp .feat-desc { font-size: 13px; color: var(--lp-text-body); line-height: 1.65; }

/* ─── HOW IT WORKS ─── */
.lp .how-sec { background: var(--lp-dark); padding: 96px 56px; position: relative; overflow: hidden; }
.lp .how-glow { position: absolute; border-radius: 50%; pointer-events: none; width: 500px; height: 500px; background: rgba(124,58,237,0.10); filter: blur(80px); bottom: -120px; left: -60px; }
.lp .how-inner { max-width: 1240px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1; }
.lp .how-left { display: flex; flex-direction: column; gap: 20px; }
.lp .how-title { font-size: clamp(28px, 3.2vw, 40px); font-weight: 800; letter-spacing: -0.022em; color: #fff; line-height: 1.15; }
.lp .how-sub { font-size: 15px; color: var(--lp-on-dark); }
.lp .steps { display: flex; flex-direction: column; gap: 14px; }
.lp .step { display: flex; gap: 16px; align-items: flex-start; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; padding: 20px 22px; transition: background .18s, border-color .18s; }
.lp .step:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.14); }
.lp .step-num { width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0; background: linear-gradient(135deg, #7c3aed, #2563eb); color: #fff; font-size: 14px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.lp .step-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.lp .step-desc { font-size: 13px; color: var(--lp-on-dark); line-height: 1.6; }

/* ─── PRICING ─── */
.lp .pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 820px; margin: 0 auto; }
.lp .price-card { background: #fff; border: 1px solid var(--lp-card-border); border-radius: 20px; padding: 36px; }
.lp .price-card.pro { border: 2px solid transparent; background: linear-gradient(#fff, #fff) padding-box, linear-gradient(135deg, #7c3aed, #2563eb) border-box; box-shadow: 0 20px 60px rgba(124,58,237,0.16); }
.lp .pro-badge { display: inline-block; margin-bottom: 16px; padding: 4px 11px; border-radius: 99px; background: linear-gradient(135deg, #7c3aed, #2563eb); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.06em; }
.lp .price-tier { font-size: 13px; color: var(--lp-text-body); font-weight: 500; margin-bottom: 4px; }
.lp .price-num { font-size: 42px; font-weight: 800; letter-spacing: -0.025em; line-height: 1; margin: 4px 0 4px; }
.lp .price-free { color: #727b93; }
.lp .price-paid { color: #2563eb; }
.lp .price-period { font-size: 13px; color: var(--lp-text-body); margin-bottom: 26px; }
.lp .feat-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; padding: 0; }
.lp .feat-item { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--lp-text-body); }
.lp .chk { color: #16a34a; font-size: 15px; flex-shrink: 0; }
.lp .btn-outline-price { width: 100%; padding: 12px; border-radius: 10px; cursor: pointer; border: 1.5px solid #b3b8e3; background: transparent; color: #4338ca; font-family: inherit; font-size: 14px; font-weight: 600; transition: background .18s; display: block; text-align: center; }
.lp .btn-outline-price:hover { background: #eef1fb; }
.lp .btn-fill-price { width: 100%; padding: 13px; border-radius: 10px; border: none; cursor: pointer; background: linear-gradient(135deg, #7c3aed, #2563eb); color: #fff; font-family: inherit; font-size: 14px; font-weight: 600; transition: opacity .18s, transform .18s; display: block; text-align: center; }
.lp .btn-fill-price:hover { opacity: .88; transform: translateY(-1px); color: #fff; }

/* ─── CTA ─── */
.lp .cta-sec { background: var(--lp-dark); padding: 96px 56px; text-align: center; position: relative; overflow: hidden; }
.lp .cta-glow { position: absolute; width: 480px; height: 480px; border-radius: 50%; background: rgba(109,40,217,0.18); filter: blur(80px); top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; }
.lp .cta-inner { position: relative; z-index: 1; }
.lp .cta-title { font-size: clamp(36px, 5vw, 56px); font-weight: 800; color: #fff; letter-spacing: -0.025em; margin-bottom: 12px; }
.lp .cta-sub { font-size: 15px; color: var(--lp-on-dark); margin-bottom: 32px; }
.lp .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
.lp .lp-footer { background: #0a0d18; padding: 60px 56px 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.lp .foot-inner { max-width: 1240px; margin: 0 auto; }
.lp .foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.lp .foot-tagline { font-size: 13px; color: #6e7790; line-height: 1.65; max-width: 220px; margin-top: 12px; }
.lp .foot-col-title { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #6e7790; margin-bottom: 14px; }
.lp .foot-links { list-style: none; display: flex; flex-direction: column; gap: 9px; padding: 0; }
.lp .foot-links a { font-size: 13px; color: #888fa6; transition: color .15s; }
.lp .foot-links a:hover { color: #fff; }
.lp .foot-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; color: #646d84; flex-wrap: wrap; gap: 10px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 860px) {
  .lp-nav { padding: 0 20px; }
  .lp .hero { padding: 84px 20px 56px; }
  .lp .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .lp .sec, .lp .how-sec, .lp .cta-sec { padding: 64px 20px; }
  .lp .feat-grid { grid-template-columns: 1fr; }
  .lp .how-inner { grid-template-columns: 1fr; gap: 40px; }
  .lp .pricing-grid { grid-template-columns: 1fr; }
  .lp .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
