/* =============================================
   SERVICES PAGE STYLES
   Feature sections: services hero, service navigation, command overview, service studio, design lab, service control, workflow runway, capacity/compliance, CTA and certifications.
   Comments are intentionally grouped by page feature so future edits can be made safely without changing layout behavior.
   ============================================= */

/* --------------------------------------------------------------------------
   SECTION 1: Services Page Theme Tokens
   --------------------------------------------------------------------------
   Establishes local CSS variable overrides specifically for the Services subpage.
   Defines paper, muted, and ink color layers to maintain a harmonious contrast 
   along with custom rounded border radii and dynamic box shadow parameters.
   -------------------------------------------------------------------------- */
:root {
  --services-paper: #fbfaf7;
  --services-muted: #f2f0ea;
  --services-ink: var(--primary-color);
  --services-line: rgba(17, 17, 17, 0.1);
  --services-radius-xl: 30px;
  --services-radius-lg: 22px;
  --services-radius-md: 14px;
  --services-shadow: 0 34px 90px -42px rgba(0, 0, 0, 0.55);
  --services-shadow-strong: 0 45px 120px -48px rgba(0, 0, 0, 0.72);
}
.services-page {
  background:
    radial-gradient(
      circle at 8% 8%,
      rgba(166, 138, 100, 0.12),
      transparent 28vw
    ),
    linear-gradient(180deg, var(--white) 0%, var(--services-paper) 100%);
  color: var(--services-ink);
}
.services-page .container {
  position: relative;
}
/* --------------------------------------------------------------------------
   SECTION 2: Services Hero Section
   --------------------------------------------------------------------------
   Sets up the full-width parallax background image banner, overlay gradients, 
   grid backdrops, and text alignments at the top of the Services subpage.
   -------------------------------------------------------------------------- */
.services-hero {
  min-height: 480px;
  height: 64vh;
  isolation: isolate;
  background: var(--primary-color);
}
.services-hero .parallax-bg {
  height: 116%;
  filter: saturate(0.88) contrast(1.1) brightness(0.72);
  transform-origin: center top;
}
.services-hero .hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.84) 0%,
      rgba(0, 0, 0, 0.58) 45%,
      rgba(0, 0, 0, 0.18) 100%
    ),
    radial-gradient(
      circle at 72% 30%,
      rgba(166, 138, 100, 0.32),
      transparent 34vw
    );
}
.services-hero::before,
.services-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.services-hero::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.78), transparent 74%);
  opacity: 0.34;
}
.services-hero::after {
  left: 0;
  right: 0;
  bottom: -1px;
  height: 32%;
  background: linear-gradient(to top, var(--services-paper), transparent);
  z-index: 2;
}
.services-hero-content {
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding-top: 86px;
  padding-bottom: 34px;
}
.services-kicker {
  display: none;
}
.services-hero-title {
  font-size: clamp(2.5rem, 5.5vw, 5.2rem) !important;
  line-height: 0.92;
  letter-spacing: -0.055em;
  margin-bottom: 18px !important;
  max-width: 860px;
}
.services-hero-title span {
  display: block;
}
.services-hero-lead {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  line-height: 1.68;
  margin-bottom: 0;
}
.services-hero-actions {
  display: none;
}
.services-hero-card {
  justify-self: end;
  width: min(100%, 340px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.16),
    rgba(255, 255, 255, 0.055)
  );
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 20px;
  padding: 16px 18px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.services-hero-card::before {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(166, 138, 100, 0.32);
  filter: blur(30px);
}
.services-hero-card > * {
  position: relative;
  z-index: 1;
}
.services-hero-card-label {
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
}
.services-hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.services-hero-metric {
  min-height: 68px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(0, 0, 0, 0.18);
}
.services-hero-metric strong {
  display: block;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.05em;
}
.services-hero-metric span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1.35;
}
.services-hero-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  line-height: 1.45;
  margin: 0;
}
.services-hero-note i {
  color: var(--accent-color);
  font-size: 15px;
  margin-top: 1px;
}
.services-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 4;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  writing-mode: vertical-rl;
}
.services-scroll-cue::after {
  content: "";
  display: block;
  width: 1px;
  height: 56px;
  margin: 18px auto 0;
  background: linear-gradient(to bottom, var(--accent-color), transparent);
  animation: servicesLineDrift 2.2s var(--ease-premium) infinite;
}
/* --------------------------------------------------------------------------
   SECTION 3: Services Quick Navigation
   --------------------------------------------------------------------------
   Styles the sticky horizontal bar, active pills, and hover interactions 
   allowing users to quick-jump to target sub-sections on scroll.
   -------------------------------------------------------------------------- */
