/* ============================================================
   ZAKZZ NOKOS — Premium Landing Page Design System
   Fully scoped under `.lp` so it never affects dashboard/admin
   or any post-login page. Clean white · soft 3D · glassmorphism.
   ============================================================ */

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

/* ─── Scoped tokens ─────────────────────────────────────────── */
.lp {
  --lp-accent:        #6366F1;
  --lp-accent-2:      #8B5CF6;
  --lp-accent-dark:   #4F46E5;
  --lp-accent-ink:    #4338CA;
  --lp-accent-soft:   #EEF0FF;
  --lp-accent-glow:   rgba(99,102,241,.35);

  --lp-ink:      #0B1020;
  --lp-text:     #3A4256;
  --lp-muted:    #6B7280;
  --lp-faint:    #9AA2B1;

  --lp-white:    #FFFFFF;
  --lp-paper:    #FAFBFF;
  --lp-mist:     #F4F6FB;
  --lp-line:     #ECEEF5;
  --lp-line-2:   #E4E7F1;

  --lp-r-sm: 12px;
  --lp-r:    18px;
  --lp-r-lg: 24px;
  --lp-r-xl: 32px;
  --lp-pill: 999px;

  --lp-sh-xs: 0 1px 2px rgba(16,24,40,.05);
  --lp-sh-sm: 0 2px 8px rgba(16,24,40,.05), 0 1px 2px rgba(16,24,40,.04);
  --lp-sh:    0 10px 30px -12px rgba(16,24,40,.14), 0 4px 12px -6px rgba(16,24,40,.08);
  --lp-sh-lg: 0 24px 60px -20px rgba(16,24,40,.22), 0 8px 24px -12px rgba(16,24,40,.12);
  --lp-sh-xl: 0 40px 90px -30px rgba(30,27,75,.32), 0 16px 40px -20px rgba(16,24,40,.16);
  --lp-sh-accent: 0 16px 40px -12px rgba(99,102,241,.45);

  --lp-ease: cubic-bezier(.22,1,.36,1);

  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--lp-text);
  background: var(--lp-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.lp *,
.lp *::before,
.lp *::after { box-sizing: border-box; }

/* Lucide inline-SVG icons inherit font-size like icon-fonts did.
   Before createIcons() runs they are <i data-lucide>; after, <svg class="lucide">. */
.lp [data-lucide],
.lp svg.lucide {
  width: 1em; height: 1em;
  stroke-width: 2;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

.lp ::selection { background: var(--lp-accent); color: #fff; }

/* Shared container */
.lp .lp-container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 20px;
}

/* Section rhythm */
.lp .lp-section { position: relative; padding: 96px 0; }
.lp .lp-section--tight { padding: 72px 0; }
.lp .lp-mist { background: var(--lp-mist); }
.lp .lp-paper { background: var(--lp-paper); }

/* ─── Typography helpers ────────────────────────────────────── */
.lp .lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: var(--lp-pill);
  background: var(--lp-white);
  border: 1px solid var(--lp-line-2);
  box-shadow: var(--lp-sh-sm);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .2px;
  color: var(--lp-accent-ink);
}
.lp .lp-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--lp-accent);
  box-shadow: 0 0 0 4px rgba(99,102,241,.16);
}
.lp .lp-eyebrow i { font-size: 14px; color: var(--lp-accent); }

