:root {
  --ux-navy: #000b21;
  --ux-navy-soft: #071a3a;
  --ux-blue: #1b58ee;
  --ux-blue-bright: #4d7cff;
  --ux-violet: #7657f6;
  --ux-cyan: #49c6e5;
  --ux-ink: #10203d;
  --ux-copy: #34425e;
  --ux-muted: #65718a;
  --ux-mist: #f4f7fb;
  --ux-line: #dfe5ef;
  --ux-white: #fff;
  --ux-success: #176b52;
  --ux-error: #a52a2a;
  --ux-shadow: 0 24px 70px rgba(0, 20, 62, 0.12);
  --ux-shadow-soft: 0 14px 44px rgba(0, 20, 62, 0.07);
  --ux-radius: 24px;
  --ux-radius-small: 14px;
  --ux-container: min(1180px, calc(100vw - 48px));
  --ux-font: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  background: var(--ux-white);
  color: var(--ux-copy);
  font-family: var(--ux-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.ux-menu-lock {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--ux-blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #0c42c2;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #7cc9ff;
  outline-offset: 4px;
}

::selection {
  background: rgba(37, 92, 255, 0.22);
  color: var(--ux-navy);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.7em;
  color: var(--ux-navy);
  font-weight: 680;
  letter-spacing: -0.035em;
  line-height: 1.16;
  text-wrap: balance;
}

.ux-title-line {
  display: block;
  text-wrap: balance;
}

.ux-nowrap {
  white-space: nowrap;
}

.ux-meta-separator {
  margin-inline: 0.22em;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 4.1vw, 3.65rem);
}

h3 {
  font-size: clamp(1.22rem, 2.2vw, 1.6rem);
  letter-spacing: -0.018em;
}

p {
  margin: 0 0 1.15em;
}

ul,
ol {
  margin: 0 0 1.5em;
  padding-left: 1.3em;
}

li + li {
  margin-top: 0.5em;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.screen-reader-text:focus {
  z-index: 100000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto !important;
  clip-path: none;
  padding: 12px 18px;
  border-radius: 8px;
  background: var(--ux-white);
  color: var(--ux-navy);
  box-shadow: var(--ux-shadow);
}

.ux-container {
  width: var(--ux-container);
  margin-inline: auto;
}

.ux-content-narrow {
  max-width: 780px;
}

.ux-site-main {
  min-height: 60vh;
}

.ux-site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: 78px;
  border-bottom: 1px solid rgba(0, 11, 33, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 30px rgba(0, 11, 33, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ux-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 32px;
}

.ux-brand,
.ux-brand .custom-logo-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  text-decoration: none;
}

.ux-brand > img,
.ux-brand .custom-logo {
  width: 178px;
  max-height: 52px;
  object-fit: contain;
}

.ux-primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.ux-menu,
.ux-footer-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ux-menu li {
  margin: 0;
}

.ux-menu a {
  position: relative;
  display: block;
  padding-block: 10px;
  color: var(--ux-ink);
  font-size: 0.94rem;
  font-weight: 590;
  text-decoration: none;
  white-space: nowrap;
}

.ux-menu a::after {
  position: absolute;
  right: 50%;
  bottom: 3px;
  left: 50%;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--ux-blue), var(--ux-violet));
  content: "";
  transition: right 180ms ease, left 180ms ease;
}

.ux-menu a:hover::after,
.ux-menu .current-menu-item > a::after,
.ux-menu .current_page_item > a::after {
  right: 0;
  left: 0;
}

.ux-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ux-mist);
}

.ux-nav-toggle > span:not(.screen-reader-text) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: var(--ux-navy);
  transition: transform 180ms ease;
}

.is-menu-open .ux-nav-toggle > span:nth-last-child(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.is-menu-open .ux-nav-toggle > span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.ux-language-link {
  color: var(--ux-muted);
  font-size: 0.84rem;
  font-weight: 650;
  text-decoration: none;
}

.ux-button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ux-blue), #3c63f5 55%, var(--ux-violet));
  box-shadow: 0 12px 28px rgba(37, 92, 255, 0.22);
  color: var(--ux-white) !important;
  font-size: 0.98rem;
  font-weight: 670;
  line-height: 1.2;
  text-decoration: none;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.ux-button:hover,
.wp-block-button__link:hover {
  box-shadow: 0 16px 34px rgba(37, 92, 255, 0.3);
  color: var(--ux-white);
  transform: translateY(-2px);
}

.ux-button--small {
  min-height: 43px;
  padding: 10px 18px;
  font-size: 0.9rem;
}

.ux-button--ghost,
.ux-section--dark .is-style-outline .wp-block-button__link,
.ux-hero .is-style-outline .wp-block-button__link {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: none;
  color: var(--ux-white) !important;
}

