/* sidebar promo */
.lawnix-sidebar-promo{
  margin-bottom: 30px;
  padding: 28px 22px 18px;
  border-radius: 16px;
  border: 1px solid #d8e4ee;
  background: linear-gradient(135deg, #ffffff, #eff6ff);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
  position: relative;
  overflow: visible;
  transform-origin: 50% 40%;
  animation: lawnixSidebarPromoJiggle 650ms ease-out 1;
  transition: transform .2s ease, box-shadow .2s ease;
  isolation: isolate;
}

.lawnix-sidebar-promo:hover{
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.lawnix-sidebar-promo__badge{
  position: absolute;
  top: -12px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff;
  color: #024069;
  border: 1px solid rgba(2,64,105,0.25);
  box-shadow: 0 10px 18px rgba(0,0,0,0.08);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  z-index: 5;
}

.lawnix-sidebar-promo h2{
  margin: 0 0 10px;
  font-size: 1.45rem !important;
  line-height: 1.2;
}

.lawnix-sidebar-promo p{
  margin: 0 0 14px;
}

.lawnix-sidebar-promo__cta a{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  color: #024069 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  text-decoration-color: rgba(2,64,105,0.35);
  transition: color .2s ease, text-decoration-color .2s ease, transform .2s ease;
}

.lawnix-sidebar-promo__cta a:hover,
.lawnix-sidebar-promo__cta a:focus-visible{
  color: #012f4d !important;
  text-decoration-color: rgba(1,47,77,0.7);
  transform: translateY(-1px);
  outline: none;
}

.lawnix-sidebar-promo__small{
  margin-top: 12px;
  font-size: .78rem;
  line-height: 1.4;
  color: rgba(0,0,0,0.62);
}

@keyframes lawnixSidebarPromoJiggle{
  0%   { transform: translateY(10px) rotate(0) scale(0.98); }
  45%  { transform: translateY(0) rotate(-1.2deg) scale(1); }
  65%  { transform: translateY(0) rotate(1deg); }
  82%  { transform: translateY(0) rotate(-0.6deg); }
  100% { transform: translateY(0) rotate(0); }
}

@media (prefers-reduced-motion: reduce){
  .lawnix-sidebar-promo{
    animation: none !important;
    transition: none !important;
  }
}