:root {
  --service-shadow: 0 4px 12px rgba(9, 92, 215, 0.12);
  --service-blue: #0067fa;
}

#capabilities {
  scroll-margin-top: 86px;
}

.service-title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.35rem, 2.82vw, 3.375rem);
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: 0.125rem;
  text-align: center;
}

.service-title span {
  color: var(--service-blue);
}

.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-width: 9.875rem;
  min-height: 3.2rem;
  padding: 0.65rem 2rem;
  border: 1px solid var(--service-blue);
  border-radius: 2.1rem;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.04rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.service-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 16px rgba(9, 92, 215, 0.18);
}

.service-button--primary {
  color: #fff;
  background: linear-gradient(90deg, #0067fa, #1393ec);
  box-shadow: 0 3px 7px rgba(9, 92, 215, 0.18);
}

.service-button--outline {
  color: var(--service-blue);
  background: #fff;
}

.service-hero {
  overflow: hidden;
  min-height: 50.875rem;
  background: #edf7ff url("../assets/service/image-hero-background.webp")
    center / cover no-repeat;
}

.service-hero__inner {
  position: relative;
  min-height: 50.875rem;
}

.service-hero__copy {
  position: relative;
  z-index: 2;
  width: 62.5rem;
  max-width: none;
  padding: 7.5rem 0 1rem;
}

.service-hero h1 {
  width: 62.5rem;
  max-width: 100%;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3.75rem, 4vw, 4.75rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.04rem;
}

.hero-title__line {
  display: block;
}

.hero-title__line--accent {
  display: block;
  color: var(--service-blue);
  font-size: 0.875em;
}

.hero-features {
  display: flex;
  width: 52.75rem;
  max-width: 100%;
  justify-content: space-between;
  gap: 1rem;
  margin: 3.75rem 0 3.5rem;
  padding: 0;
  list-style: none;
}

.hero-features li {
  display: flex;
  width: 8.2rem;
  align-items: center;
  flex-direction: column;
  gap: 0.65rem;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
}

.hero-feature__icon {
  display: grid;
  width: 5rem;
  height: 5rem;
  place-items: center;
  border-radius: 50%;
  background: url("../assets/service/decor-feature-dot1.svg") center / contain
    no-repeat;
  box-shadow:
    0 0.75rem 1.75rem rgba(37, 83, 145, 0.16),
    0 0.2rem 0.55rem rgba(0, 103, 250, 0.1);
}

.hero-feature__icon img {
  width: calc(3rem * var(--hero-icon-scale, 1));
  height: calc(3rem * var(--hero-icon-scale, 1));
  object-fit: contain;
}

.hero-features li:nth-child(1) {
  --hero-icon-scale: 0.98;
}
.hero-features li:nth-child(3) {
  --hero-icon-scale: 0.82;
}
.hero-features li:nth-child(4) {
  --hero-icon-scale: 1.08;
}
.hero-features li:nth-child(5) {
  --hero-icon-scale: 1.2;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-actions .service-button {
  font-size: 1rem;
}
.hero-actions .service-button:first-child {
  min-width: 17.5rem;
}
.hero-actions .service-button:last-child {
  min-width: 16rem;
}

.service-button--iconic .service-button__leading-icon {
  width: 1.4rem;
  height: 1.4rem;
  flex: 0 0 auto;
  object-fit: contain;
}

.service-button--iconic .service-button__arrow {
  width: 0.82rem;
  height: 1.45rem;
  flex: 0 0 auto;
  object-fit: contain;
  transform: rotate(90deg);
  transform-origin: center;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-button--iconic:hover .service-button__arrow {
  transform: translateX(0.32rem) rotate(90deg);
}

.hero-actions .service-button--outline img {
  width: 1.375rem;
  height: 1.375rem;
}

.service-hero__visual {
  position: absolute;
  right: -14rem;
  bottom: 0;
  width: 48.125rem;
  height: 49.125rem;
  object-fit: contain;
  object-position: right bottom;
  transform-origin: 58% 58%;
}

.hero-actions .service-button--primary > span {
  display: inline-block;
  animation: service-arrow-nudge 1.8s ease-in-out infinite;
}

@keyframes service-arrow-nudge {
  0%,
  100% {
    opacity: 0.7;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(0.35rem);
  }
}

.spatial-analysis {
  position: relative;
  min-height: 71rem;
  overflow: hidden;
  background-color: #fff;
  background-image: url("../assets/service/image-spatial-background.webp");
  background-position:
    calc(50% + 2rem + var(--spatial-motion-x, 0px))
    calc(50% + 1.5rem + var(--spatial-motion-y, 0px));
  background-size: cover;
  background-repeat: no-repeat;
}

.spatial-analysis__inner {
  position: relative;
  display: flex;
  min-height: 71rem;
  align-items: center;
}

.spatial-analysis__copy {
  position: relative;
  z-index: 2;
}

.spatial-analysis h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.75rem, 2.82vw, 3.375rem);
  line-height: 1.18;
  font-weight: 700;
}

.spatial-analysis h2 span {
  color: var(--service-blue);
}

.spatial-analysis__divider {
  display: block;
  width: 6.625rem;
  height: 0.2rem;
  margin: 1.55rem 0 0;
}

.spatial-analysis__copy p {
  max-width: 26rem;
  margin: 0.75rem 0 0;
  color: #81838d;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.01rem;
}

.why-analysis {
  overflow: hidden;
  background: #fafbfd url("../assets/service/image-section-background.png")
    center / cover no-repeat;
}

.why-analysis__inner {
  padding: 4.25rem 0 5.775rem;
}

.why-analysis__intro {
  display: grid;
  grid-template-columns: minmax(0, 53rem) 1fr;
  min-height: 34.25rem;
  gap: 2rem;
}

.why-analysis__copy {
  padding-top: 5.75rem;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 2.6rem;
  padding: 0.5rem 1.25rem;
  border-radius: 1.4rem;
  color: #095cd7;
  background: #f4f8ff;
  font-size: 1.125rem;
  line-height: 1.55;
  letter-spacing: 0.06rem;
}

.section-tag img {
  width: 1.5rem;
  height: 1.5rem;
}

.why-analysis h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.7rem, 2.82vw, 3.375rem);
  line-height: 1.38;
  font-weight: 700;
}