.ux-button--light {
  background: var(--ux-white);
  box-shadow: none;
  color: var(--ux-navy) !important;
}

.ux-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-weight: 650;
  text-decoration: none;
}

.ux-text-link::after {
  content: "↗";
  transition: transform 180ms ease;
}

.ux-text-link:hover::after {
  transform: translate(2px, -2px);
}

.ux-actions,
.wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.ux-eyebrow,
.ux-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--ux-blue);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.ux-eyebrow::before,
.ux-kicker::before {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}

.ux-section--dark .ux-eyebrow,
.ux-hero .ux-eyebrow {
  color: #96b5ff;
}

.ux-lede {
  max-width: 760px;
  color: var(--ux-copy);
  font-size: clamp(1.1rem, 1.5vw, 1.28rem);
  line-height: 1.78;
}

.ux-section--dark .ux-lede,
.ux-hero .ux-lede {
  color: rgba(255, 255, 255, 0.76);
}

.ux-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(84px, 10vw, 148px);
}

.ux-section--light {
  background: var(--ux-white);
}

.ux-section--mist {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(244, 247, 251, 0.98)),
    radial-gradient(circle at 85% 20%, rgba(118, 87, 246, 0.12), transparent 30%);
}

.ux-section--dark {
  background:
    radial-gradient(circle at 82% 10%, rgba(118, 87, 246, 0.22), transparent 32%),
    radial-gradient(circle at 4% 90%, rgba(27, 88, 238, 0.16), transparent 34%),
    var(--ux-navy);
  color: rgba(255, 255, 255, 0.76);
}

.ux-section--dark h1,
.ux-section--dark h2,
.ux-section--dark h3,
.ux-section--dark h4,
.ux-hero h1,
.ux-hero h2,
.ux-hero h3 {
  color: var(--ux-white);
}

.ux-section--dark a:not(.ux-button),
.ux-hero a:not(.ux-button) {
  color: var(--ux-white);
}

.ux-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.62fr);
  align-items: start;
  gap: 64px;
  margin-bottom: clamp(44px, 6vw, 76px);
}

.ux-section-head > :last-child {
  margin-bottom: 0;
}

.ux-section-head:not(.ux-section-head--single) > :last-child {
  margin-top: 52px;
  text-wrap: balance;
}

.ux-service-choice .ux-section-head {
  align-items: center;
}

.ux-service-choice .ux-section-head:not(.ux-section-head--single) > :last-child {
  margin-top: 0;
}

.ux-section-head--single {
  display: block;
}

.ux-section-head--single > * {
  max-width: 800px;
}

html[lang="zh-CN"] .ux-section-head h2 {
  font-size: clamp(2.15rem, 3.55vw, 3.3rem);
}

.ux-hero {
  position: relative;
  min-height: calc(100svh - 78px);
  overflow: hidden;
  padding-block: clamp(86px, 10vw, 140px);
  background:
    radial-gradient(circle at 77% 24%, rgba(118, 87, 246, 0.3), transparent 28%),
    radial-gradient(circle at 9% 94%, rgba(27, 88, 238, 0.2), transparent 36%),
    linear-gradient(135deg, var(--ux-navy), #071a3a 63%, #091533);
  color: rgba(255, 255, 255, 0.8);
}

.ux-hero::after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: -8vw;
  width: min(58vw, 760px);
  height: 100%;
  background:
    linear-gradient(120deg, transparent 28%, rgba(255, 255, 255, 0.035) 28.2%, transparent 28.7%),
    linear-gradient(142deg, transparent 50%, rgba(118, 87, 246, 0.075) 50.2%, transparent 50.7%);
  content: "";
  pointer-events: none;
}

.ux-hero > *,
.ux-section > * {
  position: relative;
  z-index: 1;
}

.ux-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.66fr);
  align-items: center;
  gap: clamp(56px, 7vw, 104px);
}

.ux-hero h1 {
  max-width: 820px;
  margin-bottom: 26px;
}

html[lang="zh-CN"] .ux-front-page .ux-hero h1 {
  font-size: clamp(3rem, 4.55vw, 4.4rem);
}

html[lang="en-US"] .ux-hero-slogan {
  max-width: 800px;
  font-size: clamp(3.2rem, 3.8vw, 4rem);
  line-height: 1.08;
}

@media (min-width: 921px) {
  html[lang="en-US"] .ux-hero-slogan .ux-title-line {
    white-space: nowrap;
  }
}

html[lang="zh-CN"] .ux-front-page .ux-hero__subhead {
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
}