.services-quicknav-wrap {
  position: sticky;
  top: 76px;
  z-index: 80;
  background: rgba(251, 250, 247, 0.82);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.services-quicknav {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 14px 40px;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.services-quicknav::-webkit-scrollbar {
  display: none;
}
.services-quicknav a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding: 12px 17px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(17, 17, 17, 0.72);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  transition:
    transform 0.45s var(--ease-premium),
    background 0.45s var(--ease-premium),
    color 0.45s var(--ease-premium),
    border-color 0.45s var(--ease-premium);
}
.services-quicknav a::after {
  display: none !important;
}
.services-quicknav a:hover,
.services-quicknav a:focus-visible,
.services-quicknav a.active {
  transform: translateY(-2px);
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  outline: none;
}
.services-intro {
  padding: 105px 0 70px;
  background: var(--services-paper);
  overflow: hidden;
}
.services-section {
  position: relative;
  padding: 118px 0;
  overflow: hidden;
  background: var(--white);
}
.services-section::before {
  content: attr(data-section-label);
  position: absolute;
  top: 34px;
  right: clamp(20px, 5vw, 74px);
  font-weight: 800;
  font-size: clamp(4.5rem, 11vw, 10rem);
  line-height: 1;
  letter-spacing: -0.08em;
  color: rgba(17, 17, 17, 0.035);
  pointer-events: none;
}
.services-subtitle {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.services-title {
  font-size: clamp(2.55rem, 5.8vw, 5.7rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
  color: var(--primary-color);
  margin: 0;
}
.services-copy {
  color: var(--text-light);
  font-size: clamp(1rem, 1.2vw, 1.12rem);
  line-height: 1.74;
  margin-top: 24px;
}
.services-process {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(
      circle at 76% 26%,
      rgba(166, 138, 100, 0.34),
      transparent 28vw
    ),
    linear-gradient(135deg, #0a0a0a 0%, #151515 58%, #0a0a0a 100%);
}
.services-process::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.5;
}
.services-process .services-title {
  color: var(--white);
}
.services-process .services-copy {
  color: rgba(255, 255, 255, 0.72);
}
.services-final-cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: var(--primary-color);
  color: var(--white);
  padding: 135px 0;
}
.services-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 20%,
      rgba(166, 138, 100, 0.24),
      transparent 34vw
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 45%);
}
.services-final-cta .container {
  position: relative;
  z-index: 1;
}
.services-final-cta .section-title {
  color: var(--white);
}
.services-final-cta p {
  max-width: 650px;
  margin: 0 auto 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
  line-height: 1.7;
}
.services-final-cta .btn-primary {
  background: var(--white);
  color: var(--primary-color);
  border-color: var(--white);
}
.services-final-cta .btn-primary:hover {
  background: transparent;
  color: var(--white);
}
@keyframes servicesLineDrift {
  0%,
  100% {
    transform: scaleY(0.45);
    transform-origin: top;
    opacity: 0.45;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }
}
/* --------------------------------------------------------------------------
   SECTION 4: Services Media Queries & Responsive Rules
   --------------------------------------------------------------------------
   Specifies viewport optimizations for tablets, mobile views, and narrow layouts, 
   ensuring card padding, font sizes, and grids adjust cleanly.
   -------------------------------------------------------------------------- */
