.service-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.055), transparent 30%),
    radial-gradient(circle at 82% 12%, rgba(134, 22, 38, 0.15), transparent 36%),
    radial-gradient(circle at 50% 86%, rgba(255, 255, 255, 0.035), transparent 28%),
    #000;
  color: var(--white);
}

.service-page .site-header {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.service-main {
  position: relative;
  z-index: 10;
  width: calc(100vw - 96px);
  max-width: none;
  margin: 0 auto;
  padding: 92px 0 88px;
}

.service-shell {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(8, 8, 8, 0.74);
  box-shadow:
    0 44px 150px rgba(0, 0, 0, 0.72),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.service-hero {
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 56px 56px 62px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #050505;
}

.service-hero-video,
.service-hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-hero-video {
  object-fit: cover;
  opacity: 1;
  filter: brightness(1) saturate(1.04);
}

.service-hero-poster {
  object-fit: cover;
  opacity: 0;
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.16)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.24));
  pointer-events: none;
}

.service-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.service-kicker,
.service-section-label {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.service-title {
  max-width: 920px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 4.8vw, 78px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.service-intro {
  max-width: 700px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.52;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.service-actions a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition:
    color 260ms ease,
    transform 260ms var(--ease-cinema),
    letter-spacing 320ms var(--ease-cinema);
}

.service-actions a:hover {
  color: #fff;
  transform: translateY(-1px);
  letter-spacing: 0.3em;
}

.service-section {
  padding: 44px 56px 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.service-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.72;
}

.service-copy p {
  margin: 0 0 16px;
}

.service-copy p:last-child {
  margin-bottom: 0;
}

.service-copy strong {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 800;
}

.service-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  max-width: 860px;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 13px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.095),
    0 10px 34px rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.74);
  font-size: 9px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-pill.is-primary {
  background: rgba(80, 255, 165, 0.035);
  box-shadow:
    inset 0 0 0 1px rgba(112, 255, 178, 0.42),
    0 0 22px rgba(112, 255, 178, 0.08),
    0 10px 34px rgba(0, 0, 0, 0.18);
  color: rgba(185, 255, 215, 0.9);
}

.service-partner-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.service-partner-card {
  width: 210px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  border-radius: 15px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.085),
    0 18px 58px rgba(0, 0, 0, 0.22);
}

.service-partner-card img {
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.28));
}

.service-project-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
}

.service-title-card {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  text-decoration: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    0 20px 70px rgba(0, 0, 0, 0.34);
  transition:
    transform 360ms var(--ease-cinema),
    box-shadow 360ms var(--ease-cinema);
}

.service-title-card:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.26),
    0 32px 90px rgba(0, 0, 0, 0.48);
}

.service-title-card img,
.service-title-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-title-card img {
  z-index: 1;
  opacity: 1;
  filter: brightness(0.86) saturate(1.04);
  transition:
    opacity 260ms ease,
    transform 500ms var(--ease-cinema);
}

.service-title-card video {
  z-index: 2;
  opacity: 0;
  filter: brightness(0.92) saturate(1.04);
  transition:
    opacity 260ms ease,
    transform 500ms var(--ease-cinema);
}

.service-title-card:hover img {
  opacity: 0;
  transform: scale(1.018);
}

.service-title-card:hover video {
  opacity: 1;
  transform: scale(1.018);
}

.service-title-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.12) 44%, rgba(0, 0, 0, 0.46));
  pointer-events: none;
}

.service-title-card-copy {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 15px;
  z-index: 4;
  text-align: center;
  color: #fff;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.72);
}

.service-title-card-copy strong {
  display: block;
  font-size: clamp(10px, 0.72vw, 12px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-title-card-copy small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-footer-cta {
  padding: 42px 56px 50px;
}

.service-footer-cta p {
  max-width: 700px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.7;
}

.service-footer-cta strong {
  color: rgba(255, 255, 255, 0.96);
}

@media (max-width: 1100px) {
  .service-project-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .service-project-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 680px;
  }
}

@media (max-width: 760px) {
  .service-main {
    width: calc(100vw - 28px);
    padding: 108px 0 64px;
  }

  .service-shell {
    border-radius: 16px;
  }

  .service-hero {
    min-height: 58vh;
    padding: 42px 24px 44px;
  }

  .service-title {
    font-size: clamp(38px, 12vw, 58px);
    line-height: 0.92;
  }

  .service-intro {
    font-size: 15px;
    line-height: 1.62;
  }

  .service-section {
    padding: 34px 24px 38px;
  }

  .service-partner-card {
    width: calc(50% - 9px);
    height: 82px;
    padding: 18px;
  }

  .service-partner-card img {
    max-height: 46px;
  }

  .service-pill {
    padding: 8px 11px 7px;
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  .service-project-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .service-title-card-copy {
  left: 12px;
  right: 12px;
  bottom: 12px;
}

.service-title-card-copy strong {
  font-size: 10px;
}

.service-title-card-copy small {
  font-size: 7px;
}

  .service-footer-cta {
    padding: 34px 24px 40px;
  }
}

/* SERVICE PAGE EXPANSION */

.service-copy-large {
  max-width: 820px;
  font-size: 15px;
  line-height: 1.7;
}

.service-section-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 28px;
}

.service-section-heading-row .service-section-label {
  margin-bottom: 0;
}

.service-section-note {
  max-width: 440px;
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.58;
}

.service-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 920px;
}

