:root {
  --color-bg: #f6f8fa;
  --color-surface: #ffffff;
  --color-text: #1a2332;
  --color-text-muted: #5c6b7f;
  --color-border: #e4e9ef;
  --color-accent: #0d5c63;
  --color-accent-hover: #0a4a50;
  --color-accent-soft: rgba(13, 92, 99, 0.12);
  --color-ink: #0f172a;
  --font-en: "DM Sans", system-ui, sans-serif;
  --font-zh: "Noto Sans SC", "DM Sans", system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.05), 0 4px 16px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.04), 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-card-hover: 0 8px 24px rgba(15, 23, 42, 0.1);
  --header-h: 72px;
  --hero-min-h: min(78vh, 640px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-en);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  background-image: radial-gradient(circle at 1px 1px, rgba(15, 23, 42, 0.045) 1px, transparent 0);
  background-size: 28px 28px;
}

body.lang-zh {
  font-family: var(--font-zh);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 100% - 2rem);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 248, 250, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--color-border);
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: var(--space-md);
}

.logo {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--color-ink);
}

.logo:hover {
  text-decoration: none;
  color: var(--color-accent);
}

.nav {
  display: none;
  gap: var(--space-md);
  font-size: 0.9375rem;
  font-weight: 500;
}

.nav a {
  position: relative;
  color: var(--color-text);
  padding-block: 0.25rem;
}

.nav a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.lang-switch {
  display: flex;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 2px;
  background: var(--color-surface);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.lang-btn {
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  color: var(--color-text-muted);
}

.lang-btn:hover {
  color: var(--color-text);
}

.lang-btn.active {
  background: var(--color-ink);
  color: #fff;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--color-ink);
  margin-inline: auto;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: var(--space-sm) var(--space-md) var(--space-md);
  border-bottom: 1px solid var(--color-border);
  gap: var(--space-sm);
}

.mobile-nav a {
  font-weight: 500;
  color: var(--color-text);
  padding: 0.35rem 0;
}

.mobile-nav[hidden] {
  display: none;
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: var(--hero-min-h);
  overflow: hidden;
  background-color: hsl(210 28% 12%);
}

.hero-slides {
  position: relative;
  min-height: var(--hero-min-h);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  min-height: var(--hero-min-h);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.7s ease, visibility 0.7s;
}

.hero-slide.is-active {
  position: relative;
  min-height: var(--hero-min-h);
  opacity: 1;
  visibility: visible;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: hsl(210 28% 12%);
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: linear-gradient(
      to top,
      rgba(15, 23, 42, 0.62) 0%,
      rgba(15, 23, 42, 0.18) 42%,
      transparent 68%
    ),
    linear-gradient(
      125deg,
      hsla(var(--slide-tint, 210 40% 18%), 0.9) 0%,
      hsla(215 32% 10% / 0.88) 48%,
      hsla(var(--slide-tint, 210 40% 18%), 0.76) 100%
    ),
    radial-gradient(ellipse 100% 70% at 85% 25%, hsla(180 45% 35% / 0.28), transparent 52%);
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 5;
  color: #f1f5f9;
  padding-block: var(--space-xl);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  line-height: 0;
  font-size: 0;
  pointer-events: none;
  transform: translateZ(0);
}

.hero-wave-svg {
  display: block;
  width: 100%;
  height: clamp(40px, 6.5vw, 76px);
}

.hero-wave-svg path {
  fill: var(--color-ink);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.92;
  margin: 0 0 var(--space-sm);
  padding: 0.28rem 0.65rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
}

.hero-title {
  font-size: clamp(1.5rem, 4vw, 2.35rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 var(--space-md);
  max-width: 920px;
}

.hero-line {
  font-size: clamp(1rem, 2vw, 1.125rem);
  opacity: 0.92;
  margin: 0 0 var(--space-xs);
  max-width: 800px;
}

.hero-line--sub {
  opacity: 0.8;
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
}

.hero-controls {
  position: absolute;
  bottom: clamp(3.25rem, 10vw, 5.25rem);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
  z-index: 5;
  padding: 0.35rem 0.5rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.25);
  backdrop-filter: blur(6px);
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, background 0.25s ease, opacity 0.25s ease;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.65);
}

