/* ============================================================
   BEEP — LANDING PAGE STYLES
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand:   #FF6B2C;
  --brand2:  #FF9500;
  --dark:    #08081A;
  --dark2:   #0D0D22;
  --dark3:   #12122E;
  --glass:   rgba(255,255,255,0.04);
  --glass2:  rgba(255,255,255,0.07);
  --border:  rgba(255,255,255,0.08);
  --text:    #E2E2F0;
  --muted:   rgba(255,255,255,0.40);
  --green:   #22c55e;
  --radius:  14px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--dark); color: var(--text); line-height: 1.6; overflow-x: hidden; }

.lp-container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

/* ─────────────────── NAVBAR ─────────────────────────────── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 1.5rem;
  transition: background .3s, box-shadow .3s, border-bottom .3s;
  border-bottom: 1px solid transparent;
}
.lp-nav.scrolled {
  background: rgba(8,8,26,.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,.3);
}
.lp-nav-inner {
  max-width: 1140px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  height: 68px;
}
.lp-brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; flex-shrink: 0;
}
.lp-brand-ic {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: #fff;
  box-shadow: 0 4px 14px rgba(255,107,44,.4);
}
.lp-brand-ic.sm { width: 30px; height: 30px; font-size: 14px; border-radius: 8px; }
.lp-brand span { font-size: 1.3rem; font-weight: 800; color: #fff; letter-spacing: -0.4px; }
.lp-brand-img {
  height: 42px; width: auto; object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.18));
}
@media (max-width: 480px) {
  .lp-brand-img { height: 36px; }
}

.lp-nav-links {
  display: flex; align-items: center; gap: 0.25rem; flex: 1;
}
.lp-nav-links a {
  color: var(--muted); text-decoration: none; font-size: .87rem; font-weight: 500;
  padding: .45rem .8rem; border-radius: 8px;
  transition: color .2s, background .2s;
}
.lp-nav-links a:hover { color: #fff; background: var(--glass2); }

.lp-nav-right { display: flex; align-items: center; gap: .65rem; margin-left: auto; }

.btn-dl-nav {
  display: flex; align-items: center;
  background: linear-gradient(135deg, #1a7a3c, #22a14e);
  color: #fff; text-decoration: none;
  padding: .45rem .95rem; border-radius: 9px;
  font-size: .82rem; font-weight: 700;
  box-shadow: 0 2px 10px rgba(26,122,60,.35);
  transition: transform .15s, box-shadow .15s;
}
.btn-dl-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(26,122,60,.5); color:#fff; }

.btn-login-nav {
  display: flex; align-items: center;
  color: var(--text); text-decoration: none;
  padding: .45rem .95rem; border-radius: 9px;
  font-size: .82rem; font-weight: 600;
  border: 1px solid var(--border);
  transition: background .2s, border-color .2s, color .2s;
}
.btn-login-nav:hover { background: var(--glass2); border-color: rgba(255,107,44,.4); color: #fff; }

/* Hamburger */
.lp-ham {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.lp-ham span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.lp-ham.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-ham.active span:nth-child(2) { opacity: 0; }
.lp-ham.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────── HERO ───────────────────────────────── */
.lp-hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 5.5rem 1.5rem 4rem;
  position: relative; overflow: hidden;
  background: var(--dark);
}
.hero-bg-glow {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: .13;
  animation: drift 12s ease-in-out infinite;
}
.g1 { width: 600px; height: 600px; background: var(--brand);  top: -200px; left: -150px; }
.g2 { width: 400px; height: 400px; background: #7C3AED; bottom: -100px; right: -100px; animation-delay: 4s; }
.g3 { width: 300px; height: 300px; background: var(--brand2); top: 40%; left: 40%; animation-delay: 7s; opacity: .08; }
@keyframes drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%      { transform: translate(20px,-30px) scale(1.05); }
  66%      { transform: translate(-15px,20px) scale(0.95); }
}
.hero-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 32px 32px; pointer-events: none;
}