.ux-hero__subhead {
  max-width: 740px;
  margin-bottom: 20px;
  color: var(--ux-white);
  font-size: clamp(1.25rem, 2.1vw, 1.72rem);
  font-weight: 540;
  line-height: 1.5;
}

@media (min-width: 921px) {
  html[lang="zh-CN"] .ux-method-subhead,
  html[lang="zh-CN"] .ux-contact-intro .ux-title-line {
    width: max-content;
    max-width: none;
    white-space: nowrap;
  }
}

.ux-hero__copy {
  max-width: 720px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.ux-hero__note {
  max-width: 760px;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.87rem;
}

.ux-hero--compact {
  min-height: auto;
  padding-block: clamp(84px, 9vw, 128px);
}

.ux-hero--compact h1 {
  max-width: 950px;
  font-size: clamp(2.65rem, 5vw, 4.8rem);
}

.ux-hero-system {
  position: relative;
  min-height: 510px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 32px;
  background: rgba(4, 18, 47, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 36px 80px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.ux-hero-system::before {
  position: absolute;
  inset: 10% 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 112, 255, 0.16), transparent 68%);
  content: "";
  filter: blur(10px);
}

.ux-system-kicker {
  position: relative;
  margin-bottom: 34px;
  color: #9cb9ff;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ux-system-stack {
  position: relative;
  display: grid;
  gap: 14px;
}

.ux-system-row {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.ux-system-row:nth-child(2) {
  margin-left: 24px;
}

.ux-system-row:nth-child(3) {
  margin-left: 48px;
}

.ux-system-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(37, 92, 255, 0.6), rgba(118, 87, 246, 0.46));
  color: var(--ux-white);
  font-weight: 750;
}

.ux-system-row strong {
  display: block;
  color: var(--ux-white);
  font-size: 1rem;
}

.ux-system-row span:last-child {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.ux-problem-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ux-line);
  counter-reset: problems;
  list-style: none;
}

.ux-problem-list li {
  position: relative;
  min-height: 176px;
  margin: 0;
  padding: 32px 32px 32px 74px;
  border-bottom: 1px solid var(--ux-line);
  counter-increment: problems;
  font-size: 1.06rem;
}

.ux-problem-list li:nth-child(odd) {
  border-right: 1px solid var(--ux-line);
}

.ux-problem-list li::before {
  position: absolute;
  top: 31px;
  left: 24px;
  color: var(--ux-blue);
  content: "0" counter(problems);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.ux-problem-list li:last-child {
  grid-column: 1 / -1;
  min-height: auto;
  padding-right: 20%;
  border-right: 0;
}

.ux-conclusion {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 40px;
  padding: 24px 28px;
  border-left: 3px solid var(--ux-blue);
  border-radius: 0 14px 14px 0;
  background: rgba(37, 92, 255, 0.055);
  color: var(--ux-ink);
  font-weight: 590;
}

.ux-section--dark .ux-conclusion {
  background: rgba(255, 255, 255, 0.07);
  color: var(--ux-white);
}

.ux-priority-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--ux-radius);
  background: rgba(255, 255, 255, 0.13);
}

.ux-priority {
  min-height: 420px;
  padding: clamp(34px, 5vw, 58px);
  background: rgba(2, 17, 48, 0.82);
}

.ux-priority__number {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 52px;
  color: #9cb9ff;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.ux-priority h3 {
  max-width: 420px;
  margin-bottom: 26px;
  font-size: clamp(1.55rem, 2.6vw, 2.25rem);
}

.ux-priority ul {
  color: rgba(255, 255, 255, 0.7);
}

.ux-system-overview {
  display: grid;
  grid-template-columns: 0.82fr 1fr 1.18fr;
  gap: 18px;
}

.ux-system-card,
.ux-service-preview,
.ux-value-card,
.ux-fit-card,
.ux-deliverable-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--ux-line);
  border-radius: var(--ux-radius);
  background: var(--ux-white);
  box-shadow: var(--ux-shadow-soft);
}

.ux-system-card::before,
.ux-service-preview::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--ux-blue), var(--ux-violet));
  content: "";
}

.ux-system-card__count {
  margin-bottom: 54px;
  color: var(--ux-blue);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 740;
  letter-spacing: -0.06em;
  line-height: 1;
}

.ux-brand-dimension-icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin-bottom: 46px;
  place-items: center;
  border: 1px solid rgba(27, 88, 238, 0.16);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(27, 88, 238, 0.11), rgba(118, 87, 246, 0.08));
  color: var(--ux-blue);
}

