/* Why We Do Things Differently (LS) */
.ls-why{
  border-radius: 18px;
  position: relative;
  overflow: hidden;

  /* Tuning knobs (optional) */
  --ls-particles-opacity: 0.30;   /* 0.20 = very subtle, 0.45 = more visible */
  --ls-particles-speed-1: 22s;    /* smaller layer */
  --ls-particles-speed-2: 48s;    /* larger layer */
}

/* Animated, subtle, scattered particles across the whole section */
.ls-why::before,
.ls-why::after{
  content:"";
  position:absolute;
  inset: -18%;              /* extra room so motion never reveals edges */
  pointer-events:none;
  z-index: 0;
  opacity: var(--ls-particles-opacity);
  background-repeat: no-repeat;
  transform: translate3d(0,0,0);
  will-change: transform;
}

/* Layer 1: smaller dots (slightly stronger) */
.ls-why::before{
  background-image:
    radial-gradient(circle, rgba(32, 55, 85, 0.18) 0 1.4px, transparent 2.4px),
    radial-gradient(circle, rgba(32, 55, 85, 0.16) 0 1.2px, transparent 2.2px),
    radial-gradient(circle, rgba(32, 55, 85, 0.14) 0 1.0px, transparent 2.0px),
    radial-gradient(circle, rgba(32, 55, 85, 0.16) 0 1.2px, transparent 2.2px),
    radial-gradient(circle, rgba(32, 55, 85, 0.14) 0 1.0px, transparent 2.0px),
    radial-gradient(circle, rgba(32, 55, 85, 0.16) 0 1.2px, transparent 2.2px),
    radial-gradient(circle, rgba(32, 55, 85, 0.14) 0 1.0px, transparent 2.0px),
    radial-gradient(circle, rgba(32, 55, 85, 0.16) 0 1.2px, transparent 2.2px),
    radial-gradient(circle, rgba(32, 55, 85, 0.14) 0 1.0px, transparent 2.0px),
    radial-gradient(circle, rgba(32, 55, 85, 0.16) 0 1.2px, transparent 2.2px),
    radial-gradient(circle, rgba(32, 55, 85, 0.14) 0 1.0px, transparent 2.0px),
    radial-gradient(circle, rgba(32, 55, 85, 0.16) 0 1.2px, transparent 2.2px),
    radial-gradient(circle, rgba(32, 55, 85, 0.14) 0 1.0px, transparent 2.0px),
    radial-gradient(circle, rgba(32, 55, 85, 0.16) 0 1.2px, transparent 2.2px);

  background-size:
    10px 10px, 8px 8px, 12px 12px, 9px 9px,
    10px 10px, 8px 8px, 12px 12px, 9px 9px,
    10px 10px, 8px 8px, 12px 12px, 9px 9px,
    10px 10px, 8px 8px;

  background-position:
    6% 12%, 14% 30%, 22% 18%, 34% 28%,
    46% 14%, 58% 24%, 70% 16%, 82% 22%,
    92% 14%, 10% 56%, 24% 74%, 40% 62%,
    56% 80%, 78% 72%;

  filter: blur(0.15px);
  animation: lsParticlesDrift1 var(--ls-particles-speed-1) linear infinite;
}

