/* Keep content visible even if scroll-animation JS does not run on static hosting. */
.scroll-animate,
.scroll-animate-up,
.scroll-animate-left,
.scroll-animate-right,
.scroll-animate-scale {
  opacity: 1 !important;
  transform: none !important;
}

/* Keep cursor behavior consistent across all static pages and languages. */
:where(
  a[href],
  button:not(:disabled),
  summary,
  label[for],
  [role='button'],
  [role='link'],
  [onclick],
  [data-static-clickable='true'],
  input[type='button'],
  input[type='submit'],
  input[type='reset'],
  input[type='image'],
  select:not(:disabled)
) {
  cursor: pointer;
}

:where(
  button:disabled,
  input:disabled,
  select:disabled,
  textarea:disabled,
  [aria-disabled='true']
) {
  cursor: default;
}

/* Keep the footer pinned to the bottom on short static pages such as privacy/terms/refund. */
body > .min-h-screen.bg-white {
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

body > .min-h-screen.bg-white > footer#contact {
  margin-top: auto;
  flex-shrink: 0;
}

nav.static-scrolled {
  background: rgba(0, 0, 0, 0.95) !important;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

nav.fixed.top-0.forplex-header {
  background: rgba(0, 0, 0, 0.78) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

nav.fixed.top-0.forplex-header.forplex-header--solid {
  background: rgba(0, 0, 0, 0.96) !important;
}

nav.fixed.top-0.forplex-header.static-scrolled {
  background: rgba(0, 0, 0, 0.92) !important;
}

nav.fixed.top-0.forplex-header .forplex-header__bar {
  position: relative;
  min-height: 76px;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

nav.fixed.top-0.forplex-header .forplex-header__logo {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  max-width: none !important;
  min-width: 0;
  margin: 0 auto;
  z-index: 3;
}

nav.fixed.top-0.forplex-header .forplex-header__desktop {
  min-width: 0;
  display: none !important;
}

nav.fixed.top-0.forplex-header .forplex-header__desktop-layout {
  width: 100%;
}

nav.fixed.top-0.forplex-header .forplex-header__cluster {
  display: flex;
  align-items: center;
  min-width: 0;
}

nav.fixed.top-0.forplex-header .forplex-header__primary-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.92) !important;
  background: rgba(255, 255, 255, 0);
  transform: translateY(0);
  transform-origin: center;
  transition:
    color 180ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 260ms ease,
    transform 220ms ease;
}

nav.fixed.top-0.forplex-header [data-static-consultation-cta="true"] {
  margin-left: 0 !important;
  min-height: 48px;
  padding: 13px 26px !important;
  border-radius: 999px;
  border-color: rgba(255, 255, 255, 0.78) !important;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transform: translateY(0);
  transition:
    color 180ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 260ms ease,
    transform 220ms ease;
}

nav.fixed.top-0.forplex-header [data-static-language-holder="true"] {
  margin-left: 0 !important;
  display: inline-flex;
  align-items: center;
}

nav.fixed.top-0.forplex-header [data-static-language-holder="true"] > .relative > button,
nav.fixed.top-0.forplex-header .forplex-header__mobile-toggle {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  transform: translateY(0);
  transition:
    color 180ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 260ms ease,
    transform 220ms ease;
}

nav.fixed.top-0.forplex-header .forplex-header__mobile-toggle {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

@media (hover: hover) {
  nav.fixed.top-0.forplex-header .forplex-header__primary-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    transform: translateY(-1px);
  }

  nav.fixed.top-0.forplex-header [data-static-consultation-cta="true"]:hover {
    color: #000 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(255, 255, 255, 1) !important;
    box-shadow:
      0 14px 30px rgba(0, 0, 0, 0.24),
      0 0 24px rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
  }

  nav.fixed.top-0.forplex-header [data-static-language-holder="true"] > .relative > button:hover,
  nav.fixed.top-0.forplex-header .forplex-header__mobile-toggle:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.24);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
  }
}

nav.fixed.top-0.forplex-header .forplex-header__primary-link:active,
nav.fixed.top-0.forplex-header [data-static-consultation-cta="true"]:active,
nav.fixed.top-0.forplex-header [data-static-language-holder="true"] > .relative > button:active,
nav.fixed.top-0.forplex-header .forplex-header__mobile-toggle:active {
  transform: translateY(0);
}

nav.fixed.top-0.forplex-header .forplex-header__primary-link:focus-visible,
nav.fixed.top-0.forplex-header [data-static-consultation-cta="true"]:focus-visible,
nav.fixed.top-0.forplex-header [data-static-language-holder="true"] > .relative > button:focus-visible,
nav.fixed.top-0.forplex-header .forplex-header__mobile-toggle:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.42) inset;
}

