:root {
  --blue: #008cce;
  --blue-hover: #0074b0;
  --ink: #333333;
  --muted: #666666;
  --quiet: #999999;
  --pale: #eff6fa;
  --pale-strong: #e6f4fc;
  --surface: #fbfbfb;
  --h1: 40px;
  --h2: 40px;
  --h3: 24px;
  --body: 16px;
  --small: 14px;
  --space-120: 120px;
  --space-100: 100px;
  --space-80: 80px;
  --space-60: 60px;
  --space-50: 50px;
  --radius: 10px;
  --header-height: 80px;
  --capability-height: 664px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: #ffffff;
  font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: var(--small);
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: 0;
}

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

button {
  color: inherit;
}

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

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

h1,
h2,
h3,
h4,
p,
ul,
figure {
  margin: 0;
}

ul {
  padding: 0;
}

.container {
  width: 1400px;
  max-width: calc(100% - 40px);
  margin: 0 auto;
}

main {
  padding-top: var(--header-height);
}

.section h2,
.cta-section h2 {
  margin-bottom: var(--space-50);
  font-size: var(--h2);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.section {
  position: relative;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid #e9e9e9;
  background: #ffffff;
}

.desktop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 160px;
}

.brand {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  width: 150px;
  height: 100%;
}

.brand img {
  width: 100%;
  height: auto;
  max-height: 45px;
  object-fit: contain;
}

.desktop-nav-group,
.desktop-nav,
.header-actions {
  display: flex;
  align-items: center;
  height: 100%;
}

.desktop-nav-group {
  min-width: 0;
}

.desktop-nav {
  gap: 50px;
}

.desktop-nav > a,
.nav-entry > a {
  display: flex;
  align-items: center;
  height: 100%;
  font-size: var(--body);
  line-height: 1;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.desktop-nav > a:hover,
.desktop-nav > a:focus-visible,
.nav-entry:hover > a,
.nav-entry:focus-within > a,
.nav-entry--active > a {
  color: var(--blue);
}

.nav-entry {
  position: relative;
  height: 100%;
}

.nav-dropdown {
  position: fixed;
  top: var(--header-height);
  left: 50%;
  display: grid;
  visibility: hidden;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  width: min(1188px, calc(100vw - 80px));
  padding: 34px 42px 38px;
  border-radius: 0 0 8px 8px;
  background: #ffffff;
  box-shadow: 0 16px 35px rgba(25, 53, 77, 0.14);
  opacity: 0;
  transform: translate(-50%, -8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
}

.nav-entry:hover .nav-dropdown,
.nav-entry:focus-within .nav-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.nav-dropdown__group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-dropdown__group strong {
  padding-bottom: 12px;
  border-bottom: 1px solid #e9eef2;
  font-size: 16px;
  font-weight: 500;
}

.nav-dropdown__group a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.nav-dropdown__group a:hover,
.nav-dropdown__group a:focus-visible {
  color: var(--blue);
}

.header-actions {
  gap: 28px;
  margin-left: 138px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--blue);
  font-size: var(--body);
  white-space: nowrap;
}

.header-phone img {
  width: 24px;
  height: 24px;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.header-search {
  width: 24px;
  height: 24px;
}

.button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  min-height: 42px;
  padding: 6px 36px;
  overflow: hidden;
  border: 1px solid var(--blue);
  border-radius: 80px;
  font-size: var(--body);
  line-height: 1.75;
  cursor: pointer;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.button::after {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: -1;
  width: 0;
  background: var(--blue-hover);
  content: "";
  transition: width 0.4s ease;
}

.button:hover::after,
.button:focus-visible::after {
  width: 100%;
}

.button--outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.9);
  background: transparent;
}

.button--outline:hover,
.button--outline:focus-visible {
  border-color: var(--blue-hover);
}

.mobile-header,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 3.2 / 1;
  overflow: hidden;
  color: #ffffff;
}

