@font-face {
  font-family: "Exo";
  src: url("../fonts/Exo-Regular.otf") format("opentype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "ExoBold";
  src: url("../fonts/Exo-Bold.otf") format("opentype");
  font-weight: 700;
  font-display: swap;
}

:root {
  --service-purple: #651fff;
  --service-violet: #5a45ef;
  --service-navy: #18004e;
  --service-ink: #170442;
  --service-copy: #5e586d;
  --service-muted: #817b8e;
  --service-cyan: #2bd4e2;
  --service-pink: #f0bad7;
  --service-soft: #f7f5fc;
  --service-line: rgba(101, 31, 255, .13);
  --service-shadow: 0 25px 70px rgba(45, 10, 122, .12);
}

html {
  scroll-behavior: smooth;
}

.service-page {
  margin: 0;
  overflow-x: hidden;
  color: var(--service-ink);
  background: #fff;
  font-family: "Exo", Arial, sans-serif;
}

.service-page *,
.service-page *::before,
.service-page *::after {
  box-sizing: border-box;
}

.service-page a {
  color: inherit;
}

.service-shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.service-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 100px;
  border-bottom: 1px solid rgba(101, 31, 255, .08);
  background:
    linear-gradient(90deg, rgba(225, 218, 255, .72), rgba(221, 247, 251, .68) 45%, rgba(255, 232, 242, .68)),
    rgba(255, 255, 255, .88);
  box-shadow: 0 12px 34px rgba(37, 2, 130, .07);
  backdrop-filter: blur(18px);
}

.service-header__inner {
  display: flex;
  width: 100%;
  max-width: 1500px;
  height: 100%;
  margin: 0 auto;
  padding: 0 30px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.service-header__logo {
  display: block;
  width: 150px;
  flex: 0 0 auto;
}

.service-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.service-nav > a,
.service-nav__group {
  margin: 0 10px;
}

.service-nav > a,
.service-nav__trigger {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 37.5px;
  border: 0;
  color: #1e103f;
  background: transparent;
  font: inherit;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
}

.service-nav > a::after,
.service-nav__trigger::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--service-purple), var(--service-cyan));
  transform: scaleX(0);
  transition: transform .25s ease;
}

.service-nav > a:hover::after,
.service-nav > a:focus-visible::after,
.service-nav > a.is-active::after,
.service-nav__trigger:hover::after,
.service-nav__trigger:focus-visible::after,
.service-nav__trigger.is-active::after {
  transform: scaleX(1);
}

.service-nav > a.is-active,
.service-nav__trigger.is-active {
  color: var(--service-purple);
}

.service-nav__group {
  position: relative;
}

.service-nav__chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .25s ease;
}

.service-nav__group.is-open .service-nav__chevron {
  transform: translateY(2px) rotate(225deg);
}

.service-nav__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  display: grid;
  width: 310px;
  gap: 5px;
  padding: 12px;
  border: 1px solid var(--service-line);
  border-radius: 20px;
  opacity: 0;
  visibility: hidden;
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 24px 55px rgba(37, 2, 130, .16);
  transform: translate(-50%, -8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.service-nav__group.is-open .service-nav__menu,
.service-nav__group:hover .service-nav__menu,
.service-nav__group:focus-within .service-nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.service-nav__menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-radius: 13px;
  color: #4f4860;
  font-size: 13px;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.service-nav__menu a:hover,
.service-nav__menu a:focus-visible,
.service-nav__menu a.is-active {
  color: var(--service-purple);
  background: #f3efff;
  outline: none;
  transform: translateX(3px);
}

.service-nav__menu a span {
  font-size: 18px;
}

.service-nav__menu a.grant-link-disabled {
  color: #8D879A;
  cursor: default;
}

.service-nav__menu a.grant-link-disabled:hover,
.service-nav__menu a.grant-link-disabled:focus-visible {
  color: #8D879A;
  background: transparent;
  transform: none;
}

.service-nav__menu a.grant-link-disabled span {
  font-size: 11px;
}

.service-menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, .82);
  cursor: pointer;
}

.service-menu-button span,
.service-menu-button::before,
.service-menu-button::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: var(--service-ink);
  content: "";
  transition: transform .25s ease, opacity .25s ease;
}

.service-page.is-menu-open .service-menu-button span {
  opacity: 0;
}

.service-page.is-menu-open .service-menu-button::before {
  transform: translateY(6px) rotate(45deg);
}

.service-page.is-menu-open .service-menu-button::after {
  transform: translateY(-6px) rotate(-45deg);
}