.why-analysis h2 span {
  color: var(--service-blue);
}

.title-rule {
  display: block;
  width: 6.625rem;
  height: 0.2rem;
  margin-top: 1.4rem;
  background: linear-gradient(90deg, var(--service-blue), transparent);
}

.analysis-benefits {
  display: flex;
  gap: 2.75rem;
  margin: 3.9rem 0 0;
  padding: 0;
  list-style: none;
}

.analysis-benefits li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.12rem;
  white-space: nowrap;
}

.analysis-benefits img {
  width: 2.75rem;
  height: 2.75rem;
}

.paper-barrier {
  position: relative;
  width: min(100%, 34.0625rem);
  aspect-ratio: 1;
  align-self: start;
  justify-self: end;
  margin: 0;
  isolation: isolate;
}

.paper-barrier__page {
  --paper-x: 0%;
  --paper-y: 0%;
  --paper-z: 1;
  --paper-width: 51%;
  --paper-scale: 0.975;
  --paper-tilt: -3deg;
  --paper-rotate: 0deg;
  position: absolute;
  z-index: var(--paper-z);
  top: var(--paper-y);
  left: var(--paper-x);
  display: block;
  width: var(--paper-width);
  height: auto;
  max-width: none;
  border: 1px solid rgba(22, 38, 68, 0.08);
  background: #fff;
  backface-visibility: hidden;
  box-shadow:
    0 1rem 2.25rem rgba(20, 43, 78, 0.13),
    0 0.25rem 0.7rem rgba(20, 43, 78, 0.1);
  cursor: zoom-in;
  transform: perspective(70rem) rotateY(var(--paper-tilt))
    rotateZ(var(--paper-rotate)) scale(var(--paper-scale));
  transform-origin: center center;
  transition:
    top 560ms cubic-bezier(0.22, 1, 0.36, 1),
    left 560ms cubic-bezier(0.22, 1, 0.36, 1),
    width 560ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms ease,
    filter 260ms ease;
}

.paper-barrier__page:is(:hover, :focus-visible),
.paper-barrier__page.is-paper-front {
  box-shadow:
    0 1.65rem 3.25rem rgba(20, 43, 78, 0.24),
    0 0.45rem 1rem rgba(0, 103, 250, 0.16);
  filter: saturate(1.04) brightness(1.015);
}

.paper-barrier__page:focus-visible {
  outline: 0.16rem solid rgba(0, 103, 250, 0.72);
  outline-offset: 0.2rem;
}

.paper-barrier__page.is-paper-turning {
  animation: service-paper-to-front 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.paper-barrier__page--hepatology {
  --paper-x: 49%;
  --paper-y: 0%;
  --paper-z: 1;
  --paper-rotate: 1.1deg;
}
.paper-barrier__page--communications {
  --paper-x: 40%;
  --paper-y: 7%;
  --paper-z: 2;
  --paper-rotate: -0.8deg;
}
.paper-barrier__page--nature-cancer {
  --paper-x: 31%;
  --paper-y: 14%;
  --paper-z: 3;
  --paper-rotate: 0.65deg;
}
.paper-barrier__page--cancer-cell {
  --paper-x: 22%;
  --paper-y: 21%;
  --paper-z: 4;
  --paper-rotate: -0.55deg;
}
.paper-barrier__page--single-cell {
  --paper-x: 13%;
  --paper-y: 28%;
  --paper-z: 5;
  --paper-rotate: 0.4deg;
}
.paper-barrier__page--cover {
  --paper-x: 0%;
  --paper-y: 29%;
  --paper-z: 6;
  --paper-width: 53.5%;
  --paper-scale: 1;
  --paper-tilt: 0deg;
  --paper-rotate: -0.8deg;
}

.paper-barrier__hint {
  position: absolute;
  right: 0;
  bottom: -2.55rem;
  display: inline-flex;
  min-height: 2.05rem;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(0, 103, 250, 0.12);
  border-radius: 999px;
  color: #42617f;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.55rem 1.4rem rgba(37, 83, 145, 0.12);
  font-size: 0.78rem;
  line-height: 1.2;
  white-space: nowrap;
  backdrop-filter: blur(0.5rem);
}

.paper-barrier__hint span {
  display: grid;
  width: 1.3rem;
  height: 1.3rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--service-blue);
  font-size: 0.78rem;
}

@keyframes service-paper-to-front {
  0% {
    transform: perspective(70rem) rotateY(-8deg)
      rotateZ(var(--paper-rotate)) scale(0.96);
  }
  48% {
    transform: perspective(70rem) rotateY(4deg)
      rotateZ(var(--paper-rotate)) scale(0.985);
  }
  100% {
    transform: perspective(70rem) rotateY(0deg)
      rotateZ(var(--paper-rotate)) scale(var(--paper-scale));
  }
}
body.is-paper-lightbox-open {
  overflow: hidden;
}

.paper-lightbox[hidden] {
  display: none;
}

.paper-lightbox {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  opacity: 0;
  transition: opacity 180ms ease;
}

.paper-lightbox.is-open {
  opacity: 1;
}

.paper-lightbox__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(5, 14, 28, 0.84);
  backdrop-filter: blur(0.55rem);
  cursor: zoom-out;
}