@media (max-width: 767px) {
  nav.fixed.top-0.forplex-header .forplex-header__bar {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center !important;
    gap: 12px;
  }

  nav.fixed.top-0.forplex-header .forplex-header__logo {
    position: static;
    transform: none;
    grid-column: 1;
    justify-self: start;
    margin: 0 !important;
  }

  nav.fixed.top-0.forplex-header .forplex-header__mobile-toggle {
    grid-column: 2;
    justify-self: end;
    margin-left: auto;
  }
}

@media (min-width: 768px) {
  nav.fixed.top-0.forplex-header .forplex-header__bar {
    display: flex !important;
    align-items: center !important;
    min-height: 84px;
    gap: clamp(28px, 4vw, 56px);
  }

  nav.fixed.top-0.forplex-header .forplex-header__logo {
    position: static;
    transform: none;
    flex: none;
    margin: 0;
  }

  nav.fixed.top-0.forplex-header .forplex-header__desktop {
    display: flex !important;
    flex: 1 1 auto;
    width: auto;
  }

  nav.fixed.top-0.forplex-header .forplex-header__desktop-layout {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 18px;
  }

  nav.fixed.top-0.forplex-header .forplex-header__cluster--left {
    justify-content: flex-start;
    gap: clamp(10px, 1.3vw, 18px);
    flex-wrap: wrap;
  }

  nav.fixed.top-0.forplex-header .forplex-header__cluster--right {
    justify-content: flex-end;
    gap: clamp(10px, 1.3vw, 18px);
    margin-left: auto;
    flex: none;
  }

  nav.fixed.top-0.forplex-header .forplex-header__primary-link {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 11px !important;
    letter-spacing: 0.16em !important;
  }

  nav.fixed.top-0.forplex-header [data-static-consultation-cta="true"] {
    min-height: 46px;
    padding: 12px 22px !important;
    font-size: 12px !important;
    letter-spacing: 0.17em !important;
  }

  nav.fixed.top-0.forplex-header [data-static-language-holder="true"] {
    padding-left: 12px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
  }

  nav.fixed.top-0.forplex-header .forplex-header__mobile-toggle {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  nav.fixed.top-0.forplex-header .forplex-header__bar {
    display: flex !important;
    align-items: center !important;
    min-height: 90px;
    gap: 84px;
  }

  nav.fixed.top-0.forplex-header .forplex-header__logo {
    position: static;
    transform: none;
    flex: none;
    margin: 0;
  }

  nav.fixed.top-0.forplex-header .forplex-header__desktop {
    display: flex !important;
    flex: 1 1 auto;
    width: auto;
  }

  nav.fixed.top-0.forplex-header .forplex-header__desktop-layout {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 24px;
  }

  nav.fixed.top-0.forplex-header .forplex-header__cluster--left {
    justify-content: flex-start;
    gap: clamp(14px, 1.5vw, 24px);
    flex-wrap: wrap;
  }

  nav.fixed.top-0.forplex-header .forplex-header__cluster--right {
    justify-content: flex-end;
    gap: clamp(14px, 1.5vw, 24px);
    margin-left: auto;
    flex: none;
  }

  nav.fixed.top-0.forplex-header .forplex-header__primary-link {
    min-height: 44px;
    padding: 10px 16px;
    font-size: 12px !important;
    letter-spacing: 0.18em !important;
  }

  nav.fixed.top-0.forplex-header [data-static-consultation-cta="true"] {
    min-height: 50px;
    padding: 14px 28px !important;
    font-size: 13px !important;
    letter-spacing: 0.2em !important;
  }

  nav.fixed.top-0.forplex-header [data-static-language-holder="true"] {
    padding-left: 14px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.2) !important;
  }
}

nav.fixed.top-0.forplex-header.forplex-header--solid
  ~ main#main-content
  > div.bg-black.text-white.py-3.px-6.mt-16.scroll-animate-up {
  margin-top: 76px !important;
}

@media (min-width: 1024px) {
  nav.fixed.top-0.forplex-header.forplex-header--solid
    ~ main#main-content
    > div.bg-black.text-white.py-3.px-6.mt-16.scroll-animate-up {
    margin-top: 90px !important;
  }
}

nav.fixed.top-0 img[src="/logo-main.svg"],
nav.fixed.top-0 img[srcset*="/logo-main.svg"] {
  width: 96px !important;
  max-width: 96px !important;
  height: auto !important;
}

@media (min-width: 1024px) {
  nav.fixed.top-0 img[src="/logo-main.svg"],
  nav.fixed.top-0 img[srcset*="/logo-main.svg"] {
    width: 148px !important;
    max-width: 148px !important;
  }
}

