/* Service page — mobile-first overrides on top of home-sections.css */

.service-page {
  overflow-x: hidden;
  padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px));
}

@media (min-width: 768px) {
  .service-page {
    padding-bottom: 0;
  }
}

/* Animation degradation: visible by default, animate when JS adds is-visible */
.service-page .load-reveal {
  opacity: 1 !important;
}

.service-page .proc-reveal,
.service-page .fade-up {
  opacity: 1;
  transform: none;
}

.service-page .proc-reveal.is-visible,
.service-page .fade-up.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .service-page.js-ready .proc-reveal:not(.is-visible),
  .service-page.js-ready .fade-up:not(.is-visible) {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  .service-page.js-ready .proc-reveal.is-visible,
  .service-page.js-ready .fade-up.is-visible {
    opacity: 1;
    transform: none;
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
}

.service-page #app {
  padding-top: calc(var(--sticky-header-height, 58px) + var(--page-gutter, 12px) + 12px);
}

@media (min-width: 768px) {
  .service-page #app {
    padding-top: calc(var(--sticky-header-height, 58px) + var(--page-gutter, 16px) + 16px);
  }
}

/* Solid header on service pages */
.service-page .site-header > div {
  background: rgba(14, 18, 25, 0.94) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.service-page .site-header.is-scrolled > div {
  background: rgba(14, 18, 25, 0.98) !important;
}

@media (max-width: 767px) {
  .service-page .site-header nav,
  .service-page .site-header > div > .flex > .hidden.items-center.gap-4 {
    display: none !important;
  }

  .service-page .header-mobile-actions {
    display: flex !important;
  }
}

@media (min-width: 768px) {
  .service-page .header-mobile-actions {
    display: none !important;
  }
}

/* Hero */
.svc-hero {
  position: relative;
  background: #030202;
  padding: 0 var(--content-gutter, 16px) clamp(2.5rem, 6vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.svc-hero__blueprint {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.055;
  background-image:
    linear-gradient(rgba(232, 200, 114, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 200, 114, 0.35) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 88%);
}

.svc-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
}

.svc-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-family: var(--f-mono, "JetBrains Mono", monospace);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 239, 228, 0.45);
}

.svc-breadcrumbs a {
  color: rgba(247, 239, 228, 0.65);
  text-decoration: none;
}