.paper-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: min(92vw, 72rem);
  max-height: calc(100vh - 2rem);
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: clamp(0.75rem, 1.5vw, 1.2rem);
  background: #f7f9fc;
  box-shadow: 0 2.2rem 6rem rgba(0, 8, 24, 0.52);
  transform: translateY(1rem) scale(0.98);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.paper-lightbox.is-open .paper-lightbox__dialog {
  transform: translateY(0) scale(1);
}

.paper-lightbox__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 6.5rem);
  margin: auto;
  object-fit: contain;
}

.paper-lightbox__caption {
  margin: 0;
  padding: 0.8rem 3.75rem 0.9rem 1.25rem;
  color: #40516a;
  background: #fff;
  font-size: 0.9rem;
  line-height: 1.45;
}

.paper-lightbox__close {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  right: 0.75rem;
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(17, 49, 91, 0.16);
  border-radius: 50%;
  color: #172447;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0.35rem 1rem rgba(11, 32, 65, 0.18);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.paper-lightbox__close:is(:hover, :focus-visible) {
  color: #fff;
  border-color: var(--service-blue);
  outline: none;
  background: var(--service-blue);
}

.question-panel {
  padding: 2rem 1.55rem 1.3rem;
  border: 2px solid #e9eff5;
  border-radius: 1.25rem;
  background: #fff;
}

.question-panel__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.question-panel__heading img {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.45rem;
  border-radius: 50%;
  background: var(--service-blue);
}

.question-panel__heading h3 {
  margin: 0;
  color: var(--service-blue);
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0.01rem;
}

.analysis-questions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(48rem, 100%);
  gap: 0.45rem 2.25rem;
  margin: 1.5rem auto 1.9rem;
  padding: 0;
  list-style: none;
}

.analysis-questions li {
  position: relative;
  padding-left: 1.65rem;
  font-size: 1rem;
  line-height: 1.55;
}

.analysis-questions li::before {
  position: absolute;
  top: 0.27rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  content: "";
  background: url("../assets/service/icon-bullet1.svg") center / contain no-repeat;
}

.analysis-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}

.analysis-gallery__group {
  display: flex;
  height: 26.25rem;
  justify-content: center;
  margin: 0;
  padding: 0.75rem 1.6rem;
  border: 1.5px solid #e9eff5;
  border-radius: 1rem;
  background: #fff;
  flex-direction: column;
}

.analysis-gallery__group img {
  width: 100%;
  min-height: 0;
  object-fit: contain;
}
.analysis-gallery__group--one img:nth-child(1) {
  height: 10.1rem;
}
.analysis-gallery__group--one img:nth-child(2) {
  height: 7.25rem;
}
.analysis-gallery__group--one img:nth-child(3) {
  height: 6.9rem;
}
.analysis-gallery__group--two img {
  height: 24.5rem;
}
.analysis-gallery__group--three img:first-child {
  height: 7.95rem;
}
.analysis-gallery__group--three img:last-child {
  height: 16.6rem;
}
.analysis-gallery__group--four img:first-child {
  height: 12.9rem;
}
.analysis-gallery__group--four img:last-child {
  height: 11.5rem;
}

.service-capabilities {
  padding: 5.6rem 0 4.2rem;
  background: linear-gradient(#fff, #f6f8fd);
}

.capability-grid {
  margin-top: 4.6rem;
}

.capability-card {
  min-width: 0;
  padding: 1.25rem 1.6rem 1.1rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 3px 6px rgba(9, 92, 215, 0.12);
}

.capability-card header {
  display: flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.85rem;
  border-bottom: 0.13rem solid transparent;
}

.capability-card header::after {
  position: absolute;
  width: 2.5rem;
  height: 0.13rem;
  align-self: flex-end;
  content: "";
  background: var(--service-blue);
}

.capability-card b {
  color: var(--service-blue);
  font-size: 2.25rem;
  line-height: 1.3;
}

.capability-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.20rem;
  line-height: 1.35;
  font-weight: 700;
}

.capability-card > img {
  width: 100%;
  height: 12.2rem;
  margin: 0.7rem 0 0.85rem;
  object-fit: contain;
}

.capability-card p {
  min-height: 3.25rem;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.04rem;
}

.service-pains {
  padding: 6.7rem 0 11.9rem;
  background: #edf5ff url("../assets/service/image-section-background1.png")
    center / cover no-repeat;
}

.service-pains .section-container,
.service-team .section-container,
.service-delivery .section-container {
  width: min(90rem, calc(100% - 3rem));
  max-width: 90rem !important;
}

.service-delivery .section-container {
  padding-inline: 0;
}

.pain-solution-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 4.25rem;
}

.pain-solution-pair {
  display: grid;
  grid-template-columns: minmax(0, 38.0625rem) 4rem minmax(0, 45rem);
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
}

.pain-card,
.solution-card {
  position: relative;
  display: flex;
  min-height: 6.2rem;
  align-items: center;
  overflow: hidden;
  gap: 1.6rem;
  padding: 0.85rem 2.4rem;
  border-radius: 0.75rem;
  box-shadow: 0 3px 7px rgba(9, 92, 215, 0.08);
}