.service-hero {
  position: relative;
  min-height: 820px;
  padding: 190px 0 105px;
  overflow: hidden;
  background:
    linear-gradient(rgba(101, 31, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 31, 255, .045) 1px, transparent 1px),
    radial-gradient(circle at 76% 17%, rgba(172, 238, 244, .62), transparent 29%),
    radial-gradient(circle at 87% 68%, rgba(227, 203, 237, .66), transparent 32%),
    linear-gradient(145deg, #fff 0%, #fcfbff 52%, #f4f1fb 100%);
  background-size: 52px 52px, 52px 52px, auto, auto, auto;
}

.service-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -170px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(101, 31, 255, .12);
  border-radius: 50%;
  box-shadow: inset 0 0 120px rgba(101, 31, 255, .06);
  animation: serviceOrbit 16s linear infinite;
}

.service-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr);
  gap: 72px;
  align-items: center;
}

.service-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--service-violet);
  font-family: "ExoBold", sans-serif;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.service-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "ExoBold", sans-serif;
  font-size: clamp(52px, 5.4vw, 80px);
  line-height: .98;
  letter-spacing: -.055em;
}

.service-hero h1 .service-gradient-text {
  display: block;
  color: transparent;
  background: linear-gradient(95deg, var(--service-purple), #7653f6 50%, #19b9d0);
  background-clip: text;
  -webkit-background-clip: text;
}

.service-hero__copy {
  max-width: 680px;
  margin: 28px 0 0;
  color: var(--service-copy);
  font-size: 19px;
  line-height: 1.72;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.service-button {
  position: relative;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 28px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(112deg, #651fff, #5a45ef 60%, #8979ff);
  box-shadow: 0 17px 36px rgba(90, 69, 239, .28);
  font-family: "ExoBold", sans-serif;
  font-size: 15px;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-button::before {
  content: "";
  position: absolute;
  top: -60%;
  bottom: -60%;
  left: -45%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .62), transparent);
  transform: skewX(-18deg);
  animation: serviceShine 3.8s ease-in-out infinite;
}

.service-button > span {
  position: relative;
  z-index: 1;
}

.service-button:hover,
.service-button:focus-visible {
  outline: none;
  box-shadow: 0 21px 44px rgba(90, 69, 239, .36);
  transform: translateY(-3px);
}

.service-button--secondary {
  border-color: rgba(101, 31, 255, .18);
  color: #4b319b;
  background: rgba(255, 255, 255, .76);
  box-shadow: none;
}

.service-button--secondary::before {
  display: none;
}

.service-button--secondary:hover,
.service-button--secondary:focus-visible {
  background: #fff;
  box-shadow: 0 14px 30px rgba(37, 2, 130, .11);
}

.service-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.service-proof-row span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--service-line);
  border-radius: 999px;
  color: #6a6376;
  background: rgba(255, 255, 255, .7);
  font-size: 12px;
}

.service-proof-row span::before {
  margin-right: 8px;
  color: #13ae61;
  content: "✓";
  font-family: "ExoBold", sans-serif;
}

.service-visual {
  position: relative;
  min-height: 520px;
}

.service-visual__panel {
  position: absolute;
  top: 30px;
  right: 0;
  width: min(100%, 520px);
  min-height: 430px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 100%, rgba(92, 75, 245, .65), transparent 38%),
    linear-gradient(145deg, #150342, #29126b);
  box-shadow: 0 44px 90px rgba(32, 6, 93, .28);
  transform: rotate(1.5deg);
}

.service-visual__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  color: rgba(255, 255, 255, .6);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-visual__dots {
  display: flex;
  gap: 6px;
}

.service-visual__dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #725cf3;
}

.service-visual__dots i:nth-child(2) { background: var(--service-cyan); }
.service-visual__dots i:nth-child(3) { background: #45d191; }

.service-visual__status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  padding: 9px 12px;
  border-radius: 999px;
  color: #8ef0c1;
  background: rgba(74, 218, 146, .1);
  font-family: "ExoBold", sans-serif;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-visual__status::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ada92;
  box-shadow: 0 0 14px #4ada92;
  content: "";
}

.service-visual__panel h2 {
  max-width: 390px;
  margin: 24px 0 14px;
  color: #fff;
  font-family: "ExoBold", sans-serif;
  font-size: clamp(31px, 3.2vw, 46px);
  line-height: 1.06;
}

.service-visual__panel p {
  max-width: 410px;
  margin: 0;
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  line-height: 1.65;
}

