:root {
  --lp-green: #25D366;
  --lp-green-dark: #128C7E;
  --lp-green-deeper: #075E54;
  --lp-dark: #0f172a;
  --lp-bg: #f1f5f9;
  --lp-white: #ffffff;
  --lp-border: #e2e8f0;
  --lp-text: #1e293b;
  --lp-muted: #64748b;
  --lp-radius: 12px;
  --lp-shadow: 0 4px 12px rgba(0,0,0,.08);
  --lp-shadow-lg: 0 10px 30px rgba(0,0,0,.12);
}

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

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--lp-white);
  color: var(--lp-text);
  -webkit-font-smoothing: antialiased;
}

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

/* Header */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--lp-border);
}

.lp-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.lp-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--lp-text);
  text-decoration: none;
}

.lp-brand-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.lp-brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lp-nav {
  display: flex;
  gap: 32px;
}

.lp-nav a {
  color: var(--lp-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color .15s;
}

.lp-nav a:hover { color: var(--lp-text); }

/* Buttons */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--lp-radius);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .1s, background .15s, box-shadow .15s;
}

.lp-btn-primary {
  background: var(--lp-green);
  color: #fff;
}

.lp-btn-primary:hover { background: var(--lp-green-dark); }
.lp-btn-primary:active { transform: scale(.97); }

.lp-btn-ghost {
  background: transparent;
  color: var(--lp-text);
  border: 1.5px solid var(--lp-border);
}

.lp-btn-ghost:hover { border-color: var(--lp-green); color: var(--lp-green-dark); }

.lp-btn-lg { padding: 14px 28px; font-size: 15px; }
.lp-btn-block { width: 100%; }

/* Hero */
.lp-hero {
  background: linear-gradient(180deg, var(--lp-bg) 0%, #ffffff 100%);
  padding: 80px 0 60px;
}

.lp-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.lp-badge {
  display: inline-block;
  background: #e7f8ee;
  color: var(--lp-green-deeper);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.lp-hero-text h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--lp-dark);
}

.lp-hero-sub {
  font-size: 17px;
  color: var(--lp-muted);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 480px;
}

.lp-hero-cta {
  display: flex;
  gap: 14px;
}

.lp-hero-visual {
  display: flex;
  justify-content: center;
}

.lp-mock-chat {
  background: var(--lp-white);
  border-radius: 20px;
  box-shadow: var(--lp-shadow-lg);
  padding: 28px;
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--lp-border);
}

.lp-mock-bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 14px;
  max-width: 80%;
  line-height: 1.4;
}

.lp-mock-in {
  background: var(--lp-bg);
  color: var(--lp-text);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.lp-mock-out {
  background: var(--lp-green);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Sections */
.lp-section { padding: 80px 0; }
.lp-section-alt { background: var(--lp-bg); }

.lp-section-head {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.lp-section-tag {
  display: inline-block;
  color: var(--lp-green-dark);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}

.lp-section-head h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--lp-dark);
  line-height: 1.25;
}

/* Features grid */
.lp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-feature-card {
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}

.lp-feature-card:hover {
  box-shadow: var(--lp-shadow);
  transform: translateY(-2px);
}

.lp-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #e7f8ee;
  color: var(--lp-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.lp-feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--lp-dark);
}

.lp-feature-card p {
  font-size: 14px;
  color: var(--lp-muted);
  line-height: 1.55;
}

/* Plans grid */
.lp-grid-planes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-plan-card {
  position: relative;
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}

.lp-plan-destacado {
  border: 2px solid var(--lp-green);
  box-shadow: var(--lp-shadow-lg);
}

.lp-plan-tag {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--lp-green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.lp-plan-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--lp-dark);
}

.lp-plan-desc {
  font-size: 13px;
  color: var(--lp-muted);
  margin-bottom: 20px;
  min-height: 36px;
}

.lp-plan-precio {
  font-size: 38px;
  font-weight: 800;
  color: var(--lp-dark);
  margin-bottom: 24px;
}

.lp-plan-moneda { font-size: 20px; vertical-align: top; }
.lp-plan-periodo { font-size: 14px; font-weight: 500; color: var(--lp-muted); }

.lp-plan-lista {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
}

.lp-plan-lista li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--lp-text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.lp-plan-lista i { color: var(--lp-green); margin-top: 2px; }

.lp-empty { text-align: center; color: var(--lp-muted); grid-column: 1 / -1; }

/* Contacto */
.lp-contacto-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.lp-contacto-info h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--lp-dark);
  margin: 8px 0 14px;
}

.lp-contacto-info p {
  color: var(--lp-muted);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.lp-contacto-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--lp-text);
  font-weight: 500;
}

.lp-contacto-item i { color: var(--lp-green-dark); }

.lp-contacto-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--lp-white);
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px;
  box-shadow: var(--lp-shadow);
}

.lp-contacto-form input,
.lp-contacto-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--lp-text);
  resize: vertical;
}

.lp-contacto-form input:focus,
.lp-contacto-form textarea:focus {
  outline: none;
  border-color: var(--lp-green);
}