.hero-inner {
  display: flex; align-items: center;
  gap: 3.5rem; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.hero-text { flex: 1; min-width: 300px; }
.hero-visual { flex: 0 0 380px; display: flex; justify-content: center; align-items: center; position: relative; }

.hero-badge {
  display: inline-flex; align-items: center;
  padding: .35rem .9rem; margin-bottom: 1.5rem;
  background: rgba(255,107,44,.1);
  border: 1px solid rgba(255,107,44,.3);
  border-radius: 999px;
  color: #FF8C55; font-size: .78rem; font-weight: 600;
  letter-spacing: .3px;
}

.hero-h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.08;
  letter-spacing: -1.5px; color: #fff;
  margin-bottom: 1.4rem;
}
.grad-text {
  background: linear-gradient(100deg, var(--brand) 0%, var(--brand2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.05rem; color: var(--muted);
  line-height: 1.8; max-width: 500px; margin-bottom: 2rem;
}
.hero-ctas { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.75rem; }

.btn-hero-primary {
  display: inline-flex; align-items: center;
  padding: .85rem 1.8rem;
  background: linear-gradient(135deg, #1a7a3c, #22a14e);
  color: #fff; text-decoration: none;
  font-size: .95rem; font-weight: 700;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(26,122,60,.4);
  transition: transform .15s, box-shadow .15s;
}
.btn-hero-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(26,122,60,.55); color:#fff; }

.btn-hero-ghost {
  display: inline-flex; align-items: center;
  padding: .85rem 1.4rem;
  color: var(--text); text-decoration: none;
  font-size: .9rem; font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: background .2s, border-color .2s, color .2s;
}
.btn-hero-ghost:hover { background: var(--glass2); border-color: rgba(255,107,44,.4); color: #fff; }

.hero-trust { display: flex; gap: 1.2rem; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: .4rem; font-size: .78rem; color: rgba(255,255,255,.5); }
.trust-item i { color: var(--green); }
.trust-item.t-light { color: rgba(255,255,255,.55); }

/* ── Phone Mockup ─────────────────────────────────────────── */
.phone-mockup {
  width: 240px; height: 490px;
  background: #0d0d22;
  border-radius: 36px;
  border: 2px solid rgba(255,255,255,.12);
  box-shadow:
    0 0 0 6px rgba(255,255,255,.04),
    0 30px 80px rgba(0,0,0,.5),
    inset 0 0 30px rgba(255,107,44,.05);
  position: relative; overflow: hidden;
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
.phone-screen { position: absolute; inset: 10px 6px; border-radius: 28px; overflow: hidden; background: #08081a; }
.phone-notch  { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 60px; height: 16px; background: #0d0d22; border-radius: 999px; z-index: 10; }
.phone-btn-r  { position: absolute; right: -4px; width: 4px; background: rgba(255,255,255,.1); border-radius: 2px 0 0 2px; }
.b1 { top: 90px; height: 40px; }
.b2 { top: 140px; height: 40px; }
.phone-btn-l  { position: absolute; left: -4px; top: 100px; width: 4px; height: 70px; background: rgba(255,255,255,.1); border-radius: 0 2px 2px 0; }

/* App screen content */
.app-screen { padding: 18px 10px 10px; }
.app-topbar  { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.app-topbar-logo { font-size: .7rem; font-weight: 800; color: var(--brand); display: flex; align-items: center; }
.app-topbar-logo-img { height: 18px; width: auto; object-fit: contain; }
.app-topbar-icons { font-size: .7rem; color: var(--muted); }
.app-search-bar {
  display: flex; align-items: center; gap: 6px;
  background: var(--glass2); border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 9px;
  font-size: .62rem; color: var(--muted); margin-bottom: 12px;
}
.app-section-title { font-size: .6rem; font-weight: 700; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.app-price-card {
  display: flex; align-items: center; gap: 7px;
  background: var(--glass); border: 1px solid var(--border);
  border-radius: 8px; padding: 7px 8px; margin-bottom: 5px;
}
.app-price-card.apc-alt { background: rgba(255,107,44,.06); border-color: rgba(255,107,44,.15); }
.apc-img { width: 26px; height: 26px; background: var(--glass2); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: .6rem; color: var(--brand); flex-shrink: 0; }
.apc-info { flex: 1; }
.apc-name  { font-size: .55rem; font-weight: 600; color: var(--text); line-height: 1.3; }
.apc-local { font-size: .48rem; color: var(--muted); }
.apc-price { font-size: .6rem; font-weight: 800; color: var(--green); flex-shrink: 0; }
.app-encarte-row { display: flex; gap: 5px; margin-bottom: 10px; }
.app-encarte-card {
  flex: 1; aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(255,107,44,.25), rgba(255,149,0,.15));
  border: 1px solid rgba(255,107,44,.25); border-radius: 8px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px;
  font-size: .45rem; color: var(--brand); font-weight: 700; text-align: center;
}
.app-encarte-card i { font-size: .7rem; }
.ac2 { background: linear-gradient(135deg, rgba(124,58,237,.25), rgba(167,139,250,.1)); border-color: rgba(124,58,237,.3); color: #A78BFA; }
.ac3 { background: linear-gradient(135deg, rgba(239,68,68,.2), rgba(248,113,113,.1)); border-color: rgba(239,68,68,.25); color: #FCA5A5; }
.app-scan-btn {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-radius: 8px; padding: 8px; text-align: center;
  font-size: .6rem; font-weight: 700; color: #fff;
}

/* Floating badges */
.fb {
  position: absolute;
  background: rgba(13,13,34,.85);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
  border-radius: 30px; padding: .45rem .9rem;
  font-size: .72rem; font-weight: 600; color: var(--text);
  white-space: nowrap; box-shadow: 0 4px 14px rgba(0,0,0,.3);
  animation: float 5s ease-in-out infinite;
}
.fb1 { top: 15%;  left: -60px; animation-delay: 0s;   border-color: rgba(255,107,44,.3); }
.fb2 { top: 50%;  right: -55px; animation-delay: 1.5s; }
.fb3 { bottom: 20%; left: -55px; animation-delay: 3s;  border-color: rgba(52,211,153,.25); }

/* ── Animação de entrada ──────────────────────────────────── */
.fu { opacity: 0; transform: translateY(24px); animation: fu .6s ease forwards; }
@keyframes fu { to { opacity: 1; transform: none; } }
.d1{animation-delay:.08s} .d2{animation-delay:.22s} .d3{animation-delay:.36s}
.d4{animation-delay:.48s} .d5{animation-delay:.60s} .d6{animation-delay:.72s}

.anim-in { opacity: 0; transform: translateY(30px); transition: opacity .5s ease, transform .5s ease; }
.anim-in.visible { opacity: 1; transform: none; }

/* ─────────────────── STATS ──────────────────────────────── */
.lp-stats {
  background: var(--dark2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
}
.stats-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-block { padding: 0 3rem; text-align: center; }
.stat-n { font-size: 2.2rem; font-weight: 900; color: #fff; line-height: 1; }
.stat-n span { color: var(--brand); }
.stat-l { font-size: .75rem; color: var(--muted); margin-top: 4px; }
.stat-div { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* ─────────────────── SECTIONS ───────────────────────────── */
.lp-section { padding: 6rem 1.5rem; }
.lp-section-alt { background: var(--dark2); }

.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  padding: .3rem .9rem; margin-bottom: 1rem;
  background: rgba(255,107,44,.08);
  border: 1px solid rgba(255,107,44,.22);
  border-radius: 999px;
  color: #FF8C55; font-size: .78rem; font-weight: 600;
  letter-spacing: .3px;
}
.section-h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 900; line-height: 1.18;
  letter-spacing: -1px; color: #fff;
  margin-bottom: .75rem;
}
.section-sub { font-size: .97rem; color: var(--muted); max-width: 520px; margin: 0 auto; }

/* ─────────────────── FEATURES ───────────────────────────── */
.feats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.25rem;
}
.feat-card {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--glass);
  transition: transform .2s, box-shadow .2s, border-color .2s, background .2s;
  cursor: default;
}
.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.25);
  background: var(--glass2);
}
.fc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1.1rem;
}
.feat-card h3 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.feat-card p  { font-size: .83rem; color: var(--muted); line-height: 1.65; }

/* Feature colors */
.fc-orange:hover { border-color: rgba(255,107,44,.3); }
.fc-orange .fc-icon { background: rgba(255,107,44,.12); color: #FF8C55; }
.fc-blue:hover   { border-color: rgba(59,130,246,.3); }
.fc-blue .fc-icon { background: rgba(59,130,246,.12); color: #60A5FA; }
.fc-green:hover  { border-color: rgba(34,197,94,.3); }
.fc-green .fc-icon { background: rgba(34,197,94,.12); color: #4ADE80; }
.fc-purple:hover { border-color: rgba(167,139,250,.3); }
.fc-purple .fc-icon { background: rgba(167,139,250,.12); color: #A78BFA; }
.fc-teal:hover   { border-color: rgba(45,212,191,.3); }
.fc-teal .fc-icon { background: rgba(45,212,191,.12); color: #5EEAD4; }
.fc-red:hover    { border-color: rgba(248,113,113,.3); }
.fc-red .fc-icon { background: rgba(248,113,113,.12); color: #FCA5A5; }
.fc-yellow:hover { border-color: rgba(251,191,36,.3); }
.fc-yellow .fc-icon { background: rgba(251,191,36,.12); color: #FCD34D; }
.fc-indigo:hover { border-color: rgba(129,140,248,.3); }
.fc-indigo .fc-icon { background: rgba(129,140,248,.12); color: #A5B4FC; }

/* ─────────────────── STEPS ──────────────────────────────── */
.steps-grid {
  display: flex; align-items: flex-start; gap: 1rem;
  max-width: 860px; margin: 0 auto; flex-wrap: wrap; justify-content: center;
}
.step-card {
  flex: 1; min-width: 200px; max-width: 260px;
  text-align: center; padding: 2rem 1.5rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .2s, border-color .2s, background .2s;
}
.step-card:hover { transform: translateY(-4px); background: var(--glass2); border-color: rgba(255,107,44,.3); }
.step-num {
  font-size: .72rem; font-weight: 800; color: var(--brand);
  background: rgba(255,107,44,.1); border-radius: 999px;
  width: 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: .85rem; letter-spacing: .3px;
}
.step-icon {
  font-size: 2.2rem; margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.step-card h3 { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: .5rem; }
.step-card p  { font-size: .82rem; color: var(--muted); line-height: 1.6; }
.step-arrow { font-size: 1.2rem; color: var(--border); align-self: center; padding-top: 2rem; flex-shrink: 0; }

/* ─────────────────── DOWNLOAD ───────────────────────────── */
.lp-download {
  background: var(--dark3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.dl-glow {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .1;
}
.dl-glow.g1 { width: 500px; height: 500px; background: var(--brand); top: -200px; left: -150px; }
.dl-glow.g2 { width: 350px; height: 350px; background: #7C3AED; bottom: -150px; right: -100px; }

.dl-inner {
  display: flex; align-items: center; gap: 4rem; flex-wrap: wrap;
  position: relative; z-index: 2;
}
.dl-text { flex: 1; min-width: 280px; }
.dl-visual { flex: 0 0 auto; display: flex; justify-content: center; }

.dl-btns { display: flex; flex-direction: column; gap: .75rem; margin: 2rem 0 1.5rem; max-width: 340px; }
.btn-dl-main {
  display: flex; align-items: center; gap: .9rem;
  padding: 1rem 1.4rem;
  background: linear-gradient(135deg, #1a7a3c, #22a14e);
  color: #fff; text-decoration: none;
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(26,122,60,.4);
  transition: transform .15s, box-shadow .15s;
  font-size: .92rem;
}
.btn-dl-main:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(26,122,60,.55); color:#fff; }
.btn-dl-main small { display: block; font-size: .65rem; opacity: .75; font-weight: 400; }
.btn-dl-main strong { display: block; font-weight: 800; font-size: 1rem; }
.dl-btn-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dl-btn-soon { opacity: .45; cursor: default; display: flex; align-items: center; gap: .9rem; padding: .8rem 1.2rem; border: 1px solid var(--border); border-radius: 14px; }
.dl-btn-soon small { font-size: .65rem; opacity: .8; font-weight: 400; }
.dl-btn-soon strong { font-size: .92rem; font-weight: 800; color: #fff; }
.soon-badge {
  margin-left: auto;
  background: rgba(255,255,255,.08); color: var(--muted);
  font-size: .62rem; font-weight: 600; padding: 2px 8px;
  border-radius: 999px; border: 1px solid var(--border);
}
.dl-trust { display: flex; flex-direction: column; gap: .4rem; }

/* QR card */
.qr-card {
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
  padding: 1.75rem;
  background: var(--glass2);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.qr-box {
  background: #0F0F1E; padding: 12px;
  border-radius: 12px; border: 1px solid var(--border);
}
.qr-label { font-size: .78rem; color: var(--muted); font-weight: 500; }
.text-orange { color: var(--brand); }
.qr-link {
  font-size: .72rem; color: var(--brand);
  text-decoration: none; transition: opacity .2s;
}
.qr-link:hover { opacity: .7; text-decoration: underline; }

/* ─────────────────── LOGIN SECTION ──────────────────────── */
.lp-login-section {
  padding: 5rem 1.5rem;
  background: var(--dark2);
  border-top: 1px solid var(--border);
}
.login-wrapper { display: flex; justify-content: center; }
.login-card {
  width: 100%; max-width: 420px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.25rem;
}
.login-card-head {
  display: flex; align-items: center; gap: 1rem;
  padding-bottom: 1.5rem; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.login-card-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff;
  box-shadow: 0 4px 14px rgba(255,107,44,.35);
}
.login-card-head h3 { font-size: 1.05rem; font-weight: 800; color: #fff; margin: 0 0 2px; }
.login-card-head p  { font-size: .78rem; color: var(--muted); margin: 0; }

.login-card-foot {
  text-align: center; margin-top: 1.25rem;
  font-size: .72rem; color: var(--muted);
}

/* Form elements (reused from login.css pattern) */
.fgroup { margin-bottom: 1.1rem; }
.flabel { display: block; font-size: .78rem; font-weight: 600; color: var(--text); margin-bottom: .45rem; letter-spacing: .2px; }
.iw { position: relative; }
.iw .ii { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: .85rem; pointer-events: none; transition: color .2s; }
.ifield {
  width: 100%; background: var(--glass2); border: 1px solid var(--border); border-radius: 12px;
  padding: .82rem 1rem .82rem 2.6rem; color: #fff; font-size: .88rem;
  font-family: 'Inter', sans-serif; transition: all .2s; outline: none;
}
.ifield::placeholder { color: var(--muted); }
.ifield:focus { border-color: var(--brand); background: rgba(255,107,44,.05); box-shadow: 0 0 0 3px rgba(255,107,44,.11); }
.iw:focus-within .ii { color: var(--brand); }
.eye-btn { position: absolute; right: 13px; top: 50%; transform: translateY(-50%); background: none; border: none; cursor: pointer; color: var(--muted); font-size: .85rem; transition: color .2s; }
.eye-btn:hover { color: var(--brand); }

.remember-row { margin-bottom: .6rem; }
.remember-label { display: flex; align-items: center; gap: .6rem; cursor: pointer; user-select: none; color: var(--muted); font-size: .82rem; font-weight: 500; transition: color .2s; }
.remember-label:hover { color: var(--text); }
.remember-label input[type="checkbox"] { display: none; }
.remember-box { width: 18px; height: 18px; flex-shrink: 0; border: 1.5px solid var(--border); border-radius: 5px; background: var(--glass2); display: flex; align-items: center; justify-content: center; transition: all .2s ease; }
.remember-check-ic { font-size: .6rem; color: #fff; opacity: 0; transition: opacity .2s; }
.remember-label input:checked ~ .remember-box { background: var(--brand); border-color: var(--brand); box-shadow: 0 0 0 3px rgba(255,107,44,.18); }
.remember-label input:checked ~ .remember-box .remember-check-ic { opacity: 1; }

.err-box { display: flex; align-items: center; gap: .6rem; background: rgba(239,68,68,.09); border: 1px solid rgba(239,68,68,.28); border-radius: 10px; padding: .7rem .9rem; color: #FCA5A5; font-size: .82rem; margin-bottom: 1.2rem; }

.btn-go {
  width: 100%; margin-top: .6rem; padding: .88rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand2) 100%);
  border: none; border-radius: 12px; color: #fff;
  font-size: .92rem; font-weight: 700; font-family: 'Inter', sans-serif;
  cursor: pointer; letter-spacing: .2px;
  position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-go::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent); transition: left .5s ease; }
.btn-go:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(255,107,44,.38); }
.btn-go:hover::after { left: 100%; }
.btn-go:active { transform: translateY(0); }
.btn-go .spin-txt { display: none; }
.btn-go.ld .norm-txt { display: none; }
.btn-go.ld .spin-txt { display: inline; }

/* ─────────────────── FOOTER ─────────────────────────────── */
.lp-footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 3.5rem 1.5rem 2rem;
}
.footer-inner {
  display: flex; gap: 3rem; flex-wrap: wrap;
  padding-bottom: 2.5rem; margin-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand { flex: 0 0 240px; }
.footer-brand .lp-brand-ic { margin-bottom: .5rem; }
.footer-brand-name { font-size: 1.2rem; font-weight: 800; color: #fff; display: block; margin-bottom: .5rem; }
.footer-tagline { font-size: .8rem; color: var(--muted); }
.footer-links { flex: 1; display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: .5rem; }
.footer-col h4 { font-size: .78rem; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .3rem; }
.footer-col a { font-size: .82rem; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; font-size: .75rem; color: var(--muted); }
.footer-bottom a { color: var(--brand); text-decoration: none; }

/* ─────────────────── RESPONSIVE ─────────────────────────── */
@media(max-width: 900px) {
  .hero-visual { display: none; }
  .dl-visual   { display: none; }
  .stat-block  { padding: 0 1.5rem; }
}
@media(max-width: 768px) {
  .lp-nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(8,8,26,.96); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 1rem; gap: .25rem;
  }
  .lp-nav-links.open { display: flex; }
  .lp-nav-links a { padding: .6rem 1rem; }
  .lp-nav { position: fixed; }
  .lp-ham { display: flex; }
  .btn-login-nav span { display: none; }
  .step-arrow { display: none; }
  .steps-grid { justify-content: stretch; }
  .step-card { max-width: 100%; }
  .stats-grid { flex-wrap: wrap; justify-content: center; gap: 1.5rem 0; }
  .stat-div { display: none; }
  .stat-block { flex: 0 0 48%; }
  .footer-brand { flex: 0 0 100%; }
}
@media(max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-ghost { justify-content: center; }
  .dl-inner { gap: 2rem; }
  .lp-section { padding: 4rem 1rem; }
  .stat-block { flex: 0 0 100%; }
}
