:root {
  --ink: #172026;
  --muted: #61717a;
  --line: #dde8e6;
  --paper: #fffdf8;
  --mist: #edf8f5;
  --brand: #d7203a;
  --brand-dark: #9d1529;
  --brand-soft: #ffe8ec;
  --mint: #d7203a;
  --coral: #ff6f84;
  --yellow: #ffd25a;
  --blue: #78a8ff;
  --shadow: 0 24px 70px rgba(32, 60, 68, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(255, 235, 220, 0.72), transparent 34%),
    linear-gradient(260deg, rgba(255, 246, 230, 0.9), transparent 30%),
    var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1120px, calc(100% - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(221, 232, 230, 0.9);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.8);
  box-shadow: 0 12px 34px rgba(23, 32, 38, 0.08);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
  transition: padding 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  padding: 9px 12px;
  box-shadow: 0 14px 36px rgba(23, 32, 38, 0.13);
}

.brand,
.nav,
.site-footer nav,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  background: #d7203a;
  box-shadow: 0 8px 18px rgba(215, 32, 58, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  gap: 8px;
}

.nav a,
.site-footer a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav a {
  padding: 10px 14px;
  border-radius: 999px;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
  background: var(--mist);
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  font-weight: 800;
}

.section {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  min-height: 96vh;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, 0.94fr);
  align-items: center;
  gap: 54px;
  padding-top: 128px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3.5rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h1 span + span {
  margin-top: 12px;
  color: var(--brand-dark);
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.hero-intro,
.about-text p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 14px 30px rgba(215, 32, 58, 0.24);
}

.button.ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
}

.hero-visual {
  position: relative;
  min-height: 530px;
  border: 1px solid var(--line);
  border-radius: 12px 90px 12px 90px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px dashed rgba(23, 32, 38, 0.18);
  border-radius: 26px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.15), rgba(215, 32, 58, 0.18));
  pointer-events: none;
}

.hero-city-photo {
  position: absolute;
  object-fit: cover;
  box-shadow: 0 22px 55px rgba(23, 32, 38, 0.2);
}

.hero-city-photo {
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  opacity: 0.42;
  filter: saturate(0.95) contrast(1.04);
}

.visual-card,
.market-note {
  z-index: 3;
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 42px rgba(23, 32, 38, 0.12);
  backdrop-filter: blur(12px);
}

.visual-card {
  width: min(260px, 68%);
  padding: 24px;
  border-radius: 24px;
  animation: float 6s ease-in-out infinite;
}

.visual-card span {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  font-weight: 900;
}

.visual-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.visual-card small,
.market-note {
  color: var(--muted);
  font-weight: 700;
}

.card-uk {
  top: 56px;
  left: 42px;
}

.card-uk span {
  background: #dce9ff;
}

.card-cn {
  right: 42px;
  bottom: 68px;
  animation-delay: -2.6s;
}

.card-cn span {
  background: #ffe2d9;
}

.visual-bridge {
  z-index: 3;
  position: absolute;
  inset: 38% 22%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transform: rotate(-12deg);
}

.visual-bridge span {
  display: block;
  width: 60px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--coral), var(--yellow));
  animation: pulse 1.8s ease-in-out infinite;
}

.visual-bridge span:nth-child(2) {
  animation-delay: 0.2s;
}

.visual-bridge span:nth-child(3) {
  animation-delay: 0.4s;
}

.market-note {
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.note-one {
  left: 50px;
  bottom: 82px;
}

.note-two {
  top: 230px;
  right: 36px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.55rem);
  line-height: 1.04;
}

.section-subtitle {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 700;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: start;
}

.about-text {
  padding: 34px;
  border-left: 6px solid var(--coral);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 232, 236, 0.5)),
    #fff;
  box-shadow: 0 18px 44px rgba(215, 32, 58, 0.08);
}

.statement {
  margin-bottom: 0;
  color: var(--ink) !important;
  font-size: 1.4rem !important;
  font-weight: 900;
  line-height: 1.35 !important;
}

.about-media-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) repeat(2, minmax(112px, 0.72fr));
  gap: 14px;
  align-items: center;
  margin-top: 4px;
  padding: 14px;
  border: 1px solid rgba(215, 32, 58, 0.12);
  border-radius: 24px;
  background: linear-gradient(135deg, #fff, rgba(255, 232, 236, 0.62));
  box-shadow: 0 16px 40px rgba(32, 60, 68, 0.08);
}

.china-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.china-socials span {
  display: inline-flex;
  min-width: 74px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 32, 58, 0.16);
  border-radius: 999px;
  color: var(--brand-dark);
  background: linear-gradient(135deg, #fff, var(--brand-soft));
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(215, 32, 58, 0.08);
}

.about-media-strip img {
  width: 100%;
  height: 136px;
  border-radius: 22px;
  object-fit: cover;
  box-shadow: 0 14px 30px rgba(23, 32, 38, 0.16);
}

