/* ============================================================
   AjkerPay — Landing Page Modern Redesign  (v1.0)
   Premium SaaS layout (Stripe / Linear inspired)
   Non-destructive: scoped to .lp-* classes; old frontend/css/style.css
   কেবল cascade-এ থাকে, .lp-* override priority পাবে।
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root {
  --lp-bg: #ffffff;
  --lp-bg-soft: #f8f9fc;
  --lp-surface: #ffffff;
  --lp-border: #eceff5;
  --lp-border-strong: #d8dde6;
  --lp-text: #0b1020;
  --lp-text-muted: #4b5563;
  --lp-text-soft: #6b7280;
  --lp-primary: #6366f1;
  --lp-primary-2: #8b5cf6;
  --lp-accent: #ec4899;
  --lp-success: #10b981;
  --lp-radius: 16px;
  --lp-radius-sm: 12px;
  --lp-shadow-sm: 0 1px 2px rgba(11,16,32,.04), 0 1px 3px rgba(11,16,32,.03);
  --lp-shadow-md: 0 8px 24px -8px rgba(11,16,32,.12), 0 4px 8px -4px rgba(11,16,32,.06);
  --lp-shadow-lg: 0 24px 60px -16px rgba(11,16,32,.18), 0 8px 16px -8px rgba(11,16,32,.08);
  --lp-grad: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
  --lp-grad-soft: linear-gradient(135deg, rgba(99,102,241,.10), rgba(139,92,246,.08), rgba(236,72,153,.06));
}

/* Reset only inside .lp-page wrapper to avoid breaking other pages */
.lp-page, .lp-page * {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.lp-page {
  background: var(--lp-bg);
  color: var(--lp-text);
  overflow-x: hidden;
}

/* ===========================================================
   HEADER
   =========================================================== */
body:has(.lp-page) header#header,
.lp-page-shell header#header {
  background: rgba(255,255,255,.78) !important;
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--lp-border);
  box-shadow: none !important;
  height: auto !important;
  padding: 14px 0 !important;
}
body:has(.lp-page) header#header .logo img { max-height: 36px; }
body:has(.lp-page) #navbar > ul {
  gap: 4px;
}
body:has(.lp-page) #navbar > ul > li > a.nav-link,
body:has(.lp-page) #navbar > ul > li > a {
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: var(--lp-text-muted) !important;
  padding: 8px 14px !important;
  border-radius: 10px;
  transition: color .18s ease, background-color .18s ease;
}
body:has(.lp-page) #navbar > ul > li > a:hover,
body:has(.lp-page) #navbar > ul > li > a.active {
  color: var(--lp-text) !important;
  background: var(--lp-bg-soft);
}
body:has(.lp-page) #navbar a.getstarted {
  background: var(--lp-grad) !important;
  color: #fff !important;
  border: 0 !important;
  padding: 9px 18px !important;
  border-radius: 999px !important;
  box-shadow: 0 8px 18px -8px rgba(99,102,241,.6);
}
body:has(.lp-page) #navbar a.getstarted:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(99,102,241,.7);
}

/* ===========================================================
   SECTION BASE
   =========================================================== */
.lp-section {
  padding: 96px 0;
  position: relative;
}
.lp-section--soft { background: var(--lp-bg-soft); }
.lp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--lp-grad-soft);
  border: 1px solid rgba(99,102,241,.18);
  color: #4f46e5;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.lp-eyebrow .dot {
  width: 6px; height: 6px; border-radius: 999px;
  background: var(--lp-primary);
  box-shadow: 0 0 0 4px rgba(99,102,241,.18);
}
.lp-h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 5.6vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--lp-text);
  margin: 0 0 20px 0;
}
.lp-h1 .grad {
  background: var(--lp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--lp-text);
  margin: 0 0 14px 0;
}
.lp-lead {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: var(--lp-text-muted);
  max-width: 640px;
  margin: 0 0 28px 0;
}
.lp-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px auto;
}
.lp-section-head .lp-lead { margin-left: auto; margin-right: auto; }

