.service-page {
  background: var(--cream);
}

.service-page .language-switch a {
  display: inline-grid;
  min-width: 38px;
  height: 32px;
  padding: 0 10px;
  place-items: center;
  border-radius: 999px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.service-page .language-switch a.active {
  background: var(--teal);
  color: var(--white);
}

.service-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.service-breadcrumbs a {
  color: var(--teal);
}

.service-breadcrumbs span + span::before,
.service-breadcrumbs a + span::before {
  content: "/";
  margin-right: 8px;
  color: rgba(97, 117, 112, .55);
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 82px;
  background:
    radial-gradient(circle at 86% 12%, rgba(244,181,0,.18), transparent 26%),
    radial-gradient(circle at 82% 76%, rgba(15,143,130,.13), transparent 28%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}

.service-hero::after {
  content: "";
  position: absolute;
  right: -150px;
  top: 70px;
  width: 520px;
  height: 520px;
  border: 1px dashed rgba(0,108,96,.18);
  border-radius: 50%;
}

.service-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 58px;
  align-items: center;
}

.service-hero h1 {
  font-size: clamp(42px, 5.5vw, 70px);
}

.service-hero .hero-text {
  max-width: 760px;
}

.service-symbol {
  position: relative;
  display: grid;
  min-height: 330px;
  place-items: center;
}

.service-symbol::before,
.service-symbol::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.service-symbol::before {
  width: 300px;
  height: 300px;
  border: 1px dashed rgba(0,108,96,.25);
}

.service-symbol::after {
  width: 220px;
  height: 220px;
  background: rgba(232,245,242,.82);
  box-shadow: var(--shadow-lg);
}

.service-symbol-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 132px;
  height: 132px;
  place-items: center;
  border: 1px solid rgba(244,181,0,.45);
  border-radius: 34px;
  background: var(--white);
  box-shadow: var(--shadow-md);
  font-size: 58px;
}

.service-content {
  background: var(--white);
}

.service-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(270px, .65fr);
  gap: 36px;
  align-items: start;
}

.service-main-card,
.service-aside-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--cream-light);
  box-shadow: var(--shadow-md);
}

.service-main-card {
  padding: clamp(28px, 5vw, 52px);
}

.service-main-card h2,
.service-deliverables h2,
.service-related h2 {
  font-size: clamp(32px, 4vw, 48px);
}

.service-main-card h3 {
  margin: 34px 0 12px;
  font-size: 25px;
}

.service-main-card p,
.service-main-card li,
.service-aside-card p {
  color: var(--muted);
  font-size: 16px;
}

.service-main-card p + p {
  margin-top: 16px;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin-top: 18px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding: 14px 16px 14px 46px;
  border: 1px solid rgba(0,108,96,.13);
  border-radius: 14px;
  background: var(--white);
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 13px;
  color: var(--teal);
  font-weight: 900;
}

.service-aside {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 20px;
}

.service-aside-card {
  padding: 28px;
}

.service-aside-card h2 {
  margin-bottom: 12px;
  font-size: 28px;
}

.service-aside-card .btn {
  width: 100%;
  margin-top: 20px;
}

.service-deliverables {
  background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.deliverable {
  min-height: 190px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.deliverable span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.deliverable h3 {
  margin-bottom: 9px;
  font-size: 21px;
}

.deliverable p {
  color: var(--muted);
  font-size: 14px;
}

.service-cta {
  padding: 72px 0;
  background: var(--teal-dark);
  color: var(--white);
}

.service-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
}

.service-cta h2 {
  max-width: 780px;
  color: var(--white);
}

.service-cta p {
  max-width: 720px;
  color: rgba(255,255,255,.76);
}

.service-related {
  background: var(--cream-light);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.related-card {
  display: block;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform .2s ease, border-color .2s ease;
}

.related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(244,181,0,.58);
}

.related-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.related-card span {
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .service-hero-grid,
  .service-layout {
    grid-template-columns: 1fr;
  }

  .service-symbol {
    min-height: 250px;
  }

  .service-aside {
    position: static;
  }

  .deliverables-grid,
  .related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .service-hero {
    padding: 48px 0 62px;
  }

  .service-symbol {
    display: none;
  }

  .deliverables-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .service-cta-inner {
    align-items: stretch;
    flex-direction: column;
  }
}
