.why-choose-amd {
  background: linear-gradient(180deg, #fff 0%, #f7f5f2 100%);
}

.why-choose-amd .section-title {
  padding-bottom: 38px;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
}

.why-choose-item {
  --card-accent: #708d92;
  position: relative;
  grid-column: span 2;
  min-height: 280px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(112, 141, 146, 0.2);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(52, 52, 52, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.why-choose-item:nth-child(2),
.why-choose-item:nth-child(5) {
  --card-accent: #de470d;
}

.why-choose-item:nth-child(3) {
  --card-accent: #343434;
}

.why-choose-item:nth-child(4) {
  grid-column: 2 / span 2;
}

.why-choose-item::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--card-accent);
  content: "";
}

.why-choose-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(52, 52, 52, 0.13);
}

.why-choose-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--card-accent) 12%, white);
  color: var(--card-accent);
  font-size: 13px;
  font-weight: 700;
}

.why-choose-item h3 {
  margin-bottom: 14px;
  color: #343434;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.3;
}

.why-choose-item p {
  margin-bottom: 0;
  line-height: 1.7;
}

.why-choose-action,
.service-area-action {
  margin-top: 34px;
  text-align: center;
}

.why-choose-action .btn-buy,
.service-area-action .btn-buy {
  display: inline-block;
  padding: 13px 34px;
  border: 1px solid #343434;
  border-radius: 6px;
  background: #343434;
  color: #fff;
  box-shadow: 0 10px 24px rgba(52, 52, 52, 0.18);
  font-size: 15px;
  font-weight: 600;
  transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.why-choose-action .btn-buy:hover,
.why-choose-action .btn-buy:focus,
.service-area-action .btn-buy:hover,
.service-area-action .btn-buy:focus {
  background: #de470d;
  border-color: #de470d;
  color: #fff;
  transform: translateY(-2px);
}

.service-area-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.service-area-list li {
  padding: 16px 18px;
  border-left: 4px solid #de470d;
  border-radius: 4px;
  background: #fff;
  color: #343434;
  font-weight: 600;
}

.service-area-action {
  margin-top: 28px;
}

@media screen and (max-width: 768px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why-choose-item,
  .why-choose-item:nth-child(4) {
    grid-column: auto;
    min-height: 0;
  }

  .why-choose-item:last-child {
    grid-column: 1 / -1;
  }

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

@media screen and (max-width: 576px) {
  .why-choose-amd .section-title {
    padding-bottom: 28px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-choose-item {
    grid-column: 1 !important;
    padding: 24px;
  }

  .why-choose-number {
    margin-bottom: 18px;
  }

  .service-area-list {
    grid-template-columns: 1fr;
  }

  .why-choose-action .btn-buy,
  .service-area-action .btn-buy {
    width: 100%;
  }
}