.hero-dot.is-active {
  width: 26px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

/* Slogan strip */
.slogan-strip {
  position: relative;
  background: linear-gradient(180deg, #131c2e 0%, var(--color-ink) 38%, #0b1220 100%);
  color: #e2e8f0;
  padding: var(--space-md) 0 calc(var(--space-md) + 0.25rem);
  text-align: center;
  font-size: clamp(0.8125rem, 2vw, 0.9375rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.slogan-strip::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 92, 99, 0.55), transparent);
  opacity: 0.9;
}

.slogan-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.35rem 0.5rem;
}

.slogan-sep {
  opacity: 0.45;
}

/* Sections */
.section {
  padding: var(--space-xl) 0;
}

.section--alt {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.section-head {
  margin-bottom: var(--space-lg);
  max-width: 720px;
}

.section-head h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-ink);
  margin: 0 0 var(--space-sm);
  position: relative;
  display: inline-block;
  padding-bottom: 0.35rem;
}

.section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.75rem;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--color-accent), rgba(13, 92, 99, 0.35));
}

.section-lead {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 1.0625rem;
}

.prose p {
  margin: 0 0 var(--space-md);
  color: var(--color-text);
}

.about-grid {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
    gap: var(--space-xl);
  }
}

.about-figure {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  outline: 1px solid rgba(255, 255, 255, 0.65);
  outline-offset: -1px;
}

.about-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

@media (max-width: 899px) {
  .about-figure img {
    aspect-ratio: 16 / 10;
  }
}

.about-text p:last-child {
  margin-bottom: 0;
}

.two-col {
  columns: 1;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .two-col {
    columns: 2;
    column-gap: var(--space-xl);
  }

  .two-col p {
    break-inside: avoid;
  }
}

/* Cards */
.card-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card--wide {
    grid-column: span 2;
  }
}

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(13, 92, 99, 0.22);
}

.section--alt .card {
  background: var(--color-bg);
}

.card-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--color-border);
}

.card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.card:hover .card-media img {
  transform: scale(1.04);
}

.card-media--wide {
  aspect-ratio: 21 / 9;
  max-height: 220px;
}

.card-inner {
  padding: var(--space-lg);
}

.card-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.card h3 {
  font-size: 1.125rem;
  margin: 0 0 var(--space-sm);
  color: var(--color-ink);
}

.card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Advantages */
.adv-banner {
  margin: 0 0 var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  outline: 1px solid var(--color-border);
}

.adv-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(320px, 42vw);
  object-fit: cover;
}

.adv-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 720px) {
  .adv-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.adv-list li {
  padding: var(--space-md);
  border-left: 3px solid var(--color-accent);
  background: var(--color-surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.adv-list li:hover {
  border-left-color: #0a7a84;
  box-shadow: var(--shadow-md);
  transform: translateX(2px);
}

.section--alt .adv-list li {
  background: var(--color-bg);
}

.adv-list strong {
  display: block;
  color: var(--color-ink);
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.adv-list span {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Process */
.process-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, #fbfcfe 0%, var(--color-surface) 18%, var(--color-surface) 100%);
  box-shadow: var(--shadow);
}

.process-timeline li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--color-border);
  align-items: start;
}

.process-timeline li:last-child {
  border-bottom: none;
}

.process-timeline .step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(145deg, #1e293b 0%, var(--color-ink) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--color-accent-soft), 0 2px 8px rgba(15, 23, 42, 0.15);
}

.process-timeline h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--color-ink);
}

