/* Service inner pages — extends styles.css */

body.service-page {
  background: var(--paper);
  overflow-x: hidden;
}

.service-page .head-grid {
  margin-bottom: clamp(22px, 3vw, 40px);
}

.service-page .section .title {
  max-width: 100%;
  font-size: clamp(36px, 5.2vw, 72px);
  line-height: 1.02;
  overflow-wrap: break-word;
}

.service-page .section {
  overflow-x: clip;
  padding: clamp(72px, 8vw, 110px) 0;
}

.service-page .section-ctas {
  margin-top: clamp(28px, 3.5vw, 40px);
}

.service-page .svc-tech-sec {
  padding-bottom: clamp(28px, 4vw, 40px);
}

.service-page .process-sec .process-grid,
.service-page #industries .industries-grid {
  margin-top: 0;
}

.service-page .faq-grid {
  gap: clamp(28px, 4vw, 48px);
}

.svc-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 36px) 0 40px;
  color: #fff;
}

.svc-hero-glow {
  display: none;
}

.svc-hero-stage {
  position: relative;
  isolation: isolate;
}

.svc-hero-frame {
  position: absolute;
  z-index: 0;
  inset: -2px;
  border-radius: 28px;
  padding: 2px;
  pointer-events: none;
  background: linear-gradient(145deg,
      rgba(205, 15, 54, 0.55) 0%,
      rgba(205, 15, 54, 0.18) 42%,
      rgba(255, 255, 255, 0.12) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.svc-hero.is-ready .svc-hero-frame {
  opacity: 1;
}

.svc-hero-card {
  position: relative;
  z-index: 1;
  padding: clamp(22px, 3vw, 36px);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.svc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.svc-breadcrumb {
  margin: 0 0 18px;
}

.svc-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.svc-breadcrumb li {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.svc-breadcrumb li:not(:last-child)::after {
  content: "/";
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.28);
  font-weight: 600;
}

.svc-breadcrumb a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
  transition: color 0.25s ease;
}

.svc-breadcrumb a:hover {
  color: #fff;
}

.svc-breadcrumb [aria-current="page"] span {
  color: var(--red);
}

.svc-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 700;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.svc-hero h1 em {
  font-style: normal;
  color: var(--red);
}

.svc-hero-copy {
  margin: 22px 0 0;
  max-width: 48ch;
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.svc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.svc-hero-actions .btn {
  justify-content: stretch;
  padding: 6px 8px 6px 18px;
}

.svc-hero-actions .btn:not(:has(.bi-btn-arrow)) {
  padding-inline: 22px;
  justify-content: center;
}

.svc-hero-actions .btn > .bi-btn-label {
  width: 100%;
  justify-items: stretch;
}

.svc-hero-actions .btn .bi-btn-label-line {
  width: 100%;
  justify-content: space-between;
  gap: 14px;
}

.svc-hero-actions .btn .bi-btn-text {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
}

.svc-hero-actions .btn .bi-btn-arrow {
  flex: 0 0 auto;
  margin-left: auto;
  width: 36px;
  height: 36px;
}

.service-page .final .btn,
.service-page .checkup-actions .btn,
.service-page .btn-wrapper .btn {
  justify-content: stretch;
}

.service-page .final .btn > .bi-btn-label,
.service-page .checkup-actions .btn > .bi-btn-label,
.service-page .btn-wrapper .btn > .bi-btn-label {
  width: 100%;
  justify-items: stretch;
}

.service-page .final .btn .bi-btn-label-line,
.service-page .checkup-actions .btn .bi-btn-label-line,
.service-page .btn-wrapper .btn .bi-btn-label-line {
  width: 100%;
  justify-content: space-between;
  gap: 14px;
}

.service-page .final .btn .bi-btn-arrow,
.service-page .checkup-actions .btn .bi-btn-arrow,
.service-page .btn-wrapper .btn .bi-btn-arrow {
  flex: 0 0 auto;
  margin-left: auto;
}

.svc-hero-visual {
  position: relative;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: 420px;
  background: var(--blue);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.svc-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 11, 22, 0.35) 100%);
}

.svc-hero-visual img,
.svc-hero-visual video,
.svc-hero-visual .svc-hero-video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-hero-visual video,
.svc-hero-visual .svc-hero-video {
  pointer-events: none;
}

.svc-hero.is-ready .svc-hero-visual {
  animation: svc-hero-float 6.5s ease-in-out 0.9s infinite;
}

.svc-hero-visual:hover img,
.svc-hero-visual:hover video,
.svc-hero-visual:hover .svc-hero-video {
  transform: scale(1.03);
}

.svc-hero-cta.is-pulse {
  animation: svc-hero-cta-pulse 1.8s ease-in-out 1;
}

/* Hero entrance — subtle rise once page is ready */
.svc-hero-enter {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-hero.is-ready .svc-hero-enter {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.svc-hero.is-ready .svc-breadcrumb.svc-hero-enter {
  transition-delay: 0.06s;
}

.svc-hero.is-ready #svc-hero-title.svc-hero-enter {
  transition-delay: 0.14s;
}

.svc-hero.is-ready .svc-hero-copy.svc-hero-enter {
  transition-delay: 0.22s;
}

.svc-hero.is-ready .svc-hero-actions.svc-hero-enter {
  transition-delay: 0.3s;
}

.svc-hero.is-ready .svc-hero-visual.svc-hero-enter {
  transition-delay: 0.18s;
}

.svc-hero.is-ready .svc-tech.svc-hero-enter {
  transition-delay: 0.38s;
}

.svc-hero.is-ready .svc-hero-trust.svc-hero-enter {
  transition-delay: 0.46s;
}

.svc-hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-top: 22px;
  padding: 14px 4px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.svc-hero-trust p {
  margin: 0 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.svc-hero-trust span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.48);
}

.svc-hero-trust i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.7;
}