.ux-brand-dimension-icon svg {
  width: 46px;
  height: 46px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ux-system-card h3 {
  margin-bottom: 16px;
}

.ux-system-card p:last-child {
  margin-bottom: 0;
}

.ux-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ux-service-preview {
  display: flex;
  min-height: 450px;
  flex-direction: column;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.ux-service-preview:hover {
  border-color: rgba(37, 92, 255, 0.34);
  box-shadow: var(--ux-shadow);
  transform: translateY(-4px);
}

.ux-service-preview__letter {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 48px;
  place-items: center;
  border-radius: 18px;
  background: var(--ux-mist);
  color: var(--ux-blue);
  font-size: 1.45rem;
  font-weight: 760;
}

.ux-service-preview h3 {
  min-height: 3.4em;
  font-size: 1.42rem;
}

.ux-service-preview p {
  color: var(--ux-muted);
}

.ux-service-preview__result {
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid var(--ux-line);
  color: var(--ux-ink) !important;
  font-size: 0.91rem;
  font-weight: 560;
}

.ux-service-preview .ux-text-link {
  margin-top: 20px;
  color: var(--ux-blue);
}

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

.ux-value-card {
  min-height: 280px;
  padding: 30px;
  box-shadow: none;
}

.ux-value-card__index {
  display: block;
  margin-bottom: 56px;
  color: var(--ux-blue);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.ux-value-card p {
  margin-bottom: 0;
  color: var(--ux-muted);
  font-size: 0.93rem;
}

.ux-profile-preview {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
}

.ux-profile-preview--compact {
  grid-template-columns: minmax(220px, 290px) minmax(0, 1fr);
  gap: clamp(48px, 6vw, 84px);
}

.ux-profile-preview--compact .ux-profile-image {
  width: 100%;
  max-width: 290px;
  justify-self: start;
}

.ux-profile-image {
  position: relative;
}

.ux-profile-image::before {
  position: absolute;
  z-index: -1;
  top: -20px;
  right: -20px;
  width: 52%;
  height: 46%;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--ux-blue), var(--ux-violet));
  content: "";
}

.ux-profile-image img {
  width: 100%;
  max-height: 700px;
  border-radius: 28px;
  box-shadow: var(--ux-shadow);
  object-fit: cover;
  object-position: center 24%;
}

.ux-profile-preview--compact .ux-profile-image img {
  aspect-ratio: 1;
  max-height: none;
  object-position: center;
}

.ux-about-hero .ux-hero-system {
  min-height: 470px;
}

.ux-credential-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.ux-credential {
  padding: 8px 13px;
  border: 1px solid var(--ux-line);
  border-radius: 999px;
  background: var(--ux-white);
  color: var(--ux-ink);
  font-size: 0.78rem;
  font-weight: 650;
}

.ux-cta {
  position: relative;
  overflow: hidden;
  padding-block: clamp(84px, 10vw, 144px);
  background:
    radial-gradient(circle at 86% 14%, rgba(118, 87, 246, 0.32), transparent 30%),
    linear-gradient(135deg, #001435, var(--ux-navy));
  color: rgba(255, 255, 255, 0.76);
}

.ux-cta::after {
  position: absolute;
  right: -8%;
  bottom: -70%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(255, 255, 255, 0.018), 0 0 0 160px rgba(255, 255, 255, 0.012);
  content: "";
}

.ux-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.55fr);
  align-items: end;
  gap: 72px;
}

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

.ux-question-list {
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: questions;
}

.ux-question-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: start;
  gap: 14px;
  margin: 0;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  counter-increment: questions;
}

.ux-question-list li::before {
  color: #9cb9ff;
  content: "0" counter(questions);
  font-size: 0.75rem;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.ux-cta__action {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--ux-radius);
  background: rgba(255, 255, 255, 0.06);
}

.ux-cta__action p {
  margin-bottom: 28px;
}

.ux-choice-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  margin-top: 48px;
  border: 1px solid var(--ux-line);
  border-radius: var(--ux-radius);
}

.ux-choice-strip > div {
  padding: 28px;
  border-right: 1px solid var(--ux-line);
}

.ux-choice-strip > div:last-child {
  border-right: 0;
}

.ux-choice-strip strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ux-blue);
  font-size: 1.08rem;
}

.ux-choice-strip p {
  margin: 0;
  color: var(--ux-muted);
  font-size: 0.9rem;
}

.ux-service-detail {
  padding-block: clamp(78px, 9vw, 126px);
  border-top: 1px solid var(--ux-line);
}

.ux-service-detail:nth-of-type(even) {
  background: var(--ux-mist);
}

.ux-service-detail__head {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 34px;
  margin-bottom: 64px;
}

.ux-service-badge {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  border-radius: 27px;
  background: linear-gradient(145deg, var(--ux-blue), var(--ux-violet));
  box-shadow: 0 18px 38px rgba(37, 92, 255, 0.26);
  color: var(--ux-white);
  font-size: 2.2rem;
  font-weight: 760;
}

