/* ============================================================
   MóvilPE — Modern Landing Page Styles
   ============================================================ */

:root {
  --lp-bg:          #06060F;
  --lp-bg-2:        #0C0C1A;
  --lp-bg-card:     #101020;
  --lp-accent:      #C8FF00;
  --lp-accent-soft: rgba(200,255,0,0.10);
  --lp-accent-glow: rgba(200,255,0,0.28);
  --lp-white:       #FFFFFF;
  --lp-t1:          rgba(255,255,255,0.93);
  --lp-t2:          rgba(255,255,255,0.58);
  --lp-t3:          rgba(255,255,255,0.28);
  --lp-border:      rgba(255,255,255,0.07);
  --lp-r:           16px;
  --lp-r-sm:        10px;
  --lp-ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --lp-max:         1200px;
}

/* ── Reset ── */
.lp-page, .lp-page * { box-sizing: border-box; margin: 0; padding: 0; }
.lp-page {
  background: var(--lp-bg);
  color: var(--lp-t1);
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout ── */
.lp-container { max-width: var(--lp-max); margin: 0 auto; padding: 0 28px; }
.lp-section   { padding: 96px 0; }

/* ── Labels / Pills ── */
.lp-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase;
  color: var(--lp-accent);
  background: var(--lp-accent-soft);
  border: 1px solid rgba(200,255,0,.18);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}

/* ── Typography ── */
.lp-h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 800; line-height: 1.08; letter-spacing: -.03em;
  color: var(--lp-white); margin-bottom: 20px;
}
.lp-h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 700; line-height: 1.15; letter-spacing: -.025em;
  color: var(--lp-white); margin-bottom: 14px;
}
.lp-lead {
  font-size: 1.05rem; line-height: 1.72; color: var(--lp-t2);
  max-width: 520px; margin-bottom: 36px;
}
.lp-accent-text { color: var(--lp-accent); }

/* ── Section header centered ── */
.lp-section-header { text-align: center; margin-bottom: 52px; }
.lp-section-header .lp-lead { margin: 0 auto 0; }

/* ── Buttons ── */
.lp-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--lp-r);
  font-family: 'Poppins', sans-serif; font-size: .93rem; font-weight: 600;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .25s var(--lp-ease); white-space: nowrap;
}
.lp-btn-primary { background: var(--lp-accent); color: #000; }
.lp-btn-primary:hover {
  background: #d8ff20; color: #000; text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px var(--lp-accent-glow);
}
.lp-btn-outline {
  background: transparent; color: var(--lp-white);
  border: 1px solid var(--lp-border);
}
.lp-btn-outline:hover {
  border-color: var(--lp-accent); color: var(--lp-accent);
  background: var(--lp-accent-soft); transform: translateY(-2px);
  text-decoration: none;
}

/* ── Store Buttons ── */
.lp-store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px;
  background: rgba(255,255,255,.05); border: 1px solid var(--lp-border);
  border-radius: var(--lp-r-sm); text-decoration: none;
  transition: all .25s var(--lp-ease); backdrop-filter: blur(8px);
}
.lp-store-btn:hover {
  background: rgba(255,255,255,.1); border-color: var(--lp-accent);
  transform: translateY(-2px); text-decoration: none;
}
.lp-store-btn img { height: 26px; width: auto; }
.lp-store-btn-text { display: flex; flex-direction: column; }
.lp-store-btn-text small { font-size: 10px; color: var(--lp-t2); font-weight: 400; }
.lp-store-btn-text span { font-size: 13px; color: var(--lp-white); font-weight: 600; line-height: 1.3; }

/* ================================================================
   HERO
   ================================================================ */
.lp-hero {
  min-height: 100vh;
  background: var(--lp-bg);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}
