:root {
  --navy: #162a40;
  --navy-deep: #102438;
  --body: #52606d;
  --paper: #ffffff;
  --pale: #f3f5f6;
  --line: #dbe0e4;
  --red: #c51e2f;
  --shadow: 0 10px 30px rgba(16, 36, 56, 0.08);
  --wrap: 1280px;
  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
  --nav-font-size: 14px;
  --nav-font-weight: 500;
  --nav-line-height: 1.5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--navy);
  background: var(--paper);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", Arial, sans-serif;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

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

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

p {
  color: var(--body);
  font-size: 15px;
  line-height: 1.9;
}

h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.45;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 5px;
}

.wrap {
  width: calc(100% - 144px);
  max-width: var(--wrap);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 16px;
  z-index: 100;
  padding: 11px 16px;
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateY(-160%);
  transition: transform 200ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 80px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  transition: height 260ms ease, box-shadow 260ms ease;
}

.site-header.is-scrolled {
  height: 70px;
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--body);
  font-size: 11px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-left: auto;
  font-size: var(--nav-font-size);
  font-weight: var(--nav-font-weight);
  line-height: var(--nav-line-height);
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  white-space: nowrap;
  transition: color 200ms ease;
}

.desktop-nav a::after,
.language-button::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a[aria-current],
.language-button:hover,
.language-button.is-active {
  color: var(--red);
}

.desktop-nav a[aria-current]::after,
.language-button.is-active::after {
  transform: scaleX(1);
}

.desktop-nav .nav-contact {
  gap: 6px;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 18px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-size: var(--nav-font-size);
  font-weight: var(--nav-font-weight);
  line-height: var(--nav-line-height);
  white-space: nowrap;
}

.language-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease;
}