footer#contact.forplex-site-footer {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 32%),
    radial-gradient(circle at 88% 16%, rgba(78, 97, 133, 0.16), transparent 24%),
    linear-gradient(180deg, #040507 0%, #020304 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer#contact.forplex-site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.045), transparent 30%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.02), transparent 26%);
  pointer-events: none;
}

footer#contact .forplex-site-footer__shell {
  position: relative;
  z-index: 1;
  width: min(1260px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 4.5vw, 52px) 0 20px;
}

footer#contact .forplex-site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.014));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

footer#contact .forplex-site-footer__top > * {
  min-width: 0;
  padding: 24px 20px;
}

footer#contact .forplex-site-footer__top > * + * {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer#contact .forplex-site-footer__brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: fit-content;
  margin-bottom: 16px;
}

footer#contact .forplex-site-footer__brand-logo img {
  display: block;
  width: 94px;
  max-width: 94px;
  height: auto;
}

footer#contact .forplex-site-footer__eyebrow,
footer#contact .forplex-site-footer__heading {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

footer#contact .forplex-site-footer__eyebrow {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.5);
}

footer#contact .forplex-site-footer__heading {
  margin-bottom: 14px;
}

footer#contact .forplex-site-footer__cta .forplex-site-footer__heading {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-transform: none;
}

footer#contact .forplex-site-footer__description,
footer#contact .forplex-site-footer__cta-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.68;
}

footer#contact .forplex-site-footer__description {
  max-width: 38rem;
}

footer#contact .forplex-site-footer__cta-text {
  max-width: 32ch;
}

footer#contact .forplex-site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

footer#contact .forplex-site-footer__meta-item {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 0 14px 0 0;
  padding: 0 14px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

footer#contact .forplex-site-footer__meta-item::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
}

footer#contact .forplex-site-footer__meta-item:last-child {
  margin-right: 0;
  padding-right: 0;
}

footer#contact .forplex-site-footer__meta-item:last-child::after {
  display: none;
}

footer#contact .forplex-site-footer__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

footer#contact .forplex-site-footer__list-item {
  margin: 0;
}

footer#contact .forplex-site-footer__list-link,
footer#contact .forplex-site-footer__legal-link {
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.5 !important;
  text-decoration: none;
  transition:
    color 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

footer#contact .forplex-site-footer__list-link:hover,
footer#contact .forplex-site-footer__list-link:focus-visible,
footer#contact .forplex-site-footer__legal-link:hover,
footer#contact .forplex-site-footer__legal-link:focus-visible {
  color: #fff !important;
  transform: translateX(2px);
}

footer#contact .forplex-site-footer__cta {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

footer#contact .forplex-site-footer__cta-actions {
  margin-top: 20px;
}

footer#contact .forplex-site-footer__primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
  transition:
    background-color 200ms ease,
    border-color 200ms ease,
    color 200ms ease,
    box-shadow 220ms ease,
    transform 200ms ease;
}

footer#contact .forplex-site-footer__primary-action {
  border: 1px solid rgba(255, 255, 255, 0.94);
  background: rgba(255, 255, 255, 0.98);
  color: #050607;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

@media (hover: hover) {
  footer#contact .forplex-site-footer__primary-action:hover {
    transform: translateY(-1px);
  }

  footer#contact .forplex-site-footer__primary-action:hover {
    background: #fff;
    box-shadow:
      0 18px 34px rgba(0, 0, 0, 0.24),
      0 0 28px rgba(255, 255, 255, 0.12);
  }
}

footer#contact .forplex-site-footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer#contact .forplex-site-footer__rights {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

footer#contact .forplex-site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

footer#contact .forplex-site-footer__legal-link {
  color: rgba(255, 255, 255, 0.52) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
}

@media (min-width: 768px) {
  footer#contact .forplex-site-footer__shell {
    width: min(1260px, calc(100% - 48px));
    padding-bottom: 24px;
  }

  footer#contact .forplex-site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  footer#contact .forplex-site-footer__top > * {
    padding: 28px 26px;
    border-top: 0;
    border-left: 0;
  }

  footer#contact .forplex-site-footer__top > :nth-child(2n) {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  footer#contact .forplex-site-footer__top > :nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  footer#contact .forplex-site-footer__brand-logo img {
    width: 112px;
    max-width: 112px;
  }

  footer#contact .forplex-site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  footer#contact .forplex-site-footer__legal {
    justify-content: flex-end;
  }
}

@media (min-width: 1200px) {
  footer#contact .forplex-site-footer__top {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.82fr) minmax(0, 0.82fr) minmax(0, 1fr);
  }

  footer#contact .forplex-site-footer__top > * {
    padding: 32px 30px;
    border-top: 0;
    border-left: 0;
  }

  footer#contact .forplex-site-footer__top > * + * {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  footer#contact .forplex-site-footer__primary-action {
    width: auto;
    min-width: 240px;
  }
}