.lp .lp-h1 {
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -.03em;
  font-weight: 800;
  color: var(--lp-ink);
  margin: 0;
}
.lp .lp-h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.1;
  letter-spacing: -.025em;
  font-weight: 800;
  color: var(--lp-ink);
  margin: 0;
}
.lp .lp-h3 {
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.25;
  letter-spacing: -.01em;
  font-weight: 700;
  color: var(--lp-ink);
  margin: 0;
}
.lp .lp-lead {
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.7;
  color: var(--lp-muted);
  margin: 0;
}
.lp .lp-grad {
  background: linear-gradient(105deg, var(--lp-accent) 0%, var(--lp-accent-2) 60%, #A855F7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp .lp-section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.lp .lp-section-head .lp-lead { margin-top: 16px; }
.lp .lp-section-head .lp-eyebrow { margin-bottom: 20px; }

/* ─── Buttons ───────────────────────────────────────────────── */
.lp .lp-btn {
  --_bg: var(--lp-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  border-radius: var(--lp-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .25s var(--lp-ease), box-shadow .25s var(--lp-ease),
              background .2s ease, color .2s ease, border-color .2s ease;
}
.lp .lp-btn i { font-size: 17px; }
.lp .lp-btn:active { transform: translateY(0) scale(.98); }

.lp .lp-btn--primary {
  background: linear-gradient(135deg, var(--lp-accent) 0%, var(--lp-accent-2) 100%);
  color: #fff;
  box-shadow: var(--lp-sh-accent);
}
.lp .lp-btn--primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 22px 50px -12px rgba(99,102,241,.55);
}
.lp .lp-btn--ghost {
  background: var(--lp-white);
  color: var(--lp-ink);
  border-color: var(--lp-line-2);
  box-shadow: var(--lp-sh-sm);
}
.lp .lp-btn--ghost:hover {
  color: var(--lp-accent-ink);
  border-color: var(--lp-accent);
  transform: translateY(-3px);
  box-shadow: var(--lp-sh);
}
.lp .lp-btn--tg {
  background: #229ED9;
  color: #fff;
  box-shadow: 0 14px 34px -12px rgba(34,158,217,.5);
}
.lp .lp-btn--tg:hover { background: #1b8dc4; color:#fff; transform: translateY(-3px); }
.lp .lp-btn--white {
  background: #fff;
  color: var(--lp-accent-ink);
  box-shadow: var(--lp-sh-lg);
}
.lp .lp-btn--white:hover { color: var(--lp-accent-ink); transform: translateY(-3px); }
.lp .lp-btn--glass {
  background: rgba(255,255,255,.12);
  color: #fff;
  border-color: rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
}
.lp .lp-btn--glass:hover { background: rgba(255,255,255,.22); color:#fff; border-color: rgba(255,255,255,.5); transform: translateY(-3px); }
.lp .lp-btn--sm { padding: 10px 18px; font-size: 14px; }
.lp .lp-btn--lg { padding: 16px 30px; font-size: 16px; }

/* ─── Navbar ────────────────────────────────────────────────── */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.lp-nav__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.lp-nav.is-stuck {
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--lp-line);
  box-shadow: 0 8px 30px -18px rgba(16,24,40,.25);
}
.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.02em;
  color: var(--lp-ink);
}
.lp-brand img {
  width: 34px; height: 34px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--lp-sh-sm);
}
.lp-brand span { color: var(--lp-accent); }

.lp-nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.lp-nav__links a {
  padding: 9px 15px;
  border-radius: var(--lp-pill);
  font-size: 14.5px;
  font-weight: 600;
  color: var(--lp-text);
  text-decoration: none;
  transition: color .2s, background .2s;
}
.lp-nav__links a:hover { color: var(--lp-accent-ink); background: var(--lp-accent-soft); }

.lp-nav__cta { display: flex; align-items: center; gap: 10px; }
.lp-nav__link-login {
  font-size: 14.5px; font-weight: 700; color: var(--lp-ink);
  text-decoration: none; padding: 9px 14px; border-radius: var(--lp-pill);
  transition: color .2s;
}
.lp-nav__link-login:hover { color: var(--lp-accent-ink); }

.lp-burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--lp-line-2);
  background: #fff;
  border-radius: 12px;
  align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--lp-ink);
  box-shadow: var(--lp-sh-sm);
}
.lp-burger i { font-size: 22px; }

/* Mobile drawer */
.lp-drawer {
  position: fixed;
  inset: 0;
  z-index: 1050;
  visibility: hidden;
  pointer-events: none;
}
.lp-drawer__scrim {
  position: absolute; inset: 0;
  background: rgba(11,16,32,.4);
  opacity: 0;
  transition: opacity .3s ease;
  backdrop-filter: blur(2px);
}
.lp-drawer__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(84vw, 340px);
  background: #fff;
  box-shadow: var(--lp-sh-xl);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transform: translateX(100%);
  transition: transform .38s var(--lp-ease);
  overflow-y: auto;
}
.lp-drawer.is-open { visibility: visible; pointer-events: auto; }
.lp-drawer.is-open .lp-drawer__scrim { opacity: 1; }
.lp-drawer.is-open .lp-drawer__panel { transform: translateX(0); }
.lp-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.lp-drawer__close {
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--lp-line-2); background: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--lp-ink);
  transition: background .2s, color .2s;
}
.lp-drawer__close:hover { background: var(--lp-mist); }