.svc-breadcrumbs a:hover { color: #f7efe4; }

.svc-breadcrumbs [aria-current="page"] { color: #f7efe4; }

/* Hero gallery — top placement, 4:5 portrait */
.svc-hero--gallery-top .svc-hero__body {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

@media (min-width: 960px) {
  .svc-hero--gallery-top .svc-hero__body {
    grid-template-columns: minmax(0, 42rem);
    justify-content: start;
    align-items: start;
    gap: clamp(2rem, 4vw, 3rem);
  }
}

.svc-hero--gallery-top .svc-hero-gallery {
  width: calc(100% + (var(--content-gutter, 16px) * 2));
  max-width: 100vw;
  margin-left: calc(-1 * var(--content-gutter, 16px));
  margin-right: calc(-1 * var(--content-gutter, 16px));
}

@media (min-width: 640px) {
  .svc-hero--gallery-top .svc-hero-gallery {
    width: 100%;
    max-width: min(36rem, 100%);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 960px) {
  .svc-hero--gallery-top .svc-hero-gallery {
    max-width: min(44rem, 100%);
  }
}

@media (min-width: 1200px) {
  .svc-hero--gallery-top .svc-hero-gallery {
    max-width: min(52rem, 100%);
  }
}

.svc-hero-gallery {
  width: 100%;
}

.svc-hero-gallery__bezel {
  padding: 0.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
}

.svc-hero-gallery__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: #1c1c1c;
  aspect-ratio: 4 / 5;
  width: 100%;
  min-height: clamp(20rem, 72vw, 28rem);
}

@media (min-width: 640px) {
  .svc-hero-gallery__viewport {
    min-height: clamp(28rem, 62vh, 40rem);
  }
}

@media (min-width: 1200px) {
  .svc-hero-gallery__viewport {
    min-height: clamp(32rem, 68vh, 44rem);
  }
}

.svc-hero-gallery__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.55s cubic-bezier(0.32, 0.72, 0, 1);
  pointer-events: none;
}

.svc-hero-gallery__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.svc-hero-gallery__slide[hidden] {
  display: block;
}

.svc-hero-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-hero-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-top: -1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(14, 18, 25, 0.72);
  color: #f7efe4;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.svc-hero-gallery__nav:hover {
  background: rgba(14, 18, 25, 0.9);
  border-color: rgba(232, 200, 114, 0.45);
}

.svc-hero-gallery__nav:active {
  transform: scale(0.96);
}

.svc-hero-gallery__nav--prev { left: 0.75rem; }
.svc-hero-gallery__nav--next { right: 0.75rem; }

.svc-hero-gallery__counter {
  position: absolute;
  right: 0.85rem;
  bottom: 0.75rem;
  z-index: 3;
  margin: 0;
  padding: 0.3rem 0.55rem;
  border-radius: 2px;
  background: rgba(14, 18, 25, 0.72);
  font-family: var(--f-mono, "JetBrains Mono", monospace);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(247, 239, 228, 0.85);
}

.svc-hero-gallery__thumbs {
  display: flex;
  gap: 0.45rem;
  margin-top: 0.55rem;
  padding: 0.15rem 0.05rem 0.05rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.svc-hero-gallery__thumbs::-webkit-scrollbar { display: none; }

.svc-hero-gallery__thumb {
  flex: 0 0 auto;
  width: auto;
  height: 4.75rem;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  background: #1c1c1c;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  scroll-snap-align: start;
  transition: opacity 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

@media (min-width: 768px) {
  .svc-hero-gallery__thumb {
    height: 5.75rem;
  }
}

.svc-hero-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-hero-gallery__thumb.is-active,
.svc-hero-gallery__thumb:hover {
  opacity: 1;
  border-color: rgba(232, 200, 114, 0.55);
}

.svc-hero-gallery__thumb.is-active {
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .svc-hero-gallery__slide {
    transition: none;
  }
}

.svc-hero__grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 960px) {
  .svc-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: start;
  }
}

.svc-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--f-display, "Archivo", system-ui, sans-serif);
  font-size: clamp(2rem, 6.5vw, 3.75rem);
  font-weight: 800;
  font-stretch: 75%;
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;
}

.svc-hero__title-line {
  display: block;
}

.svc-hero__title-line--accent {
  color: #e8c872;
}

.svc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--f-mono, "JetBrains Mono", monospace);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 239, 228, 0.85);
  text-decoration: none;
  transition: border-color 0.25s cubic-bezier(0.32, 0.72, 0, 1), background 0.25s cubic-bezier(0.32, 0.72, 0, 1);
}

.svc-hero__badge:hover {
  border-color: rgba(232, 200, 114, 0.45);
  background: rgba(255, 255, 255, 0.07);
}

.svc-hero__badge-stars {
  color: #e8c872;
  letter-spacing: 0.05em;
}

.svc-hero__badge-rating {
  font-weight: 600;
  color: #fff;
}

.svc-hero__text {
  margin: 0 0 0.75rem;
  max-width: 42ch;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(247, 239, 228, 0.78);
}

.svc-hero__trust {
  margin: 0 0 1.25rem;
  font-family: var(--f-mono, "JetBrains Mono", monospace);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 239, 228, 0.52);
}

.svc-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .svc-hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.svc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.4rem 0.45rem 0.4rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #c8923a 0%, #e8c872 55%, #b87a2a 100%);
  color: #0a0a0a;
  font-family: var(--f-display, "Archivo", system-ui, sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter 0.35s cubic-bezier(0.32, 0.72, 0, 1), transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.svc-btn-primary__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.12);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1), background 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.svc-btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.svc-btn-primary:hover .svc-btn-primary__icon {
  transform: translate(2px, -1px) scale(1.05);
  background: rgba(10, 10, 10, 0.18);
}

.svc-btn-primary:active {
  transform: scale(0.98);
}

.svc-hero__call {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--f-display, "Archivo", system-ui, sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(247, 239, 228, 0.85);
  text-decoration: none;
  transition: color 0.2s ease;
}