.hero__media,
.hero__media img {
  width: 100%;
  height: 100%;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img {
  object-fit: cover;
}

.hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero__eyebrow {
  margin-bottom: 16px;
  font-size: var(--body);
  font-weight: 600;
  line-height: 1.2;
}

.hero h1 {
  margin: 0 0 20px;
  font-size: var(--h1);
  font-weight: 400;
  line-height: 1.2;
}

.hero__subtitle {
  font-size: var(--body);
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 14px;
  margin-top: var(--space-50);
}

.section--challenge {
  padding: var(--space-120) 0;
  background: var(--pale);
}

.challenge-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding-bottom: 45px;
}

.challenge-card {
  position: relative;
  min-height: 329px;
  padding: 36px 20px 55px;
  border-radius: 6px;
  background: #ffffff;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.challenge-card::after {
  position: absolute;
  inset: 10px 0 -10px;
  z-index: -1;
  border-radius: var(--radius);
  background: var(--blue);
  box-shadow: 0 10px 20px rgba(0, 140, 206, 0.35);
  content: "";
  opacity: 0;
  transform-origin: right top;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.challenge-card:hover {
  z-index: 1;
  background: #ffffff;
  box-shadow: 8px 10px 0 -2px var(--blue), 0 10px 20px rgba(0, 140, 206, 0.25);
  transform: rotate(-0.2deg);
}

.challenge-card:hover::after {
  opacity: 0;
}

.challenge-card h3 {
  min-height: 3em;
  margin-bottom: 32px;
  overflow: hidden;
  color: var(--ink);
  font-size: var(--h3);
  font-weight: 400;
  line-height: 1.5;
  transition: color 0.4s ease;
}

.challenge-card:hover h3 {
  color: var(--blue);
}

.challenge-card ul {
  padding-left: 18px;
}

.challenge-card li {
  color: var(--muted);
  font-size: var(--body);
  line-height: 1.75;
  list-style: disc;
}

.challenge-card li::marker {
  font-size: 12px;
}

.carousel__dots {
  display: none;
}

.section--solution {
  padding: var(--space-60) 0;
}

.section--solution h2 {
  margin-bottom: 26px;
}

.solution-intro {
  width: 73%;
  margin: 0 auto var(--space-50);
  color: #777575;
  font-size: var(--body);
  line-height: 1.5;
  text-align: center;
}

.solution-figure {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
}

.solution-figure img {
  width: 100%;
}

.section--capability {
  padding: var(--space-120) 0;
}

.capability-layout {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: var(--capability-height);
}

.capability-tabs {
  display: flex;
  flex: 0 0 23.5%;
  flex-direction: column;
  justify-content: flex-start;
  padding: 43px 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--pale);
}

.capability-tab {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 56px;
  margin: 0 0 20px;
  padding: 12px 32px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.75;
  text-align: left;
  cursor: pointer;
}

.capability-tab:last-child {
  margin-bottom: 0;
}

.capability-tab::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 2px;
  height: 40px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: translateY(-50%);
}

.capability-tab::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0));
  content: "";
  opacity: 0;
}

.capability-tab > * {
  position: relative;
  z-index: 1;
}

.capability-tab.is-active {
  color: var(--blue);
}

.capability-tab.is-active::before,
.capability-tab.is-active::after {
  opacity: 1;
}

.capability-tab__icon {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  margin-right: 8px;
}

.capability-tab__icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.capability-tab__icon img:nth-child(2) {
  opacity: 0;
}

.capability-tab.is-active .capability-tab__icon img:first-child {
  opacity: 0;
}

.capability-tab.is-active .capability-tab__icon img:nth-child(2) {
  opacity: 1;
}

.capability-panels {
  flex: 0 0 74.5%;
  min-width: 0;
}

.capability-panel {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}

.capability-panel[hidden] {
  display: none;
}

.capability-panel__header {
  min-height: 132px;
  padding: 35px 40px;
  background: var(--pale) url("assets/capability-bg.jpg") center / cover no-repeat;
}

.capability-panel__header h3 {
  margin-bottom: 11px;
  color: #000000;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.capability-panel__header p {
  font-size: var(--body);
  line-height: 1.6;
}