.pain-card {
  background: linear-gradient(90deg, #fff6f6, #fff);
}
.solution-card {
  background: linear-gradient(90deg, #edf5ff, #fff);
}
.pain-card > img:first-child {
  width: 4.2rem;
  height: 4.2rem;
  margin-inline: -0.35rem;
  flex: 0 0 auto;
}

.solution-card > img:first-child {
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 auto;
}

.solution-icon--composite {
  position: relative;
  width: 3.5rem;
  height: 3.5rem;
  flex: 0 0 auto;
}

.solution-icon--composite img:first-child {
  width: 100%;
  height: 100%;
}

.solution-icon--composite img:last-child {
  position: absolute;
  top: 18.3%;
  left: 16.7%;
  width: 66.7%;
  height: 61.7%;
}
.pain-card p,
.solution-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 1.35rem;
  letter-spacing: 0.04rem;
}

.pain-card p::after,
.solution-card p::after {
  display: block;
  width: 2.25rem;
  height: 0.125rem;
  margin-top: 0.65rem;
  content: "";
  background: #ff5460;
}

.solution-card p::after {
  background: var(--service-blue);
}

.pain-decoration {
  position: absolute;
  right: 0.45rem;
  width: 6.4rem;
  height: 6.4rem;
  opacity: 0.12;
  object-fit: contain;
}

.pair-arrow {
  display: block;
  width: 4rem;
  height: 4rem;
}

.pair-arrow img {
  display: block;
  width: 100%;
  height: 100%;
}

.solution-decoration {
  position: absolute;
  right: 0.25rem;
  bottom: -0.2rem;
  width: 6.5rem;
  height: 5.6rem;
  opacity: 0.9;
  object-fit: contain;
}

.service-team {
  padding: 4.5rem 0 5.15rem;
  background: linear-gradient(#fff, #f5f8fe);
}

.team-grid {
  margin: 2.8rem auto 0;
  padding: 0 2.65rem;
}

.team-card {
  overflow: hidden;
  border-radius: 1rem;
  background: #fff;
  box-shadow: var(--service-shadow);
}

.team-card__content {
  display: grid;
  grid-template-columns: 8.4rem 1fr;
  min-height: 13.5rem;
  align-items: center;
  gap: 1.15rem;
  padding: 1.8rem 2.4rem 1.1rem;
}

.team-card__icon {
  width: 8.4rem;
  height: 8.4rem;
  object-fit: contain;
}
.team-card h3 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
  line-height: 1.35;
  font-weight: 400;
}
.team-card h3::after {
  display: block;
  width: 2.2rem;
  height: 0.15rem;
  margin-top: 0.8rem;
  content: "";
  background: var(--service-blue);
}

.team-card ul {
  display: grid;
  gap: 0.3rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
  list-style: none;
}

.team-card li {
  position: relative;
  padding-left: 1.35rem;
}
.team-card li::before {
  position: absolute;
  top: 0.28rem;
  left: 0;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  color: #fff;
  background: var(--service-blue);
  content: "✓";
  font-size: 0.56rem;
  line-height: 0.75rem;
  text-align: center;
}
.team-card__photo {
  width: calc(100% - 4.8rem);
  height: 11rem;
  margin: 0 2.4rem 1.5rem;
  border-radius: 0.5rem;
  object-fit: cover;
}

.service-delivery {
  overflow: hidden;
  padding: 5.1rem 0 9.2rem;
  background: #f4f8ff url("../assets/service/image-section-background2.png")
    center / cover no-repeat;
}

.delivery-steps {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr) 1.9375rem)
    minmax(0, 1fr);
  align-items: end;
  gap: 0;
  margin-top: 1.4rem;
}

.delivery-steps figure {
  margin: 0;
  text-align: center;
}
.delivery-steps figcaption {
  margin-bottom: 0.6rem;
  font-size: 1.12rem;
  line-height: 1.5;
}
.delivery-steps figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 263 / 258;
  border-radius: 0.6rem;
  object-fit: cover;
}
.delivery-arrow {
  display: grid;
  width: 1.9375rem;
  height: 2rem;
  align-self: center;
  place-items: center;
}

.delivery-arrow img {
  width: 1.25rem;
  height: 1.25rem;
}

.delivery-connector {
  display: block;
  max-width: 100%;
  object-fit: fill;
}

.delivery-connector--steps {
  width: 37.6875rem;
  height: 4.375rem;
  margin: 0.05rem auto 0;
}

.delivery-tag {
  position: relative;
  z-index: 2;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0.55rem;
  margin: 0.35rem auto 0;
  padding: 0.45rem 1.55rem;
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: var(--service-shadow);
  font-size: 1.25rem;
  font-weight: 700;
}

.delivery-tag img {
  width: 1.5rem;
  height: 1.5rem;
}

.delivery-connector--cards {
  width: 64.05rem;
  height: 4.1875rem;
  margin: 0 auto 0.2rem;
}

.delivery-cards {
  margin: 0 auto 2.45rem;
}

.delivery-cards article {
  display: grid;
  grid-template-columns: 6.25rem 1fr;
  min-height: 9.8125rem;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 2.2rem;
  border-radius: 0.8rem;
  background: #fff;
  box-shadow: var(--service-shadow);
}

