.services-page {
  min-height: 100vh;
  padding: 140px 0 80px;
  background:
    radial-gradient(circle at 10% 16%, rgba(33, 191, 227, 0.12) 0, transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(174, 103, 226, 0.08) 0, transparent 28%),
    linear-gradient(180deg, #0b1016 0%, #0b1016 100%);
}

.services-hero-shell {
  display: grid;
  gap: 4rem;
}

.services-hero-copy {
  display: grid;
  gap: 1.8rem;
}

.services-title {
  margin: 0;
  color: #ffffff;
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: normal;
}

.services-subtitle {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
}

.services-gradient-blue {
  background: linear-gradient(90deg, #2ec7dc 0%, #6e95f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-gradient-purple {
  background: linear-gradient(90deg, #b96be3 0%, #8c87ef 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-gradient-line {
  background: linear-gradient(90deg, #2ec7dc 0%, #6e95f0 54%, #b96be3 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.services-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 5rem;
  align-items: center;
  margin-bottom: 120px;
  padding-top: 0;
}

.services-visual {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.services-visual img {
  display: block;
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  height: auto;
  border-radius: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.services-copy {
  max-width: 46rem;
}

.services-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1.8;
}

.services-statement-section {
  padding: 0 0 120px;
}

.services-statement {
  display: block;
  margin: 0 auto;
  width: min(90vw, 72rem);
  max-width: 72rem;
  text-align: center;
  padding: 0;
  color: #ffffff;
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: -0.05em;
}

.services-list-section {
  padding: 0 0 80px;
}

.services-list-panel {
  padding: 5rem;
  border-radius: 3rem;
  border: 1px solid rgba(82, 93, 111, 0.75);
  background:
    radial-gradient(circle at 0% 0%, rgba(33, 191, 227, 0.16) 0, transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(174, 103, 226, 0.1) 0, transparent 36%),
    linear-gradient(180deg, rgba(18, 22, 31, 0.98) 0%, rgba(14, 17, 25, 0.98) 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.services-list-title {
  margin: 0;
  color: #ffffff;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.services-list-divider {
  width: 100%;
  height: 1px;
  margin: 4rem 0;
  background: rgba(145, 163, 183, 0.28);
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 2rem;
}

.services-list li {
  position: relative;
  padding-left: 2.5rem;
  color: var(--text-muted);
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: 400;
}

.services-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #1DBBD1;
  font-size: 2rem;
  line-height: 1;
  top: -0.2rem;
}

@media (max-width: 991px) {
  .services-page {
    padding-top: 140px;
  }

  .services-hero-shell {
    gap: 3rem;
  }

  .services-intro-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-top: 0;
    margin-bottom: 120px;
  }

  .services-copy {
    max-width: none;
  }

  .services-statement-section {
    padding-bottom: 120px;
  }

  .services-statement {
    width: min(92vw, 48rem);
    max-width: 48rem;
    font-size: 2rem;
  }

  .services-list-section {
    padding-bottom: 80px;
  }

  .services-list-panel {
    padding: 3rem 2rem;
    border-radius: 2rem;
  }

  .services-list-divider {
    margin: 1.5rem 0 1.7rem;
  }

  .services-list {
    gap: 1.35rem;
  }
}

@media (max-width: 767px) {
  .services-page {
    padding: 6rem 0 3.5rem;
  }

  .services-hero-shell {
    gap: 2.25rem;
  }

  .services-title {
    font-size: 2.5rem;
  }

  .services-subtitle {
    font-size: 1.15rem;
  }

  .services-visual img {
    width: 100%;
    max-height: 400px;
    border-radius: 1.25rem;
  }

  .services-copy p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .services-statement-section {
    padding-top: 3rem;
  }

  .services-statement {
    max-width: 100%;
    font-size: 1.6rem;
    line-height: 1.35;
  }

  .services-list-section {
    padding-top: 3.25rem;
  }

  .services-list-panel {
    padding: 3rem 2rem;
    border-radius: 1.5rem;
  }

  .services-list-title {
    font-size: 2rem;
  }

  .services-list-divider {
    margin: 1.2rem 0 1.35rem;
  }

  .services-list {
    gap: 1rem;
  }

  .services-list li {
    padding-left: 1.8rem;
    font-size: 1rem;
  }

  .services-list li::before {
    font-size: 1.55rem;
    top: 0.65em;
    left: 0.25rem;
  }
}