/* Buttons */
.lp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.lp-btn-primary {
  background: var(--lp-grad);
  color: #fff !important;
  box-shadow: 0 12px 28px -10px rgba(99,102,241,.6);
}
.lp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -10px rgba(99,102,241,.7);
  color: #fff !important;
}
.lp-btn-ghost {
  background: var(--lp-surface);
  color: var(--lp-text) !important;
  border-color: var(--lp-border-strong);
}
.lp-btn-ghost:hover {
  background: var(--lp-bg-soft);
  border-color: #b9c0cc;
}
.lp-btn i { font-size: 16px; }

/* ===========================================================
   HERO
   =========================================================== */
.lp-hero {
  position: relative;
  padding: 140px 0 80px 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 800px 400px at 20% 10%, rgba(99,102,241,.10), transparent 60%),
    radial-gradient(ellipse 700px 380px at 80% 20%, rgba(236,72,153,.08), transparent 60%),
    var(--lp-bg);
}
.lp-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,16,32,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,16,32,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 800px 500px at 50% 30%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 800px 500px at 50% 30%, #000 30%, transparent 70%);
  pointer-events: none;
}
.lp-hero-inner {
  position: relative;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  z-index: 1;
}
.lp-hero-cta {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 8px;
}
.lp-hero-trust {
  margin-top: 36px;
  font-size: 13px;
  color: var(--lp-text-soft);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-hero-trust .sep { width: 4px; height: 4px; border-radius: 999px; background: #cbd0db; }
.lp-hero-trust strong { color: var(--lp-text); font-weight: 700; }

/* Hero preview card (replaces hero image when missing) */
.lp-hero-preview {
  margin: 56px auto 0 auto;
  max-width: 980px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 20px;
  box-shadow: var(--lp-shadow-lg);
  overflow: hidden;
  position: relative;
}
.lp-hero-preview::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 38px;
  background: #fafbfc;
  border-bottom: 1px solid var(--lp-border);
}
.lp-hero-preview::after {
  content: "";
  position: absolute; left: 14px; top: 12px;
  width: 12px; height: 12px; border-radius: 50%;
  background: #fb7185;
  box-shadow: 20px 0 0 #fbbf24, 40px 0 0 #34d399;
}
.lp-hero-preview-body {
  padding: 56px 28px 28px 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.lp-hero-preview-card {
  background: linear-gradient(180deg, #fff, #fafbfd);
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 18px;
}
.lp-hero-preview-card .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--lp-text-soft);
  margin-bottom: 10px;
}
.lp-hero-preview-card .value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: var(--lp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -.02em;
}
.lp-hero-preview-card .bar {
  height: 6px;
  background: #f1f3f7;
  border-radius: 999px;
  overflow: hidden;
  margin-top: 10px;
  position: relative;
}
.lp-hero-preview-card .bar::after {
  content: "";
  position: absolute; inset: 0;
  width: 70%;
  background: var(--lp-grad);
  border-radius: 999px;
}

/* ===========================================================
   FEATURE / OFFER CARDS
   =========================================================== */
.lp-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.lp-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
  overflow: hidden;
}
.lp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--lp-shadow-md);
  border-color: var(--lp-border-strong);
}
.lp-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-grad-soft);
  color: var(--lp-primary);
  font-size: 22px;
  margin-bottom: 18px;
  border: 1px solid rgba(99,102,241,.18);
}
.lp-card-icon i { line-height: 1; }
.lp-card h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--lp-text);
  margin: 0 0 8px 0;
  letter-spacing: -.01em;
}
.lp-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--lp-text-muted);
  margin: 0;
}

/* Compact "feature pill" used in features section */
.lp-feature-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 14px 16px;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.lp-feature-pill:hover {
  border-color: var(--lp-border-strong);
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow-sm);
}
.lp-feature-pill .icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-grad-soft);
  color: var(--lp-primary);
  font-size: 18px;
  flex: 0 0 38px;
}
.lp-feature-pill h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  margin: 0;
  color: var(--lp-text);
}