.service-proof-card {
  min-height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.06), transparent 36%),
    radial-gradient(circle at 86% 105%, rgba(134, 22, 38, 0.12), transparent 48%),
    rgba(5, 5, 5, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.095),
    0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.service-proof-card img {
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.34));
}

.service-proof-stat {
  align-items: flex-start;
  flex-direction: column;
}

.service-proof-stat strong {
  display: block;
  color: #fff;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.service-proof-stat span {
  display: block;
  max-width: 220px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.service-build-list {
  display: grid;
  gap: 20px;
}

.service-build-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: center;
  padding: 16px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.052), transparent 34%),
    radial-gradient(circle at 86% 105%, rgba(134, 22, 38, 0.11), transparent 48%),
    rgba(5, 5, 5, 0.74);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.09),
    0 30px 94px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.service-build-row.is-reversed {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.service-build-row.is-reversed .service-build-media {
  order: 2;
}

.service-build-row.is-reversed .service-build-copy {
  order: 1;
}

.service-build-media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 22px 68px rgba(0, 0, 0, 0.38);
}

.service-build-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.22)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.085), transparent 44%);
  pointer-events: none;
}

.service-build-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.88) contrast(1.05) saturate(1.04);
  transform: scale(1.02);
  transition:
    transform 900ms var(--ease-cinema),
    filter 900ms var(--ease-cinema);
}

.service-build-row:hover .service-build-media img {
  transform: scale(1.06);
  filter: brightness(0.95) contrast(1.06) saturate(1.06);
}

.service-build-copy {
  max-width: 560px;
  padding: 10px 12px;
}

.service-build-copy > span {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.service-build-copy h2 {
  max-width: 520px;
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 0.92;
  font-weight: 950;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.service-build-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.62;
}

.service-mini-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.service-mini-pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px 7px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.026);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.085),
    0 10px 28px rgba(0, 0, 0, 0.2);
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.service-process-card {
  min-height: 190px;
  padding: 22px 20px 24px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.052), transparent 34%),
    radial-gradient(circle at 86% 105%, rgba(134, 22, 38, 0.095), transparent 48%),
    rgba(5, 5, 5, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.085),
    0 22px 72px rgba(0, 0, 0, 0.26);
}

.service-process-card span {
  display: block;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.service-process-card strong {
  display: block;
  max-width: 220px;
  color: #fff;
  font-size: 15px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.service-process-card p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.55;
}

.service-footer-cta-large {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.04), transparent 30%),
    radial-gradient(circle at 82% 100%, rgba(134, 22, 38, 0.11), transparent 42%);
}

/* SERVICE REVEAL MOTION */

.service-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 820ms var(--ease-cinema),
    transform 820ms var(--ease-cinema);
  transition-delay: calc(var(--service-reveal-index, 0) * 55ms);
  will-change: opacity, transform;
}

.service-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-build-row.service-reveal,
.service-process-card.service-reveal {
  transform: translateY(22px) scale(0.992);
}

.service-build-row.service-reveal.is-visible,
.service-process-card.service-reveal.is-visible {
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .service-reveal,
  .service-build-media img {
    transition: none;
  }

  .service-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1100px) {
  .service-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-build-row,
  .service-build-row.is-reversed {
    grid-template-columns: 1fr;
  }

  .service-build-row.is-reversed .service-build-media,
  .service-build-row.is-reversed .service-build-copy {
    order: initial;
  }

  .service-build-copy {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .service-proof-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .service-section-heading-row {
    display: block;
  }

  .service-section-note {
    margin-top: -10px;
  }
}

@media (max-width: 760px) {
  .service-copy-large {
    font-size: 14px;
    line-height: 1.68;
  }

  .service-proof-card {
    min-height: 94px;
    padding: 20px;
  }

  .service-build-row {
    gap: 16px;
    padding: 12px;
    border-radius: 16px;
  }

  .service-build-media {
    border-radius: 12px;
  }

  .service-build-copy {
    padding: 2px 2px 4px;
  }

  .service-build-copy h2 {
    font-size: clamp(22px, 9vw, 34px);
    line-height: 0.95;
  }

  .service-build-copy p {
    font-size: 13px;
    line-height: 1.62;
  }

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

  .service-process-card {
    min-height: auto;
  }

  .service-reveal {
    filter: none;
    transform: translateY(14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-reveal,
  .service-build-media img {
    transition: none;
  }

  .service-reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }
}