#pse-ne { background: var(--dark); }

.why-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tire-svg {
  width: 380px;
  height: 380px;
  animation: spin-slow 20s linear infinite;
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.tire-center-badge {
  position: absolute;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--red), var(--accent));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 0 60px rgba(230,57,70,0.5);
}
.tire-center-badge .big   { font-size: 2rem; font-weight: 900; }
.tire-center-badge .small { font-size: .65rem; letter-spacing: 1px; opacity: .85; }

.why-list { display: flex; flex-direction: column; gap: 22px; margin-top: 40px; }

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--dark2);
  padding: 22px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
  transition: border-color .3s;
}
.why-item:hover { border-color: rgba(230,57,70,0.3); }

.why-icon { font-size: 1.4rem; color: var(--red); margin-top: 2px; flex-shrink: 0; }
.why-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: 4px; }
.why-item p  { font-size: .83rem; color: var(--gray); line-height: 1.55; }
