.services-section {
  padding-block: var(--space-section);
}

.services-section + .services-section {
  border-top: 1px solid var(--color-border);
}

.services-section--alt {
  background-color: var(--color-bg-light);
}

.services-section h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}

.services-section__intro {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 540px;
  margin-bottom: var(--space-lg);
  line-height: var(--leading-relaxed);
}

/* =============================================
   SPLIT LAYOUT — shared by Builds + Time Blocks
   ============================================= */

.services-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(2rem, 5vw, 6rem);
}

.services-split__content {
  min-width: 0;
}

.services-split__detail {
  min-width: 0;
}

/* =============================================
   BUILDS — detail card + checklist
   ============================================= */

.services-detail-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: var(--space-xl);
}

.services-detail-card__label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

/* =============================================
   INCLUDED LIST
   ============================================= */

.included-list {
  margin: 0;
}

.included-list li {
  padding: 0.6rem 0 0.6rem 1.5rem;
  position: relative;
  font-size: var(--text-base);
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-primary);
  line-height: var(--leading-relaxed);
}

.included-list li:last-child {
  border-bottom: none;
}

.included-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: var(--weight-bold);
}

/* =============================================
   TIME BLOCK CARDS
   ============================================= */

.time-block-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.time-block-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}

.time-block-card--featured {
  border-left-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.time-block-card__name {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-secondary);
  margin: 0;
  min-width: 60px;
}

.time-block-card__hours {
  font-size: var(--text-2xl);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  line-height: 1;
  margin: 0;
}

.time-block-card__hours span {
  font-size: var(--text-sm);
  font-weight: var(--weight-normal);
  color: var(--color-text-secondary);
}

.time-block-card__total {
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-accent);
  margin: 0;
  text-align: right;
}

/* =============================================
   NOTES
   ============================================= */

.services-section__pricing-note {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  font-style: italic;
  margin-bottom: var(--space-lg);
  line-height: var(--leading-relaxed);
  max-width: 520px;
}

.time-blocks-note {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-top: var(--space-sm);
  line-height: var(--leading-relaxed);
  max-width: 480px;
}

.maintenance-note {
  text-align: center;
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  margin-top: var(--space-xl);
  font-style: italic;
}

/* =============================================
   SERVICE BANNER (Maintenance dark header)
   ============================================= */

.service-banner {
  position: relative;
  overflow: hidden;
  background: var(--color-dark);
  padding-block: clamp(3rem, 6vw, 5rem);
}


.service-banner__content {
  position: relative;
  z-index: 1;
}

.service-banner__content h2 {
  color: white;
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}

.service-banner__intro {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.7);
  max-width: 620px;
  line-height: var(--leading-relaxed);
  margin: 0;
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  .services-split {
    grid-template-columns: 1fr;
  }

  .services-split__detail {
    order: -1;
  }
}