/* Drawer account header */
.lp-drawer__account {
  display: flex; align-items: center; gap: 12px;
  padding: 14px; margin-bottom: 6px;
  background: linear-gradient(135deg, var(--lp-accent-soft), #fff);
  border: 1px solid var(--lp-line);
  border-radius: 16px;
}
.lp-drawer__account--guest { background: var(--lp-mist); }
.lp-drawer__avatar {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  color: #fff; font-weight: 800; font-size: 19px;
  box-shadow: var(--lp-sh-accent);
}
.lp-drawer__account--guest .lp-drawer__avatar {
  background: #fff; color: var(--lp-accent);
  border: 1px solid var(--lp-line-2); box-shadow: var(--lp-sh-xs);
}
.lp-drawer__account-meta { overflow: hidden; }
.lp-drawer__account-meta .name { font-weight: 700; font-size: 14.5px; color: var(--lp-ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-drawer__account-meta .mail { font-size: 12.5px; color: var(--lp-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.lp-drawer__label {
  font-size: 11.5px; font-weight: 800; letter-spacing: .6px; text-transform: uppercase;
  color: var(--lp-faint); margin: 16px 4px 8px;
}
.lp-drawer__nav { display: flex; flex-direction: column; gap: 2px; }
.lp-drawer__panel a.lp-drawer__item {
  display: flex; align-items: center; gap: 12px;
  padding: 13px 14px;
  border-radius: 14px;
  font-size: 15px; font-weight: 600;
  color: var(--lp-ink); text-decoration: none;
  transition: background .2s, color .2s;
}
.lp-drawer__panel a.lp-drawer__item:hover { background: var(--lp-mist); color: var(--lp-accent-ink); }
.lp-drawer__panel a.lp-drawer__item i,
.lp-drawer__panel a.lp-drawer__item [data-lucide],
.lp-drawer__panel a.lp-drawer__item svg.lucide { color: var(--lp-accent); width: 20px; height: 20px; }
.lp-drawer__divider { height: 1px; background: var(--lp-line); margin: 12px 0; }
.lp-drawer__cta { display: flex; flex-direction: column; gap: 10px; margin-top: auto; padding-top: 18px; }
.lp-drawer__cta .lp-btn { width: 100%; }

/* Lucide inline-SVG sizing inside nav/drawer */
.lp-nav [data-lucide], .lp-drawer [data-lucide],
.lp-nav svg.lucide, .lp-drawer svg.lucide { width: 20px; height: 20px; stroke-width: 2; }
.lp-btn [data-lucide], .lp-btn svg.lucide { width: 17px; height: 17px; }
.lp-burger [data-lucide], .lp-burger svg.lucide { width: 22px; height: 22px; }
.lp-drawer__close [data-lucide], .lp-drawer__close svg.lucide { width: 22px; height: 22px; }

/* ─── Hero ──────────────────────────────────────────────────── */
.lp-hero {
  position: relative;
  padding: 72px 0 88px;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(139,92,246,.12), transparent 60%),
    radial-gradient(900px 480px at 8% 8%, rgba(99,102,241,.12), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--lp-paper) 100%);
}
.lp-hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,.05) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 75%);
  mask-image: radial-gradient(70% 60% at 50% 30%, #000 0%, transparent 75%);
  pointer-events: none;
}
.lp-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 56px;
}
.lp-hero__copy { max-width: 600px; }
.lp-hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.lp-trust-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px;
  border-radius: var(--lp-pill);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--lp-line-2);
  box-shadow: var(--lp-sh-sm);
  backdrop-filter: blur(6px);
  font-size: 13px; font-weight: 700; color: var(--lp-ink);
}
.lp-trust-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: #22C55E;
  box-shadow: 0 0 0 0 rgba(34,197,94,.5);
  animation: lp-pulse 2s infinite;
}
@keyframes lp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(34,197,94,.5); }
  70%  { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.lp-hero__title { margin-bottom: 22px; }
.lp-hero__lead { margin-bottom: 30px; max-width: 540px; }
.lp-hero__lead strong { color: var(--lp-accent-ink); font-weight: 800; }
.lp-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.lp-hero__social {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 26px;
}
.lp-hero__social .label { font-size: 12.5px; font-weight: 700; color: var(--lp-faint); }
.lp-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: var(--lp-pill);
  font-size: 12.5px; font-weight: 700; text-decoration: none;
  border: 1px solid var(--lp-line-2); background: #fff;
  color: var(--lp-text); box-shadow: var(--lp-sh-xs);
  transition: transform .2s var(--lp-ease), box-shadow .2s, border-color .2s;
}
.lp-chip:hover { transform: translateY(-2px); box-shadow: var(--lp-sh-sm); }
.lp-chip i { font-size: 14px; }

.lp-hero__flags { display: flex; flex-wrap: wrap; gap: 8px; }
.lp-flag-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: var(--lp-pill);
  background: rgba(255,255,255,.8);
  border: 1px solid var(--lp-line);
  font-size: 12.5px; font-weight: 600; color: var(--lp-text);
  box-shadow: var(--lp-sh-xs);
}
.lp-flag-pill.muted { color: var(--lp-accent-ink); background: var(--lp-accent-soft); border-color: transparent; }