.delivery-cards article > img {
  width: 6.25rem;
  height: 6.25rem;
}
.delivery-cards h3 {
  margin: 0 0 0.65rem;
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 400;
}
.delivery-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.delivery-highlight {
  display: flex;
  width: min(75rem, 100%);
  min-height: 4.375rem;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin: 0 auto;
  padding: 0.7rem 2rem;
  border-radius: 2.6rem;
  color: #fff;
  background: linear-gradient(90deg, #0067fa, #095cd7);
  font-size: 1.5rem;
}

.delivery-highlight img {
  width: 2.25rem;
  height: 2.25rem;
}
.delivery-highlight strong {
  color: #fff512;
  font-size: 1.8rem;
}

.service-workflow {
  padding: 6.5rem 0 5.35rem;
  background: linear-gradient(#fff, #f5f8fe);
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.65rem;
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 33.65rem;
  align-items: center;
  padding: 2.9rem 1.7rem 0.75rem;
  border-radius: 1.25rem;
  background: #fff;
  box-shadow: var(--service-shadow);
  flex-direction: column;
  text-align: center;
}

.workflow-list b {
  position: absolute;
  top: -1.25rem;
  left: 50%;
  display: grid;
  width: 3.1rem;
  height: 3.1rem;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--service-blue);
  font-size: 1.75rem;
  transform: translateX(-50%);
}

.workflow-list h3 {
  margin: 0.4rem 0 1.4rem;
  font-size: clamp(1.1rem, 1.18vw, 1.42rem);
  line-height: 1.35;
  white-space: nowrap;
}
.workflow-list img {
  width: 100%;
  height: 12.5rem;
  object-fit: contain;
  transform: scale(var(--workflow-image-scale, 1));
  transform-origin: center center;
}

.workflow-list li:nth-child(1) {
  --workflow-image-scale: 1;
}
.workflow-list li:nth-child(2) {
  --workflow-image-scale: 1.1;
}
.workflow-list li:nth-child(3) {
  --workflow-image-scale: 0.78;
}
.workflow-list li:nth-child(4) {
  --workflow-image-scale: 1;
}
.workflow-list li:nth-child(5) {
  --workflow-image-scale: 1.07;
}
.workflow-list li:nth-child(6) {
  --workflow-image-scale: 0.89;
}
.workflow-list p {
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
  text-align: left;
}
.workflow-list span {
  margin-top: auto;
  margin-bottom: 0.7rem;
  color: var(--service-blue);
  font-size: 3.375rem;
  line-height: 1;
  font-weight: 700;
}

.service-cta {
  min-height: 37.45rem;
  overflow: hidden;
  background: #f5f8fe url("../assets/service/image-cta-background.png") center /
    cover no-repeat;
}

.service-cta__inner {
  display: grid;
  grid-template-columns: 1fr 33.5rem;
  min-height: 37.45rem;
  align-items: center;
  gap: 4rem;
  padding: 0 8.9rem;
}

.service-cta__copy {
  padding-top: 1rem;
}
.service-cta h2 {
  margin: 0;
  font-size: clamp(2.7rem, 2.82vw, 3.375rem);
  line-height: 1.34;
  font-weight: 700;
  letter-spacing: 0.12rem;
}
.service-cta h2 span {
  color: var(--service-blue);
}
.service-cta__button {
  min-width: 22rem;
  margin-top: 4rem;
}
.service-cta__button img:first-child {
  width: 1.4rem;
  height: 1.4rem;
}
.service-cta__button img:last-child {
  width: 1.5rem;
  height: 0.9rem;
  transform: rotate(90deg);
}
.service-cta__visual {
  width: 33.5rem;
  height: 30.2rem;
  align-self: end;
  object-fit: cover;
}

@media (hover: hover) and (pointer: fine) {
  .analysis-gallery__group,
  .capability-card,
  .team-card,
  .delivery-steps figure img,
  .delivery-cards article,
  .workflow-list img {
    transition:
      transform 300ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 300ms ease,
      filter 300ms ease;
  }

  .analysis-gallery__group:hover,
  .capability-card:hover,
  .team-card:hover,
  .delivery-cards article:hover {
    box-shadow: 0 1.3rem 2.8rem rgba(30, 77, 143, 0.16);
    transform: translateY(-0.48rem);
  }

  .delivery-steps figure:hover img,
  .workflow-list li:hover img {
    filter: saturate(1.08);
    transform: translateY(-0.42rem) scale(1.025);
  }
}

@media (hover: hover) and (pointer: fine) {
  .pain-card,
  .solution-card,
  .pain-card::before,
  .solution-card::before,
  .pain-card > img:first-child,
  .solution-card > img:first-child,
  .solution-icon--composite,
  .pain-decoration,
  .pain-card p::after,
  .solution-card p::after {
    transition:
      transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 360ms ease,
      opacity 360ms ease,
      width 360ms cubic-bezier(0.22, 1, 0.36, 1),
      filter 360ms ease;
  }

  .pain-card::before,
  .solution-card::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    content: "";
    opacity: 0;
    pointer-events: none;
    transform: translateX(-28%);
  }

  .pain-card::before {
    background: radial-gradient(
      circle at 18% 50%,
      rgba(255, 84, 96, 0.13),
      transparent 42%
    );
  }

  .solution-card::before {
    background: radial-gradient(
      circle at 20% 50%,
      rgba(0, 103, 250, 0.14),
      transparent 46%
    );
  }

  .pain-solution-pair:hover .pain-card {
    box-shadow: 0 0.95rem 2rem rgba(255, 84, 96, 0.12);
    transform: translate3d(-0.42rem, -0.08rem, 0) rotateY(1deg);
  }

  .pain-solution-pair:hover .solution-card {
    box-shadow: 0 0.95rem 2rem rgba(0, 103, 250, 0.15);
    transform: translate3d(0.42rem, -0.08rem, 0) rotateY(-1deg);
  }

  .pain-solution-pair:hover .pain-card::before,
  .pain-solution-pair:hover .solution-card::before {
    opacity: 1;
    transform: translateX(0);
  }

  .pain-solution-pair:hover .pair-arrow img {
    animation: service-pair-arrow-pulse 820ms ease-in-out infinite;
    filter: drop-shadow(0 0.25rem 0.45rem rgba(0, 103, 250, 0.28));
  }

  .pain-solution-pair:hover .pain-card > img:first-child {
    filter: drop-shadow(0 0.35rem 0.55rem rgba(255, 84, 96, 0.2));
    transform: translateY(-0.18rem) rotate(-5deg) scale(1.08);
  }

  .pain-solution-pair:hover .solution-card > img:first-child,
  .pain-solution-pair:hover .solution-icon--composite {
    filter: drop-shadow(0 0.35rem 0.55rem rgba(0, 103, 250, 0.22));
    transform: translateY(-0.18rem) rotate(4deg) scale(1.08);
  }

  .pain-solution-pair:hover .pain-decoration {
    opacity: 0.19;
    transform: translateX(-0.35rem) rotate(-7deg) scale(1.12);
  }

  .pain-solution-pair:hover .solution-decoration {
    animation: service-solution-hover 1.65s ease-in-out infinite;
  }

  .pain-solution-pair:hover .pain-card p::after,
  .pain-solution-pair:hover .solution-card p::after {
    width: 4.25rem;
  }

  .workflow-list li:hover img {
    transform: translateY(-0.42rem)
      scale(calc(var(--workflow-image-scale, 1) * 1.025));
  }
}