.svc-hero-trust a {
  margin-left: auto;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.svc-hero-trust a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.svc-hero.is-ready .svc-hero-trust a {
  animation: svc-hero-bob 1.6s ease-in-out infinite;
}

@keyframes svc-hero-glow {

  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translate3d(-4%, 6%, 0) scale(1.08);
    opacity: 1;
  }
}

@keyframes svc-hero-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes svc-hero-cta-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(205, 15, 54, 0);
  }

  40% {
    box-shadow: 0 0 0 12px rgba(205, 15, 54, 0), 0 16px 36px rgba(205, 15, 54, 0.28);
  }

  70% {
    box-shadow: 0 0 0 0 rgba(205, 15, 54, 0.16);
  }
}

@keyframes svc-hero-bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

.svc-tech {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.svc-tech-label {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.svc-tech-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.svc-tech-track {
  display: flex;
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
  width: max-content;
  will-change: transform;
}

.svc-tech-track.is-ready {
  animation: svc-tech-scroll 48s linear infinite;
}

.svc-tech-viewport:hover .svc-tech-track.is-ready {
  animation-play-state: paused;
}

.svc-tech-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 120px;
  border: 0;
  background: transparent;
  padding: 0;
}

.svc-tech-item[hidden] {
  display: none;
}

.svc-tech-mark {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
}

.svc-tech-item img {
  display: block;
  width: auto;
  max-width: 140px;
  height: 64px;
  object-fit: contain;
  opacity: 0.92;
}

.svc-tech-name {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 650px) {
  .svc-tech-track {
    gap: 28px;
  }

  .svc-tech-item {
    min-width: 96px;
    gap: 10px;
  }

  .svc-tech-item img {
    max-width: 110px;
    height: 48px;
  }

  .svc-tech-mark {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 13px;
  }

  .svc-tech-name {
    font-size: 12px;
  }
}

@keyframes svc-tech-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-tech-track.is-ready {
    animation: none;
  }
}

.svc-statement {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(24px, 3.5vw, 48px);
  align-items: center;
}

.svc-statement h2 {
  margin-top: 14px;
  max-width: 16ch;
}

.svc-statement p {
  margin: 16px 0 0;
  max-width: 57ch;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(11, 18, 32, 0.72);
}

.svc-statement img,
.svc-statement video,
.svc-statement-video {
  display: block;
  width: 100%;
  height: min(440px, 52vw);
  object-fit: cover;
  border-radius: 32px;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  background: #0b1220;
}

.svc-statement img:hover,
.svc-statement video:hover,
.svc-statement-video:hover {
  transform: scale(1.015);
}

.svc-build {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}

.svc-build-row {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
  width: 100%;
  align-items: start;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid rgba(11, 18, 32, 0.12);
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: inherit;
  transition: color 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}

.svc-build-row small {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(11, 18, 32, 0.4);
}

.svc-build-row .bi-btn-label {
  justify-items: start;
  width: 100%;
}

.svc-build-row .bi-btn-label-line {
  justify-content: flex-start;
  width: 100%;
  gap: 10px;
}

.svc-build-row .bi-btn-text {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.04em;
  font-weight: 700;
}

