/**
 * Service landing pages – layout and components used under body.service-page.
 * Load after the main site stylesheet (styles.css). Copy this file next to your
 * HTML or adjust the <link href> to match your folder layout.
 */

/* Spline 3D background — same rules as index.html critical CSS (service pages have no inline critical block). */
.service-page .spline-background {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  overflow: hidden !important;
  pointer-events: auto;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  visibility: hidden !important;
  opacity: 0 !important;
}
.service-page .spline-background.loaded {
  visibility: visible !important;
  opacity: 1 !important;
}
.service-page .spline-container {
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
  position: relative !important;
  pointer-events: auto;
}
.service-page .spline-container iframe {
  width: 120% !important;
  height: 100% !important;
  position: absolute !important;
  left: -10% !important;
  top: 0 !important;
  border: none !important;
  display: block !important;
  pointer-events: auto;
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .service-page .spline-container iframe {
    width: 150% !important;
    left: -25% !important;
  }
}
@media (max-width: 768px) {
  .service-page .spline-container iframe {
    width: 180% !important;
    left: -40% !important;
    opacity: 0.7 !important;
  }
}

/* Service pages – editorial layout inspired by capability / hub patterns (e.g. bb.agency/services) */
/* Homepage `.services` uses large vertical padding; on `.service-page` only the main article block keeps modest rhythm. */
.service-page .services.service-page-body {
  padding-top: 0;
  padding-bottom: 1rem;

}
/* Inline links: match .blog-post-article a (styles.css) */
.service-page-body .section-description a,
.service-page-body .service-page-lead a,
.service-page-body .service-detail-focus__more a,
.service-page-body .service-detail-focus__intro a,
.service-page-body ul a,
.service-page-body ol a,
.service-page .service-detail-hero .hero-subtitle a,
.service-detail-cases__footer a {
  color: #8b5cf6;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.service-page-body .section-description a:hover,
.service-page-body .service-page-lead a:hover,
.service-page-body .service-detail-focus__more a:hover,
.service-page-body .service-detail-focus__intro a:hover,
.service-page-body ul a:hover,
.service-page-body ol a:hover,
.service-page .service-detail-hero .hero-subtitle a:hover,
.service-detail-cases__footer a:hover {
  border-bottom-color: #8b5cf6;
}

.service-page .service-page-cases-below-cta {
  padding: 2.5rem 0 4rem;
}
.service-page-cases-below-cta .service-detail-cases {
  margin-bottom: 0;
}
.service-detail-cases {
  margin: 0 auto 3rem;
  max-width: 58rem;
}
.service-detail-cases__grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .service-detail-cases__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.service-detail-cases__card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 12, 14, 0.65);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.service-detail-cases__card:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 16px 48px -24px rgba(139, 92, 246, 0.35);
}
.service-detail-cases__card:focus-visible {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
}
.service-detail-cases__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0c0c0e;
}
.service-detail-cases__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-cases__body {
  padding: 1rem 1.15rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-detail-cases__meta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8b5cf6;
  margin: 0 0 0.4rem;
}
.service-detail-cases__title {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #f4f4f5;
  margin: 0 0 0.5rem;
}
.service-detail-cases__excerpt {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #a1a1aa;
  font-weight: 300;
  margin: 0;
}
.service-detail-cases__footer {
  text-align: center;
  margin: 1.75rem 0 0;
  font-size: 1rem;
}
.service-page-body ul,
.service-page-body ol {
  margin: 0 0 1.75rem;
  padding-left: 1.25rem;
  font-size: 1.125rem;
  color: #9ca3af;
  line-height: 1.6;
  font-weight: 300;
}
.service-page-body li {
  margin-bottom: 0.5rem;
}
.service-page-body .project-badges {
  margin: 1.25rem 0 1.75rem;
}
/* FAQ uses homepage `.faq-list` / `.faq-item` / `.faq-question` / `.faq-answer` from styles.css */
.service-page-body .faq-list.service-page-faq {
  margin-top: 1.25rem;
  max-width: 40rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.service-page-body .faq-answer p a {
  color: #a78bfa;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.service-page-body .faq-answer p a:hover {
  color: #c4b5fd;
  border-bottom-color: rgba(167, 139, 250, 0.45);
}
.service-page-body .faq-item.active .faq-answer {
  max-height: 1000px;
}
.service-page .service-page-bottom-cta {
  padding: 5rem 0 5rem;
}
.service-page-bottom-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
.service-page .services-intro .section-description {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.service-page-divider {
  display: block;
  height: 1px;
  margin: 3.5rem 0;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
}

.service-page-lead {
  font-size: 1.1875rem;
  line-height: 1.65;
  color: #a1a1aa;
  font-weight: 300;
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3.5rem;
}

.service-bb-section-title {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  color: #ffffff;
  text-align: center;
  margin: 0 0 2.5rem;
  letter-spacing: -0.02em;
}

.service-capabilities {
  margin: 0 0 4.5rem;
}
.service-capabilities__grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 900px) {
  .service-capabilities__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 2.5rem;
  }
}
.service-capabilities__col h3 {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.service-capabilities__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-capabilities__list li {
  padding: 0.65rem 0;
  font-size: 1rem;
  line-height: 1.5;
  color: #9ca3af;
  font-weight: 300;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.service-capabilities__list li:last-child {
  border-bottom: none;
}

.service-areas {
  margin: 0 0 4rem;
}
.service-areas__grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .service-areas__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service-area-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.75rem 1.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.service-area-card:hover {
  border-color: rgba(167, 139, 250, 0.35);
  background: rgba(139, 92, 246, 0.06);
}
.service-area-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 0.75rem;
}
.service-area-card p {
  flex: 1;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #9ca3af;
  font-weight: 300;
}
.service-area-card__link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #8b5cf6;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}
.service-area-card__link:hover {
  border-bottom-color: #8b5cf6;
}

/* Service landings – agency-style layout (breadcrumb, split hero, section anchors, trust strip) */
.service-page .service-detail-hero {
  /* Mobile: top-align + extra top padding so breadcrumbs stay below the fixed nav (centering would clip them). */
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: max(5.75rem, calc(4.5rem + env(safe-area-inset-top, 0px)));
  padding-bottom: clamp(9rem, 18vw, 12rem);
}
@media (min-width: 1024px) {
  .service-page .service-detail-hero {
    align-items: center;
    justify-content: center;
    padding-top: 5rem;
  }
}
.service-page .service-detail-hero > .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.service-detail-breadcrumb {
  width: 100%;
  margin-bottom: 1.75rem;
}
.service-detail-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #71717a;
  letter-spacing: 0.02em;
}
.service-detail-breadcrumb li {
  display: inline-flex;
  align-items: center;
}
.service-detail-breadcrumb li + li::before {
  content: "/";
  margin: 0 0.5rem;
  opacity: 0.45;
  font-weight: 300;
}
.service-detail-breadcrumb a {
  color: #a1a1aa;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.service-detail-breadcrumb a:hover {
  color: #8b5cf6;
  border-bottom-color: #8b5cf6;
}
.service-detail-breadcrumb [aria-current="page"] {
  color: #d4d4d8;
  font-weight: 500;
}
.service-detail-hero-head {
  margin-bottom: 2rem;
  width: 100%;
  max-width: none;
  position: relative;
  z-index: 1;
}
@media (min-width: 1024px) {
  .service-detail-hero-head {
    margin-bottom: 2.5rem;
  }
}
.service-page .service-detail-hero .service-detail-hero-head .section-label.service-detail-hero-label {
  justify-content: flex-start;
  margin-bottom: 1.25rem;
}
.service-page .service-detail-hero .service-detail-hero-head .hero-title {
  font-size: clamp(2.75rem, 6.5vw, 5.85rem);
  line-height: 1.05;
  margin-bottom: 0;
  text-align: left;
  max-width: none;
  width: 100%;
}
.service-page .service-detail-hero .service-detail-hero-head .hero-title .hero-title-italic {
  padding-right: 0.35rem;
}
.service-detail-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (min-width: 1024px) {
  .service-detail-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 38%);
    gap: 2.5rem 3.5rem;
  }
}
.service-detail-hero-main {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
  text-align: left;
}
.service-page .service-detail-hero .hero-subtitle {
  margin: 0;
  max-width: 42rem;
  text-align: left;
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
}
.service-page .service-detail-hero .hero-buttons {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding-top: 1.5rem;
  gap: 1rem;
}
.service-detail-hero-summary {
  position: relative;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 12, 14, 0.75);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 20px 40px -28px rgba(0, 0, 0, 0.7);
  padding: 1.35rem 1.25rem 1.25rem;
}
@media (min-width: 1024px) {
  .service-detail-hero-summary {
    position: sticky;
    top: 6.5rem;
    padding: 1.5rem 1.35rem 1.35rem;
  }
}
.service-detail-jump--hero-sidebar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1rem;
  row-gap: 0.35rem;
  margin: 0;
  padding: 0;
  border: none;
  align-items: start;
}
@media (max-width: 380px) {
  .service-detail-jump--hero-sidebar {
    grid-template-columns: 1fr;
  }
}
.service-detail-jump--hero-sidebar a {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem 0.75rem;
  padding: 0.55rem 0.4rem;
  border-bottom: none;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #d4d4d8;
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1.35;
  transition: color 0.2s ease, background 0.2s ease;
  margin: 0;
  border-radius: 6px;
  min-width: 0;
}
.service-detail-jump--hero-sidebar a:hover {
  color: #f5f3ff;
  background: rgba(139, 92, 246, 0.08);
}
.service-detail-jump--hero-sidebar a:focus-visible {
  outline: 2px solid #8b5cf6;
  outline-offset: 2px;
}
.service-detail-jump__num {
  flex-shrink: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #8b5cf6;
  min-width: 1.6rem;
  padding-top: 0.12em;
}
.service-detail-jump__text {
  flex: 1;
  min-width: 0;
}
.service-detail-section-title {
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 1.5rem;
  text-align: left;
}
.service-detail-section-title--center {
  text-align: center;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.25rem;
}
.service-detail-trusted {
  margin: 0 0 3.5rem;
  padding: 2rem 0 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.service-detail-trusted__title {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #71717a;
  margin: 0 0 1.25rem;
}
.service-detail-trusted__row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2.25rem;
}
.service-detail-trusted__row img {
  height: 28px;
  width: auto;
  opacity: 0.92;
  filter: brightness(1.05) grayscale(0.2);
}
/* Dark-source wordmarks (e.g. SVG Repo) — invert so they read on #0a0a0a */
.service-detail-trusted__row img.service-detail-trusted__logo--mono {
  filter: brightness(0) invert(1);
  opacity: 0.88;
}
.service-detail-trusted__chip {
  font-size: 0.8125rem;
  color: #a1a1aa;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}
.service-detail-split {
  display: grid;
  gap: 2.5rem;
  margin: 0 0 4rem;
  align-items: start;
}
@media (min-width: 900px) {
  .service-detail-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 3.5rem;
    margin-bottom: 4.5rem;
  }
}
.service-detail-split__copy .section-description {
  margin: 0;
  text-align: left;
  max-width: none;
}
.service-detail-split__media {
  min-height: 200px;
  aspect-ratio: 3 / 2;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(ellipse 80% 65% at 70% 35%, rgba(139, 92, 246, 0.2), transparent 60%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, transparent 45%);
  overflow: hidden;
}
.service-detail-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-detail-benefits {
  margin: 0 0 4rem;
}
.service-detail-benefits__grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .service-detail-benefits__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
.service-detail-benefit-card {
  padding: 1.75rem 1.5rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
  height: 100%;
}
.service-detail-benefit-card__num {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #8b5cf6;
  margin-bottom: 0.85rem;
}
.service-detail-benefit-card h3 {
  font-size: 1.0625rem;
  font-weight: 500;
  color: #f4f4f5;
  margin: 0 0 0.65rem;
  line-height: 1.35;
}
.service-detail-benefit-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #9ca3af;
  font-weight: 300;
}
.service-detail-why {
  display: grid;
  gap: 2rem;
  margin: 0 0 4rem;
  padding: 2.75rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(160deg, rgba(139, 92, 246, 0.08) 0%, rgba(255, 255, 255, 0.02) 55%);
}
@media (min-width: 900px) {
  .service-detail-why {
    grid-template-columns: 1fr 1.15fr;
    gap: 3rem;
    align-items: start;
    padding: 3rem 2.5rem;
  }
}
.service-detail-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.service-detail-stat {
  text-align: left;
}
.service-detail-stat__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #71717a;
  margin-bottom: 0.35rem;
}
.service-detail-stat__value {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.service-detail-stat__note {
  display: block;
  font-size: 0.8125rem;
  color: #9ca3af;
  margin-top: 0.35rem;
  line-height: 1.45;
  font-weight: 300;
}
.service-detail-quote {
  margin: 0;
  padding: 0;
  border: none;
}
.service-detail-quote p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #e4e4e7;
  font-weight: 300;
  font-style: italic;
}
.service-detail-quote footer {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  color: #9ca3af;
  font-style: normal;
}
.service-detail-quote strong {
  color: #f4f4f5;
  font-weight: 500;
  font-style: normal;
}
.service-detail-expert {
  margin: 3rem 0;
  padding: 2.25rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(167, 139, 250, 0.25);
  background: rgba(139, 92, 246, 0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.service-detail-expert__copy h2 {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 0 0 0.35rem;
  color: #ffffff;
}
.service-detail-expert__copy p {
  margin: 0;
  font-size: 0.9375rem;
  color: #9ca3af;
  font-weight: 300;
  max-width: 32rem;
  line-height: 1.55;
}
.service-detail-expert .services-buttons {
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.service-page #overview,
.service-page #benefits,
.service-page #why-us,
.service-page #capabilities,
.service-page #work,
.service-page #services-depth {
  scroll-margin-top: 6rem;
}

.service-detail-focus {
  margin: 0 0 3.5rem;
  max-width: none;
  width: 100%;
  padding-top: 2rem;
}
.service-detail-focus__intro-wrap {
  margin-bottom: 2rem;
}
.service-detail-focus__heading {
  text-align: left;
  margin: 0 0 1.15rem;
}
@media (min-width: 1024px) {
  .service-detail-focus {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    column-gap: 0;
    row-gap: 2.5rem;
    align-items: start;
    max-width: none;
  }
  .service-detail-focus__intro-wrap {
    position: sticky;
    top: 6.5rem;
    align-self: start;
    margin-bottom: 0;
    width: 100%;
    min-width: 0;
    padding-right: 4rem;
    padding-bottom: 0.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
  }
  .service-detail-focus__heading {
    margin-bottom: 1.25rem;
  }
  .service-detail-focus__list-wrap {
    min-width: 0;
    padding-left: 1.75rem;
  }
}
.service-detail-focus__intro {
  text-align: left;
  max-width: none;
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: #a1a1aa;
  font-weight: 300;
}
.service-detail-focus__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-detail-focus__item {
  display: grid;
  gap: 1rem 1.5rem;
  align-items: start;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 640px) {
  .service-detail-focus__item {
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: 0.75rem 2rem;
  }
}
.service-detail-focus__item:first-of-type {
  padding-top: 0;
}
.service-detail-focus__item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.service-detail-focus__num {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: #8b5cf6;
  padding-top: 0.2rem;
}
.service-detail-focus__title {
  font-size: 1.1875rem;
  font-weight: 500;
  color: #f4f4f5;
  margin: 0 0 0.85rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.service-detail-focus__content .section-description {
  margin: 0 0 1rem;
  text-align: left;
  max-width: none;
}
.service-detail-focus__content .section-description:last-child {
  margin-bottom: 0;
}
.service-detail-focus__more {
  margin: 1.15rem 0 0;
}

.service-page-highlight {
  margin: 2.5rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-page-highlight p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.65;
  color: #d1d5db;
  font-weight: 300;
}

.service-page-highlight .section-description {
  margin: 0;
}

.service-page-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  counter-reset: svc-step;
}

.service-page-body .service-page-steps li {
  counter-increment: svc-step;
  display: flex;
  gap: 1.15rem;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: #d1d5db;
  font-weight: 300;
}

.service-page-body .service-page-steps li::before {
  content: counter(svc-step, decimal-leading-zero);
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #e9d5ff;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.18);
  border: 1px solid rgba(167, 139, 250, 0.4);
  margin-top: 0.1rem;
}

.service-page-body .service-page-steps li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
