/* ============================================================
   LANDING PAGE / APP LAYOUT STYLES
   ============================================================ */

/* Prevent horizontal scroll globally on landing pages */
html, body { overflow-x: hidden; max-width: 100%; }

/* ── Landing Topbar ── */
.lp-topbar {
  position: sticky;
  top: 0;
  z-index: 1050;
  width: 100%;
  max-width: 100vw;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--p2p-border-light);
  box-shadow: 0 2px 12px rgba(11,107,58,0.06);
  transition: all 0.3s ease;
}
.lp-topbar.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 20px rgba(11,107,58,0.10);
}
/* legacy nav container — layout now handled by .lp-topbar-inner inside .container */
.lp-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.lp-logo img { height: 38px; width: auto; }
.lp-logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--p2p-green);
  letter-spacing: -0.01em;
}
.lp-logo-text span { color: var(--p2p-gold-dark); }
.lp-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0; padding: 0;
}
.lp-menu a {
  padding: 8px 14px;
  border-radius: var(--p2p-radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--p2p-text);
  transition: var(--p2p-transition);
  text-decoration: none;
  display: block;
}
.lp-menu a:hover,
.lp-menu a.active {
  background: var(--p2p-green-muted);
  color: var(--p2p-green);
}
.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* (old mobile nav removed — see .lp-menu-btn below) */

/* ── Hero Section ── */
.lp-hero {
  background: linear-gradient(135deg, #f0fbf5 0%, #e8f5ee 40%, #fff8e1 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.lp-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(11,107,58,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.lp-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,199,44,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.lp-hero-content { position: relative; z-index: 1; }
.lp-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--p2p-green-muted);
  color: var(--p2p-green);
  border: 1px solid rgba(11,107,58,0.15);
  padding: 6px 14px;
  border-radius: var(--p2p-radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}
.lp-hero-eyebrow i { font-size: 0.75rem; }
.lp-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--p2p-dark);
  margin-bottom: 1.25rem;
}
.lp-hero h1 .highlight {
  color: var(--p2p-green);
  position: relative;
}
.lp-hero h1 .highlight-gold { color: var(--p2p-gold-dark); }
.lp-hero-sub {
  font-size: 1.05rem;
  color: var(--p2p-text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 520px;
}
.lp-hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* Hero image */
.lp-hero-img-wrap {
  position: relative;
}
.lp-hero-img {
  width: 100%;
  border-radius: var(--p2p-radius-xl);
  box-shadow: var(--p2p-shadow-lg);
  object-fit: cover;
  max-height: 480px;
}
.lp-hero-badge {
  position: absolute;
  background: white;
  border-radius: var(--p2p-radius-md);
  padding: 12px 16px;
  box-shadow: var(--p2p-shadow-md);
  display: flex; align-items: center; gap: 10px;
}
.lp-hero-badge.badge-1 { bottom: 24px; left: -20px; }
.lp-hero-badge.badge-2 { top: 24px; right: -16px; }
.lp-hero-badge .badge-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.lp-hero-badge .badge-icon.green { background: var(--p2p-green-muted); color: var(--p2p-green); }
.lp-hero-badge .badge-icon.gold  { background: var(--p2p-gold-muted); color: var(--p2p-gold-dark); }
.lp-hero-badge .badge-text h6 { font-size: 0.75rem; font-weight: 800; color: var(--p2p-text); margin: 0 0 1px; }
.lp-hero-badge .badge-text p  { font-size: 0.68rem; color: var(--p2p-text-muted); margin: 0; }

/* ── Stats Row ── */
.lp-hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11,107,58,0.08);
  color: var(--p2p-green);
  border: 1px solid rgba(11,107,58,0.18);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.lp-hero-badge-pill i { font-size: 0.75rem; }