/* ===========================================================
   STATS
   =========================================================== */
.lp-stats {
  background:
    linear-gradient(180deg, var(--lp-bg-soft), #fff);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}
.lp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.lp-stat {
  text-align: center;
  padding: 28px 16px;
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  transition: transform .22s ease, box-shadow .22s ease;
}
.lp-stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--lp-shadow-md);
}
.lp-stat .lp-stat-icon {
  width: 44px; height: 44px;
  margin: 0 auto 12px auto;
  border-radius: 12px;
  background: var(--lp-grad-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--lp-primary);
  font-size: 20px;
}
.lp-stat .lp-stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--lp-text);
  line-height: 1.1;
  letter-spacing: -.02em;
  background: var(--lp-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-stat .lp-stat-label {
  margin-top: 6px;
  font-size: 13px;
  color: var(--lp-text-muted);
  font-weight: 500;
}

/* ===========================================================
   PRICING
   =========================================================== */
.lp-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  align-items: stretch;
}
.lp-price-card {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
}
.lp-price-card:hover {
  transform: translateY(-4px);
  border-color: var(--lp-border-strong);
  box-shadow: var(--lp-shadow-md);
}
.lp-price-card.featured {
  border-color: transparent;
  background:
    linear-gradient(var(--lp-surface), var(--lp-surface)) padding-box,
    var(--lp-grad) border-box;
  border: 1.5px solid transparent;
  box-shadow: var(--lp-shadow-md);
}
.lp-price-card.featured::before {
  content: "Popular";
  position: absolute;
  top: 16px; right: 16px;
  background: var(--lp-grad);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: .04em;
}
.lp-price-card .lp-price-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--lp-primary);
  margin: 0 0 8px 0;
}
.lp-price-card .lp-price-amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--lp-text);
  letter-spacing: -.02em;
  line-height: 1.1;
}
.lp-price-card .lp-price-amount span {
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-text-soft);
}
.lp-price-card .lp-price-desc {
  margin: 12px 0 16px 0;
  font-size: 13.5px;
  color: var(--lp-text-muted);
  line-height: 1.55;
}
.lp-price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.lp-price-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--lp-text-muted);
  line-height: 1.5;
}
.lp-price-card ul li::before {
  content: "✓";
  flex: 0 0 20px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(16,185,129,.12);
  color: var(--lp-success);
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lp-price-card .lp-btn {
  width: 100%;
  justify-content: center;
}

/* ===========================================================
   CTA BLOCK
   =========================================================== */
.lp-cta-block {
  position: relative;
  background: var(--lp-grad);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.lp-cta-block::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.12), transparent 45%);
  z-index: -1;
}
.lp-cta-block h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 800;
  margin: 0 0 12px 0;
  letter-spacing: -.02em;
}
.lp-cta-block p {
  font-size: 15px;
  color: rgba(255,255,255,.9);
  margin: 0 auto 24px auto;
  max-width: 560px;
  line-height: 1.6;
}
.lp-cta-block .lp-btn {
  background: #fff;
  color: var(--lp-primary) !important;
  box-shadow: 0 12px 24px -8px rgba(0,0,0,.25);
}
.lp-cta-block .lp-btn:hover { transform: translateY(-2px); }

/* ===========================================================
   FAQ
   =========================================================== */