/* Grid pattern */
.lp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,255,0,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,255,0,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
/* Glow orb top-right */
.lp-hero::after {
  content: '';
  position: absolute; top: -220px; right: -80px;
  width: 680px; height: 680px;
  background: radial-gradient(circle, rgba(200,255,0,.07) 0%, transparent 68%);
  pointer-events: none;
}
/* Glow orb bottom-left */
.lp-hero-glow2 {
  position: absolute; bottom: -160px; left: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(100,100,255,.05) 0%, transparent 68%);
  pointer-events: none;
}

.lp-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
  padding: 130px 0 90px;
  width: 100%; position: relative; z-index: 2;
}

.lp-hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }

.lp-hero-trust {
  display: flex; align-items: center; gap: 12px;
  color: var(--lp-t2); font-size: .83rem;
}
.lp-hero-trust-avatars { display: flex; }
.lp-hero-trust-av {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid var(--lp-bg);
  background: linear-gradient(135deg, var(--lp-accent) 0%, #77bb00 100%);
  margin-left: -7px; font-size: 11px;
  display: flex; align-items: center; justify-content: center;
  color: #000; font-weight: 700;
}
.lp-hero-trust-av:first-child { margin-left: 0; }

/* Phone visual */
.lp-hero-visual { position: relative; display: flex; justify-content: center; }
.lp-hero-phone  { position: relative; width: 270px; }
/* .lp-hero-phone-img se eliminó: el hero pasó a usar .lp-phone-frame, que
   ya trae su propia sombra y animación en la sección de correcciones. */

/* Floating badges */
.lp-badge {
  position: absolute;
  background: rgba(15,15,28,.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--lp-r-sm);
  padding: 10px 14px;
  white-space: nowrap;
}
.lp-badge-rating {
  top: 18%; left: -90px;
  display: flex; align-items: center; gap: 10px;
  animation: lp-float 4s ease-in-out infinite .8s;
}
.lp-badge-rating .lp-stars { color: var(--lp-accent); font-size: 11px; letter-spacing: 1px; }
.lp-badge-rating .lp-rv { font-size: 20px; font-weight: 800; color: var(--lp-white); }
.lp-badge-rating .lp-rl { font-size: 10px; color: var(--lp-t2); }
.lp-badge-live {
  bottom: 22%; right: -70px;
  display: flex; align-items: center; gap: 8px;
  animation: lp-float 4s ease-in-out infinite 2s;
}
.lp-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #00E676; flex-shrink: 0;
  animation: lp-pulse-dot 1.5s infinite;
}
.lp-live-txt { font-size: 11px; color: var(--lp-white); font-weight: 500; }

/* Scroll hint */
.lp-scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  color: var(--lp-t3); font-size: 10px; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; z-index: 3;
}
.lp-scroll-mouse {
  width: 20px; height: 32px;
  border: 1.5px solid var(--lp-t3); border-radius: 10px; position: relative;
}
.lp-scroll-mouse::before {
  content: ''; position: absolute;
  top: 5px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px;
  background: var(--lp-t3); border-radius: 2px;
  animation: lp-scroll-dot 2s infinite;
}

/* ================================================================
   STATS
   ================================================================ */
.lp-stats {
  background: var(--lp-bg-2);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
  padding: 52px 0;
}
.lp-stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2px;
}
.lp-stats-item {
  text-align: center; padding: 16px 40px; position: relative;
}
.lp-stats-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0;
  top: 20%; height: 60%; width: 1px; background: var(--lp-border);
}
.lp-stat-num {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800; color: var(--lp-accent);
  letter-spacing: -.03em; line-height: 1; margin-bottom: 6px;
}
.lp-stat-lbl { font-size: .88rem; color: var(--lp-t2); font-weight: 500; }

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.lp-how { padding: 96px 0; background: var(--lp-bg); }

