/* ==========================================================================
   LimaxPay Homepage Redesign — Design System
   ========================================================================== */

/* Override Bootstrap's smooth-scroll so page navigation jumps instantly to top */
:root { scroll-behavior: auto !important; }

/* ── Header background matches hero gradient top colour ── */
.header:not(.stick) {
  background: linear-gradient(140deg, #EEF2FF 0%, #F5F3FF 35%, #EDE9FE 60%, #E8E4FF 100%);
  border-bottom-color: transparent;
}
/* Nav links and text stay readable on the lavender bg */
.header:not(.stick) .main-menu > li > a,
.header:not(.stick) .burger-icon span {
  color: #1E293B;
}

:root {
  --lp-primary:       #4338CA;
  --lp-primary-dark:  #3730A3;
  --lp-secondary:     #6366F1;
  --lp-accent:        #A5B4FC;
  --lp-bg:            #F8FAFC;
  --lp-card:          #FFFFFF;
  --lp-border:        #E5E7EB;
  --lp-border-light:  #F1F5F9;
  --lp-success:       #22C55E;
  --lp-warning:       #F59E0B;
  --lp-danger:        #EF4444;
  --lp-text:          #0F172A;
  --lp-text-secondary:#475569;
  --lp-text-muted:    #94A3B8;
  --lp-radius:        20px;
  --lp-radius-sm:     12px;
  --lp-shadow:        0 10px 40px rgba(15,23,42,0.08);
  --lp-shadow-hover:  0 20px 60px rgba(67,56,202,0.14);
}

.lp-section {
  font-family: var(--font-inter,'Inter'), var(--font-jakarta,'Plus Jakarta Sans'), -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
}


/* ─── Container ─────────────────────────────────────────────────────────── */
.lp-container { max-width: 1410px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .lp-container { padding: 0 20px; } }
.lp-text-center { text-align: center; }

.lp-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lp-secondary);
  margin-bottom: 14px;
}
.lp-section-heading {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  color: #0B0F1A;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  font-family: var(--font-jakarta,'Plus Jakarta Sans'), var(--font-inter,'Inter'), sans-serif;
}
.lp-section-subheading {
  font-size: 18px;
  color: #475569;
  line-height: 1.65;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Shared Buttons ────────────────────────────────────────────────────── */
.lp-btn-primary {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: linear-gradient(135deg, var(--lp-primary) 0%, var(--lp-secondary) 100%);
  color: #fff !important; border: none; border-radius: var(--lp-radius-sm);
  padding: 18px 28px; font-size: 15px; font-weight: 600;
  text-decoration: none !important; cursor: pointer; transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(67,56,202,0.28); font-family: inherit;
}
.lp-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(67,56,202,0.38); color: #fff !important; }

.lp-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: white; color: var(--lp-text) !important;
  border: 1.5px solid var(--lp-border); border-radius: var(--lp-radius-sm);
  padding: 17px 24px; font-size: 15px; font-weight: 600;
  text-decoration: none !important; cursor: pointer; transition: all 0.25s ease; font-family: inherit;
}
.lp-btn-secondary:hover { border-color: var(--lp-primary); color: var(--lp-primary) !important; background: #EEF2FF; transform: translateY(-2px); }

.lp-btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--lp-primary) !important; border: none;
  border-radius: var(--lp-radius-sm); padding: 14px 28px; font-size: 15px; font-weight: 700;
  text-decoration: none !important; cursor: pointer; transition: all 0.25s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18); font-family: inherit;
}
.lp-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.24); color: var(--lp-primary) !important; }

.lp-btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.9) !important;
  border: 1.5px solid rgba(255,255,255,0.3); border-radius: var(--lp-radius-sm);
  padding: 13px 24px; font-size: 15px; font-weight: 600;
  text-decoration: none !important; cursor: pointer; transition: all 0.25s ease; font-family: inherit;
}
.lp-btn-ghost-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: white !important; transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════════════ */
.lp-hero {
  background: linear-gradient(140deg, #EEF2FF 0%, #F5F3FF 35%, #EDE9FE 60%, #E8E4FF 100%);
  padding: 36px 0 80px;
  overflow: hidden;
  position: relative;
}
.lp-hero::before {
  content: ''; position: absolute; top: -100px; right: 0;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(139,92,246,0.09) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

.lp-hero__grid {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 48px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}
@media (max-width: 1024px) { .lp-hero__grid { grid-template-columns: 1fr; gap: 48px; } .lp-hero { padding: 32px 0 64px; } }

/* Badge */
.lp-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.75); color: var(--lp-primary);
  border: 1px solid #C7D2FE; border-radius: 100px;
  padding: 6px 14px 6px 8px; font-size: 13px; font-weight: 600;
  margin-bottom: 24px; backdrop-filter: blur(8px);
  align-self: flex-start;
}
.lp-hero__badge-icon {
  width: 22px; height: 22px; background: #EEF2FF; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--lp-primary); flex-shrink: 0;
}
.lp-hero__badge-icon svg { width: 12px; height: 12px; }