.capability-panel__body {
  height: calc(100% - 132px);
  padding: 25px 17px;
  border: 1px solid var(--pale);
  border-top: 0;
}

.capability-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-height: 452px;
  padding-right: 6px;
  overflow-y: auto;
  scrollbar-color: var(--blue) #edf2f5;
  scrollbar-width: thin;
}

.capability-card-grid::-webkit-scrollbar {
  width: 4px;
}

.capability-card-grid::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: var(--blue);
}

.capability-card-grid::-webkit-scrollbar-track {
  background: #edf2f5;
}

.capability-card {
  min-height: 178px;
  padding: 20px;
  border: 1px solid var(--pale);
  border-radius: 8px;
}

.capability-card h4 {
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.75;
}

.capability-card > p {
  color: var(--muted);
  font-size: var(--body);
  line-height: 1.75;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 8px;
}

.tag-list li {
  padding: 2px 5px;
  border-radius: 2px;
  background: var(--surface);
  color: rgba(153, 153, 153, 0.8);
  font-size: 12px;
  line-height: 1.75;
  list-style: none;
}

.section--reasons {
  padding: var(--space-100) 0 var(--space-120);
  background: var(--pale);
}

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

.reason-card {
  min-height: 383px;
  padding: 35px 38px 54px;
  border-radius: 8px;
  background: #ffffff;
}

.reason-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  margin-bottom: 45px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
}

.reason-card h3 {
  max-width: calc(100% - 60px);
  font-size: var(--h3);
  font-weight: 400;
  line-height: 1.4;
}

.reason-card header img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.reason-card > p {
  color: var(--muted);
  font-size: var(--body);
  line-height: 1.75;
}

.section--cases {
  padding: var(--space-100) 0;
}

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

.case-card {
  display: flex;
  height: 361px;
  min-height: 361px;
  flex-direction: column;
  padding: 25px 20px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--pale);
}

