.fleet {
  padding: 56px 0;
}

.fleet__container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.fleet__head {
  margin-bottom: 28px;
  text-align: center;
}

.fleet__title {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  font-weight: 700;
  color: #111827;
}

.fleet__subtitle {
  margin: 0 auto;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.6;
  color: #4b5563;
}

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fleet-card {
  display: flex;
  flex-direction: column;
  
  padding: 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.1);
  border-color: #d1d5db;
}

.fleet-card--vip {
  background: linear-gradient(180deg, #ffffff 0%, #f8f5ff 100%);
  border-color: #ddd6fe;
}

.fleet-card__title {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 700;
  color: #111827;
}

.fleet-card__title span {
  display: block;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 600;
  color: #6b7280;
}

.fleet-card__desc {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.65;
  color: #4b5563;
}

.fleet-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.fleet-card__list li {
  padding-bottom: 10px;
  border-bottom: 1px solid #f1f5f9;
  font-size: 15px;
  line-height: 1.5;
  color: #374151;
}

.fleet-card__list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.fleet-card__bottom {
  margin-top: auto;
  padding-top: 18px;
}

.fleet-card__price {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.fleet-card__price span {
  color: #2563eb;
}

.fleet__note {
  margin-top: 28px;
  padding: 22px 24px;
  border-radius: 18px;
  background: #111827;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.fleet__note p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}

.fleet__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  background: #2563eb;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.25s ease, transform 0.25s ease;
}

.fleet__btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
}

@media (max-width: 1100px) {
  .fleet__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .fleet {
    padding: 40px 0;
  }

  .fleet__container {
    width: min(100% - 20px, 1200px);
  }

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

  .fleet-card {
    padding: 18px;
    border-radius: 16px;
  }

  .fleet-card__title {
    font-size: 20px;
  }

  .fleet-card__desc,
  .fleet-card__list li,
  .fleet__note p {
    font-size: 14px;
  }

  .fleet__note {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .fleet__btn {
    width: 100%;
  }
}