/* ============================================================
   SAHELLI — Landing page styles  (built on sahelli.css tokens)
   Layout inspiration: clean SaaS / SolvGo. White, deep green.
   Prefix: .lp
   ============================================================ */
.lp, .lp * { box-sizing: border-box; }
.lp {
  font-family: var(--sa-font);
  color: var(--sa-ink);
  background: #fff;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
.lp-wrap { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.lp-wrap-narrow { max-width: 920px; margin: 0 auto; padding: 0 28px; }

/* ---------- NAV ---------- */
.lp-nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--sa-line);
}
.lp-nav .inner { max-width: 1140px; margin: 0 auto; padding: 15px 28px; display: flex; align-items: center; gap: 28px; }
.lp-nav .links { display: flex; gap: 4px; margin-left: 18px; }
.lp-nav .links a { font-size: 14.5px; font-weight: 500; color: var(--sa-ink-2); text-decoration: none; padding: 8px 13px; border-radius: 9px; transition: background .14s, color .14s; }
.lp-nav .links a:hover { background: var(--sa-surf); color: var(--sa-ink); }
.lp-nav .right { margin-left: auto; display: flex; align-items: center; gap: 14px; }
.lp-nav .lang { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 600; color: var(--sa-muted); cursor: pointer; }
.lp-nav .lang svg { width: 16px; height: 16px; }
.lp-btn {
  font-family: inherit; font-size: 15px; font-weight: 600; cursor: pointer; border: none;
  height: 44px; padding: 0 20px; border-radius: var(--sa-r-pill); display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; transition: background .15s, transform .08s, box-shadow .15s; white-space: nowrap;
}
.lp-btn:active { transform: scale(.97); }
.lp-btn svg { width: 18px; height: 18px; }
.lp-btn-primary { background: var(--sa-green); color: #fff; }
.lp-btn-primary:hover { background: var(--sa-green-press); }
.lp-btn-ghost { background: transparent; color: var(--sa-ink); }
.lp-btn-ghost:hover { background: var(--sa-surf); }
.lp-btn-light { background: #fff; color: var(--sa-green); }
.lp-btn-lg { height: 54px; font-size: 16px; padding: 0 26px; }

/* ---------- HERO ---------- */
.lp-hero { position: relative; text-align: center; padding: 76px 0 0; }
.lp-hero::before {
  /* soft green glow behind the video */
  content: ""; position: absolute; left: 50%; top: 200px; transform: translateX(-50%);
  width: 900px; height: 560px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(14,92,63,.13), rgba(14,92,63,0) 70%);
  z-index: 0; pointer-events: none;
}
.lp-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600;
  color: var(--sa-green); background: var(--sa-green-tint); padding: 8px 16px; border-radius: var(--sa-r-pill);
  position: relative; z-index: 1;
}
.lp-badge svg { width: 16px; height: 16px; }
.lp-hero h1 {
  position: relative; z-index: 1;
  font-size: 62px; line-height: 1.04; font-weight: 700; letter-spacing: -2.4px;
  margin: 26px auto 0; max-width: 880px;
}
.lp-hero h1 em { font-style: normal; color: var(--sa-green); }
.lp-hero .sub {
  position: relative; z-index: 1;
  font-size: 20px; line-height: 1.55; color: var(--sa-ink-2); font-weight: 400;
  margin: 24px auto 0; max-width: 600px;
}
.lp-hero .cta { position: relative; z-index: 1; display: flex; gap: 14px; justify-content: center; align-items: center; margin-top: 34px; flex-wrap: wrap; }

/* download badge */
.lp-store {
  display: inline-flex; align-items: center; gap: 11px; height: 54px; padding: 0 20px;
  background: var(--sa-ink); color: #fff; border-radius: 13px; text-decoration: none; cursor: pointer;
  transition: transform .1s, opacity .15s;
}
.lp-store:hover { opacity: .9; }
.lp-store:active { transform: scale(.97); }
.lp-store svg { width: 26px; height: 26px; flex-shrink: 0; }
.lp-store .t { text-align: left; line-height: 1.1; }
.lp-store .t small { display: block; font-size: 11px; font-weight: 500; opacity: .8; white-space: nowrap; }
.lp-store .t b { display: block; font-size: 17px; font-weight: 700; letter-spacing: -.3px; white-space: nowrap; }