@keyframes service-pair-arrow-pulse {
  0%,
  100% {
    transform: translateX(-0.12rem) scale(0.96);
  }
  50% {
    transform: translateX(0.32rem) scale(1.06);
  }
}

@keyframes service-solution-hover {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  50% {
    transform: translate3d(-0.25rem, -0.5rem, 0) rotate(2deg) scale(1.035);
  }
}
.pain-solution-pair.is-motion-revealed .solution-decoration {
  animation: service-soft-float 5.2s ease-in-out infinite;
}

.pain-solution-pair:nth-child(even).is-motion-revealed
  .solution-decoration {
  animation-delay: -2.4s;
}

.service-cta__button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.service-cta__button::after {
  position: absolute;
  z-index: -1;
  top: -65%;
  left: -45%;
  width: 34%;
  height: 230%;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.42),
    transparent
  );
  pointer-events: none;
  transform: rotate(18deg);
  animation: service-button-shimmer 3.8s ease-in-out infinite;
}

.service-cta__button img:last-child {
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-cta__button:hover img:last-child {
  transform: translateX(0.32rem) rotate(90deg);
}

.service-cta__visual.is-motion-floating {
  will-change: transform;
  animation: service-cta-float 6.8s ease-in-out infinite;
}

@keyframes service-soft-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0);
  }
  50% {
    transform: translate3d(0, -0.38rem, 0) rotate(1.2deg);
  }
}

@keyframes service-cta-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0);
  }
  50% {
    transform: translate3d(0, -0.75rem, 0) rotate(0.35deg);
  }
}

@keyframes service-button-shimmer {
  0%,
  58% {
    left: -45%;
  }
  78%,
  100% {
    left: 125%;
  }
}
@media (max-width: 1500px) {
  .service-hero__copy {
    max-width: 60%;
  }
  .service-hero h1 {
    font-size: clamp(3.75rem, 4vw, 4.75rem);
  }
  .service-hero__visual {
    right: -8rem;
    width: 45rem;
  }
  .paper-barrier {
    width: min(100%, 31rem);
  }
  .analysis-gallery {
    gap: 1.5rem;
  }
  .capability-card {
    padding-inline: 1.2rem;
  }
  .capability-card h3 {
    font-size: 1.08rem;
  }
  .capability-card p {
    font-size: 0.88rem;
  }
  .pain-solution-pair {
    grid-template-columns: minmax(0, 41%) 3.5rem minmax(0, 49%);
  }
  .pain-card p,
  .solution-card p {
    font-size: 1.12rem;
  }
  .team-card__content {
    grid-template-columns: 7rem 1fr;
    padding-inline: 1.8rem;
  }
  .team-card__icon {
    width: 7rem;
    height: 7rem;
  }
  .workflow-list li {
    padding-inline: 1.1rem;
  }
  .service-cta__inner {
    padding-inline: 6rem;
  }
}

@media (max-width: 1180px) {
  .service-hero,
  .service-hero__inner {
    min-height: 41rem;
  }
  .service-hero__copy {
    max-width: 62%;
    padding-top: 2rem;
  }
  .service-hero h1 {
    font-size: clamp(3.5rem, 4.6vw, 3.75rem);
  }
  .hero-features {
    margin: 2.5rem 0;
  }
  .hero-feature__icon {
    width: 4rem;
    height: 4rem;
  }
  .hero-feature__icon img {
    width: calc(2.4rem * var(--hero-icon-scale, 1));
    height: calc(2.4rem * var(--hero-icon-scale, 1));
  }
  .hero-features li {
    font-size: 0.78rem;
  }
  .hero-actions .service-button {
    min-width: 0;
    font-size: 0.95rem;
  }
  .spatial-analysis__inner {
    padding-block: 5rem;
  }
  .spatial-analysis__copy {
    width: min(100%, 34rem);
  }
  .paper-barrier {
    width: min(100%, 24rem);
    opacity: 0.82;
  }
  .why-analysis__intro {
    grid-template-columns: 2fr 1fr;
  }
  .analysis-benefits {
    gap: 1rem;
    flex-wrap: wrap;
  }
  .analysis-gallery {
    grid-template-columns: 1fr 1fr;
  }
  .capability-card > img {
    height: 15rem;
  }
  .team-grid {
    padding: 0;
  }
  .team-card__content {
    grid-template-columns: 5rem 1fr;
    padding: 1.5rem;
  }
  .team-card__icon {
    width: 5rem;
    height: 5rem;
  }
  .team-card__photo {
    width: calc(100% - 3rem);
    margin-inline: 1.5rem;
  }
  .delivery-steps figure img {
    height: 12rem;
  }
  .delivery-cards article {
    grid-template-columns: 3.5rem 1fr;
    padding: 1rem;
  }
  .delivery-cards article > img {
    width: 3.5rem;
    height: 3.5rem;
  }
  .delivery-highlight {
    font-size: 1.15rem;
  }
  .delivery-highlight strong {
    font-size: 1.4rem;
  }
  .workflow-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 1rem;
  }
  .service-cta__inner {
    grid-template-columns: 1fr 28rem;
    padding: 0 2rem;
  }
  .service-cta__visual {
    width: 28rem;
  }
}

