.services-page .website-service-strip {
  margin-top: 18px;
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  overflow: hidden;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(120deg, #102a3d, #154f73);
  box-shadow: 0 18px 42px rgba(16, 42, 61, 0.16);
}

.services-page .website-service-strip > span {
  color: #d6ab68;
  font: 700 11px "Courier New", monospace;
}

.services-page .website-service-strip h3,
.services-page .website-service-strip p {
  margin: 0;
}

.services-page .website-service-strip h3 {
  color: #fff;
  font-size: 20px;
}

.services-page .website-service-strip p {
  margin-top: 7px;
  color: #c6d6da;
  font-size: 12px;
  line-height: 1.8;
}

.services-page .website-service-strip a {
  padding: 12px 16px;
  border: 1px solid rgba(214, 171, 104, 0.7);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.services-page .website-service-strip a:hover {
  background: rgba(214, 171, 104, 0.12);
}

@media (max-width: 700px) {
  .services-page .website-service-strip {
    padding: 24px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services-page .website-service-strip a {
    justify-self: start;
  }
}

.services-page .primary-hero__photo img {
  object-position: center 28%;
}

.services-section-nav {
  justify-content: space-between;
}

.services-section-nav > strong {
  flex: 0 0 auto;
  color: #b78942;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.services-section-nav > div {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 36px;
}

.service-paths,
.service-catalog,
.service-process,
.service-credential {
  scroll-margin-top: 86px;
}

.service-paths {
  padding: 96px 6vw 104px;
  background: #fff;
}

.service-hub-heading {
  max-width: 820px;
  margin: 0 auto 50px;
}

.service-hub-heading > span {
  color: #b78942;
  font: 700 10px/1.4 "Courier New", monospace;
  letter-spacing: 0.16em;
}

.service-hub-heading h2 {
  margin: 16px 0 18px;
  color: #142d43;
  font: 600 clamp(34px, 4vw, 52px)/1.25 "LongC Corporate Sans", "Microsoft YaHei UI", sans-serif;
  letter-spacing: -0.035em;
}

.service-hub-heading p {
  max-width: 760px;
  margin: 0;
  color: #667b7e;
  font-size: 14px;
  line-height: 1.9;
}

.service-hub-heading--center {
  text-align: center;
}

.service-hub-heading--center p {
  margin-right: auto;
  margin-left: auto;
}

.service-path-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-path-card {
  min-height: 290px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid #ded8cb;
  border-radius: 18px;
  color: #142d43;
  background: linear-gradient(150deg, #fff 0 78%, #f4efe5 78%);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-path-card:hover {
  transform: translateY(-4px);
  border-color: #b78942;
  box-shadow: 0 18px 38px rgba(20, 45, 67, 0.1);
}

.service-path-card > span {
  color: #b78942;
  font: 700 11px/1.4 "Courier New", monospace;
}

.service-path-card h3 {
  margin: 34px 0 14px;
  color: inherit;
  font-size: 22px;
  line-height: 1.45;
}

.service-path-card p {
  margin: 0;
  color: #718184;
  font-size: 13px;
  line-height: 1.8;
}

.service-path-card b {
  margin-top: auto;
  padding-top: 28px;
  color: #154f73;
  font-size: 12px;
}

.service-path-card--digital {
  color: #fff;
  border-color: #154f73;
  background: linear-gradient(145deg, #102a3d, #154f73);
}

.service-path-card--digital p {
  color: #c5d3d7;
}

.service-path-card--digital b {
  color: #d6ab68;
}

.service-catalog {
  padding: 100px 6vw;
  background: #f4f1e9;
}

.service-category-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.service-category {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d8d1c2;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(20, 45, 67, 0.06);
}

.service-category > header {
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  color: #fff;
  background: #102a3d;
}

.service-category > header > span {
  color: #d6ab68;
  font: 700 11px/1.5 "Courier New", monospace;
}

.service-category > header small {
  color: #8fa8b2;
  font: 700 9px/1.5 "Courier New", monospace;
  letter-spacing: 0.12em;
}

.service-category > header h3 {
  margin: 6px 0 8px;
  color: #fff;
  font-size: 24px;
}

.service-category > header p {
  margin: 0;
  color: #c4d2d6;
  font-size: 12px;
  line-height: 1.7;
}

.service-category__links {
  padding: 8px 30px 14px;
}

.service-category__links > a {
  position: relative;
  padding: 20px 42px 20px 0;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 4px 16px;
  border-bottom: 1px solid #e5e0d6;
  color: #142d43;
}

.service-category__links > a:last-child {
  border-bottom: 0;
}

.service-category__links > a > span {
  grid-row: 1 / 3;
  color: #b78942;
  font-size: 10px;
  font-weight: 700;
}

.service-category__links strong {
  font-size: 16px;
}

.service-category__links p {
  margin: 0;
  color: #718184;
  font-size: 11px;
  line-height: 1.65;
}

.service-category__links b {
  position: absolute;
  right: 0;
  top: 50%;
  color: #154f73;
  font-size: 11px;
  transform: translateY(-50%);
}

.service-category > footer {
  padding: 16px 30px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #e1dbcf;
  color: #667b7e;
  background: #f8f5ee;
  font-size: 11px;
}

.service-category > footer a {
  color: #154f73;
  font-weight: 700;
}

.service-category--digital > header {
  background: #154f73;
}

.service-digital-offer {
  min-height: 475px;
  display: grid;
  grid-template-rows: 230px 1fr;
}

.service-digital-offer > img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: center;
}

.service-digital-offer > div {
  padding: 26px 30px 30px;
}

.service-digital-offer > div > span {
  color: #b78942;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.service-digital-offer h4 {
  margin: 8px 0 16px;
  color: #142d43;
  font-size: 21px;
}

.service-digital-offer ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
  list-style: none;
  color: #667b7e;
  font-size: 12px;
}

.service-digital-offer li::before {
  margin-right: 8px;
  color: #b78942;
  content: "—";
}

.service-digital-offer p {
  margin: 22px 0 18px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.service-digital-offer p strong {
  color: #154f73;
  font-size: 26px;
}

.service-digital-offer p small {
  color: #718184;
  font-size: 11px;
}

.service-digital-offer a {
  display: inline-flex;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: #154f73;
  font-size: 11px;
  font-weight: 700;
}

.service-process {
  padding: 100px 6vw 86px;
  color: #fff;
  background: #102a3d;
}

.service-hub-heading--light {
  max-width: 1360px;
}

.service-hub-heading--light h2 {
  color: #fff;
}

.service-hub-heading--light p {
  color: #b8c9ce;
}

.service-process ol {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.service-process li {
  min-height: 230px;
  padding: 30px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.service-process li:last-child {
  border-right: 0;
}

.service-process li span {
  color: #d6ab68;
  font: 700 11px "Courier New", monospace;
}

.service-process li strong {
  margin: 38px 0 12px;
  display: block;
  font-size: 19px;
}

.service-process li p {
  margin: 0;
  color: #b8c9ce;
  font-size: 12px;
  line-height: 1.8;
}

.service-process__note {
  max-width: 1360px;
  margin: 24px auto 0;
  color: #8fa8b2;
  font-size: 11px;
}

.service-credential {
  min-height: 620px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #e8dfcc;
}

.service-credential__copy {
  padding: 90px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-credential__copy > span {
  color: #b78942;
  font: 700 10px "Courier New", monospace;
  letter-spacing: 0.14em;
}

.service-credential__copy h2 {
  margin: 18px 0;
  color: #142d43;
  font: 600 clamp(34px, 4vw, 50px)/1.25 "LongC Corporate Sans", "Microsoft YaHei UI", sans-serif;
}

.service-credential__copy > p {
  margin: 0;
  color: #667b7e;
  font-size: 13px;
  line-height: 1.9;
}

.service-credential dl {
  margin: 28px 0;
  border-top: 1px solid rgba(20, 45, 67, 0.22);
}

.service-credential dl div {
  padding: 14px 0;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  border-bottom: 1px solid rgba(20, 45, 67, 0.22);
}

.service-credential dt {
  color: #718184;
  font-size: 11px;
}

.service-credential dd {
  margin: 0;
  color: #142d43;
  font-size: 12px;
  font-weight: 700;
}

.service-credential__copy > a {
  align-self: flex-start;
  padding: 12px 16px;
  border-radius: 999px;
  color: #fff;
  background: #154f73;
  font-size: 11px;
  font-weight: 700;
}

.service-credential figure {
  margin: 0;
  padding: 64px 6vw 44px;
  display: grid;
  place-items: center;
  align-content: center;
  background: #f8f5ee;
}

.service-credential figure a {
  width: min(100%, 540px);
  height: 500px;
  padding: 20px;
  display: grid;
  place-items: center;
  border: 1px solid #d8d1c2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(20, 45, 67, 0.1);
}

.service-credential figure img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-credential figcaption {
  margin-top: 16px;
  color: #718184;
  font-size: 11px;
}

@media (max-width: 1000px) {
  .services-section-nav {
    justify-content: flex-start;
  }

  .services-section-nav > div {
    gap: 28px;
  }

  .service-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-category-grid,
  .service-credential {
    grid-template-columns: 1fr;
  }

  .service-process ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-process li:nth-child(2) {
    border-right: 0;
  }

  .service-process li:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
}

@media (max-width: 600px) {
  .services-section-nav {
    gap: 24px;
  }

  .services-section-nav > div {
    gap: 20px;
  }

  .service-paths,
  .service-catalog,
  .service-process {
    padding: 72px 16px;
  }

  .service-hub-heading {
    margin-bottom: 34px;
  }

  .service-hub-heading h2 {
    font-size: 34px;
  }

  .service-hub-heading p {
    font-size: 13px;
  }

  .service-path-grid,
  .service-process ol {
    grid-template-columns: 1fr;
  }

  .service-path-card {
    min-height: 235px;
  }

  .service-category > header {
    padding: 24px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .service-category > header h3 {
    font-size: 21px;
  }

  .service-category__links {
    padding: 6px 22px 12px;
  }

  .service-category__links > a {
    padding: 18px 34px 18px 0;
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .service-category__links > a > span {
    grid-row: auto;
  }

  .service-category__links p {
    padding-right: 4px;
  }

  .service-category > footer {
    padding: 16px 22px;
    display: grid;
  }

  .service-digital-offer {
    grid-template-rows: 190px 1fr;
  }

  .service-digital-offer > img {
    height: 190px;
  }

  .service-digital-offer > div {
    padding: 24px 22px 28px;
  }

  .service-digital-offer p {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .service-process li,
  .service-process li:nth-child(2) {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .service-process li:last-child {
    border-bottom: 0;
  }

  .service-credential__copy {
    padding: 72px 20px;
  }

  .service-credential__copy h2 {
    font-size: 34px;
  }

  .service-credential dl div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .service-credential figure {
    padding: 48px 20px 60px;
  }

  .service-credential figure a {
    height: 420px;
  }
}