.trust-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.trust-item {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(215, 32, 58, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 96% 8%, rgba(255, 210, 90, 0.22), transparent 32%),
    #fff;
  box-shadow: 0 16px 40px rgba(32, 60, 68, 0.08);
}

.trust-item strong {
  display: block;
  margin-bottom: 12px;
  color: var(--brand);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1;
}

.trust-item span {
  color: var(--muted);
  font-weight: 800;
}

.partners {
  width: min(1240px, calc(100% - 32px));
  padding-top: 52px;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(90deg, #fffdf8 0%, rgba(255, 253, 248, 0) 12%, rgba(255, 253, 248, 0) 88%, #fffdf8 100%),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 46px rgba(32, 60, 68, 0.08);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 22px 18px;
  animation: logoMarquee 38s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-item {
  display: grid;
  flex: 0 0 172px;
  height: 94px;
  place-items: center;
  border: 1px solid rgba(221, 232, 230, 0.75);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.42);
}

.logo-item img {
  width: 126px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(23, 32, 38, 0.2));
  opacity: 1;
}

.logo-item img.blend-logo {
  mix-blend-mode: multiply;
}

.logo-item img.original-logo {
  width: 126px;
  height: 56px;
  border-radius: 8px;
  object-fit: contain;
}

.services {
  width: min(1240px, calc(100% - 32px));
  position: relative;
}

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

.service-card {
  position: relative;
  min-height: 380px;
  padding: 0;
  border: 0;
  border-radius: 26px;
  background: transparent;
  perspective: 1200px;
}

.service-card:focus-visible {
  outline: 4px solid rgba(215, 32, 58, 0.2);
  outline-offset: 4px;
}

.service-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: inherit;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover .service-card-inner,
.service-card:focus .service-card-inner,
.service-card.is-flipped .service-card-inner {
  transform: rotateY(180deg);
}

.service-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid rgba(215, 32, 58, 0.12);
  border-radius: inherit;
  background:
    radial-gradient(circle at 92% 88%, rgba(215, 32, 58, 0.14), transparent 27%),
    radial-gradient(circle at 10% 8%, rgba(255, 210, 90, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(32, 60, 68, 0.08);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

.service-front {
  justify-content: space-between;
}

.service-front h3,
.service-front p:not(.chips) {
  position: relative;
  z-index: 2;
  max-width: calc(100% - 38px);
}

.service-front .chips {
  position: relative;
  z-index: 2;
  max-width: calc(100% - 82px);
}

.service-front::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 166px;
  height: 166px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.96;
}

.service-art {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  width: 120px;
  height: 120px;
  border: 6px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 16px 30px rgba(23, 32, 38, 0.18);
}

.service-back {
  transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  background:
    linear-gradient(145deg, rgba(255, 248, 229, 0.92), transparent 52%),
    #ffffff;
  overflow-y: auto;
  scrollbar-width: thin;
}

.flip-hint {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--brand-dark);
  background: var(--brand-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.wide-card {
  grid-column: span 2;
}

.service-number {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 15px;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}

.service-card h3,
.roadmap-step h3,
.contact-info h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.service-card p,
.service-card li,
.roadmap-step p,
.contact-info p {
  color: var(--muted);
  line-height: 1.65;
}

.service-card h4 {
  margin: 20px 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card ul {
  margin: 0;
  padding-left: 18px;
}

.chips,
.platforms {
  font-weight: 800;
}

.platforms {
  color: var(--brand) !important;
}

.process {
  width: min(1240px, calc(100% - 32px));
}

.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.roadmap::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--coral), var(--yellow), var(--blue));
}

.roadmap-step {
  position: relative;
  z-index: 1;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(32, 60, 68, 0.08);
}

.roadmap-step span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font-weight: 900;
}

.growth-cta {
  width: min(1240px, calc(100% - 32px));
  position: relative;
  display: grid;
  place-items: center;
  margin-top: 20px;
  margin-bottom: 0;
  min-height: 500px;
  overflow: hidden;
  border-radius: 18px 110px 18px 110px;
  padding: 72px 54px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 215, 109, 0.32), transparent 24%),
    linear-gradient(135deg, #fff9ec, #ffffff 54%, #ffe8ec);
  box-shadow: 0 24px 70px rgba(32, 60, 68, 0.12);
}

.growth-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.56));
}

.growth-bg {
  position: absolute;
  z-index: 0;
  width: 300px;
  height: 300px;
  border: 10px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(1.08) contrast(1.08);
  box-shadow: 0 24px 62px rgba(23, 32, 38, 0.17);
}

.bg-left {
  left: 42px;
  bottom: 40px;
}

.bg-right {
  top: 38px;
  right: 48px;
}

.growth-cta-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
}

.growth-cta-copy h2 {
  margin-bottom: 18px;
  color: var(--brand-dark);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.96;
}