@media (max-width: 1180px) {
  .services-hero-content {
    grid-template-columns: 1fr;
  }
  .services-hero-card {
    justify-self: start;
  }
}
@media (max-width: 900px) {
  .services-hero {
    height: auto;
    min-height: 560px;
    padding: 120px 0 60px;
  }
  .services-hero-content {
    padding-top: 0;
  }
}
@media (max-width: 680px) {
  .services-quicknav {
    padding: 12px 20px;
  }
  .services-quicknav-wrap {
    top: 74px;
  }
  .services-hero {
    min-height: 500px;
    padding-top: 105px;
    padding-bottom: 50px;
  }
  .services-hero-title {
    font-size: clamp(2.3rem, 10.5vw, 3.6rem) !important;
  }
  .services-hero-metrics {
    grid-template-columns: 1fr;
  }
  .services-section,
  .services-intro {
    padding: 82px 0;
  }
  .services-final-cta {
    padding: 96px 0;
  }
}
@media (min-width: 1181px) and (max-width: 1320px) {
  .services-hero-title {
    font-size: clamp(2.8rem, 5.8vw, 5.85rem) !important;
    max-width: 760px;
  }
  .services-hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.44fr);
    gap: 42px;
  }
}
@media (max-width: 900px) {
  .services-hero-title {
    max-width: 100%;
  }
}
@media (max-width: 420px) {
  .services-hero-title {
    font-size: clamp(2.05rem, 10.2vw, 3rem) !important;
    letter-spacing: -0.035em;
  }
  .services-hero-card {
    padding: 20px;
  }
}
.services-page .home-clients {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: var(--services-paper);
}
.home-clients-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding-bottom: 58px;
}
.home-clients-header .home-subtitle {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.home-clients-header .section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 18px;
  letter-spacing: -0.04em;
  color: var(--primary-color);
}
.home-clients-header p {
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.72;
  max-width: 620px;
  margin: 0 auto;
}
.clients-carousel-track {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 12px 0;
  mask-image: linear-gradient(
    to right,
    transparent,
    black 2.5%,
    black 97.5%,
    transparent
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 2.5%,
    black 97.5%,
    transparent
  );
}
.clients-carousel-track-inner {
  display: flex;
  width: max-content;
  gap: 0;
  animation: clientsCarouselScroll 68s linear infinite;
  will-change: transform;
}
.clients-carousel-track:hover .clients-carousel-track-inner {
  animation-play-state: paused;
}
@keyframes clientsCarouselScroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
.client-logo-slide {
  flex: 0 0 auto;
  width: 240px;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.client-logo-card {
  width: 100%;
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  padding: 20px 26px;
  transition:
    transform 0.45s var(--ease-premium),
    box-shadow 0.45s var(--ease-premium),
    border-color 0.45s var(--ease-premium);
  box-shadow: 0 12px 36px -26px rgba(0, 0, 0, 0.2);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.client-logo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 138, 100, 0.34);
  box-shadow: 0 20px 44px -24px rgba(0, 0, 0, 0.22);
}
.client-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.68);
  transition: filter 0.35s ease;
}
.client-logo-card:hover .client-logo-img {
  filter: grayscale(0%) opacity(1);
}
@media (max-width: 900px) {
  .services-page .home-clients {
    padding: 100px 0;
  }
  .home-clients-header {
    padding-bottom: 48px;
  }
  .home-clients-header .section-title {
    font-size: clamp(1.6rem, 5vw, 2.4rem);
  }
  .home-clients-header p {
    font-size: 14.5px;
  }
  .client-logo-slide {
    width: 210px;
    padding: 0 10px;
  }
  .client-logo-card {
    height: 116px;
    padding: 18px 22px;
  }
  .clients-carousel-track-inner {
    animation-duration: 56s;
  }
}
@media (max-width: 680px) {
  .services-page .home-clients {
    padding: 82px 0;
  }
  .home-clients-header {
    padding-bottom: 38px;
  }
  .home-clients-header .home-subtitle {
    gap: 9px;
    letter-spacing: 0.18em;
  }
  .home-clients-header .home-subtitle::before,
  .home-clients-header .home-subtitle::after {
    width: 32px;
  }
  .client-logo-slide {
    width: 174px;
    padding: 0 8px;
  }
  .client-logo-card {
    height: 98px;
    padding: 15px 17px;
  }
  .clients-carousel-track {
    padding: 8px 0;
    mask-image: linear-gradient(
      to right,
      transparent,
      black 4%,
      black 96%,
      transparent
    );
    -webkit-mask-image: linear-gradient(
      to right,
      transparent,
      black 4%,
      black 96%,
      transparent
    );
  }
  .clients-carousel-track-inner {
    animation-duration: 46s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .services-scroll-cue::after {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
/* --------------------------------------------------------------------------
   SECTION 5: Services Command Overview
   --------------------------------------------------------------------------
   Configures columns and descriptive texts introducing the global management 
   infrastructure of Blue Bay Asia's sourcing network.
   -------------------------------------------------------------------------- */
.services-command {
  position: relative;
  overflow: hidden;
  padding: 126px 0 112px;
  background:
    radial-gradient(
      circle at 18% 24%,
      rgba(166, 138, 100, 0.16),
      transparent 28vw
    ),
    linear-gradient(180deg, var(--services-paper), #fff 72%);
}
.services-command::before {
  content: "";
  position: absolute;
  inset: 28px clamp(18px, 4vw, 70px);
  border: 1px solid rgba(17, 17, 17, 0.075);
  border-radius: 34px;
  pointer-events: none;
}
.services-command-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.78fr);
  gap: clamp(38px, 7vw, 105px);
  align-items: center;
}
.services-command-copy .section-title {
  max-width: 820px;
  letter-spacing: -0.055em;
}
.services-command-copy p {
  max-width: 680px;
  color: var(--text-light);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.78;
  margin-top: 24px;
}
.services-command-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 36px;
}
.services-command-actions span {
  min-height: 106px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  padding: 18px;
  color: var(--text-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 18px 54px -44px rgba(0, 0, 0, 0.45);
}
.services-command-actions strong {
  display: block;
  color: var(--accent-color);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin-bottom: 12px;
}
.services-radar {
  position: relative;
  aspect-ratio: 1;
  min-height: 430px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle,
      rgba(17, 17, 17, 0.085) 0 1px,
      transparent 1px 74px
    ),
    radial-gradient(
      circle,
      rgba(166, 138, 100, 0.14),
      rgba(255, 255, 255, 0.85) 56%,
      transparent 57%
    );
  display: grid;
  place-items: center;
  isolation: isolate;
}
.services-radar::before,
.services-radar::after {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  border: 1px dashed rgba(166, 138, 100, 0.42);
  animation: radarSpin 22s linear infinite;
}
.services-radar::after {
  inset: 24%;
  animation-duration: 15s;
  animation-direction: reverse;
  border-color: rgba(17, 17, 17, 0.16);
}
.services-radar-core {
  position: relative;
  z-index: 2;
  width: 168px;
  height: 168px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: linear-gradient(145deg, #111, #252525);
  box-shadow: 0 30px 70px -32px rgba(0, 0, 0, 0.7);
  text-align: center;
}
.services-radar-core span,
.services-radar-core small {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  opacity: 0.72;
}
.services-radar-core strong {
  color: var(--accent-color);
  font-size: 44px;
  letter-spacing: -0.08em;
  line-height: 1.05;
}
.radar-dot {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 45px -34px rgba(0, 0, 0, 0.55);
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: radarFloat 4.8s var(--ease-premium) infinite;
}
.radar-dot i {
  color: var(--accent-color);
  font-size: 16px;
}
.dot-1 {
  top: 11%;
  left: 37%;
}
.dot-2 {
  top: 30%;
  right: 2%;
  animation-delay: 0.3s;
}
.dot-3 {
  right: 8%;
  bottom: 22%;
  animation-delay: 0.6s;
}
.dot-4 {
  bottom: 8%;
  left: 35%;
  animation-delay: 0.9s;
}
.dot-5 {
  left: 2%;
  bottom: 25%;
  animation-delay: 1.2s;
}
.dot-6 {
  left: 4%;
  top: 28%;
  animation-delay: 1.5s;
}
/* --------------------------------------------------------------------------
   SECTION 6: Service Studio Cards
   --------------------------------------------------------------------------
   Styles the card columns, overlays, and hover transition sweeps representing 
   individual product engineering and studio capabilities.
   -------------------------------------------------------------------------- */
.service-studio {
  background: linear-gradient(180deg, #fff 0%, var(--services-paper) 100%);
}
.studio-heading {
  max-width: 980px;
  margin-bottom: 58px;
}
.service-studio-board {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(255px, auto);
  gap: 18px;
}
.service-studio-card {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 26px;
  padding: 30px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.92),
    rgba(242, 240, 234, 0.72)
  );
  box-shadow: 0 24px 74px -58px rgba(0, 0, 0, 0.54);
  transition:
    transform 0.65s var(--ease-premium),
    box-shadow 0.65s var(--ease-premium),
    border-color 0.65s var(--ease-premium),
    background 0.65s var(--ease-premium);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.service-studio-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -110px;
  top: -110px;
  border-radius: 50%;
  background: rgba(166, 138, 100, 0.18);
  transition:
    transform 0.75s var(--ease-premium),
    opacity 0.75s var(--ease-premium);
}
.service-studio-card::after {
  content: "";
  position: absolute;
  inset: auto 28px 24px 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(166, 138, 100, 0.65), transparent);
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.65s var(--ease-premium);
}
.service-studio-card:hover,
.service-studio-card:focus-visible {
  transform: translateY(-10px);
  border-color: rgba(166, 138, 100, 0.34);
  box-shadow: var(--services-shadow);
  outline: none;
}
.service-studio-card:hover::before,
.service-studio-card:focus-visible::before {
  transform: scale(1.5);
  opacity: 0.8;
}
.service-studio-card:hover::after,
.service-studio-card:focus-visible::after {
  transform: scaleX(1);
}
.service-wide {
  grid-column: span 8;
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 24px;
  align-items: start;
  background:
    radial-gradient(
      circle at 82% 18%,
      rgba(166, 138, 100, 0.22),
      transparent 22vw
    ),
    linear-gradient(135deg, #111 0%, #242424 100%);
  color: var(--white);
}
.service-tall {
  grid-column: span 4;
  grid-row: span 2;
  background:
    linear-gradient(
      145deg,
      rgba(166, 138, 100, 0.18),
      rgba(255, 255, 255, 0.88)
    ),
    repeating-linear-gradient(
      -45deg,
      rgba(17, 17, 17, 0.03) 0 1px,
      transparent 1px 14px
    );
}
.studio-index {
  position: absolute;
  right: 24px;
  top: 20px;
  color: rgba(17, 17, 17, 0.08);
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.08em;
}
.service-wide .studio-index {
  color: rgba(255, 255, 255, 0.1);
}
.service-studio-card > i {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(166, 138, 100, 0.14);
  color: var(--accent-color);
  font-size: 26px;
  margin-bottom: 26px;
}
.service-wide > i {
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
}
.service-studio-card span:not(.studio-index) {
  position: relative;
  z-index: 2;
  display: block;
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-studio-card h3,
.service-studio-card p,
.service-studio-card ul,
.studio-note {
  position: relative;
  z-index: 2;
}
.service-studio-card h3 {
  margin: 0 0 14px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  letter-spacing: -0.035em;
}
.service-studio-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}
.service-wide p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 760px;
}
.service-studio-card ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}
.service-studio-card li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 13px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.45;
}
.studio-note {
  margin-top: 28px;
  padding: 18px;
  border-radius: 18px;
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}
/* --------------------------------------------------------------------------
   SECTION 7: Design Lab Section
   --------------------------------------------------------------------------
   Manages the creative fabric development layout, styling columns, text frames, 
   and illustration frames representing laboratory design tasks.
   -------------------------------------------------------------------------- */
