/* ============================================================
   WAGate.app — "Lexend" warm landing system
   Self-contained, scoped to .lx. Cream surfaces, green accent,
   pill buttons, big rounded cards, colorful soft tiles.
   ============================================================ */
:root {
  /* Tweakable hooks */
  --tw-accent: #12b76a;
  --tw-accent-press: #0e9f5d;
  --tw-lime: #d8f24a;
  --tw-page: #fbf7f0;
  --tw-radius: 26px;
}

.lx {
  /* Ink */
  --ink: #17191d;
  --ink-2: #44474e;
  --ink-3: #74787f;
  --ink-4: #9aa0a8;

  /* Surfaces */
  --paper: #ffffff;
  --page: var(--tw-page);
  --cream: #f5efe4;
  --cream-2: #efe7d8;
  --line: #ece4d6;
  --line-2: #e0d7c6;

  /* Brand */
  --primary: var(--tw-accent);
  --primary-press: var(--tw-accent-press);
  --primary-tint: color-mix(in srgb, var(--primary) 13%, #ffffff);
  --lime: var(--tw-lime);

  /* Soft colorful tiles */
  --peach: #ffe7d4;     --peach-ink: #c1410b;
  --lilac: #eae6ff;     --lilac-ink: #6d33d6;
  --mint: #d2f2df;      --mint-ink: #058a52;
  --sky: #d9eafd;       --sky-ink: #1f6fe0;
  --lemon: #fbeec2;     --lemon-ink: #a06d09;
  --rose: #ffe1e7;      --rose-ink: #d23a5e;

  /* Radii */
  --rc: var(--tw-radius);
  --rc-sm: calc(var(--tw-radius) * 0.6);
  --rc-lg: calc(var(--tw-radius) * 1.5);

  /* Shadow — soft, warm */
  --sh-soft: 0 2px 4px rgba(60, 48, 30, .04), 0 10px 24px -12px rgba(60, 48, 30, .12);
  --sh-card: 0 4px 10px -4px rgba(60, 48, 30, .08), 0 22px 48px -22px rgba(60, 48, 30, .18);
  --sh-pop: 0 16px 50px -16px rgba(40, 30, 18, .28);

  font-family: 'Lexend', 'Rubik', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--page);
  color: var(--ink);
  min-height: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.01em;
}
.lx * { box-sizing: border-box; }
.lx-mono { font-family: 'JetBrains Mono', ui-monospace, monospace; }
.lx .ltr { direction: ltr; unicode-bidi: isolate; }

.lx-wrap { max-width: 1180px; margin: 0 auto; padding: 0 26px; }

/* ---------- Buttons ---------- */
.lx-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  border: none; cursor: pointer; font-family: inherit; font-weight: 600;
  font-size: 15.5px; padding: 13px 24px; border-radius: 999px; line-height: 1;
  transition: transform .14s cubic-bezier(.16,1,.3,1), background .14s, box-shadow .14s, color .14s;
  white-space: nowrap; text-decoration: none;
}
.lx-btn svg { width: 18px; height: 18px; }
.lx-btn:active { transform: translateY(1px) scale(.99); }
.lx-btn--dark { background: var(--ink); color: #fff; box-shadow: 0 6px 16px -6px rgba(23,25,29,.5); }
.lx-btn--dark:hover { background: #000; transform: translateY(-1px); }
.lx-btn--primary { background: var(--primary); color: #fff; box-shadow: 0 8px 18px -6px color-mix(in srgb, var(--primary) 60%, transparent); }
.lx-btn--primary:hover { background: var(--primary-press); transform: translateY(-1px); }
.lx-btn--white { background: #fff; color: var(--ink); border: 1.5px solid var(--line-2); }
.lx-btn--white:hover { border-color: var(--ink-4); transform: translateY(-1px); }
.lx-btn--ghost { background: transparent; color: var(--ink); padding: 13px 16px; }
.lx-btn--ghost:hover { background: rgba(23,25,29,.05); }
.lx-btn--lime { background: var(--lime); color: var(--ink); box-shadow: 0 8px 18px -6px color-mix(in srgb, var(--lime) 65%, transparent); }
.lx-btn--lime:hover { transform: translateY(-1px); filter: brightness(1.03); }
.lx-btn--sm { font-size: 14px; padding: 10px 18px; }
.lx-btn--lg { font-size: 16.5px; padding: 16px 30px; }

/* ---------- Pills / chips ---------- */
.lx-chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: #fff; border: 1.5px solid var(--line-2); border-radius: 999px;
  padding: 6px 16px 6px 7px; font-size: 13.5px; font-weight: 540; color: var(--ink-2);
  box-shadow: var(--sh-soft);
}
.lx-chip-dot { width: 22px; height: 22px; border-radius: 999px; background: var(--primary); color: #fff; display: grid; place-items: center; }
.lx-chip-dot svg { width: 13px; height: 13px; }
.lx-kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 650; color: var(--primary);
  text-transform: uppercase; letter-spacing: .08em;
}
.lx-kicker::before { content: ""; width: 22px; height: 2.5px; border-radius: 2px; background: var(--primary); }

/* ---------- Lang toggle ---------- */
.lx-lang { display: inline-flex; background: rgba(23,25,29,.05); border-radius: 999px; padding: 3px; }
.lx-lang button { border: none; background: transparent; font-family: inherit; font-weight: 600; font-size: 13px; color: var(--ink-3); padding: 6px 12px; border-radius: 999px; cursor: pointer; }
.lx-lang button.on { background: #fff; color: var(--ink); box-shadow: 0 1px 3px rgba(0,0,0,.1); }

/* ---------- Decorative ---------- */
.lx-star { position: absolute; color: var(--lime); pointer-events: none; filter: drop-shadow(0 4px 8px rgba(0,0,0,.06)); }
.lx-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; pointer-events: none; z-index: 0; }
@keyframes lx-float { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)); } 50% { transform: translateY(-12px) rotate(var(--r,0deg)); } }
@keyframes lx-spin-slow { to { transform: rotate(360deg); } }