.svc-hero__call:hover { color: #f7efe4; }

.svc-hero__form-col {
  width: 100%;
}

/* Quote form */
.svc-hero__form-bezel {
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.03);
}

.svc-quote-form-wrap {
  padding: 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  background: rgba(14, 18, 25, 0.92);
}

.svc-hero__form-bezel .svc-quote-form-wrap {
  border: none;
  background: rgba(14, 18, 25, 0.92);
}

.svc-quote-form__title {
  margin: 0 0 0.85rem;
  font-family: var(--f-display, "Archivo", system-ui, sans-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
}

.svc-quote-form .quote-form__field input,
.svc-quote-form .quote-form__field select {
  min-height: 44px;
}

.svc-quote-form__submit {
  width: 100%;
  min-height: 48px;
  background: linear-gradient(135deg, #c8923a 0%, #e8c872 55%, #b87a2a 100%) !important;
  color: #0a0a0a !important;
  font-weight: 700;
}

.svc-quote-form__submit:hover {
  filter: brightness(1.06);
}

.svc-quote-form__note {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(247, 239, 228, 0.5);
  text-align: center;
}

/* Content sections */
.svc-content {
  background: #0e1219;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-page .svc-content__section {
  padding: clamp(2.5rem, 6vw, 5rem) var(--content-gutter, 16px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-page .svc-content__section:first-child { border-top: none; }

.svc-content__grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .svc-content__section--split .svc-content__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .svc-content__section--split-reverse .svc-content__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .svc-content__section--split-reverse .svc-content__copy {
    order: 2;
  }

  .svc-content__section--split-reverse .svc-content__figure {
    order: 1;
  }

  .svc-content__section--editorial .svc-content__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
  }
}

.svc-content__title {
  margin: 0;
  font-family: var(--f-display, "Archivo", system-ui, sans-serif);
  font-size: clamp(1.35rem, 4.5vw, 2.25rem);
  font-weight: 800;
  font-stretch: 75%;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #fff;
}

.svc-content__head { margin-bottom: 1rem; }

.svc-content__lead {
  margin: 0 0 1rem;
  max-width: 58ch;
  font-size: 1rem;
  line-height: 1.65;
  color: #f7efe4;
}

.svc-content__bullets {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.svc-content__bullets li {
  font-size: 0.925rem;
  line-height: 1.55;
  color: rgba(247, 239, 228, 0.72);
}

.svc-content__figure {
  margin: 0;
}

.svc-content__figure-bezel {
  padding: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.02);
}

.svc-content__figure-core {
  overflow: hidden;
  border-radius: 2px;
  background: #1c1c1c;
}

.svc-content__figure-core img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.32, 0.72, 0, 1);
}

.svc-content__figure--tall .svc-content__figure-core img {
  aspect-ratio: 3 / 4;
}

.svc-content__figure-bezel:hover .svc-content__figure-core img {
  transform: scale(1.05);
}

/* Full-width band section (breaks zigzag) */
.svc-content__section--band {
  padding-left: 0;
  padding-right: 0;
}

.svc-content__band {
  position: relative;
  min-height: clamp(22rem, 55vw, 32rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.svc-content__band-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.svc-content__band-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(3, 2, 2, 0.15) 0%, rgba(3, 2, 2, 0.55) 45%, rgba(14, 18, 25, 0.94) 100%);
}

.svc-content__band-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) var(--content-gutter, 16px);
}

@media (min-width: 768px) {
  .svc-content__band-copy {
    max-width: 52rem;
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
  }
}

/* Reveal states */
@media (prefers-reduced-motion: no-preference) {
  .service-page.js-ready .svc-reveal:not(.is-visible) {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }

  .service-page.js-ready .svc-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .service-page.js-ready .fade-up:not(.is-visible) {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }

  .service-page.js-ready .fade-up.is-visible {
    opacity: 1;
    transform: none;
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  }
}

.svc-content__more {
  margin: 1rem 0 0;
  font-size: 0.875rem;
}

