.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.products-grid-5 {
  grid-template-columns: repeat(5, 1fr);
  max-width: 1400px;
}
.product-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s var(--ease-smooth), transform 0.3s var(--ease-smooth);
}
.product-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.product-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 16px;
  font-family: var(--font-mono);
}
.product-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.product-card p { color: var(--text-secondary); font-size: 0.88rem; line-height: 1.6; }
.product-meta { margin-top: 16px; }
.product-price { display: block; font-weight: 700; font-size: 0.95rem; }
.product-tag {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 4px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.price-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s, transform 0.3s;
}
.price-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}
.price-desc { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 8px; }
.price-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.price-amount { font-size: 3rem; font-weight: 800; margin: 16px 0 4px; }
.price-period { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 24px; }
.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}
.price-features li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.price-features li::before {
  content: '\2713';
  color: var(--green);
  margin-right: 12px;
  font-weight: 700;
}
.price-cta-group { display: flex; flex-direction: column; gap: 12px; }

.screenshot { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.screenshot img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

@media (max-width: 1280px) {
  .products-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .products-grid, .products-grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .products-grid { grid-template-columns: 1fr; }
}