@media (max-width: 760px) {
  .service-title {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
    line-height: 1.35;
    letter-spacing: 0.04rem;
  }
  .service-hero {
    min-height: auto;
  }
  .service-hero__inner {
    display: flex;
    min-height: auto;
    padding-top: 3.5rem;
    flex-direction: column;
  }
  .service-hero__copy {
    width: 100%;
    max-width: none;
    padding: 0;
  }
  .service-hero h1 {
    font-size: clamp(2.5rem, 10.5vw, 3.25rem);
    line-height: 1.12;
    letter-spacing: -0.035rem;
  }
  .hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem 0.5rem;
    margin: 2.5rem 0;
  }
  .hero-features li {
    width: auto;
    font-size: 0.82rem;
  }
  .hero-feature__icon {
    width: 4.25rem;
    height: 4.25rem;
  }
  .hero-feature__icon img {
    width: calc(2.55rem * var(--hero-icon-scale, 1));
    height: calc(2.55rem * var(--hero-icon-scale, 1));
  }
  .hero-actions {
    flex-wrap: wrap;
  }
  .hero-actions .service-button {
    width: 100%;
    min-height: 3rem;
  }
  .service-hero__visual {
    position: static;
    width: 100%;
    height: auto;
    max-height: 28rem;
    margin-top: 1rem;
  }
  .spatial-analysis__inner {
    padding-block: 4rem;
  }
  .spatial-analysis h2 {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
  }
  .spatial-analysis__copy p {
    font-size: 1rem;
  }
  .why-analysis__inner {
    padding: 3.5rem 0;
  }
  .why-analysis__intro {
    display: block;
    min-height: 0;
  }
  .why-analysis__copy {
    padding: 0;
  }
  .section-tag {
    margin-bottom: 1.6rem;
    font-size: 0.95rem;
  }
  .why-analysis h2 {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
  }
  .analysis-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 2rem 0 2.5rem;
  }
  .analysis-benefits li {
    font-size: 0.9rem;
    white-space: normal;
  }
  .paper-barrier {
    display: block;
    width: min(100%, 24rem);
    margin: 0 auto 3.5rem;
  }
  .question-panel {
    padding: 1.35rem 1rem 1rem;
  }
  .question-panel__heading {
    align-items: flex-start;
  }
  .question-panel__heading h3 {
    font-size: 1.15rem;
    text-align: left;
  }
  .analysis-questions {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-block: 1.25rem;
  }
  .analysis-questions li {
    font-size: 0.9rem;
  }
  .analysis-gallery {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .analysis-gallery__group {
    height: auto;
    min-height: 23rem;
    padding-inline: 1.5rem;
  }
  .service-capabilities,
  .service-pains,
  .service-team,
  .service-delivery,
  .service-workflow {
    padding: 4rem 0;
  }
  .capability-grid {
    margin-top: 2.2rem;
  }
  .capability-card > img {
    height: auto;
    max-height: 14rem;
  }
  .capability-card p {
    min-height: 0;
  }
  .pain-solution-list {
    margin-top: 2.5rem;
  }
  .pain-solution-pair {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
  .pain-card,
  .solution-card {
    min-height: 4.7rem;
    padding: 0.65rem 1rem;
    gap: 0.9rem;
  }
  .pain-card > img:first-child {
    width: 3.25rem;
    height: 3.25rem;
    margin-inline: -0.2rem;
  }
  .solution-card > img:first-child {
    width: 2.8rem;
    height: 2.8rem;
  }
  .solution-icon--composite {
    width: 2.8rem;
    height: 2.8rem;
  }
  .pain-card p,
  .solution-card p {
    padding-right: 2.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .pain-decoration {
    right: 0.3rem;
    width: 5rem;
    height: 5rem;
    opacity: 0.1;
  }
  .pair-arrow {
    width: 2.3rem;
    height: 2.3rem;
    margin: 0 auto;
    font-size: 1.5rem;
    transform: rotate(90deg);
  }
  .solution-decoration {
    width: 4.5rem;
    height: 4rem;
    opacity: 0.55;
  }
  .team-grid {
    margin-top: 2rem;
  }
  .team-card__content {
    grid-template-columns: 4rem 1fr;
    gap: 0.8rem;
    padding: 1.2rem 1rem;
  }
  .team-card__icon {
    width: 4rem;
    height: 4rem;
    align-self: start;
  }
  .team-card h3 {
    font-size: 1.12rem;
  }
  .team-card ul {
    font-size: 0.82rem;
  }
  .team-card__photo {
    width: calc(100% - 2rem);
    height: auto;
    max-height: 13rem;
    margin: 0 1rem 1rem;
  }
  .delivery-steps {
    display: flex;
    overflow-x: auto;
    align-items: center;
    gap: 0.5rem;
    margin-inline: -0.2rem;
    padding: 0.25rem 0.2rem 1rem;
    scroll-snap-type: x proximity;
  }
  .delivery-connector {
    display: none;
  }
  .delivery-steps figure {
    width: 12rem;
    flex: 0 0 12rem;
    scroll-snap-align: start;
  }
  .delivery-steps figure img {
    height: 12rem;
  }
  .delivery-arrow {
    width: 1.25rem;
    flex: 0 0 1.25rem;
  }
  .delivery-tag {
    margin: 1.5rem auto;
    font-size: 1rem;
  }
  .delivery-cards article {
    min-height: 7.5rem;
    grid-template-columns: 4rem 1fr;
    padding: 1rem 1.35rem;
  }
  .delivery-cards article > img {
    width: 4rem;
    height: 4rem;
  }
  .delivery-highlight {
    align-items: flex-start;
    gap: 0.65rem;
    padding: 1rem 1.25rem;
    border-radius: 1rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
  }
  .delivery-highlight img {
    width: 1.5rem;
    height: 1.5rem;
  }
  .delivery-highlight strong {
    width: 100%;
    font-size: 1.12rem;
  }
  .workflow-list {
    grid-template-columns: 1fr;
    gap: 2.3rem;
    margin-top: 3.4rem;
  }
  .workflow-list li {
    min-height: 0;
    padding: 2.4rem 1.4rem 1.2rem;
  }
  .workflow-list h3 {
    margin-bottom: 0.8rem;
  }
  .workflow-list img {
    height: 12rem;
  }
  .workflow-list p {
    width: 100%;
    margin-top: 1rem;
    text-align: center;
  }
  .workflow-list span {
    margin-top: 1.1rem;
  }
  .service-cta {
    min-height: auto;
  }
  .service-cta__inner {
    display: flex;
    min-height: auto;
    padding: 4rem 0 0;
    flex-direction: column;
  }
  .service-cta h2 {
    font-size: clamp(2rem, 8.5vw, 2.8rem);
  }
  .service-cta__button {
    width: 100%;
    min-width: 0;
    margin-top: 2.5rem;
    font-size: 0.98rem;
  }
  .service-cta__visual {
    width: 100%;
    height: auto;
    max-height: 23rem;
    margin-top: 1.5rem;
    object-fit: contain;
  }
}

@media (max-width: 420px) {
  .hero-features {
    grid-template-columns: 1fr 1fr;
  }
  .analysis-benefits {
    grid-template-columns: 1fr;
  }
  .capability-card {
    padding-inline: 1rem;
  }
  .capability-card b {
    font-size: 1.8rem;
  }
  .capability-card h3 {
    font-size: 1rem;
  }
  .team-card__content {
    display: block;
  }
  .team-card__icon {
    margin: 0 auto 1rem;
  }
}

/* 2026-07-30 responsive overlap corrections */
.service-cta__button img:last-child {
  width: 0.82rem;
  height: 1.45rem;
  flex: 0 0 auto;
  object-fit: contain;
  transform: rotate(90deg);
  transform-origin: center;
}

@media (min-width: 761px) and (max-width: 1180px) {
  .service-hero,
  .service-hero__inner {
    min-height: auto;
  }

  .service-hero__inner {
    display: flex;
    padding-top: 5rem;
    flex-direction: column;
  }

  .service-hero__copy {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  .service-hero h1 {
    width: min(100%, 62.5rem);
  }

  .service-hero__visual {
    position: static;
    right: auto;
    bottom: auto;
    width: min(100%, 46rem);
    height: auto;
    max-height: 36rem;
    margin: 1rem auto 0;
    object-position: center bottom;
  }

  .service-pains {
    overflow-x: hidden;
  }

  .service-cta__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 22rem);
    padding-inline: 1.5rem;
  }

  .service-cta__visual {
    width: 100%;
    max-width: 22rem;
  }

  .spatial-analysis {
    min-height: 55rem;
    background-position: center bottom;
    background-size: 68rem auto;
  }

  .spatial-analysis__inner {
    min-height: 55rem;
    align-items: flex-start;
    padding: 5rem 0 0;
  }

  .spatial-analysis__copy {
    width: min(100%, 34rem);
    padding: 1.25rem 4rem 1.25rem 0;
    border-radius: 0 1.25rem 1.25rem 0;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.94) 76%,
      rgba(255, 255, 255, 0) 100%
    );
  }

  .pain-decoration,
  .solution-decoration {
    display: none;
  }

  .pain-card p,
  .solution-card p {
    padding-right: 0;
  }
}