.case-card__logo {
  width: 140px;
  height: 58px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.case-card h3 {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.case-card p {
  display: -webkit-box;
  flex: 1;
  overflow: hidden;
  color: var(--muted);
  font-size: var(--small);
  line-height: 1.6;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 7;
}

.case-card > a {
  align-self: flex-start;
  margin-top: 16px;
  color: var(--blue);
  font-size: var(--small);
  line-height: 1.6;
}

.cta-section {
  position: relative;
  display: grid;
  min-height: 293px;
  place-items: center;
  padding: var(--space-100) 0;
  background: #133776 url("assets/cta.jpg") center / cover no-repeat;
  color: #ffffff;
}

.cta-section__content {
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 0;
  color: #ffffff;
  line-height: 1.4;
}

.legal-strip {
  padding: 14px 0;
  border-top: 1px solid #e7edf1;
  background: #ffffff;
  color: var(--muted);
}

.legal-strip__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 20px;
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}

.legal-strip a {
  transition: color 0.3s ease;
}

.legal-strip a:hover,
.legal-strip a:focus-visible {
  color: var(--blue);
}

.desktop-side-tools {
  position: fixed;
  top: 160px;
  right: 0;
  z-index: 80;
  width: 50px;
  overflow: visible;
  border-radius: 18px 0 0 18px;
  background: #0098d7;
  color: #ffffff;
}

.side-tools__mascot {
  position: absolute;
  top: -34px;
  left: -3px;
  width: 56px;
  height: 56px;
}

.desktop-side-tools > a,
.desktop-side-tools > button:not(.side-tools__top) {
  display: flex;
  width: 50px;
  min-height: 105px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  color: #ffffff;
  cursor: pointer;
}

.desktop-side-tools > a:first-of-type {
  padding-top: 20px;
  border-radius: 18px 0 0;
}

.desktop-side-tools > a img,
.desktop-side-tools > button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.desktop-side-tools span {
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 0;
  writing-mode: vertical-rl;
}

.desktop-side-tools .side-tools__top {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 0 0 0 18px;
  background: transparent;
  cursor: pointer;
}

.desktop-side-tools .side-tools__top img {
  width: 20px;
  height: 20px;
}

.mobile-hotline,
.mobile-bottom-actions {
  display: none;
}

.consult-dialog {
  width: 360px;
  max-width: calc(100vw - 40px);
  padding: 0;
  overflow: hidden;
  border: 0;
  background: #ffffff;
  color: var(--ink);
}

.consult-dialog::backdrop {
  background: rgba(0, 0, 0, 0.3);
}

.consult-dialog__header {
  position: relative;
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 0 50px;
  background: #2f73f6;
  color: #ffffff;
}

.consult-dialog__header h2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.consult-dialog__header button {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 28px;
  font-weight: 200;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.consult-dialog__body {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 20px 24px;
}

.consult-dialog__body img {
  width: 210px;
  height: 210px;
  margin-bottom: 14px;
  object-fit: contain;
}

.consult-dialog__body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 110;
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 45px;
  padding: 12px 8.75%;
  background: #edf7fc;
  box-shadow: 0 -2px 12px rgba(11, 64, 97, 0.08);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.cookie-banner a {
  color: var(--ink);
  text-decoration: underline;
}

.cookie-banner button {
  flex: 0 0 112px;
  min-height: 34px;
  padding: 4px 24px;
  border: 0;
  border-radius: 40px;
  background: var(--blue);
  color: #ffffff;
  font-size: 16px;
  cursor: pointer;
}

@media (max-width: 1800px) {
  .desktop-header {
    padding-inline: 100px;
  }
}

@media (max-width: 1680px) {
  :root {
    --h1: 36px;
    --h2: 36px;
    --h3: 22px;
    --space-120: 100px;
    --space-100: 90px;
    --space-80: 80px;
    --space-60: 60px;
    --space-50: 40px;
    --header-height: 70px;
    --capability-height: 650px;
  }

  .container {
    width: 82.5%;
    max-width: none;
  }

  .desktop-header {
    padding-inline: 100px;
  }

  .desktop-nav {
    gap: 40px;
  }

  .header-actions {
    gap: 22px;
    margin-left: 100px;
  }

  .challenge-card {
    padding: 40px 20px 80px;
  }

  .challenge-card h3 {
    margin-bottom: 50px;
  }
}

@media (max-width: 1440px) {
  :root {
    --h1: 34px;
    --h2: 34px;
    --h3: 22px;
    --space-120: 90px;
    --space-100: 80px;
    --space-80: 70px;
    --space-60: 55px;
    --space-50: 30px;
    --header-height: 60px;
    --capability-height: 637px;
  }

  .desktop-header {
    padding-inline: 60px;
  }

  .desktop-nav {
    gap: 36px;
  }

  .header-actions {
    gap: 22px;
    margin-left: 60px;
  }

  .header-phone img {
    width: 22px;
    height: 22px;
  }

  .header-search {
    width: 20px;
    height: 20px;
  }

  .hero h1 {
    margin-bottom: 20px;
  }

  .section--solution h2 {
    margin-bottom: 18px;
  }

  .button {
    min-height: 38px;
    padding-block: 4px;
  }

  .challenge-card {
    min-height: 329px;
    padding: 36px 20px 55px;
  }

  .challenge-card h3 {
    margin-bottom: 32px;
  }

  .reason-card {
    padding-inline: 30px;
  }
}

@media (max-width: 1280px) {
  :root {
    --header-height: 55px;
  }

  .desktop-header {
    padding-inline: 42px;
  }

  .desktop-nav {
    gap: 30px;
  }

  .header-actions {
    gap: 16px;
    margin-left: 50px;
  }

  .header-phone {
    font-size: 14px;
  }

  .reason-card {
    min-height: 360px;
    padding: 25px 20px;
  }

  .section--solution h2 {
    margin-bottom: 16px;
  }

  .reason-card header {
    margin-bottom: 30px;
  }
}

@media (max-width: 1199px) {
  :root {
    --h1: 26px;
    --h2: 26px;
    --h3: 20px;
    --body: 14px;
    --space-120: 80px;
    --space-100: 70px;
    --space-80: 60px;
    --space-60: 50px;
    --space-50: 30px;
    --header-height: 64px;
  }

  .container {
    width: 100%;
    max-width: none;
    padding-inline: 40px;
  }

  .desktop-header {
    display: none;
  }

  .mobile-header {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 20px;
    background: #ffffff;
  }

  .mobile-brand {
    width: 132px;
  }

  .mobile-brand img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .mobile-header__actions {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .mobile-search {
    width: 22px;
    height: 22px;
  }

  .menu-toggle {
    position: relative;
    width: 28px;
    height: 22px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span,
  .menu-toggle::before,
  .menu-toggle::after {
    position: absolute;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--blue);
    content: "";
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .menu-toggle span {
    top: 10px;
  }

  .menu-toggle::before {
    top: 0;
  }

  .menu-toggle::after {
    top: 20px;
  }

  .menu-toggle[aria-expanded="true"] span {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"]::before {
    top: 10px;
    transform: rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"]::after {
    top: 10px;
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: block;
    visibility: hidden;
    overflow: hidden;
    background: #ffffff;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
  }

  .mobile-menu__panels {
    position: relative;
    height: 100%;
  }

  .mobile-menu__panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 10px 20px 90px;
    overflow-y: auto;
    background: #ffffff;
    transform: translateX(100%);
    transition: transform 0.35s ease;
  }

  .mobile-menu__panel.is-current {
    transform: translateX(0);
  }

  .mobile-menu__panel.is-previous {
    transform: translateX(-100%);
  }

  .mobile-menu__panel > a,
  .mobile-menu__panel > button {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    padding: 7px 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-size: 16px;
    line-height: 1.5;
    text-align: left;
  }

  .mobile-menu__panel > .is-active {
    color: var(--blue);
  }

  .mobile-menu__next span {
    color: var(--muted);
    font-size: 30px;
    font-weight: 200;
    line-height: 1;
  }

  .mobile-menu__panel > .mobile-menu__back {
    justify-content: flex-start;
    min-height: 54px;
    border-bottom: 1px solid #e8e8e8;
    font-weight: 500;
  }

}

@media (max-width: 991px) {
  :root {
    --h2: 26px;
    --space-120: 70px;
    --space-100: 60px;
    --space-80: 50px;
    --space-60: 45px;
    --space-50: 25px;
  }

}

@media (max-width: 767px) {
  :root {
    --h2: 24px;
    --h3: 18px;
    --space-120: 60px;
    --space-100: 50px;
    --space-80: 40px;
    --space-60: 40px;
    --space-50: 25px;
    --radius: 5px;
  }

  .container {
    padding-inline: 20px;
  }

  .mobile-brand {
    width: 118px;
  }

  .hero {
    aspect-ratio: 1200 / 990;
  }

  .hero__content {
    top: 49%;
  }

  .hero__eyebrow {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .hero h1 {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 1.2;
  }

  .hero__subtitle {
    max-width: 320px;
    font-size: 14px;
    line-height: 1.6;
  }

  .hero__actions {
    display: none;
  }

  .section h2 {
    line-height: 1.2;
  }

  .carousel__viewport {
    overflow: hidden;
  }

  .carousel__track,
  .challenge-grid,
  .reason-grid,
  .case-grid {
    display: flex;
    gap: 16px;
    padding-bottom: 0;
    transition: transform 1s ease;
    will-change: transform;
  }

  .carousel__slide {
    flex: 0 0 100%;
  }

  .carousel__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 20px;
    margin-top: 10px;
  }

  .carousel__dots button {
    width: 6px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #e5e5e5;
    cursor: pointer;
  }

  .carousel__dots button.is-active {
    background: var(--blue);
  }

  .challenge-card {
    min-height: 260px;
    padding: 25px 20px;
  }

  .challenge-card::after {
    display: none;
  }

  .challenge-card h3 {
    min-height: 3em;
    margin-bottom: 20px;
  }

  .challenge-card li {
    line-height: 1.75;
  }

  .solution-intro {
    width: 100%;
    line-height: 1.5;
    text-align: left;
  }

  .capability-layout {
    display: block;
    height: auto;
  }

  .capability-tabs {
    display: flex;
    flex-direction: row;
    width: 100%;
    padding: 20px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .capability-tabs::-webkit-scrollbar {
    display: none;
  }

  .capability-tab {
    flex: 0 0 50%;
    min-height: 38px;
    margin: 0;
    padding: 3px 16px;
    font-size: 14px;
    white-space: nowrap;
  }

  .capability-tab::before,
  .capability-tab::after {
    display: none;
  }

  .capability-tab__icon {
    flex-basis: 24px;
    width: 24px;
    height: 24px;
    margin-right: 6px;
  }

  .capability-panels {
    width: 100%;
    margin-top: 24px;
  }

  .capability-panel__header {
    min-height: 104px;
    padding: 25px 20px;
  }

  .capability-panel__header h3 {
    font-size: 20px;
  }

  .capability-panel__body {
    height: 310px;
    padding: 25px 17px;
  }

  .capability-card-grid {
    display: block;
    max-height: 260px;
    padding-right: 6px;
  }

  .capability-card {
    min-height: 0;
    margin-bottom: 16px;
    padding: 18px 16px;
  }

  .capability-card:last-child {
    margin-bottom: 0;
  }

  .capability-card h4 {
    font-size: 16px;
  }

  .reason-card {
    min-height: 285px;
    padding: 24px 20px;
  }

  .reason-card header {
    min-height: 58px;
    margin-bottom: 20px;
    padding-bottom: 15px;
  }

  .reason-card header img {
    width: 36px;
    height: 36px;
  }

  .case-card {
    height: 354px;
    min-height: 354px;
    padding: 24px 20px;
  }

  .cta-section {
    min-height: 157px;
    padding: 40px 0;
  }

  .cta-section h2 {
    margin-bottom: 0;
    font-size: 22px;
  }

  .legal-strip {
    padding: 12px 0 78px;
  }

  .legal-strip__inner {
    gap: 2px 12px;
    font-size: 11px;
  }

  .desktop-side-tools {
    display: none;
  }

  .mobile-hotline {
    position: fixed;
    right: 16px;
    bottom: 98px;
    z-index: 85;
    display: flex;
    width: 32px;
    min-height: 106px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 4px;
    border: 1px solid #ffffff;
    border-radius: 18px;
    background: var(--blue);
    color: #ffffff;
  }

  .mobile-hotline img {
    width: 20px;
    height: 20px;
  }

  .mobile-hotline span {
    font-size: 14px;
    line-height: 1.2;
    writing-mode: vertical-rl;
  }

  .mobile-bottom-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    height: 66px;
    padding: 11px 16px;
    border-top: 1px solid #e7edf1;
    background: #ffffff;
  }

  .mobile-bottom-actions button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 0;
    padding: 0 12px;
    border: 1px solid var(--blue);
    border-radius: 5px;
    background: #ffffff;
    color: var(--blue);
    font-size: 14px;
  }

  .mobile-bottom-actions img {
    width: 19px;
    height: 19px;
    object-fit: contain;
  }

  .cookie-banner {
    display: none;
  }
}

@media (max-width: 480px) {
  :root {
    --h2: 22px;
    --space-120: 42px;
    --space-100: 40px;
    --space-80: 38px;
    --space-60: 36px;
    --space-50: 20px;
  }

  .section--challenge {
    padding-bottom: 42px;
  }

  .challenge-card {
    min-height: 246px;
  }

  .section--solution {
    padding-block: 36px;
  }

  .section--capability {
    padding-block: 42px;
  }

  .section--reasons {
    padding: 40px 0 54px;
  }

  .reason-card {
    min-height: 270px;
  }

  .section--cases {
    padding: 40px 0 47px;
  }

  .consult-dialog {
    width: calc(100vw - 40px);
  }
}

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

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