.lp-tabs {
  display: inline-flex;
  background: var(--lp-bg-card); border: 1px solid var(--lp-border);
  border-radius: 100px; padding: 4px; margin-top: 28px;
}
.lp-tab {
  padding: 10px 30px; border-radius: 100px;
  font-size: .88rem; font-weight: 600; color: var(--lp-t2);
  cursor: pointer; transition: all .22s var(--lp-ease);
  border: none; background: none; font-family: 'Poppins', sans-serif;
}
.lp-tab.active { background: var(--lp-accent); color: #000; }
.lp-tab:hover:not(.active) { color: var(--lp-white); }

.lp-steps {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 36px;
  position: relative; margin-top: 8px;
}
.lp-steps::before {
  content: ''; position: absolute;
  top: 28px;
  left: calc(16.666% + 24px); right: calc(16.666% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--lp-accent) 0%, rgba(200,255,0,.2) 50%, var(--lp-accent) 100%);
  opacity: .25;
}
.lp-step { display: flex; flex-direction: column; gap: 14px; }
.lp-step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--lp-accent-soft);
  border: 2px solid rgba(200,255,0,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: var(--lp-accent); flex-shrink: 0;
}
.lp-step-title { font-size: 1rem; font-weight: 700; color: var(--lp-white); margin-bottom: 4px; }
.lp-step-desc { font-size: .87rem; color: var(--lp-t2); line-height: 1.68; }

/* ================================================================
   FEATURES
   ================================================================ */
.lp-features { padding: 96px 0; background: var(--lp-bg-2); }

.lp-features-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.lp-feature-card {
  background: var(--lp-bg-card); border: 1px solid var(--lp-border);
  border-radius: var(--lp-r); padding: 30px;
  transition: all .3s var(--lp-ease); position: relative; overflow: hidden;
}
.lp-feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--lp-accent), transparent);
  opacity: 0; transition: opacity .3s;
}
.lp-feature-card:hover {
  border-color: rgba(200,255,0,.18);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0,0,0,.45);
}
.lp-feature-card:hover::before { opacity: 1; }
.lp-feature-icon {
  width: 50px; height: 50px; border-radius: var(--lp-r-sm);
  background: var(--lp-accent-soft); display: flex;
  align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 18px;
}
.lp-feature-title { font-size: .98rem; font-weight: 700; color: var(--lp-white); margin-bottom: 8px; }
.lp-feature-desc  { font-size: .85rem; color: var(--lp-t2); line-height: 1.68; }

/* ================================================================
   DOWNLOAD CTA
   ================================================================ */
.lp-download { padding: 96px 0; background: var(--lp-bg); position: relative; overflow: hidden; }
.lp-download::before {
  content: ''; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 900px; height: 420px;
  background: radial-gradient(ellipse, rgba(200,255,0,.06) 0%, transparent 68%);
  pointer-events: none;
}
.lp-download-box {
  background: var(--lp-bg-card); border: 1px solid rgba(200,255,0,.14);
  border-radius: 24px; padding: 60px;
  display: grid; grid-template-columns: 1fr auto;
  gap: 60px; align-items: center;
  position: relative; overflow: hidden;
}
.lp-download-box::after {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(200,255,0,.07) 0%, transparent 68%);
  pointer-events: none;
}
.lp-download-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px;
}
.lp-download-sub { font-size: .95rem; color: var(--lp-t2); margin-bottom: 28px; }
.lp-download-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.lp-download-img { width: 160px; flex-shrink: 0; position: relative; z-index: 1; }
.lp-download-img img {
  width: 100%; height: auto;
  filter: drop-shadow(0 16px 40px rgba(200,255,0,.12));
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.lp-testi { padding: 96px 0; background: var(--lp-bg-2); }
.lp-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.lp-testi-card {
  background: var(--lp-bg-card); border: 1px solid var(--lp-border);
  border-radius: var(--lp-r); padding: 28px;
  transition: all .3s var(--lp-ease);
}
.lp-testi-card:hover { border-color: rgba(200,255,0,.18); transform: translateY(-4px); }
.lp-testi-stars { color: var(--lp-accent); font-size: 13px; letter-spacing: 2px; margin-bottom: 14px; }
.lp-testi-text { font-size: .88rem; color: var(--lp-t2); line-height: 1.72; margin-bottom: 20px; font-style: italic; }
.lp-testi-author { display: flex; align-items: center; gap: 12px; }
.lp-testi-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--lp-accent-soft); border: 2px solid rgba(200,255,0,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 800; color: var(--lp-accent); flex-shrink: 0;
}
.lp-testi-name { font-size: .9rem; font-weight: 600; color: var(--lp-white); }
.lp-testi-city { font-size: .76rem; color: var(--lp-t3); }

