/* ============================================
   PIXELEVENTS — Services Page Styles
   ============================================ */

.services-page { background: var(--pearl); }

.svc-block { padding: 6rem 4rem; }
.svc-light { background: var(--pearl); }
.svc-pale  { background: var(--plum-ghost); }
.svc-dark  { background: var(--plum-deep); }

.svc-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.svc-reversed { direction: rtl; }
.svc-reversed > * { direction: ltr; }

.svc-pixel-icon-lg { margin-bottom: 1.5rem; }
.svc-block-num { font-size: 0.6rem; letter-spacing: 0.3em; color: var(--plum-light); font-weight: 300; display: block; margin-bottom: 0.6rem; }
.svc-block-text h2 { font-size: clamp(1.8rem,3vw,2.8rem); margin-bottom: 1rem; }
.svc-block-lead { font-family: var(--serif); font-size: 1.1rem; font-style: italic; color: var(--plum-mid); line-height: 1.6; margin-bottom: 1rem; font-weight: 300; }
.svc-block-text p { font-size: 0.92rem; color: var(--plum-dark); line-height: 1.9; font-weight: 300; margin-bottom: 0.8rem; }

.svc-includes { margin: 1.5rem 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.svc-includes li {
  font-size: 0.9rem;
  color: var(--plum-dark);
  font-weight: 300;
  padding-left: 1.2rem;
  position: relative;
}
.svc-includes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 5px;
  height: 5px;
  background: var(--plum-light);
  transform: rotate(45deg);
}

.svc-block-image {}
.svc-img {
  width: 100%;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder { font-family: var(--serif); font-style: italic; color: rgba(46,26,58,0.3); font-size: 0.85rem; }

/* COMPARE TABLE */
.compare-section { padding: 5rem 4rem 6rem; background: var(--plum-ghost); }
.compare-inner { max-width: 900px; margin: 0 auto; }
.compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.82rem; }
.compare-table th {
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--plum-mid);
  border-bottom: 1px solid var(--plum-pale);
  white-space: nowrap;
}
.compare-table th:not(:first-child) { text-align: center; }
.compare-table .featured-col { color: var(--plum-deep); border-bottom-color: var(--plum-soft); }
.compare-table td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--plum-pale);
  color: var(--plum-soft);
  font-weight: 300;
}
.compare-table td:not(:first-child) { text-align: center; color: var(--plum-mid); }
.compare-table tr:hover td { background: var(--pearl); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .svc-block { padding: 4rem 2.5rem; }
  .svc-block-inner { gap: 3rem; }
  .compare-section { padding: 4rem 2.5rem; }
}
@media (max-width: 768px) {
  .svc-block { padding: 3.5rem 1.5rem; }
  .svc-block-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-reversed { direction: ltr; }
  .svc-img { aspect-ratio: 16/9; max-height: 260px; }
  .compare-section { padding: 3.5rem 1.5rem; }
  .compare-table { min-width: 520px; }
}

@media (max-width: 480px) {
  .svc-block { padding: 3rem 1.2rem; }
  .compare-section { padding: 3rem 1.2rem; }
  .compare-table { min-width: 440px; }
  .compare-table th, .compare-table td { padding: 0.7rem 0.8rem; }
}
