/* ═══════════════════════════════════════════════════
   Landing Page — Premium SaaS Redesign
   Scope: .lp  (never bleeds into panel pages)
   ═══════════════════════════════════════════════════ */

/* ── tokens ── */
:root {
  --lp-red:      #ef233c;
  --lp-red-2:    #c81d32;
  --lp-purple:   #7c3aed;
  --lp-purple-2: #5b21b6;
  --lp-bg:       #070810;
  --lp-card-bg:  rgba(10, 11, 17, .92);
  --lp-border:   rgba(255,255,255,.08);
  --lp-text:     #f0f2f8;
  --lp-muted:    #8892a4;
  --lp-max:      1400px;
  --lp-gutter:   clamp(16px, 3vw, 40px);
}

/* ── global reset for landing ── */
.lp, .lp * { box-sizing: border-box; }

.lp {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  color: var(--lp-text);
  background: var(--lp-bg);
}

/* ── navbar upgrade ── */
body.body-public .public-navbar {
  min-height: 80px !important;
  padding: 0 !important;
  background: rgba(7, 8, 16, .88) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(239,35,60,.14) !important;
}

body.body-public .public-navbar .public-navbar-inner {
  max-width: var(--lp-max);
  margin-inline: auto;
  padding-inline: var(--lp-gutter) !important;
  min-height: 80px;
  display: flex;
  align-items: center;
}

body.body-public .public-navbar .public-lang-dropdown .public-navbar-dropdown-toggle {
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  color: var(--lp-text) !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
}

/* ── wrap ── */
.lp-wrap {
  width: 100%;
  max-width: var(--lp-max);
  margin-inline: auto;
  padding-inline: var(--lp-gutter);
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.lp-hero {
  position: relative;
  padding-top: clamp(80px, 10vh, 120px);
  padding-bottom: clamp(70px, 8vh, 100px);
  overflow: hidden;
  isolation: isolate;
}

/* orbs */
.lp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.lp-orb--1 {
  width: 600px; height: 600px;
  top: -120px; inset-inline-end: -100px;
  background: radial-gradient(circle, rgba(239,35,60,.22) 0%, transparent 65%);
  animation: lp-orb-drift 12s ease-in-out infinite alternate;
}
.lp-orb--2 {
  width: 500px; height: 500px;
  bottom: -60px; inset-inline-start: -80px;
  background: radial-gradient(circle, rgba(124,58,237,.18) 0%, transparent 65%);
  animation: lp-orb-drift 16s ease-in-out infinite alternate-reverse;
}
.lp-orb--3 {
  width: 400px; height: 400px;
  top: 30%; inset-inline-start: 35%;
  background: radial-gradient(circle, rgba(239,35,60,.08) 0%, transparent 70%);
  animation: lp-orb-drift 20s ease-in-out infinite alternate;
}
@keyframes lp-orb-drift {
  from { transform: translateY(0) scale(1); }
  to   { transform: translateY(30px) scale(1.08); }
}

/* noise overlay */
.lp-noise {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* grid */
.lp-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  min-height: calc(100vh - 80px);
  max-height: 820px;
}

/* ── SHOWCASE (left) ── */
.lp-showcase {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: start;
}

/* badge */
.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(239,35,60,.35);
  background: rgba(239,35,60,.1);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #ff8a96;
  margin-bottom: 22px;
  width: fit-content;
}
.lp-badge__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lp-red);
  box-shadow: 0 0 6px var(--lp-red);
  animation: lp-pulse 2s ease infinite;
}
@keyframes lp-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