/* ================================================================
   DRIVER CTA
   ================================================================ */
.lp-drivers { padding: 96px 0; background: var(--lp-bg); }
.lp-drivers-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.lp-benefits { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 36px; }
.lp-benefit { display: flex; align-items: flex-start; gap: 14px; }
.lp-benefit-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  background: var(--lp-accent-soft); border-radius: var(--lp-r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; margin-top: 1px;
}
.lp-benefit-title { font-size: .93rem; font-weight: 700; color: var(--lp-white); }
.lp-benefit-desc  { font-size: .82rem; color: var(--lp-t2); line-height: 1.55; }
.lp-drivers-visual { display: flex; justify-content: center; align-items: center; }
/* .lp-drivers-img se eliminó: la imagen suelta de CONDUCTORES la sustituyó
   el par de teléfonos escalonados (.lp-drivers-phones, más abajo). */

/* ================================================================
   FOOTER
   ================================================================ */
.lp-footer {
  background: var(--lp-bg-2);
  border-top: 1px solid var(--lp-border);
  padding: 64px 0 32px;
}
.lp-footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 52px;
}
.lp-footer-logo { height: 34px; margin-bottom: 14px; display: block; }
.lp-footer-tagline { font-size: .86rem; color: var(--lp-t2); line-height: 1.68; max-width: 270px; margin-bottom: 22px; }
.lp-footer-social { display: flex; gap: 10px; }
.lp-social-btn {
  width: 36px; height: 36px; border-radius: var(--lp-r-sm);
  background: var(--lp-bg-card); border: 1px solid var(--lp-border);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 13px; color: var(--lp-t2);
  transition: all .2s;
}
.lp-social-btn:hover {
  background: var(--lp-accent-soft); border-color: var(--lp-accent); color: var(--lp-accent);
}
.lp-footer-col-title { font-size: .88rem; font-weight: 700; color: var(--lp-white); margin-bottom: 18px; }
.lp-footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.lp-footer-links a { font-size: .85rem; color: var(--lp-t2); text-decoration: none; transition: color .2s; }
.lp-footer-links a:hover { color: var(--lp-accent); }
.lp-footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 26px; border-top: 1px solid var(--lp-border);
  font-size: .82rem; color: var(--lp-t3);
  flex-wrap: wrap; gap: 10px;
}
.lp-footer-legal { display: flex; gap: 18px; }
.lp-footer-legal a { color: var(--lp-t3); text-decoration: none; }
.lp-footer-legal a:hover { color: var(--lp-accent); }

/* ================================================================
   KEYFRAMES
   ================================================================ */