.svc-build-row.is-active .bi-btn-label {
  transform: translateX(6px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-build-row>.bi-btn-arrow {
  opacity: 0.35;
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-build-row:hover>.bi-btn-arrow,
.svc-build-row.is-active>.bi-btn-arrow {
  opacity: 1;
}

.svc-build-row p {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(11, 18, 32, 0.62);
}

.svc-build-row.is-active {
  color: var(--red);
}

.svc-build-row.is-active small,
.svc-build-row.is-active p {
  color: rgba(205, 15, 54, 0.72);
}

.svc-build-visual {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  min-height: 0;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(90% 80% at 100% 0%, rgba(205, 15, 54, 0.22), transparent 55%),
    var(--blue);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.svc-build-visual .svc-build-swap {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.svc-build-visual .svc-build-swap.is-swapping {
  opacity: 0;
  transform: translateY(8px);
}

.svc-build-media {
  margin: 18px 0 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  aspect-ratio: 16 / 10;
}

.svc-build-media img,
.svc-build-media video,
.svc-build-media .svc-build-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  background: #0b1220;
}

.svc-build-visual:hover .svc-build-media img,
.svc-build-visual:hover .svc-build-media video,
.svc-build-visual:hover .svc-build-media .svc-build-video {
  transform: scale(1.04);
}

.svc-build-visual h3 {
  margin: 22px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.svc-build-visual p {
  margin: 0;
  max-width: 50ch;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
}

.svc-build-visual .svc-build-cta {
  align-self: flex-start;
  margin-top: 20px;
  position: relative;
  z-index: 2;
  min-width: min(100%, 280px);
}

.svc-build-visual .svc-build-cta .bi-btn-label {
  width: 100%;
}

.svc-build-visual .svc-build-cta .bi-btn-label-line {
  width: 100%;
  justify-content: space-between;
  gap: 16px;
}

.svc-build-visual .svc-build-cta .bi-btn-arrow {
  margin-left: auto;
}

.svc-story {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 60px;
}

.svc-story article {
  min-height: 0;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-story article:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-4px);
}

.svc-story span {
  display: block;
  margin-bottom: 28px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.svc-story h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.svc-story p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.svc-caps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(11, 18, 32, 0.12);
  border-left: 1px solid rgba(11, 18, 32, 0.12);
}

.svc-cap {
  min-height: 0;
  padding: 20px;
  border-right: 1px solid rgba(11, 18, 32, 0.12);
  border-bottom: 1px solid rgba(11, 18, 32, 0.12);
  transition: background 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.svc-cap:hover {
  background: rgba(205, 15, 54, 0.03);
  transform: translateY(-3px);
}

.svc-cap span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(11, 18, 32, 0.4);
}

.svc-cap h3 {
  margin: 36px 0 10px;
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.04em;
}

.svc-cap p {
  margin: 0;
  color: rgba(11, 18, 32, 0.62);
  line-height: 1.5;
}

.svc-industries {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.svc-ilist button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  letter-spacing: -0.045em;
  text-align: left;
  cursor: pointer;
}

.svc-ilist button.is-active {
  color: var(--red);
  padding-left: 10px;
}

.svc-ipreview {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  min-height: 420px;
  padding: 32px;
  border-radius: 32px;
  background: #fff;
  color: var(--ink);
}

.svc-ipreview span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(11, 18, 32, 0.45);
}

.svc-ipreview h3 {
  margin: 120px 0 14px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.svc-ipreview p {
  margin: 0;
  max-width: 28ch;
  line-height: 1.6;
  color: rgba(11, 18, 32, 0.68);
}

.svc-why {
  display: grid;
}

.svc-why-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 42px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.svc-why-row b {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 96px);
  line-height: 0.85;
  letter-spacing: -0.07em;
  color: var(--red);
}

.svc-why-row h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  letter-spacing: -0.04em;
}

.svc-why-row p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  line-height: 1.65;
}

.svc-tech-sec {
  overflow: hidden;
  padding-bottom: clamp(24px, 3vw, 36px);
}

.svc-tech-sec>.wrap .head-grid {
  margin-bottom: clamp(18px, 2.5vw, 32px);
}

.svc-techs {
  margin-top: 0;
  width: 100%;
}

.svc-techs-stage {
  position: relative;
  width: 100%;
  max-width: none;
  height: clamp(220px, 34vw, 250px);
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  touch-action: none;
  user-select: none;
  cursor: grab;
}

.svc-techs-stage:active {
  cursor: grabbing;
}

.svc-tech-capsule {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 1.4vw, 20px) clamp(18px, 2.6vw, 36px);
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
  line-height: 1;
  pointer-events: none;
  will-change: transform;
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  opacity: 0;
}

.svc-techs.is-ready .svc-tech-capsule,
.svc-techs.is-static .svc-tech-capsule {
  opacity: 1;
}