.svc-content__more a {
  color: #e8c872;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Pricing block — bento split */
.svc-pricing {
  padding: clamp(2rem, 5vw, 3.5rem) var(--content-gutter, 16px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(232, 200, 114, 0.04);
}

.svc-pricing__grid {
  display: grid;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(232, 200, 114, 0.22);
  border-radius: 2px;
  background: rgba(14, 18, 25, 0.65);
}

@media (min-width: 768px) {
  .svc-pricing__grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    align-items: start;
  }
}

.svc-pricing__kicker {
  margin-bottom: 0.65rem;
}

.svc-pricing__title {
  margin: 0 0 0.85rem;
  font-family: var(--f-display, "Archivo", system-ui, sans-serif);
  font-size: clamp(1.25rem, 3.5vw, 1.85rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
}

.svc-pricing__line {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(247, 239, 228, 0.78);
}

.svc-pricing__line--highlight {
  font-size: 1.05rem;
  font-weight: 500;
  color: #e8c872;
}

.svc-pricing__factors {
  margin: 0 0 1.15rem;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
}

.svc-pricing__factors li {
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(247, 239, 228, 0.62);
}

.svc-pricing__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.55rem 0.5rem 0.55rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #c8923a 0%, #e8c872 55%, #b87a2a 100%);
  border: none;
  color: #0a0a0a;
  font-family: var(--f-display, "Archivo", system-ui, sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.svc-pricing__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.12);
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
}

.svc-pricing__cta:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.svc-pricing__cta:hover .svc-pricing__cta-icon {
  transform: translate(2px, -1px);
}

.svc-pricing__cta:active {
  transform: scale(0.98);
}

/* Compact CTA */
.svc-compact-cta {
  padding: clamp(1.5rem, 4vw, 2.5rem) var(--content-gutter, 16px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #0a0d12;
}

.svc-compact-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .svc-compact-cta__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}

.svc-compact-cta__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(247, 239, 228, 0.78);
}

.svc-compact-cta__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #c8923a 0%, #e8c872 55%, #b87a2a 100%);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.svc-compact-cta__btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.svc-compact-cta__btn:active {
  transform: scale(0.98);
}

.svc-content__crosslink {
  padding: 1.5rem var(--content-gutter, 16px) 2rem;
  margin: 0;
  max-width: 52rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(247, 239, 228, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.svc-content__crosslink a {
  color: #e8c872;
  text-decoration: underline;
}

.faq__a a {
  color: #e8c872;
  text-decoration: underline;
}

/* Sticky mobile bar */
.svc-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 900;
  display: flex;
  align-items: stretch;
  gap: 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(14, 18, 25, 0.98);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(110%);
  transition: transform 0.25s ease;
}

.svc-sticky-bar.is-visible {
  transform: translateY(0);
}

@media (min-width: 768px) {
  .svc-sticky-bar { display: none; }
}

.svc-sticky-bar__call,
.svc-sticky-bar__cta {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 52px;
  padding: 0.65rem 0.75rem;
  font-family: var(--f-display, "Archivo", system-ui, sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.svc-sticky-bar__call {
  color: rgba(247, 239, 228, 0.9);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.svc-sticky-bar__cta {
  color: #0a0a0a;
  background: linear-gradient(135deg, #c8923a 0%, #e8c872 55%, #b87a2a 100%);
}

/* Shared sections on service page */
.service-page #app > .how-works,
.service-page #app > .cta-band,
.service-page #app > .projects,
.service-page #app > .testimonials,
.service-page #app > .faq,
.service-page #app > .svc-compact-cta {
  padding-left: var(--content-gutter, 16px) !important;
  padding-right: var(--content-gutter, 16px) !important;
}

.service-page .particle-btn__label {
  display: none;
}

.service-page .particle-btn {
  min-width: 44px;
  min-height: 44px;
}

.service-page footer h2 {
  font-size: clamp(1.75rem, 8vw, 2.75rem) !important;
  line-height: 1 !important;
}

.service-page .footer-word {
  display: none !important;
}

@media (max-width: 767px) {
  .service-page footer .grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  .service-page footer > .relative.z-10 {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .service-page .blog-slider {
    padding-left: var(--content-gutter, 16px);
    padding-right: var(--content-gutter, 16px);
  }

  .service-page .faq__q {
    font-size: 1rem;
    gap: 1rem;
    padding: 1.15rem 0;
  }
}