.ux-service-detail__head h2 {
  max-width: 860px;
}

.ux-service-detail__head .ux-eyebrow {
  margin-bottom: 12px;
}

.ux-service-detail__body {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(48px, 7vw, 90px);
}

.ux-service-detail__body h3,
.ux-deliverables h3 {
  margin-top: 34px;
  font-size: 1.08rem;
}

.ux-service-detail__body h3:first-child,
.ux-deliverables h3:first-child {
  margin-top: 0;
}

.ux-clean-list {
  padding: 0;
  list-style: none;
}

.ux-clean-list li {
  position: relative;
  margin: 0;
  padding: 12px 0 12px 26px;
  border-bottom: 1px solid var(--ux-line);
}

.ux-clean-list li::before {
  position: absolute;
  top: 1.3em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ux-blue), var(--ux-violet));
  content: "";
}

.ux-deliverables {
  padding: clamp(30px, 4vw, 46px);
  border-radius: var(--ux-radius);
  background: var(--ux-navy);
  color: rgba(255, 255, 255, 0.7);
  box-shadow: var(--ux-shadow);
}

.ux-deliverables h3,
.ux-deliverables h4 {
  color: var(--ux-white);
}

.ux-deliverables .ux-clean-list li {
  border-color: rgba(255, 255, 255, 0.12);
}

.ux-deliverables .ux-clean-list li::before {
  background: #8fb0ff;
}

.ux-deliverables__label {
  margin-bottom: 26px;
  color: #9cb9ff;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ux-service-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid var(--ux-line);
}

.ux-service-foot p {
  max-width: 760px;
  margin: 0;
  color: var(--ux-ink);
  font-weight: 580;
}

.ux-network {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 8vw, 110px);
}

.ux-network-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.ux-network-card {
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--ux-radius);
  background: rgba(255, 255, 255, 0.055);
}

.ux-network-card ul {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.91rem;
}

.ux-seven-p {
  position: relative;
  margin-top: 64px;
}

.ux-seven-p::before {
  position: absolute;
  top: 31px;
  right: 6.5%;
  left: 6.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--ux-blue), var(--ux-violet), var(--ux-cyan));
  content: "";
}

.ux-seven-p__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.ux-p-card {
  padding-top: 4px;
  text-align: center;
}

.ux-p-node {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 22px;
  place-items: center;
  border: 6px solid var(--ux-navy);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--ux-blue), var(--ux-violet));
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
  color: var(--ux-white);
  font-size: 0.78rem;
  font-weight: 760;
}

.ux-p-card h3 {
  margin-bottom: 6px;
  color: var(--ux-white);
  font-size: 0.96rem;
}

.ux-p-card > p {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.72rem;
}

.ux-p-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 68px;
  border-top: 1px solid var(--ux-line);
}

.ux-p-detail {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  min-height: 238px;
  padding: 32px;
  border-right: 1px solid var(--ux-line);
  border-bottom: 1px solid var(--ux-line);
}

.ux-p-detail:nth-child(even) {
  border-right: 0;
}

.ux-p-detail:last-child {
  grid-column: 1 / -1;
  border-right: 0;
}

.ux-p-detail__id {
  color: var(--ux-blue);
  font-size: 0.83rem;
  font-weight: 760;
}

.ux-p-detail h3 {
  margin-bottom: 15px;
}

.ux-p-detail strong {
  display: block;
  margin-top: 18px;
  color: var(--ux-ink);
  font-size: 0.9rem;
}

.ux-pathway {
  padding-block: clamp(84px, 10vw, 140px);
}

.ux-pathway-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 8vw, 108px);
}

html[lang="zh-CN"] .ux-pathway h2 {
  font-size: clamp(3rem, 4.8vw, 4.35rem);
}

.ux-pathway__statement {
  margin: 30px 0;
  padding: 20px 0 20px 24px;
  border-left: 3px solid var(--ux-blue);
  color: var(--ux-ink);
  font-size: 1.23rem;
  font-weight: 610;
}

.ux-section--dark .ux-pathway__statement {
  color: var(--ux-white);
}

.ux-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 32px 0;
}

.ux-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 14px;
  border: 1px solid var(--ux-line);
  border-radius: 999px;
  background: var(--ux-white);
  color: var(--ux-ink);
  font-size: 0.82rem;
  font-weight: 610;
}

.ux-flow i {
  color: var(--ux-blue);
  font-style: normal;
}

.ux-section--dark .ux-flow span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: var(--ux-white);
}

.ux-measures {
  margin-top: 34px;
  padding: 24px;
  border: 1px solid var(--ux-line);
  border-radius: var(--ux-radius-small);
  background: var(--ux-mist);
}