.design-lab {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  background:
    radial-gradient(
      circle at 18% 72%,
      rgba(166, 138, 100, 0.18),
      transparent 30vw
    ),
    #111;
  color: var(--white);
}
.design-lab::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 62px 62px;
  opacity: 0.72;
}
.design-lab-grid {
  display: grid;
  grid-template-columns: minmax(310px, 0.85fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
  position: relative;
  z-index: 1;
}
.design-lab .services-title {
  color: var(--white);
}
.design-lab .services-copy {
  color: rgba(255, 255, 255, 0.72);
}
.design-lab-visual {
  position: relative;
  min-height: 580px;
  padding: 42px 0;
}
.lab-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.14),
    rgba(255, 255, 255, 0.055)
  );
  color: rgba(255, 255, 255, 0.82);
  box-shadow: 0 32px 90px -56px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(18px);
  animation: labFloat 6s var(--ease-premium) infinite;
}
.lab-card-main {
  inset: 96px 44px auto 18px;
  min-height: 245px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(
      circle at 30% 28%,
      rgba(166, 138, 100, 0.32),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.16),
      rgba(255, 255, 255, 0.05)
    );
}
.lab-card-main span {
  color: var(--accent-color);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.lab-card-main strong {
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
}
.lab-card-a,
.lab-card-b,
.lab-card-c {
  padding: 16px 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lab-card-a {
  top: 0;
  right: 18px;
  animation-delay: 0.4s;
}
.lab-card-b {
  right: 38px;
  bottom: 42px;
  animation-delay: 0.8s;
}
.lab-card-c {
  left: 0;
  bottom: 38px;
  animation-delay: 1.2s;
}
.design-lab-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}
.design-lab-list span {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.45;
}
.design-lab-list i {
  color: var(--accent-color);
  font-size: 18px;
}
.services-process .container {
  position: relative;
  z-index: 1;
}
/* --------------------------------------------------------------------------
   SECTION 8: Capacity & Compliance Section
   --------------------------------------------------------------------------
   Sets up layout rows showing quality audit metrics, certifications, safety 
   limits, and green factory metrics.
   -------------------------------------------------------------------------- */
.capacity-compliance {
  position: relative;
  overflow: hidden;
  padding: 126px 0;
  background:
    radial-gradient(
      circle at 80% 18%,
      rgba(166, 138, 100, 0.14),
      transparent 28vw
    ),
    linear-gradient(180deg, #fff, var(--services-paper));
}
.capacity-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}
.capacity-total {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 34px;
  padding: 22px;
  border-radius: 22px;
  background: #111;
  color: rgba(255, 255, 255, 0.7);
  box-shadow: var(--services-shadow);
}
.capacity-total strong {
  color: var(--accent-color);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.07em;
  white-space: nowrap;
}
.capacity-total span {
  line-height: 1.55;
}
.capacity-bars {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 28px 80px -60px rgba(0, 0, 0, 0.52);
}
.capacity-bar {
  position: relative;
  overflow: hidden;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(17, 17, 17, 0.045);
}
.capacity-bar::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--bar);
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(166, 138, 100, 0.35),
    rgba(166, 138, 100, 0.08)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease-premium);
}
.capacity-bars.active .capacity-bar::before,
.capacity-bars.reveal.active .capacity-bar::before {
  transform: scaleX(1);
}
.capacity-bar span,
.capacity-bar strong {
  position: relative;
  z-index: 1;
}
.capacity-bar span {
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.capacity-bar strong {
  color: var(--accent-color);
  font-size: 1.35rem;
}
.compliance-strip {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.compliance-strip span {
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text-light);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
/* --------------------------------------------------------------------------
   SECTION 9: Services CTA Section
   --------------------------------------------------------------------------
   Configures the conversion block prompting users to start sourcing plans, 
   complete with custom hover animations on buttons.
   -------------------------------------------------------------------------- */
.services-atelier-cta {
  background:
    radial-gradient(
      circle at 20% 20%,
      rgba(166, 138, 100, 0.28),
      transparent 28vw
    ),
    linear-gradient(135deg, #111, #1e1e1e 55%, #0a0a0a);
}
.services-atelier-cta::after {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 32px;
  pointer-events: none;
}
@keyframes radarSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes radarFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
@keyframes labFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .services-radar::before,
  .services-radar::after,
  .radar-dot,
  .lab-card {
    animation: none;
  }
}
@media (max-width: 1180px) {
  .services-command-grid,
  .design-lab-grid,
  .capacity-grid {
    grid-template-columns: 1fr;
  }
  .services-radar {
    max-width: 560px;
    margin: 0 auto;
  }
  .service-studio-card,
  .service-tall {
    grid-column: span 6;
    grid-row: auto;
  }
  .service-wide {
    grid-column: 1 / -1;
  }
}
@media (max-width: 900px) {
  .services-command,
  .design-lab,
  .capacity-compliance {
    padding: 92px 0;
  }
  .services-command-actions,
  .design-lab-list {
    grid-template-columns: 1fr;
  }
  .service-studio-board {
    grid-auto-rows: auto;
  }
  .service-studio-card,
  .service-wide,
  .service-tall {
    grid-column: 1 / -1;
  }
  .service-wide {
    grid-template-columns: 1fr;
  }
  .service-studio-card ul {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .services-command::before,
  .services-atelier-cta::after {
    inset: 14px;
    border-radius: 22px;
  }
  .services-radar {
    min-height: 340px;
    font-size: 10px;
  }
  .services-radar-core {
    width: 132px;
    height: 132px;
  }
  .services-radar-core strong {
    font-size: 34px;
  }
  .radar-dot {
    padding: 9px 10px;
    letter-spacing: 0.08em;
  }
  .dot-2,
  .dot-3 {
    right: -8px;
  }
  .dot-5,
  .dot-6 {
    left: -8px;
  }
  .service-studio-card {
    padding: 24px;
    border-radius: 22px;
  }
  /* Keep design-lab-visual exactly the same on mobile as desktop */
  .design-lab-visual {
    min-height: 580px;
    padding: 42px 0;
  }
  .lab-card-main {
    inset: 96px 44px auto 18px;
  }
  .lab-card-a {
    top: 0;
    right: 18px;
  }
  .lab-card-b {
    right: 38px;
    bottom: 42px;
  }
  .lab-card-c {
    left: 0;
    bottom: 38px;
  }
  .capacity-total {
    align-items: flex-start;
    flex-direction: column;
  }
  .capacity-bars {
    padding: 18px;
    border-radius: 22px;
  }
  .capacity-bar {
    align-items: flex-start;
    flex-direction: column;
  }
}
.service-studio .container {
  max-width: min(1520px, calc(100% - 56px));
}
.service-studio .studio-heading {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.service-studio .studio-heading .services-subtitle {
  justify-content: center;
}

.service-studio-board {
  width: 100%;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(360px, auto);
  gap: clamp(16px, 1.55vw, 24px);
}
.service-studio-card,
.service-studio-card.service-wide,
.service-studio-card.service-tall {
  grid-row: auto;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  background: linear-gradient(145deg, #ffffff, #f4f1eb);
}
.service-studio-card {
  grid-column: span 4;
}
.service-studio-card.service-wide {
  grid-column: span 8;
  color: var(--white);
  min-height: 440px;
}
.service-studio-card.service-tall {
  grid-column: span 4;
  min-height: 440px;
}
.studio-card-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.94);
  clip-path: inset(18% 18% 18% 18% round 24px);
  transition:
    opacity 0.78s var(--ease-premium),
    transform 0.9s var(--ease-premium),
    clip-path 0.9s var(--ease-premium),
    filter 0.78s var(--ease-premium);
  pointer-events: none;
}
.studio-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12) translateY(14px);
  filter: saturate(0.88) contrast(1.05) brightness(0.92);
  transition:
    transform 1.15s var(--ease-premium),
    filter 0.9s var(--ease-premium);
}
.service-studio-card:hover .studio-card-image,
.service-studio-card:focus-visible .studio-card-image {
  opacity: 1;
  transform: scale(1);
  clip-path: inset(0 0 0 0 round 26px);
}
.service-studio-card:hover .studio-card-image img,
.service-studio-card:focus-visible .studio-card-image img {
  transform: scale(1.02) translateY(0);
  filter: saturate(1.04) contrast(1.08) brightness(0.86);
}
.service-studio-card::before {
  z-index: 1;
  inset: 0;
  width: auto;
  height: auto;
  right: auto;
  top: auto;
  border-radius: inherit;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.86),
      rgba(0, 0, 0, 0.48) 42%,
      rgba(0, 0, 0, 0.1)
    ),
    radial-gradient(
      circle at var(--mx, 50%) var(--my, 50%),
      rgba(166, 138, 100, 0.24),
      transparent 34%
    );
  opacity: 0;
  transform: none;
  transition: opacity 0.72s var(--ease-premium);
}
.service-studio-card:hover::before,
.service-studio-card:focus-visible::before {
  opacity: 1;
  transform: none;
}
.service-studio-card::after {
  z-index: 3;
}
.service-studio-card > i,
.service-studio-card span:not(.studio-index),
.service-studio-card h3,
.service-studio-card p,
.service-studio-card ul,
.service-studio-card .studio-note,
.service-studio-card .studio-index {
  z-index: 4;
  transition:
    color 0.45s ease,
    opacity 0.45s ease,
    transform 0.62s var(--ease-premium),
    text-shadow 0.45s ease;
}
.service-studio-card:hover > i,
.service-studio-card:focus-visible > i {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  transform: translateY(-5px) scale(1.04);
}
.service-studio-card:hover span:not(.studio-index),
.service-studio-card:focus-visible span:not(.studio-index) {
  color: var(--accent-color);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.9);
}
.service-studio-card:hover h3,
.service-studio-card:focus-visible h3,
.service-studio-card:hover p,
.service-studio-card:focus-visible p,
.service-studio-card:hover li,
.service-studio-card:focus-visible li,
.service-studio-card:hover .studio-note,
.service-studio-card:focus-visible .studio-note {
  color: rgba(255, 255, 255, 0.94);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.82);
}
.service-studio-card:hover p,
.service-studio-card:focus-visible p {
  color: rgba(255, 255, 255, 0.82);
}
.service-studio-card:hover .studio-index,
.service-studio-card:focus-visible .studio-index {
  color: rgba(255, 255, 255, 0.18);
}
.service-studio-card:hover li,
.service-studio-card:focus-visible li,
.service-studio-card:hover .studio-note,
.service-studio-card:focus-visible .studio-note {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}
.service-studio-card p {
  max-width: 620px;
}
.service-studio-card.service-wide p {
  max-width: 780px;
}
/* --------------------------------------------------------------------------
   SECTION 10: Workflow Process Runway
   --------------------------------------------------------------------------
   Designs the cinematic horizontal steps panel detailing workflow paths from 
   sourcing to final logistic dispatch.
   -------------------------------------------------------------------------- */
