.servicesPage {
  padding-top: 100px;
}

.intro {
  text-align: center;
  max-width: 800px;
  margin: 40px auto 80px;
}

.intro h1 {
  margin-bottom: 20px;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.serviceSection {
  padding: 100px 0;
  position: relative;
}

.serviceSection::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-brand);
  opacity: 0.2;
}

.serviceSection:nth-child(even) {
  background-color: var(--bg-light);
}

.serviceSection:nth-child(even) .serviceTitle {
  color: var(--text-on-light);
}

.serviceSection:nth-child(even) p {
  color: var(--text-on-light-muted);
}

.serviceSection:nth-child(even) .roiLabel {
  color: var(--text-on-light-muted);
}

.serviceSection:nth-child(even) .roiBox {
  background: rgba(33, 49, 122, 0.05);
  border-color: rgba(33, 49, 122, 0.2);
}

.grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.serviceSection:nth-child(even) .grid {
  grid-template-columns: 1fr 1.2fr;
}

.serviceContent {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.serviceTitle {
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  gap: 16px;
}

.serviceTitleIcon {
  color: var(--accent-cyan);
}

.techList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.roiBox {
  display: flex;
  gap: 40px;
  background: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 20px 30px;
  border-radius: var(--border-radius-md);
  margin-top: 10px;
}

.roiItem {
  display: flex;
  flex-direction: column;
}

.roiValue {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.roiLabel {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Diagrams */
.diagramContainer {
  background: rgba(10, 25, 47, 0.6);
  border: 1px solid rgba(0, 240, 255, 0.1);
  border-radius: var(--border-radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  box-shadow: var(--glass-shadow);
}

.diagramTitle {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.svgDiagram {
  width: 100%;
  max-width: 400px;
  height: auto;
}

@media (max-width: 992px) {
  .grid, .serviceSection:nth-child(even) .grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .serviceSection:nth-child(even) .serviceContent {
    order: -1;
  }
}