/* ── Stats Row ── */
.lp-stats {
  background: var(--p2p-green);
  padding: 40px 0;
}
.lp-stat-item { text-align: center; }
.lp-stat-item .lp-stat-num {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.lp-stat-item .lp-stat-num span { color: var(--p2p-gold); }
.lp-stat-item p { font-size: 0.82rem; color: rgba(255,255,255,0.72); margin: 0; font-weight: 500; }
.lp-stat-divider { width: 1px; background: rgba(255,255,255,0.15); min-height: 50px; align-self: center; }

/* ── Section Shared ── */
.lp-section { padding: 80px 0; }
.lp-section-alt { background: var(--p2p-bg-muted); }
.lp-section-header { text-align: center; margin-bottom: 3rem; }
.lp-section-header .eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--p2p-green);
  margin-bottom: 10px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.lp-section-header .eyebrow::before,
.lp-section-header .eyebrow::after {
  content: '';
  display: block;
  width: 30px; height: 2px;
  background: var(--p2p-gold);
  border-radius: 10px;
}
.lp-section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--p2p-dark);
  margin-bottom: 1rem;
}
.lp-section-header p { font-size: 0.95rem; color: var(--p2p-text-muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }

/* ── How it works cards ── */
.lp-step-card {
  background: var(--p2p-bg-card);
  border: 1px solid var(--p2p-border-light);
  border-radius: var(--p2p-radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  transition: var(--p2p-transition);
  box-shadow: var(--p2p-shadow-sm);
}
.lp-step-card:hover {
  border-color: var(--p2p-green);
  box-shadow: var(--p2p-shadow-md);
  transform: translateY(-4px);
}
.lp-step-num {
  width: 48px; height: 48px;
  background: var(--p2p-green);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800;
  margin: 0 auto 1.25rem;
}
.lp-step-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.75rem; color: var(--p2p-dark); }
.lp-step-card p  { font-size: 0.875rem; color: var(--p2p-text-muted); line-height: 1.7; margin: 0; }

/* ── Feature cards ── */
.lp-feature-card {
  display: flex;
  gap: 16px;
  padding: 1.5rem;
  background: var(--p2p-bg-card);
  border-radius: var(--p2p-radius-md);
  border: 1px solid var(--p2p-border-light);
  transition: var(--p2p-transition);
  box-shadow: var(--p2p-shadow-sm);
}
.lp-feature-card:hover { box-shadow: var(--p2p-shadow); border-color: var(--p2p-border); transform: translateY(-2px); }
.lp-feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--p2p-green-muted);
  color: var(--p2p-green);
  border-radius: var(--p2p-radius);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.lp-feature-card h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--p2p-dark); }
.lp-feature-card p  { font-size: 0.82rem; color: var(--p2p-text-muted); line-height: 1.65; margin: 0; }

/* ── Payout Slider ── */
.lp-payout-slider-wrap { overflow: hidden; border-radius: var(--p2p-radius-lg); }
.lp-payout-slide {
  background: linear-gradient(135deg, var(--p2p-green), var(--p2p-green-medium));
  color: white;
  border-radius: var(--p2p-radius-lg);
  padding: 2rem;
  text-align: center;
}
.lp-payout-slide h4 { font-size: 1.75rem; font-weight: 800; color: var(--p2p-gold); margin-bottom: 4px; }
.lp-payout-slide p  { color: rgba(255,255,255,0.8); font-size: 0.9rem; margin: 0; }

/* ── Testimonials ── */
.lp-testimonial {
  background: var(--p2p-bg-card);
  border-radius: var(--p2p-radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--p2p-border-light);
  box-shadow: var(--p2p-shadow-sm);
  height: 100%;
}
.lp-testimonial .stars { color: var(--p2p-gold); font-size: 0.85rem; margin-bottom: 12px; }
.lp-testimonial .quote { font-size: 0.9rem; color: var(--p2p-text); line-height: 1.7; margin-bottom: 1.25rem; font-style: italic; }
.lp-testimonial-user { display: flex; align-items: center; gap: 12px; }
.lp-testimonial-user img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; border: 2px solid var(--p2p-border); }
.lp-testimonial-user h6 { font-size: 0.875rem; font-weight: 700; margin: 0 0 2px; }
.lp-testimonial-user p  { font-size: 0.75rem; color: var(--p2p-text-muted); margin: 0; }