/* Layer 2: larger/fainter dots (slower, different path) */
.ls-why::after{
  background-image:
    radial-gradient(circle, rgba(32, 55, 85, 0.10) 0 2.0px, transparent 3.4px),
    radial-gradient(circle, rgba(32, 55, 85, 0.09) 0 1.8px, transparent 3.2px),
    radial-gradient(circle, rgba(32, 55, 85, 0.085) 0 1.6px, transparent 3.0px),
    radial-gradient(circle, rgba(32, 55, 85, 0.09) 0 1.8px, transparent 3.2px),
    radial-gradient(circle, rgba(32, 55, 85, 0.085) 0 1.6px, transparent 3.0px),
    radial-gradient(circle, rgba(32, 55, 85, 0.09) 0 1.8px, transparent 3.2px),
    radial-gradient(circle, rgba(32, 55, 85, 0.085) 0 1.6px, transparent 3.0px),
    radial-gradient(circle, rgba(32, 55, 85, 0.09) 0 1.8px, transparent 3.2px),
    radial-gradient(circle, rgba(32, 55, 85, 0.085) 0 1.6px, transparent 3.0px),
    radial-gradient(circle, rgba(32, 55, 85, 0.09) 0 1.8px, transparent 3.2px);

  background-size:
    18px 18px, 20px 20px, 22px 22px, 19px 19px, 21px 21px,
    18px 18px, 20px 20px, 22px 22px, 19px 19px, 21px 21px;

  background-position:
    12% 20%, 26% 10%, 42% 22%, 60% 14%, 78% 26%,
    18% 86%, 36% 74%, 54% 92%, 72% 78%, 90% 88%;

  filter: blur(0.25px);
  animation: lsParticlesDrift2 var(--ls-particles-speed-2) linear infinite;
}

@keyframes lsParticlesDrift1{
  0%   { transform: translate3d(0,0,0) rotate(0deg); }
  50%  { transform: translate3d(-2.5%, 1.5%, 0) rotate(0.4deg); }
  100% { transform: translate3d(-5%, 3%, 0) rotate(0.8deg); }
}

@keyframes lsParticlesDrift2{
  0%   { transform: translate3d(0,0,0) rotate(0deg); }
  50%  { transform: translate3d(1.8%, -1.2%, 0) rotate(-0.3deg); }
  100% { transform: translate3d(3.6%, -2.4%, 0) rotate(-0.6deg); }
}

/* Respect reduced-motion preferences */
@media (prefers-reduced-motion: reduce){
  .ls-why::before,
  .ls-why::after{ animation: none !important; }
}

/* Keep content above particles */
.ls-why__inner{
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ls-why__top{
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 42px;
  align-items: start;
}

.ls-why__copy{ max-width: 640px; }

.ls-why__h{
  margin: 0 0 14px;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.ls-why__sh{
  font-size: 20px;
  font-weight: 650;
  margin: 0 0 18px;
}

.ls-why__p{
  opacity: .85;
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 560px;
}

.ls-why__no{
  background: #EAF3F8;
  border-radius: 14px;
  padding: 22px 22px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.ls-why__no-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.ls-why__no-item{ display:flex; gap: 12px; align-items: flex-start; }

.ls-why__x{
  width: 18px; height: 18px;
  color: #EF4444;
  flex: 0 0 18px;
  margin-top: 2px;
}

.ls-why__x svg{ width:100%; height:100%; }

.ls-why__no-prefix{ font-weight: 800; }

.ls-why__art{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height: 340px;
  padding: 18px 0 36px;
  position: relative;
  color: #2F5E67;
}

.ls-why__art.is-hidden{ display:none; }

.ls-why__shield{
  width: 250px;
  height: auto;
  display: block;
  overflow: visible;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,0.10));
}

.ls-why__yes{
  margin-top: 34px;
  background: #fff;
  border-radius: 16px;
  padding: 26px 26px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.08);
}

.ls-why__yes-title{
  margin: 0 0 14px;
  font-size: 26px;
  font-weight: 750;
}

.ls-why__yes-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}

.ls-why__yes-item{ display:flex; gap: 12px; align-items: flex-start; }

.ls-why__check{
  width: 18px; height: 18px;
  color: #16A34A;
  flex: 0 0 18px;
  margin-top: 2px;
}

.ls-why__check svg{ width:100%; height:100%; }

.ls-why__yes-text{ opacity: .9; line-height: 1.5; }

@media (max-width: 1024px){
  .ls-why__h{ font-size: 44px; }
  .ls-why__top{ grid-template-columns: 1fr; }
  .ls-why__art{ min-height: 240px; justify-content:flex-start; padding-bottom: 18px; }
  .ls-why__shield{ width: 220px; }
}

@media (max-width: 600px){
  .ls-why__h{ font-size: 36px; }
  .ls-why__yes-list{ grid-template-columns: 1fr; }
}