.service-visual__flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 34px;
}

.service-visual__flow span {
  padding: 16px 8px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 15px;
  color: rgba(255, 255, 255, .76);
  background: rgba(255, 255, 255, .045);
  font-size: 10px;
  text-align: center;
}

.service-visual__flow strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
  font-size: 16px;
}

.service-float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid var(--service-line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 45px rgba(37, 2, 130, .14);
  backdrop-filter: blur(14px);
  animation: serviceFloat 4.5s ease-in-out infinite;
}

.service-float-card--one {
  top: 0;
  left: -20px;
}

.service-float-card--two {
  right: -24px;
  bottom: 24px;
  animation-delay: -2s;
}

.service-float-card b {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  color: var(--service-purple);
  background: #f0ebff;
  font-family: "ExoBold", sans-serif;
  font-size: 12px;
}

.service-float-card span {
  color: #5f586d;
  font-size: 12px;
}

.service-float-card strong {
  display: block;
  margin-bottom: 3px;
  color: var(--service-ink);
  font-size: 13px;
}

.service-section {
  position: relative;
  padding: 110px 0;
}

.service-section--soft {
  background: var(--service-soft);
}

.service-section--dark {
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 10%, rgba(43, 212, 226, .16), transparent 28%),
    radial-gradient(circle at 86% 90%, rgba(122, 96, 255, .3), transparent 34%),
    var(--service-navy);
}

.service-section__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 52px;
  text-align: center;
}

.service-section__header > div {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
}

.service-section h2 {
  max-width: 760px;
  margin: 0;
  font-family: "ExoBold", sans-serif;
  font-size: clamp(38px, 4.5vw, 60px);
  line-height: 1.06;
  letter-spacing: -.04em;
}

.service-section__intro {
  max-width: 520px;
  margin: 18px auto 0;
  color: var(--service-copy);
  font-size: 17px;
  line-height: 1.75;
}

.service-section--dark .service-section__intro {
  color: rgba(255, 255, 255, .67);
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}

.service-card {
  position: relative;
  grid-column: span 4;
  scroll-margin-top: 125px;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--service-line);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(37, 2, 130, .07);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -75px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(101, 31, 255, .1);
  border-radius: 50%;
  transition: transform .4s ease, background .4s ease;
}

.service-card:hover {
  border-color: rgba(101, 31, 255, .25);
  box-shadow: 0 28px 65px rgba(37, 2, 130, .13);
  transform: translateY(-7px);
}

.service-card:hover::after {
  background: rgba(101, 31, 255, .045);
  transform: scale(1.18);
}

.service-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(101, 31, 255, .1);
  border-radius: 18px;
  color: var(--service-purple);
  background: linear-gradient(140deg, #f1edff, #e3faff);
  font-family: "ExoBold", sans-serif;
  font-size: 13px;
}

.service-card h3 {
  margin: 28px 0 14px;
  font-family: "ExoBold", sans-serif;
  font-size: 25px;
  line-height: 1.15;
}

.service-card p {
  max-width: 500px;
  margin: 0;
  color: var(--service-copy);
  font-size: 15px;
  line-height: 1.7;
}

.service-card__link {
  position: absolute;
  z-index: 2;
  bottom: 27px;
  left: 30px;
  color: var(--service-violet);
  font-family: "ExoBold", sans-serif;
  font-size: 13px;
  text-decoration: none;
}

.service-card__link::after {
  margin-left: 8px;
  content: "↗";
}

.service-card__status {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: #9a94a5;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-value-grid,
.service-deliverable-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-value,
.service-deliverable {
  min-height: 230px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 25px;
  background: rgba(255, 255, 255, .055);
}

.service-value__number,
.service-deliverable__number {
  color: #83edf3;
  font-family: "ExoBold", sans-serif;
  font-size: 13px;
  letter-spacing: .1em;
}

.service-value h3,
.service-deliverable h3 {
  margin: 54px 0 13px;
  color: #fff;
  font-family: "ExoBold", sans-serif;
  font-size: 21px;
}

.service-value p,
.service-deliverable p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  line-height: 1.65;
}

.service-process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: service-step;
}

.service-process article {
  position: relative;
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--service-line);
  border-radius: 26px;
  background: #fff;
  counter-increment: service-step;
}

.service-process article::before {
  color: var(--service-cyan);
  content: "0" counter(service-step);
  font-family: "ExoBold", sans-serif;
  font-size: 13px;
}

.service-process article::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 28px;
  width: 34px;
  height: 1px;
  background: rgba(101, 31, 255, .28);
}