/* Hero visual — floating 3D dashboard */
.lp-hero__visual { position: relative; perspective: 1600px; }
.lp-hero__stage {
  position: relative;
  transform-style: preserve-3d;
  animation: lp-float 7s ease-in-out infinite;
}
@keyframes lp-float {
  0%,100% { transform: translateY(0) rotateX(6deg) rotateY(-9deg); }
  50%     { transform: translateY(-14px) rotateX(6deg) rotateY(-9deg); }
}
.lp-hero__glow {
  position: absolute; inset: -8% -4% -10%;
  background: radial-gradient(closest-side, rgba(99,102,241,.35), transparent 72%);
  filter: blur(10px);
  z-index: 0;
}
.lp-mock {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #fff, #FCFCFF);
  border: 1px solid var(--lp-line-2);
  border-radius: var(--lp-r-lg);
  box-shadow: var(--lp-sh-xl);
  overflow: hidden;
}
.lp-mock__bar {
  display: flex; align-items: center; gap: 7px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--lp-line);
  background: #fff;
}
.lp-mock__bar .dot { width: 11px; height: 11px; border-radius: 50%; }
.lp-mock__bar .dot.r { background: #FF5F57; }
.lp-mock__bar .dot.y { background: #FEBC2E; }
.lp-mock__bar .dot.g { background: #28C840; }
.lp-mock__bar .url {
  margin-left: 10px; flex: 1;
  height: 24px; border-radius: 7px;
  background: var(--lp-mist);
  display: flex; align-items: center; padding: 0 12px;
  font-size: 11px; font-weight: 600; color: var(--lp-faint);
  font-family: 'Inter', monospace;
}
.lp-mock__body { padding: 18px; }
.lp-mock__row { display: flex; align-items: center; gap: 12px; }
.lp-mock__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.lp-mock__kpi {
  border: 1px solid var(--lp-line);
  border-radius: 14px;
  padding: 12px;
  background: var(--lp-paper);
}
.lp-mock__kpi .k-label { font-size: 10.5px; font-weight: 700; color: var(--lp-faint); text-transform: uppercase; letter-spacing: .4px; }
.lp-mock__kpi .k-val { font-size: 19px; font-weight: 800; color: var(--lp-ink); margin-top: 3px; letter-spacing: -.02em; }
.lp-mock__kpi .k-val small { font-size: 11px; font-weight: 700; color: #22C55E; margin-left: 4px; }
.lp-mock__panel {
  border: 1px solid var(--lp-line);
  border-radius: 16px;
  overflow: hidden;
}
.lp-mock__panel-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px; border-bottom: 1px solid var(--lp-line);
  font-size: 12.5px; font-weight: 700; color: var(--lp-ink);
}
.lp-mock__panel-head .tag {
  font-size: 10.5px; font-weight: 800; color: #22C55E;
  background: rgba(34,197,94,.12); padding: 3px 9px; border-radius: var(--lp-pill);
}
.lp-mock__item {
  display: flex; align-items: center; gap: 11px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--lp-line);
}
.lp-mock__item:last-child { border-bottom: 0; }
.lp-mock__logo {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff; flex-shrink: 0;
  box-shadow: var(--lp-sh-xs);
}
.lp-mock__meta { flex: 1; min-width: 0; }
.lp-mock__meta .t { font-size: 12.5px; font-weight: 700; color: var(--lp-ink); }
.lp-mock__meta .s { font-size: 11px; color: var(--lp-faint); }
.lp-mock__otp {
  font-family: 'Inter', monospace;
  font-weight: 800; font-size: 14px; letter-spacing: 2px;
  color: var(--lp-accent-ink);
  background: var(--lp-accent-soft);
  padding: 5px 10px; border-radius: 8px;
}
.lp-mock__bars { display: flex; align-items: flex-end; gap: 7px; height: 74px; padding: 6px 4px 0; }
.lp-mock__bars span {
  flex: 1; border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, var(--lp-accent), var(--lp-accent-2));
  opacity: .85;
}

/* Floating cards around the mock */
.lp-float-card {
  position: absolute;
  z-index: 2;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 15px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--lp-line-2);
  border-radius: 16px;
  box-shadow: var(--lp-sh-lg);
  backdrop-filter: blur(10px);
  font-size: 12.5px; font-weight: 700; color: var(--lp-ink);
}
.lp-float-card .ic {
  width: 34px; height: 34px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; color: #fff;
}
.lp-float-card .sub { font-size: 10.5px; font-weight: 600; color: var(--lp-faint); }
.lp-float-card--a { top: 6%; left: -7%; animation: lp-floaty 5s ease-in-out infinite; }
.lp-float-card--b { bottom: 12%; right: -6%; animation: lp-floaty 6s ease-in-out .8s infinite; }
.lp-float-card--c { bottom: -4%; left: 6%; animation: lp-floaty 5.5s ease-in-out .4s infinite; }
@keyframes lp-floaty {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

/* ─── Marquee (logos) ───────────────────────────────────────── */
.lp-marquee-wrap {
  border-top: 1px solid var(--lp-line);
  border-bottom: 1px solid var(--lp-line);
  background: #fff;
  padding: 26px 0;
  overflow: hidden;
}
.lp-marquee-title { text-align: center; font-size: 12.5px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; color: var(--lp-faint); margin-bottom: 18px; }
.lp-marquee {
  display: flex; width: max-content;
  animation: lp-scroll 32s linear infinite;
}
.lp-marquee:hover { animation-play-state: paused; }
.lp-marquee img {
  height: 26px; width: auto; margin: 0 34px;
  opacity: .55; filter: grayscale(1);
  transition: opacity .3s, filter .3s;
}
.lp-marquee img:hover { opacity: 1; filter: grayscale(0); }
@keyframes lp-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── Stats ─────────────────────────────────────────────────── */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  background: linear-gradient(180deg, #fff, var(--lp-paper));
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-r-lg);
  box-shadow: var(--lp-sh);
  padding: 30px 20px;
}
.lp-stat { text-align: center; padding: 6px 8px; position: relative; }
.lp-stat + .lp-stat::before {
  content: ''; position: absolute; left: 0; top: 15%; height: 70%;
  width: 1px; background: var(--lp-line);
}
.lp-stat__ic {
  width: 40px; height: 40px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; margin-bottom: 10px;
  background: var(--lp-accent-soft); color: var(--lp-accent-ink);
}
.lp-stat__val { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 800; color: var(--lp-ink); letter-spacing: -.02em; }
.lp-stat__label { font-size: 12px; font-weight: 600; color: var(--lp-muted); margin-top: 2px; }

/* ─── Feature grid ──────────────────────────────────────────── */
.lp-grid { display: grid; gap: 20px; }
.lp-grid--4 { grid-template-columns: repeat(4, 1fr); }
.lp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lp-grid--2 { grid-template-columns: repeat(2, 1fr); }

