.services {
  padding: 40px 0;
  background: linear-gradient(180deg, var(--bg), var(--bg-dark));
}

.services .section-tag,
.services .section-title,
.services .section-subtitle {
  text-align: center;
  display: block;
}

.services-grid {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 30px;

  margin-top: 60px;
}

.service-card {
  background: var(--bg-light);

  border: 1px solid var(--border);

  border-radius: 20px;

  padding: 35px;

  box-shadow: var(--shadow-sm);

  transition: 0.35s;

  display: flex;

  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-10px);

  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 70px;

  height: 70px;

  display: flex;

  justify-content: center;

  align-items: center;

  border-radius: 18px;

  background: linear-gradient(135deg, var(--primary), #4f8cff);

  color: #fff;

  font-size: 28px;

  margin-bottom: 25px;
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--text);
}

.service-card p {
  color: var(--text-light);

  margin-bottom: 20px;
}

.service-card ul {
  margin-bottom: 25px;
}

.service-card ul li {
  margin-bottom: 10px;

  color: var(--text-light);
}

.price-box {
  margin-top: auto;

  margin-bottom: 20px;

  display: flex;

  align-items: center;

  gap: 15px;
}

.old-price {
  text-decoration: line-through;

  color: #999;
}

.new-price {
  font-size: 24px;

  font-weight: 700;

  color: var(--primary);
}

.service-btn {
  width: 100%;

  text-align: center;
}

@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 28px;
  }
}