.growth-cta-copy p {
  max-width: 680px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.contact {
  padding-top: 36px;
  padding-bottom: 72px;
}

.contact-copy {
  max-width: 780px;
  margin-bottom: 34px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 20px;
  align-items: stretch;
}

.contact-form,
.contact-info {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
}

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

.hidden-field {
  display: none;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(215, 32, 58, 0.16);
}

textarea {
  resize: vertical;
}

.full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--brand);
  font-weight: 800;
}

.contact-info {
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(255, 215, 109, 0.26), transparent 45%),
    #ffffff;
}

.contact-info p {
  display: grid;
  gap: 6px;
  margin-bottom: 22px;
}

.contact-info strong {
  color: var(--ink);
}

.contact-info a {
  color: var(--brand);
  font-weight: 800;
}

.icon-link,
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.icon-link {
  width: 46px;
  height: 46px;
  justify-content: center;
  border-radius: 50%;
  color: #fff !important;
  background: var(--brand);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.icon-link:hover,
.map-link:hover {
  transform: translateY(-2px);
}

.icon-link svg,
.map-link svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.map-link {
  color: var(--brand-dark) !important;
  line-height: 1.45;
}

.site-footer {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer nav,
.site-footer div {
  gap: 16px;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-14px) rotate(1deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.82);
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (max-width: 980px) {
  .hero,
  .about-grid,
  .contact-layout,
  .growth-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 460px;
  }

  .growth-cta {
    padding: 38px;
  }

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

  .roadmap {
    grid-template-columns: 1fr;
  }

  .roadmap::before {
    top: 0;
    bottom: 0;
    left: 36px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .roadmap-step {
    padding-left: 66px;
  }

  .roadmap-step span {
    position: absolute;
    top: 22px;
    left: 19px;
    margin-bottom: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 24px;
  }

  .brand span:last-child,
  .nav-cta {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .nav {
    flex: 1;
    justify-content: flex-end;
    gap: 2px;
  }

  .nav a {
    padding: 9px 8px;
    font-size: 0.82rem;
  }

  .section {
    width: min(100% - 24px, 1120px);
    padding: 72px 0;
  }

  .hero {
    padding-top: 112px;
    gap: 32px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 390px;
    border-radius: 24px;
  }

  .hero-city-photo {
    width: 100%;
    height: 100%;
  }

  .visual-card {
    width: 230px;
    padding: 18px;
  }

  .card-uk {
    top: 36px;
    left: 22px;
  }

  .card-cn {
    right: 22px;
    bottom: 46px;
  }

  .note-one {
    left: 20px;
    bottom: 164px;
  }

  .note-two {
    top: 190px;
    right: 18px;
  }

  .services-grid,
  .trust-panel,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card-inner {
    min-height: 430px;
  }

  .service-face {
    padding: 22px;
  }

  .service-front {
    gap: 12px;
  }

  .service-front h3,
  .service-front p:not(.chips),
  .service-front .chips {
    max-width: calc(100% - 18px);
  }

  .service-front::after {
    right: -46px;
    bottom: -48px;
    width: 152px;
    height: 152px;
  }

  .service-art {
    right: 14px;
    bottom: 14px;
    width: 106px;
    height: 106px;
  }

  .service-back {
    justify-content: flex-start;
    gap: 8px;
    padding: 24px 22px;
  }

  .service-card h4 {
    margin: 8px 0 6px;
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .service-card ul {
    display: grid;
    gap: 7px;
    padding-left: 17px;
  }

  .service-card p,
  .service-card li {
    font-size: 0.94rem;
    line-height: 1.52;
  }

  .service-back .chips {
    margin-bottom: 0;
  }

  .service-card.is-flipped {
    min-height: auto;
  }

  .service-card.is-flipped .service-card-inner {
    min-height: auto;
    height: auto;
    transform: none;
  }

  .service-card.is-flipped .service-front {
    display: none;
  }

  .service-card.is-flipped .service-back {
    position: relative;
    min-height: auto;
    transform: none;
    -webkit-transform: none;
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
    overflow: visible;
  }

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

  .china-socials {
    grid-column: 1 / -1;
  }

  .about-media-strip img {
    width: 100%;
    height: 140px;
    border-radius: 24px;
  }

  .growth-cta {
    padding: 28px;
    border-radius: 24px 64px 24px 64px;
  }

  .growth-bg {
    width: 190px;
    height: 190px;
    opacity: 0.66;
  }

  .bg-left {
    left: -38px;
    bottom: 28px;
  }

  .bg-right {
    top: 24px;
    right: -42px;
  }

  .logo-track {
    gap: 12px;
    padding: 16px 12px;
    animation-duration: 30s;
  }

  .logo-item {
    flex-basis: 138px;
    height: 78px;
  }

  .logo-item img {
    width: 104px;
    height: 46px;
  }

  .logo-item img.original-logo {
    width: 104px;
    height: 46px;
  }

  .wide-card,
  .full {
    grid-column: auto;
  }

  .about-text {
    padding: 24px;
  }

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
