:root {
  --bg: #050505;
  --ink: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --soft: rgba(255, 255, 255, 0.14);
  --accent: #2AC23C;
  --accent-gradient: linear-gradient(90deg, #2AC23C 0%, #CCFF2E 100%);
  --accent-gradient-hover: linear-gradient(90deg, #CCFF2E 0%, #2AC23C 100%);
  --accent-gradient-soft: linear-gradient(90deg, rgba(42, 194, 60, 0.86) 0%, rgba(204, 255, 46, 0.86) 100%);
  --font-heading: "Roboto", Arial, sans-serif;
  --font-display: "Roboto", Arial, sans-serif;
  --font-body: "Roboto", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #000000;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 50% 115%, rgba(42, 194, 60, 0.12), transparent 34rem),
    linear-gradient(180deg, #090909 0%, #050505 62%, #020202 100%);
  font-family: var(--font-body);
}

body.home-page {
  background: #000000;
}

body.is-loading {
  overflow: hidden;
}

html.boost-skip-preloader body.is-loading {
  overflow: auto;
}

.hero__liquid {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background:
    linear-gradient(104deg, rgba(42, 194, 60, 0.76), rgba(204, 255, 46, 0.34) 16%, rgba(4, 5, 3, 0.96) 42%, rgba(4, 5, 3, 0.9) 58%, rgba(204, 255, 46, 0.56)),
    radial-gradient(circle at 13% -4%, rgba(42, 194, 60, 0.68), transparent 31%),
    radial-gradient(circle at 94% 4%, rgba(42, 194, 60, 0.62), transparent 34%),
    linear-gradient(90deg, rgba(42, 194, 60, 0.26), transparent 24%, transparent 72%, rgba(204, 255, 46, 0.22)),
    #020302;
  background-size: 190% 190%, 140% 140%, 160% 160%, 160% 100%, auto;
  filter: saturate(1.32) brightness(1.05);
  opacity: 1;
  animation: hero-gradient-flow 8.5s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero__liquid::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 45%, transparent 0 36%, rgba(0, 0, 0, 0.34) 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.72));
  opacity: 0.82;
}

.hero__blob {
  display: none;
}

.hero__blob--one {
  top: -34%;
  left: -32%;
  animation:
    liquid-one 19s ease-in-out infinite alternate,
    liquid-morph 8.5s ease-in-out infinite alternate;
}

.hero__blob--two {
  top: 2%;
  left: 18%;
  width: clamp(46rem, 82vw, 104rem);
  opacity: 0.24;
  animation:
    liquid-two 22s ease-in-out infinite alternate,
    liquid-morph 9.8s ease-in-out 1.2s infinite alternate-reverse;
}

.hero__blob--three {
  right: -36%;
  bottom: -42%;
  width: clamp(48rem, 86vw, 108rem);
  opacity: 0.24;
  animation:
    liquid-three 24s ease-in-out infinite alternate,
    liquid-morph 11s ease-in-out 0.5s infinite alternate;
}

.site-header {
  position: fixed;
  top: clamp(0.75rem, 2vw, 1.5rem);
  left: 50%;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(6.4rem, 9rem) 1fr auto;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 2rem);
  width: min(82rem, calc(100% - clamp(1.5rem, 4vw, 4rem)));
  min-height: 4.4rem;
  padding: 0.55rem 0.65rem 0.55rem clamp(0.75rem, 1.5vw, 1.2rem);
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.08);
  transform: translateX(-50%);
  transition:
    background 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease,
    backdrop-filter 320ms ease;
}

.site-header.is-scrolled,
.site-header:hover,
.site-header:focus-within {
  border-color: rgba(42, 194, 60, 0.24);
  background: rgba(0, 0, 0, 0.58);
  box-shadow: 0 1.4rem 4rem rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(1rem);
}

.site-header__logo {
  display: inline-flex;
  width: clamp(6.2rem, 10vw, 8.8rem);
  height: 2.5rem;
  align-items: center;
  overflow: hidden;
  pointer-events: none;
}

.site-header__logo img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.16);
  transform-origin: left center;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.35rem, 1vw, 0.85rem);
}

.site-nav__item,
.contact-popover {
  position: relative;
}

.site-nav__link,
.site-nav__button {
  display: inline-grid;
  min-height: 2.45rem;
  padding: 0 0.9rem;
  place-items: center;
  border: 0;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.74);
  background: transparent;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition:
    color 240ms ease,
    background 240ms ease;
}

.site-nav__link:hover,
.site-nav__button:hover,
.site-nav__item:focus-within .site-nav__button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.services-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 50%;
  width: min(18.5rem, 82vw);
  padding: 0.6rem;
  border: 1px solid rgba(42, 194, 60, 0.34);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.68);
  box-shadow: 0 1.4rem 3.5rem rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(1.1rem);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -0.35rem) scale(0.98);
  transition:
    opacity 240ms ease,
    transform 240ms ease;
}

.services-menu::before {
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 0.8rem;
  content: "";
}

.site-nav__item--dropdown:hover .services-menu,
.site-nav__item--dropdown:focus-within .services-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.services-menu a {
  display: block;
  padding: 0.8rem 0.85rem;
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.services-menu a:hover,
.services-menu a:focus-visible {
  color: transparent;
  background-color: rgba(42, 194, 60, 0.08);
  background-image: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  transform: translateX(0.18rem);
  outline: 0;
}

.contact-popover {
  justify-self: end;
}

.contact-popover__button {
  display: inline-grid;
  min-height: 3rem;
  padding: 0 1.35rem;
  place-items: center;
  border: 1px solid rgba(42, 194, 60, 0.76);
  border-radius: 8px;
  color: #050505;
  background: var(--accent-gradient);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.contact-popover:hover .contact-popover__button,
.contact-popover:focus-within .contact-popover__button {
  box-shadow: 0 0 2rem rgba(42, 194, 60, 0.2);
  transform: translateY(-0.08rem);
}

.contact-popover__panel {
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  display: grid;
  width: min(18.5rem, 84vw);
  gap: 0.65rem;
  padding: 1rem;
  border-radius: 0 0 8px 8px;
  color: #050505;
  background: var(--accent-gradient);
  box-shadow: 0 1.4rem 3.5rem rgba(42, 194, 60, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: scaleY(0.06);
  transform-origin: top right;
  transition:
    opacity 220ms ease,
    transform 300ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.contact-popover:hover .contact-popover__panel,
.contact-popover:focus-within .contact-popover__panel {
  opacity: 1;
  pointer-events: auto;
  transform: scaleY(1);
}

.contact-popover__panel label {
  display: grid;
  gap: 0.28rem;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.contact-popover__panel input {
  width: 100%;
  min-height: 2.45rem;
  border: 1px solid rgba(5, 5, 5, 0.18);
  border-radius: 6px;
  color: #050505;
  background: rgba(255, 255, 255, 0.78);
  font: inherit;
  font-weight: 700;
  outline: 0;
  padding: 0 0.7rem;
}

.contact-popover__panel input:focus {
  border-color: #050505;
  background: #ffffff;
}

.contact-popover__panel button {
  min-height: 2.55rem;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: #050505;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 800;
  cursor: pointer;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(1.25rem, 3vw, 3rem);
  overflow: hidden;
  background: #050505;
}

.hero__content {
  align-self: center;
  justify-self: center;
  width: min(76rem, 100%);
  text-align: center;
}

.hero__title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.6vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(1.4rem);
  animation: hero-rise 950ms cubic-bezier(0.2, 0.84, 0.22, 1) 180ms forwards;
}

.hero__subtitle {
  width: min(44rem, 88vw);
  margin: clamp(1.4rem, 2.4vw, 2rem) auto 0;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  font-weight: 400;
  line-height: 1.65;
  opacity: 0;
  animation: hero-rise 800ms ease-out 380ms forwards;
}

.page-section {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 3vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  isolation: isolate;
}

.page-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 5rem 5rem;
  opacity: 0.38;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.section-shell {
  width: min(78rem, 100%);
  margin: 0 auto;
}

.section-kicker {
  margin: 0 0 0.8rem;
  color: var(--accent);
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-title,
.cta__title {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 6.25rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  font-weight: 500;
  line-height: 1.45;
}

.section-heading {
  display: grid;
  gap: 1.25rem;
  margin-bottom: clamp(2rem, 4vw, 3.4rem);
}

.section-heading--split {
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.65fr);
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
}

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.72fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6.5rem);
}

.about__copy {
  padding-bottom: 0.35rem;
}

.about {
  padding-top: clamp(6rem, 12vw, 11rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.about__block {
  position: relative;
  padding: clamp(1.25rem, 2vw, 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(42, 194, 60, 0.08), transparent 28rem),
    rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.about__block::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 4rem 4rem;
  opacity: 0.32;
  mask-image: linear-gradient(120deg, #000, transparent 70%);
  pointer-events: none;
}

.about__grid {
  position: relative;
  grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.88fr);
  min-height: clamp(28rem, 48vw, 40rem);
  align-items: stretch;
  gap: 1px;
  background: rgba(255, 255, 255, 0.09);
}

.about__headline,
.about__panel {
  display: grid;
  align-content: end;
  background: rgba(3, 3, 3, 0.76);
}

.about__headline {
  position: relative;
  min-height: 100%;
  padding: clamp(1.5rem, 4vw, 4.5rem);
}

.about__headline .section-title {
  max-width: 12ch;
  font-size: clamp(3.2rem, 8.2vw, 8.8rem);
}

.about__signal {
  position: absolute;
  top: clamp(1.4rem, 3vw, 2.5rem);
  left: clamp(1.4rem, 3vw, 2.5rem);
  width: clamp(4.5rem, 9vw, 8rem);
  aspect-ratio: 1;
  border: 1px solid rgba(42, 194, 60, 0.44);
  border-radius: 50%;
}

.about__signal::before,
.about__signal::after {
  position: absolute;
  content: "";
  background: var(--accent-gradient);
}

.about__signal::before {
  top: 50%;
  left: 18%;
  width: 64%;
  height: 1px;
}

.about__signal::after {
  top: 18%;
  left: 50%;
  width: 1px;
  height: 64%;
}

.about__panel {
  padding: clamp(1.5rem, 3.5vw, 3.5rem);
  border-left: 1px solid rgba(42, 194, 60, 0.18);
}

.about__copy {
  max-width: 31rem;
  padding-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.18rem, 1.65vw, 1.65rem);
  line-height: 1.34;
}

.services {
  padding-top: clamp(4.5rem, 8vw, 7rem);
}

.services__heading {
  width: min(58rem, 100%);
  margin-bottom: clamp(2rem, 5vw, 4.5rem);
}

.services__heading .section-title {
  font-size: clamp(3rem, 7.4vw, 7.4rem);
}

.service-grid,
.case-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.09);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1.25rem);
  background: transparent;
  border: 0;
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.case-card,
.process-step {
  position: relative;
  overflow: hidden;
  min-height: 18rem;
  padding: clamp(1.25rem, 2.4vw, 2rem);
  background: rgba(5, 5, 5, 0.78);
}

.feature-card::after,
.case-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  content: "";
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms ease;
}

.feature-card:hover::after,
.case-card:hover::after {
  transform: scaleX(1);
}

.feature-card:hover,
.case-card:hover {
  background: rgba(12, 12, 12, 0.96);
}

.card-index,
.process-step span {
  display: inline-block;
  margin-bottom: clamp(2.8rem, 6vw, 5rem);
  color: transparent;
  background-image: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.feature-card h3,
.case-card h3,
.process-step h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.4vw, 2.55rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: 0;
}

.feature-card p,
.case-card p,
.process-step p {
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-weight: 500;
  line-height: 1.38;
}

.feature-card {
  display: flex;
  min-height: clamp(21rem, 31vw, 27rem);
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.15rem, 2vw, 1.7rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.016)),
    rgba(5, 5, 5, 0.84);
  transition:
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 320ms ease,
    transform 320ms ease;
}

.feature-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 50% 0%, rgba(42, 194, 60, 0.2), transparent 52%);
  opacity: 0;
  transform: translateY(-10%);
  transition:
    opacity 360ms ease,
    transform 360ms ease;
  pointer-events: none;
}

.feature-card::after {
  height: 2px;
}

.feature-card:hover {
  border-color: rgba(42, 194, 60, 0.42);
  background:
    linear-gradient(180deg, rgba(42, 194, 60, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(9, 9, 9, 0.96);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.28);
  transform: translateY(-0.45rem);
}

.feature-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.feature-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.feature-card .card-index {
  margin-bottom: 0;
  color: transparent;
  background-image: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 0.95rem;
}

.feature-card__marker {
  width: 0.62rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: 0 0 1.2rem rgba(42, 194, 60, 0.34);
  transform: scale(0.78);
  transition: transform 320ms ease;
}

.feature-card:hover .feature-card__marker {
  transform: scale(1);
}

.feature-card__body {
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  font-size: clamp(2rem, 3vw, 3.25rem);
}

.feature-card p {
  max-width: 17rem;
  color: rgba(255, 255, 255, 0.64);
}

.feature-card:hover p {
  color: rgba(255, 255, 255, 0.78);
}

.case-card {
  display: flex;
  min-height: 23rem;
  flex-direction: column;
  justify-content: flex-end;
  transition:
    background 320ms ease,
    transform 320ms ease;
}

.case-card:hover {
  transform: translateY(-0.45rem);
}

.case-card__meta {
  position: absolute;
  inset: clamp(1.25rem, 2.4vw, 2rem) clamp(1.25rem, 2.4vw, 2rem) auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.1;
}

.case-card__meta span:last-child {
  color: var(--accent);
}

.process-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.process-step {
  display: grid;
  min-height: auto;
  grid-template-columns: 6rem minmax(9rem, 0.46fr) minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  align-items: baseline;
  padding-right: 0;
  padding-left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
}

.process-step span,
.process-step p {
  margin: 0;
}

.cta {
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.cta__inner {
  display: grid;
  min-height: 26rem;
  align-content: center;
  justify-items: center;
  text-align: center;
}

.cta__title {
  width: min(56rem, 100%);
}

.cta__button {
  display: inline-grid;
  min-height: 3.5rem;
  margin-top: clamp(1.6rem, 3vw, 2.4rem);
  padding: 0 1.6rem;
  place-items: center;
  border: 1px solid rgba(42, 194, 60, 0.72);
  border-radius: 8px;
  color: #050505;
  background: var(--accent-gradient);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    background 260ms ease,
    color 260ms ease,
    transform 260ms ease,
    box-shadow 260ms ease;
}

.cta__button:hover {
  color: var(--accent);
  background: transparent;
  box-shadow: 0 0 2rem rgba(42, 194, 60, 0.16);
  transform: translateY(-0.16rem);
}

.footer {
  position: relative;
  display: flex;
  min-height: clamp(26rem, 48vh, 34rem);
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(4.75rem, 6.4vw, 7rem) clamp(1.25rem, 8.5vw, 9.75rem) 0;
  overflow: hidden;
  color: #ffffff;
  background: #000000;
  scroll-snap-align: start;
}

.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 20rem);
  gap: clamp(3rem, 12vw, 12rem);
  width: 100%;
}

.footer h2 {
  margin: 0 0 1.3rem;
  color: #ffffff;
  font-size: clamp(1.45rem, 1.75vw, 2rem);
  font-weight: 400;
  line-height: 1.1;
}

.footer__contact,
.footer__services {
  display: grid;
  align-content: start;
  justify-items: start;
}

.footer a {
  display: block;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(1.05rem, 1.3vw, 1.42rem);
  font-weight: 400;
  line-height: 1.42;
  text-decoration: none;
  transition: color 220ms ease;
}

.footer__contact a:nth-of-type(3) {
  margin-top: 1.45rem;
}

.footer a:hover,
.footer a:focus-visible {
  color: #ffffff;
}

.footer__brand {
  display: flex;
  width: 100vw;
  height: clamp(5.6rem, 10vw, 8.3rem);
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  border-bottom: 2px solid #ffffff;
  color: #ffffff;
  font-family: "Bebas Neue", var(--font-heading), Arial, sans-serif !important;
  font-size: clamp(7rem, 15vw, 12.4rem);
  font-weight: 400;
  line-height: 0.77;
  letter-spacing: 0;
  pointer-events: none;
}

.cta {
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.cta__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 0.9fr);
  gap: clamp(2rem, 6vw, 6rem);
  min-height: clamp(22rem, 36vw, 28rem);
  padding: clamp(1.6rem, 3.4vw, 3rem);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(42, 194, 60, 0.08), transparent 32%),
    #030603;
  isolation: isolate;
}

.cta__panel::before {
  position: absolute;
  inset: 18% -18% auto -8%;
  z-index: -1;
  height: 42%;
  content: "";
  background:
    radial-gradient(ellipse at center, rgba(42, 194, 60, 0.7), rgba(204, 255, 46, 0.18) 46%, transparent 72%);
  filter: blur(2.2rem);
  opacity: 0.78;
  transform: rotate(-5deg);
}

.cta__panel::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 34%);
  opacity: 0.9;
}

.cta__copy {
  display: grid;
  align-content: start;
  justify-items: start;
}

.cta__copy .section-kicker {
  margin-bottom: 1.2rem;
}

.cta__title {
  width: min(30rem, 100%);
  font-size: clamp(2.7rem, 5.2vw, 5rem);
  line-height: 0.94;
}

.cta__chat-icon {
  display: grid;
  width: clamp(3.4rem, 6vw, 4.4rem);
  aspect-ratio: 1;
  margin-top: clamp(1.2rem, 3vw, 2.2rem);
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 1rem 2.2rem rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(0.8rem);
}

.cta__chat-icon span {
  position: relative;
  width: 1.85rem;
  height: 1.2rem;
  border-radius: 999px;
  background: var(--accent-gradient);
}

.cta__chat-icon span::before {
  position: absolute;
  right: 0.2rem;
  bottom: -0.35rem;
  width: 0.7rem;
  height: 0.7rem;
  content: "";
  background: var(--accent-gradient);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.cta__form {
  display: grid;
  align-content: center;
  gap: 1rem;
}

.cta__form label {
  display: grid;
  gap: 0.45rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  font-weight: 700;
}

.cta__form input,
.cta__form textarea {
  width: 100%;
  min-height: 3.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
  font: inherit;
  font-size: 1rem;
  outline: 0;
  padding: 0 0.9rem;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.cta__form textarea {
  min-height: 7rem;
  resize: vertical;
  padding-top: 0.85rem;
}

.cta__form input::placeholder,
.cta__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.cta__form input:focus,
.cta__form textarea:focus {
  border-color: rgba(42, 194, 60, 0.72);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(42, 194, 60, 0.08);
}

.cta__form button {
  min-height: 3.45rem;
  margin-top: 0.25rem;
  border: 0;
  border-radius: 8px;
  color: #050505;
  background: var(--accent-gradient);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.cta__form button:hover {
  box-shadow: 0 1rem 2.4rem rgba(42, 194, 60, 0.16);
  transform: translateY(-0.12rem);
}

.reveal {
  opacity: 0;
  transform: translateY(1.2rem);
  transition:
    opacity 800ms ease,
    transform 800ms ease;
}

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

body .services--hire.reveal {
  opacity: 1 !important;
  transform: none !important;
}

body .services--hire,
body .services--hire.is-visible {
  background: #000000 !important;
  opacity: 1 !important;
  transform: none !important;
}

body.home-page .reveal:not(.scene-deck),
body.home-page .reveal:not(.scene-deck).is-visible {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

body.home-page .hero__eyebrow,
body.home-page .hero__title,
body.home-page .hero__subtitle,
body.home-page .services--hire .services-hire-cards,
body.home-page .services--hire .feature-card,
body.home-page .services--hire.is-visible .feature-card,
body.home-page .services--hire .services-hire-cards.cards-visible .feature-card {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

/* Final final header menu override: must stay after all legacy header rules. */
body.site-menu-open {
  overflow: hidden !important;
}

body .site-header,
body .site-header.is-scrolled,
body .site-header.is-past-hero,
body .site-header:hover,
body .site-header:focus-within {
  grid-template-columns: minmax(4.2rem, 1fr) auto auto !important;
  align-items: start !important;
  gap: 0.62rem !important;
}

body .site-header .site-nav {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body .site-header .contact-popover {
  grid-column: 2 !important;
  justify-self: end !important;
}

body .site-header .site-menu-toggle {
  grid-column: 3 !important;
  justify-self: end !important;
  align-self: start !important;
  position: relative !important;
  z-index: 101 !important;
  display: inline-grid !important;
  width: clamp(2.85rem, 3.45vw, 3.35rem) !important;
  height: clamp(2.85rem, 3.45vw, 3.35rem) !important;
  margin: 0 !important;
  padding: 0 !important;
  place-items: center !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  background: #050505 !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transform: none !important;
}

body .site-header .site-menu-toggle:hover,
body .site-header .site-menu-toggle:focus-visible {
  transform: scale(1.035) !important;
}

body .site-header .site-menu-toggle span {
  position: absolute !important;
  left: 50% !important;
  display: block !important;
  width: 1.18rem !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: currentColor !important;
  transform: translateX(-50%) !important;
  transition:
    top 220ms ease,
    transform 220ms ease !important;
}

body .site-header .site-menu-toggle span:first-child {
  top: calc(50% - 0.26rem) !important;
}

body .site-header .site-menu-toggle span:last-child {
  top: calc(50% + 0.26rem) !important;
}

body .site-header .site-menu-toggle.is-open span:first-child {
  top: 50% !important;
  transform: translateX(-50%) rotate(45deg) !important;
}

body .site-header .site-menu-toggle.is-open span:last-child {
  top: 50% !important;
  transform: translateX(-50%) rotate(-45deg) !important;
}

body > .site-menu-overlay,
body .site-menu-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 72 !important;
  display: grid !important;
  align-items: end !important;
  width: 100vw !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;
  padding: clamp(6.2rem, 10vw, 8.4rem) clamp(1.2rem, 4vw, 4rem) clamp(1.2rem, 3vw, 3rem) !important;
  color: #ffffff !important;
  background: #000000 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  transform: translateY(1.2rem) !important;
  transition:
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0ms linear 520ms !important;
}

body > .site-menu-overlay.is-open,
body .site-menu-overlay.is-open {
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  transition:
    opacity 320ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0ms linear 0ms !important;
}

/* Header equal-height controls. */
body .site-header {
  --boost-header-control-height: clamp(2.45rem, 2.92vw, 3.35rem);
}

body .site-header,
body .site-header.is-scrolled,
body .site-header.is-past-hero,
body .site-header:hover,
body .site-header:focus-within {
  align-items: center !important;
}

body .site-header .site-header__logo,
body .site-header.is-past-hero .site-header__logo {
  width: var(--boost-header-control-height) !important;
  height: var(--boost-header-control-height) !important;
  align-self: center !important;
}

body .site-header .contact-popover,
body .site-header .contact-popover:not(:hover):not(:focus-within),
body .site-header .contact-popover:not(:hover):not(:focus-within) .contact-popover__panel {
  height: var(--boost-header-control-height) !important;
  align-self: center !important;
}

body .site-header .contact-popover__panel {
  min-height: var(--boost-header-control-height) !important;
}

body .site-header .contact-popover__button,
body .site-header .contact-popover__panel .contact-popover__button {
  min-height: 0 !important;
  height: var(--boost-header-control-height) !important;
}

body .site-header .site-menu-toggle {
  width: var(--boost-header-control-height) !important;
  height: var(--boost-header-control-height) !important;
  align-self: center !important;
}

/* Force menu card images after all background resets. */
body .site-menu-card,
body .site-menu-card:visited {
  position: relative !important;
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  padding: 0 !important;
  background-color: #050505 !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  overflow: hidden !important;
}

body .site-menu-card img {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
}

/* Manual fullscreen menu cards. */
body .site-menu-card,
body .site-menu-card:visited {
  position: relative !important;
  display: block !important;
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  padding: clamp(1.35rem, 2vw, 1.95rem) !important;
  border: 0 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  color: #ffffff !important;
  background: #050505 !important;
  text-decoration: none !important;
}

body .site-menu-card span,
body .site-menu-card strong,
body .site-menu-card small,
body .site-menu-card em {
  position: static !important;
  display: initial !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  border: 0 !important;
  color: inherit !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

body .site-menu-card__title {
  position: relative !important;
  z-index: 3 !important;
  display: block !important;
  max-width: 13rem !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1.25rem, 1.72vw, 1.72rem) !important;
  font-weight: 400 !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

body .site-menu-card__orders {
  position: absolute !important;
  left: clamp(1.15rem, 1.75vw, 1.65rem) !important;
  right: clamp(1.15rem, 1.75vw, 1.65rem) !important;
  bottom: clamp(1.35rem, 2vw, 1.9rem) !important;
  z-index: 2 !important;
  display: grid !important;
  gap: clamp(0.55rem, 0.78vw, 0.78rem) !important;
}

body .site-menu-card__order {
  display: grid !important;
  grid-template-columns: clamp(2.25rem, 3.3vw, 3.25rem) 1fr auto !important;
  align-items: center !important;
  gap: clamp(0.55rem, 0.9vw, 0.9rem) !important;
  min-height: clamp(3.05rem, 4.45vw, 4.45rem) !important;
  padding: 0 clamp(0.55rem, 0.86vw, 0.85rem) !important;
  border-radius: 12px !important;
  color: #050505 !important;
  background: #ffffff !important;
}

body .site-menu-card__shop {
  display: grid !important;
  place-items: center !important;
  width: clamp(2rem, 3vw, 2.95rem) !important;
  height: clamp(2rem, 3vw, 2.95rem) !important;
  border: 2px solid #eeeeee !important;
  border-radius: 10px !important;
  color: #73c13a !important;
  font-weight: 900 !important;
}

body .site-menu-card__order strong,
body .site-menu-card__order small,
body .site-menu-card__order em {
  display: block !important;
  font-family: var(--font-body) !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
}

body .site-menu-card__order strong {
  font-size: clamp(0.72rem, 1vw, 1rem) !important;
  font-weight: 800 !important;
}

body .site-menu-card__order small {
  font-size: clamp(0.62rem, 0.86vw, 0.86rem) !important;
}

body .site-menu-card__order em {
  align-self: start !important;
  padding-top: 0.35rem !important;
  color: #8a8a8a !important;
  font-size: clamp(0.5rem, 0.66vw, 0.66rem) !important;
  font-style: normal !important;
}

body .site-menu-card__roi {
  position: absolute !important;
  left: 50% !important;
  top: 56% !important;
  z-index: 2 !important;
  display: grid !important;
  place-items: center !important;
  width: clamp(7.4rem, 11vw, 10.7rem) !important;
  height: clamp(7.4rem, 11vw, 10.7rem) !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) !important;
  background:
    radial-gradient(circle at center, #050505 0 58%, transparent 59%),
    conic-gradient(#ccff2e 0 25%, #35d638 25% 74%, #5c5c5c 74% 100%) !important;
}

body .site-menu-card__roi strong,
body .site-menu-card__roi small {
  display: block !important;
  text-align: center !important;
  font-family: var(--font-body) !important;
  line-height: 0.92 !important;
}

body .site-menu-card__roi strong {
  font-size: clamp(1.85rem, 2.7vw, 2.7rem) !important;
  font-weight: 900 !important;
}

body .site-menu-card__roi small {
  color: #9a9a9a !important;
  font-size: clamp(1.05rem, 1.45vw, 1.45rem) !important;
  font-weight: 800 !important;
}

body .site-menu-card__flow {
  position: absolute !important;
  left: 50% !important;
  top: 58% !important;
  z-index: 2 !important;
  display: block !important;
  width: clamp(9.5rem, 14vw, 14rem) !important;
  height: clamp(5rem, 7.5vw, 7.5rem) !important;
  transform: translate(-50%, -50%) !important;
}

body .site-menu-card__flow::before,
body .site-menu-card__flow::after {
  content: "" !important;
  position: absolute !important;
  left: 20% !important;
  right: 17% !important;
  top: 47% !important;
  height: 1px !important;
  background: #343434 !important;
}

body .site-menu-card__flow::after {
  top: 52% !important;
  transform: rotate(-28deg) !important;
}

body .site-menu-card__flow span {
  position: absolute !important;
  display: block !important;
  width: clamp(1.55rem, 2.4vw, 2.35rem) !important;
  height: clamp(1.55rem, 2.4vw, 2.35rem) !important;
  border-radius: 8px !important;
  background: #1e1e1e !important;
  box-shadow: inset 0 0 0 1px #2f2f2f !important;
}

body .site-menu-card__flow span:nth-child(1) { left: 0 !important; top: 43% !important; }
body .site-menu-card__flow span:nth-child(2) { left: 36% !important; top: 18% !important; }
body .site-menu-card__flow span:nth-child(3) { left: 36% !important; bottom: 12% !important; }
body .site-menu-card__flow span:nth-child(4) { right: 0 !important; top: 4% !important; }
body .site-menu-card__flow span:nth-child(5) { right: 0 !important; bottom: 2% !important; }

body .site-menu-card__folder {
  position: absolute !important;
  left: clamp(1.35rem, 2vw, 1.9rem) !important;
  bottom: clamp(1.45rem, 2.2vw, 2.1rem) !important;
  z-index: 2 !important;
  display: block !important;
  width: clamp(7.9rem, 12vw, 12rem) !important;
  height: clamp(4.9rem, 7.2vw, 7.2rem) !important;
  border-radius: 10px !important;
  background: linear-gradient(180deg, #ccff2e 0%, #64e900 34%, #2ac23c 100%) !important;
}

body .site-menu-card__folder::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: -0.58rem !important;
  width: 46% !important;
  height: 1.1rem !important;
  border-radius: 10px 10px 0 0 !important;
  background: #2ac23c !important;
}

body .site-menu-card__phone {
  position: absolute !important;
  right: clamp(-1rem, -1vw, -0.4rem) !important;
  bottom: clamp(-2.4rem, -2.4vw, -1.2rem) !important;
  z-index: 2 !important;
  display: block !important;
  width: clamp(8rem, 12vw, 12rem) !important;
  height: clamp(12rem, 18vw, 18rem) !important;
  border: 2px solid #8d8d8d !important;
  border-radius: 28px 28px 0 0 !important;
  background: #f5f1ec !important;
  overflow: hidden !important;
}

body .site-menu-card__phone::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  height: 26% !important;
  background: #159889 !important;
}

body .site-menu-card__phone::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 0.85rem !important;
  width: 32% !important;
  height: 0.72rem !important;
  border-radius: 999px !important;
  transform: translateX(-50%) !important;
  background: #050505 !important;
}

body .site-menu-card__chat {
  position: absolute !important;
  left: 32% !important;
  top: 45% !important;
  display: block !important;
  width: 50% !important;
  height: 18% !important;
  border-radius: 0 0 0 12px !important;
  background: #d7ffbd !important;
}

/* Fullscreen menu design. */
body > .site-menu-overlay,
body .site-menu-overlay {
  align-items: center !important;
  padding: clamp(5.6rem, 8vw, 7.2rem) clamp(3rem, 6vw, 6rem) clamp(2rem, 4vw, 4rem) !important;
}

body .site-menu-overlay__inner {
  display: grid !important;
  grid-template-columns: minmax(0, 2.65fr) minmax(15rem, 0.78fr) !important;
  gap: clamp(3rem, 7vw, 7rem) !important;
  width: min(92rem, 100%) !important;
  margin: 0 auto !important;
  align-items: stretch !important;
}

body .site-menu-cards {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(0.9rem, 1.45vw, 1.35rem) !important;
}

body .site-menu-card,
body .site-menu-card:visited {
  position: relative !important;
  display: block !important;
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  color: #ffffff !important;
  background: #050505 !important;
  text-decoration: none !important;
  transition:
    background 220ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body .site-menu-card:hover,
body .site-menu-card:focus-visible {
  background: #080808 !important;
  transform: translateY(-0.22rem) !important;
}

body .site-menu-card span {
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
  max-width: 13rem !important;
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1.25rem, 1.72vw, 1.72rem) !important;
  font-weight: 400 !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

body .site-menu-card img {
  position: absolute !important;
  right: clamp(0.75rem, 1.25vw, 1.1rem) !important;
  bottom: clamp(0.55rem, 1vw, 0.95rem) !important;
  z-index: 1 !important;
  width: min(74%, 16rem) !important;
  height: auto !important;
  max-height: 66% !important;
  object-fit: contain !important;
  object-position: right bottom !important;
  pointer-events: none !important;
}

body .site-menu-card:nth-child(4),
body .site-menu-card:nth-child(5) {
  min-height: clamp(13rem, 20vw, 19.6rem) !important;
}

body .site-menu-card:nth-child(4) img,
body .site-menu-card:nth-child(5) img {
  width: min(82%, 18rem) !important;
  max-height: 70% !important;
}

body .site-menu-links {
  display: grid !important;
  align-content: space-between !important;
  min-height: 100% !important;
  padding: clamp(0.25rem, 1vw, 0.85rem) 0 !important;
}

body .site-menu-links__nav {
  display: grid !important;
  gap: clamp(1.22rem, 2vw, 1.86rem) !important;
  align-content: start !important;
}

body .site-menu-links__nav a,
body .site-menu-links__nav a:visited {
  color: #ffffff !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1.08rem, 1.44vw, 1.52rem) !important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  text-decoration: none !important;
  transition:
    color 180ms ease,
    transform 220ms ease !important;
}

body .site-menu-links__nav a:hover,
body .site-menu-links__nav a:focus-visible {
  color: #ccff2e !important;
  transform: translateX(0.28rem) !important;
}

body .site-menu-social {
  display: grid !important;
  gap: 0.9rem !important;
}

body .site-menu-social p {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(1rem, 1.28vw, 1.32rem) !important;
  font-weight: 400 !important;
}

body .site-menu-social div {
  display: flex !important;
  gap: 0.74rem !important;
  align-items: center !important;
}

body .site-menu-social a,
body .site-menu-social a:visited {
  display: inline-grid !important;
  width: clamp(2.35rem, 3vw, 3rem) !important;
  height: clamp(2.35rem, 3vw, 3rem) !important;
  place-items: center !important;
  border: 3px solid #ffffff !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  font-size: clamp(1.42rem, 1.9vw, 1.95rem) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

@media (max-width: 980px) {
  body > .site-menu-overlay,
  body .site-menu-overlay {
    overflow-y: auto !important;
    align-items: start !important;
    padding: 5.7rem 1rem 1.2rem !important;
  }

  body .site-menu-overlay__inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  body .site-menu-cards {
    grid-template-columns: 1fr !important;
  }

  body .site-menu-card {
    min-height: 11rem !important;
  }

  body .site-menu-links {
    gap: 2.5rem !important;
  }
}

/* Final header menu override: hides center nav and keeps menu circle beside Contato. */
body.site-menu-open {
  overflow: hidden !important;
}

body .site-header,
body .site-header.is-scrolled,
body .site-header.is-past-hero,
body .site-header:hover,
body .site-header:focus-within {
  grid-template-columns: minmax(4.2rem, 1fr) auto auto !important;
  align-items: start !important;
  gap: 0.62rem !important;
}

body .site-header .site-nav {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body .site-header .contact-popover {
  grid-column: 2 !important;
  justify-self: end !important;
}

body .site-header .site-menu-toggle {
  grid-column: 3 !important;
  justify-self: end !important;
  align-self: start !important;
  position: relative !important;
  z-index: 101 !important;
  display: inline-grid !important;
  width: clamp(2.85rem, 3.45vw, 3.35rem) !important;
  height: clamp(2.85rem, 3.45vw, 3.35rem) !important;
  margin: 0 !important;
  padding: 0 !important;
  place-items: center !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  background: #050505 !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transform: none !important;
}

body .site-header .site-menu-toggle:hover,
body .site-header .site-menu-toggle:focus-visible {
  transform: scale(1.035) !important;
}

body .site-header .site-menu-toggle span {
  position: absolute !important;
  left: 50% !important;
  display: block !important;
  width: 1.18rem !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: currentColor !important;
  transform: translateX(-50%) !important;
  transition:
    top 220ms ease,
    transform 220ms ease !important;
}

body .site-header .site-menu-toggle span:first-child {
  top: calc(50% - 0.26rem) !important;
}

body .site-header .site-menu-toggle span:last-child {
  top: calc(50% + 0.26rem) !important;
}

body .site-header .site-menu-toggle.is-open span:first-child {
  top: 50% !important;
  transform: translateX(-50%) rotate(45deg) !important;
}

body .site-header .site-menu-toggle.is-open span:last-child {
  top: 50% !important;
  transform: translateX(-50%) rotate(-45deg) !important;
}

body > .site-menu-overlay,
body .site-menu-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 72 !important;
  display: grid !important;
  align-items: end !important;
  width: 100vw !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;
  padding: clamp(6.2rem, 10vw, 8.4rem) clamp(1.2rem, 4vw, 4rem) clamp(1.2rem, 3vw, 3rem) !important;
  color: #ffffff !important;
  background: #000000 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  transform: translateY(1.2rem) !important;
  transition:
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0ms linear 520ms !important;
}

body > .site-menu-overlay.is-open,
body .site-menu-overlay.is-open {
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  transition:
    opacity 320ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0ms linear 0ms !important;
}

/* Header menu concept: logo left, contact + round menu action right. */
body.site-menu-open {
  overflow: hidden;
}

body .site-header,
body .site-header.is-scrolled,
body .site-header.is-past-hero,
body .site-header:hover,
body .site-header:focus-within {
  grid-template-columns: minmax(7.2rem, 9.4rem) minmax(0, 1fr) auto auto !important;
  gap: clamp(0.62rem, 1vw, 0.92rem) !important;
}

body .site-nav {
  display: none !important;
}

body .site-menu-toggle {
  position: relative;
  z-index: 100;
  display: inline-grid;
  width: clamp(2.85rem, 3.45vw, 3.35rem);
  height: clamp(2.85rem, 3.45vw, 3.35rem);
  margin: 0;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  color: #ffffff;
  background: #050505;
  cursor: pointer;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

body .site-menu-toggle:hover,
body .site-menu-toggle:focus-visible {
  border-color: #ffffff;
  transform: scale(1.035);
}

body .site-menu-toggle span {
  position: absolute;
  left: 50%;
  width: 1.18rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition:
    top 220ms ease,
    transform 220ms ease;
}

body .site-menu-toggle span:first-child {
  top: calc(50% - 0.26rem);
}

body .site-menu-toggle span:last-child {
  top: calc(50% + 0.26rem);
}

body .site-menu-toggle.is-open span:first-child {
  top: 50%;
  transform: translateX(-50%) rotate(45deg);
}

body .site-menu-toggle.is-open span:last-child {
  top: 50%;
  transform: translateX(-50%) rotate(-45deg);
}

body .site-header[data-nav-tone="dark"] .site-menu-toggle {
  border-color: #050505;
  color: #ffffff;
  background: #050505;
}

body .site-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 72;
  display: grid;
  align-items: end;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(6.2rem, 10vw, 8.4rem) clamp(1.2rem, 4vw, 4rem) clamp(1.2rem, 3vw, 3rem);
  color: #ffffff;
  background: #000000;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(1.2rem);
  transition:
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0ms linear 520ms;
}

body .site-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 320ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0ms linear 0ms;
}

body .site-menu-overlay__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.5vw, 1.25rem);
  width: min(86rem, 100%);
  margin: 0 auto;
}

body .site-menu-card {
  display: grid;
  align-content: space-between;
  min-height: clamp(13rem, 22vw, 18rem);
  padding: clamp(1rem, 1.8vw, 1.45rem);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #050505;
}

body .site-menu-card span {
  color: transparent;
  background-image: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 0.82rem;
  font-weight: 900;
}

body .site-menu-card h2 {
  margin: auto 0 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3vw, 3.2rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

body .site-menu-card p {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.92rem, 1vw, 1rem);
  font-weight: 600;
  line-height: 1.28;
}

@media (max-width: 780px) {
  body .site-header,
  body .site-header.is-scrolled,
  body .site-header.is-past-hero,
  body .site-header:hover,
  body .site-header:focus-within {
    grid-template-columns: minmax(4.2rem, 1fr) auto auto !important;
  }

  body .site-menu-overlay__inner {
    grid-template-columns: 1fr;
  }

  body .site-menu-card {
    min-height: 8.8rem;
  }
}

/* Fullscreen menu design override after legacy menu-card block. */
body > .site-menu-overlay,
body .site-menu-overlay {
  align-items: center !important;
  padding: clamp(5.6rem, 8vw, 7.2rem) clamp(3rem, 6vw, 6rem) clamp(2rem, 4vw, 4rem) !important;
}

body .site-menu-overlay__inner {
  display: grid !important;
  grid-template-columns: minmax(0, 2.65fr) minmax(15rem, 0.78fr) !important;
  gap: clamp(3rem, 7vw, 7rem) !important;
  width: min(92rem, 100%) !important;
  margin: 0 auto !important;
  align-items: stretch !important;
}

body .site-menu-cards {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(0.9rem, 1.45vw, 1.35rem) !important;
}

body .site-menu-card,
body .site-menu-card:visited {
  position: relative !important;
  display: grid !important;
  align-content: start !important;
  min-height: clamp(13rem, 19.5vw, 19rem) !important;
  padding: clamp(1.45rem, 2vw, 2rem) !important;
  border: 0 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  color: #ffffff !important;
  background: #050505 !important;
  text-decoration: none !important;
}

body .site-menu-card span {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

body .site-menu-card img {
  display: none !important;
}

/* Final menu card image layer: keep service cards as the provided PNG buttons. */
body .site-menu-card,
body .site-menu-card:visited {
  position: relative !important;
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  padding: 0 !important;
  background-color: #050505 !important;
  overflow: hidden !important;
}

body .site-menu-card img {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
}

body .site-menu-card {
  background-color: #050505 !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

body .site-menu-card:nth-child(1) {
  background-image: url("./assets/1.png") !important;
}

body .site-menu-card:nth-child(2) {
  background-image: url("./assets/2.png") !important;
}

body .site-menu-card:nth-child(3) {
  background-image: url("./assets/3.png") !important;
}

body .site-menu-card:nth-child(4) {
  background-image: url("./assets/4.png") !important;
}

body .site-menu-card:nth-child(5) {
  background-image: url("./assets/5.png") !important;
}

body .site-menu-card:nth-child(4),
body .site-menu-card:nth-child(5) {
  min-height: 0 !important;
}

body .site-menu-card:nth-child(4) img,
body .site-menu-card:nth-child(5) img {
  width: 100% !important;
  max-height: none !important;
}

body .site-menu-links {
  display: grid !important;
  align-content: space-between !important;
  min-height: 100% !important;
  padding: clamp(0.25rem, 1vw, 0.85rem) 0 !important;
}

body .site-menu-links__nav {
  display: grid !important;
  gap: clamp(1.22rem, 2vw, 1.86rem) !important;
  align-content: start !important;
}

body .site-menu-links__nav a,
body .site-menu-links__nav a:visited {
  color: #ffffff !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1.08rem, 1.44vw, 1.52rem) !important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  text-decoration: none !important;
}

body .site-menu-social {
  display: grid !important;
  gap: 0.9rem !important;
}

body .site-menu-social p {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(1rem, 1.28vw, 1.32rem) !important;
  font-weight: 400 !important;
}

body .site-menu-social div {
  display: flex !important;
  gap: 0.74rem !important;
  align-items: center !important;
}

body .site-menu-social a,
body .site-menu-social a:visited {
  display: inline-grid !important;
  width: clamp(2.35rem, 3vw, 3rem) !important;
  height: clamp(2.35rem, 3vw, 3rem) !important;
  place-items: center !important;
  border: 3px solid #ffffff !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  font-size: clamp(1.42rem, 1.9vw, 1.95rem) !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

@media (max-width: 980px) {
  body > .site-menu-overlay,
  body .site-menu-overlay {
    overflow-y: auto !important;
    align-items: start !important;
    padding: 5.7rem 1rem 1.2rem !important;
  }

  body .site-menu-overlay__inner {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  body .site-menu-cards {
    grid-template-columns: 1fr !important;
  }

  body .site-menu-card {
    min-height: 11rem !important;
  }

  body .site-menu-links {
    gap: 2.5rem !important;
  }
}

body.service-page.sites-service-page #sites-problem .sites-card-showcase__button {
  --boost-action-bg: #ffffff;
  --boost-action-fg: #050505;
  --boost-action-circle-bg: #050505;
  --boost-action-circle-fg: #ffffff;
  color: #050505 !important;
  background: #ffffff !important;
  background-image: none !important;
  border-color: #050505 !important;
  box-shadow: none !important;
  -webkit-text-fill-color: #050505 !important;
}

body.service-page.sites-service-page #sites-problem .sites-card-showcase__button:hover,
body.service-page.sites-service-page #sites-problem .sites-card-showcase__button:focus-visible {
  color: #050505 !important;
  background: #ffffff !important;
  background-image: none !important;
  border-color: #050505 !important;
  box-shadow: none !important;
  -webkit-text-fill-color: #050505 !important;
}

body.service-page.sites-service-page #sites-problem .sites-card-showcase__button::after {
  color: #ffffff !important;
  background: #050505 !important;
  content: "\2197" !important;
  opacity: 0;
}

body.service-page.sites-service-page #sites-problem .sites-card-showcase__button:hover::after,
body.service-page.sites-service-page #sites-problem .sites-card-showcase__button:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

body.service-page.automation-service-page #automation-problem .sites-card-showcase__button {
  --boost-action-bg: #ffffff;
  --boost-action-fg: #050505;
  --boost-action-circle-bg: #050505;
  --boost-action-circle-fg: #ffffff;
  color: #050505 !important;
  background: #ffffff !important;
  background-image: none !important;
  border-color: #050505 !important;
  box-shadow: none !important;
  -webkit-text-fill-color: #050505 !important;
}

body.service-page.content-service-page #content-problem .sites-card-showcase__button {
  --boost-action-bg: #ffffff;
  --boost-action-fg: #050505;
  --boost-action-circle-bg: #050505;
  --boost-action-circle-fg: #ffffff;
  color: #050505 !important;
  background: #ffffff !important;
  background-image: none !important;
  border-color: #050505 !important;
  box-shadow: none !important;
  -webkit-text-fill-color: #050505 !important;
}

body.service-page.automation-service-page #automation-problem .sites-card-showcase__button:hover,
body.service-page.automation-service-page #automation-problem .sites-card-showcase__button:focus-visible {
  color: #050505 !important;
  background: #ffffff !important;
  background-image: none !important;
  border-color: #050505 !important;
  box-shadow: none !important;
  -webkit-text-fill-color: #050505 !important;
}

body.service-page.content-service-page #content-problem .sites-card-showcase__button:hover,
body.service-page.content-service-page #content-problem .sites-card-showcase__button:focus-visible {
  color: #050505 !important;
  background: #ffffff !important;
  background-image: none !important;
  border-color: #050505 !important;
  box-shadow: none !important;
  -webkit-text-fill-color: #050505 !important;
}

body.service-page.automation-service-page #automation-problem .sites-card-showcase__button::after {
  color: #ffffff !important;
  background: #050505 !important;
  content: "\2197" !important;
  opacity: 0;
}

body.service-page.content-service-page #content-problem .sites-card-showcase__button::after {
  color: #ffffff !important;
  background: #050505 !important;
  content: "\2197" !important;
  opacity: 0;
}

body.service-page.automation-service-page #automation-problem .sites-card-showcase__button:hover::after,
body.service-page.automation-service-page #automation-problem .sites-card-showcase__button:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

body.service-page.content-service-page #content-problem .sites-card-showcase__button:hover::after,
body.service-page.content-service-page #content-problem .sites-card-showcase__button:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

body .services--hire::before {
  display: none !important;
}

body.home-page .services--hire {
  display: grid !important;
  min-height: 100vh;
  padding: clamp(5.7rem, 12.8vh, 6.4rem) clamp(1rem, 3vw, 3rem) clamp(4.1rem, 8.4vh, 5.2rem) !important;
  align-content: start;
}

body.home-page .services--hire .section-shell {
  width: min(1590px, 100%);
  margin: 0 auto;
  gap: 0 !important;
}

body.home-page .home-service-choice__heading {
  margin-bottom: clamp(2.4rem, 5.8vh, 3rem);
}

body.home-page .home-service-choice__heading h2,
body.home-page .home-service-choice__heading p {
  margin: 0;
}

body.home-page .home-service-choice__heading h2 {
  color: #ffffff;
  font-size: clamp(1.85rem, 2.04vw, 2.08rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

body.home-page .home-service-choice__heading p {
  max-width: 44rem;
  margin-top: clamp(0.85rem, 1.1vw, 1.05rem);
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.28rem, 1.48vw, 1.55rem);
  font-weight: 500;
  line-height: 1.12;
}

body.home-page .home-service-choice__mobile-break {
  display: none;
}

body.home-page .home-service-choice__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.45rem, 2vw, 2rem);
  align-items: start;
}

body.home-page .home-service-card {
  display: block;
  min-width: 0;
  color: #ffffff;
  text-decoration: none;
}

body.home-page .home-service-card__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 1204 / 952;
  overflow: hidden;
  border-radius: clamp(1.25rem, 1.45vw, 1.48rem);
  background: #ffffff;
  transform: translateZ(0);
}

body.home-page .home-service-card__visual > img,
body.home-page .home-service-card__visual > video,
body.home-page .home-service-card__bg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.home-page .home-service-card__media--mobile {
  display: none !important;
}

body.home-page .home-service-card p {
  max-width: 21rem;
  margin: clamp(1.15rem, 1.42vw, 1.45rem) 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(1.06rem, 1.14vw, 1.18rem);
  font-weight: 500;
  line-height: 1.18;
}

body.home-page .home-service-card__shopify-stack {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

body.home-page .home-service-card__shopify-stack img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 86.4%;
  height: auto;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 0.42rem 0.95rem rgba(0, 0, 0, 0.14));
  transform: translate(-50%, -122%) scale(0.985);
  animation: home-shopify-notification-loop 9600ms cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

body.home-page .home-service-card__shopify-stack img:nth-child(1) {
  animation-delay: -1200ms;
}

body.home-page .home-service-card__shopify-stack img:nth-child(2) {
  animation-delay: -3600ms;
}

body.home-page .home-service-card__shopify-stack img:nth-child(3) {
  animation-delay: -6000ms;
}

body.home-page .home-service-card__shopify-stack img:nth-child(4) {
  animation-delay: -8400ms;
}

@keyframes home-shopify-notification-loop {
  0% {
    opacity: 0;
    transform: translate(-50%, -154%) scale(0.975);
  }

  6% {
    opacity: 1;
    transform: translate(-50%, -110%) scale(1);
  }

  24% {
    opacity: 1;
    transform: translate(-50%, -110%) scale(1);
  }

  31% {
    opacity: 1;
    transform: translate(-50%, 8%) scale(1);
  }

  49% {
    opacity: 1;
    transform: translate(-50%, 8%) scale(1);
  }

  57% {
    opacity: 0;
    transform: translate(-50%, 88%) scale(0.975);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 88%) scale(0.975);
  }
}

@media (max-width: 1180px) {
  body.home-page .services--hire .section-shell {
    width: min(66rem, calc(100% - 3rem));
  }

  body.home-page .home-service-choice__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body.home-page .statement-cycle#process {
    display: none !important;
  }

  body.home-page .services--hire {
    min-height: auto;
    padding: 3.85rem 1rem 3.2rem !important;
  }

  body.home-page .services--hire .section-shell {
    width: 100%;
  }

  body.home-page .home-service-choice__heading {
    margin-bottom: 1.85rem;
  }

  body.home-page .home-service-choice__heading h2 {
    font-size: clamp(1.55rem, 7vw, 1.85rem);
    line-height: 1.08;
  }

  body.home-page .home-service-choice__heading p {
    max-width: 100%;
    margin-top: 0.62rem;
    font-size: clamp(0.82rem, 3.42vw, 0.98rem);
    line-height: 1.2;
  }

  body.home-page .home-service-choice__heading p br {
    display: none;
  }

  body.home-page .home-service-choice__heading p br.home-service-choice__mobile-break {
    display: block;
  }

  body.home-page .home-service-choice__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: clamp(1rem, 4vw, 1.6rem);
    row-gap: clamp(2.15rem, 7.2vw, 3.1rem);
  }

  body.home-page .home-service-card__visual {
    aspect-ratio: 4254 / 4482;
    border-radius: clamp(1rem, 5vw, 1.45rem);
  }

  body.home-page .home-service-card--shopify .home-service-card__visual {
    background: #347f0f;
  }

  body.home-page .home-service-card__media--desktop {
    display: none !important;
  }

  body.home-page .home-service-card__media--mobile {
    display: block !important;
  }

  body.home-page .home-service-card:nth-child(3) .home-service-card__visual {
    background: #6f9966;
  }

  body.home-page .home-service-card:nth-child(3) video.home-service-card__media--mobile {
    inset: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    transform: scale(1.018);
    transform-origin: center;
  }

  body.home-page .home-service-card:nth-child(3) video.home-service-card__media--mobile::-webkit-media-controls,
  body.home-page .home-service-card:nth-child(3) video.home-service-card__media--mobile::-webkit-media-controls-panel,
  body.home-page .home-service-card:nth-child(3) video.home-service-card__media--mobile::-webkit-media-controls-start-playback-button {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    -webkit-appearance: none !important;
  }

  body.home-page .home-service-card:nth-child(3) {
    order: 4;
  }

  body.home-page .home-service-card:nth-child(4) {
    order: 3;
  }

  body.home-page .home-service-card__shopify-stack {
    display: block !important;
  }

  body.home-page .home-service-card__shopify-stack img {
    top: 50%;
    left: 50%;
    display: block !important;
    width: min(74%, 16.4rem);
    opacity: 0;
    filter: drop-shadow(0 0.34rem 0.58rem rgba(0, 0, 0, 0.16));
    transform: translate(-50%, -150%) scale(0.96);
    animation: home-services-shopify-mobile-loop 8800ms cubic-bezier(0.22, 1, 0.36, 1) infinite !important;
  }

  body.home-page .home-service-card__shopify-stack img:nth-child(1) {
    animation-delay: -2200ms !important;
  }

  body.home-page .home-service-card__shopify-stack img:nth-child(2) {
    animation-delay: -4400ms !important;
  }

  body.home-page .home-service-card__shopify-stack img:nth-child(3) {
    animation-delay: -6600ms !important;
  }

  body.home-page .home-service-card__shopify-stack img:nth-child(4) {
    animation-delay: 0ms !important;
  }

  body.home-page .home-service-card p {
    max-width: none;
    margin-top: 0.58rem;
    font-size: clamp(0.68rem, 2.76vw, 0.82rem);
    line-height: 1.12;
    letter-spacing: 0;
  }
}

@keyframes home-services-shopify-mobile-loop {
  0% {
    opacity: 0;
    transform: translate(-50%, -190%) scale(0.95);
  }

  8% {
    opacity: 0;
    transform: translate(-50%, -165%) scale(0.96);
  }

  25% {
    opacity: 1;
    transform: translate(-50%, -168%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  75% {
    opacity: 1;
    transform: translate(-50%, 68%) scale(1);
  }

  88% {
    opacity: 0;
    transform: translate(-50%, 122%) scale(0.96);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 148%) scale(0.95);
  }
}

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes title-glow {
  to {
    text-shadow:
      0 0 1.75rem rgba(255, 255, 255, 0.16),
      0 0 6rem rgba(42, 194, 60, 0.14);
  }
}

@keyframes hero-gradient-flow {
  0% {
    background-position: 0% 42%, 8% 0%, 95% 10%, 0% 0%, 0 0;
    filter: saturate(1.22) brightness(1);
  }

  45% {
    background-position: 48% 38%, 18% 12%, 84% 0%, 45% 0%, 0 0;
    filter: saturate(1.42) brightness(1.1);
  }

  100% {
    background-position: 100% 54%, 26% 4%, 76% 18%, 100% 0%, 0 0;
    filter: saturate(1.28) brightness(1.02);
  }
}

@keyframes liquid-one {
  0% {
    transform: translate3d(0, 0, 0) scale(1.04) rotate(0deg);
  }

  42% {
    transform: translate3d(48vw, 18vh, 0) scale(1.16) rotate(18deg);
  }

  68% {
    transform: translate3d(72vw, -8vh, 0) scale(0.94) rotate(36deg);
  }

  100% {
    transform: translate3d(28vw, 34vh, 0) scale(1.1) rotate(58deg);
  }
}

@keyframes liquid-two {
  0% {
    transform: translate3d(0, 0, 0) scale(0.98) rotate(12deg);
  }

  38% {
    transform: translate3d(-34vw, 16vh, 0) scale(1.08) rotate(-10deg);
  }

  66% {
    transform: translate3d(30vw, 28vh, 0) scale(1.14) rotate(-28deg);
  }

  100% {
    transform: translate3d(-22vw, -18vh, 0) scale(1.02) rotate(-44deg);
  }
}

@keyframes liquid-three {
  0% {
    transform: translate3d(0, 0, 0) scale(1.08) rotate(-8deg);
  }

  36% {
    transform: translate3d(-54vw, -18vh, 0) scale(0.96) rotate(16deg);
  }

  72% {
    transform: translate3d(-78vw, 20vh, 0) scale(1.14) rotate(34deg);
  }

  100% {
    transform: translate3d(-30vw, -30vh, 0) scale(1) rotate(52deg);
  }
}

@keyframes liquid-morph {
  0% {
    border-radius: 52% 48% 44% 56% / 45% 54% 46% 55%;
  }

  33% {
    border-radius: 38% 62% 58% 42% / 57% 42% 58% 43%;
  }

  66% {
    border-radius: 61% 39% 46% 54% / 40% 62% 38% 60%;
  }

  100% {
    border-radius: 46% 54% 63% 37% / 62% 36% 64% 38%;
  }
}

@media (max-width: 1040px) {
  .about__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about__headline {
    min-height: 26rem;
  }

  .about__panel {
    border-top: 1px solid rgba(42, 194, 60, 0.18);
    border-left: 0;
  }

  .about__copy {
    max-width: 42rem;
  }

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

@media (max-width: 760px) {
  .site-header {
    top: 0.75rem;
    grid-template-columns: 1fr auto;
    gap: 0.45rem;
    width: calc(100% - 1rem);
    padding: 0.55rem;
  }

  .site-header__logo {
    width: 5.8rem;
    height: 2.15rem;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    order: 3;
    overflow-x: auto;
    padding-top: 0.2rem;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .site-nav__link,
  .site-nav__button {
    min-height: 2.15rem;
    padding: 0 0.65rem;
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .services-menu {
    left: 0;
    transform: translate(0, -0.35rem) scale(0.98);
  }

  .site-nav__item--dropdown:hover .services-menu,
  .site-nav__item--dropdown:focus-within .services-menu {
    transform: translate(0, 0) scale(1);
  }

  .contact-popover__button {
    min-height: 2.35rem;
    padding: 0 0.9rem;
    font-size: 0.92rem;
  }

  .contact-popover__panel {
    width: min(18rem, calc(100vw - 1rem));
  }

  .hero {
    min-height: 100svh;
    padding: 1rem;
  }

  .hero__content {
    transform: translateY(-1vh);
  }

  .hero__title {
    font-size: clamp(3rem, 14vw, 5.3rem);
    line-height: 0.94;
  }

  .hero__subtitle {
    width: min(21rem, 92vw);
  }

  .page-section {
    padding: 4.2rem 1rem;
  }

  .section-title,
  .cta__title {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .section-heading--split,
  .about__grid,
  .service-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .about {
    padding-top: 4.6rem;
  }

  .about__block {
    padding: 0.75rem;
  }

  .about__headline {
    min-height: 24rem;
    padding: 1.25rem;
  }

  .about__headline .section-title,
  .services__heading .section-title {
    font-size: clamp(2.7rem, 14vw, 4.9rem);
  }

  .about__signal {
    top: 1.25rem;
    left: 1.25rem;
    width: 4.75rem;
  }

  .about__panel {
    padding: 1.25rem;
  }

  .about__copy {
    font-size: 1.12rem;
  }

  .services__heading {
    margin-bottom: 1.75rem;
  }

  .feature-card,
  .case-card {
    min-height: 14rem;
  }

  .feature-card {
    min-height: 16rem;
  }

  .case-card {
    min-height: 18rem;
  }

  .case-card__meta {
    flex-direction: column;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding: 1.35rem 0;
  }

  .card-index,
  .process-step span {
    margin-bottom: 1.75rem;
  }

  .process-step span {
    margin-bottom: 0.25rem;
  }

  .cta__inner {
    min-height: 22rem;
    justify-items: start;
    text-align: left;
  }

  .cta__panel {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 1.25rem;
    border-radius: 18px;
  }

  .cta__title {
    width: 100%;
    font-size: clamp(2.35rem, 11vw, 4rem);
  }

  .cta__chat-icon {
    margin-top: 1rem;
  }

  .cta__form {
    gap: 0.85rem;
  }

  .footer {
    min-height: 34rem;
    padding: 4.5rem 1.25rem 0;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 2.75rem;
  }

  .footer h2 {
    margin-bottom: 1rem;
    font-size: 1.55rem;
  }

  .footer a {
    font-size: 1.05rem;
    line-height: 1.5;
  }

  .footer__contact a:nth-of-type(3) {
    margin-top: 1.1rem;
  }

  .footer__brand {
    height: 5.5rem;
    font-size: clamp(5.6rem, 32vw, 8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

/* Hostinger override: keeps About and Services styled if builder CSS wins cascade. */
body .about.page-section,
body .services.page-section {
  display: block;
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1rem, 3vw, 3rem) !important;
}

body .about.page-section {
  background: #050505;
}

body .services.page-section {
  background: #000000;
}

body .about .section-shell,
body .services .section-shell {
  width: min(78rem, calc(100% - 2rem));
  margin-right: auto;
  margin-left: auto;
}

body .about__block {
  position: relative;
  padding: clamp(0.85rem, 2vw, 1.45rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(42, 194, 60, 0.08), transparent 28rem),
    rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

body .about__grid {
  display: grid !important;
  grid-template-columns: minmax(0, 1.12fr) minmax(20rem, 0.88fr);
  min-height: clamp(28rem, 48vw, 40rem);
  gap: 1px;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.09);
}

body .about__headline,
body .about__panel {
  display: grid;
  align-content: end;
  background: rgba(3, 3, 3, 0.78);
}

body .about__headline {
  position: relative;
  padding: clamp(1.5rem, 4vw, 4.5rem);
}

body .about__headline .section-title,
body .services__heading .section-title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
}

body .about__headline .section-title {
  max-width: 12ch;
  font-size: clamp(3.2rem, 8.2vw, 8.8rem);
}

body .about__signal {
  position: absolute;
  top: clamp(1.4rem, 3vw, 2.5rem);
  left: clamp(1.4rem, 3vw, 2.5rem);
  width: clamp(4.5rem, 9vw, 8rem);
  aspect-ratio: 1;
  border: 1px solid rgba(42, 194, 60, 0.44);
  border-radius: 50%;
}

body .about__signal::before,
body .about__signal::after {
  position: absolute;
  content: "";
  background: var(--accent-gradient);
}

body .about__signal::before {
  top: 50%;
  left: 18%;
  width: 64%;
  height: 1px;
}

body .about__signal::after {
  top: 18%;
  left: 50%;
  width: 1px;
  height: 64%;
}

body .about__panel {
  padding: clamp(1.5rem, 3.5vw, 3.5rem);
  border-left: 1px solid rgba(42, 194, 60, 0.18);
}

body .about__copy {
  max-width: 31rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.18rem, 1.65vw, 1.65rem);
  font-weight: 500;
  line-height: 1.34;
}

body .section-kicker {
  margin: 0 0 0.8rem;
  color: transparent;
  background-image: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(0.82rem, 1vw, 0.98rem);
  font-weight: 700;
  text-transform: uppercase;
}

body .services__heading {
  width: min(58rem, 100%);
  margin-bottom: clamp(2rem, 5vw, 4.5rem);
}

body .services__heading .section-title {
  font-size: clamp(3rem, 7.4vw, 7.4rem);
}

body .service-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.4vw, 1.25rem);
  background: transparent;
  border: 0;
}

body .feature-card {
  position: relative;
  display: flex !important;
  min-height: clamp(21rem, 31vw, 27rem);
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.15rem, 2vw, 1.7rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.016)),
    rgba(5, 5, 5, 0.84);
  overflow: hidden;
  transition:
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 320ms ease,
    transform 320ms ease;
}

body .feature-card:hover {
  border-color: rgba(42, 194, 60, 0.42);
  background:
    linear-gradient(180deg, rgba(42, 194, 60, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(9, 9, 9, 0.96);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.28);
  transform: translateY(-0.45rem);
}

body .feature-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

body .feature-card .card-index {
  margin: 0;
  color: transparent;
  background-image: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
}

body .feature-card__marker {
  width: 0.62rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent-gradient);
  box-shadow: 0 0 1.2rem rgba(42, 194, 60, 0.34);
}

body .feature-card h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3.25rem);
  font-weight: 800;
  line-height: 0.98;
}

body .feature-card p {
  max-width: 17rem;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  font-weight: 500;
  line-height: 1.38;
}

@media (max-width: 1040px) {
  body .about__grid,
  body .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body .about__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body .about__panel {
    border-top: 1px solid rgba(42, 194, 60, 0.18);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  body .about.page-section,
  body .services.page-section {
    padding: 4.2rem 1rem !important;
  }

  body .about .section-shell,
  body .services .section-shell {
    width: 100%;
  }

  body .about__grid,
  body .service-grid {
    grid-template-columns: 1fr;
  }

  body .about__headline {
    min-height: 24rem;
    padding: 1.25rem;
  }

  body .about__headline .section-title,
  body .services__heading .section-title {
    font-size: clamp(2.7rem, 14vw, 4.9rem);
  }

  body .about__panel {
    padding: 1.25rem;
  }

  body .feature-card {
    min-height: 16rem;
  }
}

/* Header final overrides. Kept at the end so Hostinger/cache cannot show the raw menu. */
.site-header {
  top: 0;
  left: 0;
  width: 100%;
  min-height: 4.75rem;
  padding: 0.7rem clamp(1rem, 3vw, 2.4rem);
  border: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, 0.72);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(1.15rem);
  transform: none;
}

.site-header.is-scrolled,
.site-header:hover,
.site-header:focus-within {
  border-color: transparent;
  background: rgba(0, 0, 0, 0.78);
  box-shadow: 0 1.4rem 3.6rem rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(1.25rem);
}

.site-header__logo {
  width: clamp(8rem, 14vw, 12.5rem);
  height: 3.35rem;
  overflow: visible;
}

.services-menu {
  display: grid;
  width: min(30rem, 88vw);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem;
  border: 0;
  background: rgba(3, 3, 3, 0.68);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(1.35rem);
}

.services-menu a {
  min-height: 2.7rem;
  display: grid;
  align-items: center;
}

.contact-popover {
  width: 8.6rem;
  height: 3.1rem;
  justify-self: end;
}

.contact-popover__panel {
  top: 0;
  right: 0;
  display: grid;
  width: 8.6rem;
  height: 3.1rem;
  align-content: start;
  gap: 1.35rem;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transform-origin: top right;
  transition:
    width 360ms cubic-bezier(0.2, 0.78, 0.2, 1),
    height 360ms cubic-bezier(0.2, 0.78, 0.2, 1),
    padding 360ms cubic-bezier(0.2, 0.78, 0.2, 1),
    border-radius 360ms ease,
    box-shadow 360ms ease;
}

.contact-popover:hover .contact-popover__panel,
.contact-popover:focus-within .contact-popover__panel {
  width: min(22.5rem, 86vw);
  height: 31rem;
  padding: 1.8rem 2rem 2rem;
  border-radius: 22px;
  box-shadow: 0 1.8rem 4rem rgba(42, 194, 60, 0.18);
}

.contact-popover__button {
  min-height: 3.1rem;
  justify-self: stretch;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  color: #050505;
  font-size: 1rem;
  transition:
    font-size 300ms ease,
    justify-self 300ms ease,
    transform 300ms ease;
}

.contact-popover:hover .contact-popover__button,
.contact-popover:focus-within .contact-popover__button {
  min-height: auto;
  justify-self: end;
  font-size: clamp(2rem, 3vw, 2.7rem);
  transform: none;
}

.contact-popover__panel label,
.contact-popover__submit {
  opacity: 0;
  transform: translateY(-0.45rem);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.contact-popover:hover .contact-popover__panel label,
.contact-popover:hover .contact-popover__submit,
.contact-popover:focus-within .contact-popover__panel label,
.contact-popover:focus-within .contact-popover__submit {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 120ms;
}

.contact-popover__panel label {
  gap: 0.7rem;
  color: #050505;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 800;
}

.contact-popover__panel input {
  min-height: 4rem;
  border: 0;
  border-radius: 12px;
  background: rgba(172, 235, 0, 0.55);
  font-size: 1.15rem;
}

.contact-popover__submit {
  min-height: 4.15rem;
  margin-top: 0.35rem;
  border: 2px solid #050505;
  border-radius: 999px;
  color: #050505;
  background: transparent;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

@media (max-width: 760px) {
  .site-header {
    top: 0;
    width: 100%;
    padding: 0.65rem 0.75rem;
  }

  .site-header__logo {
    width: 7.4rem;
    height: 2.7rem;
  }

  .services-menu {
    width: min(24rem, calc(100vw - 1.5rem));
    grid-template-columns: 1fr;
  }

  .contact-popover:hover .contact-popover__panel,
  .contact-popover:focus-within .contact-popover__panel {
    width: min(21rem, calc(100vw - 1rem));
    height: 29rem;
    padding: 1.35rem;
  }
}

/* Header refinements: compact glass bar, stable contact drawer, stronger services glass. */
.site-header {
  top: 0;
  left: 50%;
  width: min(76rem, calc(100% - clamp(2.5rem, 8vw, 10rem)));
  min-height: 4.65rem;
  padding: 0.62rem clamp(0.9rem, 2vw, 1.7rem);
  border: 0;
  border-radius: 0 0 10px 10px;
  background: rgba(0, 0, 0, 0.78);
  box-shadow: 0 1.1rem 3rem rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(1.35rem);
  transform: translateX(-50%);
  transition:
    width 320ms ease,
    min-height 320ms ease,
    padding 320ms ease,
    background 320ms ease,
    box-shadow 320ms ease,
    backdrop-filter 320ms ease;
}

.site-header.is-scrolled,
.site-header:hover,
.site-header:focus-within {
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 1.25rem 3.4rem rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(1.45rem);
}

.site-header.is-past-hero {
  width: min(72rem, calc(100% - clamp(3rem, 10vw, 12rem)));
  min-height: 4.35rem;
  padding-top: 0.52rem;
  padding-bottom: 0.52rem;
}

.site-header__logo {
  width: clamp(7.6rem, 12vw, 10.8rem);
  height: 3.05rem;
  overflow: visible;
}

.site-header.is-past-hero .site-header__logo {
  width: clamp(7.2rem, 11vw, 10.2rem);
  height: 2.88rem;
}

.site-header__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transform: none;
}

.hero {
  padding-top: clamp(7.25rem, 11vw, 9rem);
}

.hero__content {
  transform: translateY(clamp(-2.1rem, -3.2vh, -1.1rem));
}

.services-menu {
  width: min(31rem, 88vw);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 0;
  background: rgba(4, 4, 4, 0.62);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(1.6rem) saturate(135%);
  -webkit-backdrop-filter: blur(1.6rem) saturate(135%);
}

.contact-popover {
  width: 8.7rem;
  height: 3.15rem;
}

.contact-popover__panel {
  width: 8.7rem;
  height: auto;
  max-height: 3.15rem;
  gap: 1rem;
  padding: 0;
  border-radius: 8px;
  background: var(--accent-gradient);
  overflow: hidden;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  will-change: width, max-height, padding, border-radius;
  transition:
    width 300ms cubic-bezier(0.2, 0.78, 0.2, 1),
    max-height 360ms cubic-bezier(0.2, 0.78, 0.2, 1),
    padding 300ms cubic-bezier(0.2, 0.78, 0.2, 1),
    border-radius 300ms ease,
    box-shadow 300ms ease;
}

.contact-popover:hover .contact-popover__panel,
.contact-popover:focus-within .contact-popover__panel {
  width: min(21rem, 84vw);
  max-height: min(36rem, calc(100vh - 1rem));
  padding: 1.2rem 1.45rem 1.45rem;
  border-radius: 22px;
}

.contact-popover__button {
  min-height: 3.15rem;
  padding: 0 1.3rem;
  border: 0;
  border-radius: 8px;
  color: #050505;
  background: var(--accent-gradient);
  box-shadow: none;
  justify-self: stretch;
}

.contact-popover:hover .contact-popover__button,
.contact-popover:focus-within .contact-popover__button {
  justify-self: end;
  min-height: 2.75rem;
  padding: 0;
  background: transparent;
  font-size: clamp(2rem, 2.7vw, 2.55rem);
}

.contact-popover__panel label,
.contact-popover__submit {
  opacity: 0;
  transform: translateY(-0.35rem);
}

.contact-popover:hover .contact-popover__panel label,
.contact-popover:hover .contact-popover__submit,
.contact-popover:focus-within .contact-popover__panel label,
.contact-popover:focus-within .contact-popover__submit {
  opacity: 1;
  transform: translateY(0);
}

.contact-popover__panel label {
  gap: 0.55rem;
  font-size: clamp(1.25rem, 1.65vw, 1.65rem);
}

.contact-popover__panel input {
  min-height: 3.25rem;
  border-radius: 10px;
}

.contact-popover__submit {
  min-height: 3.45rem;
  margin-top: 0.15rem;
  border: 2px solid #050505;
  border-radius: 999px;
  color: #050505;
  background: transparent;
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 1rem);
    min-height: 4.35rem;
    padding: 0.55rem 0.65rem;
  }

  .site-header.is-past-hero {
    width: calc(100% - 1.5rem);
  }

  .hero {
    padding-top: 7.25rem;
  }

  .contact-popover:hover .contact-popover__panel,
  .contact-popover:focus-within .contact-popover__panel {
    width: min(20rem, calc(100vw - 1rem));
    max-height: min(34rem, calc(100vh - 1rem));
    padding: 1.1rem;
  }
}

/* Header polish: lighter glass, smaller contact drawer, stronger services glass. */
.site-header {
  width: min(72rem, calc(100% - clamp(3rem, 9vw, 11rem)));
  min-height: 4.35rem;
  padding: 0.52rem clamp(0.85rem, 1.8vw, 1.45rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 1rem 2.8rem rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(1.7rem) saturate(145%);
  -webkit-backdrop-filter: blur(1.7rem) saturate(145%);
  transition:
    width 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    min-height 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    padding 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    background 420ms ease,
    box-shadow 420ms ease,
    backdrop-filter 420ms ease;
}

.site-header.is-scrolled,
.site-header:hover,
.site-header:focus-within {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.02)),
    rgba(0, 0, 0, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 1.1rem 3rem rgba(0, 0, 0, 0.26);
}

.site-header.is-past-hero {
  width: min(69.5rem, calc(100% - clamp(3.5rem, 10vw, 12rem)));
  min-height: 4.18rem;
  padding-top: 0.46rem;
  padding-bottom: 0.46rem;
}

.site-header__logo {
  width: clamp(7.25rem, 11vw, 10rem);
  height: 2.78rem;
}

.site-header.is-past-hero .site-header__logo {
  width: clamp(7rem, 10.5vw, 9.7rem);
  height: 2.68rem;
}

.services-menu {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(8, 8, 8, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 1.5rem 4rem rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(2rem) saturate(155%);
  -webkit-backdrop-filter: blur(2rem) saturate(155%);
}

.contact-popover__panel {
  width: 8.35rem;
  max-height: 2.85rem;
  border-radius: 8px;
}

.contact-popover:hover .contact-popover__panel,
.contact-popover:focus-within .contact-popover__panel {
  width: min(18rem, 82vw);
  max-height: min(29.5rem, calc(100vh - 1rem));
  padding: 1rem 1.18rem 1.18rem;
  border-radius: 18px;
}

.contact-popover__button {
  min-height: 2.85rem;
  background: var(--accent-gradient);
  color: #050505;
}

.contact-popover:hover .contact-popover__button,
.contact-popover:focus-within .contact-popover__button {
  min-height: 2.35rem;
  background: transparent;
  color: #050505;
  font-size: clamp(1.6rem, 2.2vw, 2.05rem);
}

.contact-popover__panel label {
  gap: 0.42rem;
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
}

.contact-popover__panel input {
  min-height: 2.72rem;
  border-radius: 9px;
}

.contact-popover__submit {
  min-height: 3rem;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
}

.contact-popover__panel .contact-popover__submit {
  color: #050505;
  background: transparent;
}

@media (max-width: 760px) {
  .site-header {
    width: calc(100% - 1rem);
    min-height: 4.15rem;
  }

  .site-header.is-past-hero {
    width: calc(100% - 1.35rem);
    min-height: 4rem;
  }

  .contact-popover:hover .contact-popover__panel,
  .contact-popover:focus-within .contact-popover__panel {
    width: min(18rem, calc(100vw - 1rem));
    max-height: min(29.5rem, calc(100vh - 1rem));
  }
}

/* Final header behavior: smooth proportional shrink and stable drawers. */
.site-header {
  width: min(
    calc(72rem - (1.6rem * var(--header-progress, 0))),
    calc(100% - clamp(3rem, 9vw, 11rem))
  );
  min-height: calc(4.32rem - (0.16rem * var(--header-progress, 0)));
  padding-top: calc(0.5rem - (0.05rem * var(--header-progress, 0)));
  padding-bottom: calc(0.5rem - (0.05rem * var(--header-progress, 0)));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.022)),
    rgba(0, 0, 0, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 1rem 2.8rem rgba(0, 0, 0, 0.22);
  transform: translateX(-50%) scale(calc(1 - (0.018 * var(--header-progress, 0))));
  transform-origin: top center;
  transition:
    background 360ms ease,
    box-shadow 360ms ease,
    backdrop-filter 360ms ease;
}

.site-header.is-past-hero {
  width: min(
    calc(72rem - (1.6rem * var(--header-progress, 0))),
    calc(100% - clamp(3rem, 9vw, 11rem))
  );
  min-height: calc(4.32rem - (0.16rem * var(--header-progress, 0)));
  padding-top: calc(0.5rem - (0.05rem * var(--header-progress, 0)));
  padding-bottom: calc(0.5rem - (0.05rem * var(--header-progress, 0)));
}

.services-menu {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(2, 2, 2, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035),
    0 1.5rem 4.5rem rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(2.4rem) saturate(165%) contrast(112%);
  -webkit-backdrop-filter: blur(2.4rem) saturate(165%) contrast(112%);
  isolation: isolate;
}

.services-menu a {
  position: relative;
  z-index: 1;
}

.contact-popover {
  width: 8.35rem;
  height: 2.85rem;
}

.contact-popover__panel {
  width: 8.35rem;
  height: 2.85rem;
  max-height: none;
  gap: 0.78rem;
  border-radius: 8px;
  transition:
    width 420ms cubic-bezier(0.16, 1, 0.3, 1),
    height 420ms cubic-bezier(0.16, 1, 0.3, 1),
    padding 420ms cubic-bezier(0.16, 1, 0.3, 1),
    border-radius 360ms ease,
    box-shadow 360ms ease;
}

.contact-popover:hover .contact-popover__panel,
.contact-popover:focus-within .contact-popover__panel {
  width: min(17.25rem, 82vw);
  height: 25.7rem;
  padding: 0.95rem 1.08rem 1.12rem;
  border-radius: 18px;
}

.contact-popover__panel .contact-popover__button {
  background: var(--accent-gradient);
  color: #050505;
}

.contact-popover:hover .contact-popover__panel .contact-popover__button,
.contact-popover:focus-within .contact-popover__panel .contact-popover__button {
  background: transparent;
  color: #050505;
}

.contact-popover__panel label,
.contact-popover__panel .contact-popover__submit {
  transition:
    opacity 260ms ease 110ms,
    transform 260ms ease 110ms;
}

.contact-popover__panel label {
  gap: 0.36rem;
  font-size: clamp(1rem, 1.22vw, 1.22rem);
}

.contact-popover__panel input {
  min-height: 2.45rem;
  border-radius: 8px;
}

.contact-popover__panel .contact-popover__submit {
  min-height: 3.08rem;
  margin-top: 0.55rem;
  border: 2px solid #050505;
  border-radius: 999px;
  color: #050505;
  background: transparent;
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
}

@media (max-width: 760px) {
  .site-header,
  .site-header.is-past-hero {
    width: calc(100% - 1rem);
    transform: translateX(-50%);
  }

  .contact-popover:hover .contact-popover__panel,
  .contact-popover:focus-within .contact-popover__panel {
    width: min(17rem, calc(100vw - 1rem));
    height: 25.5rem;
  }
}

/* Final polish: fixed contact label, smoother drawer, darker glass on scroll. */
.site-header {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, calc(0.07 - (0.015 * var(--header-progress, 0)))),
      rgba(255, 255, 255, 0.018)
    ),
    rgba(0, 0, 0, calc(0.48 + (0.12 * var(--header-progress, 0))));
}

.site-header.is-scrolled,
.site-header:hover,
.site-header:focus-within {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, calc(0.06 - (0.012 * var(--header-progress, 0)))),
      rgba(255, 255, 255, 0.018)
    ),
    rgba(0, 0, 0, calc(0.54 + (0.1 * var(--header-progress, 0))));
}

.services-menu {
  overflow: hidden;
  background: rgba(3, 3, 3, 0.88);
  backdrop-filter: blur(2.8rem) saturate(145%);
  -webkit-backdrop-filter: blur(2.8rem) saturate(145%);
}

.services-menu::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.015)),
    radial-gradient(circle at 18% 0%, rgba(42, 194, 60, 0.08), transparent 42%);
  pointer-events: none;
}

.contact-popover__panel {
  transition:
    width 560ms cubic-bezier(0.19, 1, 0.22, 1),
    height 620ms cubic-bezier(0.19, 1, 0.22, 1),
    padding 560ms cubic-bezier(0.19, 1, 0.22, 1),
    border-radius 520ms ease,
    box-shadow 520ms ease;
}

.contact-popover__button,
.contact-popover:hover .contact-popover__button,
.contact-popover:focus-within .contact-popover__button,
.contact-popover__panel .contact-popover__button,
.contact-popover:hover .contact-popover__panel .contact-popover__button,
.contact-popover:focus-within .contact-popover__panel .contact-popover__button {
  min-height: 2.85rem;
  width: 8.35rem;
  padding: 0 1.3rem;
  justify-self: end;
  border-radius: 8px;
  background: var(--accent-gradient);
  color: #050505;
  font-size: 1rem;
  transform: none;
}

.contact-popover:hover .contact-popover__panel,
.contact-popover:focus-within .contact-popover__panel {
  padding-top: 0;
}

.contact-popover__panel label,
.contact-popover__panel .contact-popover__submit {
  transition:
    opacity 340ms ease 180ms,
    transform 340ms ease 180ms;
}

/* Final tuning: darker on scroll and tighter contact drawer bottom. */
.site-header {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, calc(0.065 - (0.02 * var(--header-progress, 0)))),
      rgba(255, 255, 255, 0.014)
    ),
    rgba(0, 0, 0, calc(0.5 + (0.22 * var(--header-progress, 0))));
}

.site-header.is-scrolled,
.site-header:hover,
.site-header:focus-within {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, calc(0.055 - (0.018 * var(--header-progress, 0)))),
      rgba(255, 255, 255, 0.012)
    ),
    rgba(0, 0, 0, calc(0.58 + (0.18 * var(--header-progress, 0))));
}

.contact-popover:hover .contact-popover__panel,
.contact-popover:focus-within .contact-popover__panel {
  height: 24.15rem;
  padding-bottom: 0.72rem;
}

.contact-popover__panel .contact-popover__submit {
  min-height: 2.82rem;
  margin-top: 0.42rem;
  font-size: clamp(1rem, 1.22vw, 1.22rem);
}

/* Hero title override for the longer Portuguese headline. */
.hero__title {
  width: min(64rem, 92vw);
  margin-inline: auto;
  font-size: clamp(2.85rem, 5.9vw, 6.45rem);
  font-weight: 700;
  line-height: 0.96;
  text-wrap: balance;
}

.hero__subtitle {
  margin-top: clamp(1rem, 1.7vw, 1.45rem);
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.98rem, 1.25vw, 1.18rem);
  font-weight: 400;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .hero__title {
    width: min(24rem, 94vw);
    font-size: clamp(2.3rem, 10.6vw, 3.85rem);
    line-height: 1;
  }
}

/* Hero entrance: starts after the preloader logo docks into the header. */
body.is-loading:not(.logo-reveal) .hero__eyebrow,
body.is-loading:not(.logo-reveal) .hero__title,
body.is-loading:not(.logo-reveal) .hero__subtitle {
  opacity: 0;
  animation: none;
}

body.is-loading:not(.logo-reveal) .hero__eyebrow,
body.is-loading:not(.logo-reveal) .hero__subtitle {
  transform: translateY(1.15rem);
}

body.is-loading:not(.logo-reveal) .hero__title {
  transform: translateY(1.6rem) scale(0.985);
  filter: blur(0.5rem);
}

body.logo-reveal .hero__eyebrow {
  animation: hero-kicker-in 720ms cubic-bezier(0.18, 0.84, 0.22, 1) 40ms both;
}

body.logo-reveal .hero__title {
  animation:
    hero-title-in 1060ms cubic-bezier(0.16, 0.9, 0.18, 1) 110ms both,
    title-glow 6s ease-in-out 1.25s infinite alternate;
}

body.logo-reveal .hero__subtitle {
  animation: hero-copy-in 800ms cubic-bezier(0.18, 0.84, 0.22, 1) 380ms both;
}

@keyframes hero-kicker-in {
  from {
    opacity: 0;
    transform: translateY(0.9rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-title-in {
  from {
    opacity: 0;
    transform: translateY(1.65rem) scale(0.985);
    filter: blur(0.55rem);
  }

  62% {
    opacity: 1;
    filter: blur(0);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(1rem);
    filter: blur(0.28rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* Services block: tailored-solutions card interaction. */
body .services.page-section {
  padding-top: clamp(5rem, 9vw, 8rem) !important;
  padding-bottom: clamp(5rem, 9vw, 8rem) !important;
  background: #000000;
}

body .services .section-shell {
  width: min(92rem, 100%);
}

body .services__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(24rem, 0.62fr);
  gap: clamp(2rem, 5.5vw, 5.5rem);
  width: 100%;
  margin-bottom: clamp(3rem, 7vw, 5.8rem);
  align-items: start;
  justify-items: start;
}

body .services__heading .section-kicker {
  margin-bottom: clamp(0.8rem, 1.5vw, 1.2rem);
}

body .services__heading .section-title {
  max-width: 18ch;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.25vw, 3.65rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

body .services__intro {
  display: grid;
  gap: clamp(1.2rem, 2vw, 1.8rem);
  padding-top: clamp(1.45rem, 2.25vw, 2.05rem);
  justify-items: start;
  text-align: left;
}

body .services__intro p {
  max-width: 34rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--font-body);
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  font-weight: 500;
  line-height: 1.42;
}

body .services__cta {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1.15rem;
  border-radius: 8px;
  color: #050505;
  background: var(--accent-gradient);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 0.8rem 2.4rem rgba(42, 194, 60, 0.13);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

body .services__cta:hover {
  box-shadow: 0 1.1rem 3rem rgba(42, 194, 60, 0.2);
  transform: translateY(-0.12rem);
}

body .service-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.7vw, 1.5rem);
  background: transparent;
  border: 0;
  perspective: 1200px;
}

body .feature-card {
  position: relative;
  display: flex !important;
  min-height: clamp(18rem, 24vw, 22.5rem);
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.35rem, 2.1vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 14px;
  background: #101010;
  overflow: hidden;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.18);
  transform: translateY(0) rotate(0deg) scale(1);
  transform-origin: 50% 55%;
  transition:
    background 420ms cubic-bezier(0.18, 0.84, 0.22, 1),
    border-color 420ms cubic-bezier(0.18, 0.84, 0.22, 1),
    box-shadow 420ms cubic-bezier(0.18, 0.84, 0.22, 1),
    color 320ms ease,
    transform 420ms cubic-bezier(0.18, 0.84, 0.22, 1);
}

body .feature-card:nth-child(2n):hover {
  transform: translateY(-1.6rem) rotate(5deg) scale(1.035);
}

body .feature-card:nth-child(2n + 1):hover {
  transform: translateY(-1.6rem) rotate(5deg) scale(1.035);
}

body .feature-card:hover {
  z-index: 3;
  border-color: rgba(255, 255, 255, 0.75);
  background: #ffffff;
  box-shadow: 0 2rem 4rem rgba(255, 255, 255, 0.1);
}

body .feature-card::before {
  position: absolute;
  inset: auto -20% -28%;
  height: 55%;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 62%);
  opacity: 0;
  filter: blur(1.4rem);
  transition: opacity 380ms ease;
  pointer-events: none;
}

body .feature-card:hover::before {
  opacity: 1;
}

body .feature-card::after {
  display: none;
}

body .feature-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

body .feature-card .card-index {
  display: inline-grid;
  width: 2.05rem;
  aspect-ratio: 1;
  margin: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  transition:
    border-color 320ms ease,
    color 320ms ease;
}

body .feature-card:hover .card-index {
  border-color: rgba(5, 5, 5, 0.52);
  color: rgba(5, 5, 5, 0.72);
}

body .feature-card__marker {
  width: 0.62rem;
  margin-top: 0.24rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent-gradient-soft);
  box-shadow: 0 0 1.15rem rgba(42, 194, 60, 0.28);
  transform: scale(0.82);
  transition:
    background 320ms ease,
    box-shadow 320ms ease,
    transform 320ms ease;
}

body .feature-card:hover .feature-card__marker {
  background: #050505;
  box-shadow: none;
  transform: scale(1);
}

body .feature-card__body {
  position: relative;
  z-index: 1;
}

body .feature-card h3 {
  max-width: 9.5ch;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 3.2vw, 3.55rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  transition: color 320ms ease;
}

body .feature-card p {
  max-width: 18rem;
  margin: clamp(1.2rem, 2vw, 1.7rem) 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  font-weight: 500;
  line-height: 1.42;
  transition: color 320ms ease;
}

body .feature-card:hover h3 {
  color: #050505;
}

body .feature-card:hover p {
  color: rgba(5, 5, 5, 0.58);
}

@media (max-width: 1040px) {
  body .services__heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  body .services__heading .section-title {
    max-width: 12ch;
  }

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

@media (max-width: 760px) {
  body .services.page-section {
    padding-top: clamp(4rem, 14vw, 5.5rem) !important;
  }

  body .services__heading .section-title {
    font-size: clamp(2.15rem, 9vw, 3rem);
  }

  body .services__intro p {
    max-width: 100%;
  }

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

  body .feature-card {
    min-height: 17rem;
  }

  body .feature-card:hover,
  body .feature-card:nth-child(2n):hover,
  body .feature-card:nth-child(2n + 1):hover {
    transform: translateY(-0.75rem) rotate(0deg) scale(1.015);
  }
}

/* Unified section heading scale, excluding the first-screen hero title. */
body .page-section .section-title,
body .page-section .cta__title {
  font-size: clamp(2rem, 3.25vw, 3.65rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

@media (max-width: 760px) {
  body .page-section .section-title,
  body .page-section .cta__title {
    font-size: clamp(2.15rem, 9vw, 3rem);
    line-height: 1;
  }
}

/* Three-step workflow block after services. */
body .workflow.page-section {
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
  background: #050505;
}

body .workflow .section-shell {
  width: min(92rem, 100%);
}

body .workflow__panel {
  position: relative;
  overflow: hidden;
  min-height: clamp(24rem, 34vw, 31rem);
  padding: clamp(2.35rem, 4.2vw, 4rem) clamp(1.5rem, 4vw, 4rem);
  border: 1px solid rgba(42, 194, 60, 0.075);
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 50% -12%, rgba(42, 194, 60, 0.16), transparent 38%),
    radial-gradient(ellipse at 50% 55%, rgba(42, 194, 60, 0.04), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.006)),
    #030504;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    inset 0 -1px 0 rgba(42, 194, 60, 0.035),
    0 2rem 5rem rgba(0, 0, 0, 0.34);
}

body .workflow__panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(42, 194, 60, 0.035), transparent),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.42));
  pointer-events: none;
}

body .workflow__heading {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

body .workflow__badge {
  display: inline-grid;
  min-height: 1.75rem;
  margin: 0 0 clamp(1rem, 2vw, 1.35rem);
  padding: 0 0.9rem;
  place-items: center;
  border: 1px solid rgba(42, 194, 60, 0.24);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(42, 194, 60, 0.035);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

body .workflow__heading .section-title {
  max-width: none;
  margin: 0;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
}

body .workflow__heading p:not(.workflow__badge) {
  max-width: 42rem;
  margin: clamp(1rem, 1.8vw, 1.35rem) 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-family: var(--font-body);
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  font-weight: 500;
  line-height: 1.5;
}

body .workflow__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 4vw, 4rem);
  margin-top: clamp(2.8rem, 5vw, 4.5rem);
}

body .workflow__steps::before {
  position: absolute;
  top: clamp(2.05rem, 3.8vw, 2.55rem);
  right: 16.5%;
  left: 16.5%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(42, 194, 60, 0.22), rgba(204, 255, 46, 0.5), rgba(42, 194, 60, 0.22), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 950ms cubic-bezier(0.18, 0.84, 0.22, 1);
}

body .workflow.is-visible .workflow__steps::before {
  transform: scaleX(1);
}

body .workflow-step {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

body .workflow-step__icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: clamp(4.25rem, 6vw, 5.15rem);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.88);
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.06), transparent 56%),
    #030303;
  box-shadow: 0 1rem 2.6rem rgba(0, 0, 0, 0.35);
  transition:
    border-color 260ms ease,
    color 260ms ease,
    transform 260ms ease,
    box-shadow 260ms ease;
}

body .workflow-step--featured .workflow-step__icon {
  color: var(--accent);
  border-color: rgba(42, 194, 60, 0.18);
  box-shadow:
    0 0 0 1px rgba(42, 194, 60, 0.04),
    0 1rem 2.6rem rgba(0, 0, 0, 0.38);
}

body .workflow-step:hover .workflow-step__icon {
  color: var(--accent);
  border-color: rgba(42, 194, 60, 0.28);
  box-shadow:
    0 0 1.8rem rgba(42, 194, 60, 0.12),
    0 1.2rem 2.8rem rgba(0, 0, 0, 0.38);
  transform: translateY(-0.22rem) scale(1.035);
}

body .workflow-step__icon svg {
  width: 42%;
  height: 42%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

body .workflow-step h3 {
  margin: clamp(1.45rem, 2.5vw, 2rem) 0 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1.6vw, 1.7rem);
  font-weight: 700;
  line-height: 1;
}

body .workflow-step p {
  max-width: 23rem;
  margin: clamp(1rem, 1.6vw, 1.25rem) auto 0;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--font-body);
  font-size: clamp(0.94rem, 1vw, 1.04rem);
  font-weight: 500;
  line-height: 1.48;
  transition: color 260ms ease;
}

body .workflow-step:hover p {
  color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 860px) {
  body .workflow__panel {
    min-height: 0;
  }

  body .workflow__steps {
    grid-template-columns: 1fr;
    gap: 3.2rem;
    margin-top: 3.4rem;
  }

  body .workflow__heading .section-title {
    white-space: normal;
  }

  body .workflow__steps::before {
    top: 2.2rem;
    bottom: 2.2rem;
    left: 50%;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(42, 194, 60, 0.45), transparent);
    transform: scaleY(0);
    transform-origin: top;
  }

  body .workflow.is-visible .workflow__steps::before {
    transform: scaleY(1);
  }

body .workflow-step {
    padding: 0 0.5rem;
  }
}

/* Neutral service cards: no blue/teal undertone. */
body .services .feature-card:not(:hover) {
  background: #000000;
  border-color: rgba(255, 255, 255, 0.72);
}

body .services .feature-card::before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 62%);
}

body .services .feature-card:hover {
  border-color: rgba(255, 255, 255, 0.9);
  background: #ffffff;
}

body .services .feature-card:hover h3,
body .services .feature-card:hover .feature-card__marker {
  color: #050505;
}

body .services .feature-card:hover p {
  color: rgba(5, 5, 5, 0.62);
}

/* Second services test: dark cards with internal CTA reveal. */
body .services--hire {
  min-height: calc(100vh + clamp(11rem, 18vw, 18rem));
  padding-top: clamp(3rem, 6vw, 5.5rem) !important;
  padding-bottom: clamp(14rem, 20vw, 20rem) !important;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

body .services--hire .section-shell {
  transform: translate3d(0, var(--scene-exit-y, 0), 0) scale(var(--scene-exit-scale, 1));
  opacity: var(--scene-exit-opacity, 1);
  filter: blur(var(--scene-exit-blur, 0px));
  transform-origin: center bottom;
  will-change: transform, opacity, filter;
}

body .services--hire .services__heading .section-title {
  max-width: 16ch;
  font-size: clamp(2rem, 3.6vw, 4.15rem);
  line-height: 0.98;
}

body .services--hire .services__intro {
  padding-top: 0;
}

body .services--hire .feature-card,
body .services--hire .feature-card:hover,
body .services--hire .feature-card:nth-child(2n):hover,
body .services--hire .feature-card:nth-child(2n + 1):hover {
  border-color: rgba(255, 255, 255, 0.72);
  background: #000000;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.32);
  transform: translateY(0) rotate(0deg) scale(1);
}

body .services--hire .feature-card:hover,
body .services--hire .feature-card:focus-within,
body .services--hire .feature-card:nth-child(2n):hover,
body .services--hire .feature-card:nth-child(2n + 1):hover {
  border-color: rgba(255, 255, 255, 0.92);
  background: #ffffff;
  box-shadow: 0 1.2rem 3rem rgba(255, 255, 255, 0.08);
}

body .services--hire .feature-card {
  min-height: clamp(19.5rem, 25vw, 23.5rem);
  padding-bottom: clamp(4.65rem, 5.2vw, 5.35rem);
  opacity: 0;
  transform: translate3d(0, 2.75rem, 0) scale(0.985);
  transition:
    opacity 380ms ease,
    transform 500ms cubic-bezier(0.16, 0.9, 0.22, 1),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
  will-change: transform, opacity;
}

body .services--hire .feature-card:hover {
  transition:
    border-color 260ms ease 0ms,
    background 260ms ease 0ms,
    box-shadow 260ms ease 0ms,
    transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1) 220ms,
    opacity 380ms ease;
}

body .services--hire .services-hire-cards {
  margin-top: clamp(0.7rem, 1.15vw, 1.25rem);
  opacity: 1;
  transform: none;
  transition: none;
}

body .services--hire.is-visible .services-hire-cards,
body .services--hire.is-visible .feature-card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body .services--hire.is-visible .feature-card:nth-child(4) {
  transition-delay: 0ms;
}

body .services--hire.is-visible .feature-card:nth-child(3) {
  transition-delay: 80ms;
}

body .services--hire.is-visible .feature-card:nth-child(2) {
  transition-delay: 160ms;
}

body .services--hire.is-visible .feature-card:nth-child(1) {
  transition-delay: 240ms;
}

@media (prefers-reduced-motion: reduce) {
  body .services--hire .services-hire-cards,
  body .services--hire .feature-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

body .services--hire .feature-card h3 {
  font-size: clamp(1.7rem, 2.45vw, 2.65rem);
}

body .services--hire .feature-card::before {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1), transparent 62%);
}

body .services--hire .feature-card:hover::before {
  opacity: 0;
}

body .services--hire .feature-card::after {
  display: none;
}

body .services--hire .feature-card:hover::after,
body .services--hire .feature-card:focus-within::after {
  opacity: 0;
}

body .services--hire .feature-card__body {
  transition: transform 360ms cubic-bezier(0.18, 0.84, 0.22, 1);
}

body .services--hire .feature-card:hover .feature-card__body {
  transform: translateY(-2.65rem);
}

body .services--hire .feature-card:hover h3,
body .services--hire .feature-card:focus-within h3 {
  color: #050505;
}

body .services--hire .feature-card:hover p,
body .services--hire .feature-card:focus-within p {
  color: rgba(5, 5, 5, 0.62);
}

body .services--hire .feature-card:hover .card-index,
body .services--hire .feature-card:focus-within .card-index {
  border-color: rgba(5, 5, 5, 0.28);
  color: rgba(5, 5, 5, 0.76);
}

body .services--hire .feature-card:hover .feature-card__marker {
  background: #050505;
  box-shadow: none;
  transform: scale(1);
}

body .feature-card__hire {
  position: absolute;
  right: clamp(1.35rem, 2.1vw, 2rem);
  bottom: clamp(1.25rem, 1.8vw, 1.65rem);
  left: clamp(1.35rem, 2.1vw, 2rem);
  z-index: 2;
  display: inline-grid;
  min-height: 3.05rem;
  place-items: center;
  border-radius: 8px;
  color: #050505;
  background: var(--accent-gradient);
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(0.85rem);
  transition:
    opacity 280ms ease,
    transform 360ms cubic-bezier(0.18, 0.84, 0.22, 1),
    box-shadow 280ms ease;
}

body .services--hire .feature-card__hire {
  color: #ffffff;
  background: #050505;
}

body .services--hire .feature-card:hover .feature-card__hire,
body .services--hire .feature-card:focus-within .feature-card__hire {
  opacity: 1;
  pointer-events: auto;
  color: #ffffff;
  background: #050505;
  box-shadow: 0 0.9rem 2.4rem rgba(5, 5, 5, 0.12);
  transform: translateY(0);
}

/* Minimal final CTA. */
body .cta.page-section {
  min-height: 100vh;
  padding: clamp(5rem, 8vw, 7rem) clamp(1.25rem, 4vw, 4rem) !important;
  display: grid;
  align-items: center;
  background: #050505;
}

body .cta .cta__panel {
  display: grid;
  width: min(88rem, 100%);
  min-height: auto;
  grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 0.78fr);
  align-items: center;
  column-gap: clamp(3rem, 9vw, 9rem);
  padding: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

body .cta .cta__panel::before,
body .cta .cta__panel::after {
  display: none;
}

body .cta .cta__copy {
  display: grid;
  justify-items: start;
  gap: 0;
}

body .cta .cta__title {
  width: min(27rem, 100%);
  color: #ffffff;
  font-size: clamp(2rem, 3.05vw, 3.35rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

body .cta .cta__form {
  width: 100%;
  margin-top: 0;
  display: grid;
  gap: 0.78rem;
  padding: clamp(1.15rem, 2.4vw, 1.7rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

body .cta .cta__form label {
  display: grid;
  gap: 0.42rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: left;
}

body .cta .cta__form input,
body .cta .cta__form textarea {
  width: 100%;
  min-height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.045);
  font: inherit;
  font-size: 0.96rem;
  outline: 0;
  padding: 0 0.9rem;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

body .cta .cta__form textarea {
  min-height: 5.2rem;
  resize: vertical;
  padding-top: 0.8rem;
}

body .cta .cta__form input::placeholder,
body .cta .cta__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

body .cta .cta__form input:focus,
body .cta .cta__form textarea:focus {
  border-color: rgba(42, 194, 60, 0.78);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(42, 194, 60, 0.08);
}

body .cta .cta__form button {
  min-height: 3.35rem;
  margin-top: 0.25rem;
  border: 0;
  border-radius: 8px;
  color: #050505;
  background: var(--accent-gradient);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

body .cta .cta__form button:hover {
  box-shadow: 0 1rem 2.4rem rgba(42, 194, 60, 0.14);
  transform: translateY(-0.12rem);
}

body .cta .cta__button {
  display: inline-grid;
  min-width: clamp(11rem, 14vw, 13.5rem);
  min-height: 3.55rem;
  place-items: center;
  border-radius: 8px;
  color: #050505;
  background: var(--accent-gradient);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    background-color 240ms ease;
}

body .cta .cta__button:hover {
  box-shadow: 0 1rem 2.4rem rgba(42, 194, 60, 0.15);
  transform: translateY(-0.12rem);
}

@media (max-width: 900px) {
  body .cta .cta__panel {
    grid-template-columns: 1fr;
    row-gap: clamp(2.2rem, 9vw, 3.5rem);
  }

  body .cta .cta__title {
    width: min(34rem, 100%);
    font-size: clamp(2.65rem, 12vw, 4.2rem);
  }
}

/* Preloader is disabled: keep the logo as a stable header element. */
body .site-header {
  grid-template-columns: minmax(7.2rem, 9.4rem) minmax(0, 1fr) auto;
}

body .site-header__logo {
  display: inline-flex;
  width: clamp(7.2rem, 9vw, 9.4rem);
  height: 3rem;
  align-items: center;
  overflow: visible;
  pointer-events: auto;
}

body .site-header.is-past-hero .site-header__logo {
  width: clamp(6.9rem, 8.5vw, 9rem);
  height: 2.85rem;
}

body .site-header__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  transform: none;
}

body .boost-preloader {
  position: fixed;
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  z-index: 2147483647;
  max-width: none !important;
  margin: 0 !important;
  border: 0 !important;
  overflow: hidden;
  color: #ffffff;
  background: #000000 !important;
  border-radius: 0 !important;
  isolation: isolate;
  transform: translate3d(0, 0, 0);
  transition:
    transform 920ms cubic-bezier(0.76, 0, 0.24, 1),
    visibility 0ms linear 920ms;
}

html.boost-skip-preloader body .boost-preloader {
  display: none !important;
}

body .boost-preloader::before,
body .boost-preloader::after {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 0;
  width: clamp(3rem, 5.8vw, 6rem);
  min-width: 0;
  content: "";
  background: #050505;
  opacity: 0;
  animation: boost-loader-side-panels 520ms ease forwards 180ms;
}

body .boost-preloader::before {
  left: 0;
}

body .boost-preloader::after {
  right: 0;
}

body.service-page .boost-preloader::before,
body.service-page .boost-preloader::after {
  display: none !important;
  content: none !important;
}

body .boost-preloader__core {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 2.35rem;
  width: min(31rem, calc(100% - 2rem));
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  animation: boost-loader-core-in 520ms ease forwards 520ms;
}

body .boost-preloader__rocket {
  position: relative;
  display: block;
  width: 1.38rem;
  height: 1.92rem;
  transform-origin: 50% 62%;
  animation: boost-loader-rocket 1400ms ease-in-out infinite;
  transition:
    opacity 520ms ease,
    transform 620ms cubic-bezier(0.76, 0, 0.24, 1);
}

body .boost-preloader__rocket-body {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.78rem;
  height: 1.42rem;
  background: #ffffff;
  border-radius: 52% 52% 42% 42% / 70% 70% 34% 34%;
  transform: translateX(-50%);
}

body .boost-preloader__rocket-body::before,
body .boost-preloader__rocket-body::after {
  position: absolute;
  bottom: 0.08rem;
  width: 0.36rem;
  height: 0.46rem;
  content: "";
  background: #ffffff;
}

body .boost-preloader__rocket-body::before {
  left: -0.26rem;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

body .boost-preloader__rocket-body::after {
  right: -0.26rem;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

body .boost-preloader__rocket-flame {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0.32rem;
  height: 0.58rem;
  background: var(--accent-gradient);
  border-radius: 50% 50% 48% 48%;
  transform: translateX(-50%);
  animation: boost-loader-flame 760ms ease-in-out infinite;
}

body .boost-preloader__track {
  position: relative;
  display: block;
  width: min(31.25rem, 70vw);
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  overflow: hidden;
  transform: scaleX(0);
  transform-origin: center;
  transition:
    opacity 520ms ease,
    transform 720ms cubic-bezier(0.76, 0, 0.24, 1);
}

body .boost-preloader--line-ready .boost-preloader__track {
  transform: scaleX(1);
}

body .boost-preloader__progress {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left center;
}

body .boost-preloader--loading .boost-preloader__progress {
  animation: boost-loader-progress 2000ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

body .boost-preloader--collapse .boost-preloader__track {
  opacity: 0;
  transform: scaleX(0);
}

body .boost-preloader--collapse .boost-preloader__rocket {
  opacity: 0;
  transform: scale(0.62);
  animation-play-state: paused;
}

body .boost-preloader--collapse .boost-preloader__rocket-flame {
  opacity: 0;
  animation-play-state: paused;
}

body .boost-preloader--leaving {
  visibility: hidden;
  transform: translate3d(0, -100%, 0);
}

body .boost-preloader--leaving .boost-preloader__core {
  opacity: 0;
  transform: translate3d(-50%, calc(-50% - 0.65rem), 0);
  transition:
    opacity 380ms ease,
    transform 520ms ease;
}

@keyframes boost-loader-side-panels {
  to {
    opacity: 1;
  }
}

@keyframes boost-loader-core-in {
  to {
    opacity: 1;
  }
}

@keyframes boost-loader-rocket {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-0.16rem) scale(1.04);
  }
}

@keyframes boost-loader-flame {
  0%,
  100% {
    opacity: 0.72;
    transform: translateX(-50%) scaleY(0.72);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scaleY(1);
  }
}

@keyframes boost-loader-progress {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  body .boost-preloader__core,
  body .boost-preloader::before,
  body .boost-preloader::after {
    opacity: 1;
    animation: none;
  }

  body .boost-preloader__rocket,
  body .boost-preloader__rocket-flame,
  body .boost-preloader__progress {
    animation: none;
  }
}

body:not(.logo-reveal) .hero__eyebrow,
body:not(.logo-reveal) .hero__title,
body:not(.logo-reveal) .hero__subtitle {
  opacity: 0 !important;
  animation: none !important;
}

html.boost-skip-preloader body:not(.logo-reveal) .hero__eyebrow,
html.boost-skip-preloader body:not(.logo-reveal) .hero__title,
html.boost-skip-preloader body:not(.logo-reveal) .hero__subtitle,
html.boost-skip-preloader body:not(.logo-reveal) .hero__button {
  opacity: 1 !important;
  filter: none !important;
  animation: none !important;
  transform: none !important;
}

body:not(.logo-reveal) .hero__eyebrow,
body:not(.logo-reveal) .hero__subtitle {
  transform: translateY(1.15rem) !important;
}

body:not(.logo-reveal) .hero__title {
  filter: blur(0.5rem) !important;
  transform: translateY(1.6rem) scale(0.985) !important;
}

body.logo-reveal .hero__eyebrow {
  animation: boost-hero-kicker-final 720ms cubic-bezier(0.18, 0.84, 0.22, 1) 40ms both !important;
}

body.logo-reveal .hero__title {
  animation: boost-hero-title-final 1060ms cubic-bezier(0.16, 0.9, 0.18, 1) 110ms both !important;
}

body.logo-reveal .hero__subtitle {
  animation: boost-hero-copy-final 800ms cubic-bezier(0.18, 0.84, 0.22, 1) 380ms both !important;
}

@keyframes boost-hero-kicker-final {
  from {
    opacity: 0;
    transform: translateY(1.15rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes boost-hero-title-final {
  from {
    filter: blur(0.5rem);
    opacity: 0;
    transform: translateY(1.6rem) scale(0.985);
  }

  to {
    filter: blur(0);
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes boost-hero-copy-final {
  from {
    opacity: 0;
    transform: translateY(1.15rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  body .services--hire .feature-card {
    min-height: 21rem;
    padding-bottom: 5.25rem;
  }

  body .services--hire .feature-card:hover .feature-card__body {
    transform: translateY(-1.95rem);
  }
}

/* Snap scenes: blocks 3-6. */
body .scene-deck {
  position: relative;
  z-index: 2;
  min-height: auto;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  overflow: clip;
  transition: background-color 720ms cubic-bezier(0.37, 0, 0.63, 1);
  isolation: isolate;
}

body .scene-deck.reveal {
  opacity: 1;
  transform: none;
  transition: background-color 720ms cubic-bezier(0.37, 0, 0.63, 1);
}

body .scene-deck::before {
  display: none;
}

body .scene-stage {
  position: relative;
  display: block;
  min-height: auto;
  overflow: clip;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

body .scene-panel {
  position: relative;
  top: auto;
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  color: #0a0a0a;
  background: transparent;
  overflow: hidden;
  transform: none !important;
  transition: none;
  pointer-events: auto;
}

body .scene-panel.is-active,
body .scene-panel.is-before,
body .scene-panel.is-after {
  pointer-events: auto;
}

body .scene-deck .scene-shell {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  column-gap: clamp(1rem, 2vw, 2rem);
  padding: 0 8vw;
  transform: none;
}

body .scene-deck .scene-heading,
body .scene-deck .scene-title,
body .scene-deck .scene-description,
body .scene-deck .scene-detail,
body .scene-deck .scene-button,
body .scene-deck .scene-placeholder {
  opacity: 1;
  transform: none;
  animation: none !important;
}

body .scene-mobile-phone {
  display: none;
}

body .scene-deck .scene-heading {
  grid-column: 1 / span 4;
  max-width: 420px;
  margin: 0;
  align-self: center;
  display: grid;
  gap: clamp(1.4rem, 2vw, 2.15rem);
  justify-items: start;
  transform: translateY(clamp(-2rem, -2.45vw, -1.35rem));
}

body .scene-deck .scene-title {
  margin: 0;
  align-self: center;
  color: currentColor;
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.35vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

body .scene-deck .scene-detail,
body .scene-deck .scene-shell > .scene-description {
  grid-column: 10 / span 3;
  max-width: 320px;
  margin: 0;
  align-self: center;
  align-content: center;
}

body .scene-deck .scene-detail {
  display: grid;
  gap: clamp(1.35rem, 2vw, 2rem);
}

body .scene-deck .scene-description {
  margin: 0;
  color: currentColor;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
  text-wrap: pretty;
}

body .scene-deck .scene-button {
  display: inline-grid;
  width: fit-content;
  min-height: 3rem;
  padding: 0 1.45rem;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: var(--accent-gradient);
  color: #050505;
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

body .scene-deck .scene-button:hover,
body .scene-deck .scene-button:focus-visible {
  background: var(--accent-gradient-hover);
  transform: translateY(-2px);
}

body .scene-deck .scene-panel--light .scene-button,
body .scene-deck .scene-panel--lime .scene-button {
  background: #050505;
  color: #ffffff;
}

body .scene-deck .scene-panel--light .scene-button:hover,
body .scene-deck .scene-panel--light .scene-button:focus-visible,
body .scene-deck .scene-panel--lime .scene-button:hover,
body .scene-deck .scene-panel--lime .scene-button:focus-visible {
  background: #1b1b1b;
}

body .scene-deck .scene-placeholder {
  grid-column: 5 / span 4;
  align-self: center;
  justify-self: center;
  display: grid;
  width: min(480px, 100%);
  height: min(320px, 34vw);
  min-height: 240px;
  place-items: center;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 16px;
  color: rgba(10, 10, 10, 0.62);
  background: rgba(10, 10, 10, 0.055);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body .scene-panel--dark {
  color: #ffffff;
}

body .scene-deck .scene-panel--dark .scene-placeholder {
  border-color: rgba(42, 194, 60, 0.28);
  color: transparent;
  background-image: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  background: rgba(255, 255, 255, 0.08);
}

body .scene-panel--lime {
  color: #0a0a0a;
}

body .scene-deck .scene-panel--lime .scene-placeholder {
  border-color: rgba(10, 10, 10, 0.18);
  color: rgba(10, 10, 10, 0.68);
  background: rgba(255, 255, 255, 0.28);
}

body .scene-progress {
  position: fixed;
  right: clamp(1rem, 2vw, 1.7rem);
  top: 50%;
  z-index: 30;
  display: grid;
  gap: 0.55rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 180ms ease;
}

body .scene-deck.is-in-view .scene-progress {
  opacity: 1;
}

body .scene-progress__dot {
  width: 0.62rem;
  height: 0.62rem;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: #0a0a0a;
  opacity: 0.78;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.34),
    0 0 0.65rem rgba(5, 5, 5, 0.18);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

body .scene-progress__dot.is-active {
  background: currentColor;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28),
    0 0 0.85rem rgba(42, 194, 60, 0.28);
  opacity: 1;
  transform: scale(1.35);
}

body .scene-deck[data-active-scene="1"] .scene-progress__dot,
body .scene-deck[data-active-scene="3"] .scene-progress__dot {
  color: #2AC23C;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 0 0.72rem rgba(42, 194, 60, 0.2);
}

body .scene-deck[data-active-scene="1"] .scene-progress__dot.is-active,
body .scene-deck[data-active-scene="3"] .scene-progress__dot.is-active {
  background: var(--accent-gradient);
  border-color: transparent;
}

body .scene-deck[data-active-scene="0"] .scene-progress__dot,
body .scene-deck[data-active-scene="2"] .scene-progress__dot {
  color: #0a0a0a;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.42),
    0 0 0.65rem rgba(5, 5, 5, 0.18);
}

@media (max-width: 980px) {
  body .scene-deck .scene-shell {
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    row-gap: 2rem;
    padding: 6rem 7vw 3rem;
    text-align: center;
  }

  body .scene-deck .scene-heading,
  body .scene-deck .scene-title,
  body .scene-deck .scene-detail,
  body .scene-deck .scene-description,
  body .scene-deck .scene-placeholder {
    grid-column: 1;
  }

  body .scene-deck .scene-heading {
    max-width: 680px;
    margin-top: 0;
    justify-items: center;
  }

  body .scene-deck .scene-title {
    font-size: clamp(34px, 8vw, 52px);
  }

  body .scene-deck .scene-detail,
  body .scene-deck .scene-description {
    max-width: 520px;
    margin-top: 0;
    justify-items: center;
  }

  body .scene-deck .scene-placeholder {
    width: min(480px, 82vw);
    height: min(300px, 48vw);
  }
}

@media (max-width: 620px) {
  body .scene-deck .scene-shell {
    row-gap: 1.45rem;
    padding-inline: 1.25rem;
  }

  body .scene-deck .scene-title {
    font-size: clamp(34px, 11vw, 48px);
  }

body .scene-deck .scene-placeholder {
    min-height: 210px;
  }
}

body .scene-deck .scene-panel {
  height: 100vh !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;
}

body .scene-deck .scene-panel:last-of-type {
  margin-bottom: 0;
}

body .scene-device-layer {
  position: sticky;
  top: 0;
  z-index: 6;
  height: 100vh;
  height: 100dvh;
  margin-bottom: -100vh;
  opacity: var(--scene-device-layer-opacity, 0);
  pointer-events: none;
  transition: none;
  will-change: opacity;
}

body .scene-deck[data-device-release="true"] .scene-device-layer {
  position: absolute;
  top: var(--scene-device-release-top, 300vh);
  right: 0;
  left: 0;
  margin-bottom: 0;
}

body .scene-deck.is-in-view .scene-device-layer {
  opacity: var(--scene-device-layer-opacity, 1);
}

body .scene-device-layer__shell {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  column-gap: clamp(1rem, 2vw, 2rem);
  padding: 0 8vw;
}

body .scene-device-layer__shell::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform:
    translate(-50%, -50%)
    translate3d(0, var(--scene-device-phone-y, 0), 0)
    scale(var(--scene-device-phone-scale, 1));
  width: clamp(320px, 27vw, 480px);
  aspect-ratio: 34 / 70;
  opacity: var(--scene-device-shadow-opacity, 0);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.14) 0%, rgba(0, 0, 0, 0.045) 48%, transparent 74%);
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
  will-change: opacity, transform;
}

body .scene-deck .scene-panel .scene-placeholder {
  visibility: hidden;
  pointer-events: none;
}

body .scene-deck .boost-premium-screen {
  --phone-radius: clamp(20px, 1.7vw, 32px);
  grid-column: 5 / span 4;
  align-self: center;
  justify-self: center;
  width: clamp(230px, 19vw, 340px);
  aspect-ratio: 34 / 70;
  max-height: min(700px, 76vh);
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  border-radius: var(--phone-radius);
  clip-path: inset(var(--scene-device-phone-clip, 0%) 0 var(--scene-device-phone-clip, 0%) 0 round var(--phone-radius));
  background: #ffffff;
  color: #0a0a0a;
  opacity: var(--scene-device-phone-opacity, 1);
  box-shadow:
    0 2.25rem 5.75rem rgba(0, 0, 0, 0.14),
    0 0.55rem 1.45rem rgba(0, 0, 0, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transform:
    translate3d(0, var(--scene-device-phone-y, 0), 0)
    scale(var(--scene-device-phone-scale, 1))
    translateZ(0);
  transform-origin: center center;
  will-change: transform, opacity, clip-path;
}

body .scene-deck[data-active-scene="3"] .boost-premium-screen {
  background: #0a0a0a;
  box-shadow:
    0 2.25rem 5.75rem rgba(0, 0, 0, 0.16),
    0 0.55rem 1.45rem rgba(0, 0, 0, 0.08);
}

body .boost-premium-screen__frames {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-radius: inherit;
  clip-path: inset(0 round var(--phone-radius));
  background: inherit;
}

body .boost-premium-screen__frames::after {
  content: "";
  position: absolute;
  top: var(--phone-transition-edge, 100%);
  right: -4%;
  left: -4%;
  z-index: 3;
  height: clamp(44px, 7.6vh, 88px);
  pointer-events: none;
  opacity: var(--phone-transition-shadow-opacity, 0);
  transform: var(--phone-transition-shadow-transform, translate3d(0, -100%, 0));
  background: var(
    --phone-transition-shadow-gradient,
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.025) 46%,
      rgba(0, 0, 0, 0.11) 100%
    )
  );
  filter: blur(7px);
  will-change: top, opacity;
}

body .boost-premium-screen__frame {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  opacity: 1;
  z-index: 2;
  overflow: hidden;
  border-radius: inherit;
  clip-path: inset(0 round var(--phone-radius));
  background: #ffffff;
  transform: translateY(100%);
  backface-visibility: hidden;
  will-change: transform;
  transition:
    transform 820ms cubic-bezier(0.65, 0, 0.35, 1);
}

body .boost-premium-screen__frame.is-active {
  z-index: 4;
  transform: translateY(0);
}

body .boost-premium-screen__frame.is-past {
  z-index: 1;
  transform: translateY(0);
}

body .boost-premium-screen__frame.is-under {
  z-index: 1;
  transform: translateY(0);
}

body .boost-premium-screen__frame.is-entering-from-top {
  z-index: 5;
  transform: translateY(-100%);
  transition: none;
}

body .boost-premium-screen__frame.is-entering-from-bottom {
  z-index: 5;
  transform: translateY(100%);
  transition: none;
}

body .boost-premium-screen__frame--embed {
  background: #ffffff;
}

body .boost-premium-screen__frame--black {
  background: #0a0a0a;
  box-shadow: none;
}

body .boost-premium-screen__embed,
body .boost-premium-screen__block-five-embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #ffffff;
  border-radius: 0;
}

@media (max-width: 980px) {
  body .scene-device-layer__shell {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 6rem 7vw 3rem;
  }

  body .scene-deck .boost-premium-screen {
    grid-column: 1;
    width: min(300px, 74vw);
    max-height: 58vh;
  }
}


body .hero__title,
body .section-title,
body .cta__title,
body .scene-title,
body .feature-card h3,
body .workflow-step h3,
body .case-card h3 {
  letter-spacing: 0;
  overflow-wrap: normal;
  hyphens: none;
  text-wrap: balance;
}

body .eyebrow,
body .section-kicker,
body .nav__link,
body .button,
body .scene-link {
  letter-spacing: 0;
  gap: 0.35rem;
}

/* Frameless header: logo left, navigation centered, contact button right. */
body .site-header,
body .site-header.is-scrolled,
body .site-header.is-past-hero,
body .site-header:hover,
body .site-header:focus-within {
  position: fixed !important;
  top: clamp(0.65rem, 1.15vw, 1.2rem) !important;
  right: 0 !important;
  left: 0 !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 clamp(1.1rem, 3vw, 3.25rem) !important;
  display: grid !important;
  grid-template-columns: minmax(4.2rem, 1fr) auto minmax(8.5rem, 1fr) !important;
  align-items: start !important;
  gap: clamp(0.75rem, 2vw, 2rem) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--boost-action-bg) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transform: none !important;
}

body .site-header__logo,
body .site-header.is-past-hero .site-header__logo {
  grid-column: 1 !important;
  justify-self: start !important;
  align-self: start !important;
  display: inline-flex !important;
  width: clamp(3rem, 3.8vw, 4.35rem) !important;
  height: clamp(3rem, 3.8vw, 4.35rem) !important;
  margin: 0 !important;
  padding: 0 !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--boost-action-bg) !important;
  box-shadow: none !important;
  transform: none !important;
}

body .site-header__logo img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: left top !important;
  transform: none !important;
}

body .site-nav {
  grid-column: 2 !important;
  justify-self: center !important;
  align-self: start !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: clamp(1.45rem, 3vw, 3.25rem) !important;
  width: auto !important;
  margin: 0 !important;
  padding: clamp(0.65rem, 0.82vw, 0.95rem) 0 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body .site-nav__link,
body .site-nav__button {
  padding: 0.2rem 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  font-size: clamp(0.95rem, 1.08vw, 1.18rem) !important;
  color: rgba(255, 255, 255, 0.82) !important;
  transition: color 220ms ease, opacity 220ms ease !important;
}

body .site-header[data-nav-tone="dark"] .site-nav__link,
body .site-header[data-nav-tone="dark"] .site-nav__button {
  color: rgba(10, 10, 10, 0.78) !important;
}

body .site-header[data-nav-tone="light"] .site-nav__link,
body .site-header[data-nav-tone="light"] .site-nav__button {
  color: rgba(255, 255, 255, 0.82) !important;
}

body .site-header[data-nav-tone="dark"] .site-nav__link:hover,
body .site-header[data-nav-tone="dark"] .site-nav__button:hover,
body .site-header[data-nav-tone="dark"] .site-nav__item:focus-within .site-nav__button {
  color: #0a0a0a !important;
}

body .site-header[data-nav-tone="light"] .site-nav__link:hover,
body .site-header[data-nav-tone="light"] .site-nav__button:hover,
body .site-header[data-nav-tone="light"] .site-nav__item:focus-within .site-nav__button {
  color: #ffffff !important;
}

body .contact-popover {
  grid-column: 3 !important;
  justify-self: end !important;
  align-self: start !important;
  width: clamp(7.7rem, 8.8vw, 9.6rem) !important;
  height: 2.85rem !important;
  margin: 0 !important;
  overflow: visible !important;
}

body .scene-deck,
body .scene-stage {
  min-height: 400vh !important;
  min-height: 400dvh !important;
}

body .scene-deck .scene-panel,
body .scene-deck .scene-shell {
  height: 100vh !important;
  height: 100dvh !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;
}

body .contact-popover__panel {
  width: 100% !important;
  min-width: 0 !important;
  max-height: 2.85rem !important;
  border: 0 !important;
  border-radius: 8px !important;
  box-shadow: none !important;
}

body .contact-popover__button,
body .contact-popover:hover .contact-popover__button,
body .contact-popover:focus-within .contact-popover__button,
body .contact-popover__panel .contact-popover__button,
body .contact-popover:hover .contact-popover__panel .contact-popover__button,
body .contact-popover:focus-within .contact-popover__panel .contact-popover__button {
  width: 100% !important;
  min-height: 2.85rem !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  color: #050505 !important;
  background: var(--accent-gradient) !important;
  font-size: clamp(0.9rem, 0.98vw, 1rem) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

body .site-header[data-nav-tone="dark"] .contact-popover__button,
body .site-header[data-nav-tone="dark"] .contact-popover:hover .contact-popover__button,
body .site-header[data-nav-tone="dark"] .contact-popover:focus-within .contact-popover__button,
body .site-header[data-nav-tone="dark"] .contact-popover__panel .contact-popover__button,
body .site-header[data-nav-tone="dark"] .contact-popover:hover .contact-popover__panel .contact-popover__button,
body .site-header[data-nav-tone="dark"] .contact-popover:focus-within .contact-popover__panel .contact-popover__button {
  border-color: rgba(10, 10, 10, 0.14) !important;
}

body .contact-popover:hover .contact-popover__panel,
body .contact-popover:focus-within .contact-popover__panel {
  width: min(22rem, calc(100vw - 2.2rem)) !important;
  max-height: 34rem !important;
  padding: 0 !important;
}

@media (max-width: 760px) {
  body .site-header,
  body .site-header.is-scrolled,
  body .site-header.is-past-hero,
  body .site-header:hover,
  body .site-header:focus-within {
    grid-template-columns: auto 1fr auto !important;
    align-items: start !important;
    padding-inline: 1rem !important;
  }

  body .site-header__logo,
  body .site-header.is-past-hero .site-header__logo {
    width: 3rem !important;
    height: 3rem !important;
  }

  body .site-nav {
    grid-column: 1 / -1 !important;
    grid-row: 2 !important;
    justify-self: center !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    padding-top: 0.15rem !important;
  }

  body .contact-popover {
    width: 7.7rem !important;
  }
}

/* Final viewport-height lock for snap scenes. Avoid dynamic viewport units here:
   in this browser they make scenes shorter than the visible screen. */
body .scene-deck,
body .scene-stage {
  min-height: 400vh !important;
  height: auto !important;
}

body .scene-deck .scene-panel,
body .scene-deck .scene-shell {
  height: 100vh !important;
  min-height: 100vh !important;
  max-height: none !important;
}

body .scene-deck .scene-shell {
  align-items: center !important;
  padding-block: 0 !important;
}

@media (min-width: 981px) {
  body .scene-deck {
    --scene-composition-offset-y: clamp(18px, 2.4vh, 32px);
  }

  body .scene-deck .scene-shell,
  body .scene-deck .scene-device-layer__shell {
    transform: translate3d(0, var(--scene-composition-offset-y), 0) !important;
    will-change: transform;
  }
}

body .contact-popover:not(:hover):not(:focus-within) .contact-popover__panel label,
body .contact-popover:not(:hover):not(:focus-within) .contact-popover__submit {
  display: none !important;
}

/* Header contact form opens on hover/focus. */
body .site-header__logo,
body .site-header.is-past-hero .site-header__logo {
  width: 2.85rem !important;
  height: 2.85rem !important;
}

body .contact-popover {
  width: clamp(7.7rem, 8.8vw, 9.6rem) !important;
  height: 2.85rem !important;
  overflow: visible !important;
  transition: width 300ms cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}

body .contact-popover:hover,
body .contact-popover:focus-within {
  width: min(22rem, calc(100vw - 2.2rem)) !important;
  height: auto !important;
}

body .contact-popover__panel {
  width: 100% !important;
  min-width: 0 !important;
  height: 2.85rem !important;
  min-height: 2.85rem !important;
  max-height: 2.85rem !important;
  padding: 0 !important;
  display: grid !important;
  gap: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: var(--accent-gradient) !important;
  box-shadow: none !important;
  transition:
    max-height 300ms cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 220ms ease !important;
}

body .contact-popover:hover .contact-popover__panel,
body .contact-popover:focus-within .contact-popover__panel {
  height: auto !important;
  min-height: 2.85rem !important;
  max-height: 26rem !important;
  padding: 0 0 0.95rem !important;
  background: var(--accent-gradient) !important;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.18) !important;
}

body .contact-popover__panel label,
body .contact-popover__panel input,
body .contact-popover__submit {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-0.35rem) !important;
  transition:
    opacity 180ms ease,
    transform 220ms ease !important;
}

body .contact-popover__button,
body .contact-popover:hover .contact-popover__button,
body .contact-popover:focus-within .contact-popover__button,
body .contact-popover__panel .contact-popover__button,
body .contact-popover:hover .contact-popover__panel .contact-popover__button,
body .contact-popover:focus-within .contact-popover__panel .contact-popover__button {
  width: 100% !important;
  height: 2.85rem !important;
  min-height: 2.85rem !important;
  padding: 0 1.25rem !important;
  display: grid !important;
  place-items: center !important;
  border: 1px solid transparent !important;
  border-radius: 8px !important;
  background: var(--accent-gradient) !important;
  color: #050505 !important;
  font-size: clamp(0.9rem, 0.98vw, 1rem) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-transform: none !important;
  box-shadow: none !important;
  outline: none !important;
}

body .contact-popover__button::before,
body .contact-popover__button::after {
  display: none !important;
  content: none !important;
}

body .contact-popover:hover .contact-popover__panel label,
body .contact-popover:focus-within .contact-popover__panel label {
  display: grid !important;
  gap: 0.35rem !important;
  padding: 0.55rem 0.65rem 0 !important;
  color: #050505 !important;
  font-size: 0.9rem !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

body .contact-popover:hover .contact-popover__panel input,
body .contact-popover:focus-within .contact-popover__panel input {
  display: block !important;
  width: 100% !important;
  min-height: 2.6rem !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: rgba(10, 10, 10, 0.05) !important;
  color: #050505 !important;
  padding: 0 0.75rem !important;
  font: inherit !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

body .contact-popover:hover .contact-popover__submit,
body .contact-popover:focus-within .contact-popover__submit {
  display: grid !important;
  place-items: center !important;
  margin: 0.85rem 0.65rem 0 !important;
  min-height: 2.75rem !important;
  border: 2px solid #050505 !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #050505 !important;
  font-weight: 800 !important;
  outline: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
}

/* Seventh scene: single rotating statement. */
body .statement-cycle.page-section {
  display: grid;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  place-items: center;
  background: #ffffff;
  color: #050505;
}

body .statement-cycle__shell {
  display: grid;
  width: min(100%, 92rem);
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(5rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem);
  place-items: center;
}

body .statement-cycle__title {
  display: inline-grid;
  grid-template-columns: max-content 7.15ch;
  align-items: baseline;
  justify-content: center;
  gap: 0.24em;
  margin: 0;
  color: #050505;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4.15vw, 4.05rem);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: 0;
  text-align: center;
  transform: translateX(clamp(0.78rem, 1.85vw, 1.95rem));
  white-space: nowrap;
}

body .statement-cycle__static {
  display: inline-block;
  text-align: right;
}

body .statement-cycle__word {
  display: inline-block;
  width: 7.15ch;
  min-width: 7.15ch;
  color: #050505;
  text-align: left;
  white-space: nowrap;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

body .statement-cycle__word.is-changing {
  opacity: 0;
  transform: translate3d(0, -0.16em, 0);
}

@media (max-width: 760px) {
  body .statement-cycle__title {
    grid-template-columns: 1fr;
    gap: 0.12em;
    font-size: clamp(2.05rem, 10.5vw, 3.65rem);
    line-height: 0.96;
    white-space: normal;
  }

  body .statement-cycle__static {
    text-align: center;
  }

  body .statement-cycle__word {
    width: auto;
    min-width: 0;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
body .statement-cycle__word {
  transition: none;
  }
}

/* Eighth section: centered black brand statement. */
body .about-statement.page-section {
  display: grid !important;
  min-height: 100vh !important;
  padding: 0 !important;
  background: #000000 !important;
  color: #ffffff !important;
  overflow: hidden !important;
}

body .about-statement::before {
  display: none;
}

body .about-statement__shell {
  display: grid !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 100vh !important;
  margin: 0 !important;
  padding: clamp(5rem, 8vw, 7rem) clamp(1.25rem, 5vw, 5rem) !important;
  place-items: center !important;
}

body .about-statement__content {
  display: grid;
  justify-items: center;
  width: min(100%, 82rem);
  margin: 0 auto;
  text-align: center;
}

body .about-statement__title {
  display: grid;
  width: min(76rem, 94vw);
  max-width: none;
  gap: 0.02em;
  margin: 0;
  color: #ffffff;
  font-family: "Bebas Neue", var(--font-heading);
  font-size: clamp(4rem, 6.45vw, 7.4rem);
  font-weight: 400;
  line-height: 0.89;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

body .about-statement__title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.62rem, 1.05vw, 1rem);
  white-space: nowrap;
}

body .about-statement__video-slot {
  position: relative;
  display: inline-block;
  width: clamp(7.1rem, 10.2vw, 10.9rem);
  height: 0.74em;
  overflow: hidden;
  border-radius: 8px;
  background: #d6d6d6;
  transform: translateY(-0.02em);
  flex: 0 0 auto;
}

body .about-statement__video-slot video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.05);
  opacity: 1;
}

body .about-statement__video-slot--reel video {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 320ms ease;
}

body .about-statement__video-slot--reel video.is-active {
  opacity: 1;
}

body .about-statement__copy {
  width: min(54rem, 86vw);
  max-width: none;
  margin: clamp(1.7rem, 2.3vw, 2.2rem) 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.95rem, 1.05vw, 1.1rem);
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: 0;
  text-align: center;
}

body .about-statement__button {
  display: inline-grid;
  width: 200px;
  min-width: 200px;
  min-height: clamp(2.75rem, 3vw, 3.1rem);
  margin-top: clamp(1.8rem, 2.7vw, 2.55rem);
  padding: 0 clamp(1.55rem, 2vw, 2rem);
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: var(--accent-gradient);
  color: #050505;
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  transition:
    background-color 220ms ease,
    transform 220ms ease;
}

body .about-statement__button:hover,
body .about-statement__button:focus-visible {
  background: var(--accent-gradient-hover);
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  body .about-statement__shell {
    padding: 6rem 1.25rem 4rem;
  }

  body .about-statement__title {
    width: min(28rem, 94vw);
    font-size: clamp(3.25rem, 14vw, 4.75rem);
    line-height: 0.92;
  }

  body .about-statement__title-line {
    flex-wrap: wrap;
    gap: clamp(0.35rem, 1.6vw, 0.52rem);
    white-space: normal;
  }

  body .about-statement__video-slot {
    width: clamp(4.6rem, 24vw, 6.8rem);
    height: 0.69em;
  }

  body .about-statement__copy {
    max-width: 32rem;
    font-size: 1rem;
    line-height: 1.4;
    white-space: normal;
  }
}

/* Header tone system: black screens use Boost 1 + lime form; light/lime screens use Boost 2 + black form. */
body .site-header[data-nav-tone="light"] .site-nav__link,
body .site-header[data-nav-tone="light"] .site-nav__button {
  color: #ffffff !important;
}

body .site-header[data-nav-tone="dark"] .site-nav__link,
body .site-header[data-nav-tone="dark"] .site-nav__button {
  color: #050505 !important;
}

body .site-header[data-nav-tone="light"] .site-nav__link:hover,
body .site-header[data-nav-tone="light"] .site-nav__button:hover,
body .site-header[data-nav-tone="light"] .site-nav__item:focus-within .site-nav__button {
  color: #ffffff !important;
}

body .site-header[data-nav-tone="dark"] .site-nav__link:hover,
body .site-header[data-nav-tone="dark"] .site-nav__button:hover,
body .site-header[data-nav-tone="dark"] .site-nav__item:focus-within .site-nav__button {
  color: #050505 !important;
}

body .site-header[data-nav-tone="light"] .contact-popover__panel,
body .site-header[data-nav-tone="light"] .contact-popover:hover .contact-popover__panel,
body .site-header[data-nav-tone="light"] .contact-popover:focus-within .contact-popover__panel,
body .site-header[data-nav-tone="light"] .contact-popover__button,
body .site-header[data-nav-tone="light"] .contact-popover:hover .contact-popover__button,
body .site-header[data-nav-tone="light"] .contact-popover:focus-within .contact-popover__button {
  background: var(--accent-gradient) !important;
  color: #050505 !important;
}

body .site-header[data-nav-tone="dark"] .contact-popover__panel,
body .site-header[data-nav-tone="dark"] .contact-popover:hover .contact-popover__panel,
body .site-header[data-nav-tone="dark"] .contact-popover:focus-within .contact-popover__panel,
body .site-header[data-nav-tone="dark"] .contact-popover__button,
body .site-header[data-nav-tone="dark"] .contact-popover:hover .contact-popover__button,
body .site-header[data-nav-tone="dark"] .contact-popover:focus-within .contact-popover__button {
  background: #050505 !important;
  color: #ffffff !important;
}

body .site-header[data-nav-tone="light"] .contact-popover:hover .contact-popover__panel label,
body .site-header[data-nav-tone="light"] .contact-popover:focus-within .contact-popover__panel label {
  color: #050505 !important;
}

body .site-header[data-nav-tone="dark"] .contact-popover:hover .contact-popover__panel label,
body .site-header[data-nav-tone="dark"] .contact-popover:focus-within .contact-popover__panel label {
  color: #ffffff !important;
}

body .site-header[data-nav-tone="light"] .contact-popover:hover .contact-popover__panel input,
body .site-header[data-nav-tone="light"] .contact-popover:focus-within .contact-popover__panel input {
  background: rgba(10, 10, 10, 0.055) !important;
  color: #050505 !important;
}

body .site-header[data-nav-tone="dark"] .contact-popover:hover .contact-popover__panel input,
body .site-header[data-nav-tone="dark"] .contact-popover:focus-within .contact-popover__panel input {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
}

body .site-header[data-nav-tone="light"] .contact-popover:hover .contact-popover__submit,
body .site-header[data-nav-tone="light"] .contact-popover:focus-within .contact-popover__submit {
  border-color: #050505 !important;
  color: #050505 !important;
}

body .site-header[data-nav-tone="dark"] .contact-popover:hover .contact-popover__submit,
body .site-header[data-nav-tone="dark"] .contact-popover:focus-within .contact-popover__submit {
  border-color: #ffffff !important;
  color: #ffffff !important;
}

/* Gradient dot at the native cursor tip. */
body .pointer-cursor {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

body.pointer-cursor-ready .pointer-cursor {
  opacity: 1;
}

body .pointer-cursor__signal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2147483646;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--accent-gradient);
  pointer-events: none;
  will-change: transform;
}

/* Smooth header tone changes across dark, white, and lime scenes. */
body .site-header__logo,
body .site-header.is-past-hero .site-header__logo {
  position: relative !important;
}

body .site-header__logo-img {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: left top !important;
  opacity: 0 !important;
  transition: opacity 520ms cubic-bezier(0.22, 1, 0.36, 1) !important;
  transform: none !important;
}

body .site-header:not([data-nav-tone]) .site-header__logo-img--dark-bg,
body .site-header[data-nav-tone="light"] .site-header__logo-img--dark-bg,
body .site-header[data-nav-tone="dark"] .site-header__logo-img--light-bg {
  opacity: 1 !important;
}

body .site-header .site-nav__link,
body .site-header .site-nav__button {
  transition:
    color 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms ease !important;
}

body .site-header .contact-popover__panel {
  transition:
    max-height 820ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 520ms cubic-bezier(0.22, 1, 0.36, 1),
    color 520ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 720ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 560ms ease !important;
}

body .site-header .contact-popover__button,
body .site-header .contact-popover__panel .contact-popover__button,
body .site-header .contact-popover__submit,
body .site-header .contact-popover__panel label,
body .site-header .contact-popover__panel input {
  transition:
    background-color 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 520ms cubic-bezier(0.22, 1, 0.36, 1),
    color 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    transform 220ms ease !important;
}

body .contact-popover {
  transition: width 780ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body .contact-popover__panel label,
body .contact-popover__panel input,
body .contact-popover__submit {
  transform: translateY(-0.6rem) !important;
  transition:
    background-color 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 520ms cubic-bezier(0.22, 1, 0.36, 1),
    color 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 560ms ease,
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body .contact-popover:hover .contact-popover__panel label,
body .contact-popover:hover .contact-popover__panel input,
body .contact-popover:hover .contact-popover__submit,
body .contact-popover:focus-within .contact-popover__panel label,
body .contact-popover:focus-within .contact-popover__panel input,
body .contact-popover:focus-within .contact-popover__submit {
  transform: translateY(0) !important;
}

/* About page. */
body.about-page {
  background: #050505;
  color: #ffffff;
}

html.about-page-root {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body.about-page .site-header[data-nav-tone="light"] .site-nav__link,
body.about-page .site-header[data-nav-tone="light"] .site-nav__button {
  color: #ffffff !important;
}

body.about-page .site-header[data-nav-tone="light"] .contact-popover__panel,
body.about-page .site-header[data-nav-tone="light"] .contact-popover__button {
  background: var(--accent-gradient) !important;
  color: #050505 !important;
}

/* Final services section tuning: smaller heading and staggered card reveal. */
body .services--hire .services__heading .section-title {
  max-width: 19ch !important;
  font-size: clamp(1.45rem, 2.32vw, 2.65rem) !important;
  line-height: 1.08 !important;
}

body .services--hire .services-hire-cards .feature-card {
  --rise-delay: 0ms;
  opacity: 0;
  transform: translate3d(0, 2.7rem, 0) scale(0.985);
  animation: none !important;
  transition:
    opacity 460ms ease var(--rise-delay),
    transform 560ms cubic-bezier(0.16, 0.9, 0.22, 1) var(--rise-delay),
    background 220ms ease 0ms,
    border-color 220ms ease 0ms,
    box-shadow 220ms ease 0ms,
    color 220ms ease 0ms !important;
}

body .services--hire .services-hire-cards.cards-visible .feature-card {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

body .services--hire .services-hire-cards.cards-visible .feature-card:nth-child(1) {
  --rise-delay: 0ms;
}

body .services--hire .services-hire-cards.cards-visible .feature-card:nth-child(2) {
  --rise-delay: 120ms;
}

body .services--hire .services-hire-cards.cards-visible .feature-card:nth-child(3) {
  --rise-delay: 240ms;
}

body .services--hire .services-hire-cards.cards-visible .feature-card:nth-child(4) {
  --rise-delay: 360ms;
}

body .services--hire .services-hire-cards .feature-card:hover,
body .services--hire .services-hire-cards .feature-card:focus-within {
  background: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 1.2rem 3rem rgba(255, 255, 255, 0.08) !important;
  transform: translate3d(0, -0.5rem, 0) scale(1) !important;
  transition:
    background 220ms ease 0ms,
    border-color 220ms ease 0ms,
    box-shadow 220ms ease 0ms,
    color 220ms ease 0ms,
    transform 300ms cubic-bezier(0.2, 0.8, 0.2, 1) 190ms !important;
}

body .services--hire .services-hire-cards.cards-visible .feature-card:hover,
body .services--hire .services-hire-cards.cards-visible .feature-card:focus-within {
  animation: none !important;
  opacity: 1;
  transform: translate3d(0, -0.5rem, 0) scale(1) !important;
}

@media (min-width: 981px) {
  body .services.page-section.services--hire {
    display: grid;
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    align-items: start;
    padding-top: clamp(6rem, 12.9vh, 6.35rem) !important;
    padding-bottom: clamp(1.2rem, 3vh, 2.4rem) !important;
  }

  body .services--hire .section-shell {
    display: grid;
    gap: clamp(1rem, 2.2vh, 1.7rem);
  }

  body .services--hire .services__heading {
    margin-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body .services--hire .feature-card,
  body .services--hire.is-visible .feature-card {
    opacity: 1;
    transform: none !important;
    animation: none !important;
  }
}

body .about-page-hero.page-section,
body .about-page-principles.page-section,
body .about-page-process.page-section,
body .about-page-manifesto.page-section,
body .about-page-team.page-section {
  display: grid;
  height: 100vh;
  min-height: 100vh;
  padding: 0;
  border-top: 0;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

body .about-page-hero.page-section {
  background:
    radial-gradient(circle at 74% 18%, rgba(42, 194, 60, 0.2), transparent 28rem),
    #050505;
  color: #ffffff;
}

body .about-page-hero::before,
body .about-page-principles::before,
body .about-page-manifesto::before,
body .about-page-team::before {
  display: none;
}

body .about-page-hero__shell,
body .about-page-principles__shell {
  display: grid;
  width: min(100%, 92rem);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(6rem, 9vw, 8rem) clamp(1.25rem, 7vw, 7rem);
  align-items: center;
}

body .about-page-hero__shell {
  justify-items: start;
}

body .about-page-hero__kicker {
  margin: 0 0 clamp(1rem, 1.8vw, 1.55rem);
  color: transparent;
  background-image: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(0.88rem, 1vw, 1.08rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body .about-page-hero__title {
  max-width: 58rem;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.2vw, 6.8rem);
  font-weight: 780;
  line-height: 0.96;
  letter-spacing: 0;
}

body .about-page-hero__copy {
  max-width: 43rem;
  margin: clamp(1.5rem, 2.5vw, 2.4rem) 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 1.22vw, 1.28rem);
  line-height: 1.45;
}

body .about-page-principles.page-section {
  background: #ffffff;
  color: #050505;
}

body .about-page-principles__shell {
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 1.42fr);
  grid-template-rows: 1fr auto;
  column-gap: clamp(2.5rem, 5vw, 5.5rem);
  row-gap: clamp(2rem, 3.2vw, 3rem);
  padding-block: clamp(5rem, 7vw, 6.5rem) clamp(2rem, 3vw, 2.8rem);
}

body .about-page-principles__intro {
  align-self: center;
  max-width: 30rem;
  transform: translateY(clamp(-0.75rem, -0.8vw, -0.35rem));
}

body .about-page-principles__title {
  max-width: 25rem;
  margin: 0;
  color: #050505;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.35vw, 3.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
}

body .about-page-principles__accent {
  display: block;
  width: clamp(2.4rem, 4vw, 3.4rem);
  height: 2px;
  margin: clamp(1.45rem, 2.3vw, 2rem) 0 clamp(1.5rem, 2.5vw, 2.15rem);
  background: var(--accent-gradient);
}

body .about-page-principles__copy {
  max-width: 24rem;
  margin: 0;
  color: rgba(5, 5, 5, 0.68);
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  line-height: 1.45;
}

body .about-page-principles__timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-self: center;
  gap: clamp(1.25rem, 2.4vw, 2.75rem);
  margin: 0;
  padding: clamp(4rem, 5.8vw, 5.5rem) 0 0;
  list-style: none;
}

body .about-page-principles__timeline::before {
  position: absolute;
  top: clamp(1.45rem, 2.15vw, 1.95rem);
  right: 0.45rem;
  left: clamp(1.65rem, 2.2vw, 2rem);
  height: 1px;
  content: "";
  background: rgba(5, 5, 5, 0.18);
}

body .about-page-principles__timeline::after {
  position: absolute;
  top: calc(clamp(1.45rem, 2.15vw, 1.95rem) - 4px);
  right: 0;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--accent-gradient);
  border-radius: 999px;
}

body .about-page-principles__step {
  position: relative;
  display: grid;
  align-content: start;
  min-width: 0;
}

body .about-page-principles__step::before {
  position: absolute;
  top: clamp(2.95rem, 4.15vw, 3.65rem);
  left: clamp(1.45rem, 2vw, 1.75rem);
  width: 1px;
  height: clamp(1.65rem, 2.6vw, 2.35rem);
  content: "";
  background-image: linear-gradient(to bottom, rgba(5, 5, 5, 0.2) 45%, transparent 0);
  background-size: 1px 7px;
}

body .about-page-principles__marker {
  position: absolute;
  top: calc(-1 * clamp(4rem, 5.8vw, 5.5rem));
  left: 0;
  z-index: 1;
  display: grid;
  width: clamp(3rem, 4.3vw, 3.65rem);
  aspect-ratio: 1;
  place-items: center;
  color: #050505;
  background: #ffffff;
  border: 1px solid rgba(5, 5, 5, 0.16);
  border-radius: 999px;
  font-size: clamp(0.9rem, 1.1vw, 1.04rem);
  font-weight: 700;
}

body .about-page-principles__marker::after {
  position: absolute;
  top: 50%;
  right: -0.48rem;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--accent-gradient);
  border-radius: 999px;
  transform: translateY(-50%);
}

body .about-page-principles__step h3 {
  max-width: 100%;
  margin: 0;
  color: #050505;
  font-size: clamp(1.25rem, 1.58vw, 1.56rem);
  line-height: 1.12;
  text-wrap: balance;
}

body .about-page-principles__step-rule {
  display: block;
  width: clamp(2rem, 3.2vw, 2.8rem);
  height: 2px;
  margin: clamp(1.1rem, 1.5vw, 1.35rem) 0 clamp(1.3rem, 1.7vw, 1.55rem);
  background: var(--accent-gradient);
}

body .about-page-principles__step p {
  max-width: 15.5rem;
  margin: 0;
  color: rgba(5, 5, 5, 0.68);
  font-size: clamp(0.9rem, 0.96vw, 0.96rem);
  line-height: 1.43;
}

body .about-page-principles__footer {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  padding-top: clamp(1.4rem, 2.3vw, 2rem);
  border-top: 1px solid rgba(5, 5, 5, 0.16);
}

body .about-page-principles__brand,
body .about-page-principles__link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #050505;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

body .about-page-principles__brand span {
  width: 10px;
  height: 10px;
  background: var(--accent-gradient);
  border-radius: 999px;
}

body .about-page-principles__link {
  transition: color 240ms ease;
}

body .about-page-principles__link span {
  color: transparent;
  background-image: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 1.45em;
  line-height: 0.8;
  transition: transform 240ms ease;
}

body .about-page-principles__link:hover,
body .about-page-principles__link:focus-visible {
  color: rgba(5, 5, 5, 0.72);
}

body .about-page-principles__link:hover span,
body .about-page-principles__link:focus-visible span {
  transform: translateX(0.35rem);
}

body .about-page-process.page-section {
  align-items: center;
  background: #ffffff;
  color: #050505;
}

body .about-page-process__panel {
  width: min(76rem, calc(100% - 6rem));
  margin: 0 auto;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

body .about-page-process__heading {
  margin-bottom: 2.2rem;
}

body .about-page-process__heading p {
  margin: 0 0 0.7rem;
  color: #1a1a1a;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
}

body .about-page-process__heading h2 {
  margin: 0;
  color: #0a0a0a;
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.06;
}

body .about-page-process__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body .about-page-process__item {
  min-width: 0;
}

body .about-page-process__visual {
  position: relative;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 20px;
}

body .about-page-process__visual--analysis {
  padding: 1.25rem;
  background: #e2e2da;
}

body .about-page-process__mini {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

body .about-page-process__mini span {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  place-items: center;
  border-radius: 999px;
  background: #050505;
}

body .about-page-process__mini svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: none;
  stroke: #2AC23C;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

body .about-page-process__mini p {
  margin: 0;
  color: #0a0a0a;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.08;
}

body .about-page-process__mini small {
  display: block;
  margin-top: 0.16rem;
  color: #5f5f57;
  font-size: 0.68rem;
  font-weight: 600;
}

body .about-page-process__chart {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7.5rem;
  fill: none;
  stroke: #0a0a0a;
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  stroke-width: 3;
  animation: process-chart-draw 3600ms cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

body .about-page-process__visual--dark {
  display: grid;
  align-content: center;
  padding: 1.25rem 1.4rem;
  background: #050505;
}

body .about-page-process__visual--dark span {
  display: flex;
  min-height: 2.65rem;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #222222;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 600;
  opacity: 0.62;
  animation: process-row-focus 4200ms ease-in-out infinite;
}

body .about-page-process__visual--dark span:nth-child(2) {
  animation-delay: 700ms;
}

body .about-page-process__visual--dark span:nth-child(3) {
  animation-delay: 1400ms;
}

body .about-page-process__visual--dark span:nth-child(4) {
  animation-delay: 2100ms;
}

body .about-page-process__visual--dark span:last-child {
  border-bottom: 0;
}

body .about-page-process__visual--dark i {
  display: block;
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--accent-gradient);
  box-shadow: 0 0 0 rgba(42, 194, 60, 0);
  animation: process-signal-pulse 1800ms ease-in-out infinite;
}

body .about-page-process__visual--lime {
  display: grid;
  align-content: center;
  gap: 0.65rem;
  padding: 1.1rem;
  background: var(--accent-gradient);
}

body .about-page-process__visual--lime span {
  display: flex;
  min-height: 2.55rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 0.9rem;
  border-radius: 12px;
  color: #ffffff;
  background: #050505;
  font-size: 0.82rem;
  font-weight: 700;
  transform: translateX(0);
  animation: process-channel-slide 3900ms ease-in-out infinite;
}

body .about-page-process__visual--lime span:nth-child(2) {
  animation-delay: 500ms;
}

body .about-page-process__visual--lime span:nth-child(3) {
  animation-delay: 1000ms;
}

body .about-page-process__visual--lime i {
  color: transparent;
  background-image: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 600;
}

body .about-page-process__visual--lime span:last-child i {
  color: rgba(255, 255, 255, 0.52);
}

body .about-page-process__visual--roi {
  display: grid;
  place-items: center;
  border: 1.5px solid #cfcfc6;
  background: transparent;
}

body .about-page-process__visual--roi svg {
  position: absolute;
  width: 7.4rem;
  height: 7.4rem;
  fill: none;
  transform: rotate(-90deg);
}

body .about-page-process__visual--roi circle {
  stroke: #d8d8cf;
  stroke-width: 11;
}

body .about-page-process__visual--roi circle:last-child {
  stroke: #0a0a0a;
  stroke-linecap: round;
  stroke-dasharray: 314;
  stroke-dashoffset: 314;
  animation: process-roi-ring 4200ms cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

body .about-page-process__visual--roi strong {
  position: relative;
  color: #0a0a0a;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1;
  animation: process-roi-number 4200ms ease-in-out infinite;
}

body .about-page-process__visual--roi span {
  position: absolute;
  top: calc(50% + 1.2rem);
  color: #777777;
  font-size: 0.68rem;
  font-weight: 700;
}

body .about-page-process__item h3 {
  margin: 1rem 0 0.38rem;
  color: #0a0a0a;
  font-size: 1.12rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.16;
}

body .about-page-process__item p {
  max-width: 13.5rem;
  margin: 0;
  color: #666666;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.45;
}

@keyframes process-chart-draw {
  0%,
  14% {
    stroke-dashoffset: 260;
  }

  42%,
  82% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -260;
  }
}

@keyframes process-row-focus {
  0%,
  18%,
  100% {
    opacity: 0.62;
  }

  28%,
  46% {
    opacity: 1;
  }
}

@keyframes process-signal-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(42, 194, 60, 0);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 0 0.45rem rgba(42, 194, 60, 0.12);
    transform: scale(1.08);
  }
}

@keyframes process-channel-slide {
  0%,
  18%,
  100% {
    transform: translateX(0);
  }

  34%,
  52% {
    transform: translateX(0.22rem);
  }
}

@keyframes process-roi-ring {
  0%,
  16% {
    stroke-dashoffset: 314;
  }

  46%,
  84% {
    stroke-dashoffset: 78;
  }

  100% {
    stroke-dashoffset: 314;
  }
}

@keyframes process-roi-number {
  0%,
  22%,
  100% {
    transform: scale(0.96);
  }

  46%,
  78% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  body .about-page-process__chart,
  body .about-page-process__visual--dark span,
  body .about-page-process__visual--dark i,
  body .about-page-process__visual--lime span,
  body .about-page-process__visual--roi circle:last-child,
  body .about-page-process__visual--roi strong {
    animation: none;
  }

  body .about-page-process__chart {
    stroke-dashoffset: 0;
  }

  body .about-page-process__visual--dark span {
    opacity: 1;
  }

  body .about-page-process__visual--roi circle:last-child {
    stroke-dashoffset: 78;
  }
}

body .about-page-manifesto.page-section {
  height: 100vh;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
  background: #000000;
  color: #ffffff;
}

body .about-page-manifesto__shell {
  display: grid;
  width: min(100%, 92rem);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(6.2rem, 11vh, 8rem) clamp(1.25rem, 7vw, 7rem) clamp(3.2rem, 6vh, 5rem);
  align-content: center;
  justify-items: center;
}

body .about-page-manifesto__copy {
  display: grid;
  max-width: min(50rem, 100%);
  gap: clamp(2.7rem, 5.5vh, 4.1rem);
  text-align: center;
}

body .about-page-manifesto__copy p {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: clamp(1.32rem, 1.3vw, 1.58rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.42;
  text-align: center;
}

@media (min-width: 981px) {
  body.about-page .desktop-nowrap {
    white-space: nowrap;
  }
}

body .about-page-team.page-section {
  --about-team-start: calc(max((100vw - 92rem) / 2, 0px) + clamp(1.25rem, 7vw, 7rem));
  --about-team-end: clamp(0.25rem, 0.5vw, 0.75rem);
  --about-team-width: min(75rem, calc(100vw - var(--about-team-start) - var(--about-team-end)));
  background: #000000;
  color: #ffffff;
}

body .about-page-team__shell {
  display: grid;
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(4.8rem, 6.8vh, 5.2rem) 0 clamp(0.75rem, 1.6vh, 1.2rem);
  align-content: center;
  gap: clamp(0.5rem, 1vh, 0.75rem);
}

body .about-page-team__heading {
  display: grid;
  width: var(--about-team-width);
  margin-left: var(--about-team-start);
  justify-self: start;
  gap: 0.25rem;
  justify-items: start;
}

body .about-page-team__kicker {
  margin: 0;
  color: transparent;
  background-image: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(0.82rem, 0.9vw, 0.98rem);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body .about-page-team__title {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading) !important;
  font-size: clamp(2rem, 3.35vw, 3.25rem);
  font-weight: 600 !important;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
}

body .about-page-team__track {
  display: grid;
  width: var(--about-team-width);
  margin-left: var(--about-team-start);
  justify-self: start;
  grid-auto-columns: clamp(17.45rem, 22.9vw, 18.1rem);
  grid-auto-flow: column;
  gap: clamp(0.35rem, 0.55vw, 0.55rem);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.35rem 0 0.4rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

body .about-page-team__track::-webkit-scrollbar {
  display: none;
}

body .about-page-team__card {
  display: grid;
  min-height: clamp(30rem, 41vw, 31.6rem);
  padding: clamp(0.92rem, 1.15vw, 1.02rem);
  align-content: start;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
  scroll-snap-align: start;
  transition:
    background 260ms ease,
    border-color 260ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

body .about-page-team__card:hover {
  border-color: rgba(42, 194, 60, 0.62);
  background: linear-gradient(90deg, rgba(42, 194, 60, 0.018), rgba(204, 255, 46, 0.018));
  transform: none;
}

body .about-page-team__image {
  position: relative;
  aspect-ratio: 3 / 4;
  margin: 0 0 clamp(1rem, 1.25vw, 1.25rem);
  overflow: hidden;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  clip-path: polygon(0 0, 100% 0, 100% 91%, 91% 100%, 0 100%);
}

body .about-page-team__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.02);
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

body .about-page-team__image img.about-page-team__image--luciano {
  object-position: center 34%;
}

body .about-page-team__card:hover .about-page-team__image img {
  transform: scale(1.035);
}

body .about-page-team__accent {
  width: 0;
  height: 2px;
  margin: 0 0 0.9rem;
  background: var(--accent-gradient);
  transition: width 320ms ease;
}

body .about-page-team__card:hover .about-page-team__accent {
  width: 34%;
}

body .about-page-team__card h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.35vw, 1.32rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

body .about-page-team__role {
  margin: 0.28rem 0 0.55rem;
  color: transparent;
  background-image: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.15;
  text-transform: uppercase;
}

body .about-page-team__card p:not(.about-page-team__role) {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.7rem, 0.78vw, 0.8rem);
  font-weight: 400;
  line-height: 1.25;
}

body .about-page-team__nav {
  display: flex;
  width: var(--about-team-width);
  margin-left: var(--about-team-start);
  padding-right: clamp(1rem, 1.6vw, 1.45rem);
  justify-self: start;
  justify-content: flex-end;
  margin-top: 0.3rem;
}

body .about-page-team__scroll-cue {
  display: inline-flex;
  min-width: 0;
  height: auto;
  padding: 0;
  align-items: center;
  gap: 0.5rem;
  border: 0;
  color: transparent;
  background-color: transparent;
  background-image: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

body .about-page-team__scroll-cue:hover {
  transform: translateX(0.16rem);
}

body .about-page-team__scroll-cue.is-muted {
  opacity: 0.28;
  pointer-events: none;
}

body .about-page-team__scroll-arrow {
  position: relative;
  display: inline-block;
  width: 1.45rem;
  height: 0.8rem;
  flex: 0 0 auto;
}

body .about-page-team__scroll-arrow::before,
body .about-page-team__scroll-arrow::after {
  position: absolute;
  content: "";
}

body .about-page-team__scroll-arrow::before {
  top: 50%;
  left: 0;
  width: 1.4rem;
  height: 2px;
  background: currentColor;
  transform: translateY(-50%);
}

body .about-page-team__scroll-arrow::after {
  top: 50%;
  right: 0;
  width: 0.46rem;
  height: 0.46rem;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* Global typography system. */
body {
  font-family: var(--font-body) !important;
  font-weight: 400;
}

body p,
body li,
body label,
body input,
body textarea,
body .section-copy,
body .services__intro,
body .scene-description,
body .feature-card p,
body .about-statement__copy,
body .cta__form,
body .footer {
  font-family: var(--font-body) !important;
  font-weight: 400 !important;
}

body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body .hero__title,
body .section-title,
body .cta__title,
body .scene-title,
body .feature-card h3,
body .about-page-hero__title,
body .about-page-principles__title,
body .statement-cycle__title {
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
}

@media (max-width: 860px) {
  html.about-page-root {
    scroll-snap-type: none;
  }

  body .about-page-hero.page-section,
  body .about-page-principles.page-section,
  body .about-page-process.page-section,
  body .about-page-manifesto.page-section,
  body .about-page-team.page-section {
    height: auto;
    scroll-snap-align: none;
  }

  body .about-page-principles__shell {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 2.25rem;
    padding-block: 5rem 2.5rem;
  }

  body .about-page-principles__intro {
    transform: none;
  }

  body .about-page-hero__title {
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  body .about-page-principles__title {
    font-size: clamp(2.1rem, 8.5vw, 3rem);
    line-height: 1.04;
  }

  body .about-page-principles__timeline {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 0;
  }

  body .about-page-principles__timeline::before,
  body .about-page-principles__timeline::after {
    display: none;
  }

  body .about-page-principles__step {
    min-height: 4.75rem;
    padding-left: 4.2rem;
  }

  body .about-page-principles__step::before {
    top: 3.4rem;
    left: 1.58rem;
    height: calc(100% - 1.5rem);
  }

  body .about-page-principles__step:last-child::before {
    display: none;
  }

  body .about-page-principles__marker {
    top: 0;
  }

  body .about-page-principles__step h3,
  body .about-page-principles__step p {
    max-width: 100%;
  }

  body .about-page-principles__step-rule {
    margin: 0.8rem 0 1rem;
  }

  body .about-page-principles__footer {
    gap: 1.25rem;
    flex-wrap: wrap;
  }

  body .about-page-process.page-section {
    min-height: auto;
    padding: 5.5rem 0 4rem;
    overflow: visible;
  }

  body .about-page-process__panel {
    width: min(100% - 2rem, 38rem);
    padding: 2rem 1.2rem;
    border-radius: 16px;
  }

  body .about-page-process__heading {
    margin-bottom: 1.7rem;
  }

  body .about-page-process__heading h2 {
    max-width: 12rem;
    font-size: 2.05rem;
  }

  body .about-page-process__grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  body .about-page-process__visual {
    height: 12rem;
    border-radius: 16px;
  }

  body .about-page-process__item h3,
  body .about-page-process__item p {
    max-width: 100%;
  }

  body .about-page-manifesto.page-section {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }

  body .about-page-manifesto__shell {
    min-height: 100svh;
    padding: 5rem 1.25rem 4.5rem;
  }

  body .about-page-manifesto__copy {
    max-width: 100%;
    gap: 2rem;
  }

  body .about-page-manifesto__copy p {
    font-size: clamp(1rem, 4.8vw, 1.32rem);
    line-height: 1.35;
  }

  body .about-page-manifesto__copy br {
    display: none;
  }

  body .about-page-team__shell {
    padding: 5rem 1.25rem 3.5rem;
  }

  body .about-page-team__track {
    width: 100%;
    grid-auto-columns: minmax(15.75rem, 78vw);
  }
}

@media (hover: none) {
  body .about-page-team__accent {
    width: 100%;
  }
}

/* CTA final: quiet split contact screen. */
body .cta.page-section {
  display: grid !important;
  min-height: 100vh !important;
  padding: 0 !important;
  align-items: stretch !important;
  background: #000000 !important;
  color: #ffffff !important;
  overflow: hidden !important;
}

body .cta .cta__panel {
  position: relative !important;
  display: grid !important;
  width: min(100%, 106rem) !important;
  min-height: 100vh !important;
  margin: 0 auto !important;
  padding: clamp(6.2rem, 9vw, 10.5rem) clamp(4rem, 5.4vw, 5.8rem) clamp(4.5rem, 7vw, 6.5rem) !important;
  grid-template-columns: minmax(24rem, 0.9fr) minmax(32rem, 1.1fr) !important;
  column-gap: clamp(4.5rem, 7vw, 7.5rem) !important;
  align-items: center !important;
  border-radius: 0 !important;
  background: transparent !important;
  overflow: visible !important;
}

body .cta .cta__panel::before {
  position: absolute !important;
  top: 20.5% !important;
  bottom: 18.5% !important;
  left: calc(50% - clamp(1rem, 2.5vw, 2.3rem)) !important;
  z-index: 0 !important;
  display: block !important;
  width: 1px !important;
  height: auto !important;
  content: "" !important;
  background: rgba(255, 255, 255, 0.18) !important;
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

body .cta .cta__panel::after {
  display: none !important;
}

body .cta .cta__copy {
  position: relative;
  z-index: 1;
  display: grid !important;
  max-width: 40rem;
  align-content: center !important;
  justify-items: start !important;
  gap: 0 !important;
  transform: translateY(clamp(0.4rem, 1.5vw, 1.2rem));
}

body .cta .cta__kicker {
  display: none !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: clamp(0.95rem, 1vw, 1.08rem) !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

body .cta .cta__title {
  width: min(36rem, 100%) !important;
  margin: 0 !important;
  color: #ffffff !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(3rem, 4.4vw, 4.55rem) !important;
  font-weight: 600 !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  text-wrap: balance !important;
}

body .cta .cta__title--video {
  display: grid !important;
  width: min(43rem, 100%) !important;
  gap: 0.02em !important;
  color: #ffffff !important;
  font-family: "Bebas Neue", var(--font-heading) !important;
  font-size: clamp(4.65rem, 5.8vw, 6.45rem) !important;
  font-weight: 400 !important;
  line-height: 0.9 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  text-wrap: balance !important;
}

body .cta .cta__title-line {
  display: flex;
  align-items: center;
  gap: clamp(0.52rem, 0.92vw, 0.86rem);
  white-space: nowrap;
}

body .cta .cta__title-text {
  display: inline-block;
}

body .cta .cta__video-slot {
  display: inline-block;
  width: clamp(6.55rem, 9.5vw, 8.85rem);
  height: 0.72em;
  overflow: hidden;
  border-radius: 8px;
  background: #d6d6d6;
  flex: 0 0 auto;
  transform: translateY(-0.02em);
}

body .cta .cta__video-slot video {
  display: block;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center 50%;
  filter: grayscale(1) contrast(1.05) brightness(0.92);
  opacity: 0.9;
  transform: translate(-4%, -4%);
}

body .cta .cta__support {
  width: min(34rem, 100%) !important;
  margin: clamp(1.35rem, 2vw, 1.9rem) 0 0 !important;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(1.02rem, 1.18vw, 1.22rem) !important;
  font-weight: 400 !important;
  line-height: 1.24 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

body .cta .cta__form {
  position: relative;
  z-index: 1;
  display: grid !important;
  width: 100% !important;
  max-width: 45rem !important;
  margin: 0 0 0 auto !important;
  padding: 0 !important;
  gap: clamp(1rem, 1.4vw, 1.35rem) !important;
  align-content: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body .cta .cta__status {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 clamp(0.9rem, 1.15vw, 1.15rem) !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: clamp(0.94rem, 1vw, 1.08rem) !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
}

body .cta .cta__status span {
  display: inline-block;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 1px;
  background: var(--accent-gradient);
}

body .cta .cta__form label {
  display: grid !important;
  gap: 0.62rem !important;
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: clamp(0.94rem, 1vw, 1.03rem) !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-align: left !important;
}

body .cta .cta__form label > span {
  display: inline-block;
}

body .cta .cta__form input,
body .cta .cta__form textarea {
  width: 100% !important;
  min-height: clamp(3.25rem, 3.85vw, 3.7rem) !important;
  padding: 0 clamp(1rem, 1.3vw, 1.2rem) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.055) !important;
  box-shadow: none !important;
  font: inherit !important;
  font-size: clamp(0.98rem, 1vw, 1.06rem) !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
  outline: 0 !important;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease !important;
}

body .cta .cta__form textarea {
  min-height: clamp(6.25rem, 7.4vw, 7.35rem) !important;
  padding-top: 1rem !important;
  resize: vertical;
}

body .cta .cta__form input::placeholder,
body .cta .cta__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.36) !important;
}

body .cta .cta__form input:focus,
body .cta .cta__form textarea:focus {
  border-color: rgba(42, 194, 60, 0.66) !important;
  background: rgba(255, 255, 255, 0.075) !important;
  box-shadow: none !important;
}

body .cta .cta__form button {
  justify-self: start !important;
  width: min(14rem, 100%) !important;
  min-height: clamp(3.2rem, 3.6vw, 3.6rem) !important;
  margin-top: clamp(0.32rem, 0.7vw, 0.75rem) !important;
  padding: 0 1.65rem !important;
  border: 0 !important;
  border-radius: 8px !important;
  color: #050505 !important;
  background: var(--accent-gradient) !important;
  box-shadow: none !important;
  font-family: var(--font-heading) !important;
  font-size: clamp(0.95rem, 1vw, 1.04rem) !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    transform 220ms ease !important;
}

body .cta .cta__form button:hover,
body .cta .cta__form button:focus-visible {
  background: var(--accent-gradient-hover) !important;
  box-shadow: none !important;
  transform: translateY(-2px) !important;
}

@media (max-width: 980px) {
  body .cta .cta__panel {
    min-height: auto !important;
    grid-template-columns: 1fr !important;
    row-gap: clamp(2.8rem, 8vw, 4rem) !important;
    padding: clamp(6rem, 14vw, 8rem) clamp(1.25rem, 6vw, 3.5rem) clamp(4rem, 10vw, 5rem) !important;
  }

  body .cta .cta__panel::before {
    display: none !important;
  }

  body .cta .cta__copy {
    max-width: 40rem;
    transform: none;
  }

  body .cta .cta__title {
    width: min(36rem, 100%) !important;
    font-size: clamp(2.7rem, 10vw, 4.4rem) !important;
  }

  body .cta .cta__title--video {
    width: min(35rem, 100%) !important;
    font-size: clamp(4rem, 13vw, 5.8rem) !important;
  }

  body .cta .cta__video-slot {
    width: clamp(4.7rem, 18vw, 6.8rem);
  }

  body .cta .cta__support {
    width: min(34rem, 100%) !important;
  }

  body .cta .cta__form {
    max-width: none !important;
    margin: 0 !important;
  }

  body .cta .cta__status {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  body .cta .cta__title {
    font-size: clamp(2.35rem, 12vw, 3.6rem) !important;
  }

  body .cta .cta__title--video {
    font-size: clamp(3.4rem, 15vw, 4.7rem) !important;
  }

  body .cta .cta__support br {
    display: none;
  }

  body .cta .cta__form button {
    width: 100% !important;
  }
}

/* Header contact button: keep the existing style, only make the shape fully pill-like. */
body .site-header .contact-popover__button,
body .site-header .contact-popover:hover .contact-popover__button,
body .site-header .contact-popover:focus-within .contact-popover__button,
body .site-header .contact-popover__panel .contact-popover__button,
body .site-header .contact-popover:hover .contact-popover__panel .contact-popover__button,
body .site-header .contact-popover:focus-within .contact-popover__panel .contact-popover__button {
  border-color: transparent !important;
  border-radius: 9999px !important;
  background: var(--accent-gradient) !important;
}

body .site-header .contact-popover:not(:hover):not(:focus-within),
body .site-header .contact-popover:not(:hover):not(:focus-within) .contact-popover__panel,
body .site-header .contact-popover:not(:hover):not(:focus-within) .contact-popover__button {
  border-radius: 9999px !important;
}

/* The hire buttons live inside cards and keep the card-specific reveal behavior. */
body .services--hire .feature-card__hire {
  border-radius: 9999px !important;
}

body .services--hire .feature-card__hire::after {
  display: none !important;
  content: none !important;
}

/* Action buttons: pill at rest, separate arrow circle on hover. Header Contato stays unchanged. */
body .hero__button,
body .about-page-hero__button,
body .services__cta,
body .scene-deck .scene-button,
body .about-statement__button,
body .service-action,
body .contact-popover__submit,
body .cta .cta__form button,
body .cta .cta__button {
  --boost-action-bg: var(--accent-gradient);
  --boost-action-fg: #050505;
  --boost-action-circle-bg: var(--boost-action-bg);
  --boost-action-circle-fg: var(--boost-action-fg);
  --boost-action-circle-size: clamp(2.85rem, 3.05vw, 3.32rem);
  --boost-action-circle-gap: 0.18rem;
  --boost-action-shift: 0px;
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: visible !important;
  border-radius: 999px !important;
  color: var(--boost-action-fg) !important;
  background: var(--boost-action-bg) !important;
  box-shadow: none !important;
  text-decoration: none !important;
  z-index: 0;
  isolation: isolate;
  translate: 0 0;
  transition:
    background 220ms ease,
    color 220ms ease,
    opacity 220ms ease,
    translate 440ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 220ms ease !important;
}

body .hero__button:hover,
body .hero__button:focus-visible,
body .about-page-hero__button:hover,
body .about-page-hero__button:focus-visible,
body .services__cta:hover,
body .services__cta:focus-visible,
body .scene-deck .scene-button:hover,
body .scene-deck .scene-button:focus-visible,
body .about-statement__button:hover,
body .about-statement__button:focus-visible,
body .service-action:hover,
body .service-action:focus-visible,
body .contact-popover__submit:hover,
body .contact-popover__submit:focus-visible,
body .cta .cta__form button:hover,
body .cta .cta__form button:focus-visible,
body .cta .cta__button:hover,
body .cta .cta__button:focus-visible {
  color: var(--boost-action-fg) !important;
  background: var(--boost-action-bg) !important;
  box-shadow: none !important;
  translate: var(--boost-action-shift) 0;
  transform: none !important;
}

body .hero__button::before,
body .about-page-hero__button::before,
body .services__cta::before,
body .scene-deck .scene-button::before,
body .about-statement__button::before,
body .service-action::before,
body .contact-popover__submit::before,
body .cta .cta__form button::before,
body .cta .cta__button::before {
  display: none;
  content: none;
}

body .hero__button::after,
body .about-page-hero__button::after,
body .services__cta::after,
body .scene-deck .scene-button::after,
body .about-statement__button::after,
body .service-action::after,
body .contact-popover__submit::after,
body .cta .cta__form button::after,
body .cta .cta__button::after {
  position: absolute;
  top: 50%;
  left: calc(100% + var(--boost-action-circle-gap));
  display: grid;
  width: var(--boost-action-circle-size);
  height: var(--boost-action-circle-size);
  place-items: center;
  border-radius: 50%;
  color: var(--boost-action-circle-fg);
  background: var(--boost-action-circle-bg);
  content: "\2197";
  font-size: clamp(0.92rem, 1vw, 1.12rem);
  font-weight: 900;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  -webkit-text-stroke: 0.045em currentColor;
  z-index: -1;
  transform: translate(calc(-100% - var(--boost-action-circle-gap)), -50%) scale(1);
  transition:
    opacity 120ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

body .hero__button:hover::after,
body .hero__button:focus-visible::after,
body .about-page-hero__button:hover::after,
body .about-page-hero__button:focus-visible::after,
body .services__cta:hover::after,
body .services__cta:focus-visible::after,
body .scene-deck .scene-button:hover::after,
body .scene-deck .scene-button:focus-visible::after,
body .about-statement__button:hover::after,
body .about-statement__button:focus-visible::after,
body .service-action:hover::after,
body .service-action:focus-visible::after,
body .contact-popover__submit:hover::after,
body .contact-popover__submit:focus-visible::after,
body .cta .cta__form button:hover::after,
body .cta .cta__form button:focus-visible::after,
body .cta .cta__button:hover::after,
body .cta .cta__button:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

body .services__cta > span[aria-hidden="true"] {
  display: none !important;
}

body .hero__button,
body .about-page-hero__button {
  --boost-action-shift: calc((var(--boost-action-circle-size) + var(--boost-action-circle-gap)) * -0.5);
}

body.service-page .traffic-video-hero__button {
  --boost-action-shift: 0px;
}

body .scene-deck .scene-panel--light .scene-button,
body .scene-deck .scene-panel--lime .scene-button {
  --boost-action-bg: #050505;
  --boost-action-fg: #ffffff;
}

body .contact-popover__submit {
  --boost-action-circle-size: 2.45rem;
}

body .contact-popover__submit::after {
  right: 0;
  left: auto;
  transform: translate(calc(-1 * (var(--boost-action-circle-size) + var(--boost-action-circle-gap))), -50%) scale(1);
}

body .contact-popover__submit:hover::after,
body .contact-popover__submit:focus-visible::after {
  opacity: 1;
  transform: translate(0, -50%) scale(1);
}

body .about-statement__button {
  --boost-action-circle-size: clamp(2.85rem, 3.05vw, 3.32rem);
  --boost-action-shift: calc((var(--boost-action-circle-size) + var(--boost-action-circle-gap)) * -0.5);
}

body .services__cta,
body .scene-deck .scene-button,
body .service-action,
body .contact-popover__submit,
body .cta .cta__form button {
  --boost-action-shift: 0px;
}

body .cta .cta__form button {
  width: auto !important;
  min-width: min(14rem, 100%) !important;
}

@media (hover: none) {
  body .services__cta,
  body .hero__button,
  body .about-page-hero__button,
  body .scene-deck .scene-button,
  body .about-statement__button,
  body .service-action,
  body .contact-popover__submit,
  body .cta .cta__form button,
  body .cta .cta__button {
    padding-right: calc(1.35rem + var(--boost-action-circle-size)) !important;
  }

  body .services__cta::after,
  body .hero__button::after,
  body .about-page-hero__button::after,
  body .scene-deck .scene-button::after,
  body .about-statement__button::after,
  body .service-action::after,
  body .contact-popover__submit::after,
  body .cta .cta__form button::after,
  body .cta .cta__button::after {
    right: auto;
    left: calc(100% + var(--boost-action-circle-gap));
    opacity: 1;
    transform: translate(0, -50%) scale(1);
  }

  body.home-page .hero__button {
    width: 149px !important;
    min-width: 149px !important;
    max-width: 149px !important;
    padding-inline: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
}

@media (max-width: 620px) {
  body .cta .cta__form button {
    width: 100% !important;
    min-width: 0 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body .services__cta::after,
  body .hero__button::after,
  body .about-page-hero__button::after,
  body .scene-deck .scene-button::after,
  body .about-statement__button::after,
  body .service-action::after,
  body .contact-popover__submit::after,
  body .cta .cta__form button::after,
  body .cta .cta__button::after {
    transition: none;
  }
}

/* First screen redesign: Bebas Neue title with inline video slot. */
body .hero {
  min-height: 100vh !important;
  min-height: 100svh !important;
  padding: clamp(5.5rem, 10vh, 8rem) clamp(1.25rem, 3vw, 3rem) clamp(3rem, 6vh, 5rem) !important;
  background: #000000 !important;
}

body .hero__content {
  display: grid !important;
  width: min(70rem, 100%) !important;
  justify-items: center !important;
  text-align: center !important;
  transform: translateY(clamp(-0.65rem, -1vh, -0.35rem)) !important;
}

body .hero__title {
  display: grid !important;
  width: min(62rem, 92vw) !important;
  gap: 0.02em !important;
  margin: 0 auto !important;
  color: #ffffff !important;
  font-family: "Bebas Neue", var(--font-heading) !important;
  font-size: clamp(4.25rem, 7.3vw, 7.05rem) !important;
  font-weight: 400 !important;
  line-height: 0.89 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  text-wrap: balance !important;
}

body .hero__title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.54rem, 0.95vw, 0.92rem);
  white-space: nowrap;
}

body .hero__video-slot {
  display: inline-block;
  width: clamp(5.15rem, 10.3vw, 8.35rem);
  height: 0.74em;
  overflow: hidden;
  border-radius: 8px;
  background: #d6d6d6;
  transform: translateY(-0.02em);
  flex: 0 0 auto;
}

body .hero__video-slot video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  opacity: 0.82;
}

body .hero__video-fallback {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
  opacity: 0.82;
}

body .header-video-fallback {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body .about-statement__video-slot .header-video-fallback {
  filter: saturate(1.12) contrast(1.05);
  opacity: 1;
}

body .about-statement__video-slot--reel .header-video-fallback {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 320ms ease;
}

body .about-statement__video-slot--reel .header-video-fallback.is-active {
  opacity: 1;
}

body .cta .cta__video-slot .header-video-fallback,
body.service-page .traffic-video-hero__inline-video .header-video-fallback {
  width: 108%;
  height: 108%;
  object-fit: cover;
  transform: translate(-4%, -4%);
}

body .cta .cta__video-slot .header-video-fallback {
  object-position: center 50%;
  filter: grayscale(1) contrast(1.05) brightness(0.92);
  opacity: 0.9;
}

body.service-page .traffic-video-hero__inline-video .header-video-fallback {
  object-position: center 54%;
  filter: brightness(1.08) contrast(1.04) saturate(1.08);
  opacity: 1;
}

body .hero__subtitle {
  width: min(38rem, 88vw) !important;
  margin: clamp(1.35rem, 2.1vw, 1.85rem) auto 0 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-size: clamp(0.96rem, 1.12vw, 1.12rem) !important;
  font-weight: 400 !important;
  line-height: 1.26 !important;
}

body .hero__button {
  width: 173px !important;
  min-width: 173px !important;
  min-height: clamp(2.75rem, 3vw, 3.1rem) !important;
  margin-top: clamp(1.75rem, 2.65vw, 2.35rem) !important;
  padding: 0 clamp(1.55rem, 2vw, 2rem) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1rem, 1.12vw, 1.16rem) !important;
  font-weight: 600 !important;
}

body:not(.logo-reveal) .hero__button {
  opacity: 0 !important;
  transform: translateY(1.15rem) !important;
}

body.logo-reveal .hero__button {
  animation: boost-hero-copy-final 800ms cubic-bezier(0.18, 0.84, 0.22, 1) 520ms both !important;
}

@media (max-width: 760px) {
  body .hero {
    padding-top: 6rem !important;
  }

  body .hero__title {
    width: min(27rem, 94vw) !important;
    font-size: clamp(3.55rem, 16.2vw, 5.2rem) !important;
    line-height: 0.92 !important;
  }

  body .hero__title-line {
    gap: clamp(0.35rem, 1.6vw, 0.52rem);
  }

  body .hero__video-slot {
    width: clamp(4.1rem, 18vw, 5.4rem);
    height: 0.69em;
  }

  body .hero__video-slot video {
    display: none !important;
  }

  body .hero__video-fallback {
    display: block;
  }

  body .about-statement__video-slot video,
  body .cta .cta__video-slot video,
  body.service-page .traffic-video-hero__inline-video video {
    display: none !important;
  }

  body .about-statement__video-slot .header-video-fallback,
  body .cta .cta__video-slot .header-video-fallback,
  body.service-page .traffic-video-hero__inline-video .header-video-fallback {
    display: block;
  }

  body .hero__subtitle br {
    display: none;
  }
}

/* About page first screen: Bebas Neue title with inline team video. */
body.about-page .about-page-hero.page-section {
  min-height: 100vh !important;
  min-height: 100svh !important;
  background: #000000 !important;
  color: #ffffff !important;
}

body.about-page .about-page-hero__shell {
  display: grid !important;
  width: min(70rem, 100%) !important;
  min-height: 100vh !important;
  min-height: 100svh !important;
  margin: 0 auto !important;
  padding: clamp(5.5rem, 10vh, 8rem) clamp(1.25rem, 3vw, 3rem) clamp(3rem, 6vh, 5rem) !important;
  align-content: center !important;
  justify-items: center !important;
  text-align: center !important;
  transform: translateY(clamp(-0.65rem, -1vh, -0.35rem)) !important;
}

body.about-page .about-page-hero__title {
  display: grid !important;
  width: max-content !important;
  max-width: 92vw !important;
  gap: 0.02em !important;
  margin: 0 auto !important;
  justify-self: center !important;
  color: #ffffff !important;
  font-family: "Bebas Neue", var(--font-heading) !important;
  font-size: clamp(4.2rem, 6.4vw, 6.9rem) !important;
  font-weight: 400 !important;
  line-height: 0.89 !important;
  letter-spacing: 0 !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

body.about-page .about-page-hero__title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.54rem, 0.95vw, 0.92rem);
  white-space: nowrap;
}

body.about-page .about-page-hero__video-slot {
  display: inline-block;
  width: clamp(5.4rem, 9.1vw, 8.9rem);
  height: 0.74em;
  overflow: hidden;
  border-radius: 8px;
  background: #d6d6d6;
  transform: translateY(-0.055em);
  flex: 0 0 auto;
}

body.about-page .about-page-hero__video-slot video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.04);
  opacity: 1;
}

body.about-page .about-page-hero__team-reel {
  position: relative;
  background: #111111;
}

body.about-page .about-page-hero__team-reel img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  opacity: 0;
  transform: scale(1.025);
  animation: about-team-reel 6.4s linear infinite;
}

body.about-page .about-page-hero__team-reel img:nth-child(2) {
  animation-delay: 0.8s;
}

body.about-page .about-page-hero__team-reel img:nth-child(3) {
  animation-delay: 1.6s;
}

body.about-page .about-page-hero__team-reel img:nth-child(4) {
  animation-delay: 2.4s;
  object-position: center 32%;
}

body.about-page .about-page-hero__team-reel img:nth-child(5) {
  animation-delay: 3.2s;
}

body.about-page .about-page-hero__team-reel img:nth-child(6) {
  animation-delay: 4s;
}

body.about-page .about-page-hero__team-reel img:nth-child(7) {
  animation-delay: 4.8s;
}

body.about-page .about-page-hero__team-reel img:nth-child(8) {
  animation-delay: 5.6s;
  object-position: center 10%;
}

@keyframes about-team-reel {
  0%,
  11% {
    opacity: 1;
    transform: scale(1);
  }

  14%,
  100% {
    opacity: 0;
    transform: scale(1.025);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.about-page .about-page-hero__team-reel img {
    animation: none;
    opacity: 0;
  }

  body.about-page .about-page-hero__team-reel img:first-child {
    opacity: 1;
    transform: none;
  }
}

body.about-page .about-page-hero__copy {
  width: min(58rem, 82vw) !important;
  max-width: min(58rem, 82vw) !important;
  margin: clamp(0.8rem, 1.2vw, 1.15rem) auto 0 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1rem, 1.08vw, 1.18rem) !important;
  font-weight: 400 !important;
  line-height: 1.28 !important;
  text-wrap: balance !important;
}

body.about-page .about-page-hero__button {
  min-height: clamp(2.75rem, 3vw, 3.1rem) !important;
  margin-top: clamp(1.75rem, 2.65vw, 2.35rem) !important;
  padding: 0 clamp(1.55rem, 2vw, 2rem) !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1rem, 1.12vw, 1.16rem) !important;
  font-weight: 600 !important;
}

@media (max-width: 760px) {
  body.about-page .about-page-hero__shell {
    padding-top: 6rem !important;
  }

  body.about-page .about-page-hero__title {
    width: min(27rem, 94vw) !important;
    font-size: clamp(3.55rem, 16.2vw, 5.2rem) !important;
    line-height: 0.92 !important;
  }

  body.about-page .about-page-hero__title-line {
    gap: clamp(0.35rem, 1.6vw, 0.52rem);
  }

  body.about-page .about-page-hero__video-slot {
    width: clamp(4.1rem, 18vw, 5.4rem);
    height: 0.69em;
  }

body.about-page .about-page-hero__copy br {
    display: none;
  }
}

/* Service pages: one-screen Boost scenes with shared buttons and typography rhythm. */
html.service-page-root {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

body.service-page {
  margin: 0;
  overflow-x: hidden;
  color: #050505;
  background: #f7f7f4;
  font-family: var(--font-body);
}

body.service-page.is-loading {
  background: #000000;
}

body.service-page.sites-service-page {
  background: #000000;
}

body.service-page .site-header[data-nav-tone="dark"] .site-nav__link,
body.service-page .site-header[data-nav-tone="dark"] .site-nav__button {
  color: rgba(5, 5, 5, 0.78) !important;
}

body.service-page .site-header[data-nav-tone="light"] .site-nav__link,
body.service-page .site-header[data-nav-tone="light"] .site-nav__button {
  color: rgba(255, 255, 255, 0.86) !important;
}

body.service-page .site-header[data-nav-tone="dark"] .site-nav__link:hover,
body.service-page .site-header[data-nav-tone="dark"] .site-nav__button:hover,
body.service-page .site-header[data-nav-tone="dark"] .site-nav__item:focus-within .site-nav__button {
  color: #050505 !important;
}

body.service-page .site-header[data-nav-tone="light"] .site-nav__link:hover,
body.service-page .site-header[data-nav-tone="light"] .site-nav__button:hover,
body.service-page .site-header[data-nav-tone="light"] .site-nav__item:focus-within .site-nav__button {
  color: #ffffff !important;
}

body.service-page .service-section {
  position: relative;
  display: grid;
  min-height: 100vh;
  height: 100vh;
  align-items: center;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

body.service-page .service-page__main > .cta.page-section {
  opacity: 1;
  background: #000000 !important;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  transform: none;
}

body.service-page.sites-service-page #cta,
body.service-page.sites-service-page #cta::before,
body.service-page.sites-service-page #cta .cta__panel {
  background: #000000 !important;
}

body.service-page.sites-service-page #cta::before {
  background-image: none !important;
  opacity: 0 !important;
}

body.service-page .service-section--light {
  color: #050505;
  background: #f7f7f4;
}

body.service-page .service-section--dark {
  color: #ffffff;
  background: #000000;
}

body.traffic-service-page .service-page__main > .service-section:nth-of-type(2),
body.traffic-service-page .service-page__main > .service-section:nth-of-type(3),
body.traffic-service-page .service-page__main > .service-section:nth-of-type(4) {
  color: #ffffff;
  background: #000000;
}

body.service-page .service-section--lime {
  color: #050505;
  background: var(--accent-gradient);
}

body.service-page .service-section__shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(22rem, 0.78fr);
  gap: 6.5rem;
  width: min(82rem, calc(100% - 8rem));
  margin: 0 auto;
  align-items: center;
}

body.service-page .service-section__copy,
body.service-page .service-section__side {
  display: grid;
  gap: 1.7rem;
  align-content: center;
  justify-items: start;
}

body.service-page .service-kicker {
  margin: 0;
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.38em;
  line-height: 1;
  text-transform: uppercase;
}

body.service-page .service-title {
  max-width: 20ch;
  margin: 0;
  color: currentColor;
  font-size: 3.45rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.02;
}

body.service-page .service-title--hero {
  max-width: 15ch;
  font-size: 4.05rem;
  line-height: 1;
}

body.service-page .service-copy {
  max-width: 31rem;
  margin: 0;
  color: #76766f;
  font-size: 1.34rem;
  font-weight: 600;
  line-height: 1.38;
}

body.service-page .service-copy span {
  display: block;
}

body.service-page .service-copy--wide {
  max-width: 34rem;
}

body.service-page .service-section--dark .service-copy {
  color: rgba(255, 255, 255, 0.72);
}

body.service-page .service-section--lime .service-copy {
  color: rgba(5, 5, 5, 0.72);
}

body.service-page .service-action {
  min-height: 3.45rem;
  padding: 0 1.55rem;
  border: 0;
  font-size: 1.06rem;
  font-weight: 900;
  line-height: 1;
}

body.service-page .service-hero .service-section__shell {
  padding-top: 2.8rem;
}

body.service-page .service-section--light .service-action,
body.service-page .service-section--lime .service-action {
  --boost-action-bg: #050505;
  --boost-action-fg: #ffffff;
}

body.service-page .service-section--dark .service-action {
  --boost-action-bg: var(--accent-gradient);
  --boost-action-fg: #050505;
}

body.service-page .service-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  max-width: 32rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.service-page .service-platforms li {
  display: inline-grid;
  min-height: 2.35rem;
  padding: 0 1rem;
  place-items: center;
  border: 1px solid rgba(5, 5, 5, 0.13);
  border-radius: 999px;
  color: #050505;
  background: #ffffff;
  font-size: 0.94rem;
  font-weight: 900;
  line-height: 1;
}

body.service-page .service-platforms li:nth-child(n + 4) {
  color: #ffffff;
  background: #050505;
  border-color: #050505;
}

body.service-page .service-ad-device {
  position: relative;
  width: min(23.2rem, 100%);
  min-height: 35rem;
  justify-self: center;
  padding: 2rem;
  border: 1px solid rgba(5, 5, 5, 0.05);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2.6rem 5.5rem rgba(5, 5, 5, 0.16);
}

body.service-page .service-ad-device::before {
  position: absolute;
  top: -7rem;
  right: -6rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 194, 60, 0.5), rgba(204, 255, 46, 0));
  content: "";
  pointer-events: none;
}

body.service-page .service-ad-device > * {
  position: relative;
  z-index: 1;
}

body.service-page .service-ad-device__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.35rem;
  color: #050505;
  font-weight: 900;
}

body.service-page .service-ad-device__header span:last-child {
  display: inline-grid;
  min-height: 1.75rem;
  padding: 0 0.75rem;
  place-items: center;
  border-radius: 999px;
  color: #2484ff;
  background: #e8f2ff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.service-page .service-ad-device__metric {
  position: relative;
  margin-bottom: 0.9rem;
  padding: 1.2rem 6.3rem 1.2rem 1.2rem;
  border-radius: 8px;
  background: #eef1f4;
}

body.service-page .service-ad-device__metric span,
body.service-page .service-ad-device__metric strong {
  display: block;
}

body.service-page .service-ad-device__metric span {
  color: #787b82;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

body.service-page .service-ad-device__metric strong {
  margin-top: 0.24rem;
  color: #050505;
  font-size: 1.75rem;
  line-height: 1;
}

body.service-page .service-ad-device__metric em {
  position: absolute;
  top: 50%;
  right: 1.15rem;
  display: grid;
  width: 4.4rem;
  height: 4.4rem;
  place-items: center;
  border-radius: 50%;
  color: #2484ff;
  background: #e1f0ff;
  font-style: normal;
  font-size: 1.1rem;
  font-weight: 900;
  transform: translateY(-50%);
}

body.service-page .service-ad-device__event {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  margin-top: 0.85rem;
  padding: 0.95rem;
  border: 1px solid rgba(5, 5, 5, 0.07);
  border-radius: 8px;
  background: #ffffff;
}

body.service-page .service-ad-device__event--strong {
  background: #e7f3ff;
}

body.service-page .service-ad-device__event > span {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: #050505;
  font-size: 0.86rem;
  font-weight: 900;
}

body.service-page .service-ad-device__event:nth-of-type(4) > span {
  color: #050505;
  background: var(--accent-gradient);
}

body.service-page .service-ad-device__event p {
  margin: 0;
}

body.service-page .service-ad-device__event strong,
body.service-page .service-ad-device__event small {
  display: block;
}

body.service-page .service-ad-device__event strong {
  color: #050505;
  font-size: 0.98rem;
  line-height: 1.18;
}

body.service-page .service-ad-device__event small {
  margin-top: 0.25rem;
  color: #797c84;
  font-size: 0.82rem;
  font-weight: 700;
}

body.service-page .service-ad-device__channels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.35rem;
}

body.service-page .service-ad-device__channels span {
  display: inline-grid;
  min-height: 1.85rem;
  padding: 0 0.68rem;
  place-items: center;
  border-radius: 999px;
  color: rgba(5, 5, 5, 0.72);
  background: #f1f1ed;
  font-size: 0.76rem;
  font-weight: 900;
}

body.service-page .service-signal-list {
  display: grid;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.service-page .service-signal-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 5rem;
  padding: 0 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: #ffffff;
  background: #050505;
  font-size: 1.08rem;
  font-weight: 900;
}

body.service-page .service-signal-list li span {
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 50%;
  background: var(--accent-gradient);
}

body.service-page .service-deliverables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

body.service-page .service-deliverable {
  min-height: 10.5rem;
  padding: 1.45rem;
  border: 1px solid rgba(5, 5, 5, 0.12);
  border-radius: 8px;
  color: #050505;
  background: #ffffff;
}

body.service-page .service-deliverable--dark {
  color: #ffffff;
  background: #050505;
}

body.service-page .service-deliverable strong {
  display: block;
  margin-bottom: 1.8rem;
  color: currentColor;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

body.service-page .service-deliverable--dark strong {
  color: transparent;
  background-image: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

body.service-page .service-deliverable p {
  max-width: 12rem;
  margin: 0;
  color: currentColor;
  opacity: 0.74;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

body.service-page .service-result-panel {
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #111111;
  box-shadow: 0 2.6rem 5rem rgba(0, 0, 0, 0.42);
}

body.service-page .service-result-panel p,
body.service-page .service-result-panel span {
  margin: 0;
}

body.service-page .service-result-panel > p {
  margin-bottom: 1.6rem;
  color: transparent;
  background-image: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body.service-page .service-result-panel > strong {
  display: block;
  margin-bottom: 0.45rem;
  color: #ffffff;
  font-size: 8rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.88;
}

body.service-page .service-result-panel > span {
  display: block;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  font-weight: 800;
}

body.service-page .service-result-panel__bar {
  height: 1rem;
  overflow: hidden;
  border-radius: 999px;
  background: #262626;
}

body.service-page .service-result-panel__bar span {
  display: block;
  width: 83%;
  height: 100%;
  border-radius: inherit;
  background: var(--accent-gradient);
}

body.service-page .service-result-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
}

body.service-page .service-result-panel__footer i {
  width: 0.82rem;
  height: 0.82rem;
  border-radius: 50%;
  background: var(--accent-gradient);
}

body.service-page .service-page__footer-line {
  position: absolute;
  right: 7.2rem;
  bottom: 3.5rem;
  left: 7.2rem;
  display: flex;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(5, 5, 5, 0.18);
  color: #050505;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  html.service-page-root {
    scroll-snap-type: none;
  }

  body.service-page .service-section {
    height: auto;
    min-height: auto;
    padding: 7.6rem 0 5.5rem;
    scroll-snap-align: none;
  }

  body.service-page .service-section__shell {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    width: min(100% - 2rem, 40rem);
  }

  body.service-page .service-faq-section .service-section__shell {
    width: min(100% - 1.25rem, 42rem);
  }

  body.service-page .service-title,
  body.service-page .service-title--hero {
    max-width: 12ch;
    font-size: 3.05rem;
    line-height: 1.02;
  }

  body.service-page .service-copy span {
    display: block;
  }

  body.service-page .service-ad-device {
    width: min(100%, 22rem);
    min-height: 32rem;
    padding: 1.45rem;
  }

  body.service-page .traffic-video-hero__frame {
    width: min(100% - 2rem, 42rem);
    height: auto;
    min-height: 34rem;
    max-height: none;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
  }

  body.service-page .traffic-video-hero__title {
    top: 50%;
    left: 50%;
    width: calc(100% - 3.2rem);
    font-size: 4.2rem;
    line-height: 0.94;
    transform: translate(-50%, -50%);
    white-space: normal;
  }

  body.service-page .traffic-video-hero__title span {
    display: block;
  }

  body.service-page .service-deliverables {
    grid-template-columns: 1fr;
  }

  body.service-page .service-result-panel {
    padding: 2rem;
  }

  body.service-page .service-result-panel > strong {
    font-size: 5.6rem;
  }

  body.service-page .service-page__footer-line {
    position: static;
    width: min(100% - 2rem, 40rem);
    margin: 3rem auto 0;
    gap: 1rem;
    flex-wrap: wrap;
  }
}

@media (max-width: 620px) {
  body.service-page .service-title,
  body.service-page .service-title--hero {
    font-size: 2.5rem;
  }

  body.service-page .service-copy {
    font-size: 1.08rem;
  }

  body.service-page .traffic-video-hero__frame {
    min-height: 28rem;
    border-radius: 16px;
  }

  body.service-page .traffic-video-hero__title {
    font-size: 3.15rem;
  }

  body.service-page .service-platforms li {
    min-height: 2.25rem;
    padding: 0 0.78rem;
    font-size: 0.86rem;
  }

  body.service-page .service-signal-list li {
    min-height: 4.7rem;
    font-size: 0.98rem;
  }
}

/* Targeted ads service page composition. */
body.service-page .service-section__shell--single {
  grid-template-columns: 1fr;
  gap: clamp(2.2rem, 4vw, 3.4rem);
}

body.service-page .service-title__accent {
  color: transparent;
  background-image: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

body.service-page .service-hero--ads {
  background:
    radial-gradient(circle at 82% 50%, rgba(42, 194, 60, 0.16), transparent 30rem),
    #000000;
}

body.service-page .service-hero--ads .service-copy {
  color: rgba(255, 255, 255, 0.72);
}

body.service-page .traffic-video-hero {
  padding: 0;
  background: #000000;
}

body.service-page .traffic-video-hero__frame {
  position: relative;
  width: min(92rem, calc(100% - 4rem));
  height: calc(100vh - 8.8rem);
  max-height: 39rem;
  min-height: 27.5rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 26px;
  background: #050505;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.46);
}

body.service-page .traffic-video-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: brightness(1.38) contrast(1.08) saturate(1.08);
  opacity: 0;
  object-fit: cover;
  object-position: center 58%;
  transition: opacity 420ms ease;
}

body.service-page .traffic-video-hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: opacity 420ms ease;
}

body.service-page .traffic-video-hero.is-video-ready .traffic-video-hero__media {
  opacity: 1;
}

body.service-page .traffic-video-hero.is-video-ready .traffic-video-hero__fallback {
  opacity: 0;
}

body.service-page .traffic-video-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.02)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.02) 42%, rgba(0, 0, 0, 0.14));
  pointer-events: none;
}

body.service-page .traffic-video-hero__title {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 9.6rem);
  margin: 0;
  color: #ffffff;
  font-family: "Bebas Neue", var(--font-heading) !important;
  font-size: 5.45rem;
  font-weight: 400 !important;
  letter-spacing: 0.03em;
  line-height: 0.92;
  opacity: 0;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  transition: opacity 420ms ease;
  white-space: nowrap;
}

body.service-page .traffic-video-hero.is-video-ready .traffic-video-hero__title {
  opacity: 1;
}

body.service-page .traffic-video-hero__title span {
  display: inline;
}

body.service-page .traffic-video-hero .traffic-video-hero__line {
  display: flex;
}

body.service-page .traffic-video-hero .traffic-video-hero__inline-video {
  display: inline-block;
}

body.service-page .traffic-video-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 25rem;
  gap: 4.5rem;
  width: min(88rem, calc(100% - 8rem));
  margin: 0 auto;
  align-items: center;
}

body.service-page .traffic-video-hero .traffic-video-hero__title {
  position: static;
  display: grid;
  width: auto;
  margin: 0;
  color: #ffffff;
  font-family: "Bebas Neue", var(--font-heading) !important;
  font-size: 8.28rem;
  font-weight: 400 !important;
  letter-spacing: 0;
  line-height: 0.88;
  opacity: 1;
  text-align: left;
  text-transform: uppercase;
  transform: translateX(1rem);
  transition: none;
  white-space: normal;
}

body.service-page .traffic-video-hero .traffic-video-hero__line {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}

body.service-page .traffic-video-hero .traffic-video-hero__inline-video {
  position: relative;
  display: inline-block;
  width: 10.45rem;
  height: 0.7em;
  overflow: hidden;
  border-radius: 8px;
  background:
    url("./assets/traffic-hero-poster.png") center / cover no-repeat,
    #050505;
  flex: 0 0 auto;
  transform: translateY(-0.02em);
}

body.service-page .traffic-video-hero__inline-video video {
  display: block;
  width: 108%;
  height: 108%;
  object-fit: cover;
  object-position: center 54%;
  filter: brightness(1.08) contrast(1.04) saturate(1.08);
  opacity: 1;
  transform: translate(-4%, -4%);
}

body.service-page .traffic-video-hero__actions {
  display: grid;
  justify-items: start;
  gap: 1.05rem;
  transform: translateX(-1rem);
}

body.service-page .traffic-video-hero__actions p {
  margin: 0 0 0.15rem;
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1;
}

body.service-page .traffic-video-hero__platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  width: min(25rem, 100%);
}

body.service-page .traffic-video-hero__platforms span {
  display: grid;
  min-height: 3rem;
  padding: 0 1.35rem;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 400;
  line-height: 1;
}

body.service-page .traffic-video-hero__button {
  min-width: 11.2rem;
  min-height: 3.15rem;
  padding: 0 2.2rem;
  font-size: 1.18rem;
  font-weight: 600;
  line-height: 1;
}

@media (max-width: 980px) {
  body.service-page .traffic-video-hero__layout {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    width: min(100% - 2rem, 40rem);
  }

  body.service-page .traffic-video-hero .traffic-video-hero__title {
    font-size: 4.8rem;
  }

  body.service-page .traffic-video-hero__line {
    white-space: normal;
  }

  body.service-page .traffic-video-hero__inline-video {
    width: clamp(5.15rem, 10.3vw, 8.35rem);
  }

  body.service-page .traffic-video-hero__platforms {
    width: min(100%, 24rem);
  }
}

@media (max-width: 620px) {
  body.service-page .traffic-video-hero .traffic-video-hero__title {
    font-size: 3.35rem;
  }

  body.service-page .traffic-video-hero__line {
    display: block;
    white-space: normal;
  }

  body.service-page .traffic-video-hero__inline-video {
    display: block;
    width: clamp(4.1rem, 18vw, 5.4rem);
    height: 0.69em;
    margin: 0.22rem 0 0.1rem;
  }

  body.service-page .traffic-video-hero__platforms {
    grid-template-columns: 1fr;
  }

  body.service-page .traffic-video-hero__platforms span,
  body.service-page .traffic-video-hero__button {
    min-height: 2.85rem;
    font-size: 1.05rem;
  }
}

body.service-page .service-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.45rem;
  align-items: center;
}

body.service-page .service-secondary-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  transition: color 220ms ease;
}

body.service-page .service-secondary-link:hover,
body.service-page .service-secondary-link:focus-visible {
  color: transparent;
  background-image: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

body.service-page .service-compare-section .service-section__copy,
body.service-page .service-included-section .service-section__copy,
body.service-page .service-process-section .service-section__copy,
body.service-page .service-proof-section .service-section__copy {
  max-width: 44rem;
}

body.service-page .service-compare-section .service-section__shell {
  grid-template-columns: minmax(0, 46rem) minmax(31rem, 1fr);
  align-content: center;
  align-items: center;
  gap: clamp(3.6rem, 5.8vw, 6rem);
  width: min(86rem, calc(100% - 8rem));
  transform: translateY(clamp(1.35rem, 3vh, 2.1rem));
}

body.service-page .service-compare-section .service-section__copy {
  grid-column: 2;
  grid-row: 1;
  gap: clamp(1.35rem, 1.8vw, 1.7rem);
  max-width: 32rem;
  justify-self: start;
}

body.service-page .service-compare-section .service-kicker {
  display: none;
}

body.service-page .service-compare-section .service-title {
  max-width: 24ch;
  color: #ffffff;
  font-size: clamp(2.15rem, 2.45vw, 2.5rem);
  line-height: 1.13;
  white-space: nowrap;
}

body.service-page .service-compare__lead {
  max-width: 25rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.28vw, 1.22rem);
  font-weight: 400;
  line-height: 1.32;
}

body.service-page .service-compare {
  display: grid;
  grid-column: 1;
  grid-row: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: clamp(0.9rem, 1.25vw, 1.15rem);
  width: 100%;
  max-width: 46rem;
  justify-self: start;
}

body.service-page .service-compare__card {
  display: flex;
  min-height: 0;
  aspect-ratio: 0.79 / 1;
  padding: clamp(1.65rem, 2.25vw, 2.45rem);
  flex-direction: column;
  justify-content: flex-start;
  border-radius: clamp(1.55rem, 2.05vw, 2.3rem);
}

body.service-page .service-compare__card h3,
body.service-page .service-included-card h3,
body.service-page .service-process h3 {
  margin: 0;
  font-size: clamp(1.25rem, 1.45vw, 1.42rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: 0;
}

body.service-page .service-compare__card-head {
  display: flex;
  min-height: 1.75rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

body.service-page .service-compare__card h3 {
  width: fit-content;
  padding: 0.3rem 0.82rem;
  border-radius: 999px;
  font-size: clamp(0.64rem, 0.74vw, 0.72rem);
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

body.service-page .service-compare__card-head > span {
  font-size: clamp(0.64rem, 0.7vw, 0.7rem);
  font-weight: 900;
  line-height: 1;
}

body.service-page .service-compare__card ul {
  display: grid;
  gap: clamp(1.05rem, 1.55vw, 1.58rem);
  margin: clamp(2rem, 3vw, 3rem) 0 0;
  padding: 0;
  list-style: none;
}

body.service-page .service-compare__card li {
  position: relative;
  display: grid;
  grid-template-columns: clamp(1.25rem, 1.45vw, 1.42rem) minmax(0, 1fr);
  column-gap: clamp(0.72rem, 1vw, 0.95rem);
  align-items: start;
  color: inherit;
  min-height: 0;
  padding: 0;
  border-top: 0;
  font-size: clamp(0.84rem, 0.96vw, 0.92rem);
  font-weight: 700;
  line-height: 1.24;
}

body.service-page .service-compare__card li::before {
  content: none;
}

body.service-page .service-compare__card li span {
  display: block;
}

body.service-page .service-compare__index {
  padding-top: 0.22rem;
  font-size: clamp(0.62rem, 0.7vw, 0.7rem);
  font-weight: 900;
  line-height: 1;
}

body.service-page .service-compare__text strong {
  display: block;
  font-size: clamp(0.98rem, 1.13vw, 1.1rem);
  font-weight: 900;
  line-height: 1.08;
}

body.service-page .service-compare__text span {
  margin-top: 0.34rem;
}

body.service-page .service-compare__roi {
  display: flex;
  margin-top: auto;
  padding-top: clamp(1.25rem, 1.9vw, 1.65rem);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid currentColor;
}

body.service-page .service-compare__roi span {
  font-size: clamp(0.66rem, 0.76vw, 0.74rem);
  font-weight: 900;
  line-height: 1;
}

body.service-page .service-compare__roi strong {
  font-size: clamp(1.02rem, 1.35vw, 1.3rem);
  font-weight: 900;
  line-height: 1;
}

body.service-page .service-compare__card--muted {
  color: rgba(255, 255, 255, 0.72);
  background: #000000;
  border: 2px solid rgba(255, 255, 255, 0.68);
}

body.service-page .service-compare__card--muted h3 {
  color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.07);
}

body.service-page .service-compare__card--muted .service-compare__card-head > span,
body.service-page .service-compare__card--muted .service-compare__index,
body.service-page .service-compare__card--muted li span + span {
  color: rgba(255, 255, 255, 0.34);
}

body.service-page .service-compare__card--muted .service-compare__text strong {
  color: rgba(255, 255, 255, 0.62);
}

body.service-page .service-compare__card--muted .service-compare__roi {
  color: rgba(255, 255, 255, 0.24);
}

body.service-page .service-compare__card--boost {
  color: #050505;
  background: var(--accent-gradient);
  border: 1px solid #2AC23C;
}

body.service-page .service-compare__card--boost h3 {
  color: #050505;
  background: transparent;
  -webkit-text-fill-color: #050505;
}

body.service-page .service-compare__card--boost .service-compare__card-head > span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

body.service-page .service-compare__card--boost .service-compare__card-head > span::before {
  width: 0.36rem;
  height: 0.36rem;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

body.service-page .service-compare__card--boost li span + span {
  color: rgba(5, 5, 5, 0.82);
}

body.service-page .service-compare__card--boost .service-compare__roi {
  color: rgba(5, 5, 5, 0.78);
}

body.service-page .service-compare__card--boost .service-compare__roi strong {
  color: #050505;
}

body.service-page .service-included-section .service-section__shell {
  align-content: center;
  gap: clamp(2.9rem, 4.5vw, 3.6rem);
  width: min(86rem, calc(100% - 8rem));
}

body.service-page .service-included-section .service-section__copy {
  gap: 0;
  max-width: none;
}

body.service-page .service-included-section .service-kicker {
  display: none;
}

body.service-page .service-included-section .service-title {
  max-width: none;
  font-size: clamp(2.35rem, 2.65vw, 2.75rem);
  line-height: 1.04;
}

body.service-page .service-included-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 1.7vw, 1.55rem);
}

body.service-page .service-included-card {
  position: relative;
  display: flex;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: clamp(2rem, 2.6vw, 2.65rem);
  flex-direction: column;
  justify-content: flex-end;
  border: 1.5px solid rgba(255, 255, 255, 0.86);
  border-radius: clamp(1.1rem, 1.55vw, 1.45rem);
  background: #000000;
  transition:
    border-color 260ms ease,
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.service-page .service-included-card:hover,
body.service-page .service-included-card:focus-within {
  border-color: #ffffff;
  transform: translateY(-0.18rem);
}

body.service-page .service-included-card > span {
  display: none;
}

body.service-page .service-included-card h3 {
  max-width: 12rem;
  color: #ffffff;
  font-size: clamp(1.42rem, 1.75vw, 1.7rem);
  line-height: 1.08;
}

body.service-page .service-included-card p {
  max-width: 12.5rem;
  margin: clamp(1rem, 1.3vw, 1.2rem) 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.08rem, 1.25vw, 1.22rem);
  font-weight: 400;
  line-height: 1.12;
}

body.service-page .service-included-card:nth-child(4) {
  color: #050505;
  background: var(--accent-gradient);
  border-color: #2AC23C;
}

body.service-page .service-included-card:nth-child(4) h3,
body.service-page .service-included-card:nth-child(4) p {
  color: #050505;
}

body.service-page .service-process-section .service-section__shell {
  grid-template-columns: minmax(19rem, 24rem) minmax(0, 1fr);
  align-content: center;
  align-items: start;
  gap: clamp(7rem, 10vw, 9rem);
  width: min(79rem, calc(100% - 9.75rem));
}

body.service-page .service-process-section .service-section__copy {
  gap: clamp(2rem, 3.3vw, 2.55rem);
  max-width: 22rem;
}

body.service-page .service-process-section .service-kicker {
  color: rgba(255, 255, 255, 0.36);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  letter-spacing: 0.34em;
}

body.service-page .service-process-section .service-title {
  max-width: 16ch;
  color: #ffffff;
  font-size: clamp(2.65rem, 3.18vw, 3rem);
  line-height: 0.96;
}

body.service-page .service-process {
  display: grid;
  gap: clamp(2.75rem, 5.1vw, 4.65rem);
  margin: 0;
  padding: 0;
  list-style: none;
  transform: translateX(clamp(6rem, 7vw, 8.5rem));
}

body.service-page .service-process::before,
body.service-page .service-process li::before {
  content: none;
}

body.service-page .service-process li {
  display: grid;
  grid-template-columns: 3.6rem minmax(0, 1fr);
  column-gap: clamp(1.8rem, 3.3vw, 3.15rem);
  align-items: start;
  min-width: 0;
}

body.service-page .service-process span {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: block;
  padding-top: 0.25rem;
  color: rgba(255, 255, 255, 0.28);
  font-size: clamp(1.04rem, 1.35vw, 1.24rem);
  font-weight: 900;
  line-height: 1;
}

body.service-page .service-process li:first-child span {
  color: transparent;
  background-image: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
}

body.service-page .service-process h3 {
  grid-column: 2;
  color: #ffffff;
  font-size: clamp(1.55rem, 1.95vw, 1.82rem);
  line-height: 1.04;
}

body.service-page .service-process p {
  grid-column: 2;
  max-width: 28rem;
  margin: 0.58rem 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  font-weight: 800;
  line-height: 1.18;
}

body.service-page .service-proof-section .service-section__shell {
  align-content: center;
}

body.service-page .service-proof {
  display: grid;
  gap: clamp(2rem, 3vw, 2.8rem);
}

body.service-page .service-proof__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

body.service-page .service-proof__metrics article {
  min-height: 13rem;
  padding: clamp(1.25rem, 1.8vw, 1.65rem);
  border: 1px solid rgba(5, 5, 5, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

body.service-page .service-proof__metrics strong {
  display: block;
  color: #050505;
  font-size: 5.4rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

body.service-page .service-proof__metrics span {
  display: block;
  max-width: 11rem;
  margin-top: 1.1rem;
  color: rgba(5, 5, 5, 0.72);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.22;
}

body.service-page .service-proof blockquote {
  max-width: 48rem;
  margin: 0;
  color: #050505;
  font-size: 1.38rem;
  font-weight: 900;
  line-height: 1.24;
}

body.service-page .service-faq-section .service-section__shell {
  grid-template-columns: 1fr;
  width: min(86rem, calc(100% - 8rem));
}

body.service-page .service-faq {
  display: grid;
  gap: 0.8rem;
  width: 100%;
}

body.service-page .service-faq details {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #050505;
}

body.service-page .service-faq details[open] {
  border-color: rgba(42, 194, 60, 0.8);
}

body.service-page .service-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.1rem;
  padding: 0 1.6rem;
  color: #ffffff;
  cursor: pointer;
  font-size: clamp(1.18rem, 1.48vw, 1.48rem);
  font-weight: 600;
  line-height: 1.14;
  list-style: none;
}

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

body.service-page .service-faq summary::after {
  color: #2AC23C;
  content: "+";
  font-size: 1.45rem;
  line-height: 1;
}

body.service-page .service-faq details[open] summary::after {
  content: "–";
}

body.service-page .service-faq p {
  max-width: none;
  margin: -0.1rem 1.6rem 1.45rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.02rem, 1.14vw, 1.16rem);
  font-weight: 700;
  line-height: 1.42;
}

@media (min-width: 981px) {
  body.service-page .service-faq p {
    white-space: nowrap;
  }
}

@media (max-width: 980px) {
  body.service-page .service-compare,
  body.service-page .service-included-grid,
  body.service-page .service-proof__metrics {
    grid-template-columns: 1fr;
  }

  body.service-page .service-compare-section .service-section__shell {
    grid-template-columns: 1fr;
    width: min(38rem, calc(100% - 2rem));
  }

  body.service-page .service-process-section .service-section__shell {
    grid-template-columns: 1fr;
    gap: 2.6rem;
    width: min(38rem, calc(100% - 2rem));
  }

  body.service-page .service-compare-section .service-section__copy,
  body.service-page .service-compare {
    grid-column: auto;
    grid-row: auto;
  }

  body.service-page .service-compare-section .service-title {
    white-space: normal;
  }

  body.service-page .service-compare::before {
    display: none;
  }

  body.service-page .service-compare__card {
    aspect-ratio: auto;
    min-height: auto;
  }

  body.service-page .service-compare__card + .service-compare__card {
    border-top-color: #2AC23C;
  }

  body.service-page .service-process {
    grid-template-columns: 1fr;
    gap: 2.1rem;
    padding: 0;
    transform: none;
  }

  body.service-page .service-process span {
    font-size: 1rem;
  }

  body.service-page .service-proof__metrics strong {
    font-size: 3.8rem;
  }

  body.service-page .service-proof blockquote {
    font-size: 1.18rem;
  }
}

body.service-page.traffic-service-page #traffic-problem,
body.service-page.traffic-service-page #traffic-included,
body.service-page.traffic-service-page #traffic-process,
body.service-page.traffic-service-page #traffic-faq {
  color: #ffffff !important;
  background: #000000 !important;
}

body.service-page.traffic-service-page #traffic-faq .service-faq details {
  background: #000000;
}

body.service-page .service-section--dark,
body.service-page .traffic-video-hero,
body.service-page .traffic-video-hero__frame,
body.service-page .service-platforms li:nth-child(n + 4),
body.service-page .service-ad-device__event > span,
body.service-page .service-signal-list li,
body.service-page .service-deliverable--dark,
body.service-page .service-faq details {
  background: #000000 !important;
}

body.service-page.traffic-service-page #traffic-process {
  color: #050505 !important;
  background: #ffffff !important;
}

body.service-page .traffic-work {
  display: grid;
  gap: clamp(1.72rem, 2.42vw, 2.38rem);
  width: min(89rem, calc(100% - 3.25rem));
  margin: 0 auto;
  padding-top: clamp(1.28rem, 2.42vw, 2.42rem);
}

body.service-page .traffic-work__title {
  margin: 0;
  color: #050505;
  font-size: clamp(1.9rem, 2.35vw, 2.35rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

body.service-page .traffic-work__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.52rem, 0.7vw, 0.74rem);
  align-items: start;
}

body.service-page .traffic-work__item {
  display: grid;
  min-width: 0;
  align-content: start;
}

body.service-page .traffic-work__visual {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  place-items: center;
  border-radius: clamp(0.98rem, 1.18vw, 1.18rem);
}

body.service-page .traffic-work__visual--chart {
  background: #000000;
}

body.service-page .traffic-work__search {
  display: grid;
  width: min(18.4rem, 78%);
  min-height: clamp(4.16rem, 4.98vw, 4.9rem);
  grid-template-columns: clamp(1.52rem, 1.8vw, 1.76rem) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(0.8rem, 1vw, 0.95rem);
  padding: 0 clamp(1.35rem, 1.68vw, 1.6rem);
  border-radius: 999px;
  color: #050505;
  background: #ffffff;
  font-size: clamp(1.2rem, 1.52vw, 1.48rem);
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 1.15rem 2.4rem rgba(0, 0, 0, 0.22);
}

body.service-page .traffic-work__search svg {
  display: block;
  width: 100%;
  height: auto;
  fill: #050505;
}

body.service-page .traffic-work__search span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.service-page .traffic-work__visual--creative {
  background: #000000;
}

body.service-page .traffic-work__folder-asset {
  position: absolute;
  inset: 0;
  display: block;
  background-image: url("./assets/card2-current.png?v=20260602-160428");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

body.service-page .traffic-work__folder {
  position: relative;
  display: block;
  width: min(12.2rem, 54%);
  height: clamp(5rem, 6.1vw, 5.95rem);
  margin-top: clamp(0.15rem, 0.3vw, 0.3rem);
}

body.service-page .traffic-work__folder-tab {
  position: absolute;
  top: 0.1rem;
  left: 0.1rem;
  width: 45%;
  height: 27%;
  background: linear-gradient(180deg, #74d6f6 0%, #4fc0e8 100%);
  border-radius: 0.42rem 0.42rem 0 0;
  box-shadow: inset 0 0.12rem 0 rgba(255, 255, 255, 0.55);
}

body.service-page .traffic-work__folder-tab::after {
  position: absolute;
  right: -30%;
  bottom: 0;
  width: 44%;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, #74d6f6 0%, #4fc0e8 100%);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

body.service-page .traffic-work__folder-body {
  position: absolute;
  inset: 19% 0 0;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: clamp(0.48rem, 0.58vw, 0.56rem);
  background: linear-gradient(180deg, #78d8f7 0%, #43b5e0 100%);
  box-shadow:
    inset 0 0.16rem 0 rgba(255, 255, 255, 0.58),
    inset 0 -0.14rem 0 rgba(5, 5, 5, 0.08),
    0 0.55rem 1rem rgba(0, 0, 0, 0.28);
}

body.service-page .traffic-work__folder-label {
  position: absolute;
  top: calc(50% + clamp(3.05rem, 3.65vw, 3.55rem));
  left: 50%;
  color: #ffffff;
  font-size: clamp(2.25rem, 2.9vw, 2.85rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  transform: translateX(-50%);
}

body.service-page .traffic-work__visual--launch {
  background:
    url("./assets/cardShopify.png?v=traffic-card-shopify-1") center / cover no-repeat,
    #2AC23C;
}

body.service-page .traffic-work__creative {
  position: absolute;
  width: 54%;
  height: 35%;
  border-radius: 0.58rem;
  background: #ffffff;
}

body.service-page .traffic-work__creative--back {
  opacity: 0.38;
  transform: translate(-0.62rem, -1.05rem) rotate(-5deg);
}

body.service-page .traffic-work-section--active .traffic-work__creative--back {
  animation: traffic-creative-back 2200ms cubic-bezier(0.2, 0.8, 0.2, 1) 220ms infinite alternate;
}

body.service-page .traffic-work__creative--middle {
  opacity: 0.64;
  transform: translate(0.55rem, -0.28rem) rotate(3deg);
}

body.service-page .traffic-work-section--active .traffic-work__creative--middle {
  animation: traffic-creative-middle 2200ms cubic-bezier(0.2, 0.8, 0.2, 1) 340ms infinite alternate;
}

body.service-page .traffic-work__creative--front {
  display: grid;
  gap: 0.46rem;
  padding: 1rem;
  place-content: center stretch;
  box-shadow: 0 0 0 1px rgba(5, 5, 5, 0.06);
  transform: translate(0, 0.58rem);
}

body.service-page .traffic-work-section--active .traffic-work__creative--front {
  animation: traffic-creative-front 2200ms cubic-bezier(0.2, 0.8, 0.2, 1) 460ms infinite alternate;
}

body.service-page .traffic-work__creative--front::after {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 0.66rem;
  height: 0.66rem;
  content: "";
  background: var(--accent-gradient);
  border-radius: 999px;
}

body.service-page .traffic-work__creative i,
body.service-page .traffic-work__creative b,
body.service-page .traffic-work__creative em {
  display: block;
  height: 0.54rem;
  border-radius: 999px;
  background: #050505;
}

body.service-page .traffic-work__creative i {
  width: 48%;
}

body.service-page .traffic-work__creative b {
  width: 76%;
}

body.service-page .traffic-work__creative em {
  width: 62%;
}

body.service-page .traffic-work__creative-frame {
  position: absolute;
  display: grid;
  width: 64%;
  height: 54%;
  padding: 1.14rem;
  align-content: end;
  gap: 0.54rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0.82rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 42%),
    #f5f5f2;
}

body.service-page .traffic-work__creative-frame::before {
  position: absolute;
  top: 0.88rem;
  left: 0.88rem;
  width: 3.12rem;
  height: 3.12rem;
  content: "";
  background: var(--accent-gradient);
  border-radius: 50%;
}

body.service-page .traffic-work__creative-frame i,
body.service-page .traffic-work__creative-frame b,
body.service-page .traffic-work__creative-frame em,
body.service-page .traffic-work__creative-frame small {
  display: block;
  height: 0.48rem;
  border-radius: 999px;
  background: #050505;
}

body.service-page .traffic-work__creative-frame i {
  width: 76%;
}

body.service-page .traffic-work__creative-frame b {
  width: 52%;
}

body.service-page .traffic-work__creative-frame em {
  width: 64%;
}

body.service-page .traffic-work__creative-frame small {
  width: 38%;
  background: #2AC23C;
}

body.service-page .traffic-work__creative-focus {
  position: absolute;
  width: 47%;
  height: 35%;
  border: 2px solid #2AC23C;
  border-radius: 0.88rem;
  opacity: 0;
  transform: translate(-0.75rem, -0.35rem);
}

body.service-page .traffic-work-section--active .traffic-work__creative-focus {
  animation: traffic-creative-scan 2400ms cubic-bezier(0.2, 0.8, 0.2, 1) 260ms infinite;
}

body.service-page .traffic-work__creative-chip {
  position: absolute;
  display: inline-grid;
  min-height: 1.82rem;
  padding: 0 0.74rem;
  place-items: center;
  border-radius: 999px;
  color: #050505;
  background: #ffffff;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
  opacity: 0;
}

body.service-page .traffic-work__creative-chip--copy {
  top: 17%;
  right: 12%;
}

body.service-page .traffic-work__creative-chip--visual {
  right: 10%;
  bottom: 28%;
}

body.service-page .traffic-work__creative-chip--oferta {
  bottom: 16%;
  left: 13%;
}

body.service-page .traffic-work-section--active .traffic-work__creative-chip--copy {
  animation: traffic-creative-chip 2400ms ease 180ms infinite;
}

body.service-page .traffic-work-section--active .traffic-work__creative-chip--visual {
  animation: traffic-creative-chip 2400ms ease 460ms infinite;
}

body.service-page .traffic-work-section--active .traffic-work__creative-chip--oferta {
  animation: traffic-creative-chip 2400ms ease 740ms infinite;
}

body.service-page .traffic-work__ad {
  position: absolute;
  top: 50%;
  left: clamp(1.18rem, 1.48vw, 1.38rem);
  display: grid;
  min-height: clamp(4.58rem, 5.42vw, 5.16rem);
  width: calc(100% - clamp(2.36rem, 2.96vw, 2.76rem));
  grid-template-columns: clamp(3.06rem, 3.58vw, 3.46rem) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(0.92rem, 1.12vw, 1.08rem);
  padding: clamp(0.64rem, 0.8vw, 0.76rem) clamp(0.98rem, 1.18vw, 1.12rem);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: clamp(1.38rem, 1.68vw, 1.62rem);
  color: #050505;
  background: #ffffff;
  box-shadow: 0 1.18rem 2.6rem rgba(0, 0, 0, 0.12);
  font-size: clamp(1.16rem, 1.36vw, 1.32rem);
  font-weight: 900;
  line-height: 1;
  backdrop-filter: none;
  will-change: opacity, transform;
  transform-origin: center;
}

body.service-page .traffic-work__ad::before {
  content: none;
}

body.service-page .traffic-work__ad-logo {
  display: grid;
  width: clamp(3.06rem, 3.58vw, 3.46rem);
  height: clamp(3.06rem, 3.58vw, 3.46rem);
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
}

body.service-page .traffic-work__ad-logo svg {
  display: block;
  width: 66%;
  height: 66%;
}

body.service-page .traffic-work__ad-logo--tiktok {
  background: #050505;
}

body.service-page .traffic-work__ad-logo--tiktok svg {
  fill: #ffffff;
}

body.service-page .traffic-work__ad-logo--google {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(5, 5, 5, 0.12);
}

body.service-page .traffic-work__ad-logo--google svg {
  width: 70%;
  height: 70%;
}

body.service-page .traffic-work__ad-logo--meta {
  background: #1877F2;
}

body.service-page .traffic-work__ad-logo--meta svg {
  width: 72%;
  height: 72%;
  fill: #ffffff;
}

body.service-page .traffic-work__ad b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  align-self: center;
  color: #050505;
  font-size: clamp(1.16rem, 1.36vw, 1.32rem);
  font-weight: 900;
  line-height: 1;
}

body.service-page .traffic-work__ad em {
  position: absolute;
  top: clamp(0.66rem, 0.82vw, 0.8rem);
  right: clamp(1.05rem, 1.26vw, 1.18rem);
  display: inline-flex;
  align-items: center;
  gap: 0.28em;
  color: rgba(5, 5, 5, 0.32);
  font-size: clamp(0.84rem, 0.96vw, 0.94rem);
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

body.service-page .traffic-work__ad em::before {
  width: 0.32em;
  height: 0.32em;
  content: "";
  background: currentColor;
  border-radius: 999px;
}

body.service-page .traffic-work__ad--top {
  z-index: 2;
  opacity: 0.35;
  filter: blur(1.6px);
  transform: translateY(-62px) scale(0.85);
}

body.service-page .traffic-work__ad--middle {
  z-index: 3;
  opacity: 0.65;
  filter: blur(0);
  transform: translateY(-28px) scale(0.92);
}

body.service-page .traffic-work__ad--front {
  z-index: 4;
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.96);
  background: #ffffff;
  box-shadow: 0 1.35rem 2.95rem rgba(0, 0, 0, 0.18);
  filter: blur(0);
  transform: translateY(10px) scale(1);
}

body.service-page .traffic-work__visual--roi {
  background: #f7f7f4;
}

body.service-page .traffic-work__roi-ring {
  --traffic-roi: 0%;
  display: flex;
  width: min(13.9rem, 78%);
  aspect-ratio: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, #f7f7f4 0 62%, transparent 63%),
    conic-gradient(#2AC23C 0 var(--traffic-roi), #e8e8e5 var(--traffic-roi) 100%);
}

body.service-page .traffic-work-section--active .traffic-work__roi-ring {
  animation: traffic-roi-pulse 2600ms cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

body.service-page .traffic-work__roi-ring strong,
body.service-page .traffic-work__roi-ring small {
  color: #050505;
}

body.service-page .traffic-work__roi-ring strong {
  font-size: clamp(2.58rem, 3.58vw, 3.68rem);
  font-weight: 900;
  line-height: 0.9;
}

body.service-page .traffic-work__roi-ring small {
  margin-top: 0.28rem;
  color: #8b8b87;
  font-size: clamp(1.08rem, 1.38vw, 1.28rem);
  font-weight: 900;
  line-height: 1;
}

body.service-page .traffic-work__copy {
  max-width: 17.8rem;
  margin-top: clamp(1.08rem, 1.34vw, 1.28rem);
}

body.service-page .traffic-work__copy h3,
body.service-page .traffic-work__copy p {
  margin: 0;
  color: #050505;
  font-size: clamp(1.07rem, 1.22vw, 1.18rem);
  letter-spacing: 0;
  line-height: 1.13;
}

body.service-page .traffic-work__copy h3 {
  display: inline;
  font-weight: 900;
}

body.service-page .traffic-work__copy p {
  display: inline;
  font-weight: 500;
}

body.service-page .traffic-work__button {
  margin-top: clamp(1.45rem, 2vw, 1.85rem);
}

body.service-page .traffic-work__mobile-action {
  display: none;
}

body.service-page.traffic-service-page #traffic-process .traffic-work__mobile-action {
  display: none !important;
}

body.service-page.sites-service-page #sites-problem {
  color: #050505;
  background: #ffffff;
}

body.service-page.automation-service-page #automation-problem {
  color: #050505;
  background: #ffffff !important;
}

body.service-page.content-service-page #content-problem {
  color: #050505;
  background: #ffffff !important;
}

body.service-page.sites-service-page #sites-included {
  color: #ffffff;
  background: #000000;
}

body.service-page.sites-service-page #sites-included .service-included-grid {
  column-gap: clamp(0.78rem, 1.12vw, 1.08rem);
}

body.service-page.sites-service-page #sites-included .service-included-card {
  text-decoration: none;
}

body.service-page.sites-service-page #sites-included .service-included-card h3 {
  max-width: none;
  font-size: clamp(1.16rem, 1.36vw, 1.34rem);
  line-height: 1.08;
  white-space: nowrap;
}

body.service-page.sites-service-page #sites-included .service-included-card p {
  max-width: 17rem;
  margin-top: clamp(0.78rem, 1.02vw, 1rem);
  font-size: clamp(0.99rem, 1.16vw, 1.12rem);
  line-height: 1.12;
}

body.service-page .growth-cards-section {
  color: #ffffff;
  background: #000000;
}

body.service-page .growth-cards-section .service-included-grid {
  column-gap: clamp(0.78rem, 1.12vw, 1.08rem);
}

body.service-page .growth-cards-section .service-included-card {
  text-decoration: none;
}

body.service-page .growth-cards-section .service-included-card h3 {
  max-width: none;
  font-size: clamp(1.16rem, 1.36vw, 1.34rem);
  line-height: 1.08;
  white-space: nowrap;
}

body.service-page .growth-cards-section .service-included-card p {
  max-width: 17rem;
  margin-top: clamp(0.78rem, 1.02vw, 1rem);
  font-size: clamp(0.99rem, 1.16vw, 1.12rem);
  line-height: 1.12;
}

body.service-page.sites-service-page #sites-problem .service-card:nth-of-type(-n + 3) .sites-card-showcase__visual {
  transform: scale(1.045);
  transform-origin: center;
}

body.service-page.sites-service-page #sites-problem .sites-card-showcase__grid {
  gap: clamp(1.72rem, 1.95vw, 2rem);
}

body.service-page .sites-card-showcase {
  grid-template-columns: 1fr;
  min-height: 100vh;
  align-content: center;
  gap: 0;
  width: min(88rem, calc(100% - 6rem));
  padding-top: clamp(1.7rem, 4.4vh, 3.4rem);
}

body.service-page .sites-card-showcase__title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.service-page .sites-card-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 19.8rem)) minmax(14.5rem, 18rem);
  justify-content: center;
  gap: clamp(0.86rem, 1.04vw, 1.08rem);
  align-items: center;
}

body.service-page.automation-service-page #automation-problem .sites-card-showcase__grid {
  grid-template-columns: repeat(3, minmax(0, 21.55rem));
}

body.service-page.content-service-page #content-problem .sites-card-showcase__grid {
  grid-template-columns: repeat(3, minmax(0, 21.55rem));
}

body.service-page.automation-service-page #automation-problem .sites-card-showcase__visual {
  background: #ffffff !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

body.service-page.content-service-page #content-problem .sites-card-showcase__visual {
  background: #ffffff !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

body.service-page.automation-service-page #automation-problem .sites-card-showcase__visual > img {
  transform: scale(1.04);
  transform-origin: center;
}

body.service-page.content-service-page #content-problem .sites-card-showcase__visual > img {
  transform: scale(1.04);
  transform-origin: center;
}

body.service-page .sites-card-showcase .service-card {
  display: grid;
  min-width: 0;
}

body.service-page .sites-card-showcase__visual {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: clamp(0.98rem, 1.18vw, 1.18rem);
  background: #000000;
}

body.service-page .sites-card-showcase__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.service-page .sites-card-showcase__visual--landing {
  background: #ffffff;
}

body.service-page .sites-card-showcase__visual--landing img {
  object-fit: contain;
  object-position: top center;
}

body.service-page .sites-card-showcase__visual--shopify {
  isolation: isolate;
}

body.service-page .sites-card-showcase__shopify-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

body.service-page .sites-card-showcase__shopify-stack {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

body.service-page .sites-card-showcase__shopify-stack img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(74%, 16.4rem);
  height: auto;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(0 0.64rem 1rem rgba(0, 0, 0, 0.2));
  transform: translate(-50%, -150%) scale(0.96);
  animation: shopify-notification-loop 8800ms cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

body.service-page .sites-card-showcase__shopify-stack img:nth-child(1) {
  animation-delay: -2200ms;
}

body.service-page .sites-card-showcase__shopify-stack img:nth-child(2) {
  animation-delay: -4400ms;
}

body.service-page .sites-card-showcase__shopify-stack img:nth-child(3) {
  animation-delay: -6600ms;
}

body.service-page .sites-card-showcase__shopify-stack img:nth-child(4) {
  animation-delay: 0ms;
}

body.service-page .sites-card-showcase__shopify-stack img.sites-card-showcase__shopify-clone {
  display: none;
}

@keyframes shopify-notification-loop {
  0% {
    opacity: 0;
    transform: translate(-50%, -218%) scale(0.94);
  }

  8% {
    opacity: 0;
    transform: translate(-50%, -190%) scale(0.96);
  }

  25% {
    opacity: 1;
    transform: translate(-50%, -157%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  75% {
    opacity: 1;
    transform: translate(-50%, 57%) scale(1);
  }

  88% {
    opacity: 0;
    transform: translate(-50%, 126%) scale(0.96);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 146%) scale(0.94);
  }
}

body.service-page .sites-card-showcase__copy {
  max-width: 22rem;
  margin-top: clamp(0.32rem, 0.42vw, 0.44rem);
}

body.service-page .sites-card-showcase__copy h3,
body.service-page .sites-card-showcase__copy p {
  font-size: clamp(1.02rem, 1.22vw, 1.2rem);
  line-height: 1.06;
}

body.service-page .sites-card-showcase__copy h3 {
  display: block;
  margin-bottom: 0.08rem;
}

body.service-page .sites-card-showcase__copy p {
  display: block;
  font-weight: 400;
  margin-top: 0;
}

body.service-page .sites-card-showcase__button {
  --boost-action-bg: #ffffff;
  --boost-action-fg: #050505;
  --boost-action-circle-bg: #050505;
  --boost-action-circle-fg: #ffffff;
  width: fit-content;
  min-width: clamp(9.5rem, 10.6vw, 10.9rem);
  min-height: clamp(2.45rem, 2.72vw, 2.72rem);
  margin-top: clamp(0.56rem, 0.72vw, 0.72rem);
  padding: 0 clamp(1.86rem, 2.25vw, 2.2rem);
  color: #050505;
  background: #ffffff;
  border: 1.5px solid #050505;
  box-shadow: none;
  font-weight: 700;
}

body.service-page .sites-card-showcase__button:hover,
body.service-page .sites-card-showcase__button:focus-visible {
  color: #050505;
  background: #ffffff;
  border-color: #050505;
  box-shadow: none;
}

body.service-page .sites-card-showcase__trust {
  display: grid;
  align-content: center;
  justify-items: center;
  min-width: 0;
  width: max-content;
  justify-self: center;
  padding-left: clamp(0.2rem, 0.7vw, 0.7rem);
  color: #050505;
  transform: translateY(clamp(-2rem, -2.1vw, -1.25rem));
}

body.service-page .sites-card-showcase__trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(11.6rem, 14.4vw, 14.2rem);
  margin-bottom: clamp(0.72rem, 0.86vw, 0.9rem);
}

body.service-page .sites-card-showcase__trust-badges span,
body.service-page .sites-card-showcase__trust-badges strong {
  display: grid;
  width: clamp(3.65rem, 4.82vw, 4.65rem);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 999rem;
}

body.service-page .sites-card-showcase__trust-badges span {
  background: #e8e8e5;
}

body.service-page .sites-card-showcase__trust-badges span:nth-child(2) {
  background: #dfdfdc;
  margin-left: clamp(-1.38rem, -1.46vw, -1.08rem);
}

body.service-page .sites-card-showcase__trust-badges span:nth-child(3) {
  background: #d2d2cf;
  margin-left: clamp(-1.38rem, -1.46vw, -1.08rem);
}

body.service-page .sites-card-showcase__trust-badges strong {
  margin-left: clamp(-1.38rem, -1.46vw, -1.08rem);
  background: #2AC23C;
  font-family: var(--font-heading);
  font-size: clamp(1.34rem, 1.78vw, 1.74rem);
  font-weight: 900;
  line-height: 1;
}

body.service-page .sites-card-showcase__trust p {
  margin: 0;
  width: clamp(11.6rem, 14.4vw, 14.2rem);
  text-align: center;
  font-size: clamp(1.08rem, 1.28vw, 1.24rem);
  line-height: 1;
  letter-spacing: 0;
}

body.service-page .sites-card-showcase__trust p strong,
body.service-page .sites-card-showcase__trust p span {
  display: block;
}

body.service-page .sites-card-showcase__trust p strong {
  font-weight: 900;
}

body.service-page .sites-card-showcase__trust p span {
  font-weight: 400;
  margin-top: 0.08rem;
  line-height: 1;
  white-space: nowrap;
}

body.service-page.sites-service-page .sites-multipage-section {
  color: #050505;
  background: #ffffff;
}

body.service-page.automation-service-page .sites-multipage-section {
  color: #050505;
  background: #ffffff;
}

body.service-page.content-service-page .sites-multipage-section {
  color: #050505;
  background: #ffffff;
}

body.service-page .sites-multipage {
  grid-template-columns: minmax(0, 1.18fr) minmax(22rem, 0.72fr);
  gap: clamp(3.4rem, 5vw, 5rem);
  width: min(88rem, calc(100% - 8rem));
}

body.service-page .sites-multipage__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.58 / 1;
  overflow: hidden;
  border-radius: clamp(1.05rem, 1.35vw, 1.32rem);
  background: #d9d9d9;
}

body.service-page .sites-multipage__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.service-page .sites-multipage__copy {
  display: grid;
  max-width: 31rem;
  gap: clamp(1.24rem, 1.6vw, 1.55rem);
  align-content: center;
}

body.service-page .sites-multipage__copy p {
  margin: 0;
  color: #050505;
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
}

body.service-page .sites-multipage__copy strong {
  font-weight: 900;
}

body.service-page.sites-service-page .sites-ecommerce-detail-section {
  color: #050505;
  background: #ffffff;
}

body.service-page.automation-service-page .sites-ecommerce-detail-section {
  color: #050505;
  background: #ffffff;
}

body.service-page.content-service-page .sites-ecommerce-detail-section {
  color: #050505;
  background: #ffffff;
}

body.service-page.content-service-page .content-design-media picture,
body.service-page.content-service-page .content-design-media img,
body.service-page.content-service-page .content-design-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.service-page.content-service-page #content-process .content-design-media video {
  transform: scale(1.012);
  transform-origin: center;
}

body.service-page .sites-ecommerce-detail {
  grid-template-columns: minmax(24rem, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3.4rem, 5vw, 5rem);
  width: min(88rem, calc(100% - 8rem));
}

body.service-page .sites-ecommerce-detail__copy {
  display: grid;
  max-width: 38rem;
  gap: clamp(1.24rem, 1.65vw, 1.55rem);
  align-content: center;
}

body.service-page .sites-ecommerce-detail__copy p {
  margin: 0;
  color: #050505;
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
}

body.service-page .sites-ecommerce-detail__copy strong {
  font-weight: 900;
}

body.service-page .sites-ecommerce-detail__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.58 / 1;
  overflow: hidden;
  border-radius: clamp(1.05rem, 1.35vw, 1.32rem);
  background: #e8e8e5;
}

body.service-page .sites-ecommerce-detail__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.service-page.sites-service-page .sites-landing-detail-section {
  color: #050505;
  background: #ffffff;
}

body.service-page.automation-service-page .sites-landing-detail-section {
  color: #050505;
  background: #ffffff;
}

body.service-page .sites-landing-detail {
  grid-template-columns: minmax(0, 1.18fr) minmax(22rem, 0.72fr);
  gap: clamp(3.4rem, 5vw, 5rem);
  width: min(88rem, calc(100% - 8rem));
}

body.service-page .sites-landing-detail__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.58 / 1;
  overflow: hidden;
  border-radius: clamp(1.05rem, 1.35vw, 1.32rem);
  background: #d9d9d9;
}

body.service-page .sites-landing-detail__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.service-page .sites-landing-detail__copy {
  display: grid;
  max-width: 31rem;
  gap: clamp(1.24rem, 1.6vw, 1.55rem);
  align-content: center;
}

body.service-page .sites-landing-detail__copy p {
  margin: 0;
  color: #050505;
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
}

body.service-page .sites-landing-detail__copy strong {
  font-weight: 900;
}

@keyframes traffic-chart-draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes traffic-chart-dot {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.8);
  }
  20% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translate(clamp(9rem, 11.5vw, 11.5rem), clamp(-6.4rem, -7vw, -5.4rem)) scale(1);
  }
}

@keyframes traffic-creative-scan {
  0% {
    opacity: 0;
    transform: translate(-0.75rem, -0.35rem) scale(0.9);
  }
  22%,
  64% {
    opacity: 1;
    transform: translate(0.6rem, 0.35rem) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(0.9rem, 0.6rem) scale(0.94);
  }
}

@keyframes traffic-creative-chip {
  0%,
  12% {
    opacity: 0;
    transform: translateY(0.35rem) scale(0.92);
  }
  28%,
  72% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-0.22rem) scale(0.96);
  }
}

@keyframes traffic-creative-back {
  to {
    transform: translate(-0.95rem, -1.2rem) rotate(-8deg);
  }
}

@keyframes traffic-creative-middle {
  to {
    transform: translate(0.78rem, -0.48rem) rotate(5deg);
  }
}

@keyframes traffic-creative-front {
  to {
    transform: translate(0.05rem, 0.36rem) rotate(-1deg);
  }
}

@keyframes traffic-roi-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  68% {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.service-page .traffic-work__visual--chart path {
    stroke-dashoffset: 0;
  }

  body.service-page .traffic-work-section--active .traffic-work__visual--chart path,
  body.service-page .traffic-work-section--active .traffic-work__creative,
  body.service-page .traffic-work-section--active .traffic-work__creative-focus,
  body.service-page .traffic-work-section--active .traffic-work__creative-chip,
  body.service-page .traffic-work-section--active .traffic-work__ad,
  body.service-page .traffic-work-section--active .traffic-work__roi-ring {
    animation: none;
  }
}

@media (max-width: 980px) {
  body.service-page .traffic-work {
    width: min(38rem, calc(100% - 2rem));
    padding: 6.5rem 0 3rem;
  }

  body.service-page .traffic-work__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  body.service-page .traffic-work__visual {
    min-height: 13rem;
  }

  body.service-page .sites-card-showcase {
    width: min(46rem, calc(100% - 2rem));
  }

  body.service-page .sites-card-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.service-page.automation-service-page #automation-problem .sites-card-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.service-page .sites-card-showcase__trust {
    min-height: 12rem;
    padding-left: 0;
    align-content: end;
  }

  body.service-page .sites-multipage {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: min(46rem, calc(100% - 2rem));
  }

  body.service-page .sites-multipage__copy {
    max-width: 100%;
  }

  body.service-page .sites-ecommerce-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: min(46rem, calc(100% - 2rem));
  }

  body.service-page .sites-ecommerce-detail__copy {
    max-width: 100%;
    order: 2;
  }

  body.service-page .sites-ecommerce-detail__media {
    order: 1;
  }

  body.service-page .sites-landing-detail {
    grid-template-columns: 1fr;
    gap: 2rem;
    width: min(46rem, calc(100% - 2rem));
  }

  body.service-page .sites-landing-detail__copy {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  body.service-page .traffic-work__grid {
    grid-template-columns: 1fr;
  }

  body.service-page .traffic-work__visual {
    aspect-ratio: 1.25 / 1;
  }

  body.service-page .sites-card-showcase {
    min-height: auto;
    padding: 6.25rem 0 3.75rem;
  }

  body.service-page .sites-card-showcase__grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  body.service-page.automation-service-page #automation-problem .sites-card-showcase__grid {
    grid-template-columns: 1fr;
  }

  body.service-page .sites-card-showcase__visual {
    aspect-ratio: 1 / 1;
  }

  body.service-page .sites-card-showcase__trust {
    min-height: auto;
    padding: 0.5rem 0 0;
  }

  body.service-page .sites-multipage-section {
    padding: 5.8rem 0 4.2rem;
  }

  body.service-page .sites-multipage__media {
    aspect-ratio: 1.18 / 1;
  }

  body.service-page .sites-ecommerce-detail-section {
    padding: 5.8rem 0 4.2rem;
  }

  body.service-page .sites-ecommerce-detail__media {
    aspect-ratio: 1.18 / 1;
  }

  body.service-page .sites-landing-detail-section {
    padding: 5.8rem 0 4.2rem;
  }

  body.service-page .sites-landing-detail__media {
    aspect-ratio: 1.18 / 1;
  }

}

/* Final gradient accent system for secondary pages. */
body.about-page .contact-popover__button,
body.about-page .contact-popover__panel .contact-popover__button,
body.about-page .about-page-hero__button,
body.about-page .about-page-team__accent,
body.about-page .about-page-principles__accent,
body.about-page .about-page-principles__step-rule,
body.about-page .about-page-principles__brand span,
body.about-page .about-page-principles__marker::after,
body.about-page .about-page-process__visual--dark i,
body.about-page .about-page-process__visual--lime,
body.service-page .boost-preloader__progress,
body.service-page .contact-popover__button,
body.service-page .contact-popover__panel .contact-popover__button,
body.service-page .service-action,
body.service-page .service-section--lime,
body.service-page .service-ad-device__event:nth-of-type(4) > span,
body.service-page .service-signal-list li span,
body.service-page .service-result-panel__bar span,
body.service-page .service-result-panel__footer i,
body.service-page .service-compare__card--boost,
body.service-page .service-included-card:nth-child(4) {
  background: var(--accent-gradient) !important;
}

body.service-page.traffic-service-page #traffic-process .traffic-work__button {
  --boost-action-bg: #050505;
  --boost-action-fg: #ffffff;
  --boost-action-circle-bg: #050505;
  --boost-action-circle-fg: #ffffff;
  width: auto !important;
  min-width: 11.2rem !important;
  max-width: max-content !important;
  min-height: 3.15rem !important;
  padding: 0 2.2rem !important;
  color: #ffffff !important;
  background: #050505 !important;
  font-size: 1.18rem;
  font-weight: 600;
}

body.service-page.traffic-service-page #traffic-process .traffic-work__button::after {
  color: #ffffff !important;
  background: #050505 !important;
}

body.about-page .about-page-hero__kicker,
body.about-page .about-page-team__kicker,
body.about-page .about-page-team__role,
body.about-page .about-page-team__scroll-cue,
body.about-page .about-page-principles__link span,
body.about-page .about-page-process__visual--lime i,
body.service-page .service-title__accent,
body.service-page .service-deliverable--dark strong,
body.service-page .service-result-panel > p,
body.service-page .service-secondary-link:hover,
body.service-page .service-secondary-link:focus-visible,
body.service-page .service-compare__card--boost h3,
body.service-page .service-process li:first-child span {
  color: transparent !important;
  background-image: var(--accent-gradient) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
}

body.service-page .service-compare__card--boost h3 {
  color: #050505 !important;
  background: transparent !important;
  background-image: none !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  -webkit-text-fill-color: #050505 !important;
}

body.about-page .site-header[data-nav-tone="dark"] .contact-popover__button,
body.about-page .site-header[data-nav-tone="dark"] .contact-popover__panel .contact-popover__button,
body.service-page .site-header[data-nav-tone="dark"] .contact-popover__button,
body.service-page .site-header[data-nav-tone="dark"] .contact-popover__panel .contact-popover__button {
  color: #ffffff !important;
  background: #050505 !important;
  border-color: #050505 !important;
}

body .site-header[data-nav-tone="dark"] .contact-popover:hover .contact-popover__submit,
body .site-header[data-nav-tone="dark"] .contact-popover:focus-within .contact-popover__submit,
body.about-page .site-header[data-nav-tone="dark"] .contact-popover:hover .contact-popover__submit,
body.about-page .site-header[data-nav-tone="dark"] .contact-popover:focus-within .contact-popover__submit,
body.service-page .site-header[data-nav-tone="dark"] .contact-popover:hover .contact-popover__submit,
body.service-page .site-header[data-nav-tone="dark"] .contact-popover:focus-within .contact-popover__submit {
  color: #ffffff !important;
  background: #050505 !important;
  border-color: #050505 !important;
}

body .site-header[data-nav-tone="dark"] .contact-popover__button,
body .site-header[data-nav-tone="dark"] .contact-popover__panel .contact-popover__button,
body .site-header[data-nav-tone="dark"] .contact-popover:hover .contact-popover__button,
body .site-header[data-nav-tone="dark"] .contact-popover:focus-within .contact-popover__button,
body .site-header[data-nav-tone="dark"] .contact-popover:hover .contact-popover__panel .contact-popover__button,
body .site-header[data-nav-tone="dark"] .contact-popover:focus-within .contact-popover__panel .contact-popover__button {
  color: #ffffff !important;
  background: #050505 !important;
  border-color: #050505 !important;
}

body.about-page .pointer-cursor__signal,
body.service-page .pointer-cursor__signal {
  background: var(--accent-gradient) !important;
}

body.home-page .reveal:not(.scene-deck),
body.home-page .reveal:not(.scene-deck).is-visible,
body.home-page .hero__eyebrow,
body.home-page .hero__title,
body.home-page .hero__subtitle,
body.home-page .services--hire .services-hire-cards,
body.home-page .services--hire .feature-card,
body.home-page .services--hire.is-visible .feature-card,
body.home-page .services--hire .services-hire-cards.cards-visible .feature-card {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

/* Header menu override after legacy rules. */
body.site-menu-open {
  overflow: hidden !important;
}

body .site-header,
body .site-header.is-scrolled,
body .site-header.is-past-hero,
body .site-header:hover,
body .site-header:focus-within {
  grid-template-columns: minmax(4.2rem, 1fr) auto auto !important;
  align-items: start !important;
  gap: 0.62rem !important;
}

body .site-header .site-nav {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

body .site-header .contact-popover {
  grid-column: 2 !important;
  justify-self: end !important;
}

body .site-header .site-menu-toggle {
  grid-column: 3 !important;
  justify-self: end !important;
  align-self: start !important;
  position: relative !important;
  z-index: 101 !important;
  display: inline-grid !important;
  width: clamp(2.85rem, 3.45vw, 3.35rem) !important;
  height: clamp(2.85rem, 3.45vw, 3.35rem) !important;
  margin: 0 !important;
  padding: 0 !important;
  place-items: center !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  background: #050505 !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transform: none !important;
}

body .site-header .site-menu-toggle:hover,
body .site-header .site-menu-toggle:focus-visible {
  transform: scale(1.035) !important;
}

body .site-header .site-menu-toggle span {
  position: absolute !important;
  left: 50% !important;
  display: block !important;
  width: 1.18rem !important;
  height: 2px !important;
  border-radius: 999px !important;
  background: currentColor !important;
  transform: translateX(-50%) !important;
  transition:
    top 220ms ease,
    transform 220ms ease !important;
}

body .site-header .site-menu-toggle span:first-child {
  top: calc(50% - 0.26rem) !important;
}

body .site-header .site-menu-toggle span:last-child {
  top: calc(50% + 0.26rem) !important;
}

body .site-header .site-menu-toggle.is-open span:first-child {
  top: 50% !important;
  transform: translateX(-50%) rotate(45deg) !important;
}

body .site-header .site-menu-toggle.is-open span:last-child {
  top: 50% !important;
  transform: translateX(-50%) rotate(-45deg) !important;
}

body > .site-menu-overlay,
body .site-menu-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 72 !important;
  display: grid !important;
  align-items: end !important;
  width: 100vw !important;
  min-height: 100vh !important;
  min-height: 100dvh !important;
  padding: clamp(6.2rem, 10vw, 8.4rem) clamp(1.2rem, 4vw, 4rem) clamp(1.2rem, 3vw, 3rem) !important;
  color: #ffffff !important;
  background: #000000 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  transform: translateY(1.2rem) !important;
  transition:
    opacity 360ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0ms linear 520ms !important;
}

body > .site-menu-overlay.is-open,
body .site-menu-overlay.is-open {
  opacity: 1 !important;
  pointer-events: auto !important;
  visibility: visible !important;
  transform: translateY(0) !important;
  transition:
    opacity 320ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0ms linear 0ms !important;
}

/* Header equal-height controls. */
body .site-header {
  --boost-header-control-height: clamp(2.45rem, 2.92vw, 3.35rem);
}

body .site-header,
body .site-header.is-scrolled,
body .site-header.is-past-hero,
body .site-header:hover,
body .site-header:focus-within {
  align-items: center !important;
}

body .site-header .site-header__logo,
body .site-header.is-past-hero .site-header__logo {
  width: var(--boost-header-control-height) !important;
  height: var(--boost-header-control-height) !important;
  align-self: center !important;
}

body .site-header .contact-popover,
body .site-header .contact-popover:not(:hover):not(:focus-within),
body .site-header .contact-popover:not(:hover):not(:focus-within) .contact-popover__panel {
  height: var(--boost-header-control-height) !important;
  align-self: center !important;
}

body .site-header .contact-popover__panel {
  min-height: var(--boost-header-control-height) !important;
}

body .site-header .contact-popover__button,
body .site-header .contact-popover__panel .contact-popover__button {
  min-height: 0 !important;
  height: var(--boost-header-control-height) !important;
}

body .site-header .site-menu-toggle {
  width: var(--boost-header-control-height) !important;
  height: var(--boost-header-control-height) !important;
  align-self: center !important;
}

/* Force menu card images after all background resets. */
body .site-menu-card,
body .site-menu-card:visited {
  background-color: #000000 !important;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

body .site-menu-card img {
  display: none !important;
}
/* Final menu card image layer: keep service cards as the provided PNG buttons. */
body .site-menu-card,
body .site-menu-card:visited {
  position: relative !important;
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  padding: 0 !important;
  background-color: #050505 !important;
  overflow: hidden !important;
}

body .site-menu-card img {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
}
/* Final manual fullscreen menu cards. */
body .site-menu-card,
body .site-menu-card:visited {
  position: relative !important;
  display: block !important;
  aspect-ratio: 1 / 1 !important;
  min-height: 0 !important;
  padding: clamp(1.35rem, 2vw, 1.95rem) !important;
  border: 0 !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  color: #ffffff !important;
  background: #050505 !important;
  text-decoration: none !important;
}

body .site-menu-card span,
body .site-menu-card strong,
body .site-menu-card small,
body .site-menu-card em {
  position: static !important;
  display: initial !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  border: 0 !important;
  color: inherit !important;
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
}

body .site-menu-card__title {
  position: relative !important;
  z-index: 3 !important;
  display: block !important;
  max-width: 13rem !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1.25rem, 1.72vw, 1.72rem) !important;
  font-weight: 400 !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

body .site-menu-card__orders {
  position: absolute !important;
  left: clamp(1.15rem, 1.75vw, 1.65rem) !important;
  right: clamp(1.15rem, 1.75vw, 1.65rem) !important;
  bottom: clamp(1.35rem, 2vw, 1.9rem) !important;
  z-index: 2 !important;
  display: grid !important;
  gap: clamp(0.55rem, 0.78vw, 0.78rem) !important;
}

body .site-menu-card__order {
  display: grid !important;
  grid-template-columns: clamp(2.25rem, 3.3vw, 3.25rem) 1fr auto !important;
  align-items: center !important;
  gap: clamp(0.55rem, 0.9vw, 0.9rem) !important;
  min-height: clamp(3.05rem, 4.45vw, 4.45rem) !important;
  padding: 0 clamp(0.55rem, 0.86vw, 0.85rem) !important;
  border-radius: 12px !important;
  color: #050505 !important;
  background: #ffffff !important;
}

body .site-menu-card__shop {
  display: grid !important;
  place-items: center !important;
  width: clamp(2rem, 3vw, 2.95rem) !important;
  height: clamp(2rem, 3vw, 2.95rem) !important;
  border: 2px solid #eeeeee !important;
  border-radius: 10px !important;
  color: #73c13a !important;
  font-weight: 900 !important;
}

body .site-menu-card__order strong,
body .site-menu-card__order small,
body .site-menu-card__order em {
  display: block !important;
  font-family: var(--font-body) !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
}

body .site-menu-card__order strong {
  font-size: clamp(0.72rem, 1vw, 1rem) !important;
  font-weight: 800 !important;
}

body .site-menu-card__order small {
  font-size: clamp(0.62rem, 0.86vw, 0.86rem) !important;
}

body .site-menu-card__order em {
  align-self: start !important;
  padding-top: 0.35rem !important;
  color: #8a8a8a !important;
  font-size: clamp(0.5rem, 0.66vw, 0.66rem) !important;
  font-style: normal !important;
}

body .site-menu-card__roi {
  position: absolute !important;
  left: 50% !important;
  top: 56% !important;
  z-index: 2 !important;
  display: grid !important;
  place-items: center !important;
  width: clamp(7.4rem, 11vw, 10.7rem) !important;
  height: clamp(7.4rem, 11vw, 10.7rem) !important;
  border-radius: 50% !important;
  transform: translate(-50%, -50%) !important;
  background:
    radial-gradient(circle at center, #050505 0 58%, transparent 59%),
    conic-gradient(#ccff2e 0 25%, #35d638 25% 74%, #5c5c5c 74% 100%) !important;
}

body .site-menu-card__roi strong,
body .site-menu-card__roi small {
  display: block !important;
  text-align: center !important;
  font-family: var(--font-body) !important;
  line-height: 0.92 !important;
}

body .site-menu-card__roi strong {
  font-size: clamp(1.85rem, 2.7vw, 2.7rem) !important;
  font-weight: 900 !important;
}

body .site-menu-card__roi small {
  color: #9a9a9a !important;
  font-size: clamp(1.05rem, 1.45vw, 1.45rem) !important;
  font-weight: 800 !important;
}

body .site-menu-card__flow {
  position: absolute !important;
  left: 50% !important;
  top: 58% !important;
  z-index: 2 !important;
  display: block !important;
  width: clamp(9.5rem, 14vw, 14rem) !important;
  height: clamp(5rem, 7.5vw, 7.5rem) !important;
  transform: translate(-50%, -50%) !important;
}

body .site-menu-card__flow::before,
body .site-menu-card__flow::after {
  content: "" !important;
  position: absolute !important;
  left: 20% !important;
  right: 17% !important;
  top: 47% !important;
  height: 1px !important;
  background: #343434 !important;
}

body .site-menu-card__flow::after {
  top: 52% !important;
  transform: rotate(-28deg) !important;
}

body .site-menu-card__flow span {
  position: absolute !important;
  display: block !important;
  width: clamp(1.55rem, 2.4vw, 2.35rem) !important;
  height: clamp(1.55rem, 2.4vw, 2.35rem) !important;
  border-radius: 8px !important;
  background: #1e1e1e !important;
  box-shadow: inset 0 0 0 1px #2f2f2f !important;
}

body .site-menu-card__flow span:nth-child(1) { left: 0 !important; top: 43% !important; }
body .site-menu-card__flow span:nth-child(2) { left: 36% !important; top: 18% !important; }
body .site-menu-card__flow span:nth-child(3) { left: 36% !important; bottom: 12% !important; }
body .site-menu-card__flow span:nth-child(4) { right: 0 !important; top: 4% !important; }
body .site-menu-card__flow span:nth-child(5) { right: 0 !important; bottom: 2% !important; }

body .site-menu-card__folder {
  position: absolute !important;
  left: clamp(1.35rem, 2vw, 1.9rem) !important;
  bottom: clamp(1.45rem, 2.2vw, 2.1rem) !important;
  z-index: 2 !important;
  display: block !important;
  width: clamp(7.9rem, 12vw, 12rem) !important;
  height: clamp(4.9rem, 7.2vw, 7.2rem) !important;
  border-radius: 10px !important;
  background: linear-gradient(180deg, #ccff2e 0%, #64e900 34%, #2ac23c 100%) !important;
}

body .site-menu-card__folder::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: -0.58rem !important;
  width: 46% !important;
  height: 1.1rem !important;
  border-radius: 10px 10px 0 0 !important;
  background: #2ac23c !important;
}

body .site-menu-card__phone {
  position: absolute !important;
  right: clamp(-1rem, -1vw, -0.4rem) !important;
  bottom: clamp(-2.4rem, -2.4vw, -1.2rem) !important;
  z-index: 2 !important;
  display: block !important;
  width: clamp(8rem, 12vw, 12rem) !important;
  height: clamp(12rem, 18vw, 18rem) !important;
  border: 2px solid #8d8d8d !important;
  border-radius: 28px 28px 0 0 !important;
  background: #f5f1ec !important;
  overflow: hidden !important;
}

body .site-menu-card__phone::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 0 auto 0 !important;
  height: 26% !important;
  background: #159889 !important;
}

body .site-menu-card__phone::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: 0.85rem !important;
  width: 32% !important;
  height: 0.72rem !important;
  border-radius: 999px !important;
  transform: translateX(-50%) !important;
  background: #050505 !important;
}

body .site-menu-card__chat {
  position: absolute !important;
  left: 32% !important;
  top: 45% !important;
  display: block !important;
  width: 50% !important;
  height: 18% !important;
  border-radius: 0 0 0 12px !important;
  background: #d7ffbd !important;
}

/* Final manual card corrections after legacy image backgrounds. */
body .site-menu-card,
body .site-menu-card:visited,
body .site-menu-card:hover,
body .site-menu-card:focus-visible {
  background: #050505 !important;
  background-image: none !important;
}

body .site-menu-card .site-menu-card__title {
  position: relative !important;
  z-index: 3 !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  max-width: 13rem !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  font-family: var(--font-body) !important;
  font-size: clamp(1.25rem, 1.72vw, 1.72rem) !important;
  font-weight: 400 !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

body .site-menu-card .site-menu-card__orders {
  position: absolute !important;
  left: clamp(1.15rem, 1.75vw, 1.65rem) !important;
  right: clamp(1.15rem, 1.75vw, 1.65rem) !important;
  bottom: clamp(1.35rem, 2vw, 1.9rem) !important;
  z-index: 2 !important;
  display: grid !important;
  width: auto !important;
  height: auto !important;
  gap: clamp(0.55rem, 0.78vw, 0.78rem) !important;
  overflow: visible !important;
  clip: auto !important;
}

body .site-menu-card .site-menu-card__order {
  display: grid !important;
  grid-template-columns: clamp(2.25rem, 3.3vw, 3.25rem) 1fr auto !important;
  align-items: center !important;
}

body .site-menu-card .site-menu-card__shop {
  display: grid !important;
}

body .site-menu-card .site-menu-card__roi {
  position: absolute !important;
  left: 50% !important;
  top: 56% !important;
  z-index: 2 !important;
  display: grid !important;
  width: clamp(7.4rem, 11vw, 10.7rem) !important;
  height: clamp(7.4rem, 11vw, 10.7rem) !important;
  transform: translate(-50%, -50%) !important;
}

body .site-menu-card .site-menu-card__flow,
body .site-menu-card .site-menu-card__folder,
body .site-menu-card .site-menu-card__phone,
body .site-menu-card .site-menu-card__chat {
  display: block !important;
  overflow: visible !important;
  clip: auto !important;
}

body .site-menu-card .site-menu-card__flow {
  position: absolute !important;
  left: 50% !important;
  top: 58% !important;
  z-index: 2 !important;
  width: clamp(9.5rem, 14vw, 14rem) !important;
  height: clamp(5rem, 7.5vw, 7.5rem) !important;
  transform: translate(-50%, -50%) !important;
}

body .site-menu-card .site-menu-card__folder {
  position: absolute !important;
  left: clamp(1.35rem, 2vw, 1.9rem) !important;
  bottom: clamp(1.45rem, 2.2vw, 2.1rem) !important;
  z-index: 2 !important;
  width: clamp(7.9rem, 12vw, 12rem) !important;
  height: clamp(4.9rem, 7.2vw, 7.2rem) !important;
  border-radius: 10px !important;
  background: linear-gradient(180deg, #ccff2e 0%, #64e900 34%, #2ac23c 100%) !important;
}

body .site-menu-card .site-menu-card__phone {
  position: absolute !important;
  right: clamp(-1rem, -1vw, -0.4rem) !important;
  bottom: clamp(-2.4rem, -2.4vw, -1.2rem) !important;
  z-index: 2 !important;
  width: clamp(8rem, 12vw, 12rem) !important;
  height: clamp(12rem, 18vw, 18rem) !important;
  border: 2px solid #8d8d8d !important;
  border-radius: 28px 28px 0 0 !important;
  background: #f5f1ec !important;
  overflow: hidden !important;
}

body .site-menu-card .site-menu-card__chat {
  position: absolute !important;
  left: 32% !important;
  top: 45% !important;
  width: 50% !important;
  height: 18% !important;
  border-radius: 0 0 0 12px !important;
  background: #d7ffbd !important;
}

body .site-menu-cards .site-menu-card,
body .site-menu-cards .site-menu-card:visited,
body .site-menu-cards .site-menu-card:hover,
body .site-menu-cards .site-menu-card:focus-visible,
body .site-menu-cards .site-menu-card:nth-child(1),
body .site-menu-cards .site-menu-card:nth-child(2),
body .site-menu-cards .site-menu-card:nth-child(3),
body .site-menu-cards .site-menu-card:nth-child(4),
body .site-menu-cards .site-menu-card:nth-child(5) {
  background: #050505 !important;
  background-image: none !important;
}

body .site-menu-card .site-menu-shopify-stack {
  position: absolute !important;
  left: clamp(0.9rem, 1.35vw, 1.35rem) !important;
  right: clamp(0.9rem, 1.35vw, 1.35rem) !important;
  bottom: clamp(0.9rem, 1.35vw, 1.35rem) !important;
  z-index: 2 !important;
  display: block !important;
  width: auto !important;
  height: min(58%, 10.6rem) !important;
  overflow: visible !important;
  clip: auto !important;
}

body .site-menu-card .site-menu-shopify-stack img {
  position: absolute !important;
  inset: auto !important;
  display: block !important;
  width: min(88%, 13.6rem) !important;
  height: auto !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: none !important;
  transform: none !important;
}

body .site-menu-card .site-menu-shopify-stack img:nth-child(1) {
  left: 2% !important;
  top: 0 !important;
}

body .site-menu-card .site-menu-shopify-stack img:nth-child(2) {
  right: 0 !important;
  top: 26% !important;
}

body .site-menu-card .site-menu-shopify-stack img:nth-child(3) {
  left: 6% !important;
  top: 52% !important;
}

body .site-menu-card .site-menu-shopify-stack img:nth-child(4) {
  right: 4% !important;
  top: 78% !important;
}

body .site-menu-card .site-menu-traffic-roi {
  position: absolute !important;
  left: 50% !important;
  top: 58% !important;
  z-index: 2 !important;
  display: grid !important;
  place-items: center !important;
  width: clamp(6.4rem, 9.3vw, 9.3rem) !important;
  height: clamp(6.4rem, 9.3vw, 9.3rem) !important;
  transform: translate(-50%, -50%) !important;
  overflow: visible !important;
  clip: auto !important;
}

body .site-menu-card .site-menu-traffic-roi .traffic-work__roi-ring {
  position: relative !important;
  display: grid !important;
  place-items: center !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  --traffic-roi: 75% !important;
  background:
    radial-gradient(circle at center, #111111 0 52%, transparent 53%),
    conic-gradient(#2ac23c 0 75%, rgba(255, 255, 255, 0.18) 75% 100%) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
}

body .site-menu-card .site-menu-traffic-roi .traffic-work__roi-ring strong,
body .site-menu-card .site-menu-traffic-roi .traffic-work__roi-ring small {
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  overflow: visible !important;
  text-align: center !important;
}

body .site-menu-card .site-menu-traffic-roi .traffic-work__roi-ring strong {
  font-size: clamp(1.35rem, 1.9vw, 1.9rem) !important;
}

body .site-menu-card .site-menu-traffic-roi .traffic-work__roi-ring small {
  font-size: clamp(0.78rem, 1.05vw, 1.05rem) !important;
}

/* Refine imported menu visuals so they sit inside the cards cleanly. */
body .site-menu-card .site-menu-shopify-stack {
  left: clamp(1rem, 1.4vw, 1.35rem) !important;
  right: clamp(1rem, 1.4vw, 1.35rem) !important;
  bottom: clamp(1.05rem, 1.45vw, 1.45rem) !important;
  height: 44% !important;
}

body .site-menu-card .site-menu-shopify-stack img {
  width: min(72%, 10.7rem) !important;
  filter: none !important;
}

body .site-menu-card .site-menu-shopify-stack img:nth-child(1) {
  left: 0 !important;
  top: 0 !important;
}

body .site-menu-card .site-menu-shopify-stack img:nth-child(2) {
  right: 0 !important;
  top: 24% !important;
}

body .site-menu-card .site-menu-shopify-stack img:nth-child(3) {
  left: 4% !important;
  top: 48% !important;
}

body .site-menu-card .site-menu-shopify-stack img:nth-child(4) {
  right: 5% !important;
  top: 72% !important;
}

body .site-menu-card .site-menu-traffic-roi {
  top: 58% !important;
  width: clamp(5.3rem, 7.3vw, 7.4rem) !important;
  height: clamp(5.3rem, 7.3vw, 7.4rem) !important;
}

body .site-menu-card .site-menu-traffic-roi .traffic-work__roi-ring {
  background:
    radial-gradient(circle at center, #111111 0 54%, transparent 55%),
    conic-gradient(#2ac23c 0 75%, rgba(255, 255, 255, 0.16) 75% 100%) !important;
}

body .site-menu-card .site-menu-traffic-roi .traffic-work__roi-ring strong {
  font-size: clamp(1.05rem, 1.48vw, 1.48rem) !important;
}

body .site-menu-card .site-menu-traffic-roi .traffic-work__roi-ring small {
  font-size: clamp(0.64rem, 0.86vw, 0.86rem) !important;
}

/* Final tidy placement for imported notification and ROI visuals. */
body .site-menu-card .site-menu-shopify-stack {
  left: clamp(1rem, 1.35vw, 1.3rem) !important;
  right: clamp(1rem, 1.35vw, 1.3rem) !important;
  top: 34% !important;
  bottom: auto !important;
  display: grid !important;
  height: auto !important;
  gap: clamp(0.22rem, 0.32vw, 0.32rem) !important;
}

body .site-menu-card .site-menu-shopify-stack img {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  width: min(78%, 11.6rem) !important;
  margin: 0 !important;
}

body .site-menu-card .site-menu-shopify-stack img:nth-child(1),
body .site-menu-card .site-menu-shopify-stack img:nth-child(3) {
  justify-self: start !important;
}

body .site-menu-card .site-menu-shopify-stack img:nth-child(2),
body .site-menu-card .site-menu-shopify-stack img:nth-child(4) {
  justify-self: end !important;
}

body .site-menu-card .site-menu-traffic-roi {
  top: 57% !important;
  width: clamp(4.8rem, 6.6vw, 6.7rem) !important;
  height: clamp(4.8rem, 6.6vw, 6.7rem) !important;
}

body .site-menu-card .site-menu-traffic-roi .traffic-work__roi-ring strong {
  font-size: clamp(0.98rem, 1.32vw, 1.32rem) !important;
}

body .site-menu-card .site-menu-traffic-roi .traffic-work__roi-ring small {
  font-size: clamp(0.58rem, 0.76vw, 0.76rem) !important;
}

body.service-page.automation-service-page #automation-problem .sites-card-showcase__button,
body.service-page.automation-service-page #automation-problem .sites-card-showcase__button:hover,
body.service-page.automation-service-page #automation-problem .sites-card-showcase__button:focus-visible {
  --boost-action-bg: #ffffff;
  --boost-action-fg: #050505;
  --boost-action-circle-bg: #050505;
  --boost-action-circle-fg: #ffffff;
  color: #050505 !important;
  background: #ffffff !important;
  background-image: none !important;
  border: 1.5px solid #050505 !important;
  box-shadow: none !important;
  -webkit-text-fill-color: #050505 !important;
}

body.service-page.automation-service-page #automation-problem .sites-card-showcase__button::after {
  color: #ffffff !important;
  background: #050505 !important;
  background-image: none !important;
}

/* Content design cards mirror the automation cards on desktop. */
body.service-page.content-service-page #content-problem,
body.service-page.content-service-page #content-problem.service-section,
body.service-page.content-service-page #content-problem .sites-card-showcase {
  background: #ffffff !important;
  background-image: none !important;
}

body.service-page.content-service-page #content-problem .sites-card-showcase__grid {
  grid-template-columns: repeat(3, minmax(0, 24rem)) !important;
}

body.service-page.content-service-page #content-problem .sites-card-showcase__visual {
  background: #ffffff !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

body.service-page.content-service-page #content-problem .sites-card-showcase__visual > img,
body.service-page.content-service-page #content-problem .sites-card-showcase__visual > video {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: scale(1.04) !important;
  transform-origin: center !important;
}

body.service-page.content-service-page #content-problem .sites-card-showcase__button,
body.service-page.content-service-page #content-problem .sites-card-showcase__button:hover,
body.service-page.content-service-page #content-problem .sites-card-showcase__button:focus-visible {
  --boost-action-bg: #ffffff;
  --boost-action-fg: #050505;
  --boost-action-circle-bg: #050505;
  --boost-action-circle-fg: #ffffff;
  color: #050505 !important;
  background: #ffffff !important;
  background-image: none !important;
  border: 1.5px solid #050505 !important;
  box-shadow: none !important;
  -webkit-text-fill-color: #050505 !important;
}

body.service-page.content-service-page #content-problem .sites-card-showcase__button::after {
  color: #ffffff !important;
  background: #050505 !important;
  background-image: none !important;
}

/* Final PNG menu cards. */
body .site-menu-cards .site-menu-card,
body .site-menu-cards .site-menu-card:visited,
body .site-menu-cards .site-menu-card:hover,
body .site-menu-cards .site-menu-card:focus-visible,
body .site-menu-cards .site-menu-card:nth-child(1),
body .site-menu-cards .site-menu-card:nth-child(2),
body .site-menu-cards .site-menu-card:nth-child(3),
body .site-menu-cards .site-menu-card:nth-child(4),
body .site-menu-cards .site-menu-card:nth-child(5) {
  position: relative !important;
  display: block !important;
  padding: 0 !important;
  background: #050505 !important;
  background-image: none !important;
  overflow: hidden !important;
}

body .site-menu-cards .site-menu-card > :not(.site-menu-card__image) {
  display: none !important;
}

body .site-menu-cards .site-menu-card .site-menu-card__image {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: cover !important;
  object-position: center !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  filter: none !important;
  pointer-events: none !important;
}

/* Fit fullscreen menu into exactly one viewport. */
body > .site-menu-overlay,
body .site-menu-overlay {
  align-items: center !important;
  width: 100vw !important;
  height: 100vh !important;
  height: 100dvh !important;
  min-height: 0 !important;
  max-height: 100vh !important;
  max-height: 100dvh !important;
  padding: clamp(4.65rem, 6.4vw, 6.1rem) clamp(1.2rem, 4vw, 4rem) clamp(1rem, 2vw, 1.8rem) !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

body .site-menu-overlay__inner {
  grid-template-columns: minmax(0, 2.55fr) minmax(12.5rem, 0.74fr) !important;
  gap: clamp(2rem, 5vw, 5.2rem) !important;
  width: min(86rem, 100%) !important;
  max-height: calc(100dvh - clamp(5.7rem, 8vw, 7.9rem)) !important;
  align-items: stretch !important;
  overflow: visible !important;
}

body .site-menu-cards {
  --site-menu-card-size: min(33vh, 20.8rem);
  grid-template-columns: repeat(3, var(--site-menu-card-size)) !important;
  gap: clamp(1rem, 1.25vw, 1.25rem) !important;
  align-content: center !important;
  justify-content: start !important;
}

body .site-menu-cards .site-menu-card,
body .site-menu-cards .site-menu-card:visited {
  aspect-ratio: 1 / 1 !important;
  width: var(--site-menu-card-size) !important;
  height: var(--site-menu-card-size) !important;
  min-height: 0 !important;
  max-height: min(33vh, 20.8rem) !important;
  padding: clamp(1.18rem, 1.68vw, 1.72rem) !important;
  background: rgba(8, 8, 8, 0.96) !important;
  border-color: rgba(255, 255, 255, 0.035) !important;
}

body .site-menu-links {
  min-height: 0 !important;
  max-height: 100% !important;
  padding: clamp(0.15rem, 0.5vw, 0.45rem) 0 !important;
}

body .site-menu-links__nav {
  gap: clamp(1.05rem, 1.65vw, 1.7rem) !important;
}

body .site-menu-links__nav a,
body .site-menu-links__nav a:visited {
  font-size: clamp(0.98rem, 1.27vw, 1.28rem) !important;
  line-height: 1.18 !important;
}

body .site-menu-social {
  gap: clamp(0.65rem, 1vw, 1rem) !important;
}

body .site-menu-social div {
  gap: clamp(0.55rem, 0.9vw, 0.85rem) !important;
}

body .site-menu-social a,
body .site-menu-social a:visited {
  font-size: 0 !important;
}

body .site-menu-social svg {
  width: 56% !important;
  height: 56% !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.9 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

body .site-menu-social a[aria-label="Facebook"] svg {
  width: 52% !important;
  height: 52% !important;
  fill: currentColor !important;
  stroke: none !important;
}

body .site-menu-card .site-menu-card__title {
  font-size: clamp(0.92rem, 1.22vw, 1.22rem) !important;
}

body .site-menu-card .site-menu-card__orders {
  left: clamp(0.85rem, 1.25vw, 1.2rem) !important;
  right: clamp(0.85rem, 1.25vw, 1.2rem) !important;
  bottom: clamp(0.95rem, 1.35vw, 1.35rem) !important;
  gap: clamp(0.38rem, 0.55vw, 0.55rem) !important;
}

body .site-menu-card .site-menu-card__order {
  grid-template-columns: clamp(1.75rem, 2.45vw, 2.45rem) 1fr auto !important;
  min-height: clamp(2.45rem, 3.4vw, 3.45rem) !important;
}

body .site-menu-card .site-menu-card__roi {
  width: clamp(5.8rem, 8.3vw, 8.3rem) !important;
  height: clamp(5.8rem, 8.3vw, 8.3rem) !important;
}

body .site-menu-card__roi strong {
  font-size: clamp(1.28rem, 1.74vw, 1.74rem) !important;
}

body .site-menu-card__roi small {
  font-size: clamp(0.74rem, 0.96vw, 0.96rem) !important;
}

body .site-menu-card .site-menu-card__flow {
  width: clamp(7.2rem, 10vw, 10rem) !important;
  height: clamp(3.8rem, 5.3vw, 5.3rem) !important;
}

body .site-menu-card .site-menu-card__folder {
  width: clamp(5.8rem, 8.5vw, 8.5rem) !important;
  height: clamp(3.7rem, 5.15vw, 5.15rem) !important;
}

body .site-menu-card .site-menu-card__phone {
  width: clamp(5.8rem, 8.3vw, 8.3rem) !important;
  height: clamp(8.6rem, 12vw, 12rem) !important;
}

body.service-page .traffic-insight-section {
  color: #050505;
  background: #f7f7f4;
}

body.service-page.traffic-service-page #traffic-channels,
body.service-page.traffic-service-page #traffic-money {
  color: #050505 !important;
  background: #ffffff !important;
}

body.service-page .traffic-insight {
  display: grid;
  grid-template-columns: minmax(18rem, 0.72fr) minmax(28rem, 1.18fr);
  gap: clamp(4.8rem, 8vw, 8.6rem);
  width: min(82rem, calc(100% - 8rem));
  margin: 0 auto;
  align-items: center;
}

body.service-page .traffic-insight--reverse {
  grid-template-columns: minmax(28rem, 1.18fr) minmax(18rem, 0.72fr);
}

body.service-page .traffic-insight__copy {
  display: grid;
  max-width: 28rem;
  gap: 0.72rem;
}

body.service-page .traffic-insight--reverse .traffic-insight__copy {
  max-width: 36rem;
}

body.service-page .traffic-insight__copy h2 {
  margin: 0;
  color: #050505;
  font-family: var(--font-body);
  font-size: clamp(1.36rem, 1.75vw, 1.72rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

body.service-page .traffic-insight-section--money .traffic-insight__copy h2 {
  white-space: nowrap;
}

body.service-page .traffic-insight__copy p {
  margin: 0;
  color: #050505;
  font-size: clamp(1rem, 1.18vw, 1.16rem);
  font-weight: 400;
  line-height: 1.16;
  letter-spacing: 0;
}

body.service-page .traffic-insight__visual {
  display: block;
  width: 100%;
  height: clamp(21.5rem, 34vw, 29.1rem);
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: transparent;
}

body.service-page .traffic-insight__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

body.service-page .traffic-insight-section--channels .traffic-insight__visual img {
  object-position: center 47%;
}

body.service-page .traffic-insight-section--money .traffic-insight__visual img {
  object-position: center 45%;
}

@media (max-width: 900px) {
  body > .site-menu-overlay,
  body .site-menu-overlay {
    overflow: auto !important;
    height: auto !important;
    min-height: 100dvh !important;
  }

  body .site-menu-overlay__inner {
    grid-template-columns: 1fr !important;
    max-height: none !important;
  }

  body .site-menu-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 980px) {
  body.service-page .traffic-insight,
  body.service-page .traffic-insight--reverse {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 3rem);
    width: min(100% - 2rem, 42rem);
  }

  body.service-page .traffic-insight--reverse .traffic-insight__visual {
    order: 2;
  }

  body.service-page .traffic-insight--reverse .traffic-insight__copy {
    order: 1;
  }

  body.service-page .traffic-insight__copy,
  body.service-page .traffic-insight--reverse .traffic-insight__copy {
    max-width: 100%;
  }

  body.service-page .traffic-insight__visual {
    height: clamp(17rem, 52vw, 25rem);
  }
}

/* Automation cards final visual lock. */
body.service-page.automation-service-page #automation-problem,
body.service-page.automation-service-page #automation-problem.service-section,
body.service-page.automation-service-page #automation-problem .sites-card-showcase {
  background: #ffffff !important;
  background-image: none !important;
}

body.service-page.automation-service-page #automation-problem .sites-card-showcase__grid {
  grid-template-columns: repeat(3, minmax(0, 24rem)) !important;
}

body.service-page.automation-service-page #automation-problem .sites-card-showcase__visual {
  background: #ffffff !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

body.service-page.automation-service-page #automation-problem .sites-card-showcase__visual > img {
  transform: scale(1.04) !important;
  transform-origin: center !important;
}

body.service-page.automation-service-page #automation-problem .sites-card-showcase__button,
body.service-page.automation-service-page #automation-problem .sites-card-showcase__button:hover,
body.service-page.automation-service-page #automation-problem .sites-card-showcase__button:focus-visible {
  --boost-action-bg: #ffffff;
  --boost-action-fg: #050505;
  --boost-action-circle-bg: #050505;
  --boost-action-circle-fg: #ffffff;
  color: #050505 !important;
  background: #ffffff !important;
  background-image: none !important;
  border: 1.5px solid #050505 !important;
  box-shadow: none !important;
  -webkit-text-fill-color: #050505 !important;
}

body.service-page.automation-service-page #automation-problem .sites-card-showcase__button::after {
  color: #ffffff !important;
  background: #050505 !important;
  background-image: none !important;
}

body.service-page.automation-service-page #automation-included .automation-detail-visual--whatsapp {
  display: grid;
  place-items: center;
  background:
    url("./assets/auto1card.png") center / cover no-repeat,
    #6dd214;
}

body.service-page.content-service-page #content-included .automation-detail-visual--whatsapp {
  display: grid;
  place-items: center;
  background:
    url("./assets/auto1card.png") center / cover no-repeat,
    #6dd214;
}

body.service-page.automation-service-page #automation-included .automation-detail-visual__phone {
  position: relative;
  width: 14.85rem;
  height: 28.38rem;
}

body.service-page.content-service-page #content-included .automation-detail-visual__phone {
  position: relative;
  width: 14.85rem;
  height: 28.38rem;
}

body.service-page.automation-service-page #automation-included .automation-detail-visual__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 22.5rem;
  height: 43rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
  transform: scale(0.66);
  transform-origin: top left;
}

body.service-page.content-service-page #content-included .automation-detail-visual__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 22.5rem;
  height: 43rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
  transform: scale(0.66);
  transform-origin: top left;
}

body.service-page.automation-service-page #automation-process .automation-roi-card {
  position: relative;
  aspect-ratio: 1314 / 824;
  overflow: hidden;
  background: transparent;
  --automation-roi-scale: 0.525;
}

body.service-page.content-service-page #content-process .automation-roi-card {
  position: relative;
  aspect-ratio: 1314 / 824;
  overflow: hidden;
  background: transparent;
  --automation-roi-scale: 0.525;
}

body.service-page.automation-service-page #automation-process .automation-roi-card__frame {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1314px;
  height: 824px;
  border: 0;
  background: transparent;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(var(--automation-roi-scale));
  transform-origin: center;
}

body.service-page.content-service-page #content-process .automation-roi-card__frame {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1314px;
  height: 824px;
  border: 0;
  background: transparent;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(var(--automation-roi-scale));
  transform-origin: center;
}

@media (min-width: 981px) {
  body.service-page.sites-service-page .traffic-video-hero__layout {
    grid-template-columns: minmax(0, 1fr) 25rem;
    justify-content: initial;
    gap: 3rem;
    width: min(82rem, calc(100% - 8rem));
  }

  body.service-page.sites-service-page .traffic-video-hero .traffic-video-hero__title {
    transform: translate(1rem, 0.38rem);
  }

  body.service-page.sites-service-page .traffic-video-hero .traffic-video-hero__inline-video {
    height: 0.78em;
  }

  body.service-page.sites-service-page .traffic-video-hero__platforms span {
    justify-self: start;
    width: fit-content;
    min-width: 0;
    padding-right: 1.55rem;
    padding-left: 1.55rem;
  }

  body.service-page.sites-service-page .traffic-video-hero__platforms {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem 0.58rem !important;
    column-gap: 0.58rem !important;
    row-gap: 0.8rem !important;
    width: 24rem;
  }

  body.service-page.traffic-service-page #traffic-hero .traffic-video-hero__platforms span {
    justify-self: start;
    width: fit-content;
    min-width: 0;
    padding-right: 1.55rem;
    padding-left: 1.55rem;
  }

  body.service-page.traffic-service-page #traffic-hero .traffic-video-hero__platforms {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem 0.58rem !important;
    column-gap: 0.58rem !important;
    row-gap: 0.8rem !important;
    width: 24rem;
  }

  body.service-page.content-service-page #content-hero .traffic-video-hero__platforms span {
    justify-self: start;
    width: fit-content;
    min-width: 0;
    padding-right: 1.55rem;
    padding-left: 1.55rem;
  }

  body.service-page.content-service-page #content-hero .traffic-video-hero__platforms {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem 0.58rem !important;
    column-gap: 0.58rem !important;
    row-gap: 0.8rem !important;
    width: 16.4rem;
  }

  body.service-page.automation-service-page #automation-hero .traffic-video-hero__layout {
    grid-template-columns: max-content 25rem;
    justify-content: center;
    gap: clamp(3.8rem, 5.2vw, 5.6rem);
    width: min(82rem, calc(100% - 8rem));
  }

  body.service-page.automation-service-page #automation-hero .traffic-video-hero__title,
  body.service-page.automation-service-page #automation-hero .traffic-video-hero__actions {
    transform: none;
  }

  body.service-page.automation-service-page #automation-hero .traffic-video-hero__title {
    transform: translateY(0.45rem);
  }

  body.service-page.automation-service-page #automation-hero .traffic-video-hero__platforms span {
    justify-self: start;
    width: fit-content;
    min-width: 0;
    padding-right: 1.55rem;
    padding-left: 1.55rem;
  }

  body.service-page.automation-service-page #automation-hero .traffic-video-hero__platforms {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem 0.58rem !important;
    column-gap: 0.58rem !important;
    row-gap: 0.8rem !important;
    width: 24rem;
  }
}

@media (min-width: 981px) {
  body.service-page.automation-service-page .sites-multipage,
  body.service-page.automation-service-page .sites-ecommerce-detail,
  body.service-page.automation-service-page .sites-landing-detail {
    width: min(82rem, calc(100% - 8rem)) !important;
    gap: clamp(4.8rem, 8vw, 8.6rem) !important;
  }

  body.service-page.automation-service-page #automation-included .sites-multipage__copy p,
  body.service-page.automation-service-page #automation-process .sites-ecommerce-detail__copy p,
  body.service-page.automation-service-page #automation-proof .sites-landing-detail__copy p {
    font-size: clamp(1rem, 1.18vw, 1.16rem) !important;
    line-height: 1.16 !important;
  }

  body.service-page.automation-service-page #automation-included .sites-multipage__copy p strong,
  body.service-page.automation-service-page #automation-process .sites-ecommerce-detail__copy p strong,
  body.service-page.automation-service-page #automation-proof .sites-landing-detail__copy p strong,
  body.service-page.automation-service-page #automation-included .sites-multipage__copy p span,
  body.service-page.automation-service-page #automation-process .sites-ecommerce-detail__copy p span,
  body.service-page.automation-service-page #automation-proof .sites-landing-detail__copy p span {
    display: block;
  }

  body.service-page.automation-service-page #automation-included .sites-multipage__copy p strong,
  body.service-page.automation-service-page #automation-process .sites-ecommerce-detail__copy p strong {
    margin: 0 0 0.72rem;
    font-size: clamp(1.14rem, 1.42vw, 1.38rem) !important;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
    white-space: nowrap;
  }
}

@media (min-width: 981px) {
  body.service-page.content-service-page .sites-multipage,
  body.service-page.content-service-page .sites-ecommerce-detail {
    width: min(82rem, calc(100% - 8rem)) !important;
    gap: clamp(4.8rem, 8vw, 8.6rem) !important;
  }

  body.service-page.content-service-page #content-included .sites-multipage__copy p,
  body.service-page.content-service-page #content-process .sites-ecommerce-detail__copy p {
    font-size: clamp(1rem, 1.18vw, 1.16rem) !important;
    line-height: 1.16 !important;
  }

  body.service-page.content-service-page #content-included .sites-multipage__copy p strong,
  body.service-page.content-service-page #content-process .sites-ecommerce-detail__copy p strong,
  body.service-page.content-service-page #content-included .sites-multipage__copy p span,
  body.service-page.content-service-page #content-process .sites-ecommerce-detail__copy p span {
    display: block;
  }

  body.service-page.content-service-page #content-included .sites-multipage__copy p strong,
  body.service-page.content-service-page #content-process .sites-ecommerce-detail__copy p strong {
    margin: 0 0 0.72rem;
    font-size: clamp(1.14rem, 1.42vw, 1.38rem) !important;
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: 0;
    white-space: nowrap;
  }
}

@media (max-width: 980px) {
  body.service-page.automation-service-page #automation-process .automation-roi-card {
    --automation-roi-scale: 0.46;
  }

  body.service-page.automation-service-page #automation-problem .sites-card-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.service-page.content-service-page #content-problem .sites-card-showcase__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  body.service-page.automation-service-page #automation-process .automation-roi-card {
    --automation-roi-scale: 0.26;
  }

  body.service-page.automation-service-page #automation-problem .sites-card-showcase__grid {
    grid-template-columns: 1fr !important;
  }

  body.service-page.content-service-page #content-problem .sites-card-showcase__grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  html.service-page-root.traffic-service-root,
  html.service-page-root.automation-service-root,
  html.service-page-root.content-service-root {
    scroll-behavior: auto !important;
    scroll-snap-type: none !important;
  }

  body.service-page.traffic-service-page .service-section,
  body.service-page.automation-service-page .service-section,
  body.service-page.content-service-page .service-section {
    height: auto;
    overflow: visible;
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
  }

  body.service-page.traffic-service-page .site-header,
  body.service-page.traffic-service-page .site-header.is-scrolled,
  body.service-page.traffic-service-page .site-header.is-past-hero,
  body.service-page.traffic-service-page .site-header:hover,
  body.service-page.traffic-service-page .site-header:focus-within,
  body.service-page.automation-service-page .site-header,
  body.service-page.automation-service-page .site-header.is-scrolled,
  body.service-page.automation-service-page .site-header.is-past-hero,
  body.service-page.automation-service-page .site-header:hover,
  body.service-page.automation-service-page .site-header:focus-within,
  body.service-page.content-service-page .site-header,
  body.service-page.content-service-page .site-header.is-scrolled,
  body.service-page.content-service-page .site-header.is-past-hero,
  body.service-page.content-service-page .site-header:hover,
  body.service-page.content-service-page .site-header:focus-within {
    grid-template-columns: auto 1fr auto !important;
    width: calc(100vw - 2rem) !important;
    min-height: 3.4rem !important;
    padding: 0.42rem !important;
    gap: 0.5rem !important;
  }

  body.service-page.traffic-service-page .site-header .contact-popover,
  body.service-page.automation-service-page .site-header .contact-popover,
  body.service-page.content-service-page .site-header .contact-popover {
    display: none !important;
  }

  body.service-page.traffic-service-page .site-header .site-menu-toggle,
  body.service-page.automation-service-page .site-header .site-menu-toggle,
  body.service-page.content-service-page .site-header .site-menu-toggle {
    grid-column: 3 !important;
    display: inline-grid !important;
  }

  body.service-page.traffic-service-page .traffic-video-hero,
  body.service-page.automation-service-page .traffic-video-hero,
  body.service-page.content-service-page .traffic-video-hero {
    display: grid;
    min-height: 100svh;
    align-items: center;
    background: #000000;
    padding-top: 6.2rem;
    padding-bottom: 3.4rem;
  }

  body.service-page.traffic-service-page .traffic-video-hero__layout,
  body.service-page.automation-service-page .traffic-video-hero__layout,
  body.service-page.content-service-page .traffic-video-hero__layout {
    width: 100%;
    max-width: 27rem;
    margin-right: auto;
    margin-left: auto;
    gap: 1.75rem;
    justify-items: center;
    text-align: center;
  }

  body.service-page.traffic-service-page .traffic-video-hero .traffic-video-hero__title,
  body.service-page.automation-service-page .traffic-video-hero .traffic-video-hero__title,
  body.service-page.content-service-page .traffic-video-hero .traffic-video-hero__title {
    width: 100% !important;
    max-width: 24.4rem !important;
    margin-right: auto !important;
    margin-left: auto !important;
    font-size: clamp(3.38rem, 15.35vw, 3.95rem) !important;
    line-height: 0.9 !important;
    text-align: center !important;
    transform: none !important;
  }

  body.service-page.traffic-service-page .traffic-video-hero .traffic-video-hero__line,
  body.service-page.automation-service-page .traffic-video-hero .traffic-video-hero__line,
  body.service-page.content-service-page .traffic-video-hero .traffic-video-hero__line {
    display: block;
    text-align: center;
    white-space: normal;
  }

  body.service-page.traffic-service-page .traffic-video-hero .traffic-video-hero__inline-video,
  body.service-page.content-service-page .traffic-video-hero .traffic-video-hero__inline-video {
    display: inline-block !important;
    width: clamp(4.12rem, 17.2vw, 4.85rem) !important;
    height: 0.64em !important;
    margin: 0 0.12rem !important;
    vertical-align: 0.02em !important;
  }

  body.service-page.traffic-service-page .traffic-video-hero__actions,
  body.service-page.automation-service-page .traffic-video-hero__actions,
  body.service-page.content-service-page .traffic-video-hero__actions {
    width: 100%;
    gap: 1.06rem;
    justify-items: center;
    text-align: center;
    transform: none;
  }

  body.service-page.traffic-service-page .traffic-video-hero__platforms,
  body.service-page.automation-service-page .traffic-video-hero__platforms,
  body.service-page.content-service-page .traffic-video-hero__platforms {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 0.58rem;
    width: 100%;
  }

  body.service-page.traffic-service-page .traffic-video-hero__platforms span,
  body.service-page.automation-service-page .traffic-video-hero__platforms span,
  body.service-page.content-service-page .traffic-video-hero__platforms span,
  body.service-page.traffic-service-page .traffic-video-hero__button,
  body.service-page.automation-service-page .traffic-video-hero__button,
  body.service-page.content-service-page .traffic-video-hero__button {
    width: fit-content;
    min-width: 0;
    min-height: 2.92rem;
    padding-right: 1.12rem;
    padding-left: 1.12rem;
    font-size: 1.02rem;
  }

  body.service-page.traffic-service-page .traffic-video-hero__platforms span,
  body.service-page.automation-service-page .traffic-video-hero__platforms span,
  body.service-page.content-service-page .traffic-video-hero__platforms span {
    width: 100%;
    padding-right: 0.72rem;
    padding-left: 0.72rem;
    white-space: nowrap;
  }

  body.service-page.traffic-service-page .traffic-video-hero__button,
  body.service-page.automation-service-page .traffic-video-hero__button,
  body.service-page.content-service-page .traffic-video-hero__button {
    display: inline-grid !important;
    min-width: 0 !important;
    min-height: 3.02rem !important;
    margin-top: 0.16rem;
    padding-right: 1.62rem !important;
    padding-left: 1.62rem !important;
    place-items: center !important;
    justify-self: center;
    font-size: 1.08rem !important;
    text-align: center !important;
    translate: 0 0 !important;
  }

  body.service-page.traffic-service-page .traffic-video-hero__button::after,
  body.service-page.automation-service-page .traffic-video-hero__button::after,
  body.service-page.content-service-page .traffic-video-hero__button::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
  }

  body.service-page.traffic-service-page #traffic-channels,
  body.service-page.traffic-service-page #traffic-money,
  body.service-page.automation-service-page .sites-multipage-section,
  body.service-page.automation-service-page .sites-ecommerce-detail-section {
    min-height: auto;
  }

  body.service-page.traffic-service-page .traffic-insight {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 27rem;
    margin-right: auto;
    margin-left: auto;
    gap: 1.45rem;
  }

  body.service-page.traffic-service-page .traffic-insight__visual,
  body.service-page.traffic-service-page .traffic-insight--reverse .traffic-insight__visual,
  body.service-page.automation-service-page .sites-ecommerce-detail__media {
    order: 1;
  }

  body.service-page.traffic-service-page .traffic-insight__copy,
  body.service-page.traffic-service-page .traffic-insight--reverse .traffic-insight__copy,
  body.service-page.automation-service-page .sites-ecommerce-detail__copy {
    order: 2;
  }

  body.service-page.traffic-service-page .traffic-insight__visual {
    width: 100%;
    height: auto;
    aspect-ratio: 1.12 / 1;
    border-radius: 8px;
  }

  body.service-page.traffic-service-page .traffic-insight__copy {
    max-width: none;
  }

  body.service-page.traffic-service-page #traffic-channels,
  body.service-page.automation-service-page .sites-multipage-section {
    padding-bottom: 2.2rem;
  }

  body.service-page.traffic-service-page #traffic-money,
  body.service-page.automation-service-page .sites-ecommerce-detail-section {
    padding-top: 2.2rem;
  }

  body.service-page.traffic-service-page #traffic-process {
    padding-top: 4.9rem;
  }

  body.service-page.traffic-service-page .traffic-work {
    width: min(100% - 2rem, 38rem);
    padding-top: 0.8rem;
  }

  body.service-page.traffic-service-page .traffic-work__grid {
    gap: 1.05rem;
  }

  body.service-page.traffic-service-page .traffic-work__visual {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 0;
  }

  body.service-page.traffic-service-page .traffic-work__copy {
    margin-top: 0.72rem;
  }

  body.service-page.traffic-service-page #traffic-process .traffic-work__copy h3,
  body.service-page.traffic-service-page #traffic-process .traffic-work__copy p,
  body.service-page.automation-service-page #automation-problem .sites-card-showcase__copy h3,
  body.service-page.automation-service-page #automation-problem .sites-card-showcase__copy p,
  body.service-page.content-service-page #content-problem .sites-card-showcase__copy h3,
  body.service-page.content-service-page #content-problem .sites-card-showcase__copy p {
    font-size: 19px !important;
    line-height: 20.5px !important;
  }

  body.service-page.automation-service-page #automation-problem,
  body.service-page.content-service-page #content-problem {
    padding-top: 2.1rem !important;
    padding-bottom: 2.35rem !important;
  }

  body.service-page.automation-service-page #automation-problem .sites-card-showcase,
  body.service-page.content-service-page #content-problem .sites-card-showcase {
    width: min(100% - 2rem, 27rem) !important;
    min-height: auto !important;
    padding-top: 0 !important;
    align-content: start !important;
  }

  body.service-page.automation-service-page #automation-problem .sites-card-showcase__grid,
  body.service-page.content-service-page #content-problem .sites-card-showcase__grid {
    gap: 1.38rem !important;
  }

  body.service-page.automation-service-page #automation-problem .sites-card-showcase__visual,
  body.service-page.content-service-page #content-problem .sites-card-showcase__visual {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 8px !important;
  }

  body.service-page.automation-service-page #automation-problem .sites-card-showcase__shopify-stack {
    inset: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    display: block !important;
    width: auto !important;
    overflow: hidden !important;
    transform: none !important;
    animation: none !important;
  }

  body.service-page.automation-service-page #automation-problem .sites-card-showcase__shopify-stack img {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: min(72%, 16rem) !important;
    height: auto !important;
    object-fit: contain !important;
    opacity: 1;
    filter: drop-shadow(0 0.64rem 1rem rgba(0, 0, 0, 0.2)) !important;
    transform: translate(-50%, -50%) scale(1);
    animation-duration: 8800ms !important;
    animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1) !important;
    animation-iteration-count: infinite !important;
    animation-fill-mode: both !important;
    transition: none !important;
  }

  body.service-page.automation-service-page #automation-problem .sites-card-showcase__shopify-stack img.sites-card-showcase__shopify-clone {
    display: none !important;
  }

  body.service-page.automation-service-page #automation-problem .sites-card-showcase__shopify-stack img:nth-child(1) {
    opacity: 1;
    transform: translate(-50%, -157%) scale(1);
    animation-name: automation-mobile-shopify-note-1 !important;
    animation-delay: 0ms !important;
  }

  body.service-page.automation-service-page #automation-problem .sites-card-showcase__shopify-stack img:nth-child(2) {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    animation-name: automation-mobile-shopify-note-2 !important;
    animation-delay: 0ms !important;
  }

  body.service-page.automation-service-page #automation-problem .sites-card-showcase__shopify-stack img:nth-child(3) {
    opacity: 1;
    transform: translate(-50%, 57%) scale(1);
    animation-name: automation-mobile-shopify-note-3 !important;
    animation-delay: 0ms !important;
  }

  body.service-page.automation-service-page #automation-problem .sites-card-showcase__shopify-stack img:nth-child(4) {
    opacity: 0;
    transform: translate(-50%, -218%) scale(0.94);
    animation-name: automation-mobile-shopify-note-4 !important;
    animation-delay: 0ms !important;
  }

  @keyframes automation-mobile-shopify-note-1 {
    0% {
      opacity: 1;
      transform: translate(-50%, -157%) scale(1);
    }

    25% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    50% {
      opacity: 1;
      transform: translate(-50%, 57%) scale(1);
    }

    63% {
      opacity: 0;
      transform: translate(-50%, 126%) scale(0.96);
    }

    74.9% {
      opacity: 0;
      transform: translate(-50%, 146%) scale(0.94);
    }

    75% {
      opacity: 0;
      transform: translate(-50%, -218%) scale(0.94);
    }

    83% {
      opacity: 0;
      transform: translate(-50%, -190%) scale(0.96);
    }

    100% {
      opacity: 1;
      transform: translate(-50%, -157%) scale(1);
    }
  }

  @keyframes automation-mobile-shopify-note-2 {
    0% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    25% {
      opacity: 1;
      transform: translate(-50%, 57%) scale(1);
    }

    38% {
      opacity: 0;
      transform: translate(-50%, 126%) scale(0.96);
    }

    49.9% {
      opacity: 0;
      transform: translate(-50%, 146%) scale(0.94);
    }

    50% {
      opacity: 0;
      transform: translate(-50%, -218%) scale(0.94);
    }

    58% {
      opacity: 0;
      transform: translate(-50%, -190%) scale(0.96);
    }

    75% {
      opacity: 1;
      transform: translate(-50%, -157%) scale(1);
    }

    100% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
  }

  @keyframes automation-mobile-shopify-note-3 {
    0% {
      opacity: 1;
      transform: translate(-50%, 57%) scale(1);
    }

    13% {
      opacity: 0;
      transform: translate(-50%, 126%) scale(0.96);
    }

    24.9% {
      opacity: 0;
      transform: translate(-50%, 146%) scale(0.94);
    }

    25% {
      opacity: 0;
      transform: translate(-50%, -218%) scale(0.94);
    }

    33% {
      opacity: 0;
      transform: translate(-50%, -190%) scale(0.96);
    }

    50% {
      opacity: 1;
      transform: translate(-50%, -157%) scale(1);
    }

    75% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    100% {
      opacity: 1;
      transform: translate(-50%, 57%) scale(1);
    }
  }

  @keyframes automation-mobile-shopify-note-4 {
    0% {
      opacity: 0;
      transform: translate(-50%, -218%) scale(0.94);
    }

    8% {
      opacity: 0;
      transform: translate(-50%, -190%) scale(0.96);
    }

    25% {
      opacity: 1;
      transform: translate(-50%, -157%) scale(1);
    }

    50% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }

    75% {
      opacity: 1;
      transform: translate(-50%, 57%) scale(1);
    }

    88% {
      opacity: 0;
      transform: translate(-50%, 126%) scale(0.96);
    }

    100% {
      opacity: 0;
      transform: translate(-50%, 146%) scale(0.94);
    }
  }

  body.service-page.automation-service-page #automation-problem .sites-card-showcase__button,
  body.service-page.automation-service-page #automation-problem .sites-card-showcase__button:hover,
  body.service-page.automation-service-page #automation-problem .sites-card-showcase__button:focus-visible,
  body.service-page.content-service-page #content-problem .sites-card-showcase__button,
  body.service-page.content-service-page #content-problem .sites-card-showcase__button:hover,
  body.service-page.content-service-page #content-problem .sites-card-showcase__button:focus-visible {
    display: inline-grid !important;
    width: fit-content !important;
    min-width: 10.4rem !important;
    min-height: 3.02rem !important;
    margin-top: 1.06rem !important;
    padding-right: 1.62rem !important;
    padding-left: 1.62rem !important;
    place-items: center !important;
    justify-self: start !important;
    font-size: 1.08rem !important;
    line-height: 1 !important;
    text-align: center !important;
    translate: 0 0 !important;
  }

  body.service-page.automation-service-page #automation-problem .sites-card-showcase__button::after,
  body.service-page.content-service-page #content-problem .sites-card-showcase__button::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
  }

  body.service-page.automation-service-page #automation-included {
    padding-bottom: 1.55rem !important;
  }

  body.service-page.automation-service-page #automation-process {
    padding-top: 2.05rem !important;
  }

  body.service-page.automation-service-page #automation-included .sites-multipage,
  body.service-page.automation-service-page #automation-process .sites-ecommerce-detail {
    width: min(100% - 2rem, 27rem) !important;
    max-width: 27rem !important;
    gap: 1.12rem !important;
  }

  body.service-page.automation-service-page #automation-process .automation-roi-card {
    width: 100% !important;
    max-width: none !important;
    aspect-ratio: 1.12 / 1 !important;
    overflow: hidden !important;
    border-radius: 8px !important;
    background: #f7f7f7 !important;
    clip-path: inset(0 round 8px) !important;
    --automation-roi-scale: 0.36 !important;
  }

  body.service-page.traffic-service-page #traffic-process .traffic-work__item .traffic-work__button {
    display: none !important;
  }

  body.service-page.traffic-service-page #traffic-process .traffic-work__mobile-action {
    display: inline-grid !important;
    width: fit-content !important;
    min-width: 0 !important;
    min-height: 3.02rem !important;
    margin: 1.45rem 0 0 !important;
    padding-right: 1.62rem !important;
    padding-left: 1.62rem !important;
    place-items: center !important;
    justify-self: start !important;
    color: #050505 !important;
    background: var(--accent-gradient) !important;
    font-size: 1.08rem !important;
    text-align: center !important;
    translate: 0 0 !important;
  }

  body.service-page.traffic-service-page #traffic-process .traffic-work__mobile-action::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
  }

  body.service-page.traffic-service-page .traffic-insight {
    grid-template-columns: minmax(0, 1fr) !important;
    width: min(100% - 2rem, 27rem) !important;
    max-width: 27rem !important;
    gap: 0.82rem;
  }

  body.service-page.traffic-service-page .traffic-insight--reverse {
    grid-template-columns: minmax(0, 1fr) !important;
    width: min(100% - 2rem, 27rem) !important;
    max-width: 27rem !important;
  }

  body.service-page.traffic-service-page .traffic-insight--reverse .traffic-insight__visual,
  body.service-page.traffic-service-page .traffic-insight--reverse .traffic-insight__copy {
    width: 100% !important;
    max-width: none !important;
    min-width: 0 !important;
  }

  body.service-page.traffic-service-page .traffic-insight-section--money .traffic-insight__copy h2 {
    white-space: normal;
  }

  body.service-page.traffic-service-page .pointer-cursor {
    display: none !important;
  }

  body.service-page.traffic-service-page #traffic-channels,
  body.service-page.traffic-service-page #traffic-money {
    padding-top: 2.2rem;
    padding-bottom: 3.3rem;
  }

  body.service-page.traffic-service-page .growth-cards-section .service-included-grid,
  body.service-page.automation-service-page .growth-cards-section .service-included-grid,
  body.service-page.content-service-page .growth-cards-section .service-included-grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.86rem;
  }

  body.service-page.traffic-service-page .growth-cards-section .service-section__shell,
  body.service-page.automation-service-page .growth-cards-section .service-section__shell,
  body.service-page.content-service-page .growth-cards-section .service-section__shell {
    width: min(100% - 2rem, 27rem);
    max-width: 27rem;
    margin-right: auto;
    margin-left: auto;
  }

  body.service-page.traffic-service-page .growth-cards-section .service-included-card,
  body.service-page.automation-service-page .growth-cards-section .service-included-card,
  body.service-page.content-service-page .growth-cards-section .service-included-card {
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 10.8rem;
    padding: 1.2rem;
    border-radius: 8px;
  }

  body.service-page.traffic-service-page .growth-cards-section .service-included-card h3,
  body.service-page.automation-service-page .growth-cards-section .service-included-card h3,
  body.service-page.content-service-page .growth-cards-section .service-included-card h3 {
    max-width: 15rem !important;
    font-size: 1.44rem !important;
    line-height: 1.08 !important;
    white-space: normal !important;
  }

  body.service-page.traffic-service-page .growth-cards-section .service-included-card p,
  body.service-page.automation-service-page .growth-cards-section .service-included-card p,
  body.service-page.content-service-page .growth-cards-section .service-included-card p {
    max-width: none !important;
    font-size: 1.22rem !important;
    line-height: 1.16 !important;
  }

  html.service-page-root.sites-service-root {
    scroll-behavior: auto !important;
    scroll-snap-type: none !important;
  }

  body.service-page.sites-service-page .service-section,
  body.service-page.sites-service-page .service-page__main > .cta.page-section {
    min-height: 100svh;
    height: auto;
    overflow: visible;
    scroll-snap-align: none !important;
    scroll-snap-stop: normal !important;
  }

  body.service-page.sites-service-page .site-header,
  body.service-page.sites-service-page .site-header.is-scrolled,
  body.service-page.sites-service-page .site-header.is-past-hero,
  body.service-page.sites-service-page .site-header:hover,
  body.service-page.sites-service-page .site-header:focus-within {
    grid-template-columns: auto 1fr auto !important;
    width: calc(100vw - 2rem) !important;
    min-height: 3.4rem !important;
    padding: 0.42rem !important;
    gap: 0.5rem !important;
  }

  body.service-page.sites-service-page .site-header .contact-popover {
    display: none !important;
  }

  body.service-page.sites-service-page .site-header .site-menu-toggle {
    grid-column: 3 !important;
    display: inline-grid !important;
  }

  body.service-page.sites-service-page .service-section {
    align-items: start;
    padding: 5.75rem 1rem 4rem;
  }

  body.service-page.sites-service-page .traffic-video-hero {
    display: grid;
    align-items: center;
    padding-top: 6.2rem;
    padding-bottom: 3.4rem;
  }

  body.service-page.sites-service-page .traffic-video-hero__layout,
  body.service-page.sites-service-page .sites-card-showcase,
  body.service-page.sites-service-page .sites-multipage,
  body.service-page.sites-service-page .sites-ecommerce-detail,
  body.service-page.sites-service-page .sites-landing-detail,
  body.service-page.sites-service-page .service-section__shell,
  body.service-page.sites-service-page .section-shell {
    width: 100%;
    max-width: 27rem;
    margin-right: auto;
    margin-left: auto;
  }

  body.service-page.sites-service-page .traffic-video-hero__layout {
    gap: 1.75rem;
    justify-items: center;
    text-align: center;
  }

  body.service-page.sites-service-page .traffic-video-hero .traffic-video-hero__title {
    width: 100% !important;
    max-width: 24.4rem !important;
    margin-right: auto !important;
    margin-left: auto !important;
    font-size: clamp(3.38rem, 15.35vw, 3.95rem) !important;
    line-height: 0.9 !important;
    text-align: center !important;
    transform: none !important;
  }

  body.service-page.sites-service-page .traffic-video-hero .traffic-video-hero__line {
    display: block;
    text-align: center;
    white-space: normal;
  }

  body.service-page.sites-service-page .traffic-video-hero .traffic-video-hero__inline-video {
    display: inline-block !important;
    width: clamp(4.12rem, 17.2vw, 4.85rem) !important;
    height: 0.64em !important;
    margin: 0 0.12rem !important;
    vertical-align: 0.02em !important;
  }

  body.service-page.sites-service-page .traffic-video-hero__actions {
    width: 100%;
    gap: 1.06rem;
    justify-items: center;
    text-align: center;
    transform: none;
  }

  body.service-page.sites-service-page .traffic-video-hero__platforms {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.58rem;
    width: 100%;
  }

  body.service-page.sites-service-page .traffic-video-hero__platforms span,
  body.service-page.sites-service-page .traffic-video-hero__button {
    width: fit-content;
    min-width: 0;
    min-height: 2.92rem;
    padding-right: 1.12rem;
    padding-left: 1.12rem;
    font-size: 1.02rem;
  }

  body.service-page.sites-service-page .traffic-video-hero__button,
  body.service-page.sites-service-page .sites-card-showcase__button {
    display: inline-grid !important;
    min-width: 0 !important;
    min-height: 3.02rem !important;
    padding-right: 1.62rem !important;
    padding-left: 1.62rem !important;
    place-items: center !important;
    font-size: 1.08rem !important;
    text-align: center !important;
    translate: 0 0 !important;
  }

  body.service-page.sites-service-page .traffic-video-hero__button {
    justify-self: center;
    margin-top: 0.16rem;
  }

  body.service-page.sites-service-page .traffic-video-hero__button::after,
  body.service-page.sites-service-page .sites-card-showcase__button::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
  }

  body.service-page.sites-service-page .sites-card-showcase {
    min-height: 0;
    padding: 0;
  }

  body.service-page.sites-service-page .sites-card-showcase__grid {
    grid-template-columns: 1fr;
    gap: 1.45rem;
  }

  body.service-page.sites-service-page #sites-problem .service-card:nth-of-type(-n + 3) .sites-card-showcase__visual {
    transform: none;
  }

  body.service-page.sites-service-page .sites-card-showcase__visual {
    aspect-ratio: 1.08 / 1;
    border-radius: 8px;
  }

  body.service-page.sites-service-page .sites-card-showcase__copy {
    max-width: none;
    margin-top: 0.62rem;
  }

  body.service-page.sites-service-page .sites-card-showcase__copy h3,
  body.service-page.sites-service-page .sites-card-showcase__copy p {
    font-size: 1.16rem !important;
    line-height: 1.1 !important;
  }

  body.service-page.sites-service-page .sites-card-showcase__button {
    min-height: 2.72rem !important;
    margin-top: 0.68rem !important;
    font-size: 1.05rem !important;
  }

  body.service-page.sites-service-page .sites-card-showcase__trust {
    width: 100%;
    min-height: 0;
    justify-self: stretch;
    padding: 0.4rem 0 0;
    transform: none;
  }

  body.service-page.sites-service-page .sites-card-showcase__trust-badges,
  body.service-page.sites-service-page .sites-card-showcase__trust p {
    width: 100%;
  }

  body.service-page.sites-service-page .sites-multipage,
  body.service-page.sites-service-page .sites-ecommerce-detail,
  body.service-page.sites-service-page .sites-landing-detail {
    grid-template-columns: 1fr;
    gap: 1.45rem;
  }

  body.service-page.sites-service-page .sites-multipage-section,
  body.service-page.sites-service-page .sites-ecommerce-detail-section,
  body.service-page.sites-service-page .sites-landing-detail-section {
    min-height: auto;
  }

  body.service-page.sites-service-page .sites-multipage-section {
    padding-bottom: 2.2rem;
  }

  body.service-page.sites-service-page .sites-ecommerce-detail-section,
  body.service-page.sites-service-page .sites-landing-detail-section {
    padding-top: 2.2rem;
  }

  body.service-page.sites-service-page .sites-multipage__media,
  body.service-page.sites-service-page .sites-ecommerce-detail__media,
  body.service-page.sites-service-page .sites-landing-detail__media {
    aspect-ratio: 1.12 / 1;
    border-radius: 8px;
  }

  body.service-page.sites-service-page .sites-ecommerce-detail__copy,
  body.service-page.sites-service-page .sites-ecommerce-detail__media {
    order: initial;
  }

  body.service-page.sites-service-page .sites-ecommerce-detail__media {
    order: 1;
  }

  body.service-page.sites-service-page .sites-ecommerce-detail__copy {
    order: 2;
  }

  body.service-page.sites-service-page .sites-multipage__copy,
  body.service-page.sites-service-page .sites-ecommerce-detail__copy,
  body.service-page.sites-service-page .sites-landing-detail__copy {
    max-width: none;
    gap: 0.92rem;
  }

  body.service-page.sites-service-page .sites-multipage__copy p,
  body.service-page.sites-service-page .sites-ecommerce-detail__copy p,
  body.service-page.sites-service-page .sites-landing-detail__copy p {
    font-size: 1.03rem;
    line-height: 1.18;
  }

  body.service-page.sites-service-page #sites-included .service-included-grid {
    grid-template-columns: 1fr;
    gap: 0.86rem;
  }

  body.service-page.sites-service-page #sites-included .service-included-card {
    min-height: 10.8rem;
    padding: 1.2rem;
    border-radius: 8px;
  }

  body.service-page.sites-service-page #sites-included .service-included-card h3 {
    max-width: 15rem !important;
    font-size: 1.44rem !important;
    line-height: 1.08 !important;
    white-space: normal !important;
  }

  body.service-page.sites-service-page #sites-included .service-included-card p {
    max-width: none !important;
    font-size: 1.22rem !important;
    line-height: 1.16 !important;
  }

  body.service-page.sites-service-page .service-faq-section .service-section__shell {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: min(100% - 1.25rem, 42rem);
    max-width: 42rem;
  }

  body.service-page.sites-service-page .service-faq details {
    border-radius: 8px;
  }

  body.service-page.sites-service-page .service-faq summary,
  body.service-page.sites-service-page .service-faq details p {
    font-size: 1rem;
    line-height: 1.18;
  }

  body.service-page .service-faq-section .service-section__shell {
    width: min(100% - 1.25rem, 42rem);
    max-width: 42rem;
  }

  body.service-page.sites-service-page #cta {
    min-height: 100svh;
    padding: 5.75rem 1rem 4rem !important;
  }

  body.service-page.sites-service-page #cta .cta__panel {
    grid-template-columns: 1fr;
    row-gap: 1.55rem;
  }

  body.service-page.sites-service-page #cta .cta__title {
    width: min(19rem, 100%);
    font-size: clamp(2.42rem, 10.8vw, 2.78rem) !important;
    line-height: 1;
  }

  body.service-page.sites-service-page #cta .cta__title-line {
    display: grid;
    gap: 0.18rem;
    white-space: normal;
  }

  body.service-page.sites-service-page #cta .cta__title-text {
    display: block;
  }

  body.service-page.sites-service-page #cta .cta__video-slot {
    width: clamp(3.9rem, 18vw, 4.35rem);
    height: 0.68em;
    margin-right: 0.24rem;
    vertical-align: 0.02em;
  }

  body.service-page.sites-service-page #cta .cta__support {
    max-width: 20rem;
    font-size: 1rem;
    line-height: 1.2;
  }

  body.service-page.sites-service-page #cta .cta__form {
    padding: 1rem;
    border-radius: 8px;
  }
}

@media (max-width: 980px) {
  body.home-page .scene-deck,
  body.home-page .scene-stage {
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  body.home-page .scene-device-layer,
  body.home-page .scene-progress {
    display: none !important;
  }

  body.home-page .scene-deck .scene-panel,
  body.home-page .scene-deck .scene-shell {
    height: auto !important;
    min-height: 100svh !important;
    min-height: 100dvh !important;
    max-height: none !important;
  }

  body.home-page .scene-panel {
    overflow: visible !important;
  }

  body.home-page .scene-deck .scene-shell {
    display: grid !important;
    grid-template-columns: 1fr !important;
    align-content: center !important;
    justify-items: stretch !important;
    row-gap: clamp(0.8rem, 3.6vw, 1.2rem) !important;
    padding: clamp(5.6rem, 13vh, 7.2rem) 1.15rem clamp(3.25rem, 9vh, 4.75rem) !important;
    text-align: left !important;
    transform: none !important;
  }

  body.home-page .scene-deck .scene-heading,
  body.home-page .scene-deck .scene-detail,
  body.home-page .scene-deck .scene-description,
  body.home-page .scene-mobile-phone {
    grid-column: 1 !important;
  }

  body.home-page .scene-deck .scene-heading {
    max-width: min(24rem, 100%) !important;
    justify-self: start !important;
    justify-items: start !important;
    order: 2 !important;
    margin-top: clamp(1.35rem, 5.2vw, 2rem) !important;
    text-align: left !important;
    transform: none !important;
  }

  body.home-page .scene-deck .scene-title {
    font-size: clamp(2rem, 9vw, 3.1rem) !important;
    line-height: 1 !important;
  }

  body.home-page .scene-mobile-phone {
    display: block !important;
    --scene-mobile-phone-scale: 0.58;
    order: 1 !important;
    justify-self: center !important;
    width: calc(340px * var(--scene-mobile-phone-scale)) !important;
    height: calc(700px * var(--scene-mobile-phone-scale)) !important;
    max-width: 52vw !important;
    max-height: calc(52vw * 700 / 340) !important;
    overflow: hidden !important;
    border-radius: clamp(1.05rem, 4.8vw, 1.5rem) !important;
    background: #ffffff !important;
    box-shadow: none !important;
  }

  body.home-page .scene-panel--dark .scene-mobile-phone {
    box-shadow: none !important;
  }

  body.home-page .scene-mobile-phone__embed {
    display: block !important;
    width: 340px !important;
    height: 700px !important;
    border: 0 !important;
    background: #ffffff !important;
    transform: scale(var(--scene-mobile-phone-scale)) !important;
    transform-origin: top left !important;
  }

  body.home-page .scene-deck .scene-placeholder {
    display: none !important;
  }

  body.home-page .scene-deck .scene-detail {
    display: contents !important;
    max-width: min(21rem, 100%) !important;
    justify-items: start !important;
    gap: 0 !important;
  }

  body.home-page .scene-deck .scene-description {
    max-width: min(25rem, 100%) !important;
    justify-self: start !important;
    order: 3 !important;
    font-size: clamp(1rem, 4.2vw, 1.12rem) !important;
    line-height: 1.24 !important;
    margin: clamp(0.9rem, 3.5vw, 1.25rem) 0 0 !important;
    text-align: left !important;
  }

  body.home-page .scene-deck .scene-button {
    order: 4 !important;
    min-width: min(14rem, 100%) !important;
    min-height: 3.2rem !important;
    padding: 0 1.65rem !important;
    justify-content: center !important;
    justify-self: start !important;
    margin: clamp(1.15rem, 4.4vw, 1.65rem) auto 0 0 !important;
    border: 2px solid currentColor !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.home-page .scene-deck .scene-panel--light .scene-button,
  body.home-page .scene-deck .scene-panel--lime .scene-button {
    color: #050505 !important;
  }

  body.home-page .scene-deck .scene-panel--dark .scene-button {
    color: #ffffff !important;
  }

  body.home-page .scene-deck .scene-button::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
  }
}

html.is-mobile-scene-flow body.home-page .scene-deck,
html.is-mobile-scene-flow body.home-page .scene-stage {
  height: auto !important;
  min-height: auto !important;
  overflow: visible !important;
}

html.is-mobile-scene-flow body.home-page .scene-device-layer,
html.is-mobile-scene-flow body.home-page .scene-progress {
  display: none !important;
  position: static !important;
  inset: auto !important;
  width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
}

html.is-mobile-scene-flow body.home-page .scene-deck .scene-panel,
html.is-mobile-scene-flow body.home-page .scene-deck .scene-shell {
  height: auto !important;
  min-height: 100svh !important;
  min-height: 100dvh !important;
  max-height: none !important;
}

html.is-mobile-scene-flow body.home-page .scene-panel {
  overflow: visible !important;
}

html.is-mobile-scene-flow body.home-page .scene-deck .scene-shell {
  display: grid !important;
  grid-template-columns: 1fr !important;
  align-content: center !important;
  justify-items: stretch !important;
  row-gap: clamp(0.8rem, 3.6vw, 1.2rem) !important;
  padding: clamp(5.6rem, 13vh, 7.2rem) 1.15rem clamp(3.25rem, 9vh, 4.75rem) !important;
  text-align: left !important;
  transform: none !important;
}

html.is-mobile-scene-flow body.home-page .scene-deck .scene-heading,
html.is-mobile-scene-flow body.home-page .scene-deck .scene-detail,
html.is-mobile-scene-flow body.home-page .scene-deck .scene-description,
html.is-mobile-scene-flow body.home-page .scene-mobile-phone {
  grid-column: 1 !important;
}

html.is-mobile-scene-flow body.home-page .scene-deck .scene-heading {
  max-width: min(24rem, 100%) !important;
  justify-self: start !important;
  justify-items: start !important;
  order: 2 !important;
  margin-top: clamp(1.35rem, 5.2vw, 2rem) !important;
  text-align: left !important;
  transform: none !important;
}

html.is-mobile-scene-flow body.home-page .scene-deck .scene-title {
  font-size: clamp(2rem, 9vw, 3.1rem) !important;
  line-height: 1 !important;
}

html.is-mobile-scene-flow body.home-page .scene-mobile-phone {
  display: block !important;
  --scene-mobile-phone-scale: 0.58;
  order: 1 !important;
  justify-self: center !important;
  width: calc(340px * var(--scene-mobile-phone-scale)) !important;
  height: calc(700px * var(--scene-mobile-phone-scale)) !important;
  max-width: 52vw !important;
  max-height: calc(52vw * 700 / 340) !important;
  overflow: hidden !important;
  border-radius: clamp(1.05rem, 4.8vw, 1.5rem) !important;
  background: #ffffff !important;
  box-shadow: none !important;
}

html.is-mobile-scene-flow body.home-page .scene-panel--dark .scene-mobile-phone {
  box-shadow: none !important;
}

html.is-mobile-scene-flow body.home-page .scene-mobile-phone__embed {
  display: block !important;
  width: 340px !important;
  height: 700px !important;
  border: 0 !important;
  background: #ffffff !important;
  transform: scale(var(--scene-mobile-phone-scale)) !important;
  transform-origin: top left !important;
}

html.is-mobile-scene-flow body.home-page .scene-deck .scene-placeholder {
  display: none !important;
}

html.is-mobile-scene-flow body.home-page .scene-deck .scene-detail {
  display: contents !important;
  max-width: min(21rem, 100%) !important;
  justify-items: start !important;
  gap: 0 !important;
}

html.is-mobile-scene-flow body.home-page .scene-deck .scene-description {
  max-width: min(25rem, 100%) !important;
  justify-self: start !important;
  order: 3 !important;
  font-size: clamp(1rem, 4.2vw, 1.12rem) !important;
  line-height: 1.24 !important;
  margin: clamp(0.9rem, 3.5vw, 1.25rem) 0 0 !important;
  text-align: left !important;
}

html.is-mobile-scene-flow body.home-page .scene-deck .scene-button {
  order: 4 !important;
  min-width: min(14rem, 100%) !important;
  min-height: 3.2rem !important;
  padding: 0 1.65rem !important;
  justify-content: center !important;
  justify-self: start !important;
  margin: clamp(1.15rem, 4.4vw, 1.65rem) auto 0 0 !important;
  border: 2px solid currentColor !important;
  background: transparent !important;
  box-shadow: none !important;
}

html.is-mobile-scene-flow body.home-page .scene-deck .scene-panel--light .scene-button,
html.is-mobile-scene-flow body.home-page .scene-deck .scene-panel--lime .scene-button {
  color: #050505 !important;
}

html.is-mobile-scene-flow body.home-page .scene-deck .scene-panel--dark .scene-button {
  color: #ffffff !important;
}

html.is-mobile-scene-flow body.home-page .scene-deck .scene-button::after {
  display: none !important;
  content: none !important;
  opacity: 0 !important;
}

@media (max-width: 760px) {
  body.home-page .about-statement.page-section {
    overflow: hidden !important;
  }

  body.home-page .about-statement__shell {
    min-height: 100svh !important;
    min-height: 100dvh !important;
    padding: clamp(5.4rem, 13vh, 6.7rem) 1rem clamp(3.6rem, 9vh, 4.6rem) !important;
    place-items: center !important;
  }

  body.home-page .about-statement__content {
    width: 100vw !important;
    margin-inline: calc(50% - 50vw) !important;
    justify-items: center !important;
    text-align: center !important;
  }

  body.home-page .about-statement__title {
    width: calc(100vw - 1rem) !important;
    gap: 0.04em !important;
    justify-items: center !important;
    margin-inline: auto !important;
    font-size: clamp(2.26rem, 8.42vw, 3.18rem) !important;
    line-height: 0.92 !important;
    text-align: center !important;
  }

  body.home-page .about-statement__title > span {
    display: block !important;
    max-width: 100% !important;
  }

  body.home-page .about-statement__title-line {
    display: flex !important;
    flex-wrap: nowrap !important;
    margin-inline: auto !important;
    justify-content: center !important;
    gap: clamp(0.2rem, 0.8vw, 0.34rem) !important;
    white-space: nowrap !important;
  }

  body.home-page .about-statement__title-top {
    display: block !important;
    max-width: none !important;
    white-space: nowrap !important;
  }

  body.home-page .about-statement__video-slot {
    width: clamp(3rem, 12.4vw, 4.5rem) !important;
    height: 0.62em !important;
    border-radius: 7px !important;
  }

  body.home-page .about-statement__copy {
    width: min(23.8rem, calc(100vw - 1.35rem)) !important;
    max-width: none !important;
    margin-top: clamp(1.2rem, 4.4vw, 1.65rem) !important;
    font-size: clamp(0.94rem, 3.72vw, 1.03rem) !important;
    line-height: 1.34 !important;
    text-align: center !important;
    white-space: normal !important;
  }

  body.home-page .about-statement__copy br {
    display: none !important;
  }

  body.home-page .about-statement__button {
    --boost-action-shift: 0px !important;
    width: 100px !important;
    min-width: 100px !important;
    max-width: 100px !important;
    min-height: 3.2rem !important;
    margin-top: clamp(1.35rem, 5vw, 1.8rem) !important;
    padding: 0 0.65rem !important;
    padding-right: 0.65rem !important;
    justify-content: center !important;
    justify-self: center !important;
    text-align: center !important;
    translate: 0 0 !important;
    transform: none !important;
  }

  body.home-page .about-statement__button::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
  }

  body.home-page .cta .cta__title--video {
    width: min(25rem, calc(100vw - 2rem)) !important;
    font-size: clamp(2.55rem, 10.2vw, 3.45rem) !important;
    line-height: 0.92 !important;
  }

  body.home-page .cta .cta__video-slot {
    width: clamp(3.5rem, 13.8vw, 4.9rem) !important;
  }
}

@media (max-width: 760px), (pointer: coarse) {
  body .mobile-video-frame {
    position: relative !important;
  }

  body video.mobile-video-managed {
    pointer-events: none !important;
    -webkit-user-select: none !important;
    user-select: none !important;
  }

  body video.mobile-video-managed:not(.mobile-video-started) {
    opacity: 0 !important;
  }

  body .mobile-video-poster {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    opacity: 1;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  body .mobile-video-frame--playing .mobile-video-poster {
    opacity: 0;
  }

  body video.mobile-video-managed::-webkit-media-controls,
  body video.mobile-video-managed::-webkit-media-controls-enclosure,
  body video.mobile-video-managed::-webkit-media-controls-overlay-enclosure,
  body video.mobile-video-managed::-webkit-media-controls-panel,
  body video.mobile-video-managed::-webkit-media-controls-start-playback-button,
  body video.mobile-video-managed::-webkit-media-controls-overlay-play-button,
  body video.mobile-video-managed::-webkit-media-controls-play-button,
  body video.mobile-video-managed::-webkit-media-controls-timeline,
  body video.mobile-video-managed::-webkit-media-controls-current-time-display,
  body video.mobile-video-managed::-webkit-media-controls-time-remaining-display,
  body video.mobile-video-managed::-webkit-media-controls-fullscreen-button,
  body video.mobile-video-managed::-webkit-media-controls-mute-button,
  body video.mobile-video-managed::-webkit-media-controls-volume-slider {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    -webkit-appearance: none !important;
  }

  body .mobile-video-play {
    position: absolute;
    right: clamp(0.42rem, 2.4vw, 0.72rem);
    bottom: clamp(0.42rem, 2.4vw, 0.72rem);
    z-index: 9;
    display: grid;
    width: clamp(2.05rem, 8.4vw, 2.6rem);
    height: clamp(2.05rem, 8.4vw, 2.6rem);
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.48);
    border-radius: 50%;
    color: #ffffff;
    background: rgba(5, 5, 5, 0.62);
    box-shadow: 0 0.55rem 1.4rem rgba(0, 0, 0, 0.18);
    cursor: pointer;
    opacity: 1;
    pointer-events: auto;
    transform: translateZ(0) scale(1);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      background 180ms ease;
    -webkit-backdrop-filter: blur(0.45rem);
    backdrop-filter: blur(0.45rem);
  }

  body .mobile-video-play::before {
    display: block;
    width: 0;
    height: 0;
    margin-left: 0.12rem;
    border-top: 0.38rem solid transparent;
    border-bottom: 0.38rem solid transparent;
    border-left: 0.58rem solid currentColor;
    content: "";
  }

  body .mobile-video-play:active {
    background: rgba(5, 5, 5, 0.74);
    transform: translateZ(0) scale(0.94);
  }

  body .mobile-video-frame--playing .mobile-video-play {
    opacity: 0;
    pointer-events: none;
    transform: translateZ(0) scale(0.86);
  }
}

@media (max-width: 760px) {
  body .site-header,
  body .site-header.is-scrolled,
  body .site-header.is-past-hero,
  body .site-header:hover,
  body .site-header:focus-within {
    grid-template-columns: auto auto !important;
    justify-content: space-between !important;
  }

  body .site-header .contact-popover {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  body .site-header .site-menu-toggle {
    grid-column: 2 !important;
  }

  body .site-menu-overlay,
  body > .site-menu-overlay {
    align-items: start !important;
    padding: clamp(5.15rem, 17vw, 6.2rem) 0.8rem 1.25rem !important;
    overflow-y: auto !important;
  }

  body .site-menu-overlay__inner {
    width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 1.15rem !important;
    align-items: start !important;
  }

  body .site-menu-cards {
    display: none !important;
  }

  body .site-menu-cards .site-menu-card,
  body .site-menu-cards .site-menu-card:visited,
  body .site-menu-cards .site-menu-card:hover,
  body .site-menu-cards .site-menu-card:focus-visible,
  body .site-menu-cards .site-menu-card:nth-child(1),
  body .site-menu-cards .site-menu-card:nth-child(2),
  body .site-menu-cards .site-menu-card:nth-child(3),
  body .site-menu-cards .site-menu-card:nth-child(4) {
    width: var(--site-menu-card-size) !important;
    height: var(--site-menu-card-size) !important;
    max-width: var(--site-menu-card-size) !important;
    max-height: var(--site-menu-card-size) !important;
    min-width: 0 !important;
    min-height: 0 !important;
    border-radius: 12px !important;
  }

  body .site-menu-cards .site-menu-card:nth-child(5) {
    display: none !important;
  }

  body .site-menu-links {
    width: 100% !important;
    min-height: auto !important;
    padding: 0.35rem 0 0 !important;
    gap: clamp(2rem, 11vw, 3.5rem) !important;
  }

  body .site-menu-links__nav {
    gap: clamp(1.05rem, 4.7vw, 1.45rem) !important;
  }

  body .site-menu-links__nav a,
  body .site-menu-links__nav a:visited {
    font-size: clamp(1.04rem, 4.85vw, 1.38rem) !important;
    line-height: 1.08 !important;
  }

  body .site-menu-social {
    gap: 0.85rem !important;
  }
}

@media (max-width: 760px) {
  body.about-page .about-page-hero__title {
    width: min(34rem, calc(100vw - 1.4rem)) !important;
    max-width: calc(100vw - 1.4rem) !important;
    font-size: clamp(2.7rem, 13vw, 3.55rem) !important;
    line-height: 0.9 !important;
  }

  body.about-page .about-page-hero__title > span {
    display: flex !important;
    justify-content: center !important;
    white-space: nowrap !important;
  }

  body.about-page .about-page-hero__title-line {
    gap: clamp(0.28rem, 1.2vw, 0.42rem) !important;
  }

  body.about-page .about-page-hero__video-slot {
    width: clamp(3.7rem, 15.2vw, 4.7rem) !important;
    height: 0.66em !important;
  }

  body.about-page .about-page-hero__button,
  body.about-page .about-page-hero__button:hover,
  body.about-page .about-page-hero__button:focus-visible {
    --boost-action-shift: 0px !important;
    min-width: min(17.4rem, calc(100vw - 4rem)) !important;
    min-height: 3.38rem !important;
    padding: 0 2rem !important;
    translate: 0 0 !important;
    transform: none !important;
  }

  body.about-page .about-page-hero__button::after {
    display: none !important;
    content: none !important;
  }

  body.about-page .about-page-manifesto__copy p {
    font-size: clamp(0.92rem, 4vw, 1.08rem) !important;
    line-height: 1.34 !important;
  }

  body.about-page .about-page-team__card p:not(.about-page-team__role) {
    font-size: clamp(0.86rem, 3.7vw, 1rem) !important;
    line-height: 1.28 !important;
  }
}

body.home-page .scene-deck .scene-button,
body.home-page .about-statement__button {
  width: 173px !important;
  min-width: 173px !important;
  max-width: 173px !important;
}

@media (max-width: 760px), (pointer: coarse) {
  body.home-page .scene-deck .scene-button,
  html.is-mobile-scene-flow body.home-page .scene-deck .scene-button,
  body.home-page .about-statement__button {
    width: 149px !important;
    min-width: 149px !important;
    max-width: 149px !important;
    padding-inline: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
}

body.home-page .cta .cta__form button,
body.about-page .about-page-hero__button,
body.service-page .service-action,
body.service-page .service-card__button {
  width: 173px !important;
  min-width: 173px !important;
  max-width: 173px !important;
}

@media (max-width: 760px), (pointer: coarse) {
  body.home-page .cta .cta__form button,
  body.about-page .about-page-hero__button,
  body.service-page .service-action,
  body.service-page .service-card__button {
    width: 149px !important;
    min-width: 149px !important;
    max-width: 149px !important;
    padding-inline: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
}

body.service-page.traffic-service-page #traffic-process .traffic-work__button,
body.service-page.traffic-service-page #traffic-process .traffic-work__mobile-action,
body.service-page.sites-service-page #sites-problem .sites-card-showcase__button,
body.service-page.content-service-page #content-problem .sites-card-showcase__button,
body.service-page.automation-service-page #automation-problem .sites-card-showcase__button {
  width: 173px !important;
  min-width: 173px !important;
  max-width: 173px !important;
}

@media (max-width: 760px), (pointer: coarse) {
  body.service-page.traffic-service-page #traffic-process .traffic-work__button,
  body.service-page.traffic-service-page #traffic-process .traffic-work__mobile-action,
  body.service-page.sites-service-page #sites-problem .sites-card-showcase__button,
  body.service-page.content-service-page #content-problem .sites-card-showcase__button,
  body.service-page.automation-service-page #automation-problem .sites-card-showcase__button {
    width: 149px !important;
    min-width: 149px !important;
    max-width: 149px !important;
    padding-inline: 1.2rem !important;
    padding-right: 1.2rem !important;
  }
}

body .site-menu-social a svg,
body .site-menu-social a:visited svg {
  display: block !important;
  width: 1.35rem !important;
  height: 1.35rem !important;
  color: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
  overflow: visible !important;
}

body .site-menu-social a[aria-label="Instagram"] svg,
body .site-menu-social a[aria-label="Instagram"] svg * {
  fill: none !important;
  stroke: #ffffff !important;
  stroke-width: 1.9 !important;
}

body .site-menu-social a[aria-label="Facebook"] svg,
body .site-menu-social a[aria-label="Facebook"] svg * {
  fill: #ffffff !important;
  stroke: none !important;
}

body.home-page .testimonials.page-section {
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  min-height: 100vh;
  padding: clamp(4.5rem, 7vw, 6rem) 0 clamp(4rem, 6vw, 5.25rem);
  overflow: hidden;
  background: #000000;
  border-top: 0;
}

body.home-page .testimonials.page-section::before {
  display: none;
}

body.home-page .testimonials__viewport {
  --testimonial-card-width: min(48rem, 58vw);
  --testimonial-gap: clamp(1rem, 1.35vw, 1.45rem);
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  box-sizing: border-box;
  padding-inline: 0;
}

body.home-page .testimonials__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: var(--testimonial-gap);
  transform: translate3d(var(--testimonial-offset, 0px), 0, 0);
  transition: transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

body.home-page .testimonials__track.is-instant {
  transition: none;
}

body.home-page .testimonial-card {
  flex: 0 0 var(--testimonial-card-width);
  height: clamp(22rem, 38vw, 30rem);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  align-items: center;
  justify-items: center;
  padding: clamp(3rem, 5.5vw, 5.4rem) clamp(3.2rem, 6vw, 6.4rem);
  color: #050505;
  text-align: center;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
}

body.home-page .testimonial-card__avatar {
  width: clamp(3.1rem, 4.3vw, 4.35rem);
  height: clamp(3.1rem, 4.3vw, 4.35rem);
  object-fit: cover;
  border-radius: 50%;
}

body.home-page .testimonial-card__quote {
  width: min(38rem, 100%);
  margin: clamp(1.5rem, 2.35vw, 2.35rem) 0 clamp(1.25rem, 1.8vw, 1.8rem);
  color: #050505;
  font-size: clamp(1rem, 1.14vw, 1.18rem);
  font-weight: 400;
  line-height: 1.18;
}

body.home-page .testimonial-card__name {
  margin: 0;
  color: #050505;
  font-size: clamp(1.2rem, 1.55vw, 1.58rem);
  font-weight: 400;
  line-height: 1.15;
}

body.home-page .testimonials__controls {
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-top: clamp(1.45rem, 2vw, 2rem);
}

body.home-page .testimonials__button {
  display: grid;
  width: clamp(3.2rem, 4vw, 3.75rem);
  height: clamp(3.2rem, 4vw, 3.75rem);
  place-items: center;
  padding: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  cursor: pointer;
  transition:
    color 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

body.home-page .testimonials__button:hover,
body.home-page .testimonials__button:focus-visible {
  color: #050505;
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-1px);
}

body.home-page .testimonials__button span {
  width: 0.82rem;
  height: 0.82rem;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateX(0.12rem) rotate(45deg);
}

body.home-page .testimonials__button--next span {
  transform: translateX(-0.12rem) rotate(225deg);
}

@media (max-width: 760px), (pointer: coarse) {
  body.home-page .testimonials.page-section {
    min-height: auto;
    padding: 5.5rem 0 4.5rem;
  }

  body.home-page .testimonial-card {
    flex-basis: var(--testimonial-card-width);
    height: 27rem;
    padding: 2.2rem 1.55rem;
    border-radius: 14px;
  }

  body.home-page .testimonial-card__avatar {
    width: 3.25rem;
    height: 3.25rem;
  }

  body.home-page .testimonial-card__quote {
    margin: 1.35rem 0 1.15rem;
    font-size: 0.92rem;
    line-height: 1.22;
  }

  body.home-page .testimonial-card__name {
    font-size: 1.12rem;
  }

  body.home-page .testimonials__viewport {
    --testimonial-card-width: min(21rem, 82vw);
    --testimonial-gap: 0.9rem;
  }
}

@media (max-width: 980px) {
  body.service-page .service-faq-section .service-section__shell {
    width: calc(100vw - 1rem) !important;
    max-width: none !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  body.service-page .service-faq {
    width: 100% !important;
  }
}

body .footer {
  position: relative !important;
  display: flex !important;
  min-height: clamp(24rem, 45vh, 31rem) !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  padding: clamp(4.2rem, 5.7vw, 6.1rem) clamp(1.25rem, 8.5vw, 9.75rem) clamp(1.25rem, 2.4vw, 2rem) !important;
  overflow: hidden !important;
  color: #ffffff !important;
  background-color: #000000 !important;
  background-image: none !important;
  border-top: 0 !important;
}

body .footer__top {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 20rem) !important;
  gap: clamp(3rem, 12vw, 12rem) !important;
  width: 100% !important;
}

body .footer h2 {
  margin: 0 0 1.05rem !important;
  color: #ffffff !important;
  font-size: clamp(1.22rem, 1.45vw, 1.55rem) !important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
}

body .footer__contact,
body .footer__services {
  display: grid !important;
  align-content: start !important;
  justify-items: start !important;
}

body .footer a {
  display: block !important;
  color: rgba(255, 255, 255, 0.56) !important;
  font-size: clamp(0.92rem, 1.05vw, 1.12rem) !important;
  font-weight: 400 !important;
  line-height: 1.46 !important;
  text-decoration: none !important;
}

body .footer__contact a:nth-of-type(3) {
  margin-top: 1.25rem !important;
}

body .footer__brand {
  position: relative !important;
  display: flex !important;
  width: 100vw !important;
  height: clamp(6.25rem, 10vw, 7.75rem) !important;
  box-sizing: border-box !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  margin-right: calc(50% - 50vw) !important;
  margin-left: calc(50% - 50vw) !important;
  padding-left: clamp(13.2rem, 23vw, 25rem) !important;
  overflow: hidden !important;
  border-bottom: 0 !important;
  color: #ffffff !important;
  font-family: "Bebas Neue", var(--font-heading), Arial, sans-serif !important;
  font-size: clamp(8.1rem, 14.8vw, 11.4rem) !important;
  font-weight: 400 !important;
  line-height: 0.92 !important;
  letter-spacing: 0 !important;
  pointer-events: none !important;
}

body .footer__brand::after {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
  height: 2px !important;
  background: #ffffff !important;
  content: "" !important;
}

@media (max-width: 760px) {
  body .footer {
    min-height: 31rem !important;
    padding: 4rem 1.25rem 1.2rem !important;
  }

  body .footer__top {
    grid-template-columns: 1fr !important;
    gap: 2.75rem !important;
  }

  body .footer h2 {
    margin-bottom: 0.9rem !important;
    font-size: 1.28rem !important;
  }

  body .footer a {
    font-size: 0.96rem !important;
    line-height: 1.48 !important;
  }

  body .footer__contact a:nth-of-type(3) {
    margin-top: 1.1rem !important;
  }

  body .footer__brand {
    height: 5.2rem !important;
    justify-content: center !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    padding-left: 0 !important;
    font-size: clamp(5.45rem, 30vw, 7.4rem) !important;
    line-height: 0.94 !important;
  }
}
