/* ═══════════════════════════════════════════════════════════
   SEO PRO E-SHOP — page-specific styly
   (jen to, co není v style.css ani v page.css)
   ═══════════════════════════════════════════════════════════ */

/* ---------- Mřížka 6 karet = 3 + 3 (ne 4 + 2) ---------- */
.benefits-grid.es-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1000px;
}
@media (max-width: 900px) {
  .benefits-grid.es-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .benefits-grid.es-grid-3 { grid-template-columns: 1fr; }
}

/* ── PROCESS (tmavá sekce) ──
   style.css má .process { background: #FFFFFF } + navy texty pro bílou.
   Tady to přebíjíme na dark-bg variantu (stejně jako seo.css / grafika.css / copywriting.css). */
.process {
  background: var(--primary-dark);
}
.process .section-title {
  background: var(--gold-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.process .section-label {
  background: var(--silver-gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}
.process .section-subtitle {
  color: var(--mist) !important;
  -webkit-text-fill-color: var(--mist) !important;
}
.process .section-desc {
  color: var(--mist) !important;
}
.process .step-title {
  color: var(--ghost) !important;
}
.process .step-desc {
  color: var(--mist) !important;
  -webkit-text-fill-color: var(--mist) !important;
}
.process .timeline-node span {
  background: var(--primary-dark) !important;
}