.lp-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--lp-sh-sm);
  transition: transform .3s var(--lp-ease), box-shadow .3s var(--lp-ease), border-color .3s;
  overflow: hidden;
}
.lp-card::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(99,102,241,.5), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .3s;
}
.lp-card:hover { transform: translateY(-6px); box-shadow: var(--lp-sh-lg); border-color: transparent; }
.lp-card:hover::after { opacity: 1; }
.lp-feat__ic {
  width: 52px; height: 52px; border-radius: 15px;
  display: flex; align-items: center; justify-content: center;
  font-size: 23px; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--lp-accent-soft), #fff);
  color: var(--lp-accent-ink);
  border: 1px solid var(--lp-line);
  box-shadow: var(--lp-sh-xs), inset 0 1px 0 #fff;
}
.lp-feat__ic.g-violet { background: linear-gradient(135deg,#F3E8FF,#fff); color:#7C3AED; }
.lp-feat__ic.g-emerald { background: linear-gradient(135deg,#DCFCE7,#fff); color:#059669; }
.lp-feat__ic.g-amber { background: linear-gradient(135deg,#FEF3C7,#fff); color:#D97706; }
.lp-feat__ic.g-sky { background: linear-gradient(135deg,#E0F2FE,#fff); color:#0284C7; }
.lp-feat__ic.g-rose { background: linear-gradient(135deg,#FFE4E6,#fff); color:#E11D48; }
.lp-feat h3 { margin-bottom: 8px; font-size: 16px; }
.lp-feat p { font-size: 13.5px; line-height: 1.6; color: var(--lp-muted); margin: 0; }

/* ─── Split price hero ──────────────────────────────────────── */
.lp-price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(139,92,246,.1), transparent 60%),
    linear-gradient(180deg,#fff,var(--lp-paper));
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-r-xl);
  box-shadow: var(--lp-sh-lg);
  padding: 44px;
}
.lp-price__rows { display: flex; flex-direction: column; gap: 10px; }
.lp-price-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 16px;
  box-shadow: var(--lp-sh-xs);
  transition: transform .25s var(--lp-ease), box-shadow .25s;
}
.lp-price-row:hover { transform: translateX(4px); box-shadow: var(--lp-sh-sm); }
.lp-price-row .flag { font-size: 26px; line-height: 1; }
.lp-price-row .info { flex: 1; min-width: 0; }
.lp-price-row .info .t { font-size: 14px; font-weight: 700; color: var(--lp-ink); }
.lp-price-row .info .s { font-size: 11.5px; color: var(--lp-faint); }
.lp-price-row .from {
  font-size: 12px; font-weight: 700; color: var(--lp-accent-ink);
  background: var(--lp-accent-soft); padding: 6px 11px; border-radius: var(--lp-pill);
}

/* ─── Country / Service cards ───────────────────────────────── */
.lp-country {
  position: relative;
  text-align: center;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-r-sm);
  padding: 22px 12px 18px;
  box-shadow: var(--lp-sh-xs);
  transition: transform .3s var(--lp-ease), box-shadow .3s, border-color .3s;
}
.lp-country:hover { transform: translateY(-5px); box-shadow: var(--lp-sh); border-color: rgba(99,102,241,.4); }
.lp-country .flag { font-size: 40px; line-height: 1; margin-bottom: 10px; display: block; }
.lp-country .name { font-size: 13.5px; font-weight: 700; color: var(--lp-ink); }
.lp-country .svc { font-size: 11px; color: var(--lp-faint); margin-top: 2px; }
.lp-country .price { font-size: 11.5px; font-weight: 700; color: var(--lp-accent-ink); margin-top: 6px; }
.lp-hot {
  position: absolute; top: 9px; right: 9px;
  font-size: 9.5px; font-weight: 800;
  background: linear-gradient(135deg,#FB7185,#F43F5E); color: #fff;
  padding: 3px 8px; border-radius: var(--lp-pill);
  box-shadow: 0 4px 10px -3px rgba(244,63,94,.5);
}

.lp-svc {
  position: relative;
  text-align: center;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-r-sm);
  padding: 22px 14px 18px;
  box-shadow: var(--lp-sh-xs);
  transition: transform .3s var(--lp-ease), box-shadow .3s, border-color .3s;
}
.lp-svc:hover { transform: translateY(-5px); box-shadow: var(--lp-sh); border-color: rgba(99,102,241,.4); }
.lp-svc__logo {
  width: 54px; height: 54px; margin: 0 auto 12px;
  border-radius: 15px; background: var(--lp-mist);
  border: 1px solid var(--lp-line);
  display: flex; align-items: center; justify-content: center;
}
.lp-svc__logo img { width: 30px; height: 30px; object-fit: contain; }
.lp-svc .name { font-size: 13.5px; font-weight: 700; color: var(--lp-ink); }
.lp-svc .stock { font-size: 11px; color: var(--lp-faint); margin-top: 3px; }
.lp-svc .price { font-size: 12px; font-weight: 700; color: var(--lp-accent-ink); margin-top: 5px; }

/* ─── App Premium ───────────────────────────────────────────── */
.lp-premium {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  align-items: start;
}
.lp-premium__aside { display: flex; flex-direction: column; gap: 14px; }
.lp-premium__benefit {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 18px;
  padding: 16px 18px;
  box-shadow: var(--lp-sh-xs);
  transition: transform .25s var(--lp-ease), box-shadow .25s, border-color .25s;
}
.lp-premium__benefit:hover { transform: translateX(4px); box-shadow: var(--lp-sh-sm); border-color: rgba(99,102,241,.35); }
.lp-premium__benefit-ic {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 13px; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--lp-accent-soft), #fff);
  color: var(--lp-accent-ink);
  border: 1px solid var(--lp-line);
  box-shadow: var(--lp-sh-xs), inset 0 1px 0 #fff;
}
.lp-premium__benefit .t { font-size: 14.5px; font-weight: 700; color: var(--lp-ink); }
.lp-premium__benefit .s { font-size: 12.5px; color: var(--lp-muted); line-height: 1.55; margin-top: 3px; }

.lp-premium__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lp-prem-card {
  position: relative;
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: 18px;
  padding: 20px 16px 16px;
  box-shadow: var(--lp-sh-sm);
  transition: transform .3s var(--lp-ease), box-shadow .3s, border-color .3s;
  overflow: hidden;
}
.lp-prem-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--lp-accent), var(--lp-accent-2));
  opacity: 0; transition: opacity .3s;
}
.lp-prem-card:hover { transform: translateY(-6px); box-shadow: var(--lp-sh-lg); border-color: transparent; }
.lp-prem-card:hover::before { opacity: 1; }
.lp-prem-card__logo {
  width: 52px; height: 52px; margin-bottom: 14px;
  border-radius: 14px; background: #fff;
  border: 1px solid var(--lp-line);
  box-shadow: var(--lp-sh-xs);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.lp-prem-card__logo img { width: 30px; height: 30px; object-fit: contain; border-radius: 7px; }
.lp-prem-card__logo.is-empty { background: var(--lp-accent-soft); }
.lp-prem-card__logo.is-empty::after {
  content: '\2726'; color: var(--lp-accent); font-size: 22px;
}
.lp-prem-card__body { flex: 1; }
.lp-prem-card__body .name { font-size: 14.5px; font-weight: 700; color: var(--lp-ink); line-height: 1.3; }
.lp-prem-card__body .tag {
  display: inline-block; margin-top: 7px;
  font-size: 10.5px; font-weight: 700; letter-spacing: .3px;
  color: var(--lp-accent-ink); background: var(--lp-accent-soft);
  padding: 3px 9px; border-radius: var(--lp-pill);
}
.lp-prem-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px; padding-top: 13px; border-top: 1px dashed var(--lp-line-2);
}
.lp-prem-card__foot .price { font-size: 13px; font-weight: 800; color: var(--lp-ink); }
.lp-prem-card__foot .stok {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10.5px; font-weight: 700; color: #059669;
}
.lp-prem-card__foot .stok .dot {
  width: 6px; height: 6px; border-radius: 50%; background: #10B981;
  box-shadow: 0 0 0 3px rgba(16,185,129,.16);
}

/* ─── How it works ──────────────────────────────────────────── */
.lp-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; counter-reset: step; }
.lp-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-r);
  padding: 28px 24px;
  box-shadow: var(--lp-sh-sm);
  transition: transform .3s var(--lp-ease), box-shadow .3s;
}
.lp-step:hover { transform: translateY(-5px); box-shadow: var(--lp-sh-lg); }
.lp-step__num {
  width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
  box-shadow: var(--lp-sh-accent);
  margin-bottom: 18px;
}
.lp-step__ic { position: absolute; top: 26px; right: 24px; font-size: 24px; color: var(--lp-line-2); }
.lp-step h3 { font-size: 16px; margin-bottom: 7px; }
.lp-step p { font-size: 13px; color: var(--lp-muted); line-height: 1.6; margin: 0; }