.service-process h3 {
  margin: 58px 0 12px;
  font-family: "ExoBold", sans-serif;
  font-size: 21px;
}

.service-process p {
  margin: 0;
  color: var(--service-copy);
  font-size: 14px;
  line-height: 1.7;
}

.service-content-split {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 75px;
  align-items: start;
}

.service-check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-check-list--wide {
  grid-template-columns: repeat(4, 1fr);
}

.service-check-list div {
  position: relative;
  min-height: 118px;
  padding: 22px 22px 22px 54px;
  border: 1px solid var(--service-line);
  border-radius: 20px;
  background: #fff;
  color: var(--service-copy);
  font-size: 14px;
  line-height: 1.55;
}

.service-check-list div::before {
  position: absolute;
  top: 22px;
  left: 20px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  color: #10a95e;
  background: #e8fbf2;
  content: "✓";
  font-family: "ExoBold", sans-serif;
  font-size: 11px;
}

.service-check-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--service-ink);
  font-family: "ExoBold", sans-serif;
  font-size: 15px;
}

.service-faq {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  gap: 12px;
}

.service-faq details {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--service-line);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 13px 30px rgba(37, 2, 130, .055);
  transition: border-color .32s ease, box-shadow .35s ease, transform .35s ease;
}

.service-faq details::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: linear-gradient(120deg, #651fff 0%, #5a45ef 100%);
  content: "";
  transform: scale(.985);
  transition: opacity .35s ease, transform .38s cubic-bezier(.22, 1, .36, 1);
}

.service-faq details > * {
  position: relative;
  z-index: 1;
}

.service-faq details:hover {
  border-color: rgba(101, 31, 255, .28);
  box-shadow: 0 18px 38px rgba(37, 2, 130, .1);
  transform: translateY(-2px);
}

.service-faq details[open] {
  color: #fff;
  background: #fff;
  box-shadow: 0 20px 45px rgba(90, 69, 239, .23);
  transform: translateY(-2px);
}

.service-faq details[open]:not(.is-closing)::before {
  opacity: 1;
  transform: scale(1);
}

.service-faq details.is-opening,
.service-faq details.is-closing {
  will-change: height;
}

.service-faq details.is-closing {
  box-shadow: 0 13px 30px rgba(37, 2, 130, .055);
  transform: translateY(0);
}

.service-faq summary {
  position: relative;
  display: flex;
  min-height: 82px;
  align-items: center;
  padding: 0 68px 0 28px;
  list-style: none;
  font-family: "ExoBold", sans-serif;
  font-size: 17px;
  cursor: pointer;
  transition: color .28s ease;
}

.service-faq summary::-webkit-details-marker {
  display: none;
}

.service-faq summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 18px;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%) rotate(90deg);
  transition: transform .25s ease, background .25s ease;
}

.service-faq summary::before {
  position: absolute;
  top: 50%;
  right: 28px;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: translateY(-50%);
  transition: background .25s ease;
}

.service-faq details[open] summary::after {
  transform: translateY(-50%) rotate(0deg);
}

.service-faq details.is-closing summary {
  color: var(--service-ink);
}

.service-faq__answer {
  padding: 0 70px 28px 28px;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  line-height: 1.75;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .25s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
  animation: serviceAnswerIn .34s cubic-bezier(.22, 1, .36, 1) both;
}

.service-faq details.is-closing .service-faq__answer {
  opacity: 0;
  transform: translateY(-8px);
}

.service-cta {
  position: relative;
  overflow: hidden;
  padding: 78px;
  border-radius: 36px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 20%, rgba(43, 212, 226, .26), transparent 28%),
    linear-gradient(120deg, #190253, #4f2dc7 66%, #5a45ef);
  box-shadow: 0 35px 80px rgba(37, 2, 130, .22);
}

.service-cta::after {
  content: "";
  position: absolute;
  top: -130px;
  right: -80px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
}

.service-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 780px;
  color: #fff;
}

.service-cta p {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 20px 0 30px;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  line-height: 1.7;
}

.service-cta .service-button {
  position: relative;
  z-index: 1;
  color: var(--service-purple);
  background: #fff;
  box-shadow: none;
}

.service-cta .service-button::before {
  background: linear-gradient(90deg, transparent, rgba(101, 31, 255, .18), transparent);
}

.service-page.has-reveal .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s cubic-bezier(.22, 1, .36, 1);
}

.service-page.has-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes serviceShine {
  0%, 50% { left: -50%; }
  78%, 100% { left: 125%; }
}