/* ── CTA Section ── */
.lp-cta {
  background: linear-gradient(135deg, var(--p2p-green-dark) 0%, var(--p2p-green) 60%, var(--p2p-green-medium) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.lp-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.lp-cta-content { position: relative; z-index: 1; text-align: center; }
.lp-cta h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); font-weight: 800; color: #fff; margin-bottom: 1rem; }
.lp-cta h2 span { color: var(--p2p-gold); }
.lp-cta p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 2rem; line-height: 1.7; max-width: 540px; margin-left: auto; margin-right: auto; }
.lp-cta .lp-cta-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* ── Footer ── */
.lp-footer {
  background: var(--p2p-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 0;
}
.lp-footer-logo img { height: 40px; margin-bottom: 12px; }
.lp-footer-logo p { font-size: 0.85rem; line-height: 1.65; color: rgba(255,255,255,0.55); }
.lp-footer-heading { font-size: 0.85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.lp-footer ul { list-style: none; padding: 0; margin: 0; }
.lp-footer ul li { margin-bottom: 8px; }
.lp-footer ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: var(--p2p-transition);
  text-decoration: none;
}
.lp-footer ul li a:hover { color: var(--p2p-gold); }
.lp-footer-social { display: flex; gap: 8px; margin-top: 1rem; }
.lp-footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--p2p-radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--p2p-transition);
  text-decoration: none;
}
.lp-footer-social a:hover { background: var(--p2p-gold); color: var(--p2p-dark); }
.lp-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.lp-footer-bottom a { color: var(--p2p-gold); text-decoration: none; }

/* ── Auth Pages ── */
.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
}
.auth-left {
  flex: 1;
  background: linear-gradient(160deg, var(--p2p-green-dark) 0%, var(--p2p-green) 50%, var(--p2p-green-medium) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.auth-left::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.auth-left-content { position: relative; z-index: 1; max-width: 360px; }
.auth-left h2 { font-size: 1.85rem; font-weight: 800; color: #fff; margin-bottom: 1rem; line-height: 1.3; }
.auth-left h2 span { color: var(--p2p-gold); }
.auth-left p { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.7; margin-bottom: 2rem; }
.auth-benefits { list-style: none; padding: 0; text-align: left; }
.auth-benefits li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.auth-benefits li i { color: var(--p2p-gold); font-size: 0.85rem; }

.auth-right {
  width: 480px;
  flex-shrink: 0;
  background: var(--p2p-bg-card);
  display: flex;
  flex-direction: column;
  padding: 40px 48px;
  overflow-y: auto;
}
.auth-right-content { max-width: 380px; width: 100%; margin: auto; }
.auth-logo { margin-bottom: 2rem; }
.auth-logo img { height: 36px; }
.auth-right h1 { font-size: 1.75rem; font-weight: 800; color: var(--p2p-dark); margin-bottom: 6px; }
.auth-right .auth-sub { font-size: 0.875rem; color: var(--p2p-text-muted); margin-bottom: 2rem; }
.auth-right .auth-sub a { color: var(--p2p-green); font-weight: 600; }

.auth-input-group {
  position: relative;
  margin-bottom: 1.25rem;
}
.auth-input-group .p2p-label { margin-bottom: 6px; }
.auth-input-icon {
  position: absolute;
  left: 14px;
  bottom: 13px;
  color: var(--p2p-text-light);
  font-size: 0.9rem;
  pointer-events: none;
}
.auth-input-group .p2p-input { padding-left: 40px; }
.auth-input-toggle {
  position: absolute;
  right: 14px;
  bottom: 13px;
  color: var(--p2p-text-light);
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--p2p-transition);
  border: none;
  background: none;
  padding: 0;
}
.auth-input-toggle:hover { color: var(--p2p-green); }

.auth-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 1.5rem 0;
  font-size: 0.78rem;
  color: var(--p2p-text-light);
}
.auth-divider::before, .auth-divider::after {
  content: ''; flex: 1;
  height: 1px;
  background: var(--p2p-border-light);
}

.auth-footer {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--p2p-text-muted);
  text-align: center;
}
.auth-footer a { color: var(--p2p-green); font-weight: 600; }