/* headline */
.lp-headline {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
}
.lp-headline--accent {
  background: linear-gradient(135deg, var(--lp-red) 0%, var(--lp-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* description */
.lp-desc {
  margin: 0 0 28px;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.8;
  color: var(--lp-muted);
  max-width: 50ch;
}

/* stat cards */
.lp-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.lp-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--lp-border);
  background: rgba(255,255,255,.03);
  cursor: default;
  transition: border-color .2s, transform .2s, background .2s;
}
.lp-stat:hover {
  border-color: rgba(239,35,60,.28);
  background: rgba(239,35,60,.07);
  transform: translateY(-2px);
}
.lp-stat__icon {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(239,35,60,.14);
  border: 1px solid rgba(239,35,60,.22);
  color: #ff6b7a;
  font-size: 16px;
  flex-shrink: 0;
}
.lp-stat__body strong {
  display: block;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.lp-stat__body span {
  font-size: 11px;
  color: var(--lp-muted);
  font-weight: 700;
  line-height: 1.4;
}

/* chips */
.lp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}
.lp-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--lp-border);
  background: rgba(255,255,255,.04);
  font-size: 12px;
  font-weight: 700;
  color: var(--lp-text);
  transition: border-color .2s, background .2s;
}
.lp-chip:hover {
  border-color: rgba(239,35,60,.3);
  background: rgba(239,35,60,.08);
}
.lp-chip i { color: #ff6b7a; font-size: 13px; }

/* ── BUTTONS ── */
.lp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  height: 52px;
  border-radius: 14px;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 800;
  text-decoration: none !important;
  cursor: pointer;
  border: 0;
  outline: none;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease, background .2s;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.lp-btn--primary {
  background: linear-gradient(135deg, var(--lp-red) 0%, var(--lp-red-2) 60%, var(--lp-purple-2) 100%);
  color: #fff !important;
  box-shadow: 0 8px 28px rgba(239,35,60,.32), 0 2px 8px rgba(0,0,0,.3);
}
.lp-btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .2s;
  pointer-events: none;
}
.lp-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(239,35,60,.44), 0 4px 12px rgba(0,0,0,.3);
  filter: brightness(1.06);
}
.lp-btn--primary:hover::after { opacity: 1; }
.lp-btn--primary:active { transform: translateY(0); }

.lp-btn--ghost {
  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.14) !important;
  color: var(--lp-text) !important;
  box-shadow: none !important;
}
.lp-btn--ghost:hover {
  background: rgba(255,255,255,.09) !important;
  border-color: rgba(239,35,60,.35) !important;
  transform: translateY(-2px);
}

.lp-btn--full { width: 100%; }

.lp-btn--submit { height: 58px; font-size: 16px; letter-spacing: .02em; }
.lp-btn--wa { height: 54px; }
.lp-btn__arrow {
  margin-inline-start: 4px;
  font-size: 12px;
  transition: transform .2s;
}
.lp-btn--submit:hover .lp-btn__arrow { transform: translateX(-4px); }

/* ── LOGIN CARD ── */
.lp-card-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.lp-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: clamp(28px, 3.5vw, 44px);
  border-radius: 24px;
  border: 1px solid rgba(239,35,60,.18);
  background: var(--lp-card-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05) inset,
    0 0 60px rgba(239,35,60,.1),
    0 0 100px rgba(124,58,237,.08),
    0 32px 80px rgba(0,0,0,.6);
  overflow: hidden;
}

/* top gradient line */
.lp-card::before {
  content: "";
  position: absolute;
  top: 0; inset-inline-start: 20%; inset-inline-end: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239,35,60,.6), rgba(124,58,237,.5), transparent);
}

/* glow ring */
.lp-card__glow {
  position: absolute;
  top: -80px; inset-inline-end: -80px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239,35,60,.18) 0%, transparent 65%);
  pointer-events: none;
}

/* avatar */
.lp-card__avatar {
  width: 58px; height: 58px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(239,35,60,.2), rgba(124,58,237,.2));
  border: 1px solid rgba(239,35,60,.3);
  color: #ff6b7a;
  font-size: 22px;
  margin-bottom: 18px;
}

.lp-card__head h2 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
}
.lp-card__head p {
  margin: 8px 0 20px;
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.65;
}