.services-process.process-cinema {
  padding: clamp(104px, 9vw, 150px) 0;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(166, 138, 100, 0.38),
      transparent 27vw
    ),
    radial-gradient(
      circle at 88% 72%,
      rgba(255, 255, 255, 0.1),
      transparent 24vw
    ),
    linear-gradient(135deg, #080808 0%, #151515 48%, #050505 100%);
}
.process-cinema::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      115deg,
      transparent 0 42%,
      rgba(166, 138, 100, 0.1) 42% 43%,
      transparent 43% 100%
    ),
    radial-gradient(circle at 50% 50%, transparent 0 42%, rgba(0, 0, 0, 0.28));
  pointer-events: none;
}
.process-cinema-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(310px, 0.48fr) minmax(0, 1fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
}
.process-cinema-copy {
  position: sticky;
  top: 126px;
}
.process-clock {
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 1;
  margin-top: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    radial-gradient(
      circle,
      rgba(166, 138, 100, 0.2),
      rgba(255, 255, 255, 0.06) 58%,
      transparent 59%
    ),
    conic-gradient(
      from 0deg,
      rgba(166, 138, 100, 0.95),
      rgba(255, 255, 255, 0.12),
      rgba(166, 138, 100, 0.95)
    );
  box-shadow: 0 34px 90px -52px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}