@media (max-width: 991px) {
  .auth-left { display: none; }
  .auth-right { width: 100%; padding: 32px 24px; }
  .auth-right-content { max-width: 440px; }
}

/* ── Topbar Inner Layout ── */
.lp-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}
.lp-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lp-nav-link {
  padding: 7px 14px;
  border-radius: var(--p2p-radius-full);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--p2p-text);
  transition: var(--p2p-transition);
  text-decoration: none;
}
.lp-nav-link:hover,
.lp-nav-link.active {
  background: var(--p2p-green-muted);
  color: var(--p2p-green);
}
.lp-topbar-cta { align-items: center; }
.lp-logo-icon {
  width: 34px; height: 34px;
  background: var(--p2p-green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* ── Menu button (always visible) ── */
.lp-menu-wrap { position: relative; flex-shrink: 0; }
.lp-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px; height: 42px;
  border: 1.5px solid var(--p2p-green);
  border-radius: var(--p2p-radius);
  background: transparent;
  cursor: pointer;
  color: var(--p2p-green);
  font-size: 1.1rem;
  transition: var(--p2p-transition);
}
.lp-menu-btn:hover,
.lp-menu-btn.active {
  background: var(--p2p-green);
  color: #fff;
  border-color: var(--p2p-green);
}

/* ── Nav dropdown ── */
.lp-nav-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(11,107,58,0.14), 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid var(--p2p-border-light);
  padding: 8px;
  z-index: 3000;
  animation: dropIn 0.2s ease;
}
.lp-nav-dropdown.open { display: block; }
@keyframes dropIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lp-nav-drop-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--p2p-text);
  text-decoration: none;
  transition: var(--p2p-transition);
}
.lp-nav-drop-item i {
  width: 18px;
  text-align: center;
  color: var(--p2p-green);
  font-size: 0.875rem;
}
.lp-nav-drop-item:hover {
  background: var(--p2p-green-muted);
  color: var(--p2p-green);
}
.lp-nav-drop-divider {
  height: 1px;
  background: var(--p2p-border-light);
  margin: 6px 0;
}
.lp-nav-drop-cta {
  background: var(--p2p-gold);
  color: var(--p2p-dark) !important;
  font-weight: 700;
  margin-top: 2px;
}
.lp-nav-drop-cta i { color: var(--p2p-dark); }
.lp-nav-drop-cta:hover {
  background: var(--p2p-gold-dark);
  color: var(--p2p-dark);
}

/* ── Footer ── */
.lp-footer {
  background: var(--p2p-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.lp-footer-brand .lp-logo-text { color: #fff; }
.lp-footer-brand .lp-logo-icon { background: var(--p2p-green); }
.lp-footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  margin-top: 0.5rem;
}
.lp-footer-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}
.lp-footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.lp-footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.875rem;
  transition: var(--p2p-transition);
}
.lp-footer-links a:hover { color: var(--p2p-gold); }
.lp-footer-contact {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.lp-footer-contact li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
}
.lp-footer-contact li i {
  margin-top: 3px;
  color: var(--p2p-gold);
  width: 14px; text-align: center; flex-shrink: 0;
}
.lp-footer-contact a { color: rgba(255,255,255,0.55); text-decoration: none; transition: var(--p2p-transition); }
.lp-footer-contact a:hover { color: var(--p2p-gold); }
.lp-footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.lp-footer-bottom strong { color: rgba(255,255,255,0.75); }

/* ── WhatsApp Bubble ── */
.lp-whatsapp-btn {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 999;
  width: 52px; height: 52px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  text-decoration: none;
  transition: var(--p2p-transition);
}
.lp-whatsapp-btn:hover {
  transform: scale(1.08);
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}