@keyframes lp-float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-13px); }
}
@keyframes lp-pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: .5; transform: scale(1.35); }
}
@keyframes lp-scroll-dot {
  0%   { transform: translateX(-50%) translateY(0); opacity: 1; }
  100% { transform: translateX(-50%) translateY(10px); opacity: 0; }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1023px) {
  .lp-features-grid      { grid-template-columns: repeat(2,1fr); }
  .lp-footer-top         { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .lp-hero-inner         { grid-template-columns: 1fr; text-align: center; padding: 110px 0 70px; }
  .lp-lead               { margin-left: auto; margin-right: auto; }
  .lp-hero-buttons       { justify-content: center; }
  .lp-hero-trust         { justify-content: center; }
  .lp-hero-visual        { order: -1; }
  .lp-hero-phone         { width: 200px; }
  .lp-badge-rating       { left: -16px; }
  .lp-badge-live         { right: -16px; }

  .lp-stats-grid         { grid-template-columns: 1fr; }
  .lp-stats-item::after  { display: none; }

  .lp-steps              { grid-template-columns: 1fr; }
  .lp-steps::before      { display: none; }

  .lp-features-grid      { grid-template-columns: 1fr; }

  .lp-download-box       { grid-template-columns: 1fr; text-align: center; padding: 40px 28px; }
  .lp-download-img       { display: none; }
  .lp-download-buttons   { justify-content: center; }

  .lp-testi-grid         { grid-template-columns: 1fr; }

  .lp-drivers-inner      { grid-template-columns: 1fr; }
  .lp-drivers-visual     { order: -1; }

  .lp-footer-top         { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 479px) {
  .lp-section,
  .lp-how, .lp-features, .lp-download,
  .lp-testi, .lp-drivers            { padding: 64px 0; }
  .lp-hero-buttons                  { flex-direction: column; align-items: center; }
  .lp-tabs                          { flex-direction: column; border-radius: var(--lp-r); }
  .lp-tab                           { border-radius: var(--lp-r-sm); text-align: center; }
}

/* ================================================================
   NAVBAR  (nuevo — antes se inyectaba desde Firestore)
   ================================================================ */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 16px 0;
  transition: background .3s var(--lp-ease), border-color .3s var(--lp-ease), padding .3s var(--lp-ease);
  border-bottom: 1px solid transparent;
}
.lp-nav.is-stuck {
  background: rgba(6,6,15,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--lp-border);
  padding: 10px 0;
}
.lp-nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.lp-nav-logo { display: flex; align-items: center; gap: 9px; text-decoration: none; flex-shrink: 0; }
.lp-nav-logo img { height: 30px; width: auto; }
.lp-nav-logo span { font-size: 1.05rem; font-weight: 800; color: var(--lp-white); letter-spacing: -.02em; }
.lp-nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.lp-nav-links a {
  font-size: .87rem; font-weight: 500; color: var(--lp-t2);
  text-decoration: none; transition: color .2s var(--lp-ease);
}
.lp-nav-links a:hover { color: var(--lp-accent); text-decoration: none; }
.lp-nav-cta { flex-shrink: 0; }
.lp-nav-cta .lp-btn { padding: 10px 20px; font-size: .85rem; }

.lp-nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px;
}
.lp-nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--lp-white);
  border-radius: 2px; transition: transform .28s var(--lp-ease), opacity .28s var(--lp-ease);
}
.lp-nav.is-open .lp-nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.lp-nav.is-open .lp-nav-toggle span:nth-child(2) { opacity: 0; }
.lp-nav.is-open .lp-nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================================================================
   DIRECTORIO MóvilPE  (sección nueva)
   ================================================================ */
.lp-dir { padding: 96px 0; background: var(--lp-bg-2); position: relative; overflow: hidden; }
.lp-dir::before {
  content: ""; position: absolute; top: -180px; right: -140px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, var(--lp-accent-glow) 0%, transparent 68%);
  opacity: .16; pointer-events: none;
}
.lp-dir-inner {
  display: grid; grid-template-columns: 1fr 300px; gap: 64px;
  align-items: center; position: relative; z-index: 1;
}

/* Chips de categorías */
.lp-dir-cats { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 34px; }
.lp-dir-cat {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 100px;
  background: var(--lp-bg-card); border: 1px solid var(--lp-border);
  font-size: .84rem; font-weight: 500; color: var(--lp-t1);
  transition: all .25s var(--lp-ease);
}
.lp-dir-cat:hover { border-color: rgba(200,255,0,.3); transform: translateY(-2px); }
.lp-dir-cat i { font-style: normal; font-size: 1rem; line-height: 1; }