.language-switcher > span {
  color: #7a858e;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 220ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 80px 0 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  padding: 22px 32px 36px;
  background: var(--paper);
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu.is-open {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  font-weight: var(--nav-font-weight);
  line-height: var(--nav-line-height);
  transition: color 200ms ease;
}

.mobile-menu > a[aria-current] {
  color: var(--red);
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 9px;
}

.mobile-menu .language-switcher {
  font-size: 17px;
}

.mobile-language-switcher {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  color: var(--body);
  font-size: 13px;
}

.hero {
  display: flex;
  flex-direction: column;
  height: 470px;
  color: var(--paper);
  background: var(--navy-deep);
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex: 0 0 245px;
  order: -1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-block: 25px;
  text-align: center;
}

.hero-region {
  margin-bottom: 11px;
  color: #cfd8e1;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
}

.hero h1 {
  color: var(--paper);
  font-size: 46px;
  font-weight: 700;
  line-height: 1.25;
}

.brand-line {
  margin-left: 18px;
  color: var(--paper);
  font-size: inherit;
  font-weight: inherit;
}

.hero-positioning {
  margin-top: 12px;
  color: #d8e0e8;
  font-size: 16px;
}

.actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 150px;
  min-height: 44px;
  padding: 10px 18px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  transition: color 200ms ease, background 200ms ease, transform 200ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-light {
  color: var(--paper);
}

.button-light:hover {
  color: var(--navy);
  background: var(--paper);
}

.arrow {
  margin-left: 22px;
  font-family: Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.secondary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border-bottom: 1px solid #8998a6;
  color: #d8e0e8;
  font-size: 13px;
  transition: color 200ms ease, border-color 200ms ease;
}

.secondary:hover {
  color: var(--paper);
  border-color: var(--paper);
}

.hero a:focus-visible {
  outline-color: var(--paper);
}

.hero-media {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 47%;
  filter: saturate(0.38);
  opacity: 0.72;
  transition: transform 650ms var(--ease);
}

.section {
  padding-block: 64px;
}

section[id] {
  scroll-margin-top: 88px;
}

.section-intro {
  max-width: 720px;
}

.section-label {
  margin-bottom: 9px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.section-intro > p:last-child {
  margin-top: 9px;
}

.service-columns {
  display: grid;
  grid-template-columns: 1.05fr 1.15fr 1fr;
  gap: 32px;
  margin-top: 38px;
}

.service-column {
  display: flex;
  min-width: 0;
  min-height: 225px;
  flex-direction: column;
  padding-right: 32px;
  border-right: 1px solid var(--line);
}

.service-column:last-child {
  padding-right: 0;
  border-right: 0;
}

.service-number {
  margin-bottom: 20px;
  color: #8b959e;
  font-size: 11px;
}

.service-column h3 {
  position: relative;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.5;
}

.service-priority h3 {
  padding-left: 17px;
}

.service-priority h3::before {
  position: absolute;
  top: 7px;
  left: 0;
  width: 4px;
  height: 23px;
  background: var(--red);
  content: "";
}

.service-column p {
  max-width: 30em;
  margin: 13px 0 18px;
  font-size: 14px;
}

.service-column a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  min-width: 170px;
  min-height: 44px;
  margin-top: auto;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  transition: color 200ms ease, border-color 200ms ease;
}

.service-column a:hover {
  color: var(--red);
  border-color: var(--red);
}

.service-list {
  margin-top: 38px;
  border-top: 2px solid var(--navy);
}

.service {
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
}

.service summary {
  display: grid;
  grid-template-columns: 48px minmax(220px, 0.85fr) minmax(0, 1.15fr) 36px;
  align-items: center;
  gap: 20px;
  min-height: 110px;
  padding: 24px;
  list-style: none;
  cursor: pointer;
  transition: background 240ms ease;
}

.service summary::-webkit-details-marker { display: none; }
.service summary:hover { background: var(--pale); }
.service summary:active { background: #e9eff4; }
.service .service-number { margin: 0; font-size: 15px; color: #61768a; }
.service h3 { font-size: 24px; line-height: 1.5; font-weight: 700; }
.service-intro { color: var(--body); font-size: 16px; line-height: 1.85; }
.service-expand { display: grid; place-items: center; width: 36px; height: 36px; font-size: 26px; transition: transform 250ms ease; }
.service[open], .service[open] summary { background: var(--pale); }
.service[open] .service-number { color: var(--red); }
.service[open] .service-expand { transform: rotate(45deg); }
.service-body { padding: 0 80px 36px 92px; animation: service-enter 350ms ease-out; }
.scope-label { margin-bottom: 17px; font-size: 14px; }
.service-body ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 40px; margin: 0; padding: 0; list-style: none; }
.service-body li { position: relative; padding-left: 17px; font-size: 18px; line-height: 1.9; }
.service-body li::before { position: absolute; top: 0.85em; left: 0; width: 4px; height: 4px; background: #738a9d; content: ""; }
.service-consult { display: inline-flex; align-items: center; min-height: 44px; margin-top: 22px; border-bottom: 1px solid var(--navy); font-size: 16px; font-weight: 700; transition: color 200ms ease, transform 200ms ease; }
.service-consult:hover { color: var(--red); transform: translateX(3px); }
.service-consult:active { transform: translateY(1px); }
.service-note { margin-top: 18px; text-align: right; font-size: 12px; }
@keyframes service-enter {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

.clients {
  border-top: 1px solid var(--line);
  background: var(--pale);
}

.logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px 28px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.logos li {
  display: grid;
  min-width: 0;
  min-height: 92px;
  place-items: center;
}

.logos img {
  width: 138px;
  height: 64px;
  object-fit: contain;
  filter: none;
  transition: transform 350ms var(--ease);
}

.client-disclaimer {
  max-width: 76em;
  margin-top: 25px;
  color: #727d86;
  font-size: 12px;
  line-height: 1.8;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 10%;
}

.about-copy > p {
  max-width: 720px;
}

.contact-list {
  margin: 30px 0 0;
}

.contact-list > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-list dt {
  color: var(--body);
  font-size: 13px;
}

.contact-list dd {
  margin: 0;
  font-size: 14px;
}

.contact-list a {
  transition: color 200ms ease;
}

.contact-list a:hover {
  color: var(--red);
}

.contact-band {
  padding-block: 46px;
  color: var(--paper);
  background: var(--navy);
}

.contact-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-band .section-label {
  color: #f2a5ae;
}

.contact-band h2 {
  color: var(--paper);
}

.site-footer {
  padding-block: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #d8e0e8;
  background: var(--navy-deep);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 28px;
}

.site-footer p {
  color: #b9c4ce;
  font-size: 11px;
  line-height: 1.7;
}

.site-footer p:last-child {
  grid-column: 1 / -1;
  justify-self: end;
  text-align: right;
}

.reveal.is-pending {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.contact-form { max-width: 760px; margin-top: 28px; }
.contact-form fieldset { min-width: 0; margin: 0; padding: 0; border: 0; }
.contact-form label { display: block; margin-bottom: 8px; font-size: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { margin-bottom: 20px; }
.field input, .field textarea { width: 100%; min-width: 0; padding: 12px; border: 1px solid var(--line); border-radius: 2px; font: inherit; background: white; color: var(--navy); }
.field textarea { resize: vertical; }
.field input:focus-visible, .field textarea:focus-visible { outline: 2px solid var(--navy); outline-offset: 2px; }
.field [aria-invalid="true"] { border-color: var(--red); }
.field-error { color: var(--red); font-size: 13px; }
.form-note { margin-block: 12px; font-size: 13px; }
.consent-field { display: flex; align-items: flex-start; gap: 12px; }
.consent-field input { flex: 0 0 auto; width: 20px; height: 20px; }
.contact-form button { background: var(--navy); color: white; cursor: pointer; margin-top: 16px; }
.contact-form button:disabled { opacity: .6; cursor: wait; }
.form-status { margin-top: 16px; padding: 12px; background: var(--pale); line-height: 1.8; }
.form-status.is-error { color: var(--red); }
.privacy-note { padding-top: 24px; max-width: 760px; }
.privacy-note h3 { font-size: 18px; margin-bottom: 10px; }
.footer-links { display: flex; gap: 20px; }
.mobile-menu { overflow-y: auto; }
html[lang="en"] .brand strong { max-width: 190px; font-size: 17px; }
html[lang="en"] .hero h1 { font-size: 38px; }
@media (min-width: 931px) and (max-width: 1180px) {
  html[lang="en"] .brand strong { max-width: 130px; }
  .desktop-nav { gap: 12px; }
}
@media (max-width: 640px) {
  html[lang="en"] .brand strong { max-width: 175px; font-size: 16px; }
  html[lang="en"] .hero h1, html[lang="en"] .hero .brand-line { font-size: 28px; }
  html[lang="en"] .hero { height: auto; }
  html[lang="en"] .hero-content { flex-basis: auto; min-height: 280px; }
  html[lang="en"] .hero-media { flex: 0 0 170px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

.not-found {
  display: grid;
  min-height: 100vh;
  padding: 32px;
  place-items: center;
  background: var(--pale);
}

.not-found-inner {
  width: min(100%, 680px);
  text-align: center;
}

.not-found .brand {
  width: fit-content;
  margin: 0 auto 46px;
  text-align: left;
}

.not-found-language {
  justify-content: center;
  margin-bottom: 32px;
}

.not-found-code {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.not-found h1 {
  margin-top: 10px;
  font-size: 38px;
}

.not-found-inner > p:not(.not-found-code) {
  max-width: 550px;
  margin: 15px auto 28px;
}

.not-found .button {
  color: var(--paper);
  background: var(--navy);
}

@media (hover: hover) and (pointer: fine) {
  .hero-media:hover .hero-photo {
    transform: scale(1.05);
  }

  .logos li:hover img {
    transform: translateY(-5px) scale(1.07);
  }
}

.logos li:focus-visible img {
  transform: translateY(-5px) scale(1.07);
}

.logos.client-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  background: var(--paper);
}

.client-grid li {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 170px;
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.client-grid li:nth-child(-n+3) { grid-column: span 4; min-height: 185px; }
.client-grid li:nth-child(3), .client-grid li:nth-child(7), .client-grid li:nth-child(11), .client-grid li:last-child { border-right: 0; }
.client-grid li:nth-child(12) { grid-column: 4 / span 3; }
.client-grid li:last-child { grid-column: 7 / span 3; }
.logo-box { display: flex; align-items: center; justify-content: center; width: 100%; min-height: 86px; }
.client-grid img { width: 100%; max-width: 210px; height: 76px; object-fit: contain; }
.client-grid p { margin-top: 12px; text-align: center; font-size: 13px; line-height: 1.8; overflow-wrap: anywhere; }
.name-only strong { max-width: 17em; text-align: center; font-size: 21px; line-height: 1.6; overflow-wrap: anywhere; }
.client-grid li:hover img, .client-grid li:focus-visible img { transform: translateY(-3px) scale(1.03); }

@media (max-width: 1000px) {
  .service summary { grid-template-columns: 30px minmax(190px, 0.9fr) minmax(0, 1.1fr) 30px; gap: 12px; padding: 20px; }
  .service h3 { font-size: 21px; }
  .service-body { padding-inline: 62px 40px; }
  .service-body ul { grid-template-columns: 1fr; }
  .logos.client-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .client-grid li, .client-grid li:nth-child(-n+3), .client-grid li:nth-child(12), .client-grid li:last-child { grid-column: auto; }
  .client-grid li:nth-child(n) { border-right: 1px solid var(--line); }
  .client-grid li:nth-child(3n) { border-right: 0; }
  .client-grid li:last-child { grid-column: 2; }
  .name-only strong { font-size: 18px; }
}

@media (max-width: 650px) {
  .service summary { grid-template-columns: 26px minmax(0, 1fr) 26px; gap: 8px 10px; min-height: 124px; padding: 18px 12px; }
  .service h3 { font-size: 20px; }
  .service-intro { grid-column: 2; grid-row: 2; font-size: 15px; }
  .service-expand { grid-column: 3; grid-row: 1; width: 26px; height: 30px; }
  .service .service-number { font-size: 12px; }
  .service-body { padding: 0 24px 25px 48px; }
  .service-body li { font-size: 16px; }
  .service-body ul { gap: 12px; }
  .service-note { text-align: left; }
  .logos.client-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .client-grid li:nth-child(n) { min-height: 160px; padding: 12px 8px; border-right: 1px solid var(--line); }
  .client-grid li:nth-child(2n) { border-right: 0; }
  .client-grid li:last-child { grid-column: 1 / -1; }
  .client-grid img { max-width: 170px; height: 64px; }
  .client-grid p { font-size: 12px; }
  .name-only strong { font-size: 16px; }
}

@media (max-width: 1180px) {
  .wrap {
    width: calc(100% - 64px);
  }

  .desktop-nav {
    gap: 16px;
  }

  .service-columns {
    gap: 24px;
  }

  .service-column {
    padding-right: 24px;
  }

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

@media (max-width: 930px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-tools {
    margin-left: auto;
  }

  .header-tools > .language-switcher {
    display: none;
  }

  .service-columns {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .service-column {
    min-height: auto;
    padding: 0 0 25px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-column:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .service-column a {
    margin-top: 4px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer p:last-child {
    grid-column: 1 / -1;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .wrap {
    width: calc(100% - 40px);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 72px;
  }

  .brand img {
    width: 39px;
    height: 39px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand small {
    font-size: 10px;
  }

  .mobile-menu {
    inset: 72px 0 0;
    padding-inline: 20px;
  }

  .hero {
    height: 420px;
  }

  .hero-content {
    flex-basis: 250px;
    padding-block: 24px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .brand-line {
    display: block;
    margin: 4px 0 0;
    font-size: 32px;
  }

  .hero-positioning {
    max-width: 320px;
    font-size: 13px;
  }

  .actions {
    gap: 18px;
  }

  .button {
    min-width: 135px;
  }

  .arrow {
    margin-left: 15px;
  }

  .section {
    padding-block: 46px;
  }

  h2 {
    font-size: 25px;
  }

  .service-columns {
    margin-top: 30px;
  }

  .service-column h3 {
    font-size: 21px;
  }

  .logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 24px;
  }

  .logos li {
    min-height: 78px;
  }

  .contact-list > div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .contact-band-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .site-footer p:last-child {
    grid-column: auto;
  }

  .not-found {
    padding: 24px 20px;
  }

  .not-found h1 {
    font-size: 30px;
  }
}

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

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

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

  .hero-photo,
  .logos img {
    transform: none !important;
  }
  .service-consult:hover { transform: none; }
}