/* alerts */
.lp-alert {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  line-height: 1.5;
}
.lp-alert--danger  { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.3); color: #fca5a5; }
.lp-alert--success { background: rgba(34,197,94,.1);  border: 1px solid rgba(34,197,94,.3);  color: #86efac; }
.lp-alert i { margin-top: 1px; flex-shrink: 0; }

/* form */
.lp-form { display: flex; flex-direction: column; gap: 18px; }

.lp-field { display: flex; flex-direction: column; gap: 7px; }

.lp-field label {
  font-size: 13px;
  font-weight: 700;
  color: #dde3ef;
}

.lp-field-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-field-top label { margin: 0; }

.lp-forgot {
  font-size: 12px;
  font-weight: 700;
  color: #ff7a88 !important;
  text-decoration: none !important;
  transition: color .15s;
}
.lp-forgot:hover { color: #fff !important; }

.lp-input-wrap { position: relative; }

.lp-input-icon {
  position: absolute;
  top: 50%; inset-inline-end: 16px;
  transform: translateY(-50%);
  color: var(--lp-muted);
  font-size: 14px;
  pointer-events: none;
  transition: color .2s;
  z-index: 1;
}

.lp-input {
  width: 100%;
  height: 56px;
  padding-inline: 16px 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.4);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.lp-input::placeholder { color: rgba(136,146,164,.7); font-weight: 500; }
.lp-input:hover {
  border-color: rgba(255,255,255,.18);
  background: rgba(0,0,0,.48);
}
.lp-input:focus {
  border-color: rgba(239,35,60,.55);
  box-shadow: 0 0 0 3px rgba(239,35,60,.15), 0 0 14px rgba(239,35,60,.1);
  background: rgba(0,0,0,.52);
}
.lp-input:focus ~ .lp-input-icon,
.lp-input-wrap:focus-within .lp-input-icon { color: #ff6b7a; }

/* custom checkbox */
.lp-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  margin-top: -4px;
}
.lp-check input { display: none; }
.lp-check__box {
  width: 18px; height: 18px; flex-shrink: 0;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s, background .2s;
}
.lp-check__box::after {
  content: "✓";
  font-size: 11px; font-weight: 900; color: #fff;
  opacity: 0; transition: opacity .15s;
}
.lp-check input:checked ~ .lp-check__box {
  background: var(--lp-red);
  border-color: var(--lp-red);
}
.lp-check input:checked ~ .lp-check__box::after { opacity: 1; }
.lp-check__label { font-size: 13px; color: var(--lp-muted); font-weight: 600; }

/* divider */
.lp-card__divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 14px;
  color: var(--lp-muted);
  font-size: 12px;
  font-weight: 700;
}
.lp-card__divider::before,
.lp-card__divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--lp-border);
}

/* foot */
.lp-card__foot {
  text-align: center;
  font-size: 13px;
  color: var(--lp-muted);
}
.lp-card__foot-link {
  font-weight: 800;
  color: #ff7a88 !important;
  text-decoration: none !important;
  transition: color .15s;
}
.lp-card__foot-link:hover { color: #fff !important; }

/* ══════════════════════════════
   SECTIONS
══════════════════════════════ */
.lp-section {
  padding: clamp(60px, 7vw, 100px) 0;
  border-top: 1px solid rgba(239,35,60,.09);
}
.lp-section--last { padding-bottom: clamp(70px, 8vw, 110px); }

.lp-section-head {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 52px);
}
.lp-section-head h2 {
  margin: 8px 0 10px;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.01em;
}
.lp-section-head p {
  margin: 0 auto;
  max-width: 50ch;
  font-size: 15px;
  line-height: 1.75;
  color: var(--lp-muted);
}

.lp-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ff7a88;
}

/* ── HOW IT WORKS ── */
.lp-section--steps { background: rgba(239,35,60,.02); }

.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.lp-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px 24px;
  border-radius: 18px;
  border: 1px solid var(--lp-border);
  background: rgba(255,255,255,.025);
  transition: border-color .25s, transform .25s, box-shadow .25s, background .25s;
  cursor: default;
}
.lp-step:hover {
  border-color: rgba(239,35,60,.28);
  background: rgba(239,35,60,.05);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}

.lp-step__num {
  position: absolute;
  top: 14px; inset-inline-end: 16px;
  font-size: 11px;
  font-weight: 800;
  color: rgba(239,35,60,.5);
  font-family: monospace;
  letter-spacing: .04em;
}