@keyframes serviceFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

@keyframes serviceOrbit {
  to { transform: rotate(360deg); }
}

@keyframes serviceAnswerIn {
  from {
    opacity: 0;
    transform: translateY(-9px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 901px) and (max-width: 1300px) {
  .service-nav > a,
  .service-nav__trigger {
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 1120px) {
  .service-nav {
    gap: 0;
  }

  .service-nav > a,
  .service-nav__trigger {
    padding-right: 14px;
    padding-left: 14px;
  }

  .service-nav > a,
  .service-nav__group {
    margin-right: 4px;
    margin-left: 4px;
  }

  .service-hero__layout {
    grid-template-columns: 1fr 420px;
    gap: 40px;
  }

  .service-card {
    grid-column: span 6;
  }

  .service-value-grid,
  .service-deliverable-grid,
  .service-process,
  .service-check-list--wide {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .service-page.is-menu-open {
    overflow: hidden;
  }

  .service-header {
    height: 72px;
  }

  .service-header__inner {
    width: min(100% - 32px, 1200px);
    padding: 0;
  }

  .service-header__logo {
    width: 138px;
  }

  .service-menu-button {
    display: block;
  }

  .service-nav {
    position: fixed;
    z-index: 120;
    top: 72px;
    right: 16px;
    left: 16px;
    display: grid;
    max-height: calc(100vh - 88px);
    max-height: calc(100dvh - 88px);
    gap: 5px;
    padding: 16px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid var(--service-line);
    border-radius: 23px;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0 30px 80px rgba(37, 2, 130, .2);
    transform: translateY(-10px);
    transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
  }

  .service-nav > a,
  .service-nav__group {
    margin: 0;
  }

  .service-page.is-menu-open .service-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .service-nav > a,
  .service-nav__trigger {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 0 12px;
    font-size: 14px;
  }

  .service-nav > a::after,
  .service-nav__trigger::after {
    display: none;
  }

  .service-nav__group {
    width: 100%;
  }

  .service-nav__menu {
    position: static;
    display: grid;
    width: 100%;
    gap: 6px;
    padding: 4px 8px 10px;
    border: 0;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: none;
    transform: none;
  }

  .service-nav__group:not(.is-open) .service-nav__menu {
    display: none;
  }

  .service-nav__menu a {
    min-height: 46px;
    padding: 11px 14px;
    border: 1px solid rgba(101, 31, 255, .09);
    border-radius: 13px;
    color: #2a1853;
    background: #f9f7ff;
    font-family: "ExoBold", sans-serif;
    font-size: 13px;
    line-height: 1.3;
  }

  .service-nav__menu a:hover,
  .service-nav__menu a:focus-visible,
  .service-nav__menu a.is-active {
    color: var(--service-purple);
    background: #eee8ff;
    transform: none;
  }

  .service-nav__menu a span {
    flex: 0 0 auto;
    margin-left: 14px;
    color: var(--service-purple);
  }

  .service-hero {
    min-height: auto;
    padding: 138px 0 75px;
  }

  .service-hero__layout,
  .service-content-split {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .service-hero h1 {
    max-width: 680px;
  }

  .service-visual {
    width: min(100%, 620px);
    min-height: 500px;
    margin: 0 auto;
  }

  .service-section {
    padding: 82px 0;
  }

  .service-section__header {
    display: block;
  }

  .service-section__header .service-button {
    margin-top: 24px;
  }
}

@media (max-width: 680px) {
  .service-shell {
    width: min(100% - 30px, 1200px);
  }

  .service-hero {
    padding-top: 124px;
  }

  .service-hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .service-hero__copy {
    font-size: 16px;
  }

  .service-actions {
    display: grid;
  }

  .service-button {
    width: 100%;
  }

  .service-visual {
    min-height: 430px;
  }

  .service-visual__panel {
    min-height: 390px;
    padding: 20px;
    border-radius: 25px;
  }

  .service-visual__flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-float-card--one {
    left: -4px;
  }

  .service-float-card--two {
    right: -4px;
    bottom: -8px;
  }

  .service-section {
    padding: 68px 0;
  }

  .service-card-grid,
  .service-value-grid,
  .service-deliverable-grid,
  .service-process,
  .service-check-list {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-column: 1;
  }

  .service-card {
    min-height: 310px;
  }

  .service-cta {
    padding: 45px 25px;
    border-radius: 27px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .service-page.has-reveal .reveal {
    opacity: 1;
    transform: none;
  }
}
