/* =========================================
   LVX CTA Components
   ========================================= */

/* ============================================
   WIDE CTA – Fullwidth animated banner
   ============================================ */
.lvx-cta-wide {
  position: relative;
  background: #0d1f0a;
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
}

/* Animated background mesh */
.lvx-cta-wide__bg-anim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(53,166,0,0.35) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 85% 30%, rgba(53,166,0,0.2) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 60% 80%, rgba(53,166,0,0.12) 0%, transparent 60%);
  animation: lvxBgShift 8s ease-in-out infinite alternate;
}

@keyframes lvxBgShift {
  0%   { opacity: 0.7; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.05); }
}

/* Floating particle dots */
.lvx-cta-wide__particles { position: absolute; inset: 0; pointer-events: none; }
.lvx-cta-wide__particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(53,166,0,0.5);
  border-radius: 50%;
  animation: lvxFloat linear infinite;
}
.lvx-cta-wide__particle--1 { left: 8%;   top: 20%; animation-duration: 6s;  animation-delay: 0s;   width: 4px; height: 4px; }
.lvx-cta-wide__particle--2 { left: 15%;  top: 70%; animation-duration: 8s;  animation-delay: 1s; }
.lvx-cta-wide__particle--3 { left: 25%;  top: 40%; animation-duration: 7s;  animation-delay: 2s;   width: 3px; height: 3px; }
.lvx-cta-wide__particle--4 { left: 70%;  top: 15%; animation-duration: 9s;  animation-delay: 0.5s; width: 5px; height: 5px; }
.lvx-cta-wide__particle--5 { left: 80%;  top: 60%; animation-duration: 5s;  animation-delay: 1.5s; width: 4px; height: 4px; }
.lvx-cta-wide__particle--6 { left: 90%;  top: 35%; animation-duration: 7.5s;animation-delay: 3s;   width: 3px; height: 3px; }
.lvx-cta-wide__particle--7 { left: 50%;  top: 80%; animation-duration: 6.5s;animation-delay: 0.8s; }
.lvx-cta-wide__particle--8 { left: 40%;  top: 10%; animation-duration: 8.5s;animation-delay: 2.2s; width: 3px; height: 3px; }

@keyframes lvxFloat {
  0%   { transform: translateY(0px) rotate(0deg); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-80px) rotate(180deg); opacity: 0; }
}

/* Content */
.lvx-cta-wide__content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 36px 44px;
  flex-wrap: wrap;
}

/* Shield icon */
.lvx-cta-wide__icon {
  width: 64px;
  height: 64px;
  background: rgba(53,166,0,0.2);
  border: 1px solid rgba(53,166,0,0.4);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: lvxIconGlow 3s ease-in-out infinite;
}
.lvx-cta-wide__icon svg {
  width: 32px;
  height: 32px;
  color: #7de83a;
}

@keyframes lvxIconGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(53,166,0,0); }
  50%       { box-shadow: 0 0 0 8px rgba(53,166,0,0.15); }
}

/* Text block */
.lvx-cta-wide__text {
  flex: 1;
  min-width: 200px;
}
.lvx-cta-wide__text h3 {
  margin: 0 0 6px;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.3px;
}
.lvx-cta-wide__text p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* CTA Button */
.lvx-cta-wide__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #35a600;
  color: #ffffff !important;
  font-size: 1rem;
  font-weight: 700;
  padding: 15px 30px;
  border-radius: 12px;
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.lvx-cta-wide__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.12) 50%, transparent 100%);
  transform: translateX(-100%);
  animation: lvxShimmer 3s ease-in-out infinite 1s;
}
@keyframes lvxShimmer {
  0%   { transform: translateX(-100%); }
  50%, 100% { transform: translateX(100%); }
}
.lvx-cta-wide__btn:hover {
  background: #2a8400;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(53,166,0,0.4);
}
.lvx-cta-wide__btn svg { transition: transform 0.2s ease; }
.lvx-cta-wide__btn:hover svg { transform: translateX(4px); }

/* ============================================
   NARROW CTA – Compact card
   ============================================ */
.lvx-cta-narrow {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border: 2px solid #e8f5e0;
  border-radius: 16px;
  padding: 22px 24px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(53,166,0,0.08);
}
.lvx-cta-narrow:hover {
  border-color: #35a600;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(53,166,0,0.18);
}

/* Glow effect on hover */
.lvx-cta-narrow__glow {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(53,166,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: lvxNarrowPulse 2.5s ease-in-out infinite;
}
@keyframes lvxNarrowPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50%       { transform: scale(1.4); opacity: 1; }
}

/* Icon */
.lvx-cta-narrow__icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #35a600 0%, #5fcf00 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(53,166,0,0.35);
  transition: transform 0.3s ease;
}
.lvx-cta-narrow:hover .lvx-cta-narrow__icon { transform: rotate(-6deg) scale(1.05); }
.lvx-cta-narrow__icon svg { width: 26px; height: 26px; }

/* Text */
.lvx-cta-narrow__content { flex: 1; min-width: 0; }
.lvx-cta-narrow__content h4 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 800;
  color: #1a1f2e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lvx-cta-narrow__content p {
  margin: 0;
  font-size: 0.825rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Button */
.lvx-cta-narrow__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #35a600;
  color: #ffffff !important;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 9px;
  text-decoration: none !important;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.lvx-cta-narrow__btn:hover {
  background: #2a8400;
  transform: translateX(2px);
}
.lvx-cta-narrow__btn svg { transition: transform 0.2s ease; }
.lvx-cta-narrow__btn:hover svg { transform: translateX(3px); }

/* Pulse animation on narrow CTA border */
@keyframes lvxBorderPulse {
  0%, 100% { border-color: #e8f5e0; }
  50%       { border-color: rgba(53,166,0,0.5); }
}
.lvx-cta-narrow { animation: lvxBorderPulse 4s ease-in-out infinite; }
.lvx-cta-narrow:hover { animation: none; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 700px) {
  .lvx-cta-wide__content {
    padding: 28px 24px;
    gap: 20px;
  }
  .lvx-cta-wide__text h3 { font-size: 1.15rem; }
  .lvx-cta-wide__btn { width: 100%; justify-content: center; }
  .lvx-cta-wide__icon { display: none; }
}

@media (max-width: 480px) {
  .lvx-cta-narrow {
    flex-wrap: wrap;
    gap: 14px;
  }
  .lvx-cta-narrow__btn { width: 100%; justify-content: center; }
}
