.cg-services-page {
  background: #ffffff;
  color: #151515;
}

.has-service-reveal [data-cg-service-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--cg-service-reveal-delay, 0ms);
}

.has-service-reveal [data-cg-service-reveal="left"] {
  transform: translateX(-22px);
}

.has-service-reveal [data-cg-service-reveal="right"] {
  transform: translateX(22px);
}

.has-service-reveal [data-cg-service-reveal="scale"] {
  transform: scale(0.985);
}

.has-service-reveal [data-cg-service-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

.cg-services-intro {
  background: #ffffff;
  padding: 112px 0 96px;
}

.cg-services-intro__grid {
  align-items: start;
  display: grid;
  gap: 72px;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
}

.cg-services-intro__heading {
  max-width: 520px;
}

.cg-services-intro__eyebrow,
.cg-services-main__eyebrow,
.cg-services-complementary__eyebrow,
.cg-services-process__eyebrow,
.cg-services-contact-cta__eyebrow {
  color: #4f7f00;
  font-family: var(--heading-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.cg-services-intro__title {
  color: #151515;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.cg-services-intro__line,
.cg-services-main__line,
.cg-services-complementary__line,
.cg-services-process__line {
  background: #b1ff29;
  border-radius: 999px;
  display: block;
  height: 3px;
  margin-top: 28px;
  width: 72px;
}

.cg-services-intro__content {
  color: #5d636b;
  font-size: 18px;
  line-height: 1.78;
  max-width: 780px;
}

.cg-services-intro__content p {
  margin: 0;
}

.cg-services-intro__content p + p {
  margin-top: 20px;
}

.cg-services-main {
  background: #f6f7f4;
  border-top: 1px solid rgba(216, 221, 211, 0.78);
  overflow: hidden;
  padding: 108px 0 118px;
}

.cg-services-main__heading {
  margin: 0 auto 58px;
  max-width: 800px;
  text-align: center;
}

.cg-services-main__title {
  color: #151515;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}

.cg-services-main__description {
  color: #5d636b;
  font-size: 18px;
  line-height: 1.68;
  margin: 24px auto 0;
  max-width: 720px;
}

.cg-services-main__list {
  display: grid;
  gap: 34px;
}

.cg-service-feature {
  align-items: stretch;
  background: #f6f7f4;
  border: 1px solid rgba(216, 221, 211, 0.82);
  border-radius: 14px;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.62fr) minmax(300px, 0.38fr);
  min-height: 430px;
  overflow: hidden;
  padding: 54px;
  position: relative;
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.cg-service-feature:hover {
  border-color: rgba(177, 255, 41, 0.72);
  box-shadow: 0 22px 54px rgba(10, 10, 10, 0.09);
  transform: translateY(-3px);
}

.cg-service-feature--reverse {
  grid-template-columns: minmax(320px, 0.42fr) minmax(0, 0.58fr);
}

.cg-service-feature--reverse .cg-service-feature__content {
  order: 2;
}

.cg-service-feature--reverse .cg-service-feature__visual {
  order: 1;
}

.cg-service-feature--dark {
  background: #0a0a0a;
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.cg-service-feature--outlined {
  background: #ffffff;
}

.cg-service-feature__content {
  align-self: center;
  max-width: 760px;
  position: relative;
  z-index: 2;
}

.cg-service-feature__number {
  color: #4f7f00;
  display: inline-flex;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 20px;
}

.cg-service-feature--dark .cg-service-feature__number {
  color: #b1ff29;
}

.cg-service-feature__title {
  color: #151515;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  line-height: 1.14;
  margin: 0;
  max-width: 700px;
}

.cg-service-feature--dark .cg-service-feature__title {
  color: #ffffff;
}

.cg-service-feature__summary {
  color: #5d636b;
  font-size: 17px;
  line-height: 1.72;
  margin: 24px 0 0;
  max-width: 780px;
}

.cg-service-feature--dark .cg-service-feature__summary {
  color: rgba(255, 255, 255, 0.7);
}

.cg-service-feature__highlights {
  display: grid;
  gap: 14px 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 30px 0 0;
  max-width: 720px;
  padding: 0;
}

.cg-service-feature__highlights li {
  color: #151515;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  padding-left: 22px;
  position: relative;
}

.cg-service-feature--dark .cg-service-feature__highlights li {
  color: rgba(255, 255, 255, 0.9);
}

.cg-service-feature__highlights li::before {
  background: #b1ff29;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  top: 7px;
  width: 8px;
}

.cg-service-feature__link {
  align-items: center;
  color: #151515;
  display: inline-flex;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
  line-height: 1;
  margin-top: 36px;
  transition: color 250ms ease;
}

.cg-service-feature--dark .cg-service-feature__link {
  color: #ffffff;
}

.cg-service-feature__link i {
  color: #4f7f00;
  font-size: 14px;
  transition: color 250ms ease, transform 250ms ease;
}

.cg-service-feature--dark .cg-service-feature__link i {
  color: #b1ff29;
}

.cg-service-feature__link:hover,
.cg-service-feature__link:focus-visible {
  color: #4f7f00;
}

.cg-service-feature--dark .cg-service-feature__link:hover,
.cg-service-feature--dark .cg-service-feature__link:focus-visible {
  color: #b1ff29;
}

.cg-service-feature__link:hover i,
.cg-service-feature__link:focus-visible i {
  transform: translateX(3px);
}

.cg-service-feature__link:focus-visible {
  outline: 3px solid rgba(177, 255, 41, 0.42);
  outline-offset: 5px;
}

.cg-service-feature__visual {
  align-self: stretch;
  background:
    linear-gradient(rgba(10, 10, 10, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.045) 1px, transparent 1px),
    linear-gradient(135deg, rgba(177, 255, 41, 0.14), rgba(177, 255, 41, 0));
  background-size: 34px 34px, 34px 34px, auto;
  border: 1px solid rgba(216, 221, 211, 0.78);
  border-radius: 12px;
  min-height: 320px;
  overflow: hidden;
  position: relative;
  transition: transform 260ms ease;
}

.cg-service-feature:hover .cg-service-feature__visual {
  transform: translate(3px, -2px);
}

.cg-service-feature--dark .cg-service-feature__visual {
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, rgba(177, 255, 41, 0.18), rgba(177, 255, 41, 0.02));
  border-color: rgba(255, 255, 255, 0.12);
}

.cg-service-feature__visual-number {
  color: rgba(21, 21, 21, 0.055);
  font-family: var(--heading-font);
  font-size: clamp(120px, 16vw, 230px);
  font-weight: 700;
  line-height: 0.8;
  position: absolute;
  right: -16px;
  top: 28px;
}

.cg-service-feature--dark .cg-service-feature__visual-number {
  color: rgba(255, 255, 255, 0.08);
}

.cg-service-feature__visual-icon {
  align-items: center;
  background: #0a0a0a;
  color: #b1ff29;
  display: inline-flex;
  font-size: 42px;
  height: 96px;
  justify-content: center;
  left: 38px;
  position: absolute;
  top: 42px;
  width: 96px;
  z-index: 2;
}

.cg-service-feature--dark .cg-service-feature__visual-icon {
  background: #b1ff29;
  color: #000000;
}

.cg-service-feature__visual-line {
  background: #b1ff29;
  height: 3px;
  left: 38px;
  position: absolute;
  width: 108px;
}

.cg-service-feature__visual-line--one {
  bottom: 72px;
}

.cg-service-feature__visual-line--two {
  bottom: 52px;
  opacity: 0.48;
  width: 72px;
}

.cg-service-feature__visual-block {
  border: 1px solid rgba(177, 255, 41, 0.5);
  height: 42px;
  position: absolute;
  right: 44px;
  width: 104px;
}

.cg-service-feature__visual-block--one {
  bottom: 44px;
}

.cg-service-feature__visual-block--two {
  background: rgba(177, 255, 41, 0.12);
  bottom: 92px;
  right: 80px;
  width: 74px;
}

.cg-service-feature__visual--image {
  background: #0a0a0a;
}

.cg-service-feature__image {
  display: block;
  height: 100%;
  inset: 0;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  transition: transform 600ms ease-out;
  width: 100%;
  z-index: 1;
}

.cg-service-feature:hover .cg-service-feature__image,
.cg-service-feature:focus-within .cg-service-feature__image {
  transform: scale(1.022);
}

.cg-service-feature__visual--service-01 .cg-service-feature__image {
  object-position: 47% center;
}

.cg-service-feature__visual--service-02 .cg-service-feature__image {
  object-position: 52% center;
}

.cg-service-feature__visual--service-03 .cg-service-feature__image {
  object-position: 58% center;
}

.cg-service-feature__visual--image::after {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.08), rgba(10, 10, 10, 0.28));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.cg-service-feature--dark .cg-service-feature__visual--image::after {
  background: linear-gradient(90deg, rgba(10, 10, 10, 0), rgba(10, 10, 10, 0.22));
}

.cg-service-feature__image-number {
  color: #ffffff;
  font-family: var(--heading-font);
  font-size: clamp(92px, 10vw, 150px);
  font-weight: 700;
  line-height: 0.8;
  opacity: 0.12;
  position: absolute;
  right: 22px;
  top: 24px;
  transition: transform 280ms ease;
  z-index: 3;
}

.cg-service-feature:hover .cg-service-feature__image-number,
.cg-service-feature:focus-within .cg-service-feature__image-number {
  transform: translate(-3px, 2px);
}

.cg-service-feature__image-line {
  background: #b1ff29;
  bottom: 32px;
  height: 3px;
  left: 32px;
  position: absolute;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  width: 82px;
  z-index: 3;
}

.has-service-reveal .cg-service-feature__visual[data-cg-service-reveal] .cg-service-feature__image-line {
  transform: scaleX(0);
}

.has-service-reveal .cg-service-feature__visual[data-cg-service-reveal].is-revealed .cg-service-feature__image-line {
  transform: scaleX(1);
}

.cg-services-complementary {
  background: #ffffff;
  border-top: 1px solid rgba(216, 221, 211, 0.78);
  overflow: hidden;
  padding: 104px 0 112px;
  position: relative;
}

.cg-services-complementary__decor {
  border: 1px solid rgba(177, 255, 41, 0.22);
  height: 86px;
  pointer-events: none;
  position: absolute;
  right: max(24px, calc((100vw - 1296px) / 2));
  top: 76px;
  width: 168px;
}

.cg-services-complementary__decor::before,
.cg-services-complementary__decor::after {
  content: "";
  position: absolute;
}

.cg-services-complementary__decor::before {
  background: #b1ff29;
  height: 3px;
  right: 28px;
  top: 28px;
  width: 94px;
}

.cg-services-complementary__decor::after {
  background: rgba(10, 10, 10, 0.05);
  height: 24px;
  right: 68px;
  top: 48px;
  width: 72px;
}

.cg-services-complementary__heading {
  margin: 0 auto 54px;
  max-width: 820px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.cg-services-complementary__title {
  color: #151515;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  margin: 0;
}

.cg-services-complementary__description {
  color: #5d636b;
  font-size: 18px;
  line-height: 1.68;
  margin: 22px auto 0;
  max-width: 720px;
}

.cg-services-complementary__line {
  margin-left: auto;
  margin-right: auto;
}

.cg-services-complementary__grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  z-index: 1;
}

.cg-complementary-service {
  border-top: 1px solid #d8ddd3;
  min-height: 245px;
  padding: 28px 20px 0 0;
  position: relative;
  transition: transform 280ms ease;
}

.cg-complementary-service:hover {
  transform: translateY(-3px);
}

.cg-complementary-service__accent {
  background: #b1ff29;
  height: 3px;
  left: 0;
  position: absolute;
  top: -1px;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1), width 280ms ease;
  width: 38px;
}

.has-service-reveal .cg-complementary-service[data-cg-service-reveal] .cg-complementary-service__accent {
  transform: scaleX(0);
}

.has-service-reveal .cg-complementary-service[data-cg-service-reveal].is-revealed .cg-complementary-service__accent {
  transform: scaleX(1);
}

.cg-complementary-service:hover .cg-complementary-service__accent {
  width: 68px;
}

.cg-complementary-service__meta {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 28px;
}

.cg-complementary-service__number {
  color: #4f7f00;
  font-family: var(--heading-font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.cg-complementary-service__icon {
  align-items: center;
  background: rgba(177, 255, 41, 0.18);
  color: #151515;
  display: inline-flex;
  font-size: 18px;
  height: 42px;
  justify-content: center;
  transition: background-color 280ms ease, transform 280ms ease;
  width: 42px;
}

.cg-complementary-service:hover .cg-complementary-service__icon {
  background: #b1ff29;
  transform: translateY(-2px) scale(1.04);
}

.cg-complementary-service__title {
  color: #151515;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.22;
  margin: 0;
}

.cg-complementary-service__description {
  color: #5d636b;
  font-size: 16px;
  line-height: 1.64;
  margin: 16px 0 0;
}

.cg-services-process {
  background: #f6f7f4;
  border-top: 1px solid rgba(216, 221, 211, 0.78);
  padding: 102px 0 108px;
  position: relative;
}

.cg-services-process__heading {
  margin: 0 auto 58px;
  max-width: 790px;
  text-align: center;
}

.cg-services-process__title {
  color: #151515;
  font-size: clamp(32px, 3.7vw, 50px);
  font-weight: 700;
  line-height: 1.12;
  margin: 0;
}

.cg-services-process__description {
  color: #5d636b;
  font-size: 18px;
  line-height: 1.68;
  margin: 22px auto 0;
  max-width: 720px;
}

.cg-services-process__line {
  margin-left: auto;
  margin-right: auto;
}

.cg-services-process__grid {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
}

.cg-services-process__grid::before {
  background: rgba(21, 21, 21, 0.08);
  content: "";
  height: 1px;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 58px;
}

.cg-service-process-step {
  min-height: 252px;
  padding: 0 28px 0 0;
  position: relative;
  transition: transform 280ms ease;
}

.cg-service-process-step:hover {
  transform: translateY(-3px);
}

.cg-service-process-step__number {
  color: rgba(21, 21, 21, 0.1);
  display: block;
  font-family: var(--heading-font);
  font-size: clamp(68px, 8vw, 112px);
  font-weight: 700;
  line-height: 0.85;
  margin-bottom: 28px;
  transition: color 280ms ease;
}

.cg-service-process-step:hover .cg-service-process-step__number {
  color: rgba(21, 21, 21, 0.16);
}

.cg-service-process-step__accent {
  background: #b1ff29;
  display: block;
  height: 3px;
  margin-bottom: 26px;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1), width 280ms ease;
  width: 58px;
}

.has-service-reveal .cg-service-process-step[data-cg-service-reveal] .cg-service-process-step__accent {
  transform: scaleX(0);
}

.has-service-reveal .cg-service-process-step[data-cg-service-reveal].is-revealed .cg-service-process-step__accent {
  transform: scaleX(1);
}

.cg-service-process-step:hover .cg-service-process-step__accent {
  width: 78px;
}

.cg-service-process-step__title {
  color: #151515;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.cg-service-process-step__description {
  color: #5d636b;
  font-size: 16px;
  line-height: 1.66;
  margin: 16px 0 0;
}

.cg-services-contact-cta {
  background: #ffffff;
  padding: 80px 0 48px;
}

.cg-services-contact-cta__inner {
  align-items: center;
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #ffffff;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.65fr) minmax(250px, 0.35fr);
  overflow: hidden;
  padding: 68px 70px;
  position: relative;
}

.cg-services-contact-cta__inner::before {
  background: radial-gradient(ellipse at 82% 38%, rgba(177, 255, 41, 0.13) 0%, rgba(177, 255, 41, 0.05) 36%, transparent 68%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.cg-services-contact-cta__decor {
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.cg-services-contact-cta__decor--one {
  border-top: 1px solid rgba(177, 255, 41, 0.36);
  height: 1px;
  right: 54px;
  top: 44px;
  width: 168px;
}

.cg-services-contact-cta__decor--two {
  background: rgba(177, 255, 41, 0.1);
  clip-path: polygon(0 0, 88% 0, 100% 50%, 88% 100%, 0 100%, 12% 50%);
  height: 22px;
  right: 86px;
  top: 70px;
  width: 112px;
}

.cg-services-contact-cta__content,
.cg-services-contact-cta__actions {
  position: relative;
  z-index: 2;
}

.cg-services-contact-cta__eyebrow {
  color: #b1ff29;
}

.cg-services-contact-cta__title {
  color: #ffffff;
  font-size: clamp(31px, 3.4vw, 46px);
  font-weight: 700;
  line-height: 1.12;
  margin: 0;
  max-width: 780px;
}

.cg-services-contact-cta__description {
  color: rgba(255, 255, 255, 0.68);
  font-size: 18px;
  line-height: 1.68;
  margin: 22px 0 0;
  max-width: 650px;
}

.cg-services-contact-cta__actions {
  display: grid;
  gap: 14px;
  justify-self: end;
  max-width: 280px;
  width: 100%;
}

.cg-services-contact-cta__button {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  font-family: var(--heading-font);
  font-size: 15px;
  font-weight: 700;
  justify-content: center;
  line-height: 1;
  min-height: 54px;
  padding: 0 24px;
  text-align: center;
  transition: background-color 240ms ease, border-color 240ms ease, color 240ms ease, transform 240ms ease;
  width: 100%;
}

.cg-services-contact-cta__button--primary {
  background: #b1ff29;
  color: #000000;
}

.cg-services-contact-cta__button--primary:hover,
.cg-services-contact-cta__button--primary:focus-visible {
  background: #9eeb18;
  color: #000000;
  transform: translateY(-2px);
}

.cg-services-contact-cta__button--secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

.cg-services-contact-cta__button--secondary:hover,
.cg-services-contact-cta__button--secondary:focus-visible {
  border-color: rgba(177, 255, 41, 0.68);
  color: #b1ff29;
  transform: translateY(-2px);
}

.cg-services-contact-cta__button:focus-visible {
  outline: 3px solid rgba(177, 255, 41, 0.42);
  outline-offset: 4px;
}

@media (min-width: 1200px) {
  .cg-services-intro__content,
  .cg-service-feature__summary,
  .cg-complementary-service__description {
    hyphens: none;
    overflow-wrap: normal;
    text-align: justify;
    text-justify: inter-word;
    word-break: normal;
  }
}

@media (max-width: 1199px) {
  .cg-services-intro {
    padding: 92px 0 82px;
  }

  .cg-services-intro__grid {
    gap: 48px;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  }

  .cg-services-main {
    padding: 92px 0 98px;
  }

  .cg-service-feature {
    gap: 34px;
    grid-template-columns: minmax(0, 0.6fr) minmax(280px, 0.4fr);
    padding: 44px;
  }

  .cg-service-feature--reverse {
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  }

  .cg-services-complementary {
    padding: 92px 0 98px;
  }

  .cg-services-process {
    padding: 92px 0 98px;
  }

  .cg-services-contact-cta {
    padding-top: 64px;
  }

  .cg-services-contact-cta__inner {
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) minmax(230px, 0.34fr);
    padding: 60px 48px;
  }

  .cg-services-complementary__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cg-services-intro__content,
  .cg-service-feature__summary,
  .cg-complementary-service__description {
    text-align: left;
  }
}

@media (max-width: 1023px) {
  .cg-services-intro__grid {
    grid-template-columns: 1fr;
  }

  .cg-services-intro__content {
    text-align: left;
  }

  .cg-service-feature,
  .cg-service-feature--reverse {
    grid-template-columns: 1fr;
  }

  .cg-service-feature--reverse .cg-service-feature__content,
  .cg-service-feature--reverse .cg-service-feature__visual {
    order: initial;
  }

  .cg-service-feature__visual {
    min-height: 280px;
  }

  .cg-services-process__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cg-services-process__grid::before {
    display: none;
  }

  .cg-services-contact-cta__inner {
    grid-template-columns: 1fr;
  }

  .cg-services-contact-cta__actions {
    justify-self: start;
  }

  .cg-services-complementary__decor {
    opacity: 0.48;
    right: 22px;
    top: 54px;
  }
}

@media (max-width: 767px) {
  .has-service-reveal [data-cg-service-reveal],
  .has-service-reveal [data-cg-service-reveal="left"],
  .has-service-reveal [data-cg-service-reveal="right"],
  .has-service-reveal [data-cg-service-reveal="scale"] {
    transform: translateY(14px);
    transition-duration: 620ms;
  }

  .has-service-reveal [data-cg-service-reveal].is-revealed {
    transform: none;
  }

  .cg-services-intro {
    padding: 76px 0 66px;
  }

  .cg-services-main {
    padding: 76px 0 82px;
  }

  .cg-services-complementary {
    padding: 76px 0 82px;
  }

  .cg-services-process {
    padding: 76px 0 82px;
  }

  .cg-services-contact-cta {
    padding-top: 48px;
    padding-bottom: 36px;
  }

  .cg-services-contact-cta__inner {
    border-radius: 12px;
    gap: 30px;
    padding: 50px 28px;
  }

  .cg-services-main__heading,
  .cg-services-complementary__heading,
  .cg-services-process__heading {
    margin-bottom: 42px;
  }

  .cg-services-main__description,
  .cg-services-intro__content,
  .cg-services-complementary__description,
  .cg-services-process__description,
  .cg-services-contact-cta__description {
    font-size: 17px;
  }

  .cg-service-feature {
    border-radius: 12px;
    gap: 32px;
    min-height: 0;
    padding: 34px 26px;
  }

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

  .cg-service-feature__visual {
    min-height: 220px;
  }

  .cg-service-feature__visual--image {
    min-height: 240px;
  }

  .cg-service-feature__visual-icon {
    font-size: 34px;
    height: 78px;
    left: 28px;
    top: 30px;
    width: 78px;
  }

  .cg-service-feature__visual-line {
    left: 28px;
  }

  .cg-service-feature__visual-block {
    right: 28px;
  }

  .cg-services-complementary__decor {
    display: none;
  }

  .cg-services-complementary__grid {
    grid-template-columns: 1fr;
  }

  .cg-services-process__grid {
    grid-template-columns: 1fr;
  }

  .cg-service-process-step {
    min-height: auto;
    padding-right: 0;
  }

  .cg-services-contact-cta__decor {
    opacity: 0.55;
    transform: scale(0.72);
    transform-origin: right top;
  }

  .cg-services-contact-cta__actions {
    max-width: none;
  }

  .cg-services-contact-cta__button {
    width: 100%;
  }

  .cg-complementary-service {
    min-height: auto;
    padding-right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-cg-service-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .cg-service-feature,
  .cg-service-feature__link,
  .cg-service-feature__link i,
  .cg-service-feature__visual,
  .cg-service-feature__image,
  .cg-service-feature__image-line,
  .cg-service-feature__image-number,
  .cg-complementary-service,
  .cg-complementary-service__accent,
  .cg-complementary-service__icon,
  .cg-service-process-step,
  .cg-service-process-step__accent,
  .cg-service-process-step__number,
  .cg-services-contact-cta__button {
    transition: none;
  }

  .cg-service-feature:hover,
  .cg-service-feature:hover .cg-service-feature__visual,
  .cg-service-feature:hover .cg-service-feature__image,
  .cg-service-feature:focus-within .cg-service-feature__image,
  .cg-service-feature:hover .cg-service-feature__image-number,
  .cg-service-feature:focus-within .cg-service-feature__image-number,
  .cg-service-feature__link:hover i,
  .cg-service-feature__link:focus-visible i,
  .cg-complementary-service:hover,
  .cg-complementary-service:hover .cg-complementary-service__icon,
  .cg-service-process-step:hover,
  .cg-services-contact-cta__button--primary:hover,
  .cg-services-contact-cta__button--primary:focus-visible,
  .cg-services-contact-cta__button--secondary:hover,
  .cg-services-contact-cta__button--secondary:focus-visible {
    transform: none;
  }

  .has-service-reveal .cg-complementary-service[data-cg-service-reveal] .cg-complementary-service__accent,
  .has-service-reveal .cg-service-process-step[data-cg-service-reveal] .cg-service-process-step__accent,
  .cg-service-feature__image-line {
    transform: scaleX(1);
  }

  .cg-complementary-service:hover .cg-complementary-service__accent {
    width: 38px;
  }

  .cg-service-process-step:hover .cg-service-process-step__accent {
    width: 58px;
  }
}