.process-clock::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: #101010;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.process-clock::after {
  content: "";
  position: absolute;
  width: 48%;
  height: 2px;
  left: 50%;
  top: 50%;
  background: linear-gradient(90deg, var(--accent-color), transparent);
  transform-origin: left center;
  animation: processClockHand 8s linear infinite;
}
.process-clock strong,
.process-clock span {
  position: relative;
  z-index: 2;
}
.process-clock strong {
  color: var(--accent-color);
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: 0.9;
  letter-spacing: -0.09em;
}
.process-clock span {
  max-width: 170px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: -82px;
}
.process-owner-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.065);
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.55;
  backdrop-filter: blur(16px);
}
.process-owner-note i {
  color: var(--accent-color);
  font-size: 22px;
}
.process-runway {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.035)
  );
  box-shadow: 0 42px 120px -72px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(22px);
  overflow: hidden;
}
.process-runway::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -20%;
  width: 38%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.11),
    transparent
  );
  transform: rotate(12deg);
  animation: runwaySweep 5.8s var(--ease-premium) infinite;
}
.runway-line {
  position: absolute;
  left: 64px;
  top: 46px;
  bottom: 46px;
  width: 2px;
  background: rgba(255, 255, 255, 0.11);
  overflow: hidden;
}
.runway-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--accent-color),
    transparent
  );
  transform: translateY(-100%);
  animation: runwayPulse 4.2s linear infinite;
}
.runway-step {
  --delay: calc(var(--step) * 0.085s);
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 76px minmax(86px, 0.18fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-height: 104px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(0, 0, 0, 0.18);
  transform: translateX(0);
  transition:
    transform 0.62s var(--ease-premium),
    background 0.62s var(--ease-premium),
    border-color 0.62s var(--ease-premium),
    box-shadow 0.62s var(--ease-premium);
  animation: runwayStepIn 0.9s var(--ease-premium) both;
  animation-delay: var(--delay);
}
.runway-step:hover {
  transform: translateX(14px) scale(1.015);
  border-color: rgba(166, 138, 100, 0.42);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 70px -52px rgba(166, 138, 100, 0.65);
}
.runway-step::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 50%;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #111;
  border: 2px solid var(--accent-color);
  box-shadow: 0 0 0 8px rgba(166, 138, 100, 0.1);
  transform: translateY(-50%);
}
.runway-week {
  padding-left: 52px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.runway-step strong {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(166, 138, 100, 0.16);
  color: var(--accent-color);
  font-size: 18px;
  transition:
    background 0.45s ease,
    color 0.45s ease,
    transform 0.45s var(--ease-premium);
}
.runway-step:hover strong {
  background: var(--accent-color);
  color: #111;
  transform: rotate(-6deg) scale(1.06);
}
.runway-step h3 {
  color: var(--white);
  margin: 0 0 7px;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  letter-spacing: -0.02em;
}
.runway-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
  font-size: 14px;
}
@keyframes processClockHand {
  to {
    transform: rotate(360deg);
  }
}
@keyframes runwaySweep {
  0%,
  22% {
    transform: translateX(-80%) rotate(12deg);
    opacity: 0;
  }
  42% {
    opacity: 1;
  }
  78%,
  100% {
    transform: translateX(420%) rotate(12deg);
    opacity: 0;
  }
}
@keyframes runwayPulse {
  to {
    transform: translateY(100%);
  }
}
@keyframes runwayStepIn {
  from {
    opacity: 0;
    transform: translateX(34px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .process-clock::after,
  .process-runway::before,
  .runway-line::after,
  .runway-step {
    animation: none;
  }
  .studio-card-image,
  .studio-card-image img {
    transition: none;
  }
}
@media (max-width: 1180px) {
  .service-studio .container {
    max-width: var(--container-width);
  }
  .service-studio-card,
  .service-studio-card.service-tall {
    grid-column: span 6;
  }
  .service-studio-card.service-wide {
    grid-column: 1 / -1;
  }
  .process-cinema-grid {
    grid-template-columns: 1fr;
  }
  .process-cinema-copy {
    position: relative;
    top: auto;
  }
  .process-clock {
    max-width: 280px;
  }
}
@media (max-width: 760px) {
  .service-studio .container {
    max-width: calc(100% - 36px);
  }
  .service-studio-card,
  .service-studio-card.service-wide,
  .service-studio-card.service-tall {
    grid-column: 1 / -1;
    min-height: 350px;
  }
  .service-studio .studio-heading {
    text-align: left;
  }
  .service-studio .studio-heading .services-subtitle {
    justify-content: flex-start;
  }

  .process-runway {
    padding: 16px;
    border-radius: 24px;
  }
  .runway-line {
    left: 42px;
  }
  .runway-step {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 20px 22px 70px;
    align-items: start;
  }
  .runway-step::before {
    left: 18px;
    top: 35px;
  }
  .runway-week {
    padding-left: 0;
  }
  .runway-step strong {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }
  .process-clock {
    width: min(100%, 250px);
  }
  .process-clock span {
    margin-top: -60px;
  }
}
@media (min-width: 1181px) {
  .service-studio .container {
    max-width: min(1560px, calc(100% - 64px));
  }
  .service-studio-board {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-flow: row;
    grid-auto-rows: minmax(390px, auto);
    gap: clamp(18px, 1.7vw, 28px);
    align-items: stretch;
  }
  .service-studio-card {
    grid-column: span 3 !important;
    min-height: 390px;
    height: 100%;
  }
  .service-studio-card.service-wide,
  .service-studio-card.service-tall {
    grid-column: span 6 !important;
    min-height: 390px;
  }
}
.service-studio-card.service-wide {
  background:
    radial-gradient(
      circle at 88% 12%,
      rgba(166, 138, 100, 0.26),
      transparent 26vw
    ),
    linear-gradient(145deg, #111 0%, #242424 100%) !important;
  color: var(--white) !important;
}
.service-studio-card.service-wide p {
  color: rgba(255, 255, 255, 0.76) !important;
}
.service-studio-card.service-wide li {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.76);
}
.service-studio-card.service-wide .studio-index {
  color: rgba(255, 255, 255, 0.11) !important;
}
.service-studio-card.service-wide > i {
  background: rgba(255, 255, 255, 0.1);
}
.service-studio-card:hover::before,
.service-studio-card:focus-visible::before {
  opacity: 1 !important;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.95) 0%,
      rgba(0, 0, 0, 0.82) 46%,
      rgba(0, 0, 0, 0.48) 100%
    ),
    radial-gradient(
      circle at var(--mx, 50%) var(--my, 50%),
      rgba(166, 138, 100, 0.3),
      transparent 36%
    ) !important;
}
.service-studio-card:hover .studio-card-image img,
.service-studio-card:focus-visible .studio-card-image img {
  filter: saturate(1.02) contrast(1.08) brightness(0.62) !important;
}
.service-studio-card:hover h3,
.service-studio-card:focus-visible h3 {
  color: #fff !important;
  text-shadow:
    0 3px 20px rgba(0, 0, 0, 0.95),
    0 1px 2px rgba(0, 0, 0, 0.9) !important;
}
.service-studio-card:hover p,
.service-studio-card:focus-visible p,
.service-studio-card:hover li,
.service-studio-card:focus-visible li,
.service-studio-card:hover .studio-note,
.service-studio-card:focus-visible .studio-note {
  color: rgba(255, 255, 255, 0.88) !important;
  text-shadow:
    0 3px 18px rgba(0, 0, 0, 0.95),
    0 1px 2px rgba(0, 0, 0, 0.85) !important;
}
.service-studio-card:hover span:not(.studio-index),
.service-studio-card:focus-visible span:not(.studio-index) {
  color: #d9bd8c !important;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.95) !important;
}
.service-studio-card:hover > i,
.service-studio-card:focus-visible > i {
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 34px -20px rgba(0, 0, 0, 0.9);
}
.service-studio-card:hover .studio-note,
.service-studio-card:focus-visible .studio-note,
.service-studio-card:hover li,
.service-studio-card:focus-visible li {
  background: rgba(0, 0, 0, 0.34) !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
}
@media (max-width: 1180px) and (min-width: 761px) {
  .service-studio-card,
  .service-studio-card.service-wide,
  .service-studio-card.service-tall {
    grid-column: span 6 !important;
  }
}
/* --------------------------------------------------------------------------
   SECTION 11: Service Control Room Section
   --------------------------------------------------------------------------
   Applies dark layout controls, glowing borders, and details representing the 
   24/7 client dispatch dashboard and telemetry.
   -------------------------------------------------------------------------- */
