.home-leadstrip {
  padding: 36px 0 26px;
  background:
    radial-gradient(600px 240px at 12% 12%, rgba(56, 189, 248, 0.22), transparent 60%),
    radial-gradient(520px 220px at 88% 18%, rgba(34, 197, 94, 0.18), transparent 62%),
    linear-gradient(120deg, rgba(240, 249, 255, 0.8), rgba(255, 245, 235, 0.7));
}

.home-leadstrip .leadstrip-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.9), rgba(240, 249, 255, 0.9));
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 20px;
  padding: 24px 26px;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.18);
  position: relative;
  overflow: hidden;
  animation: leadstripFloat 5s ease-in-out infinite;
}

.home-leadstrip .leadstrip-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(56, 189, 248, 0.28), transparent 45%, rgba(34, 197, 94, 0.24));
  opacity: 0.85;
  pointer-events: none;
  animation: leadstripGlow 3.5s ease-in-out infinite;
}

.home-leadstrip .leadstrip-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  padding: 2px;
  background: conic-gradient(
    from 0deg,
    rgba(56, 189, 248, 0.95),
    rgba(34, 197, 94, 0.95),
    rgba(249, 115, 22, 0.95),
    rgba(14, 116, 144, 0.95),
    rgba(56, 189, 248, 0.95)
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  pointer-events: none;
  animation: none;
}

.leadstrip-copy h2 {
  margin: 0 0 8px;
  font-size: 22px;
  color: #0a0a36;
}

.leadstrip-copy p {
  margin: 0 0 12px;
  color: #4b5563;
  line-height: 1.6;
}

.leadstrip-proof {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 13px;
  color: #0a0a36;
}

.leadstrip-proof li {
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  padding: 6px 10px;
  font-weight: 700;
}

.leadstrip-form {
  display: grid;
  gap: 12px;
}

.leadstrip-field label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
}

.leadstrip-field input,
.leadstrip-field select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: #ffffff;
  color: #0f172a;
  font-family: inherit;
  font-size: 14px;
}

.leadstrip-field input::placeholder {
  color: #94a3b8;
}

.leadstrip-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.leadstrip-actions .btn {
  border-radius: 12px;
  box-shadow: 0 16px 30px rgba(14, 116, 144, 0.2);
}

.leadstrip-note {
  margin: 0;
  font-size: 12px;
  color: #64748b;
}

@keyframes leadstripFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes leadstripGlow {
  0%, 100% {
    opacity: 0.55;
  }
  50% {
    opacity: 0.85;
  }
}

@keyframes leadstripSweep {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .home-leadstrip .leadstrip-card {
    grid-template-columns: 1fr;
  }

  .leadstrip-actions {
    flex-direction: column;
    align-items: stretch;
  }
}