.lp-faq .accordion-item {
  background: var(--lp-surface) !important;
  border: 1px solid var(--lp-border) !important;
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.lp-faq .accordion-button {
  background: var(--lp-surface) !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px !important;
  font-weight: 600 !important;
  color: var(--lp-text) !important;
  padding: 18px 20px !important;
  box-shadow: none !important;
  border-radius: 14px !important;
}
.lp-faq .accordion-button:not(.collapsed) {
  background: var(--lp-bg-soft) !important;
  color: var(--lp-primary) !important;
}
.lp-faq .accordion-body {
  padding: 4px 20px 20px 20px !important;
  font-size: 14px;
  color: var(--lp-text-muted);
  line-height: 1.65;
}

/* ===========================================================
   CONTACT INFO
   =========================================================== */
.lp-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.lp-info {
  background: var(--lp-surface);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 24px;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease;
}
.lp-info:hover { transform: translateY(-3px); box-shadow: var(--lp-shadow-md); }
.lp-info i {
  width: 44px; height: 44px;
  margin: 0 auto 12px auto;
  border-radius: 12px;
  background: var(--lp-grad-soft);
  color: var(--lp-primary);
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lp-info h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: var(--lp-text);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.lp-info p {
  margin: 0;
  font-size: 14px;
  color: var(--lp-text-muted);
  line-height: 1.5;
}

/* ===========================================================
   PLATFORMS / GATEWAYS SLIDER (use existing swiper, just frame)
   =========================================================== */
.lp-logos {
  background: var(--lp-bg-soft);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  padding: 60px 0;
}
.lp-logos .clients-slider img {
  max-height: 36px;
  filter: grayscale(1);
  opacity: .7;
  transition: filter .2s ease, opacity .2s ease;
}
.lp-logos .clients-slider img:hover { filter: none; opacity: 1; }
.lp-logos .lp-section-head { margin-bottom: 28px; }
.lp-logos .lp-section-head p {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--lp-text-soft);
  margin: 0;
}

/* ===========================================================
   FOOTER POLISH (touches existing #footer markup)
   =========================================================== */
body:has(.lp-page) #footer.footer {
  background: #0b1020 !important;
  color: rgba(255,255,255,.72);
  padding: 0;
  border-top: 0;
}
body:has(.lp-page) #footer .footer-top {
  padding: 64px 0 40px 0;
  background: transparent !important;
}
body:has(.lp-page) #footer .footer-info span,
body:has(.lp-page) #footer h4 {
  color: #fff !important;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
}
body:has(.lp-page) #footer h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
  border: 0 !important;
  padding: 0 !important;
}
body:has(.lp-page) #footer .footer-links ul li {
  padding: 6px 0 !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
body:has(.lp-page) #footer .footer-links ul li a {
  color: rgba(255,255,255,.7) !important;
  font-size: 14px;
  text-decoration: none;
  transition: color .15s ease, padding-left .15s ease;
}
body:has(.lp-page) #footer .footer-links ul li a:hover {
  color: #fff !important;
  padding-left: 4px;
}
body:has(.lp-page) #footer .footer-links ul li i {
  color: var(--lp-primary) !important;
  font-size: 12px;
}
body:has(.lp-page) #footer .footer-info p,
body:has(.lp-page) #footer .footer-contact p {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  line-height: 1.6;
}
body:has(.lp-page) #footer .social-links { display: flex; gap: 10px; margin-top: 16px; }
body:has(.lp-page) #footer .social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .18s ease, transform .18s ease;
}
body:has(.lp-page) #footer .social-links a:hover {
  background: var(--lp-grad) !important;
  border-color: transparent !important;
  transform: translateY(-2px);
}
body:has(.lp-page) #footer .copyright {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-align: center;
}

/* Back-to-top */
body:has(.lp-page) .back-to-top {
  background: var(--lp-grad) !important;
  border: 0 !important;
  width: 44px !important; height: 44px !important;
  border-radius: 50% !important;
  box-shadow: 0 12px 24px -8px rgba(99,102,241,.6);
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 992px) {
  .lp-section { padding: 72px 0; }
  .lp-hero { padding: 110px 0 60px 0; }
  .lp-hero-preview-body { grid-template-columns: repeat(2, 1fr); }
  .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .lp-section { padding: 56px 0; }
  .lp-hero { padding: 100px 0 40px 0; }
  .lp-section-head { margin-bottom: 36px; }
  .lp-card { padding: 22px; }
  .lp-cta-block { padding: 40px 24px; border-radius: 20px; }
  .lp-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .lp-hero-preview-body { padding: 50px 16px 16px 16px; gap: 12px; }
  .lp-hero-preview-card { padding: 14px; }
  .lp-hero-preview-card .value { font-size: 18px; }
}
