.services-page .services-hero,
.service-detail-page .service-detail-hero {
  padding: 58px 0 40px;
  background: var(--color-white);
}

.services-page .services-hero .services-hero-container {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
  gap: 56px;
  align-items: center;
  padding: 44px 54px;
  border-radius: var(--card-radius);
  background: var(--color-surface);
  overflow: hidden;
}

.service-detail-page .service-detail-hero .service-detail-hero-container {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: 72px;
  align-items: center;
}

.services-page .services-hero .services-hero-container .services-hero-content .services-hero-title,
.service-detail-page .service-detail-hero .service-detail-hero-container .service-detail-hero-content .service-detail-title {
  margin: 0;
  font-size: var(--font-size-h1);
  line-height: var(--line-height-heading);
  letter-spacing: 0;
}

.service-detail-page .service-detail-hero .service-detail-hero-container .service-detail-hero-content .service-detail-title-line {
  display: block;
  width: 74px;
  height: 4px;
  margin: 30px 0 34px;
  border-radius: 999px;
  background: var(--color-accent);
}

.services-page .services-hero .services-hero-container .services-hero-content .services-hero-text,
.service-detail-page .service-detail-hero .service-detail-hero-container .service-detail-hero-content .service-detail-lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--color-ink-muted);
}

.service-detail-page .service-detail-hero .service-detail-hero-container .service-detail-hero-content .service-detail-lead {
  margin-top: 0;
}

.services-page .services-hero .services-hero-container .services-hero-content .services-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.services-page .services-hero .services-hero-container .services-hero-media,
.service-detail-page .service-detail-hero .service-detail-hero-container .service-detail-hero-media {
  border-radius: 8px;
  overflow: hidden;
}

.services-page .services-hero .services-hero-container .services-hero-media .services-hero-image,
.service-detail-page .service-detail-hero .service-detail-hero-container .service-detail-hero-media .service-detail-hero-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.services-page .services-technology {
  background: var(--color-surface);
}

.services-page .services-technology .services-technology-container .section-heading {
  max-width: 880px;
  margin-inline: auto;
  text-align: center;
}

.services-page .services-technology .services-technology-container .section-heading .section-text {
  margin-right: auto;
  margin-left: auto;
}

.services-page .services-technology .services-technology-container .services-technology-table-wrap {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid rgba(23, 36, 58, 0.28);
  background: rgba(255, 255, 255, 0.66);
  overflow-x: auto;
}

.services-page .services-technology .services-technology-container .services-technology-table-wrap .services-technology-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: var(--color-ink);
  font-size: 15px;
  line-height: 1.45;
}

.services-page .services-technology .services-technology-container .services-technology-table-wrap .services-technology-table th,
.services-page .services-technology .services-technology-container .services-technology-table-wrap .services-technology-table td {
  padding: 16px 18px;
  border: 1px solid rgba(23, 36, 58, 0.28);
  text-align: center;
  vertical-align: middle;
}

.services-page .services-technology .services-technology-container .services-technology-table-wrap .services-technology-table thead th {
  font-weight: 800;
}

.services-page .services-technology .services-technology-container .services-technology-table-wrap .services-technology-table tbody th {
  width: 31%;
  font-weight: 700;
}

.services-page .services-technology .services-technology-container .services-technology-note {
  max-width: 980px;
  margin: 18px auto 0;
  color: var(--color-ink);
  font-size: 15px;
}

.services-page .services-list {
  background: var(--color-white);
}

.services-page .services-list .services-list-container .section-heading {
  display: none;
}

.services-page .services-list .services-list-container .services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 980px;
  margin-inline: auto;
}

.services-page .services-list .services-list-container .services-grid .service-card .service-card-link {
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
}

.services-page .services-list .services-list-container .services-grid .service-card .service-card-link .service-card-media {
  height: 100%;
  min-height: 178px;
  aspect-ratio: auto;
}

.services-page .services-list .services-list-container .services-grid .service-card .service-card-link .service-card-content {
  padding: 28px;
}

.service-detail-page .service-detail-hero .service-detail-hero-container .service-detail-hero-content .service-detail-text {
  max-width: 660px;
  margin: 20px 0 0;
  color: var(--color-ink-muted);
}

.service-detail-page .service-detail-hero .service-detail-hero-container .service-detail-hero-content .service-detail-text p {
  margin: 0 0 16px;
}

.service-detail-page .request-form-section {
  padding: 42px 0 88px;
  background: var(--color-white);
}

.service-detail-page .request-form-section .request-form-panel {
  max-width: 1220px;
  padding-top: 66px;
  padding-bottom: 66px;
  box-shadow: 0 20px 58px rgba(23, 36, 58, 0.06);
}

@media (max-width: 980px) {
  .services-page .services-hero .services-hero-container,
  .service-detail-page .service-detail-hero .service-detail-hero-container {
    grid-template-columns: 1fr;
  }

  .services-page .services-list .services-list-container .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .services-page .services-hero,
  .service-detail-page .service-detail-hero {
    padding: 54px 0;
  }

  .services-page .services-hero .services-hero-container {
    padding: 28px;
  }

  .services-page .services-hero .services-hero-container .services-hero-content .services-hero-actions {
    display: grid;
  }

  .services-page .services-list .services-list-container .services-grid .service-card .service-card-link {
    grid-template-columns: 1fr;
  }

  .service-detail-page .request-form-section .request-form-panel {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}