/* Fallback so unknown tones still read as colored pills */
.svc-tech-capsule {
  background: linear-gradient(135deg, #9fb5ff, #5b7cfa);
  color: #0b1220;
}

.svc-tech-capsule[data-tone="react"],
.svc-tech-capsule[data-tone="rn"] {
  background: linear-gradient(135deg, #61dafb, #2bb8e8);
  color: #061018;
}

.svc-tech-capsule[data-tone="next"] {
  background: linear-gradient(135deg, #f4f4f5, #d4d4d8);
  color: #0b1220;
}

.svc-tech-capsule[data-tone="wordpress"] {
  background: linear-gradient(135deg, #4fa7d8, #21759b);
  color: #fff;
}

.svc-tech-capsule[data-tone="shopify"] {
  background: linear-gradient(135deg, #b6e06a, #7ab547);
  color: #10200a;
}

.svc-tech-capsule[data-tone="woo"] {
  background: linear-gradient(135deg, #c48bb8, #96588a);
  color: #fff;
}

.svc-tech-capsule[data-tone="cms"] {
  background: linear-gradient(135deg, #ff4d6d, #cd0f36);
  color: #fff;
}

.svc-tech-capsule[data-tone="apis"],
.svc-tech-capsule[data-tone="api"] {
  background: linear-gradient(135deg, #ffd56a, #f0a202);
  color: #1a1200;
}

.svc-tech-capsule[data-tone="github"] {
  background: linear-gradient(135deg, #4b5563, #24292e);
  color: #fff;
}

/* Design */
.svc-tech-capsule[data-tone="figma"] {
  background: linear-gradient(135deg, #f24e1e, #a259ff);
  color: #fff;
}

.svc-tech-capsule[data-tone="ai"] {
  background: linear-gradient(135deg, #ff9a4d, #f97316);
  color: #1a0c00;
}

.svc-tech-capsule[data-tone="ps"] {
  background: linear-gradient(135deg, #5aa7ff, #1f6feb);
  color: #fff;
}

.svc-tech-capsule[data-tone="id"] {
  background: linear-gradient(135deg, #ff6b9d, #d6336c);
  color: #fff;
}

.svc-tech-capsule[data-tone="ae"],
.svc-tech-capsule[data-tone="pr"] {
  background: linear-gradient(135deg, #d4a1ff, #9999ff);
  color: #16082a;
}

.svc-tech-capsule[data-tone="print"] {
  background: linear-gradient(135deg, #ffe08a, #f0b429);
  color: #1a1400;
}

.svc-tech-capsule[data-tone="brand"] {
  background: linear-gradient(135deg, #ffb596, #ff7a59);
  color: #2a1008;
}

.svc-tech-capsule[data-tone="pack"] {
  background: linear-gradient(135deg, #9ce7db, #2bb8a9);
  color: #06201c;
}

/* Branding */
.svc-tech-capsule[data-tone="strategy"] {
  background: linear-gradient(135deg, #d7ff92, #9fd84a);
  color: #142008;
}

.svc-tech-capsule[data-tone="naming"] {
  background: linear-gradient(135deg, #9fb5ff, #6d8cff);
  color: #0b1220;
}

.svc-tech-capsule[data-tone="identity"] {
  background: linear-gradient(135deg, #ffb596, #ff8a65);
  color: #2a1008;
}

.svc-tech-capsule[data-tone="voice"] {
  background: linear-gradient(135deg, #bda5ff, #8b6cf7);
  color: #fff;
}

.svc-tech-capsule[data-tone="type"] {
  background: linear-gradient(135deg, #f4f4f5, #c7c9d1);
  color: #0b1220;
}

.svc-tech-capsule[data-tone="color"] {
  background: linear-gradient(135deg, #ff4d6d, #ff9f1c);
  color: #fff;
}

.svc-tech-capsule[data-tone="guide"] {
  background: linear-gradient(135deg, #7dd3fc, #38bdf8);
  color: #062033;
}

.svc-tech-capsule[data-tone="rebrand"] {
  background: linear-gradient(135deg, #f6d577, #eab308);
  color: #1a1400;
}

/* Marketing */
.svc-tech-capsule[data-tone="seo"] {
  background: linear-gradient(135deg, #86efac, #22c55e);
  color: #052e16;
}

.svc-tech-capsule[data-tone="ads"] {
  background: linear-gradient(135deg, #fca5a5, #ef4444);
  color: #fff;
}

.svc-tech-capsule[data-tone="content"] {
  background: linear-gradient(135deg, #fde68a, #f59e0b);
  color: #1a1200;
}

.svc-tech-capsule[data-tone="social"] {
  background: linear-gradient(135deg, #93c5fd, #3b82f6);
  color: #fff;
}

.svc-tech-capsule[data-tone="email"] {
  background: linear-gradient(135deg, #c4b5fd, #8b5cf6);
  color: #fff;
}

.svc-tech-capsule[data-tone="crm"] {
  background: linear-gradient(135deg, #fdba74, #f97316);
  color: #1a0c00;
}

.svc-tech-capsule[data-tone="analytics"] {
  background: linear-gradient(135deg, #67e8f9, #06b6d4);
  color: #042f2e;
}

.svc-tech-capsule[data-tone="landing"] {
  background: linear-gradient(135deg, #f9a8d4, #ec4899);
  color: #fff;
}

/* Apps */
.svc-tech-capsule[data-tone="ios"] {
  background: linear-gradient(135deg, #e5e7eb, #9ca3af);
  color: #111827;
}

.svc-tech-capsule[data-tone="android"] {
  background: linear-gradient(135deg, #bbf7d0, #3ddc84);
  color: #052e16;
}

.svc-tech-capsule[data-tone="flutter"] {
  background: linear-gradient(135deg, #7dd3fc, #027dfd);
  color: #fff;
}

.svc-tech-capsule[data-tone="firebase"] {
  background: linear-gradient(135deg, #ffd56a, #ff8a00);
  color: #1a1200;
}

.svc-tech-capsule[data-tone="qa"] {
  background: linear-gradient(135deg, #a5b4fc, #6366f1);
  color: #fff;
}

/* Animation */
.svc-tech-capsule[data-tone="c4d"] {
  background: linear-gradient(135deg, #86efac, #16a34a);
  color: #052e16;
}

.svc-tech-capsule[data-tone="blender"] {
  background: linear-gradient(135deg, #fdba74, #ea580c);
  color: #1a0c00;
}

.svc-tech-capsule[data-tone="2d"] {
  background: linear-gradient(135deg, #f9a8d4, #db2777);
  color: #fff;
}

.svc-tech-capsule[data-tone="3d"] {
  background: linear-gradient(135deg, #93c5fd, #2563eb);
  color: #fff;
}

.svc-tech-capsule[data-tone="lottie"] {
  background: linear-gradient(135deg, #00d2ff, #3a29e6);
  color: #fff;
}

.svc-tech-capsule[data-tone="audio"] {
  background: linear-gradient(135deg, #c4b5fd, #7c3aed);
  color: #fff;
}

/* AI automation */
.svc-tech-capsule[data-tone="gpt"] {
  background: linear-gradient(135deg, #86efac, #10a37f);
  color: #052e16;
}

.svc-tech-capsule[data-tone="claude"] {
  background: linear-gradient(135deg, #fdba74, #d97706);
  color: #1a0c00;
}

.svc-tech-capsule[data-tone="gemini"] {
  background: linear-gradient(135deg, #93c5fd, #a78bfa);
  color: #0b1220;
}

.svc-tech-capsule[data-tone="zapier"] {
  background: linear-gradient(135deg, #ffb4a2, #ff4a00);
  color: #fff;
}

.svc-tech-capsule[data-tone="make"] {
  background: linear-gradient(135deg, #f9a8d4, #6d28d9);
  color: #fff;
}



.svc-techs.is-static .svc-techs-stage {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 14px;
  padding: 24px clamp(16px, 4vw, 48px);
  cursor: default;
  touch-action: auto;
}

.svc-techs.is-static .svc-tech-capsule {
  position: relative;
  left: auto;
  top: auto;
  transform: none !important;
  pointer-events: auto;
}

.svc-techs-hint {
  margin: 10px 0 0;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.svc-techs.is-static .svc-techs-hint {
  display: none;
}

/* Textual testimonials — restored pre-video 3-card design */
.service-page #testimonials .portfolio-head,
.content-page #testimonials .portfolio-head {
  margin-bottom: 0;
}

.service-page .testimonial-slider,
.service-page #testimonials .testimonial-viewport,
.content-page .testimonial-slider,
.content-page #testimonials .testimonial-viewport {
  margin-top: 60px;
}

.service-page .testimonial-viewport,
.content-page .testimonial-viewport {
  overflow: hidden;
  width: 100%;
}

.service-page .testimonial-track,
.content-page .testimonial-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-page .testimonial-card,
.content-page .testimonial-card {
  flex: 0 0 auto;
  min-width: 0;
  min-height: 430px;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 46px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  box-sizing: border-box;
}

.service-page .testimonial-body,
.content-page .testimonial-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 36px 32px;
  box-sizing: border-box;
}

.service-page .testimonial-top,
.content-page .testimonial-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.service-page .testimonial-lead,
.content-page .testimonial-lead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

.service-page .testimonial-quote-icon,
.content-page .testimonial-quote-icon {
  color: #ca0e35;
  flex: 0 0 auto;
}

.service-page .testimonial-date,
.content-page .testimonial-date {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  text-align: left;
}

.service-page .testimonial-platform,
.content-page .testimonial-platform {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 28px;
  max-width: 46%;
}

.service-page .testimonial-platform-img,
.content-page .testimonial-platform-img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  object-position: right center;
  filter: none;
  opacity: 1;
}

.service-page .testimonial-platform-img[hidden],
.content-page .testimonial-platform-img[hidden] {
  display: none;
}

.service-page .testimonial-body blockquote,
.content-page .testimonial-body blockquote {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  letter-spacing: -0.035em;
  font-weight: 100;
  font-style: italic;
  font-family: inherit;
}

.service-page .testimonial-body blockquote p,
.content-page .testimonial-body blockquote p {
  margin: 0;
  color: inherit;
  font: inherit;
}

.service-page .testimonial-foot,
.content-page .testimonial-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  margin-top: 0;
}

.service-page .testimonial-foot b,
.service-page .testimonial-foot cite,
.content-page .testimonial-foot b,
.content-page .testimonial-foot cite {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-style: normal;
}

.service-page .testimonial-verified,
.content-page .testimonial-verified {
  display: block;
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  object-position: right center;
}

.service-page .testimonial-verified[hidden],
.content-page .testimonial-verified[hidden] {
  display: none;
}

.service-page .testimonial-dots,
.content-page .testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.service-page .testimonial-dot,
.content-page .testimonial-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
}

.service-page .testimonial-dot:hover,
.content-page .testimonial-dot:hover {
  border-color: rgba(255, 255, 255, 0.9);
  transform: scale(1.12);
}

.service-page .testimonial-dot.is-active,
.content-page .testimonial-dot.is-active {
  width: 10px;
  background: #fff;
  border-color: #fff;
  transform: scale(1.15);
}

@media (max-width: 1280px) {
  .service-page .testimonial-card,
  .content-page .testimonial-card {
    min-height: 360px;
  }

  .service-page .testimonial-body,
  .content-page .testimonial-body {
    padding: 28px 24px;
    gap: 18px;
  }

  .service-page .testimonial-body blockquote,
  .content-page .testimonial-body blockquote {
    font-size: 20px;
  }

  .service-page .testimonial-foot b,
  .service-page .testimonial-foot cite,
  .content-page .testimonial-foot b,
  .content-page .testimonial-foot cite {
    font-size: 18px;
  }
}

@media (max-width: 960px) {
  .service-page #testimonials .testimonial-viewport,
  .content-page #testimonials .testimonial-viewport {
    margin-top: 36px;
  }

  .service-page .testimonial-card,
  .content-page .testimonial-card {
    min-height: 320px;
  }

  .service-page .testimonial-body,
  .content-page .testimonial-body {
    padding: 24px 20px;
  }

  .service-page .testimonial-body blockquote,
  .content-page .testimonial-body blockquote {
    font-size: 18px;
  }
}

@media (max-width: 650px) {
  .service-page #testimonials .testimonial-viewport,
  .content-page #testimonials .testimonial-viewport {
    margin-top: 24px;
  }

  .service-page .testimonial-card,
  .content-page .testimonial-card {
    border-radius: 22px;
    min-height: 260px;
  }

  .service-page .testimonial-body,
  .content-page .testimonial-body {
    padding: 22px 18px;
    gap: 16px;
  }

  .service-page .testimonial-body blockquote,
  .content-page .testimonial-body blockquote {
    font-size: 18px;
  }

  .service-page .testimonial-foot b,
  .service-page .testimonial-foot cite,
  .content-page .testimonial-foot b,
  .content-page .testimonial-foot cite {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-page .testimonial-track,
  .content-page .testimonial-track {
    transition: none !important;
  }
}

.svc-perf {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
}

.svc-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  overflow: hidden;
}

.svc-prow {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.svc-prow:last-child {
  border-bottom: 0;
}

.svc-prow strong {
  display: block;
  font-size: 18px;
}

.svc-prow p {
  margin: 6px 0 12px;
  color: rgba(255, 255, 255, 0.55);
}

.svc-prog {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), #7a8db8);
}

.service-page .checkup {
  margin-top: 0;
}

.svc-quote {
  padding: clamp(32px, 5vw, 56px);
  border-radius: 32px;
  background: var(--blue);
  color: #fff;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

.svc-quote:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(11, 18, 32, 0.16);
}

/* Scroll reveals — match homepage bi-reveal timing */
.svc-reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--svc-delay, 0s);
}

.svc-reveal.is-in {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.svc-process-swap {
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.svc-process-swap.is-swapping {
  opacity: 0;
  transform: translateY(8px);
}

.svc-quote blockquote {
  margin: 28px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.svc-quote b {
  display: block;
  font-size: 18px;
}

.svc-quote p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1100px) {

  .service-page .section {
    padding: clamp(64px, 7vw, 88px) 0;
  }

  .service-page .section .title,
  .service-page .title {
    font-size: clamp(34px, 5vw, 52px);
  }

  .svc-hero-grid,
  .svc-statement,
  .svc-build,
  .svc-industries,
  .svc-perf {
    grid-template-columns: 1fr;
  }

  .svc-hero-card {
    padding: 20px;
  }

  .svc-hero-visual,
  .svc-hero-visual img,
  .svc-hero-visual video,
  .svc-hero-visual .svc-hero-video {
    min-height: 340px;
  }

  .svc-hero.is-ready .svc-hero-visual {
    animation: none;
  }

  .svc-hero-trust a {
    margin-left: 0;
  }

  .svc-hero-actions .btn,
  .service-page .section-ctas .btn {
    width: 100%;
    justify-content: stretch;
  }

  .svc-hero-actions .btn .bi-btn-label-line,
  .service-page .section-ctas .btn .bi-btn-label-line {
    width: 100%;
    justify-content: space-between;
  }

  .svc-hero-actions .btn .bi-btn-arrow,
  .service-page .section-ctas .btn .bi-btn-arrow {
    margin-left: auto;
  }

  .service-page .section-ctas {
    width: 100%;
    max-width: 100%;
    border-radius: 28px;
    grid-template-columns: 1fr;
  }

  .svc-story,
  .svc-caps {
    grid-template-columns: 1fr 1fr;
  }

  .svc-story article,
  .svc-cap {
    min-height: 220px;
  }

  .svc-build-visual,
  .svc-ipreview {
    position: relative;
    top: auto;
    min-height: 280px;
  }

  .svc-build-visual h3 {
    font-size: clamp(28px, 5vw, 42px);
  }

  .svc-why-row {
    grid-template-columns: 80px 1fr;
  }

  .svc-why-row p {
    grid-column: 2;
  }

  .svc-statement img,
  .svc-statement video,
  .svc-statement-video,
  .svc-hero-visual img,
  .svc-hero-visual video,
  .svc-hero-visual .svc-hero-video {
    height: 360px;
    min-height: 360px;
  }

  .service-page .process-title {
    font-size: clamp(30px, 4vw, 44px);
  }

  .service-page .process-btn .bi-btn-label {
    font-size: clamp(26px, 4vw, 40px);
  }

  .service-page .process-inner {
    height: auto;
    min-height: 320px;
  }

  .service-page .process-title {
    min-height: 0;
    max-height: none;
  }

  .service-page .process-copy {
    min-height: 0;
    max-height: none;
  }

  .svc-techs-stage {
    height: 300px;
  }
}

@media (max-width: 960px) {
  .service-page .section {
    padding: clamp(56px, 8vw, 72px) 0;
  }

  .svc-hero-copy {
    font-size: 15px;
  }

  .svc-build-row {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 18px 0;
  }

  .svc-build-row .bi-btn-text {
    font-size: clamp(18px, 4.5vw, 26px);
  }

  .svc-build-row p {
    font-size: 14px;
  }

  .svc-story h3,
  .svc-cap h3 {
    font-size: 22px;
  }

  .svc-story span {
    margin-bottom: 24px;
  }

  .svc-cap h3 {
    margin-top: 28px;
  }

  .service-page .testimonial-platform {
    max-width: 42%;
  }

  .service-page .testimonial-platform-img {
    max-width: 100px;
    height: 22px;
  }
}

@media (max-width: 650px) {
  .service-page .section {
    padding: clamp(48px, 9vw, 60px) 0;
  }

  .service-page .head-grid {
    margin-bottom: 22px;
    gap: 12px;
  }

  .service-page .section .title,
  .service-page .title {
    font-size: clamp(28px, 8vw, 40px);
    max-width: none;
    line-height: 1.08;
  }

  .service-page #svc-reviews-title,
  .service-page #svc-process-title,
  .service-page #svc-tech-title,
  .service-page #svc-caps-title,
  .service-page #svc-build-title,
  .service-page #svc-why-web-title,
  .service-page #svc-story-title,
  .service-page #faq-title,
  .service-page #checkup-title,
  .service-page #industries-title {
    font-size: clamp(28px, 8vw, 40px);
  }

  .svc-hero {
    padding: calc(var(--header-h) + 20px) 0 24px;
  }

  .svc-hero-card {
    padding: 14px;
    border-radius: 18px;
  }

  .svc-hero-frame {
    border-radius: 18px;
  }

  .svc-hero h1 {
    font-size: clamp(28px, 8.2vw, 36px);
    line-height: 1.08;
  }

  .svc-hero-copy {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.55;
  }

  .svc-hero-actions {
    margin-top: 20px;
    gap: 8px;
  }

  .svc-breadcrumb li {
    font-size: 11px;
  }

  .svc-hero-trust {
    gap: 8px 10px;
    margin-top: 16px;
    font-size: 12px;
  }

  .svc-hero-trust p {
    width: 100%;
    margin: 0 0 4px;
  }

  .svc-tech {
    margin-top: 28px;
    padding-top: 18px;
  }

  .svc-tech-item img {
    max-width: 96px;
    height: 40px;
  }

  .svc-tech-name {
    font-size: 11px;
  }

  .svc-statement h2 {
    max-width: none;
  }

  .svc-statement p {
    font-size: 15px;
  }

  .svc-statement img,
  .svc-statement video,
  .svc-statement-video,
  .svc-hero-visual,
  .svc-hero-visual img,
  .svc-hero-visual video,
  .svc-hero-visual .svc-hero-video {
    min-height: 220px;
    height: 220px;
    border-radius: 20px;
  }

  .svc-build-visual {
    min-height: 220px;
    padding: 24px;
    border-radius: 22px;
  }

  .svc-build-visual h3 {
    margin-top: 18px;
    font-size: clamp(26px, 7vw, 34px);
  }

  .svc-story,
  .svc-caps {
    grid-template-columns: 1fr;
  }

  .svc-story article,
  .svc-cap {
    min-height: 0;
    padding: 20px;
  }

  .svc-story span,
  .svc-cap span {
    margin-bottom: 24px;
  }

  .svc-cap h3 {
    margin-top: 28px;
    font-size: 22px;
  }

  .svc-why-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .svc-why-row p {
    grid-column: auto;
  }

  .svc-why-row b {
    font-size: clamp(40px, 12vw, 56px);
  }

  .svc-ilist button {
    font-size: 22px;
  }

  .svc-ipreview h3 {
    margin-top: 48px;
  }

  .svc-techs-stage {
    height: 240px;
  }

  .svc-tech-capsule {
    padding: 11px 16px;
    font-size: 13px;
  }

  .service-page .process-card {
    border-radius: 24px;
    padding: 14px;
  }

  .service-page .process-inner {
    min-height: 0;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .service-page .process-title {
    font-size: clamp(28px, 9vw, 36px);
    margin-bottom: 10px;
  }

  .service-page .process-copy {
    font-size: 15px;
  }

  .service-page .process-btn {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    padding: 16px 0;
    min-height: 0;
  }

  .service-page .process-btn .bi-btn-label {
    font-size: clamp(22px, 6.5vw, 28px);
    height: 1.35em;
  }

  .service-page .process-btn .bi-btn-label-line {
    min-height: 1.35em;
  }

  .service-page #testimonials .portfolio-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .service-page .testimonial-body {
    padding: 20px 16px;
    gap: 14px;
  }

  .service-page .testimonial-body blockquote {
    font-size: 16px;
  }

  .service-page .testimonial-foot {
    gap: 10px;
  }

  .service-page .testimonial-foot cite {
    font-size: 15px;
  }

  .service-page .testimonial-verified {
    height: 26px;
    max-width: 110px;
  }

  .service-page .testimonial-platform-img {
    max-width: 88px;
    height: 20px;
  }

  .service-page .faq-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .service-page .faq-lead {
    font-size: 15px;
  }
}

@media (max-width: 430px) {
  .service-page .section {
    padding: clamp(40px, 10vw, 52px) 0;
  }

  .svc-hero h1 {
    font-size: 26px;
  }

  .svc-hero-actions .btn {
    font-size: 13px;
  }

  .svc-tech-item {
    min-width: 84px;
    gap: 8px;
  }

  .svc-tech-item img {
    max-width: 78px;
    height: 34px;
  }

  .service-page .process-btn .bi-btn-label {
    font-size: 20px;
  }

  .service-page .testimonial-card {
    min-height: 240px;
    border-radius: 18px;
  }

  .service-page .testimonial-body blockquote {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .svc-hero-enter,
  .svc-reveal,
  .svc-hero-visual img,
  .svc-hero-visual video,
  .svc-hero-visual .svc-hero-video,
  .svc-statement img,
  .svc-statement video,
  .svc-statement-video,
  .svc-story article,
  .svc-cap,
  .svc-techs span,
  .svc-tech-capsule,
  .svc-quote,
  .svc-build-row .bi-btn-text,
  .svc-build-row>.bi-btn-arrow,
  .svc-build-visual .svc-build-swap,
  .svc-process-swap,
  .svc-hero-glow,
  .svc-hero.is-ready .svc-hero-visual,
  .svc-hero.is-ready .svc-hero-trust a,
  .svc-hero-cta.is-pulse {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
    will-change: auto;
  }

  .svc-hero.is-ready .svc-hero-enter {
    transition-delay: 0s !important;
  }

  .svc-hero-frame {
    opacity: 1;
  }
}