.process-timeline p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Culture */
.culture-grid {
  display: grid;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

@media (min-width: 640px) {
  .culture-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .culture-block--full {
    grid-column: span 2;
  }
}

.culture-block {
  padding: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow);
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.culture-block:hover {
  border-color: rgba(13, 92, 99, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.section--alt .culture-block {
  background: var(--color-bg);
}

.culture-block h3 {
  margin: 0 0 var(--space-sm);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.culture-block p {
  margin: 0;
  color: var(--color-text);
}

.values-line {
  font-weight: 600;
  color: var(--color-ink);
}

.tenet {
  margin: 0;
  padding: var(--space-lg);
  border-inline-start: 4px solid var(--color-accent);
  background: linear-gradient(105deg, hsl(185 32% 97%) 0%, hsl(195 28% 98%) 55%, hsl(210 25% 98%) 100%);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  box-shadow: var(--shadow);
}

.tenet p {
  margin: 0;
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--color-text);
}

/* Contact */
.contact-section {
  padding-bottom: calc(var(--space-xl) + var(--space-md));
}

.contact-grid {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.contact-figure {
  margin: 0 0 var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  outline: 1px solid var(--color-border);
}

.contact-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.contact-copy p {
  margin: 0 0 var(--space-md);
  color: var(--color-text);
}

.contact-channels {
  list-style: none;
  margin: var(--space-md) 0;
  padding: 0;
}

.contact-channels li {
  margin-bottom: var(--space-sm);
}

.contact-channels .label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}

.contact-channels .label.label--whatsapp {
  text-transform: none;
  letter-spacing: 0.03em;
  font-size: 0.8125rem;
}

.contact-note {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: var(--space-md);
}

.contact-wa {
  font-weight: 600;
  color: #128c7e;
}

.contact-wa:hover {
  color: #075e54;
  text-decoration: none;
}

.wa-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(145deg, #2fe06d 0%, #25d366 45%, #1da851 100%);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(15, 23, 42, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.5), 0 4px 12px rgba(15, 23, 42, 0.18);
  color: #fff;
  text-decoration: none;
}

.wa-float:active {
  transform: scale(0.98);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  padding: calc(var(--space-lg) + 1px);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background:
    linear-gradient(var(--color-surface), var(--color-surface)) padding-box,
    linear-gradient(135deg, rgba(13, 92, 99, 0.45), rgba(15, 23, 42, 0.12) 55%, rgba(13, 92, 99, 0.2)) border-box;
  box-shadow: var(--shadow-md);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink);
}

.contact-form input,
.contact-form textarea {
  font: inherit;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-bg);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--color-accent);
  outline-offset: 1px;
  border-color: transparent;
}

.btn-primary {
  font: inherit;
  font-weight: 600;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 10px;
  background: linear-gradient(165deg, #117a85 0%, var(--color-accent) 45%, #094a50 100%);
  color: #fff;
  cursor: pointer;
  margin-top: 0.25rem;
  box-shadow: 0 4px 14px rgba(13, 92, 99, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.btn-primary:hover {
  filter: brightness(1.05);
  box-shadow: 0 6px 20px rgba(13, 92, 99, 0.4);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.form-hint {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* Footer */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, #121a2c 0%, var(--color-ink) 35%, #0a0f18 100%);
  color: #94a3b8;
  padding: var(--space-lg) 0;
  font-size: 0.875rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(13, 92, 99, 0.55), rgba(255, 255, 255, 0.12), rgba(13, 92, 99, 0.45), transparent);
  opacity: 0.95;
}

.footer-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.footer-brand {
  margin: 0 0 var(--space-sm);
  color: #e2e8f0;
  font-weight: 600;
}

.footer-compliance {
  margin: 0 0 var(--space-sm);
  max-width: 800px;
  margin-inline: auto;
  line-height: 1.6;
}

.footer-locales {
  margin: 0 0 var(--space-md);
  max-width: 720px;
  margin-inline: auto;
  line-height: 1.6;
  opacity: 0.9;
}

.footer-copy {
  margin: 0;
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .card,
  .adv-list li,
  .culture-block,
  .btn-primary,
  .card-media img,
  .nav a::after,
  .hero-dot {
    transition: none !important;
  }

  .card:hover,
  .adv-list li:hover,
  .culture-block:hover {
    transform: none !important;
  }

  .btn-primary:hover,
  .btn-primary:active {
    transform: none !important;
  }

  .card:hover .card-media img {
    transform: none !important;
  }

  .wa-float:hover,
  .wa-float:active {
    transform: none !important;
  }
}