.lp-step__icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(239,35,60,.18), rgba(124,58,237,.12));
  border: 1px solid rgba(239,35,60,.2);
  font-size: 22px;
  color: #ff6b7a;
  margin-bottom: 16px;
  transition: background .25s, box-shadow .25s;
}
.lp-step:hover .lp-step__icon {
  background: linear-gradient(135deg, rgba(239,35,60,.3), rgba(124,58,237,.2));
  box-shadow: 0 8px 24px rgba(239,35,60,.25);
}
.lp-step strong { display: block; font-size: 15px; color: #fff; margin-bottom: 6px; line-height: 1.35; }
.lp-step span   { font-size: 13px; color: var(--lp-muted); line-height: 1.6; }

/* ── FEATURES ── */
.lp-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lp-feature {
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  border-radius: 18px;
  border: 1px solid var(--lp-border);
  background: rgba(255,255,255,.025);
  text-align: start;
  transition: border-color .25s, transform .25s, background .25s;
  cursor: default;
}
.lp-feature:hover {
  border-color: rgba(239,35,60,.28);
  background: rgba(239,35,60,.05);
  transform: translateY(-3px);
}

.lp-feature__icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(239,35,60,.14);
  border: 1px solid rgba(239,35,60,.22);
  font-size: 20px;
  color: #ff6b7a;
  margin-bottom: 16px;
}
.lp-feature strong { display: block; font-size: 16px; color: #fff; margin-bottom: 8px; }
.lp-feature span   { font-size: 14px; color: var(--lp-muted); line-height: 1.65; }

/* ── PLATFORMS ── */
.lp-platforms {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lp-platform {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 16px;
  border-radius: 18px;
  border: 1px solid var(--lp-border);
  background: rgba(255,255,255,.025);
  transition: border-color .25s, transform .25s, background .25s;
  cursor: default;
}
.lp-platform:hover {
  border-color: rgba(239,35,60,.28);
  background: rgba(239,35,60,.05);
  transform: translateY(-3px);
}
.lp-platform i { font-size: 28px; color: #ff6b7a; margin-bottom: 10px; }
.lp-platform strong { display: block; font-size: 14px; color: #fff; margin-bottom: 4px; }
.lp-platform span   { font-size: 12px; color: var(--lp-muted); line-height: 1.5; }

/* ── CTA BAR ── */
.lp-cta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(24px, 3vw, 40px);
  border-radius: 22px;
  border: 1px solid rgba(239,35,60,.2);
  background:
    linear-gradient(135deg, rgba(239,35,60,.09) 0%, rgba(124,58,237,.06) 50%, rgba(7,8,16,.92) 100%);
  box-shadow: 0 0 50px rgba(239,35,60,.07), 0 20px 60px rgba(0,0,0,.3);
}
.lp-cta-bar__text .lp-kicker { margin-bottom: 6px; }
.lp-cta-bar__text h2 { margin: 0 0 6px; font-size: clamp(20px, 2.5vw, 26px); color: #fff; }
.lp-cta-bar__text p  { margin: 0; font-size: 14px; color: var(--lp-muted); }

/* ══════════════════════════════
   ANIMATIONS
══════════════════════════════ */
.lp-fadein {
  opacity: 0;
  transform: translateY(20px);
  animation: lp-fadein-anim .6s ease forwards;
  animation-delay: var(--d, 0s);
}
@keyframes lp-fadein-anim {
  to { opacity: 1; transform: translateY(0); }
}

.lp-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--d, 0s);
}
.lp-reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════
   FOOTER tweak for public pages
══════════════════════════════ */
body.body-public .pro-footer-inner {
  max-width: var(--lp-max);
  margin-inline: auto;
  padding-inline: var(--lp-gutter);
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */

/* 1280 laptop */
@media (max-width: 1280px) {
  .lp-hero__grid { grid-template-columns: 54% 46%; }
  .lp-headline { font-size: clamp(34px, 4.5vw, 56px); }
}

/* 1024 tablet landscape */
@media (max-width: 1024px) {
  .lp-hero__grid {
    grid-template-columns: 1fr;
    min-height: unset;
    max-height: unset;
    gap: 40px;
    padding-top: 0;
  }
  .lp-hero { padding-top: clamp(60px, 8vh, 90px); }
  .lp-card-wrap { order: -1; }
  .lp-card { max-width: 560px; margin-inline: auto; }
  .lp-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-features { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-platforms { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* 768 tablet portrait */
@media (max-width: 768px) {
  .lp-hero__grid { gap: 32px; }
  .lp-cta-bar { flex-direction: column; align-items: stretch; text-align: center; }
  .lp-cta-bar .lp-btn { width: 100%; }
}

/* 640 mobile large */
@media (max-width: 640px) {
  .lp-stats    { grid-template-columns: 1fr; }
  .lp-steps    { grid-template-columns: 1fr; }
  .lp-features { grid-template-columns: 1fr; }
  .lp-platforms{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-actions  { flex-direction: column; }
  .lp-btn      { width: 100%; justify-content: center; }
  .lp-card     { border-radius: 18px; }
  .lp-headline { font-size: clamp(30px, 9vw, 42px); }
}

/* 480 mobile small */
@media (max-width: 480px) {
  .lp-platforms { grid-template-columns: 1fr; }
  .lp-card      { padding: 24px 18px; }
}

/* RTL logical fixes */
html[dir="rtl"] .lp-input  { text-align: right; }
html[dir="rtl"] .lp-input-icon { inset-inline-end: 16px; inset-inline-start: auto; }
html[dir="ltr"] .lp-headline { letter-spacing: -.025em; }
html[dir="ltr"] .lp-btn--submit .lp-btn__arrow { transform: rotate(180deg); }
html[dir="ltr"] .lp-btn--submit:hover .lp-btn__arrow { transform: rotate(180deg) translateX(-4px); }

/* prevent any horizontal scroll */
body.body-public { overflow-x: clip; }