.service-control-room {
  position: relative;
  overflow: hidden;
  padding: clamp(96px, 8vw, 132px) 0;
  background:
    radial-gradient(
      circle at 16% 18%,
      rgba(166, 138, 100, 0.14),
      transparent 28vw
    ),
    radial-gradient(
      circle at 88% 70%,
      rgba(17, 17, 17, 0.045),
      transparent 24vw
    ),
    linear-gradient(180deg, #fff 0%, var(--services-paper) 100%);
}
.service-control-room::before {
  content: "";
  position: absolute;
  inset: 26px clamp(18px, 4vw, 68px);
  border: 1px solid rgba(17, 17, 17, 0.075);
  border-radius: 34px;
  pointer-events: none;
}
.control-room-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}
.control-room-copy,
.control-room-board {
  position: relative;
  z-index: 1;
}
.control-room-copy .services-title {
  font-size: clamp(2.2rem, 4.7vw, 4.8rem);
  line-height: 1;
  overflow: visible;
}
.control-room-proof {
  margin-top: 32px;
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 70px -58px rgba(0, 0, 0, 0.55);
}
.control-room-proof strong {
  display: block;
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.control-room-proof span {
  display: block;
  color: var(--text-light);
  line-height: 1.65;
}
.control-room-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.control-card {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 26px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 68px -58px rgba(0, 0, 0, 0.54);
  transition:
    transform 0.62s var(--ease-premium),
    box-shadow 0.62s var(--ease-premium),
    border-color 0.62s var(--ease-premium),
    background 0.62s var(--ease-premium);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.control-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(166, 138, 100, 0.16);
  transition:
    transform 0.7s var(--ease-premium),
    opacity 0.7s var(--ease-premium);
}
.control-card:hover {
  transform: translateY(-9px);
  border-color: rgba(166, 138, 100, 0.34);
  background: #fff;
  box-shadow: var(--services-shadow);
}
.control-card:hover::before {
  transform: scale(1.55);
  opacity: 0.85;
}
.control-card i,
.control-card span,
.control-card h3,
.control-card p {
  position: relative;
  z-index: 1;
}
.control-card i {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(166, 138, 100, 0.12);
  color: var(--accent-color);
  font-size: 24px;
  margin-bottom: 28px;
}
.control-card span {
  position: absolute;
  top: 22px;
  right: 24px;
  color: rgba(17, 17, 17, 0.1);
  font-size: 46px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.07em;
}
.control-card h3 {
  margin: 0 0 12px;
  color: var(--primary-color);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}
.control-card p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.66;
  font-size: 14.5px;
}
.process-cinema-copy,
.process-cinema-copy .services-title,
.process-cinema-copy .services-copy {
  overflow: visible !important;
}
.process-cinema-copy .services-title {
  font-size: clamp(2.15rem, 4.35vw, 4.65rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.045em;
  max-width: 100%;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  padding-bottom: 0.08em;
}
@media (min-width: 1181px) {
  .process-cinema-grid {
    grid-template-columns: minmax(420px, 0.55fr) minmax(0, 1fr);
  }
}
.runway-step {
  grid-template-columns: minmax(124px, 0.22fr) 68px minmax(0, 1fr) !important;
  column-gap: 24px !important;
}
.runway-week {
  padding-left: 54px;
  line-height: 1.2;
  white-space: normal;
  overflow-wrap: anywhere;
}
.runway-step strong {
  flex: 0 0 auto;
}
@media (max-width: 1180px) {
  .control-room-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .service-control-room {
    padding: 84px 0;
  }
  .service-control-room::before {
    inset: 14px;
    border-radius: 22px;
  }
  .control-room-board {
    grid-template-columns: 1fr;
  }
  .control-card {
    min-height: auto;
  }
  .runway-step {
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
  }
  .runway-week {
    padding-left: 0;
    white-space: normal;
    overflow-wrap: normal;
  }
}

/* Services Page Hero Feature
   Removes the bottom gradient fade/shadow below the services hero while keeping
   the hero overlay, grid texture, content layout, and all animations intact. */
.services-page .services-hero::after {
  display: none !important;
  height: 0 !important;
  background: none !important;
}

/* Services Command Section
   Removes only the large outer border frame from the "From Sketch to Shipment" section. */
.services-command::before {
  display: none !important;
}