/* video frame */
.lp-video-wrap { position: relative; z-index: 1; margin: 56px auto 0; max-width: 940px; padding: 0 28px; }
.lp-video {
  position: relative; aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden;
  background: linear-gradient(160deg, #11231A 0%, #0E5C3F 130%);
  border: 1px solid rgba(16,40,28,.08);
  box-shadow: 0 40px 90px -34px rgba(14,60,40,.5), 0 0 0 1px rgba(16,40,28,.04);
}
.lp-video .grid-tex { position: absolute; inset: 0; opacity: .5;
  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: 44px 44px; }
.lp-video .center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; color: #fff; }
.lp-video .play {
  width: 84px; height: 84px; border-radius: 50%; background: rgba(255,255,255,.16);
  backdrop-filter: blur(6px); border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: transform .15s, background .15s;
}
.lp-video .play:hover { transform: scale(1.06); background: rgba(255,255,255,.24); }
.lp-video .play svg { width: 32px; height: 32px; fill: #fff; margin-left: 4px; }
.lp-video .vlabel { font-size: 14.5px; font-weight: 600; opacity: .9; letter-spacing: .2px; }
.lp-video .corner { position: absolute; top: 18px; left: 20px; display: flex; align-items: center; gap: 8px; color: #fff; opacity: .92; }
.lp-video .corner .dot { width: 9px; height: 9px; border-radius: 50%; background: #FF5F57; box-shadow: 16px 0 0 #FEBC2E, 32px 0 0 #28C840; }

/* ---------- TRUST STRIP ---------- */
.lp-trust { border-top: 1px solid var(--sa-line); border-bottom: 1px solid var(--sa-line); margin-top: 90px; }
.lp-trust .inner { max-width: 1140px; margin: 0 auto; padding: 30px 28px; display: flex; align-items: center; justify-content: space-around; gap: 24px; flex-wrap: wrap; }
.lp-trust .it { text-align: center; }
.lp-trust .it .v { font-size: 30px; font-weight: 700; letter-spacing: -1px; white-space: nowrap; }
.lp-trust .it .l { font-size: 13.5px; color: var(--sa-muted); font-weight: 500; margin-top: 2px; }
.lp-trust .sep { width: 1px; height: 40px; background: var(--sa-line); }

/* ---------- SECTION SHELL ---------- */
.lp-sec { padding: 96px 0; }
.lp-sec.tint { background: var(--sa-surf); }
.lp-eyebrow { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: var(--sa-green); text-align: center; }
.lp-sec h2 { font-size: 42px; line-height: 1.1; font-weight: 700; letter-spacing: -1.4px; text-align: center; margin: 14px auto 0; max-width: 720px; }
.lp-sec .lead { font-size: 18px; line-height: 1.55; color: var(--sa-ink-2); text-align: center; margin: 18px auto 0; max-width: 580px; }
.lp-sec-head { margin-bottom: 56px; }

/* ---------- CATEGORIES ---------- */
.lp-cats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.lp-cat {
  border: 1px solid var(--sa-line); border-radius: var(--sa-r-md); padding: 22px 16px; text-align: center;
  background: #fff; transition: border-color .15s, box-shadow .15s, transform .15s; cursor: pointer;
}
.lp-cat:hover { border-color: var(--sa-green); box-shadow: var(--sa-sh-2); transform: translateY(-2px); }
.lp-cat .ci-img { width: 76px; height: 76px; border-radius: 18px; margin: 0 auto 12px; display: block; object-fit: cover; background: #0F1115; }
.lp-cat .nm { font-size: 14.5px; font-weight: 600; }
.lp-cat .ct { font-size: 12.5px; color: var(--sa-muted); margin-top: 2px; }

/* ---------- HOW IT WORKS ---------- */
.lp-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lp-step { text-align: left; }
.lp-step .n { width: 46px; height: 46px; border-radius: var(--sa-r); background: var(--sa-green-tint); color: var(--sa-green); display: flex; align-items: center; justify-content: center; font-size: 19px; font-weight: 700; }
.lp-step h3 { font-size: 21px; font-weight: 700; letter-spacing: -.4px; margin: 20px 0 0; }
.lp-step p { font-size: 15.5px; line-height: 1.55; color: var(--sa-ink-2); margin: 10px 0 0; }
.lp-step .bar { height: 2px; background: var(--sa-line); margin-top: 22px; position: relative; }
.lp-step .bar::before { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 40%; background: var(--sa-green); }

/* ---------- SHOWCASE (alternating) ---------- */
.lp-show { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; margin-bottom: 110px; }
.lp-show:last-child { margin-bottom: 0; }
.lp-show.rev .lp-show-media { order: -1; }
.lp-show-text .tag { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--sa-green); background: var(--sa-green-tint); padding: 6px 13px; border-radius: var(--sa-r-pill); white-space: nowrap; }
.lp-show-text .tag svg { width: 15px; height: 15px; }
.lp-show-text h3 { font-size: 34px; line-height: 1.12; font-weight: 700; letter-spacing: -1px; margin: 18px 0 0; }
.lp-show-text p { font-size: 17px; line-height: 1.6; color: var(--sa-ink-2); margin: 16px 0 0; }
.lp-feats { margin: 26px 0 0; display: flex; flex-direction: column; gap: 18px; }
.lp-feat { display: flex; gap: 13px; align-items: flex-start; }
.lp-feat .ck { width: 26px; height: 26px; border-radius: 50%; background: var(--sa-green-tint); color: var(--sa-green); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.lp-feat .ck svg { width: 15px; height: 15px; }
.lp-feat .ft b { font-size: 15.5px; font-weight: 700; }
.lp-feat .ft span { display: block; font-size: 14.5px; color: var(--sa-muted); margin-top: 1px; line-height: 1.45; }
.lp-show-media { display: flex; justify-content: center; }

/* phone bezel for embedded mockups */
.lp-phone { position: relative; background: #161E1A; padding: 9px; border-radius: 44px; box-shadow: 0 40px 80px -30px rgba(16,40,28,.45), 0 0 0 1px rgba(0,0,0,.04); }
.lp-phone .lp-phone-screen { border-radius: 36px; overflow: hidden; position: relative; background: #fff; }
.lp-phone-pair { display: flex; gap: 22px; align-items: flex-end; }
.lp-phone-pair .lp-phone:last-child { margin-bottom: 30px; }

/* ---------- PROS BAND ---------- */
.lp-pros { background: var(--sa-green); color: #fff; border-radius: 28px; padding: 64px; display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; overflow: hidden; position: relative; }
.lp-pros .tag { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: #fff; background: rgba(255,255,255,.16); padding: 6px 13px; border-radius: var(--sa-r-pill); white-space: nowrap; }
.lp-pros .tag svg { width: 15px; height: 15px; }
.lp-pros h2 { font-size: 38px; line-height: 1.12; font-weight: 700; letter-spacing: -1.2px; text-align: left; margin: 16px 0 0; max-width: none; color: #fff; }
.lp-pros p { font-size: 17px; line-height: 1.55; opacity: .9; margin: 16px 0 0; }
.lp-pros .plist { margin: 26px 0 0; display: flex; flex-direction: column; gap: 15px; }
.lp-pros .pl { display: flex; gap: 13px; align-items: flex-start; }
.lp-pros .pl .ck { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lp-pros .pl .ck svg { width: 15px; height: 15px; }
.lp-pros .pl b { font-size: 16px; font-weight: 600; }
.lp-pros .pl span { display: block; font-size: 14px; opacity: .82; margin-top: 1px; }
.lp-pros .pcta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.lp-pros-media { display: flex; justify-content: center; }

/* ---------- TESTIMONIALS ---------- */
.lp-tests { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.lp-test { border: 1px solid var(--sa-line); border-radius: var(--sa-r-lg); padding: 28px; background: #fff; display: flex; flex-direction: column; }
.lp-test .q { color: var(--sa-green); }
.lp-test .q svg { width: 28px; height: 28px; }
.lp-test p { font-size: 16px; line-height: 1.55; color: var(--sa-ink); margin: 16px 0 0; flex: 1; }
.lp-test .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; }
.lp-test .who .nm { font-size: 14.5px; font-weight: 700; }
.lp-test .who .rl { font-size: 13px; color: var(--sa-muted); }

/* ---------- FINAL CTA ---------- */
.lp-final { text-align: center; }
.lp-final h2 { font-size: 46px; line-height: 1.08; font-weight: 700; letter-spacing: -1.6px; margin: 0 auto; max-width: 680px; }
.lp-final p { font-size: 18px; color: var(--sa-ink-2); margin: 18px auto 0; max-width: 520px; }
.lp-final .cta { display: flex; gap: 14px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

/* ---------- FOOTER ---------- */
.lp-foot { border-top: 1px solid var(--sa-line); padding: 64px 0 40px; }
.lp-foot .top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.lp-foot .brandcol p { font-size: 14.5px; line-height: 1.55; color: var(--sa-muted); margin: 16px 0 0; max-width: 260px; }
.lp-foot .col h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--sa-muted); margin: 0 0 16px; }
.lp-foot .col a { display: block; font-size: 14.5px; color: var(--sa-ink-2); text-decoration: none; margin-bottom: 11px; }
.lp-foot .col a:hover { color: var(--sa-green); }
.lp-foot .bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--sa-line); flex-wrap: wrap; gap: 14px; }
.lp-foot .bottom span { font-size: 13.5px; color: var(--sa-muted); }
.lp-foot .bottom .langs { display: flex; gap: 18px; }
.lp-foot .bottom .langs a { font-size: 13.5px; color: var(--sa-muted); text-decoration: none; }
.lp-foot .bottom .langs a.on { color: var(--sa-green); font-weight: 700; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .lp-hero h1 { font-size: 46px; letter-spacing: -1.6px; }
  .lp-hero .sub { font-size: 18px; }
  .lp-cats { grid-template-columns: repeat(3, 1fr); }
  .lp-steps { grid-template-columns: 1fr; gap: 28px; }
  .lp-show { grid-template-columns: 1fr; gap: 36px; margin-bottom: 72px; }
  .lp-show.rev .lp-show-media { order: 0; }
  .lp-show-media { order: -1; }
  .lp-pros { grid-template-columns: 1fr; padding: 44px; }
  .lp-pros h2 { font-size: 32px; }
  .lp-tests { grid-template-columns: 1fr; }
  .lp-sec h2 { font-size: 34px; }
  .lp-foot .top { grid-template-columns: 1fr 1fr; gap: 30px; }
  .lp-nav .links { display: none; }
}
@media (max-width: 560px) {
  .lp-hero { padding-top: 52px; }
  .lp-hero h1 { font-size: 36px; letter-spacing: -1.2px; }
  .lp-cats { grid-template-columns: repeat(2, 1fr); }
  .lp-trust .sep { display: none; }
  .lp-sec { padding: 64px 0; }
  .lp-sec h2 { font-size: 28px; }
  .lp-final h2 { font-size: 32px; }
  .lp-foot .top { grid-template-columns: 1fr; }
  .lp-nav .right .lp-btn span { display: none; }
}

/* ── RTL / Arabic (language switcher) ─────────────────────────── */
.lp[dir="rtl"] {
  font-family: 'IBM Plex Sans Arabic', 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
}
/* Phone mockups are French app previews — keep them LTR inside an RTL page */
.lp[dir="rtl"] .lp-phone,
.lp[dir="rtl"] .sa-screen { direction: ltr; }
/* Nav inline language buttons inherit nav colour */
.lp-nav .lang button { color: inherit; line-height: 1; }
.lp-nav .lang { display: inline-flex; align-items: center; gap: 2px; }

/* ---------- NAV language dropdown ---------- */
.lp-langdd { position: relative; }
.lp-langdd-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: inherit; font-size: 14px; font-weight: 600; color: var(--sa-ink-2);
  background: #fff; border: 1px solid var(--sa-line); border-radius: var(--sa-r-pill);
  padding: 7px 12px; cursor: pointer; line-height: 1;
  transition: background .14s, border-color .14s, box-shadow .14s;
}
.lp-langdd-btn:hover { background: var(--sa-surf); border-color: var(--sa-line-2); }
.lp-langdd.open .lp-langdd-btn { border-color: var(--sa-line-2); box-shadow: 0 0 0 3px var(--sa-green-tint); }
.lp-langdd-btn .code { letter-spacing: .03em; }
.lp-langdd-btn > svg:first-child { color: var(--sa-muted); }
.lp-langdd-btn > svg:last-child { color: var(--sa-muted); transition: transform .18s ease; }
.lp-langdd.open .lp-langdd-btn > svg:last-child { transform: rotate(180deg); }

.lp-langdd-menu {
  position: absolute; top: calc(100% + 8px); inset-inline-end: 0;
  min-width: 176px; background: #fff;
  border: 1px solid var(--sa-line); border-radius: var(--sa-r-md);
  box-shadow: var(--sa-sh-float); padding: 6px; z-index: 60;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.lp-langdd.open .lp-langdd-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lp-langdd-opt {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  width: 100%; font-family: inherit; font-size: 14.5px; font-weight: 500; color: var(--sa-ink-2);
  background: none; border: 0; border-radius: var(--sa-r-sm); padding: 9px 12px;
  cursor: pointer; text-align: start; transition: background .12s, color .12s;
}
.lp-langdd-opt:hover { background: var(--sa-surf); }
.lp-langdd-opt.on { color: var(--sa-green); font-weight: 700; }
.lp-langdd-opt.on svg { color: var(--sa-green); }

/* ---------- PARTNER MODAL ---------- */
:root { color-scheme: light; }
.lp-modal-overlay {
  position: fixed; inset: 0; z-index: 100; background: rgba(16, 21, 18, .45);
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.lp-modal {
  background: #fff; border-radius: var(--sa-r-xl); box-shadow: var(--sa-sh-float);
  max-width: 460px; width: 100%; max-height: 90vh; overflow-y: auto; padding: 28px;
}
.lp-modal-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 18px; }
.lp-modal-head h3 { margin: 0; font-size: 22px; letter-spacing: -0.4px; color: var(--sa-ink); }
.lp-modal-sub { margin: 6px 0 0; font-size: 14px; color: var(--sa-muted); line-height: 1.5; }
.lp-modal-x {
  margin-inline-start: auto; flex: none; width: 34px; height: 34px; border: none; border-radius: var(--sa-r);
  background: var(--sa-surf); color: var(--sa-ink-2); cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
}
.lp-modal-x:hover { background: var(--sa-green-tint); color: var(--sa-green); }
.lp-modal-x svg { width: 18px; height: 18px; }
.lp-field { display: block; margin-bottom: 14px; }
.lp-field .lb { display: block; font-size: 13px; font-weight: 600; color: var(--sa-ink-2); margin-bottom: 6px; }
.lp-field .lb .hint { font-style: normal; font-weight: 500; color: var(--sa-faint); margin-inline-start: 6px; }
.lp-input, .lp-select, .lp-textarea {
  width: 100%; box-sizing: border-box; font: inherit; font-size: 15px; color: var(--sa-ink);
  border: 1px solid var(--sa-line-2); border-radius: var(--sa-r-md); background: #fff; padding: 0 14px;
}
.lp-input, .lp-select { height: 46px; }
.lp-select {
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23717C76' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
  padding-right: 38px;
}
.lp[dir="rtl"] .lp-select { background-position: left 12px center; padding-right: 14px; padding-left: 38px; }
.lp-textarea { padding: 12px 14px; resize: vertical; }
.lp-input:focus, .lp-select:focus, .lp-textarea:focus {
  outline: none; border-color: var(--sa-green); box-shadow: 0 0 0 3px var(--sa-green-tint);
}
.lp-select:disabled { color: var(--sa-faint); background: var(--sa-surf); }
.lp-telrow { display: flex; gap: 8px; direction: ltr; }
.lp-telrow .cc {
  flex: none; display: inline-flex; align-items: center; padding: 0 12px; height: 46px;
  border: 1px solid var(--sa-line-2); border-radius: var(--sa-r-md); background: var(--sa-surf);
  font-size: 15px; font-weight: 600; color: var(--sa-ink-2);
}
.lp-field-err { display: block; margin-top: 5px; font-size: 12.5px; color: var(--sa-danger); }
.lp-form-banner {
  background: var(--sa-danger-tint); color: var(--sa-danger); border-radius: var(--sa-r-md);
  padding: 10px 14px; font-size: 13.5px; margin-bottom: 14px;
}
.lp-submit { width: 100%; justify-content: center; margin-top: 6px; }
.lp-submit:disabled { opacity: .65; cursor: default; }
.lp-modal-success { text-align: center; padding: 18px 6px 6px; }
.lp-modal-success .ok {
  width: 64px; height: 64px; border-radius: 50%; background: var(--sa-green-tint); color: var(--sa-green);
  display: inline-flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.lp-modal-success h4 { margin: 0 0 8px; font-size: 20px; color: var(--sa-ink); }
.lp-modal-success p { margin: 0 0 20px; font-size: 14.5px; color: var(--sa-muted); line-height: 1.6; }
.lp-hp { position: absolute; left: -9999px; width: 0; height: 0; opacity: 0; }
@media (max-width: 560px) {
  .lp-modal-overlay { align-items: flex-end; padding: 0; }
  .lp-modal { border-radius: var(--sa-r-xl) var(--sa-r-xl) 0 0; max-width: none; max-height: 92vh; }
}