/* Beneficios del directorio */
.lp-dir-points { display: flex; flex-direction: column; gap: 15px; margin-bottom: 34px; }
.lp-dir-point { display: flex; align-items: flex-start; gap: 13px; }
.lp-dir-point-ic {
  width: 34px; height: 34px; flex-shrink: 0; border-radius: 9px;
  background: var(--lp-accent-soft); border: 1px solid rgba(200,255,0,.18);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.lp-dir-point-t { font-size: .92rem; font-weight: 700; color: var(--lp-white); margin-bottom: 3px; }
.lp-dir-point-d { font-size: .83rem; color: var(--lp-t2); line-height: 1.6; }

/* Marco de teléfono para screenshots */
.lp-dir-visual { display: flex; justify-content: center; position: relative; z-index: 1; }
.lp-phone-frame {
  width: 268px; border-radius: 34px; padding: 10px;
  background: linear-gradient(160deg, #1b1b2e 0%, #0b0b16 100%);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 26px 70px rgba(0,0,0,.6), 0 0 0 1px rgba(255,255,255,.03) inset;
  position: relative;
}
.lp-phone-frame::before {
  content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 5px; border-radius: 100px;
  background: rgba(255,255,255,.14); z-index: 2;
}
.lp-phone-screen {
  border-radius: 26px; overflow: hidden; background: var(--lp-bg-card);
  aspect-ratio: 9 / 19; display: block; width: 100%;
}
.lp-phone-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Placeholder visible mientras no haya screenshot real */
.lp-phone-empty {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px; text-align: center;
  padding: 24px; color: var(--lp-t3); font-size: .78rem; line-height: 1.55;
  border: 1px dashed rgba(255,255,255,.14); border-radius: 26px;
}
.lp-phone-empty strong { color: var(--lp-t2); font-size: .84rem; font-weight: 600; }

/* ================================================================
   ¿TIENES UN NEGOCIO?  (sección nueva — B2B)
   ================================================================ */
.lp-biz { padding: 96px 0; background: var(--lp-bg); }
.lp-biz-plans {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  max-width: 860px; margin: 0 auto 38px;
}
.lp-biz-plan {
  background: var(--lp-bg-card); border: 1px solid var(--lp-border);
  border-radius: var(--lp-r); padding: 30px 28px; position: relative;
  transition: all .3s var(--lp-ease);
}
.lp-biz-plan:hover { transform: translateY(-4px); }
.lp-biz-plan--premium { border-color: rgba(200,255,0,.34); }
.lp-biz-plan--premium::after {
  content: "RECOMENDADO"; position: absolute; top: -10px; right: 22px;
  background: var(--lp-accent); color: #000;
  font-size: 9.5px; font-weight: 800; letter-spacing: .09em;
  padding: 4px 11px; border-radius: 100px;
}
.lp-biz-plan-name { font-size: 1.02rem; font-weight: 700; color: var(--lp-white); margin-bottom: 6px; }
.lp-biz-plan-sub  { font-size: .81rem; color: var(--lp-t3); margin-bottom: 22px; }
.lp-biz-plan--premium .lp-biz-plan-name { color: var(--lp-accent); }
.lp-biz-feats { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.lp-biz-feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .85rem; color: var(--lp-t2); line-height: 1.55;
}
.lp-biz-feats li::before {
  content: "✓"; flex-shrink: 0; color: var(--lp-accent);
  font-weight: 700; font-size: .82rem; line-height: 1.5;
}
.lp-biz-feats li.is-off { color: var(--lp-t3); }
.lp-biz-feats li.is-off::before { content: "—"; color: var(--lp-t3); }
.lp-biz-cta { text-align: center; }
.lp-biz-note { font-size: .8rem; color: var(--lp-t3); margin-top: 14px; }

/* ================================================================
   RESPONSIVE — secciones nuevas
   ================================================================ */
@media (max-width: 1023px) {
  .lp-nav-links { display: none; }
}
@media (max-width: 900px) {
  .lp-dir-inner  { grid-template-columns: 1fr; gap: 46px; }
  .lp-dir-visual { order: -1; }
}
@media (max-width: 767px) {
  .lp-nav-toggle { display: flex; }
  .lp-nav-cta    { display: none; }
  .lp-nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(6,6,15,.97); backdrop-filter: blur(14px);
    border-top: 1px solid var(--lp-border); border-bottom: 1px solid var(--lp-border);
    padding: 8px 0;
  }
  .lp-nav.is-open .lp-nav-links { display: flex; }
  .lp-nav.is-open { background: rgba(6,6,15,.97); backdrop-filter: blur(14px); }
  .lp-nav-links a { display: block; padding: 13px 28px; font-size: .92rem; }

  .lp-biz-plans   { grid-template-columns: 1fr; }
  .lp-phone-frame { width: 232px; }
}
@media (max-width: 479px) {
  .lp-dir, .lp-biz { padding: 64px 0; }
}

/* ================================================================
   AJUSTES para el marcado estático
   ================================================================ */

/* Los tabs ahora usan .is-active (antes .active) */
.lp-tab.is-active { background: var(--lp-accent); color: #000; }
.lp-tab:hover:not(.is-active) { color: var(--lp-white); }

/* Los paneles de pasos se ocultan con el atributo [hidden].
   .lp-steps es un grid, así que hay que ganarle a display:grid. */
.lp-steps[hidden] { display: none !important; }

/* ================================================================
   CORRECCIONES tras revisar en localhost
   ================================================================ */

/* Las stats pasaron de 3 a 4 (se añadió "Negocios en el directorio").
   En tablet 4 columnas quedan apretadas: 2x2, y el separador solo
   entre las dos de cada fila. */
@media (max-width: 1023px) and (min-width: 768px) {
  .lp-stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .lp-stats-item:nth-child(2n)::after { display: none; }
}

/* El navbar es position:fixed, así que al saltar a una sección por
   ancla su título quedaba tapado. */
section[id] { scroll-margin-top: 92px; }

/* El teléfono del hero pasó a usar el mismo marco que el del Directorio,
   así los dos dispositivos de la página se ven igual. El marco es de ancho
   fijo (268px / 232px en móvil), pero aquí lo manda .lp-hero-phone, que es
   270px y baja a 200px: sin este width se saldría del contenedor en móvil. */
.lp-hero-phone .lp-phone-frame {
  width: 100%;
  animation: lp-float 4s ease-in-out infinite;
  box-shadow: 0 26px 70px rgba(0,0,0,.6),
              0 0 0 1px rgba(255,255,255,.03) inset,
              0 28px 72px rgba(200,255,0,.10);
}

/* La insignia estaba en bottom:22%, justo encima del texto inferior de la
   captura. Subida a la altura del auto, donde no tapa nada. */
.lp-badge-live { bottom: 40%; }

@media (max-width: 767px) {
  /* Con el teléfono reducido a 200px las insignias se montan sobre él.
     A bottom:40% la de «Conductor en camino» tapaba el logo del auto, que
     es justo lo que hay que ver; la bajamos sobre el texto pequeño, que a
     este tamaño ya no se lee. */
  .lp-badge-live { bottom: 14%; }
}

/* La imagen de la sección DESCARGA pasa también al marco de teléfono, para que
   los tres screenshots de la página (hero, Directorio y descarga) se vean igual.
   El hueco sube de 160px a 240px: a 160 el marco de 268px quedaba de juguete
   (padding y esquinas desproporcionados) y el mapa de la captura, ilegible.
   Los valores internos van escalados a la misma proporción que el marco grande. */
.lp-download-img { width: 240px; }
.lp-download-img .lp-phone-frame {
  width: 100%;
  padding: 9px;
  border-radius: 30px;
}
.lp-download-img .lp-phone-frame::before { top: 18px; width: 77px; height: 4px; }
.lp-download-img .lp-phone-screen { border-radius: 23px; }
/* .lp-download-img img trae un drop-shadow pensado para el PNG suelto; dentro
   del marco no aporta nada y se recorta contra el overflow del screen. */
.lp-download-img .lp-phone-screen img { filter: none; }

/* ── CONDUCTORES: par de teléfonos escalonados ───────────────────
   Sustituye la imagen suelta .lp-drivers-img por dos marcos del mismo
   tamaño: la alerta de pedido entrante y el home con ese mismo pedido ya
   convertido en tarjeta. Se leen de izquierda a derecha como línea de
   tiempo, por eso van del mismo tamaño y no uno detrás del otro. */
.lp-drivers-phones {
  --pw: clamp(195px, calc(24vw - 44px), 230px);
  display: flex; align-items: flex-start; justify-content: center;
  gap: 20px; width: 100%;
}
/* Las medidas internas del marco salen de las del original de 268px
   (padding 10, radio 34, pastilla 86, radio de pantalla 26) escaladas con
   calc, para que al cambiar --pw el marco no se deforme. */
.lp-drivers-phones .lp-phone-frame {
  width: var(--pw);
  padding: calc(var(--pw) * .037);
  border-radius: calc(var(--pw) * .127);
}
.lp-drivers-phones .lp-phone-frame::before {
  top: calc(var(--pw) * .075);
  width: calc(var(--pw) * .32);
  height: 4px;
}
.lp-drivers-phones .lp-phone-screen { border-radius: calc(var(--pw) * .097); }
/* El segundo baja: escalonado, no fila. */
.lp-phone-b { margin-top: 46px; }

@media (max-width: 1023px) {
  /* Por debajo de 1024px la columna del visual cae a ~444px y los dos
     marcos solo entrarían encogidos hasta volverse ilegibles. Se deja
     solo la alerta, que es la pantalla que el conductor reconoce. */
  .lp-phone-b { display: none; }
  .lp-drivers-phones { --pw: 250px; }
}
@media (max-width: 767px) {
  .lp-drivers-phones { --pw: 230px; }
}

/* ── DIRECTORIO: banda de cierre para captar negocios ──────────────
   Va fuera de .lp-dir-inner, así ocupa el ancho completo del contenedor
   y cierra la sección en lugar de competir con los puntos de la columna
   izquierda. El borde tira al acento para que se despegue del fondo
   .lp-bg-2 sin gritar tanto como una tarjeta rellena de amarillo. */
.lp-dir-cta {
  position: relative; z-index: 1;
  margin-top: 56px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
  padding: 30px 34px;
  border-radius: var(--lp-r);
  background: var(--lp-bg-card);
  border: 1px solid rgba(200,255,0,.16);
}
.lp-dir-cta-t {
  font-size: 1.06rem; font-weight: 700;
  color: var(--lp-white); margin-bottom: 6px;
}
.lp-dir-cta-d {
  font-size: .87rem; color: var(--lp-t2);
  line-height: 1.6; max-width: 62ch;
}
/* .lp-btn no encoge nunca (white-space:nowrap), pero sin esto flex le
   permite estrujarse cuando el texto de la izquierda es largo. */
.lp-dir-cta-btn { flex-shrink: 0; }

@media (max-width: 767px) {
  /* Apilado y botón a todo el ancho: a esa medida es el único objetivo
     de la banda y no tiene por qué quedar flotando a la izquierda. */
  .lp-dir-cta {
    flex-direction: column; align-items: stretch;
    gap: 20px; padding: 26px 22px; margin-top: 44px;
  }
  .lp-dir-cta-btn { justify-content: center; }
}