.lp-form-msg {
  font-size: 13px;
  text-align: center;
  min-height: 18px;
}

.lp-form-ok { color: var(--lp-green-dark); }
.lp-form-error { color: #dc2626; }

/* Footer */
.lp-footer {
  background: var(--lp-dark);
  color: #94a3b8;
  padding: 28px 0;
  text-align: center;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .lp-hero-inner { grid-template-columns: 1fr; }
  .lp-grid-3 { grid-template-columns: 1fr; }
  .lp-grid-planes { grid-template-columns: 1fr; }
  .lp-contacto-grid { grid-template-columns: 1fr; }
  .lp-nav { display: none; }
  .lp-hero-text h1 { font-size: 32px; }
}


/* Nav activo */
.lp-nav-active { color: var(--lp-green-dark) !important; font-weight: 700; }

/* Page hero (servicios, precios, contacto) */
.lp-page-hero {
  background: var(--lp-bg);
  padding: 64px 0 56px;
  text-align: center;
}

.lp-page-hero h1 {
  font-size: 38px;
  font-weight: 800;
  color: var(--lp-dark);
  margin: 10px 0 16px;
}

.lp-page-hero .lp-hero-sub {
  max-width: 560px;
  margin: 0 auto;
}

/* CTA banner */
.lp-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.lp-cta-banner h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--lp-dark);
  margin-bottom: 6px;
}

.lp-cta-banner p { color: var(--lp-muted); font-size: 14px; }

/* Footer expandido */
.lp-footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.lp-footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: #fff;
}

.lp-footer-nav {
  display: flex;
  gap: 24px;
}

.lp-footer-nav a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
}

.lp-footer-nav a:hover { color: #fff; }

.lp-footer-copy { color: #64748b; font-size: 12px; }

/* Footer completo */
.lp-footer {
  background: var(--lp-dark);
  color: #94a3b8;
  padding: 64px 0 0;
}

.lp-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.lp-footer-brand-link {
  color: #fff;
  text-decoration: none;
  margin-bottom: 14px;
  display: inline-flex;
}

.lp-footer-desc {
  font-size: 13px;
  line-height: 1.65;
  color: #64748b;
  margin: 14px 0 20px;
  max-width: 260px;
}

.lp-footer-social {
  display: flex;
  gap: 10px;
}

.lp-footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 15px;
  text-decoration: none;
  transition: background .15s, color .15s;
}

.lp-footer-social a:hover {
  background: var(--lp-green);
  color: #fff;
  border-color: var(--lp-green);
}

.lp-footer-heading {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
}

.lp-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.lp-footer-links a {
  font-size: 13px;
  color: #64748b;
  text-decoration: none;
  transition: color .15s;
}

.lp-footer-links a:hover { color: #fff; }

.lp-footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
}

.lp-footer-contact i { color: var(--lp-green); font-size: 13px; }

.lp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-footer-bottom p { font-size: 12px; color: #475569; }

.lp-footer-bottom-links {
  display: flex;
  gap: 20px;
}

.lp-footer-bottom-links a {
  font-size: 12px;
  color: #475569;
  text-decoration: none;
  transition: color .15s;
}

.lp-footer-bottom-links a:hover { color: #94a3b8; }

@media (max-width: 900px) {
  .lp-footer-grid { grid-template-columns: 1fr 1fr; }
  .lp-footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .lp-footer-grid { grid-template-columns: 1fr; }
}
/* Fix alineacion footer */
.lp-footer-col { text-align: left; }
.lp-footer-col-brand { text-align: left; }
.lp-footer-links { text-align: left; }
.lp-footer-contact { text-align: left; }
.lp-footer-brand-link { justify-content: flex-start; }

/* Fix alineacion footer col brand */
.lp-footer-col-brand { display: flex; flex-direction: column; align-items: flex-start; }
.lp-footer-desc { text-align: left; }

/* Hero dark */
.lp-hero-dark {
  background: var(--lp-dark);
  padding: 80px 0 60px;
}

.lp-hero-dark h1 {
  color: #fff;
}

.lp-hero-dark .lp-hero-sub {
  color: #94a3b8;
}

.lp-badge-dark {
  background: rgba(37,211,102,.15);
  color: #25D366;
  border: 1px solid rgba(37,211,102,.2);
}

.lp-btn-ghost-dark {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.2);
}

.lp-btn-ghost-dark:hover {
  border-color: var(--lp-green);
  color: var(--lp-green);
}

/* Mock chat mejorado */
.lp-mock-dark {
  background: #1e293b;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}

.lp-mock-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: #0f172a;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.lp-mock-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
}

.lp-mock-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
}

.lp-mock-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #0f172a;
  border-top: 1px solid rgba(255,255,255,.06);
}

.lp-mock-input {
  flex: 1;
  background: #1e293b;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 12px;
  color: #475569;
}

.lp-mock-send {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--lp-green);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 13px;
}

/* Stats */
.lp-section-stats {
  background: #fff;
  border-bottom: 1px solid var(--lp-border);
  padding: 32px 0;
}

.lp-stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.lp-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}

.lp-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: var(--lp-dark);
}