@media (max-width: 760px) {
  .pain-decoration,
  .solution-decoration {
    display: none;
  }

  .spatial-analysis {
    min-height: auto;
    background-image: none;
  }

  .spatial-analysis__inner {
    min-height: auto;
    align-items: center;
    padding-block: 4rem;
  }

  .spatial-analysis__copy {
    width: 100%;
    padding: 0;
    background: none;
  }

  .workflow-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.4rem 0.75rem;
    margin-top: 3.4rem;
  }

  .workflow-list li {
    min-height: 24rem;
    padding: 2.15rem 0.75rem 0.8rem;
    border-radius: 1rem;
  }

  .workflow-list b {
    top: -1.05rem;
    width: 2.55rem;
    height: 2.55rem;
    font-size: 1.35rem;
  }

  .workflow-list h3 {
    margin: 0.25rem 0 0.65rem;
    font-size: clamp(0.8rem, 3.6vw, 1rem);
  }

  .workflow-list img {
    height: 7.5rem;
  }

  .workflow-list p {
    width: 100%;
    margin-top: 0.75rem;
    font-size: 0.72rem;
    line-height: 1.55;
    text-align: left;
  }

  .workflow-list span {
    margin-top: auto;
    margin-bottom: 0.45rem;
    font-size: 2.35rem;
  }
}

@media (max-width: 420px) {
  .workflow-list {
    gap: 2.15rem 0.55rem;
  }

  .workflow-list li {
    min-height: 23rem;
    padding-inline: 0.6rem;
  }

  .workflow-list h3 {
    font-size: 0.78rem;
  }

  .workflow-list p {
    font-size: 0.68rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .paper-barrier__page.is-paper-turning,
  .pain-solution-pair:hover .pair-arrow img,
  .pain-solution-pair:hover .solution-decoration,
  .hero-actions .service-button--primary > span,
  .pain-solution-pair.is-motion-revealed .solution-decoration,
  .service-cta__button::after,
  .service-cta__visual.is-motion-floating {
    animation: none;
  }

  .paper-barrier__page,
  .pain-card,
  .solution-card,
  .pain-card::before,
  .solution-card::before,
  .hero-feature__icon,
  .analysis-gallery__group,
  .capability-card,
  .team-card,
  .delivery-steps figure img,
  .delivery-cards article,
  .workflow-list img,
  .service-cta__button img:last-child,
  .service-button--iconic .service-button__arrow {
    transition: none;
  }

  .paper-barrier__page,
  .paper-lightbox,
  .paper-lightbox__dialog {
    transition: none;
  }
}
