/* ============================================
   MEB CREATIV — Services Page Styles
   ============================================ */

.service-section {
  padding: var(--space-section) 0;
}

.service-section:nth-child(odd) {
  background: var(--color-white);
}

.service-section:nth-child(even) {
  background: var(--color-mist);
}

.service-section__header {
  margin-bottom: var(--space-10);
}

.service-section__number {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: var(--weight-black);
  color: rgba(91,110,245,0.08);
  line-height: 1;
  letter-spacing: var(--tracking-tight);
  position: absolute;
  top: -20px;
  left: 0;
  pointer-events: none;
  user-select: none;
}

.service-section__title-wrap {
  position: relative;
}

.service-section__tagline {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-electric);
  margin-bottom: var(--space-2);
}

.service-section__title {
  margin-bottom: var(--space-4);
}

.service-section__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-10);
  align-items: start;
}

.service-section__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.service-section__features li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-base);
  color: var(--color-slate-700);
  line-height: var(--leading-normal);
}

.service-section__features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: var(--gradient-brand);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 3L9 1' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"), var(--gradient-brand);
  background-repeat: no-repeat;
  background-position: center;
}

.service-section__cta {
  margin-top: var(--space-8);
}

@media (min-width: 768px) {
  .service-section__body {
    grid-template-columns: 1fr 1fr;
  }
}

/* Comparison Table Section */
.comparison-section {
  background: var(--color-mist);
  padding: var(--space-section) 0;
  overflow-x: auto;
}