/* Headlines */
.lp-hero__headline {
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 800; color: #0B0F1A; line-height: 1.04;
  margin-bottom: 14px;
  font-family: var(--font-jakarta,'Plus Jakarta Sans'), var(--font-inter,'Inter'), sans-serif;
  letter-spacing: -0.035em;
}
.lp-hero__subline {
  font-size: clamp(34px, 3.9vw, 54px);
  font-weight: 800; line-height: 1.05; margin-bottom: 26px;
  background: linear-gradient(90deg, #4338CA 0%, #6366F1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-family: var(--font-jakarta,'Plus Jakarta Sans'), var(--font-inter,'Inter'), sans-serif;
  letter-spacing: -0.035em;
}
.lp-hero__description { font-size: 18px; color: #475569; line-height: 1.7; margin-bottom: 32px; max-width: 496px; font-weight: 400; }

/* CTA buttons */
.lp-hero__ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }

.lp-hero__cta-primary {
  display: inline-flex; align-items: center;
  background: #3D35C7; color: white !important; text-decoration: none;
  border-radius: 12px; padding: 18px 40px; font-size: 17px; font-weight: 700;
  transition: all 0.25s; box-shadow: 0 4px 20px rgba(61,53,199,0.32); font-family: var(--font-inter,'Inter'), sans-serif;
}
.lp-hero__cta-primary:hover { background: #3028B5; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(61,53,199,0.40); color: white !important; }

.lp-hero__cta-secondary {
  display: inline-flex; align-items: center; gap: 6px;
  background: white; color: #1E293B !important; text-decoration: none;
  border: 1.5px solid #D1D5DB; border-radius: 12px; padding: 17px 32px;
  font-size: 17px; font-weight: 600; transition: all 0.25s; font-family: var(--font-inter,'Inter'), sans-serif;
}
.lp-hero__cta-secondary:hover { border-color: #4338CA; color: #4338CA !important; transform: translateY(-2px); }

/* Icon-box trust badges */
.lp-hero__trust { display: flex; align-items: flex-start; gap: 24px; flex-wrap: wrap; }
.lp-hero__trust-item { display: flex; align-items: center; gap: 10px; }
.lp-hero__trust-icon {
  width: 38px; height: 38px; background: white; border: 1px solid #E5E7EB; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #3730A3;
  flex-shrink: 0; box-shadow: 0 2px 8px rgba(15,23,42,0.06);
}
.lp-hero__trust-icon svg { width: 17px; height: 17px; }
.lp-hero__trust-label { font-size: 13px; font-weight: 700; color: #0F172A; line-height: 1.2; }
.lp-hero__trust-sub { font-size: 12px; color: #94A3B8; font-weight: 400; margin-top: 1px; }

/* Left copy col — vertically centred */
.lp-hero__copy { display: flex; flex-direction: column; justify-content: center; }

/* Visual side */
.lp-hero__visual { position: relative; display: flex; flex-direction: column; }
.lp-dash-wrap { position: relative; flex: 1; display: flex; flex-direction: column; }

/* ── Dashboard card mock ── */
.lp-dash {
  background: white; border-radius: 16px;
  border: 1px solid #E2E8F0;
  box-shadow: 0 24px 80px rgba(15,23,42,0.18);
  overflow: hidden; font-family: var(--font-inter,'Inter'), sans-serif; font-size: 13px;
  flex: 1; display: flex; flex-direction: column;
  position: relative; z-index: 1;
}

.lp-dash__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 17px; border-bottom: 1px solid #F1F5F9; background: white;
}
.lp-dash__header-left { display: flex; align-items: center; gap: 16px; }
.lp-dash__logo-row { display: flex; align-items: center; gap: 6px; }
.lp-dash__logo-row img { height: 20px; width: auto; }
.lp-dash__logo-text { font-size: 14px; font-weight: 700; color: #0F172A; }
.lp-dash__bc { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #94A3B8; }
.lp-dash__bc-active { color: #0F172A; font-weight: 700; font-size: 13px; }
.lp-dash__header-icons { display: flex; align-items: center; gap: 7px; }
.lp-dash__hicon { width: 26px; height: 26px; border-radius: 50%; background: #F8FAFC; display: flex; align-items: center; justify-content: center; color: #94A3B8; }
.lp-dash__hicon svg { width: 12px; height: 12px; }
.lp-dash__avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg,#4338CA,#7C3AED); flex-shrink: 0; }

/* body */
.lp-dash__body { display: flex; flex: 1; min-height: 0; }

/* Sidebar */
.lp-dash__sidebar { width: 132px; flex-shrink: 0; border-right: 1px solid #F1F5F9; padding: 7px 0; background: white; align-self: stretch; }
.lp-dash__nav-item {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 10px; font-size: 12px; font-weight: 500; color: #64748B;
  cursor: default; border-radius: 6px; margin: 1px 6px; white-space: nowrap;
}
.lp-dash__nav-item.active { background: #4338CA; color: white; font-weight: 600; }
.lp-dash__nav-item svg { width: 12px; height: 12px; flex-shrink: 0; }

/* Main content area */
.lp-dash__main { flex: 1; padding: 12px; background: #F8FAFC; min-width: 0; display: flex; flex-direction: column; }

/* Stat cards */
.lp-dash__stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 9px; margin-bottom: 10px; }
.lp-dash__stat { background: white; border: 1px solid #F1F5F9; border-radius: 8px; padding: 9px 11px; }
.lp-dash__stat-label { font-size: 10px; color: #94A3B8; font-weight: 500; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-dash__stat-value { font-size: 17px; font-weight: 800; color: #0F172A; line-height: 1; margin-bottom: 4px; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; }
.lp-dash__stat-change { font-size: 10px; font-weight: 600; }
.lp-dash__stat-change.up { color: #16A34A; }
.lp-dash__stat-change.down { color: #DC2626; }

/* Two-column content layout: line chart left | donut+activity right */
.lp-dash__content-cols { display: flex; gap: 9px; flex: 1; min-height: 0; }
.lp-dash__col-left { flex: 1.4; display: flex; flex-direction: column; }
.lp-dash__col-right { flex: 1; display: flex; flex-direction: column; gap: 9px; }

/* Charts */
.lp-dash__chart-card { background: white; border: 1px solid #F1F5F9; border-radius: 8px; padding: 11px; overflow: hidden; }
.lp-dash__chart-title { font-size: 11.5px; font-weight: 700; color: #0F172A; margin-bottom: 8px; }
.lp-dash__linechart { width: 100%; height: 78px; overflow: hidden; display: block; }

/* Donut */
.lp-dash__donut-wrap { display: flex; gap: 10px; align-items: center; }
.lp-dash__donut {
  width: 83px; height: 83px; border-radius: 50%; flex-shrink: 0;
  background: conic-gradient(#4338CA 0% 76.7%, #F97316 76.7% 85.9%, #EF4444 85.9% 93.4%, #8B5CF6 93.4% 100%);
  position: relative;
}
.lp-dash__donut-inner { position: absolute; inset: 14px; background: white; border-radius: 50%; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.lp-dash__donut-val { font-size: 10.5px; font-weight: 800; color: #0F172A; line-height: 1; }
.lp-dash__donut-sub { font-size: 8px; color: #94A3B8; }
.lp-dash__legend { display: flex; flex-direction: column; gap: 4px; }
.lp-dash__legend-item { display: flex; align-items: center; gap: 4px; font-size: 10px; color: #64748B; }
.lp-dash__legend-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

/* Recent activity */
.lp-dash__activity { background: white; border: 1px solid #F1F5F9; border-radius: 8px; padding: 10px 11px; flex: 1; }
.lp-dash__activity-title { font-size: 11.5px; font-weight: 700; color: #0F172A; margin-bottom: 6px; }
.lp-dash__activity-row { display: flex; align-items: center; justify-content: space-between; padding: 4px 0; border-bottom: 1px solid #F8FAFC; gap: 7px; }
.lp-dash__activity-row:last-child { border-bottom: none; }
.lp-dash__act-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.lp-dash__act-text { font-size: 10px; color: #374151; flex: 1; line-height: 1.3; }
.lp-dash__act-meta { text-align: right; flex-shrink: 0; }
.lp-dash__act-amount { font-size: 10px; font-weight: 700; color: #0F172A; display: block; }
.lp-dash__act-time { font-size: 9.5px; color: #94A3B8; }

/* ── Phone mockup overlay — positioned on .lp-hero__visual ── */
.lp-dash__phone {
  position: absolute; bottom: 28px; left: 36%;
  transform: translateX(-50%);
  width: 158px; background: #0F172A; border-radius: 24px;
  padding: 12px 8px 14px;
  box-shadow: 0 20px 50px rgba(15,23,42,0.55);
  z-index: 200;
}
.lp-dash__phone-notch { width: 42px; height: 5px; background: #374151; border-radius: 4px; margin: 0 auto 5px; }
.lp-dash__phone-time { font-size: 12px; font-weight: 700; color: white; text-align: center; margin-bottom: 7px; letter-spacing: 0.02em; font-family: var(--font-inter,'Inter'),sans-serif; }
.lp-dash__phone-screen { background: white; border-radius: 14px; padding: 22px 14px 17px; text-align: center; }
.lp-dash__phone-lock-circle { width: 64px; height: 64px; background: #4338CA; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; color: white; }
.lp-dash__phone-lock-circle svg { width: 29px; height: 29px; }
.lp-dash__phone-title { font-size: 14px; font-weight: 700; color: #0F172A; margin-bottom: 7px; line-height: 1.2; font-family: var(--font-inter,'Inter'),sans-serif; }
.lp-dash__phone-desc { font-size: 10.5px; color: #64748B; line-height: 1.55; margin-bottom: 16px; font-family: var(--font-inter,'Inter'),sans-serif; }
.lp-dash__phone-btn { background: #4338CA; color: white; border-radius: 9px; padding: 10px 8px; font-size: 11px; font-weight: 700; width: 100%; display: block; text-align: center; font-family: var(--font-inter,'Inter'),sans-serif; }

/* ── Floating product badges over the dashboard ── */
.lp-hero__float {
  position: absolute; z-index: 250;
  display: flex; align-items: center; gap: 9px;
  background: #fff; border: 1px solid #EEF0F6; border-radius: 13px;
  padding: 9px 13px 9px 10px; box-shadow: 0 14px 34px rgba(15,23,42,0.16);
  font-family: var(--font-inter,'Inter'), sans-serif;
  animation: lp-float 4.5s ease-in-out infinite;
}
.lp-hero__float-icon { width: 32px; height: 32px; border-radius: 9px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.lp-hero__float-icon svg { width: 16px; height: 16px; }
.lp-hero__float-title { font-size: 12.5px; font-weight: 800; color: #0B1020; line-height: 1.15; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; }
.lp-hero__float-sub { font-size: 10.5px; color: #64748B; margin-top: 2px; line-height: 1.2; }

/* Per-badge color + placement */
.lp-hero__float--overdue { top: 10px; left: -22px; animation-delay: 0s; }
.lp-hero__float--overdue .lp-hero__float-icon { background: #FEF3C7; color: #D97706; }
.lp-hero__float--paid { top: 64px; right: -24px; animation-delay: 0.8s; }
.lp-hero__float--paid .lp-hero__float-icon { background: #DCFCE7; color: #16A34A; }
.lp-hero__float--locked { bottom: 96px; left: -26px; animation-delay: 1.6s; }
.lp-hero__float--locked .lp-hero__float-icon { background: #FEE2E2; color: #DC2626; }
.lp-hero__float--collect { bottom: 30px; right: -18px; animation-delay: 2.4s; }
.lp-hero__float--collect .lp-hero__float-icon { background: #EEF2FF; color: #4338CA; }

@keyframes lp-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@media (prefers-reduced-motion: reduce) { .lp-hero__float { animation: none; } }

@media (max-width: 1180px) { .lp-hero__float--overdue, .lp-hero__float--locked { left: -8px; } .lp-hero__float--paid, .lp-hero__float--collect { right: -6px; } }
@media (max-width: 1024px) { .lp-dash__phone { display: none; } .lp-dash__stats { grid-template-columns: repeat(2,1fr); } .lp-hero__float { display: none; } }
@media (max-width: 640px) { .lp-hero__visual { display: none; } }

/* ═══════════════════════════════════════════════════════════════════════════
   TRUSTED BY
═══════════════════════════════════════════════════════════════════════════ */
.lp-trusted { padding: 40px 0; background: white; border-top: 1px solid var(--lp-border-light); border-bottom: 1px solid var(--lp-border-light); }
.lp-trusted__label { text-align: center; font-size: 12px; font-weight: 600; color: var(--lp-text-muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 28px; }
.lp-trusted__logos { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.lp-trusted__logo-pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 18px; background: var(--lp-bg); border: 1px solid var(--lp-border); border-radius: 100px; transition: all 0.25s ease; }
.lp-trusted__logo-pill:hover { border-color: #C7D2FE; background: #EEF2FF; }
.lp-trusted__logo-name { font-size: 13px; font-weight: 700; color: #64748B; letter-spacing: -0.01em; white-space: nowrap; transition: color 0.25s; }
.lp-trusted__logo-pill:hover .lp-trusted__logo-name { color: var(--lp-primary); }

/* ═══════════════════════════════════════════════════════════════════════════
   IMPACT / STATS
═══════════════════════════════════════════════════════════════════════════ */
.lp-impact { padding: 80px 0; background: white; }

/* Header */
.lp-impact__header { text-align: center; margin-bottom: 48px; }
.lp-impact__badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: #F0EFFE; color: #4338CA; border: 1px solid #C7D2FE;
  border-radius: 100px; padding: 6px 16px 6px 10px;
  font-size: 13px; font-weight: 600; margin-bottom: 20px;
  font-family: var(--font-inter,'Inter'), sans-serif;
}
.lp-impact__badge svg { width: 15px; height: 15px; }
.lp-impact__title {
  font-size: clamp(32px, 4vw, 46px); font-weight: 700; color: #0B0F1A;
  line-height: 1.12; margin-bottom: 18px;
  font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'), sans-serif; letter-spacing: -0.025em;
}
.lp-impact__highlight {
  background: linear-gradient(90deg, #4338CA 0%, #6366F1 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.lp-impact__subtitle { font-size: 18px; color: #475569; line-height: 1.65; }

/* Dark stats card */
.lp-impact__card {
  display: grid; grid-template-columns: repeat(6, 1fr);
  background: linear-gradient(135deg, #1A1760 0%, #1E1B6B 30%, #2D2A8F 60%, #3730A3 100%);
  border-radius: 28px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(26,23,96,0.28);
}
@media (max-width: 1024px) { .lp-impact__card { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 580px) { .lp-impact__card { grid-template-columns: repeat(2,1fr); } }

.lp-impact__stat {
  padding: 44px 26px 38px;
  border-right: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-direction: column; align-items: flex-start; gap: 0;
}
.lp-impact__stat:nth-child(6n) { border-right: none; }
.lp-impact__stat:nth-last-child(-n+6) { border-bottom: none; }
@media (max-width: 1024px) { .lp-impact__stat:nth-child(6n) { border-right: 1px solid rgba(255,255,255,0.08); } .lp-impact__stat:nth-child(3n) { border-right: none; } .lp-impact__stat:nth-last-child(-n+6) { border-bottom: 1px solid rgba(255,255,255,0.08); } .lp-impact__stat:nth-last-child(-n+3) { border-bottom: none; } }

.lp-impact__icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: white; margin-bottom: 24px; flex-shrink: 0;
}
.lp-impact__icon svg { width: 24px; height: 24px; }

.lp-impact__value {
  font-size: clamp(34px, 3.4vw, 50px); font-weight: 800; color: white;
  line-height: 1; margin-bottom: 12px;
  font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'), sans-serif; letter-spacing: -0.03em;
}
.lp-impact__label {
  font-size: 14px; color: rgba(255,255,255,0.72); font-weight: 500;
  line-height: 1.4; margin-bottom: 16px;
}
.lp-impact__trend {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11.5px; font-weight: 600; border-radius: 100px;
  padding: 4px 10px;
}
.lp-impact__trend.up { color: #4ADE80; background: rgba(74,222,128,0.12); }
.lp-impact__trend.down { color: #F87171; background: rgba(248,113,113,0.12); }

/* ═══════════════════════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════════════════════ */
.lp-how { padding: 96px 0 80px; background: white; }
.lp-how__header { text-align: center; margin-bottom: 68px; }
.lp-how__title { font-size: clamp(32px,4vw,46px); font-weight: 700; color: #0B0F1A; line-height: 1.12; margin-bottom: 18px; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; letter-spacing: -0.025em; }
.lp-how__brand { background: linear-gradient(135deg,#4338CA 0%,#7C3AED 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.lp-how__subtitle { font-size: 17px; color: #64748B; line-height: 1.6; }

.lp-how__steps { display: flex; align-items: flex-start; justify-content: space-between; }
.lp-how__step { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; padding: 0 6px; }
.lp-how__step:not(:last-child)::after {
  content: ''; position: absolute; top: 40px; left: calc(50% + 44px);
  width: calc(100% - 88px); border-top: 2px dashed #CBD5E1; pointer-events: none; z-index: 0;
}
.lp-how__icon-circle { width: 80px; height: 80px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; position: relative; z-index: 1; flex-shrink: 0; transition: transform 0.25s,box-shadow 0.25s; }
.lp-how__icon-circle svg { width: 32px; height: 32px; }
.lp-how__step:hover .lp-how__icon-circle { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.lp-how__num-badge { width: 28px; height: 28px; border-radius: 50%; border: 1.5px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; margin-bottom: 12px; background: white; flex-shrink: 0; }
.lp-how__step-name { font-size: 14px; font-weight: 700; color: #0F172A; margin-bottom: 6px; line-height: 1.3; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; }
.lp-how__step-desc { font-size: 13px; color: #64748B; line-height: 1.55; }

/* Bottom card */
.lp-how__bottom-card { margin-top: 64px; background: #F8FAFF; border: 1px solid #E5E7EB; border-radius: 20px; padding: 32px 40px; display: flex; align-items: center; gap: 40px; }
.lp-how__bottom-left { display: flex; align-items: center; gap: 20px; flex: 0 0 auto; max-width: 380px; padding-right: 40px; border-right: 1px solid #E5E7EB; }
.lp-how__shield-icon { width: 56px; height: 56px; background: linear-gradient(135deg,#4338CA,#6366F1); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; }
.lp-how__shield-icon svg { width: 26px; height: 26px; }
.lp-how__bottom-left-title { font-size: 17px; font-weight: 700; color: #0F172A; margin-bottom: 6px; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; line-height: 1.3; }
.lp-how__bottom-left-desc { font-size: 13px; color: #64748B; line-height: 1.6; }
.lp-how__bottom-right { display: flex; gap: 36px; flex: 1; }
.lp-how__bottom-feature { display: flex; gap: 12px; align-items: flex-start; flex: 1; }
.lp-how__check-circle { width: 30px; height: 30px; background: #EEF2FF; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #4338CA; flex-shrink: 0; margin-top: 2px; }
.lp-how__check-circle svg { width: 14px; height: 14px; }
.lp-how__feature-title { font-size: 16px; font-weight: 700; color: #0F172A; margin-bottom: 4px; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; }
.lp-how__feature-desc { font-size: 13px; color: #64748B; line-height: 1.55; }

@media (max-width: 1024px) { .lp-how__bottom-card { flex-direction: column; } .lp-how__bottom-left { border-right: none; border-bottom: 1px solid #E5E7EB; padding-right: 0; padding-bottom: 28px; max-width: 100%; width: 100%; } .lp-how__bottom-right { width: 100%; } }
@media (max-width: 860px) { .lp-how__steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px 0; } .lp-how__step:not(:last-child)::after { display: none; } }
@media (max-width: 600px) { .lp-how { padding: 64px 0 56px; } .lp-how__steps { grid-template-columns: repeat(2,1fr); } .lp-how__bottom-card { padding: 24px 20px; } .lp-how__bottom-right { flex-direction: column; gap: 20px; } }

/* ═══════════════════════════════════════════════════════════════════════════
   AUTO COLLECTION FLOW
═══════════════════════════════════════════════════════════════════════════ */
.lp-acf { padding: 96px 0; background: white; }

.lp-acf__header { margin-bottom: 32px; }
.lp-acf__heading-accent {
  background: linear-gradient(90deg, #4338CA 0%, #7C3AED 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Legend */
.lp-acf__legend {
  display: flex; align-items: center; justify-content: center; gap: 28px;
  margin-bottom: 48px;
}
.lp-acf__legend-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #475569; }
.lp-acf__legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.lp-acf__legend-dot--bad { background: #EF4444; }
.lp-acf__legend-dot--good { background: #16A34A; }

/* Flow row */
.lp-acf__flow {
  display: flex; align-items: stretch; gap: 24px;
  overflow-x: auto; padding: 14px 0 8px;
}

/* Arrow — sits in the gap to the LEFT of each card, vertically centred */
.lp-acf__arrow {
  position: absolute; left: -24px; top: 50%; transform: translateY(-50%);
  width: 24px; display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.lp-acf__arrow svg { width: 26px; height: 16px; }

/* Step wrapper */
.lp-acf__step { flex: 1; min-width: 148px; position: relative; display: flex; }

/* Card */
.lp-acf__card {
  background: white; border: 1.5px solid #E2E8F0; border-radius: 14px;
  padding: 18px 16px 16px; display: flex; flex-direction: column; gap: 6px;
  width: 100%; transition: box-shadow 0.2s ease; position: relative;
  box-shadow: 0 2px 8px rgba(15,23,42,0.05);
}
.lp-acf__card:hover { box-shadow: 0 8px 28px rgba(15,23,42,0.10); }

/* Highlight card — the "key differentiator" step */
.lp-acf__step--highlight .lp-acf__card {
  border-width: 2px; box-shadow: 0 8px 32px rgba(124,58,237,0.15);
  background: linear-gradient(160deg, #FDFCFF 0%, #F5F3FF 100%);
}
.lp-acf__card-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, #7C3AED, #4338CA); color: white;
  font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 3px 10px; border-radius: 100px; white-space: nowrap;
}

/* Icon */
.lp-acf__icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.lp-acf__icon svg { width: 18px; height: 18px; }

/* Text */
.lp-acf__num { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px; }
.lp-acf__title { font-size: 15px; font-weight: 700; color: #0F172A; line-height: 1.3; }
.lp-acf__desc { font-size: 11px; color: #64748B; line-height: 1.5; }

/* Compare rows */
.lp-acf__compare { margin-top: 8px; display: flex; flex-direction: column; gap: 5px; border-top: 1px solid #F1F5F9; padding-top: 10px; }
.lp-acf__compare-row { display: flex; align-items: flex-start; gap: 6px; font-size: 10.5px; line-height: 1.4; }
.lp-acf__compare-row--bad { color: #DC2626; }
.lp-acf__compare-row--good { color: #16A34A; }
.lp-acf__x { font-weight: 800; flex-shrink: 0; }
.lp-acf__check { font-weight: 800; flex-shrink: 0; }

/* Bottom CTA */
.lp-acf__cta {
  margin-top: 52px; display: flex; align-items: center; justify-content: center;
  gap: 28px; flex-wrap: wrap;
  background: linear-gradient(135deg, #EEF2FF 0%, #F5F3FF 100%);
  border-radius: 16px; padding: 28px 40px;
}
.lp-acf__cta-text { font-size: 16px; color: #1E1B4B; font-weight: 500; margin: 0; }
.lp-acf__cta-text strong { color: #4338CA; font-weight: 800; }

@media (max-width: 1024px) {
  .lp-acf__flow { gap: 20px; }
  .lp-acf__step { min-width: 150px; }
  .lp-acf__arrow { left: -22px; }
}
@media (max-width: 640px) {
  .lp-acf { padding: 64px 0; }
  .lp-acf__flow { flex-direction: column; gap: 30px; overflow-x: unset; }
  .lp-acf__step { min-width: unset; }
  .lp-acf__arrow {
    left: 50%; top: auto; bottom: -28px;
    transform: translateX(-50%) rotate(90deg);
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ROI OUTCOMES
═══════════════════════════════════════════════════════════════════════════ */
.lp-roi { padding: 96px 0; background: white; }
.lp-roi__header { margin-bottom: 56px; }
.lp-roi__heading-accent {
  background: linear-gradient(90deg, #4338CA 0%, #7C3AED 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.lp-roi__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.lp-roi__card {
  border-radius: 18px; padding: 30px 26px 28px;
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 8px 30px rgba(15,23,42,0.06);
  display: flex; flex-direction: column; gap: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.lp-roi__card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(15,23,42,0.12); }

.lp-roi__icon {
  width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,0.75);
  display: flex; align-items: center; justify-content: center; margin-bottom: 6px;
  box-shadow: 0 4px 12px rgba(15,23,42,0.06);
}
.lp-roi__icon svg { width: 24px; height: 24px; }

.lp-roi__value {
  font-size: 42px; font-weight: 800; line-height: 1;
  display: flex; align-items: center; gap: 6px;
  font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; letter-spacing: -0.02em;
}
.lp-roi__arrow { font-size: 30px; font-weight: 800; }
.lp-roi__label { font-size: 17px; font-weight: 700; color: #0F172A; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; }
.lp-roi__desc { font-size: 13.5px; color: #475569; line-height: 1.6; }

@media (max-width: 900px) { .lp-roi__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lp-roi__grid { grid-template-columns: 1fr; } .lp-roi { padding: 64px 0; } }

/* ═══════════════════════════════════════════════════════════════════════════
   COMPETITIVE COMPARISON
═══════════════════════════════════════════════════════════════════════════ */
.lp-cmp { padding: 96px 0; background: #F8FAFC; }
.lp-cmp__header { margin-bottom: 48px; }
.lp-cmp__heading-accent {
  background: linear-gradient(90deg, #4338CA 0%, #7C3AED 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* Table */
.lp-cmp__table {
  max-width: 1040px; margin: 0 auto;
  background: white; border: 1px solid #E2E8F0; border-radius: 20px;
  box-shadow: 0 24px 70px rgba(15,23,42,0.10); overflow: hidden;
}

/* Rows */
.lp-cmp__row {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr;
  align-items: stretch; border-bottom: 1px solid #EDF0F5;
}
.lp-cmp__row:last-child { border-bottom: none; }
/* zebra striping for scannability */
.lp-cmp__row:not(.lp-cmp__row--head):not(.lp-cmp__row--foot):nth-of-type(even) { background: #FBFBFE; }
.lp-cmp__row:not(.lp-cmp__row--head):not(.lp-cmp__row--foot):hover { background: #F4F5FE; }

/* Cells */
.lp-cmp__cell { padding: 19px 26px; text-align: center; display: flex; align-items: center; justify-content: center; }
.lp-cmp__cell--feature { text-align: left; flex-direction: column; align-items: flex-start; justify-content: center; gap: 3px; }

/* Highlighted LimaxPay column — stronger contrast + continuous border */
.lp-cmp__cell--limax {
  background: linear-gradient(180deg, #EEF2FF 0%, #F3F0FF 100%);
  box-shadow: inset 1px 0 0 #DDD9F6, inset -1px 0 0 #DDD9F6;
  position: relative;
}

/* Head row — stronger */
.lp-cmp__row--head { background: #FAFAFE; border-bottom: 2px solid #E5E8F0; }
.lp-cmp__row--head .lp-cmp__cell { padding: 22px 26px; font-size: 15px; font-weight: 700; color: #0B0F1A; }
.lp-cmp__row--head .lp-cmp__cell--feature { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: #94A3B8; }
.lp-cmp__row--head .lp-cmp__cell--manual { color: #94A3B8; }
.lp-cmp__row--head .lp-cmp__cell--limax { background: linear-gradient(180deg, #E6EAFE 0%, #EEEBFE 100%); flex-direction: column; gap: 8px; }
.lp-cmp__brand {
  display: block; font-size: 19px; font-weight: 800;
  background: linear-gradient(90deg, #4338CA 0%, #7C3AED 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif;
  padding-bottom: 4px; line-height: 1.3;
}
.lp-cmp__brand-badge {
  display: inline-block;
  background: #4338CA; color: white; font-size: 9.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 3px 10px; border-radius: 100px;
}

/* Feature text */
.lp-cmp__feature-name { font-size: 16.5px; font-weight: 700; color: #0B0F1A; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; }
.lp-cmp__feature-desc { font-size: 13px; color: #64748B; line-height: 1.45; }

/* Yes/No icons */
.lp-cmp__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
}
.lp-cmp__icon svg { width: 18px; height: 18px; }
.lp-cmp__icon--yes { background: #16A34A; color: #fff; box-shadow: 0 4px 12px rgba(22,163,74,0.25); }
.lp-cmp__icon--no { background: #FEE2E2; color: #DC2626; }

/* Footer row */
.lp-cmp__row--foot .lp-cmp__cell { padding: 24px; }
.lp-cmp__cta {
  display: inline-flex; align-items: center; justify-content: center; white-space: nowrap;
  background: linear-gradient(135deg, #4338CA 0%, #6366F1 100%);
  color: white !important; border-radius: 10px; padding: 12px 26px;
  font-size: 14px; font-weight: 700; text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(67,56,202,0.28); transition: all 0.25s ease;
}
.lp-cmp__cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(67,56,202,0.38); color: white !important; }
.lp-cmp__foot-note { font-size: 13px; color: #94A3B8; font-weight: 500; font-style: italic; }

/* Mobile: all 3 columns visible, no horizontal scroll */
@media (max-width: 760px) {
  .lp-cmp { padding: 48px 0; }
  .lp-cmp__table { overflow: visible; border-radius: 14px; }
  .lp-cmp__row { grid-template-columns: 1fr 72px 72px; min-width: 0; }
  .lp-cmp__cell { padding: 12px 8px; }
  .lp-cmp__cell--feature { padding: 12px 12px 12px 14px; }
  .lp-cmp__feature-name { font-size: 14px; }
  .lp-cmp__feature-desc { display: none; }
  .lp-cmp__icon { width: 30px; height: 30px; }
  .lp-cmp__icon svg { width: 14px; height: 14px; }
  .lp-cmp__row--head .lp-cmp__cell { padding: 14px 8px; font-size: 12px; }
  .lp-cmp__row--head .lp-cmp__cell--feature { font-size: 11px; padding-left: 14px; }
  .lp-cmp__brand { font-size: 13px; padding-bottom: 2px; line-height: 1.2; }
  .lp-cmp__brand-badge { font-size: 8px; padding: 2px 5px; }
  .lp-cmp__row--foot .lp-cmp__cell { padding: 14px 8px; }
  .lp-cmp__cta { padding: 9px 10px; font-size: 11px; white-space: normal; text-align: center; }
  .lp-cmp__foot-note { font-size: 11px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   CORE FEATURES
═══════════════════════════════════════════════════════════════════════════ */
.lp-cf { padding: 96px 0; background: #F8FAFC; }

.lp-cf__grid {
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 64px; align-items: stretch;
}
@media (max-width: 1024px) { .lp-cf__grid { grid-template-columns: 1fr; gap: 48px; } }

/* Left */
.lp-cf__left { display: flex; flex-direction: column; }
.lp-cf__label { display: block; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lp-primary); margin-bottom: 14px; }
.lp-cf__title { font-size: clamp(30px,3.6vw,44px); font-weight: 700; color: #0B0F1A; line-height: 1.12; margin-bottom: 18px; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; letter-spacing: -0.025em; }
.lp-cf__desc { font-size: 17px; color: #475569; line-height: 1.7; margin-bottom: 28px; }

/* Phone wrap — sized to content, no excess height */
.lp-cf__phone-wrap { position: relative; flex: 0 0 auto; height: 320px; }

/* Phone */
.lp-cf__phone {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 155px; background: #111827; border-radius: 24px;
  padding: 8px 6px 12px; box-shadow: 0 20px 60px rgba(15,23,42,0.4);
}
.lp-cf__phone-notch { width: 38px; height: 4px; background: #374151; border-radius: 4px; margin: 0 auto 6px; }
.lp-cf__phone-screen {
  background: linear-gradient(160deg, #1E1B6B 0%, #312E81 40%, #4338CA 100%);
  border-radius: 16px; padding: 24px 16px 20px;
  display: flex; align-items: center; justify-content: center; min-height: 190px;
}
.lp-cf__phone-shield { color: rgba(255,255,255,0.95); filter: drop-shadow(0 0 20px rgba(99,102,241,0.6)); }
.lp-cf__phone-shield svg { width: 80px; height: 80px; }

/* Floating cards — gradient backgrounds */
.lp-cf__float {
  position: absolute; border-radius: 10px;
  padding: 8px 12px; box-shadow: 0 6px 20px rgba(15,23,42,0.1);
  font-family: var(--font-inter,'Inter'),sans-serif; min-width: 148px;
  border: 1px solid rgba(255,255,255,0.6);
}
.lp-cf__float--tl {
  top: 30px; left: -20px;
  background: linear-gradient(135deg, #FFF0F0 0%, #FFE0E0 100%);
}
.lp-cf__float--ml {
  bottom: 30px; left: -20px;
  background: linear-gradient(135deg, #F0FFF4 0%, #DCFCE7 100%);
}
.lp-cf__float--bl {
  top: 50%; right: -20px; left: auto; transform: translateY(-50%);
  background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
}

.lp-cf__float-label { font-size: 9px; font-weight: 700; color: #64748B; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 6px; }
.lp-cf__float-row { display: flex; align-items: center; gap: 5px; margin-bottom: 3px; }
.lp-cf__dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.lp-cf__dot.red { background: #EF4444; }
.lp-cf__dot.green { background: #22C55E; }
.lp-cf__dot.blue { background: #3B82F6; }
.lp-cf__float-status { font-size: 12px; font-weight: 700; }
.lp-cf__float-status.red { color: #DC2626; }
.lp-cf__float-amount { font-size: 14px; font-weight: 800; color: #0F172A; margin-top: 3px; }
.lp-cf__float-amount-sm { font-size: 12px; font-weight: 700; color: #0F172A; }
.lp-cf__float-loc { font-size: 11px; color: #374151; font-weight: 500; }

/* Icon bubbles */
.lp-cf__icon-bubble {
  position: absolute; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(15,23,42,0.18);
}
.lp-cf__icon-bubble svg { width: 18px; height: 18px; }
.lp-cf__icon-bubble--bell { background: white; color: #4338CA; top: 6px; right: -14px; }
.lp-cf__icon-bubble--lock { background: #22C55E; color: white; bottom: 10px; right: -14px; }

/* Right: 2×2 LARGE primary cards */
.lp-cf__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 18px;
  height: 100%;
}
@media (max-width: 560px) { .lp-cf__cards { grid-template-columns: 1fr; grid-template-rows: auto; } }

.lp-cf__card {
  background: white;
  border: 1px solid #E9ECF0;
  border-radius: 18px;
  padding: 30px 28px 28px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 2px 10px rgba(15,23,42,0.05);
  transition: box-shadow 0.22s, transform 0.22s, border-color 0.22s;
  min-height: 0;
}
.lp-cf__card:hover { box-shadow: 0 14px 34px rgba(15,23,42,0.12); transform: translateY(-3px); border-color: #DDD9F6; }

.lp-cf__card-icon { width: 56px; height: 56px; border-radius: 15px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-bottom: 6px; }
.lp-cf__card-icon svg { width: 26px; height: 26px; }

.lp-cf__card-title { font-size: 20px; font-weight: 700; color: #0B0F1A; line-height: 1.25; letter-spacing: -0.01em; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; }
.lp-cf__card-desc { font-size: 14.5px; color: #475569; line-height: 1.6; }

/* Secondary feature strip */
.lp-cf__secondary-wrap { margin-top: 56px; padding-top: 40px; border-top: 1px solid #E5E8EE; }
.lp-cf__secondary-label { display: block; text-align: center; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #94A3B8; margin-bottom: 26px; }
.lp-cf__secondary { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.lp-cf__sec-card { display: flex; align-items: flex-start; gap: 13px; background: white; border: 1px solid #E9ECF0; border-radius: 14px; padding: 18px 20px; transition: box-shadow 0.2s, transform 0.2s; }
.lp-cf__sec-card:hover { box-shadow: 0 8px 22px rgba(15,23,42,0.08); transform: translateY(-2px); }
.lp-cf__sec-icon { width: 38px; height: 38px; flex-shrink: 0; border-radius: 10px; background: #F1F2FA; color: #4338CA; display: flex; align-items: center; justify-content: center; }
.lp-cf__sec-icon svg { width: 18px; height: 18px; }
.lp-cf__sec-title { font-size: 15px; font-weight: 600; color: #0B0F1A; margin-bottom: 2px; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; }
.lp-cf__sec-desc { font-size: 12.5px; color: #64748B; line-height: 1.45; }
@media (max-width: 860px) { .lp-cf__secondary { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .lp-cf__secondary { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════════════════════════════════════════ */
.lp-industries { padding: 96px 0; background: white; }
.lp-industries__header { margin-bottom: 56px; }
.lp-industries__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media (max-width: 900px) { .lp-industries__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .lp-industries__grid { grid-template-columns: 1fr; } .lp-industries { padding: 64px 0; } }
.lp-industry-card { background: var(--lp-bg); border: 1px solid var(--lp-border); border-radius: 20px; padding: 28px; transition: all 0.3s ease; display: flex; flex-direction: column; gap: 10px; }
.lp-industry-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(15,23,42,0.1); border-color: #C7D2FE; background: white; }
.lp-industry-card__icon { width: 44px; height: 44px; background: #EEF2FF; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--lp-primary); transition: all 0.3s; }
.lp-industry-card__icon svg { width: 20px; height: 20px; }
.lp-industry-card:hover .lp-industry-card__icon { background: var(--lp-primary); color: white; }
.lp-industry-card__name { font-size: 19px; font-weight: 700; color: #0B0F1A; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; letter-spacing: -0.01em; }
.lp-industry-card__desc { font-size: 14.5px; color: var(--lp-text-secondary); line-height: 1.55; }
.lp-industry-card__uses { display: flex; flex-direction: column; gap: 9px; margin-top: 6px; padding-top: 16px; border-top: 1px solid #E9ECF2; flex: 1; }
.lp-industry-card__uses li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; font-weight: 500; color: #334155; line-height: 1.4; }
.lp-industry-card__uses li svg { width: 14px; height: 14px; flex-shrink: 0; color: #16A34A; margin-top: 2px; }
.lp-industry-card:hover .lp-industry-card__uses { border-top-color: #DDE3F0; }
.lp-industry-card__link { display: inline-flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: var(--lp-primary); text-decoration: none; margin-top: 4px; transition: gap 0.2s,color 0.2s; }
.lp-industry-card__link:hover { gap: 8px; color: var(--lp-secondary); }

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIAL
═══════════════════════════════════════════════════════════════════════════ */
.lp-testimonial { padding: 96px 0; background: var(--lp-bg); }
.lp-testimonial__card { background: linear-gradient(135deg,#1E1B4B 0%,#3730A3 60%,#4338CA 100%); border-radius: 28px; padding: 64px; position: relative; overflow: hidden; display: flex; gap: 64px; align-items: center; }
.lp-testimonial__card::before { content: '\201C'; position: absolute; top: -40px; left: 40px; font-size: 280px; color: rgba(255,255,255,0.04); font-family: Georgia,serif; line-height: 1; pointer-events: none; }
.lp-testimonial__content { flex: 1; }
.lp-testimonial__stars { display: flex; gap: 4px; margin-bottom: 24px; }
.lp-testimonial__star { color: #FBBF24; font-size: 18px; }
.lp-testimonial__quote { font-size: 21px; font-weight: 500; color: rgba(255,255,255,0.95); line-height: 1.65; margin-bottom: 36px; font-style: italic; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; }
.lp-testimonial__author { display: flex; align-items: center; gap: 14px; }
.lp-testimonial__avatar { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg,#6366F1,#8B5CF6); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 800; color: white; border: 3px solid rgba(255,255,255,0.2); flex-shrink: 0; overflow: hidden; }
.lp-testimonial__avatar img { width: 100%; height: 100%; object-fit: cover; }
.lp-testimonial__name { font-size: 17px; font-weight: 700; color: white; margin-bottom: 2px; }
.lp-testimonial__role { font-size: 13px; color: var(--lp-accent); }
.lp-testimonial__stat { flex-shrink: 0; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 32px; text-align: center; min-width: 200px; }
.lp-testimonial__stat-value { font-size: 52px; font-weight: 800; color: white; line-height: 1; margin-bottom: 8px; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; }
.lp-testimonial__stat-label { font-size: 14px; color: var(--lp-accent); font-weight: 500; line-height: 1.4; }
@media (max-width: 900px) { .lp-testimonial__card { flex-direction: column; padding: 40px 32px; gap: 32px; } .lp-testimonial__stat { min-width: auto; width: 100%; } }

/* ═══════════════════════════════════════════════════════════════════════════
   SECURITY & COMPLIANCE
═══════════════════════════════════════════════════════════════════════════ */
.lp-trustsec { padding: 96px 0; background: #F8FAFC; }
.lp-trustsec__header { margin-bottom: 52px; }
.lp-trustsec__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.lp-trustsec__card {
  background: white; border: 1px solid #E9ECF0; border-radius: 18px;
  padding: 28px 26px; transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.lp-trustsec__card:hover { transform: translateY(-3px); box-shadow: 0 16px 38px rgba(15,23,42,0.09); border-color: #C7D2FE; }
.lp-trustsec__icon {
  width: 52px; height: 52px; border-radius: 14px; display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #EEF2FF, #F5F3FF); color: #4338CA; margin-bottom: 18px;
}
.lp-trustsec__icon svg { width: 24px; height: 24px; }
.lp-trustsec__title { font-size: 18px; font-weight: 700; color: #0B0F1A; margin-bottom: 8px; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; letter-spacing: -0.01em; }
.lp-trustsec__desc { font-size: 14.5px; color: #475569; line-height: 1.6; }
@media (max-width: 900px) { .lp-trustsec__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .lp-trustsec__grid { grid-template-columns: 1fr; } .lp-trustsec { padding: 64px 0; } }

/* ═══════════════════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════════════════ */
.lp-faq { padding: 96px 0; background: white; }
.lp-faq__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
@media (max-width: 900px) { .lp-faq__layout { grid-template-columns: 1fr; gap: 48px; } .lp-faq { padding: 64px 0; } }
.lp-faq__heading { font-size: clamp(30px,3.6vw,44px); font-weight: 700; color: #0B0F1A; margin-bottom: 32px; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; line-height: 1.12; letter-spacing: -0.025em; }
.lp-accordion__item { border-bottom: 1px solid var(--lp-border); }
.lp-accordion__trigger { width: 100%; background: none; border: none; text-align: left; padding: 18px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer; font-size: 15px; font-weight: 600; color: var(--lp-text); font-family: inherit; transition: color 0.2s; }
.lp-accordion__trigger:hover,.lp-accordion__trigger[data-open="true"] { color: var(--lp-primary); }
.lp-accordion__chevron { flex-shrink: 0; width: 28px; height: 28px; background: var(--lp-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--lp-text-muted); transition: all 0.3s; }
.lp-accordion__trigger[data-open="true"] .lp-accordion__chevron { background: var(--lp-primary); color: white; transform: rotate(180deg); }
.lp-accordion__body { font-size: 15px; color: var(--lp-text-secondary); line-height: 1.7; overflow: hidden; max-height: 0; transition: max-height 0.35s ease,padding 0.3s; padding-bottom: 0; }
.lp-accordion__body.open { max-height: 300px; padding-bottom: 20px; }
.lp-faq__side { display: flex; flex-direction: column; gap: 20px; }
.lp-faq__side-card { background: var(--lp-bg); border: 1px solid var(--lp-border); border-radius: var(--lp-radius); padding: 28px; }
.lp-faq__side-title { font-size: 18px; font-weight: 700; color: var(--lp-text); margin-bottom: 10px; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; }
.lp-faq__side-text { font-size: 14px; color: var(--lp-text-secondary); line-height: 1.7; }
.lp-faq__contact-box { display: flex; align-items: center; gap: 14px; background: #EEF2FF; border: 1px solid #C7D2FE; border-radius: 16px; padding: 20px; text-decoration: none; transition: all 0.25s; }
.lp-faq__contact-box:hover { background: #E0E7FF; transform: translateX(4px); }
.lp-faq__contact-icon { width: 42px; height: 42px; background: linear-gradient(135deg,var(--lp-primary),var(--lp-secondary)); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; }
.lp-faq__contact-icon svg { width: 18px; height: 18px; }
.lp-faq__contact-label { font-size: 12px; color: var(--lp-text-muted); font-weight: 500; margin-bottom: 2px; display: block; }
.lp-faq__contact-link { font-size: 14px; font-weight: 700; color: var(--lp-primary); }

/* ═══════════════════════════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════════════════════════ */
.lp-final-cta { background: linear-gradient(135deg,#0F0C29 0%,#1E1B4B 30%,#3730A3 70%,#4338CA 100%); padding: 96px 0; text-align: center; position: relative; overflow: hidden; }
.lp-final-cta::before { content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%); width: 800px; height: 800px; background: radial-gradient(circle,rgba(99,102,241,0.15) 0%,transparent 60%); pointer-events: none; }
.lp-final-cta__content { position: relative; z-index: 1; }
.lp-final-cta__headline { font-size: clamp(32px,4vw,48px); font-weight: 800; color: white; margin-bottom: 18px; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; line-height: 1.1; letter-spacing: -0.03em; }
.lp-final-cta__subheading { font-size: 17px; color: var(--lp-accent); margin-bottom: 44px; line-height: 1.6; }
.lp-final-cta__actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER — floating card
═══════════════════════════════════════════════════════════════════════════ */
.lp-header-wrapper { position: sticky; top: 0; z-index: 1000; padding: 14px 20px; background: transparent; pointer-events: none; }
.lp-header-card { max-width: 1260px; margin: 0 auto; background: rgba(255,255,255,0.97); border-radius: 18px; box-shadow: 0 4px 32px rgba(67,56,202,0.10),0 1px 6px rgba(15,23,42,0.06); border: 1px solid rgba(229,231,235,0.7); display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 24px; height: 64px; pointer-events: auto; transition: box-shadow 0.3s; }
.lp-header-wrapper.scrolled .lp-header-card { box-shadow: 0 8px 40px rgba(67,56,202,0.14),0 2px 8px rgba(15,23,42,0.08); }
.lp-header-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.lp-header-logo img { height: 30px; width: auto; }
.lp-header-logo-wordmark { font-size: 18px; font-weight: 800; color: var(--lp-text); font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; letter-spacing: -0.03em; }
.lp-header-nav { display: flex; align-items: center; gap: 2px; flex: 1; justify-content: center; }
@media (max-width: 1080px) { .lp-header-nav { display: none; } }
.lp-nav-link { display: inline-flex; align-items: center; gap: 3px; padding: 6px 11px; font-size: 14px; font-weight: 500; color: #1E293B; text-decoration: none; border-radius: 8px; transition: all 0.2s; white-space: nowrap; font-family: var(--font-inter,'Inter'),var(--font-jakarta,'Plus Jakarta Sans'),sans-serif; }
.lp-nav-link:hover { color: var(--lp-primary); background: #EEF2FF; }
.lp-nav-chevron { width: 12px; height: 12px; color: #94A3B8; flex-shrink: 0; }
.lp-header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.lp-header-login { padding: 6px 14px; font-size: 14px; font-weight: 500; color: #1E293B; text-decoration: none; border-radius: 8px; transition: all 0.2s; font-family: var(--font-inter,'Inter'),sans-serif; white-space: nowrap; }
.lp-header-login:hover { color: var(--lp-primary); background: #F1F5F9; }
.lp-header-demo { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; font-size: 14px; font-weight: 600; color: var(--lp-primary); border: 1.5px solid var(--lp-primary); border-radius: 100px; text-decoration: none; transition: all 0.22s; font-family: var(--font-inter,'Inter'),sans-serif; white-space: nowrap; line-height: 1; }
.lp-header-demo:hover { background: #EEF2FF; color: var(--lp-primary); }
.lp-header-trial { display: inline-flex; align-items: center; gap: 6px; padding: 8px 18px; font-size: 14px; font-weight: 600; color: white !important; background: linear-gradient(135deg,var(--lp-primary) 0%,var(--lp-secondary) 100%); border-radius: 100px; text-decoration: none; transition: all 0.25s; box-shadow: 0 2px 12px rgba(67,56,202,0.30); font-family: var(--font-inter,'Inter'),sans-serif; white-space: nowrap; line-height: 1; }
.lp-header-trial:hover { color: white !important; transform: translateY(-1px); box-shadow: 0 4px 18px rgba(67,56,202,0.40); }
.lp-header-btn-icon { width: 15px; height: 15px; flex-shrink: 0; }
.lp-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
@media (max-width: 1080px) { .lp-burger { display: flex; } }
.lp-burger span { display: block; width: 22px; height: 2px; background: #374151; border-radius: 2px; transition: all 0.3s; }
.lp-mobile-nav { position: absolute; top: calc(100% + 4px); left: 20px; right: 20px; background: white; border-radius: 16px; box-shadow: 0 8px 40px rgba(15,23,42,0.14); border: 1px solid rgba(229,231,235,0.8); padding: 16px; pointer-events: auto; z-index: 999; }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════════ */
.lp-footer { background: #0C0A1E; padding: 88px 0 0; font-family: var(--font-inter,'Inter'),sans-serif; }
.lp-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1.1fr 1fr; gap: 56px; padding-bottom: 64px; border-bottom: 1px solid rgba(255,255,255,0.08); }
@media (max-width: 1100px) { .lp-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; } .lp-footer__brand { grid-column: 1 / -1; } }
@media (max-width: 900px) { .lp-footer__grid { grid-template-columns: 1fr 1fr 1fr; } .lp-footer__brand { grid-column: 1 / -1; } }
@media (max-width: 600px) { .lp-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px 28px; } }

.lp-footer__brand { max-width: 360px; }
.lp-footer__wordmark { font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; font-weight: 800; font-size: 24px; color: #fff; letter-spacing: -0.03em; margin-bottom: 16px; }
.lp-footer__brand-desc { font-size: 14.5px; color: #94A3B8; line-height: 1.7; margin-bottom: 24px; }

.lp-footer__contact { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 12px; }
.lp-footer__contact li { display: flex; align-items: center; gap: 11px; font-size: 14px; color: #B8BECC; }
.lp-footer__contact-icon { width: 30px; height: 30px; flex-shrink: 0; border-radius: 8px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: #818CF8; }
.lp-footer__contact-icon svg { width: 15px; height: 15px; }
.lp-footer__contact a { color: #B8BECC; text-decoration: none; transition: color 0.2s; }
.lp-footer__contact a:hover { color: #fff; }

.lp-footer__social { display: flex; gap: 10px; }
.lp-footer__social-btn { width: 38px; height: 38px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #94A3B8; text-decoration: none; transition: all 0.2s; }
.lp-footer__social-btn svg { width: 17px; height: 17px; }
.lp-footer__social-btn:hover { background: var(--lp-primary); border-color: var(--lp-primary); color: white; transform: translateY(-2px); }

.lp-footer__col-title { font-size: 12px; font-weight: 700; color: white; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 22px; }
.lp-footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.lp-footer__links a { font-size: 14.5px; color: #94A3B8; text-decoration: none; transition: color 0.2s, padding-left 0.2s; }
.lp-footer__links a:hover { color: white; padding-left: 3px; }
.lp-footer__link-note { display: block; font-size: 11px; color: #64748B; margin-top: 3px; }

.lp-footer__bottom { padding: 26px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.lp-footer__copyright { font-size: 13px; color: #64748B; }
.lp-footer__bottom-links { display: flex; gap: 26px; }
.lp-footer__bottom-links a { font-size: 13px; color: #64748B; text-decoration: none; transition: color 0.2s; }
.lp-footer__bottom-links a:hover { color: #94A3B8; }

/* ═══════════════════════════════════════════════════════════════════════════
   SOLUTIONS MEGA-MENU  (desktop header dropdown)
═══════════════════════════════════════════════════════════════════════════ */
/* Make the Solutions item span-static so the wide panel anchors to .main-header */
.header .main-menu li.lp-has-mega { position: static; }
.header .main-menu li.lp-has-mega > a { display: flex; align-items: center; gap: 6px; }
.lp-mega-caret { transition: transform 0.2s ease; }
.header .main-menu li.lp-has-mega.is-open .lp-mega-caret { transform: rotate(180deg); }

.lp-mega {
  position: absolute; top: 100%; left: 0; right: 0;
  width: 100%; max-width: 940px; margin: 0 auto;
  padding-top: 12px;
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 99999; pointer-events: none;
}
.header .main-menu li.lp-has-mega.is-open .lp-mega {
  opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
}
.lp-mega__inner {
  position: relative;
  background: #fff; border: 1px solid #ECECF5; border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15,23,42,0.14);
  padding: 20px;
}
/* upward caret pointing toward "Solutions" */
.lp-mega__inner::before {
  content: ''; position: absolute; top: -6px; left: 95px;
  width: 12px; height: 12px; background: #fff;
  border-left: 1px solid #ECECF5; border-top: 1px solid #ECECF5;
  transform: rotate(45deg);
}

/* Top row: intro + platform card */
.lp-mega__top { display: grid; grid-template-columns: 1.5fr 1fr; gap: 18px; margin-bottom: 16px; align-items: center; }
.lp-mega__eyebrow { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lp-primary); background: #EEF2FF; padding: 4px 10px; border-radius: 100px; margin-bottom: 10px; }
.lp-mega__title { font-size: 19px; font-weight: 800; color: #0B1020; line-height: 1.25; letter-spacing: -0.02em; margin-bottom: 7px; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; }
.lp-mega__desc { font-size: 12.5px; color: #64748B; line-height: 1.55; max-width: 360px; margin: 0; }
.lp-mega__platform { display: flex; gap: 12px; background: #F6F7FD; border: 1px solid #ECECF5; border-radius: 14px; padding: 14px 16px; text-decoration: none !important; transition: background 0.2s ease, border-color 0.2s ease; }
.lp-mega__platform:hover { background: #F0F1FB; border-color: #DDD9F6; }
.lp-mega__platform-icon { width: 34px; height: 34px; flex-shrink: 0; border-radius: 10px; background: #EEF2FF; color: var(--lp-primary); display: flex; align-items: center; justify-content: center; }
.lp-mega__platform-icon svg { width: 17px; height: 17px; }
.lp-mega__platform-title { font-size: 13.5px; font-weight: 800; color: #0B1020; margin-bottom: 3px; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; }
.lp-mega__platform-desc { font-size: 11.5px; color: #64748B; line-height: 1.45; margin: 0 0 6px; }
.lp-mega__platform-link { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; color: var(--lp-primary); }
.lp-mega__platform-link svg { width: 12px; height: 12px; }

/* 3 solution cards */
.lp-mega__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 16px; }
.lp-mega__card { display: flex; flex-direction: column; border-radius: 14px; padding: 16px; border: 1px solid #EEF0F6; text-decoration: none !important; transition: box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease; }
.lp-mega__card:hover { box-shadow: 0 6px 20px rgba(15,23,42,0.07); }
.lp-mega__card--fin { background: #FBFAFF; }
.lp-mega__card--fin:hover { border-color: #C7D2FE; }
.lp-mega__card--emi { background: #F4FCF8; }
.lp-mega__card--emi:hover { border-color: #BBF7D0; }
.lp-mega__card--lock { background: #FFF9F4; }
.lp-mega__card--lock:hover { border-color: #FED7AA; }
.lp-mega__card-icon { width: 40px; height: 40px; border-radius: 11px; display: flex; align-items: center; justify-content: center; margin-bottom: 11px; }
.lp-mega__card-icon svg { width: 20px; height: 20px; }
.lp-mega__card--fin .lp-mega__card-icon { background: #E8EAFE; color: #4338CA; }
.lp-mega__card--emi .lp-mega__card-icon { background: #DCFCE9; color: #16A34A; }
.lp-mega__card--lock .lp-mega__card-icon { background: #FFE9D5; color: #EA580C; }
.lp-mega__card-title { font-size: 14px; font-weight: 800; color: #0B1020; margin-bottom: 5px; font-family: var(--font-jakarta,'Plus Jakarta Sans'),var(--font-inter,'Inter'),sans-serif; }
.lp-mega__card-text { font-size: 12px; color: #64748B; line-height: 1.5; margin: 0 0 13px; flex: 1; }
.lp-mega__card-foot { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.lp-mega__card-tag { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.lp-mega__card--fin .lp-mega__card-tag { color: #4338CA; background: #E8EAFE; }
.lp-mega__card--emi .lp-mega__card-tag { color: #16A34A; background: #DCFCE9; }
.lp-mega__card--lock .lp-mega__card-tag { color: #EA580C; background: #FFE9D5; }
.lp-mega__card-arrow { width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.2s ease; }
.lp-mega__card-arrow svg { width: 13px; height: 13px; }
.lp-mega__card:hover .lp-mega__card-arrow { transform: none; }
.lp-mega__card--fin .lp-mega__card-arrow { color: #4338CA; background: #E8EAFE; }
.lp-mega__card--emi .lp-mega__card-arrow { color: #16A34A; background: #DCFCE9; }
.lp-mega__card--lock .lp-mega__card-arrow { color: #EA580C; background: #FFE9D5; }

/* Bottom feature strip */
.lp-mega__features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding-top: 16px; border-top: 1px solid #EEF0F6; }
.lp-mega__feature { display: flex; gap: 10px; align-items: flex-start; }
.lp-mega__feature-icon { width: 32px; height: 32px; flex-shrink: 0; border-radius: 9px; background: #F1F2FA; color: #4338CA; display: flex; align-items: center; justify-content: center; }
.lp-mega__feature-icon svg { width: 16px; height: 16px; }
.lp-mega__feature-title { font-size: 12.5px; font-weight: 700; color: #0B1020; margin-bottom: 2px; }
.lp-mega__feature-text { font-size: 11px; color: #64748B; line-height: 1.4; margin: 0; }