/* ---------- Nav ---------- */
.lx-nav { position: sticky; top: 0; z-index: 200; padding: 14px 0; }
.lx-nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 9px 9px 9px 20px;
  display: flex; align-items: center; gap: 22px;
  background: rgba(255,255,255,.78); backdrop-filter: saturate(180%) blur(14px);
  border: 1.5px solid var(--line); border-radius: 999px; box-shadow: var(--sh-soft);
}
.lx-logo { display: flex; align-items: center; gap: 10px; }
.lx-logo-mark { width: 34px; height: 34px; border-radius: 11px; background: linear-gradient(145deg, color-mix(in srgb, var(--primary) 80%, #fff), var(--primary)); display: grid; place-items: center; box-shadow: inset 0 1px 0 rgba(255,255,255,.35); }
.lx-logo-name { font-weight: 700; font-size: 17px; letter-spacing: -.03em; }
.lx-nav-links { display: flex; align-items: center; gap: 4px; margin: 0 auto; }
.lx-nav-link { padding: 9px 15px; border-radius: 999px; font-size: 15px; font-weight: 530; color: var(--ink-2); text-decoration: none; }
.lx-nav-link:hover { background: rgba(23,25,29,.05); color: var(--ink); }
.lx-nav-right { display: flex; align-items: center; gap: 10px; }

/* ---------- Hero ---------- */
.lx-hero { position: relative; padding: 56px 0 40px; text-align: center; overflow: visible; }
.lx-hero .lx-blob.b1 { width: 460px; height: 460px; background: color-mix(in srgb, var(--primary) 35%, #fff); top: -160px; left: 50%; transform: translateX(-60%); }
.lx-hero .lx-blob.b2 { width: 380px; height: 380px; background: var(--lilac); top: -80px; right: 8%; }
.lx-hero .lx-blob.b3 { width: 300px; height: 300px; background: var(--peach); top: 120px; left: 6%; }
.lx-hero-inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.lx-h1 { font-size: 70px; line-height: 1.0; letter-spacing: -.045em; font-weight: 720; margin: 22px auto 0; max-width: 14ch; text-wrap: balance; }
.lx-h1 .hl { color: var(--primary); position: relative; }
.lx-hero-sub { font-size: 19px; line-height: 1.55; color: var(--ink-2); margin: 24px auto 0; max-width: 580px; text-wrap: pretty; }
.lx-hero-cta { display: flex; gap: 13px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.lx-hero-social { display: flex; align-items: center; gap: 14px; justify-content: center; margin-top: 26px; }
.lx-avatars { display: flex; }
.lx-avatars .av { width: 38px; height: 38px; border-radius: 999px; border: 2.5px solid var(--page); margin-inline-start: -11px; display: grid; place-items: center; color: #fff; font-weight: 650; font-size: 13px; }
.lx-avatars .av:first-child { margin-inline-start: 0; }
.lx-social-text { text-align: start; }
.lx-stars-row { display: flex; gap: 2px; color: #f5b820; }
.lx-stars-row svg { width: 15px; height: 15px; }
.lx-social-sub { font-size: 13px; color: var(--ink-3); font-weight: 500; }
.lx-social-sub b { color: var(--ink); }

/* Hero product visual */
.lx-hero-shot { position: relative; max-width: 980px; margin: 56px auto 0; z-index: 2; }
.lx-shot-card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--rc-lg); box-shadow: var(--sh-card); overflow: hidden; }
.lx-shot-bar { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-bottom: 1px solid var(--line); background: var(--cream); }
.lx-dots { display: flex; gap: 7px; }
.lx-dots span { width: 11px; height: 11px; border-radius: 50%; }
.lx-dots span:nth-child(1){background:#ff5f57;} .lx-dots span:nth-child(2){background:#febc2e;} .lx-dots span:nth-child(3){background:#28c840;}
.lx-shot-url { flex: 1; max-width: 320px; margin: 0 auto; text-align: center; font-family: 'JetBrains Mono', monospace; font-size: 11.5px; color: var(--ink-3); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 5px 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.lx-shot-body { display: grid; grid-template-columns: 184px 1fr; min-height: 420px; }
.lx-shot-side { border-inline-end: 1px solid var(--line); padding: 16px 13px; background: #fff; }
.lx-shot-brand { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; padding: 0 6px; }
.lx-shot-nav { display: flex; flex-direction: column; gap: 4px; }
.lx-shot-nav-item { display: flex; align-items: center; gap: 10px; padding: 9px 11px; border-radius: 12px; font-size: 13.5px; font-weight: 540; color: var(--ink-3); }
.lx-shot-nav-item svg { width: 16px; height: 16px; }
.lx-shot-nav-item.on { background: var(--primary-tint); color: var(--primary); font-weight: 650; }
.lx-shot-main { padding: 24px; background: var(--page); }
.lx-shot-h { font-size: 19px; font-weight: 700; letter-spacing: -.03em; }
.lx-shot-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; margin-top: 18px; }
.lx-shot-stat { background: #fff; border: 1.5px solid var(--line); border-radius: 16px; padding: 15px; }
.lx-shot-stat-l { font-size: 11.5px; color: var(--ink-3); font-weight: 540; }
.lx-shot-stat-v { font-size: 24px; font-weight: 740; letter-spacing: -.03em; margin-top: 7px; }
.lx-shot-stat-d { font-size: 11.5px; font-weight: 640; color: var(--mint-ink); margin-top: 6px; }
.lx-shot-chart { margin-top: 15px; background: #fff; border: 1.5px solid var(--line); border-radius: 18px; padding: 18px; }
.lx-shot-bars { display: flex; align-items: flex-end; gap: 7px; height: 110px; margin-top: 12px; }
.lx-shot-bars span { flex: 1; border-radius: 6px 6px 3px 3px; background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 70%, #fff), var(--primary)); }
/* Floating tiles + phone */
.lx-float-tile { position: absolute; width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; box-shadow: var(--sh-pop); z-index: 4; animation: lx-float 5s ease-in-out infinite; }
.lx-float-tile svg { width: 26px; height: 26px; }
.lx-float-tile.t1 { top: -26px; left: -26px; background: var(--peach); color: var(--peach-ink); --r: -8deg; }
.lx-float-tile.t2 { top: 38%; right: -30px; background: var(--lilac); color: var(--lilac-ink); --r: 7deg; animation-delay: .8s; }
.lx-float-tile.t3 { bottom: -24px; left: 16%; background: var(--sky); color: var(--sky-ink); --r: 5deg; animation-delay: 1.6s; }
.lx-hero-phone { position: absolute; right: -16px; bottom: -36px; width: 196px; z-index: 5; transform: rotate(3deg); animation: lx-float 6s ease-in-out infinite; }

/* WhatsApp mini phone (landing-local) */
.lxp { width: 196px; background: #0b0b0d; border-radius: 30px; padding: 7px; box-shadow: var(--sh-pop), inset 0 0 0 2px #26262a; }
.lxp-screen { border-radius: 24px; overflow: hidden; background: #e4ddd4; }
.lxp-head { background: #075e54; color: #fff; padding: 14px 12px 10px; display: flex; align-items: center; gap: 8px; }
.lxp-ava { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.25); display: grid; place-items: center; font-size: 11px; font-weight: 700; }
.lxp-name { font-size: 12.5px; font-weight: 600; }
.lxp-presence { font-size: 10px; opacity: .8; }
.lxp-chat { padding: 12px 10px 16px; background: #e4ddd4; background-image: radial-gradient(rgba(0,0,0,.03) 1px, transparent 1px); background-size: 16px 16px; min-height: 200px; }
.lxp-bubble { background: #fff; border-radius: 9px 9px 9px 2px; padding: 8px 9px 6px; box-shadow: 0 1px 1px rgba(0,0,0,.12); max-width: 158px; }
.lxp-bubble .bt { font-weight: 700; font-size: 12px; color: #111b21; margin-bottom: 3px; }
.lxp-bubble .bb { font-size: 11.5px; line-height: 1.4; color: #111b21; }
.lxp-bubble .bm { font-size: 9px; color: #667781; text-align: end; margin-top: 3px; }
.lxp-btn { margin-top: 4px; background: #fff; color: #1ea7c5; font-size: 11.5px; font-weight: 500; text-align: center; padding: 7px; border-radius: 8px; box-shadow: 0 1px 1px rgba(0,0,0,.1); max-width: 158px; }

/* ---------- Marquee ---------- */
.lx-marquee-sec { padding: 44px 0 12px; }
.lx-marquee-label { text-align: center; font-size: 12.5px; font-weight: 640; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); }
.lx-marquee { margin-top: 24px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.lx-marquee-track { display: flex; gap: 56px; width: max-content; animation: lx-marq 26s linear infinite; }
@keyframes lx-marq { to { transform: translateX(-50%); } }
.lx-logo-word { display: flex; align-items: center; gap: 10px; font-weight: 680; font-size: 19px; color: var(--ink-4); letter-spacing: -.02em; }
.lx-logo-word svg { width: 22px; height: 22px; }
[dir="rtl"] .lx-marquee-track { animation-direction: reverse; }

/* ---------- Section scaffolding ---------- */
.lx-sec { padding: 88px 0; position: relative; }
.lx-sec.cream { background: var(--cream); }
.lx-sec-head { text-align: center; max-width: 640px; margin: 0 auto 52px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.lx-h2 { font-size: 44px; font-weight: 720; letter-spacing: -.04em; line-height: 1.05; text-wrap: balance; }
.lx-sec-sub { font-size: 17.5px; color: var(--ink-2); line-height: 1.55; }

/* ---------- Features split ---------- */
.lx-feat-split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.lx-feat-checks { display: grid; gap: 14px; margin-top: 28px; }
.lx-check { display: flex; align-items: center; gap: 13px; font-size: 16.5px; font-weight: 560; }
.lx-check-ic { width: 28px; height: 28px; border-radius: 9px; background: var(--primary-tint); color: var(--primary); display: grid; place-items: center; flex-shrink: 0; }
.lx-check-ic svg { width: 16px; height: 16px; }
.lx-feat-visual { position: relative; }
.lx-feat-imgcard { background: #fff; border: 1.5px solid var(--line); border-radius: var(--rc); box-shadow: var(--sh-card); padding: 26px; }
.lx-feat-imgcard-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.lx-mini-badge { font-size: 11.5px; font-weight: 650; padding: 4px 10px; border-radius: 999px; }
.lx-tplrow { display: flex; align-items: center; gap: 12px; padding: 13px; border: 1.5px solid var(--line); border-radius: 16px; margin-bottom: 10px; }
.lx-tplrow.sel { border-color: var(--primary); background: var(--primary-tint); }
.lx-tplrow-ic { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; flex-shrink: 0; }
.lx-tplrow-name { font-size: 14px; font-weight: 620; font-family: 'JetBrains Mono', monospace; }
.lx-tplrow-meta { font-size: 11.5px; color: var(--ink-3); margin-top: 2px; }
.lx-feat-visual .lx-star { z-index: 3; }

/* ---------- Integrations grid ---------- */
.lx-int-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.lx-int-card { background: #fff; border: 1.5px solid var(--line); border-radius: var(--rc); padding: 26px; box-shadow: var(--sh-soft); transition: transform .18s, box-shadow .18s; }
.lx-int-card:hover { transform: translateY(-4px); box-shadow: var(--sh-card); }
.lx-int-top { display: flex; align-items: center; justify-content: space-between; }
.lx-int-ic { width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; }
.lx-int-ic svg { width: 26px; height: 26px; }
.lx-int-cat { font-size: 11.5px; font-weight: 650; color: var(--ink-3); text-transform: uppercase; letter-spacing: .06em; }
.lx-int-name { font-size: 19px; font-weight: 680; margin-top: 20px; letter-spacing: -.02em; }
.lx-int-desc { font-size: 14.5px; color: var(--ink-2); margin-top: 9px; line-height: 1.5; }

/* ---------- Values + stats ---------- */
.lx-val-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.lx-val { text-align: center; padding: 8px; }
.lx-val-ic { width: 64px; height: 64px; border-radius: 20px; display: grid; place-items: center; margin: 0 auto 20px; box-shadow: var(--sh-soft); }
.lx-val-ic svg { width: 30px; height: 30px; }
.lx-val-t { font-size: 21px; font-weight: 680; letter-spacing: -.02em; }
.lx-val-d { font-size: 15px; color: var(--ink-2); margin-top: 10px; line-height: 1.55; max-width: 30ch; margin-inline: auto; }
.lx-statband { margin-top: 64px; background: var(--ink); border-radius: var(--rc-lg); padding: 48px; display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; position: relative; overflow: hidden; }
.lx-statband::after { content:""; position:absolute; inset:0; background: radial-gradient(500px 240px at 80% -20%, color-mix(in srgb, var(--primary) 40%, transparent), transparent 60%); }
.lx-stat-c { text-align: center; position: relative; }
.lx-stat-n { font-size: 52px; font-weight: 760; letter-spacing: -.04em; color: #fff; }
.lx-stat-n .u { color: var(--lime); }
.lx-stat-cap { font-size: 14.5px; color: rgba(255,255,255,.62); margin-top: 6px; }

/* ---------- Pricing ---------- */
.lx-price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; align-items: stretch; }
.lx-plan { background: #fff; border: 1.5px solid var(--line); border-radius: var(--rc); padding: 30px; display: flex; flex-direction: column; box-shadow: var(--sh-soft); }
.lx-plan.pop { background: var(--ink); border-color: var(--ink); color: #fff; box-shadow: var(--sh-card); transform: scale(1.03); position: relative; z-index: 2; }
.lx-plan-pop-tag { position: absolute; top: 22px; inset-inline-end: 22px; background: var(--lime); color: var(--ink); font-size: 11.5px; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.lx-plan-name { font-size: 16px; font-weight: 680; }
.lx-plan.pop .lx-plan-name { color: var(--lime); }
.lx-plan-desc { font-size: 13.5px; color: var(--ink-3); margin-top: 8px; line-height: 1.5; min-height: 40px; }
.lx-plan.pop .lx-plan-desc { color: rgba(255,255,255,.6); }
.lx-plan-price { display: flex; align-items: baseline; gap: 6px; margin: 22px 0 4px; }
.lx-plan-amt { font-size: 46px; font-weight: 750; letter-spacing: -.04em; }
.lx-plan-per { font-size: 15px; color: var(--ink-3); font-weight: 540; }
.lx-plan.pop .lx-plan-per { color: rgba(255,255,255,.55); }
.lx-plan-cta { margin: 24px 0; }
.lx-plan-cta .lx-btn { width: 100%; }
.lx-plan-feats { display: grid; gap: 13px; }
.lx-pf { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; color: var(--ink-2); }
.lx-plan.pop .lx-pf { color: rgba(255,255,255,.82); }
.lx-pf-ic { width: 20px; height: 20px; border-radius: 999px; background: var(--primary-tint); color: var(--primary); display: grid; place-items: center; flex-shrink: 0; margin-top: 1px; }
.lx-pf-ic svg { width: 12px; height: 12px; }
.lx-plan.pop .lx-pf-ic { background: color-mix(in srgb, var(--lime) 26%, transparent); color: var(--lime); }
.lx-pf.head { font-weight: 650; color: var(--ink); }
.lx-plan.pop .lx-pf.head { color: #fff; }

/* ---------- Testimonials ---------- */
.lx-tst-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.lx-tst { background: #fff; border: 1.5px solid var(--line); border-radius: var(--rc); padding: 28px; box-shadow: var(--sh-soft); display: flex; flex-direction: column; }
.lx-tst.dark { background: var(--primary); border-color: var(--primary); color: #fff; }
.lx-tst-stars { display: flex; gap: 2px; color: #f5b820; margin-bottom: 16px; }
.lx-tst.dark .lx-tst-stars { color: var(--lime); }
.lx-tst-stars svg { width: 17px; height: 17px; }
.lx-tst-quote { font-size: 16px; line-height: 1.55; font-weight: 500; flex: 1; letter-spacing: -.01em; }
.lx-tst-who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.lx-tst-av { width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center; color: #fff; font-weight: 650; font-size: 15px; flex-shrink: 0; }
.lx-tst-name { font-size: 14.5px; font-weight: 660; }
.lx-tst-role { font-size: 12.5px; color: var(--ink-3); }
.lx-tst.dark .lx-tst-role { color: rgba(255,255,255,.7); }

/* ---------- CTA band ---------- */
.lx-cta { position: relative; }
.lx-cta-card { background: var(--ink); border-radius: var(--rc-lg); padding: 64px 48px; text-align: center; position: relative; overflow: hidden; box-shadow: var(--sh-card); }
.lx-cta-card::after { content:""; position:absolute; inset:0; background: radial-gradient(600px 300px at 50% -30%, color-mix(in srgb, var(--primary) 50%, transparent), transparent 62%); }
.lx-cta-h { font-size: 46px; font-weight: 740; letter-spacing: -.04em; color: #fff; position: relative; text-wrap: balance; }
.lx-cta-sub { font-size: 18px; color: rgba(255,255,255,.66); margin-top: 16px; position: relative; }
.lx-cta-row { display: flex; gap: 13px; justify-content: center; margin-top: 30px; position: relative; }
.lx-cta .lx-star { color: var(--lime); }

/* ---------- Footer ---------- */
.lx-foot { background: var(--ink); color: #fff; padding: 64px 0 36px; margin-top: 0; }
.lx-foot-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.12); }
.lx-foot-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.lx-foot-logo .lx-logo-name { color: #fff; }
.lx-foot-tag { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.6; max-width: 280px; }
.lx-foot-col-t { font-size: 13px; font-weight: 680; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.lx-foot-links { display: flex; flex-direction: column; gap: 11px; }
.lx-foot-link { font-size: 14.5px; color: rgba(255,255,255,.78); text-decoration: none; }
.lx-foot-link:hover { color: #fff; }
.lx-news-t { font-size: 16px; font-weight: 650; }
.lx-news-d { font-size: 13.5px; color: rgba(255,255,255,.6); margin-top: 8px; line-height: 1.5; }
.lx-news-form { display: flex; gap: 8px; margin-top: 16px; }
.lx-news-input { flex: 1; background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.16); border-radius: 999px; padding: 11px 16px; color: #fff; font-family: inherit; font-size: 14px; }
.lx-news-input::placeholder { color: rgba(255,255,255,.45); }
.lx-news-input:focus { outline: none; border-color: var(--lime); }
.lx-foot-bottom { display: flex; align-items: center; gap: 16px; padding-top: 28px; flex-wrap: wrap; }
.lx-foot-copy { font-size: 13px; color: rgba(255,255,255,.5); }
.lx-foot-status { margin-inline-start: auto; display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.7); }
.lx-foot-built { font-size: 13px; color: rgba(255,255,255,.55); text-decoration: none; }
.lx-foot-built b { color: rgba(255,255,255,.85); font-weight: 650; }
.lx-foot-built:hover b { color: var(--lime); }
.lx-foot-status .d { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px color-mix(in srgb, var(--lime) 24%, transparent); }

/* ---------- Reveal ---------- */
[dir="rtl"] .lx-rtl-flip { transform: scaleX(-1); }
.lx-rev { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); }
.lx-rev.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .lx-h1 { font-size: 46px; }
  .lx-h2 { font-size: 34px; }
  .lx-nav-links { display: none; }
  .lx-shot-body { grid-template-columns: 1fr; }
  .lx-shot-side { display: none; }
  .lx-hero-phone { display: none; }
  .lx-feat-split, .lx-int-grid, .lx-val-grid, .lx-price-grid, .lx-tst-grid, .lx-statband, .lx-foot-top { grid-template-columns: 1fr; }
  .lx-plan.pop { transform: none; }
}
@media (max-width: 560px) {
  .lx-wrap { padding: 0 16px; }
  .lx-h1 { font-size: 36px; }
  .lx-sec { padding: 56px 0; }
  .lx-cta-card { padding: 40px 24px; }
  .lx-cta-h { font-size: 30px; }
  .lx-nav-inner { padding: 8px 8px 8px 14px; gap: 12px; }
  .lx-nav-right { gap: 6px; }
}