#portfolio .forplex-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  width: min(100%, 720px);
  margin: 0 auto clamp(2.5rem, 5vw, 3.25rem);
  padding: 8px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 999px;
  background: linear-gradient(180deg, #fafafa 0%, #f2f4f7 100%);
  box-shadow:
    0 12px 28px rgba(15, 23, 42, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

#portfolio .forplex-filter-tab {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  min-height: 52px;
  margin: 0;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #4b5563;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 0 rgba(15, 23, 42, 0);
  transition:
    background-color 220ms ease,
    color 180ms ease,
    box-shadow 240ms ease,
    transform 220ms ease;
}

#portfolio .forplex-filter-tab--active {
  background: #050607;
  color: #fff;
  box-shadow:
    0 14px 32px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (hover: hover) {
  #portfolio .forplex-filter-tab:hover {
    background: rgba(17, 24, 39, 0.06);
    color: #111827;
    transform: translateY(-1px);
  }

  #portfolio .forplex-filter-tab--active:hover {
    background: #050607;
    color: #fff;
  }
}

#portfolio .forplex-filter-tab:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(17, 24, 39, 0.1),
    0 0 0 1px rgba(17, 24, 39, 0.22) inset;
}

#portfolio .forplex-filter-tab--active:focus-visible {
  box-shadow:
    0 0 0 3px rgba(17, 24, 39, 0.12),
    0 14px 32px rgba(15, 23, 42, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

@media (max-width: 767px) {
  #portfolio .forplex-filter-tabs {
    justify-content: flex-start;
    width: 100%;
    max-width: 100%;
    padding: 6px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
  }

  #portfolio .forplex-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  #portfolio .forplex-filter-tab {
    flex: 0 0 auto;
    min-width: 132px;
    min-height: 48px;
    padding: 0 18px;
    font-size: 14px;
  }
}

body.forplex-services-page main#main-content > section.forplex-services-hero {
  padding-top: 92px !important;
}

@media (min-width: 1024px) {
  body.forplex-services-page main#main-content > section.forplex-services-hero {
    padding-top: 114px !important;
  }
}

body.forplex-services-overview #services-list > section.forplex-services-overview-section > div {
  align-items: stretch;
}

body.forplex-services-overview .forplex-services-overview-copy {
  padding: clamp(32px, 7vw, 56px) !important;
}

@media (min-width: 1024px) {
  body.forplex-services-overview .forplex-services-overview-copy {
    padding: clamp(48px, 6vw, 96px) !important;
    min-height: 100%;
  }
}

body.forplex-services-overview .forplex-services-overview-copy h2 {
  margin-bottom: 18px !important;
}

body.forplex-services-overview .forplex-services-overview-copy p {
  max-width: 38rem;
}

body.forplex-services-overview .forplex-services-overview-copy .flex.flex-wrap.gap-4 {
  margin-top: 8px;
}

.forplex-home-note {
  display: none !important;
}

@media (min-width: 768px) {
  .forplex-home-note {
    display: block !important;
    top: clamp(116px, 11vw, 156px) !important;
    left: clamp(24px, 4vw, 72px) !important;
    right: auto !important;
    width: min(360px, calc(100vw - 64px)) !important;
  }

  .forplex-home-note p {
    padding: 18px 22px !important;
    font-size: clamp(16px, 1.15vw, 19px) !important;
    line-height: 1.55 !important;
  }
}

@media (min-width: 1280px) {
  .forplex-home-note {
    top: 152px !important;
    left: 40px !important;
    width: 380px !important;
  }

  .forplex-home-note p {
    padding: 20px 24px !important;
    font-size: 20px !important;
  }
}

body.forplex-services-detail main#main-content > section.forplex-services-detail-section {
  padding-top: clamp(72px, 8vw, 112px) !important;
  padding-bottom: clamp(72px, 8vw, 112px) !important;
}

#portfolio .transition-all.duration-500.opacity-0.translate-y-6 {
  opacity: 1 !important;
  transform: none !important;
}

.forplex-wordmark {
  --forplex-width: 100px;
  display: inline-flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: calc(var(--forplex-width) * 0.025);
  min-width: 0;
  line-height: 1;
  color: #fff;
  vertical-align: bottom;
}

.forplex-wordmark__mark {
  display: block;
  width: calc(var(--forplex-width) * 0.58);
  height: calc(var(--forplex-width) * 0.42);
  overflow: hidden;
  flex: none;
}

.forplex-wordmark__mark-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.12);
  transform-origin: top center;
}

.forplex-wordmark__text {
  display: block;
  width: 100%;
  color: #fff;
  font-size: calc(var(--forplex-width) * 0.235);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