.lp-stat-lbl {
  font-size: 13px;
  color: var(--lp-muted);
  margin-top: 2px;
}

.lp-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--lp-border);
  flex-shrink: 0;
}

/* Secciones dark */
.lp-section-dark {
  background: var(--lp-dark);
  padding: 80px 0;
}

.lp-section-head-dark h2 {
  color: #fff;
}

.lp-section-tag-dark {
  color: var(--lp-green) !important;
}

/* Steps */
.lp-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
}

.lp-step {
  flex: 1;
  padding: 32px 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
}

.lp-step-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--lp-green);
  margin-bottom: 14px;
  line-height: 1;
}

.lp-step h3 {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.lp-step p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
}

.lp-step-arrow {
  display: flex;
  align-items: center;
  padding: 0 16px;
  margin-top: 40px;
  color: #334155;
  font-size: 20px;
}

/* Integraciones */
.lp-integrations {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.lp-integration-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 32px;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 16px;
  transition: box-shadow .15s, transform .15s;
  min-width: 130px;
}

.lp-integration-card:hover {
  box-shadow: var(--lp-shadow);
  transform: translateY(-2px);
}

.lp-integration-card span {
  font-size: 12px;
  font-weight: 600;
  color: var(--lp-muted);
}

/* CTA final dark */
.lp-section-cta-dark {
  background: var(--lp-dark);
  padding: 80px 0;
}

.lp-cta-final {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.lp-cta-final h2 {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.lp-cta-final p {
  color: #64748b;
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.65;
}

.lp-cta-final .lp-hero-cta {
  justify-content: center;
}

@media (max-width: 900px) {
  .lp-stats-grid { flex-wrap: wrap; gap: 24px; }
  .lp-stat-divider { display: none; }
  .lp-steps { flex-direction: column; }
  .lp-step-arrow { transform: rotate(90deg); margin: 0 auto; }
}
/* Separacion entre CTA final y footer */
.lp-section-cta-dark {
  padding-bottom: 100px !important;
}

/* Separacion visual CTA final vs footer */
.lp-section-cta-dark {
  background: #0d1526 !important;
}

/* CTA final sin fondo oscuro */
.lp-section-cta-dark {
  background: #fff !important;
  padding: 60px 0 80px !important;
  border-top: 1px solid var(--lp-border) !important;
}

.lp-cta-final h2 { color: var(--lp-dark) !important; }
.lp-cta-final p { color: var(--lp-muted) !important; }

/* Hero dark para paginas internas */
.lp-page-hero-dark {
  background: var(--lp-dark);
  text-align: center;
  padding: 64px 0 56px;
}

.lp-page-hero-dark h1 {
  font-size: 38px;
  font-weight: 800;
  color: #fff;
  margin: 10px 0 16px;
}

/* Feature cards dark */
.lp-feature-card-dark {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}

.lp-feature-card-dark h3 { color: #fff; }
.lp-feature-card-dark p { color: #64748b; }

/* Contacto mejorado */
.lp-contacto-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.lp-contacto-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}

.lp-contacto-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #e7f8ee;
  color: var(--lp-green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.lp-contacto-card-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--lp-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.lp-contacto-card-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-dark);
  margin-top: 2px;
}

.lp-form-header {
  margin-bottom: 20px;
}

.lp-form-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--lp-dark);
  margin-bottom: 4px;
}

.lp-form-header p {
  font-size: 13px;
  color: var(--lp-muted);
}

.lp-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.lp-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lp-form-group label {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}

.lp-contacto-form input,
.lp-contacto-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--lp-border);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--lp-text);
  background: #fafafa;
  resize: vertical;
  transition: border-color .15s, background .15s;
}

.lp-contacto-form input:focus,
.lp-contacto-form textarea:focus {
  outline: none;
  border-color: var(--lp-green);
  background: #fff;
}

.lp-btn-block { display: flex; gap: 8px; }

@media (max-width: 600px) {
  .lp-form-row { grid-template-columns: 1fr; }
}

/* Hamburguesa movil */
.lp-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--lp-text);
  font-size: 22px;
  padding: 4px;
}

@media (max-width: 900px) {
  .lp-nav { display: none; position: absolute; top: 72px; left: 0; right: 0; background: #fff; flex-direction: column; gap: 0; padding: 12px 0; box-shadow: 0 8px 24px rgba(0,0,0,.1); z-index: 200; border-top: 1px solid var(--lp-border); }
  .lp-nav.open { display: flex; }
  .lp-nav a { padding: 12px 24px; font-size: 15px; }
  .lp-menu-toggle { display: flex; }
  .lp-header-inner { position: relative; }
}

/* Ocultar texto boton login en movil, mostrar icono */
.lp-login-btn .lp-login-text { display: inline; }
.lp-login-btn .lp-login-icon { display: none; }

@media (max-width: 900px) {
  .lp-login-btn .lp-login-text { display: none; }
  .lp-login-btn .lp-login-icon { display: inline; }
  .lp-login-btn { padding: 8px 12px; }
  .lp-menu-toggle { order: 3; }
  .lp-login-btn { order: 2; }
}