.ux-measures strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ux-blue);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.ux-section--dark .ux-measures {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.ux-section--dark .ux-measures strong {
  color: #9cb9ff;
}

.ux-relation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ux-relation-card {
  padding: 34px;
  border: 1px solid var(--ux-line);
  border-radius: var(--ux-radius);
  background: var(--ux-white);
}

.ux-relation-card__letter {
  display: block;
  margin-bottom: 40px;
  color: var(--ux-blue);
  font-size: 2.4rem;
  font-weight: 750;
  line-height: 1;
}

.ux-credentials-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  margin-top: 32px;
  padding: 0;
  border-top: 1px solid var(--ux-line);
  list-style: none;
}

.ux-credentials-list li {
  position: relative;
  margin: 0;
  padding: 16px 0 16px 22px;
  border-bottom: 1px solid var(--ux-line);
  color: var(--ux-ink);
  font-size: 0.91rem;
}

.ux-credentials-list li::before {
  position: absolute;
  top: 1.45em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ux-blue);
  content: "";
}

.ux-belief {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 80px;
}

.ux-belief blockquote {
  margin: 0;
  color: var(--ux-white);
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.45;
}

.ux-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.1fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: start;
}

.ux-contact-direct {
  margin-top: 38px;
  padding-top: 30px;
  border-top: 1px solid var(--ux-line);
}

.ux-contact-direct a {
  display: block;
  width: fit-content;
  margin-top: 10px;
  color: var(--ux-ink);
  font-weight: 600;
  text-decoration: none;
}

.ux-contact-form-wrap {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--ux-line);
  border-radius: 28px;
  background: var(--ux-white);
  box-shadow: var(--ux-shadow);
}

.ux-contact-form {
  position: relative;
}

.ux-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ux-field {
  margin: 0 0 18px;
}

.ux-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--ux-ink);
  font-size: 0.86rem;
  font-weight: 650;
}