/* ─── API section ───────────────────────────────────────────── */
.lp-api { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.lp-api__feats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.lp-api__feat { display: flex; gap: 12px; align-items: flex-start; }
.lp-api__feat .ic {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 17px;
  background: var(--lp-accent-soft); color: var(--lp-accent-ink);
}
.lp-api__feat .t { font-size: 14px; font-weight: 700; color: var(--lp-ink); }
.lp-api__feat .s { font-size: 12px; color: var(--lp-faint); }
.lp-code {
  background: #0C1122;
  border-radius: var(--lp-r-lg);
  border: 1px solid #1E2540;
  box-shadow: var(--lp-sh-xl);
  overflow: hidden;
}
.lp-code__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 18px; background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.lp-code__head .dots { display: flex; gap: 7px; }
.lp-code__head .dots span { width: 11px; height: 11px; border-radius: 50%; }
.lp-code__head .lbl { font-size: 12px; font-weight: 600; color: #7C88A8; font-family: 'Inter', monospace; }
.lp-code__body {
  margin: 0; padding: 22px;
  font-family: 'Inter', ui-monospace, 'SF Mono', monospace;
  font-size: 12.8px; line-height: 1.85;
  color: #C9D3EA; white-space: pre-wrap; word-break: break-word;
}
.lp-code__body .k { color: #7DD3FC; }
.lp-code__body .s { color: #86EFAC; }
.lp-code__body .n { color: #FCD34D; }
.lp-code__body .b { color: #C4B5FD; }
.lp-code__body .c { color: #5B6684; }

/* ─── FAQ ───────────────────────────────────────────────────── */
.lp-faq { max-width: 780px; margin-inline: auto; display: flex; flex-direction: column; gap: 12px; }
.lp-faq__item {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-r);
  box-shadow: var(--lp-sh-xs);
  overflow: hidden;
  transition: box-shadow .25s, border-color .25s;
}
.lp-faq__item.is-open { box-shadow: var(--lp-sh); border-color: rgba(99,102,241,.35); }
.lp-faq__q {
  width: 100%; text-align: left; cursor: pointer;
  display: flex; align-items: center; gap: 14px;
  padding: 20px 22px;
  background: none; border: 0;
  font-family: inherit; font-size: 15.5px; font-weight: 700; color: var(--lp-ink);
}
.lp-faq__q .chev {
  margin-left: auto; flex-shrink: 0;
  width: 30px; height: 30px; border-radius: 9px;
  background: var(--lp-mist); color: var(--lp-accent-ink);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
  transition: transform .3s var(--lp-ease), background .25s;
}
.lp-faq__item.is-open .lp-faq__q .chev { transform: rotate(180deg); background: var(--lp-accent-soft); }
.lp-faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--lp-ease); }
.lp-faq__a-inner { padding: 0 22px 22px; font-size: 13.8px; line-height: 1.75; color: var(--lp-muted); white-space: pre-line; }

.lp-warn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px; border-radius: var(--lp-pill);
  background: #FFFAF0; border: 1px solid #FDE68A;
  color: #92400E; font-size: 13px; font-weight: 700;
  box-shadow: var(--lp-sh-xs);
}
.lp-warn i { color: #D97706; font-size: 17px; }

/* ─── Testimonials ──────────────────────────────────────────── */
.lp-testi {
  background: #fff;
  border: 1px solid var(--lp-line);
  border-radius: var(--lp-r);
  padding: 26px;
  box-shadow: var(--lp-sh-sm);
  transition: transform .3s var(--lp-ease), box-shadow .3s;
  height: 100%;
}
.lp-testi:hover { transform: translateY(-5px); box-shadow: var(--lp-sh-lg); }
.lp-testi__stars { color: #FBBF24; font-size: 14px; margin-bottom: 12px; letter-spacing: 1px; }
.lp-testi__text { font-size: 14px; line-height: 1.7; color: var(--lp-text); margin-bottom: 20px; }
.lp-testi__who { display: flex; align-items: center; gap: 12px; }
.lp-testi__ava {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: #fff;
  background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
}
.lp-testi__who .n { font-size: 13.5px; font-weight: 700; color: var(--lp-ink); }
.lp-testi__who .c { font-size: 11.5px; color: var(--lp-faint); }
.lp-testi__badge {
  margin-left: auto; font-size: 10.5px; font-weight: 700;
  color: #059669; background: rgba(5,150,105,.1);
  padding: 4px 10px; border-radius: var(--lp-pill);
  display: inline-flex; align-items: center; gap: 4px;
}

/* ─── Final CTA ─────────────────────────────────────────────── */
.lp-cta {
  position: relative;
  overflow: hidden;
  border-radius: var(--lp-r-xl);
  padding: 64px 40px;
  text-align: center;
  background: linear-gradient(135deg, #4F46E5 0%, #6D28D9 55%, #7C3AED 100%);
  box-shadow: var(--lp-sh-xl);
}
.lp-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(255,255,255,.18), transparent 60%),
    radial-gradient(500px 280px at 90% 110%, rgba(255,255,255,.14), transparent 60%);
  pointer-events: none;
}
.lp-cta__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  -webkit-mask-image: radial-gradient(70% 80% at 50% 40%, #000, transparent 75%);
  mask-image: radial-gradient(70% 80% at 50% 40%, #000, transparent 75%);
}
.lp-cta > * { position: relative; z-index: 1; }
.lp-cta__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: var(--lp-pill);
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 20px;
  backdrop-filter: blur(6px);
}
.lp-cta h2 { color: #fff; font-size: clamp(1.8rem,4vw,2.6rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 12px; }
.lp-cta p { color: rgba(255,255,255,.85); font-size: 16px; margin-bottom: 30px; }
.lp-cta__actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ─── Footer (premium dark) ─────────────────────────────────── */
.lp-footer {
  background: #0B0B0F;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 76px 0 32px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: #C4C7D0;
}
.lp-footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.4fr; gap: 40px; }
.lp-footer__brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; color: #fff; text-decoration: none; margin-bottom: 16px; }
.lp-footer__brand img { width: 30px; height: 30px; border-radius: 9px; }
.lp-footer__brand span { color: var(--lp-accent-2); }
.lp-footer__desc { font-size: 13.5px; color: #8B8F9C; line-height: 1.7; margin-bottom: 20px; max-width: 300px; }
.lp-footer h6 { font-size: 12.5px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 18px; }
.lp-footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 13px; }
.lp-footer__links a { font-size: 13.5px; color: #9296A2; text-decoration: none; transition: color .2s, padding-left .2s; }
.lp-footer__links a:hover { color: #fff; padding-left: 3px; }
.lp-social { display: flex; gap: 10px; flex-wrap: wrap; }
.lp-social a {
  width: 40px; height: 40px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  color: #C4C7D0; font-size: 17px; text-decoration: none;
  transition: transform .2s var(--lp-ease), color .2s, background .2s, border-color .2s;
}
.lp-social a:hover { transform: translateY(-3px); color: #fff; background: var(--lp-accent); border-color: var(--lp-accent); }
.lp-footer__contact { display: flex; flex-direction: column; gap: 13px; }
.lp-footer__contact a { display: flex; align-items: center; gap: 10px; font-size: 12.8px; color: #9296A2; text-decoration: none; transition: color .2s; }
.lp-footer__contact a:hover { color: #fff; }
.lp-footer__contact a i { color: var(--lp-accent-2); font-size: 15px; }
.lp-footer__contact a [data-lucide],
.lp-footer__contact a svg.lucide { width: 16px; height: 16px; color: var(--lp-accent-2); }
.lp-footer__bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  margin-top: 56px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.07);
  font-size: 12.5px; color: #71757F;
}
.lp-footer__bottom a { color: #9296A2; text-decoration: none; transition: color .2s; }
.lp-footer__bottom a:hover { color: #fff; }
.lp-footer__bottom i { color: #F43F5E; }

/* ─── Reveal on scroll ──────────────────────────────────────── */
.lp-reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--lp-ease), transform .7s var(--lp-ease); }
.lp-reveal.is-in { opacity: 1; transform: none; }
.lp-reveal[data-d="1"] { transition-delay: .08s; }
.lp-reveal[data-d="2"] { transition-delay: .16s; }
.lp-reveal[data-d="3"] { transition-delay: .24s; }
.lp-reveal[data-d="4"] { transition-delay: .32s; }
.lp-reveal[data-d="5"] { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  .lp *, .lp *::before, .lp *::after { animation: none !important; transition: none !important; }
  .lp-reveal { opacity: 1; transform: none; }
}

/* ─── Responsive ────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .lp-footer__top { grid-template-columns: 1.4fr 1fr 1fr; row-gap: 40px; }
  .lp-footer__contact-col { grid-column: 1 / -1; }
}
@media (max-width: 980px) {
  .lp .lp-section { padding: 72px 0; }
  .lp-nav__links { display: none; }
  .lp-nav__cta { margin-left: auto; }
  .lp-burger { display: flex; }
  .lp-hero__inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .lp-hero__copy { max-width: 640px; margin-inline: auto; }
  .lp-hero__badges, .lp-hero__actions, .lp-hero__social, .lp-hero__flags { justify-content: center; }
  .lp-hero__lead { margin-inline: auto; }
  .lp-hero__visual { max-width: 480px; margin-inline: auto; width: 100%; }
  .lp-stats { grid-template-columns: repeat(3,1fr); gap: 22px; }
  .lp-stat + .lp-stat::before { display: none; }
  .lp-grid--4 { grid-template-columns: repeat(2,1fr); }
  .lp-steps { grid-template-columns: repeat(2,1fr); }
  .lp-price, .lp-api { grid-template-columns: 1fr; gap: 32px; }
  .lp-api__feats { grid-template-columns: 1fr 1fr; }
  .lp-premium { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .lp .lp-container { padding-inline: 16px; }
  .lp .lp-section { padding: 60px 0; }
  .lp .lp-section-head { margin-bottom: 40px; }
  .lp-nav__cta { gap: 7px; }
  .lp-nav__link-login { padding: 8px 10px; font-size: 13.5px; }
  .lp-nav__cta .lp-btn--sm { padding: 8px 12px; font-size: 13px; }
  .lp-burger { width: 42px; height: 42px; }
  .lp-hero { padding: 48px 0 64px; }
  .lp-hero__actions .lp-btn { flex: 1 1 100%; }
  .lp-float-card--a { top: 2%; left: -2%; scale: .9; }
  .lp-float-card--b { bottom: 8%; right: -2%; scale: .9; }
  .lp-float-card--c { display: none; }
  .lp-stats { grid-template-columns: repeat(2,1fr); padding: 22px 14px; }
  .lp-grid--4, .lp-grid--3, .lp-grid--2 { grid-template-columns: 1fr; }
  .lp-country-grid { grid-template-columns: repeat(2,1fr) !important; }
  .lp-svc-grid { grid-template-columns: repeat(2,1fr) !important; }
  .lp-premium__grid { grid-template-columns: repeat(2,1fr); }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-api__feats { grid-template-columns: 1fr; }
  .lp-price { padding: 28px 20px; }
  .lp-cta { padding: 48px 22px; }
  .lp-footer__top { grid-template-columns: 1fr 1fr; }
  .lp-footer__brand-col { grid-column: 1 / -1; }
  .lp-footer__bottom { justify-content: center; text-align: center; }
}
@media (max-width: 380px) {
  .lp-country-grid, .lp-svc-grid { grid-template-columns: 1fr !important; }
  .lp-nav__link-login { display: none; }
}
