/* Why Choose Us */
.why-choose {
  padding: 80px 0 76px;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.why-header {
  text-align: center;
  margin-bottom: 48px;
}

.why-main-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.42rem);
  font-weight: 700;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--color-red);
  line-height: 1.35;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}

.why-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  text-align: left;
  padding: 26px 18px 26px 20px;
  min-height: 164px;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.why-item:hover {
  border-color: var(--color-red);
  background: #0d0d0d;
  box-shadow: 0 0 0 1px rgba(227, 30, 36, 0.15);
}

.why-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon-img {
  width: 52px;
  height: 52px;
  display: block;
  object-fit: contain;
}

.why-item-content {
  flex: 1;
  min-width: 0;
}

.why-item h3 {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  line-height: 1.4;
  color: #ffffff;
  margin: 0 0 10px;
}

.why-item p {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1280px) {
  .why-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
  }

  .why-item {
    min-height: 156px;
    padding: 24px 18px;
  }

  .why-item h3 {
    font-size: 0.92rem;
  }
}

@media (max-width: 900px) {
  .why-choose {
    padding: 68px 0 64px;
  }

  .why-header {
    margin-bottom: 36px;
  }

  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-item {
    min-height: auto;
    padding: 22px 18px;
    gap: 16px;
  }

  .why-icon {
    width: 58px;
    height: 58px;
  }

  .why-icon-img {
    width: 48px;
    height: 48px;
  }

  .why-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .why-item p {
    font-size: 0.88rem;
  }
}