.ux-field input,
.ux-field select,
.ux-field textarea {
  width: 100%;
  border: 1px solid #ccd5e3;
  border-radius: 12px;
  background: #fbfcfe;
  color: var(--ux-ink);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.ux-field input,
.ux-field select {
  min-height: 52px;
  padding: 0 15px;
}

.ux-field textarea {
  min-height: 132px;
  padding: 13px 15px;
  resize: vertical;
}

.ux-field input:focus,
.ux-field select:focus,
.ux-field textarea:focus {
  border-color: var(--ux-blue);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(37, 92, 255, 0.1);
}

.ux-consent {
  margin: 8px 0 20px;
  color: var(--ux-muted);
  font-size: 0.83rem;
}

.ux-consent label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.ux-consent input {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 4px;
}

.ux-button--submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.ux-form-expectation {
  margin: 16px 0 0;
  color: var(--ux-muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.ux-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.ux-form-notice {
  margin-bottom: 24px;
  padding: 15px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.ux-form-notice--success {
  border: 1px solid rgba(23, 107, 82, 0.22);
  background: rgba(23, 107, 82, 0.08);
  color: var(--ux-success);
}

.ux-form-notice--error {
  border: 1px solid rgba(165, 42, 42, 0.22);
  background: rgba(165, 42, 42, 0.07);
  color: var(--ux-error);
}

.ux-fit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  list-style: none;
}

.ux-fit-list li {
  position: relative;
  min-height: 126px;
  margin: 0;
  padding: 26px 26px 26px 54px;
  border: 1px solid var(--ux-line);
  border-radius: 18px;
  background: var(--ux-white);
}

.ux-fit-list li::before {
  position: absolute;
  top: 31px;
  left: 24px;
  width: 13px;
  height: 13px;
  border: 3px solid var(--ux-white);
  border-radius: 50%;
  background: var(--ux-blue);
  box-shadow: 0 0 0 1px var(--ux-blue);
  content: "";
}

.ux-post-card {
  padding-block: 32px;
  border-bottom: 1px solid var(--ux-line);
}

.ux-post-card h2 {
  font-size: 1.75rem;
}

.ux-post-card h2 a {
  color: var(--ux-navy);
  text-decoration: none;
}

.ux-article {
  padding-block: 90px 120px;
}

.ux-article-header {
  margin-bottom: 54px;
}

.ux-article-header h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

.ux-prose > * {
  max-width: 760px;
}

.ux-prose > .alignwide {
  max-width: 1180px;
}

.ux-site-footer {
  padding: 72px 0 28px;
  background: #000818;
  color: rgba(255, 255, 255, 0.58);
}

.ux-footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(160px, 0.5fr) minmax(200px, 0.65fr);
  gap: 70px;
  padding-bottom: 60px;
}

.ux-footer-brand img {
  width: 205px;
  filter: grayscale(1) brightness(0) invert(1);
}

.ux-footer-brand p {
  max-width: 470px;
  margin-top: 22px;
}

html[lang="zh-CN"] .ux-footer-brand p {
  width: 205px;
  max-width: 100%;
  text-align: center;
}

.ux-site-footer .ux-eyebrow {
  margin-bottom: 18px;
  color: #8aaaff;
}

.ux-footer-menu {
  align-items: flex-start;
  flex-direction: column;
  gap: 7px;
}

.ux-footer-menu li {
  margin: 0;
}

.ux-footer-menu a,
.ux-footer-contact a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  text-decoration: none;
}

.ux-footer-contact a {
  display: block;
  margin-bottom: 9px;
}

.ux-footer-contact-line {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin: 0 0 9px;
  white-space: nowrap;
}

.ux-footer-contact-line a {
  display: inline;
  margin-bottom: 0;
}

.ux-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.ux-footer-bottom p {
  margin: 0;
}

body.admin-bar .ux-site-header {
  top: 32px;
}

.alignfull {
  width: 100%;
  max-width: none;
  margin-right: 0;
  margin-left: 0;
}

.alignwide {
  width: var(--ux-container);
  max-width: var(--ux-container);
  margin-inline: auto;
}

.ux-page > :not(.alignfull):not(.alignwide):not(.ux-hero):not(.ux-section):not(.ux-pathway):not(.ux-service-detail):not(.ux-cta) {
  width: min(760px, calc(100% - 48px));
  margin-inline: auto;
}

.ux-page > .ux-hero,
.ux-page > .ux-section,
.ux-page > .ux-pathway,
.ux-page > .ux-service-detail,
.ux-page > .ux-cta {
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

@media (max-width: 1080px) {
  .ux-menu {
    gap: 18px;
  }

  .ux-header-cta {
    display: none;
  }

  .ux-hero__grid {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 48px;
  }

  .ux-system-overview,
  .ux-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ux-service-grid {
    gap: 12px;
  }

  .ux-service-preview {
    padding: 28px;
  }

  .ux-seven-p {
    overflow-x: auto;
    padding-bottom: 16px;
  }

  .ux-seven-p::before {
    right: auto;
    left: 44px;
    width: 780px;
  }

  .ux-seven-p__grid {
    width: 880px;
  }
}

@media (max-width: 920px) {
  :root {
    --ux-container: min(100% - 36px, 760px);
  }

  .ux-site-header.is-menu-open {
    background: #fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  body.admin-bar .ux-site-header {
    top: 46px;
  }

  .ux-nav-toggle {
    display: block;
  }

  .ux-primary-nav {
    position: fixed;
    z-index: 999;
    top: 78px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    overflow-y: auto;
    align-items: stretch;
    padding: 28px 24px 48px;
    background: rgba(255, 255, 255, 0.99);
  }

  body.admin-bar .ux-primary-nav {
    top: 124px;
  }

  .is-menu-open .ux-primary-nav {
    display: block;
  }

  .ux-menu {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .ux-menu a {
    padding: 18px 2px;
    border-bottom: 1px solid var(--ux-line);
    font-size: 1.15rem;
  }

  .ux-menu a::after {
    display: none;
  }

  .ux-header-cta {
    display: flex;
    width: 100%;
    margin-top: 28px;
  }

  .ux-language-link {
    display: inline-flex;
    margin-top: 24px;
    padding: 8px 2px;
  }

  .ux-hero {
    min-height: auto;
  }

  .ux-hero__grid,
  .ux-section-head,
  .ux-profile-preview,
  .ux-cta__grid,
  .ux-network,
  .ux-pathway-grid,
  .ux-belief,
  .ux-contact-layout {
    grid-template-columns: 1fr;
  }

  .ux-section-head:not(.ux-section-head--single) > :last-child {
    margin-top: 0;
  }

  .ux-profile-preview--compact .ux-profile-image {
    width: min(260px, calc(100% - 14px));
  }

  .ux-hero-system {
    min-height: auto;
  }

  .ux-service-grid,
  .ux-relation-grid {
    grid-template-columns: 1fr;
  }

  .ux-service-preview {
    min-height: auto;
  }

  .ux-service-preview h3 {
    min-height: auto;
  }

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

  .ux-choice-strip > div:nth-child(2) {
    border-right: 0;
  }

  .ux-choice-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--ux-line);
  }

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

  .ux-service-foot {
    align-items: flex-start;
    flex-direction: column;
  }

  .ux-network-columns {
    grid-template-columns: 1fr;
  }

  .ux-contact-form-wrap {
    width: 100%;
  }

  .ux-footer-top {
    grid-template-columns: 1.4fr 0.8fr;
  }

  .ux-footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --ux-container: calc(100% - 30px);
    --ux-radius: 20px;
  }

  html {
    scroll-padding-top: 80px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.65rem);
  }

  html[lang="zh-CN"] .ux-front-page .ux-hero h1 {
    font-size: clamp(2.05rem, 9vw, 2.4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9.5vw, 2.7rem);
  }

  .ux-site-header,
  .ux-header-inner {
    min-height: 70px;
  }

  .ux-brand > img,
  .ux-brand .custom-logo {
    width: 154px;
    max-height: 44px;
  }

  .ux-primary-nav {
    top: 70px;
  }

  body.admin-bar .ux-primary-nav {
    top: 116px;
  }

  .ux-section,
  .ux-hero,
  .ux-cta {
    padding-block: 76px;
  }

  .ux-hero__grid {
    gap: 48px;
  }

  .ux-hero__subhead {
    font-size: 1.18rem;
  }

  .ux-actions,
  .wp-block-buttons {
    align-items: stretch;
    flex-direction: column;
  }

  .ux-actions .ux-button,
  .wp-block-buttons .wp-block-button,
  .wp-block-buttons .wp-block-button__link {
    width: 100%;
  }

  .ux-hero-system {
    min-height: 430px;
    padding: 22px;
  }

  .ux-system-row {
    grid-template-columns: 48px 1fr;
    padding: 15px;
  }

  .ux-system-row:nth-child(2),
  .ux-system-row:nth-child(3) {
    margin-left: 0;
  }

  .ux-system-mark {
    width: 42px;
    height: 42px;
  }

  .ux-problem-list,
  .ux-priority-grid,
  .ux-system-overview,
  .ux-value-grid,
  .ux-p-details,
  .ux-network-columns,
  .ux-credentials-list,
  .ux-form-grid,
  .ux-fit-list {
    grid-template-columns: 1fr;
  }

  .ux-problem-list li,
  .ux-problem-list li:nth-child(odd) {
    min-height: auto;
    border-right: 0;
  }

  .ux-problem-list li:last-child {
    grid-column: auto;
    padding-right: 32px;
  }

  .ux-priority {
    min-height: auto;
    padding: 32px 26px;
  }

  .ux-service-preview,
  .ux-system-card,
  .ux-value-card {
    padding: 27px;
  }

  .ux-profile-preview {
    gap: 42px;
  }

  .ux-profile-image {
    width: calc(100% - 14px);
  }

  .ux-profile-image::before {
    right: -14px;
  }

  .ux-profile-preview--compact .ux-profile-image {
    width: min(220px, calc(100% - 14px));
    justify-self: center;
  }

  .ux-brand-dimension-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 34px;
    border-radius: 19px;
  }

  .ux-brand-dimension-icon svg {
    width: 40px;
    height: 40px;
  }

  html[lang="zh-CN"] .ux-pathway h2 {
    font-size: clamp(2.65rem, 13.5vw, 3.35rem);
  }

  .ux-cta__action {
    padding: 26px;
  }

  .ux-choice-strip {
    grid-template-columns: 1fr;
  }

  .ux-choice-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--ux-line);
  }

  .ux-choice-strip > div:last-child {
    border-bottom: 0;
  }

  .ux-service-detail {
    padding-block: 72px;
  }

  .ux-service-detail__head {
    grid-template-columns: 1fr;
    margin-bottom: 42px;
  }

  .ux-service-badge {
    width: 74px;
    height: 74px;
    border-radius: 22px;
    font-size: 1.7rem;
  }

  .ux-deliverables {
    padding: 28px 24px;
  }

  .ux-p-detail,
  .ux-p-detail:last-child {
    grid-column: auto;
    grid-template-columns: 48px 1fr;
    min-height: auto;
    padding: 26px 16px;
    border-right: 0;
  }

  .ux-flow {
    display: grid;
    grid-template-columns: 1fr;
  }

  .ux-flow span {
    justify-content: center;
    border-radius: 12px;
  }

  .ux-flow i {
    text-align: center;
    transform: rotate(90deg);
  }

  .ux-contact-form-wrap {
    padding: 24px 18px;
  }

  .ux-footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .ux-footer-contact {
    grid-column: auto;
  }

  .ux-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .ux-site-header,
  .ux-site-footer,
  .ux-button,
  .wp-block-buttons,
  .ux-contact-form-wrap {
    display: none !important;
  }

  .ux-section,
  .ux-hero,
  .ux-cta {
    padding-block: 32px;
    background: #fff !important;
    color: #111 !important;
  }

  .ux-section *,
  .ux-hero *,
  .ux-cta * {
    color: #111 !important;
  }
}
