:root {
  --page-bg: #edf1f4;
  --surface: #ffffff;
  --surface-soft: #f6f6f6;
  --text: #1d232d;
  --text-soft: #6f7785;
  --brand: #2852a2;
  --brand-strong: #173a85;
  --border: rgba(22, 37, 66, 0.12);
  --shadow: 0 20px 60px rgba(23, 45, 90, 0.12);
  --header-height: clamp(72px, 5vw, 88px);
  --brand-width: clamp(148px, 12vw, 208px);
  --section-space: clamp(40px, 5vw, 88px);
  --section-space-tight: clamp(28px, 3vw, 48px);
  --section-space-loose: clamp(52px, 6vw, 96px);
  --section-title-size: clamp(30px, 3vw, 48px);
  --section-title-gap: clamp(32px, 4vw, 90px);
  --body-text-size: clamp(14px, 1.05vw, 18px);
  --body-text-size-sm: clamp(12px, 0.92vw, 16px);
  --card-radius: clamp(12px, 1.2vw, 18px);
  --card-padding: clamp(14px, 1.6vw, 24px);
  --card-gap: clamp(12px, 1.6vw, 28px);
  --panel-padding-x: clamp(20px, 2.4vw, 34px);
  --panel-padding-y: clamp(36px, 5vw, 93px);
}

@media (max-width: 1440px) {
  :root {
    --section-space: clamp(36px, 4.6vw, 76px);
    --section-space-loose: clamp(44px, 5vw, 84px);
    --section-title-gap: clamp(28px, 3.6vw, 72px);
  }
}

@media (max-width: 1280px) {
  :root {
    --section-space: clamp(32px, 4.2vw, 64px);
    --section-space-loose: clamp(40px, 4.8vw, 72px);
    --section-title-gap: clamp(24px, 3vw, 56px);
    --panel-padding-y: clamp(28px, 4vw, 72px);
  }
}

@media (max-width: 960px) {
  :root {
    --header-height: 72px;
    --section-space: 36px;
    --section-space-tight: 24px;
    --section-space-loose: 44px;
    --section-title-gap: 28px;
    --panel-padding-x: 20px;
    --panel-padding-y: 28px;
  }
}

@media (max-width: 640px) {
  :root {
    --section-space: 28px;
    --section-space-tight: 18px;
    --section-space-loose: 34px;
    --section-title-gap: 20px;
    --card-padding: 12px;
    --card-gap: 10px;
  }
}

/* Final global-map overrides */
.global-section .global-map {
  width: min(1560px, 100%);
  aspect-ratio: 1920 / 708;
}

.global-section .map-card {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.global-section .map-card--europe {
  top: -25.4%;
    left: 45.8%;
  transform: translate(-50%, 12px);
}

.global-section .map-card--headquarters {
  top: 8.4%;
  left: 82.7%;
  transform: translate(-50%, 12px);
}

.global-section .map-card.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.global-section .map-pin,
.global-section .map-city {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transform: translateY(-50%);
}

.global-section [data-map-trigger] {
  cursor: pointer;
}

.global-section [data-map-trigger]:focus-visible {
  outline: 2px solid rgba(37, 116, 255, 0.7);
  outline-offset: 4px;
  border-radius: 6px;
}

.global-section .map-pin::before,
.global-section .map-city::before {
  position: static;
  display: block;
  flex: 0 0 auto;
}

.global-section .map-pin::after {
  left: 4px;
  top: calc(50% + 3px);
}

.global-section .map-city::before {
  margin-left: 2px;
}

.global-section .map-pin--munich {
  top: 25.847%;
  left: 47.188%;
}

.global-section .map-pin--east-europe {
  top: 21.186%;
  left: 56.250%;
}

.global-section .map-pin--middle-east {
  top: 42.938%;
  left: 54.531%;
}

.global-section .map-pin--malaysia {
  top: 50.424%;
  left: 67.031%;
}

.global-section .map-city--beijing {
  top: 34.605%;
  left: 67.188%;
}

.global-section .map-city--wuhan {
  top: 38.983%;
  left: 66.615%;
}

.global-section .map-city--guangzhou {
  top: 45.480%;
  left: 68.958%;
}

.global-section .map-city--shanghai {
  top: 39.548%;
  left: 70.625%;
}

.global-section .map-city--suzhou {
  top: 37.853%;
  left: 70%;
}

@media (max-width: 1180px) {
  .global-section .global-map {
    aspect-ratio: 1920 / 708;
  }

  .global-section .map-card {
    width: clamp(144px, 15vw, 200px);
  }

  .global-section .map-card--europe {
    width: clamp(162px, 17vw, 220px);
  }

  .global-section .map-card--headquarters {
    width: clamp(146px, 15vw, 186px);
  }
}

@media (max-width: 960px) {
  .global-section .global-map {
    aspect-ratio: 1920 / 760;
  }

  .global-section .map-card {
    width: 132px;
  }

  .global-section .map-card--europe {
    width: 152px;
  }

  .global-section .map-card--headquarters {
    width: 142px;
  }

  .global-section .map-pin,
  .global-section .map-city {
    gap: 6px;
    font-size: 9px;
  }
}

@media (max-width: 640px) {
  .global-section .global-map {
    aspect-ratio: 1920 / 820;
  }

  .global-section .map-card {
    width: 108px;
    border-radius: 12px;
  }

  .global-section .map-card--europe {
    width: 122px;
  }

  .global-section .map-card--headquarters {
    width: 116px;
  }

  .global-section .map-pin,
  .global-section .map-city {
    gap: 4px;
    font-size: 8px;
  }

  .global-section .map-pin::after {
    left: 4px;
    top: calc(50% + 2px);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-width: 320px;
  background: var(--page-bg);
  color: var(--text);
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

.homepage-v3 {
  padding-top: 82px;
}

.homepage-v3 a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  background: var(--surface);
  overflow-x: hidden;
}

.shell {
  width: min(1760px, calc(100% - clamp(24px, 5vw, 120px)));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(34, 58, 108, 0.06);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  min-height: var(--header-height);
}

.site-header__brand {
  flex: 0 0 auto;
}

.site-header__brand img {
  width: var(--brand-width);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  gap: clamp(18px, 2.2vw, 48px);
  font-size: clamp(14px, 0.9vw, 17px);
  color: #525966;
}

.site-nav a {
  position: relative;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--brand);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.2vw, 18px);
  flex: 0 0 auto;
  font-size: clamp(12px, 0.9vw, 15px);
  color: #9ba1ad;
}

.lang-switch .is-active {
  color: #2574ff;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0 auto;
  background: var(--brand-strong);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero .swiper-slide {
  width: 100%;
}

.hero img {
  width: 100%;
  height: auto;
}

.hero-swiper__pagination {
  bottom: clamp(16px, 2vw, 28px) !important;
}

.hero-swiper__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.45);
  opacity: 1;
}

.hero-swiper__pagination .swiper-pagination-bullet-active {
  background: #ffffff;
}

.slogan-strip {
  padding: clamp(18px, 2vw, 26px) 0 clamp(18px, 1.8vw, 24px);
  background: var(--surface);
}

.slogan-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.2vw, 18px);
}

.slogan-strip__icon {
  width: min(100%, clamp(240px, 36vw, 515px));
}

.slogan-strip__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.slogan-strip__copy strong {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
}

.slogan-strip__copy span {
  font-size: clamp(12px, 0.9vw, 14px);
  color: var(--text-soft);
}

.company-section {
  position: relative;
  overflow: hidden;
  background: var(--brand) url("../../../../Images/home/phpcms/en-us/2026_v3/index/company-section-bg@2x.png") center/cover no-repeat;
}

.company-section__inner {
  min-height: clamp(620px, 48vw, 900px);
  display: flex;
  align-items: center;
}

.company-section__copy {
  width: min(620px, 100%);
  padding: var(--section-space-loose) 0 calc(var(--section-space-loose) + 8px);
  color: #ffffff;
}

.company-section__copy h2 {
  margin: 0 0 clamp(24px, 3vw, 46px);
  font-size: clamp(34px, 3vw, 48px);
  line-height: 1.05;
  font-weight: 600;
}

.company-section__cards {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 26px);
  margin-bottom: clamp(24px, 3vw, 42px);
}

.mini-card {
  margin: 0;
  width: clamp(150px, 15vw, 214px);
}

.mini-card img {
  width: 100%;
  border: 3px solid rgba(255, 255, 255, 0.88);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(4, 15, 42, 0.22);
}

.mini-card figcaption {
  margin-top: clamp(8px, 1vw, 14px);
  text-align: center;
  font-size: clamp(16px, 1.2vw, 24px);
}

.company-section__plus {
  font-size: clamp(42px, 4.6vw, 72px);
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
}

.company-section__copy p {
  margin: 0 0 clamp(20px, 2.4vw, 34px);
  font-size: var(--body-text-size);
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.92);
}

.company-section__link {
  display: inline-flex;
  align-items: center;
  padding-top: clamp(14px, 1.6vw, 22px);
  border-top: 2px solid rgba(255, 255, 255, 0.55);
  font-size: var(--body-text-size-sm);
  color: rgba(255, 255, 255, 0.95);
}

.timeline-section {
  --timeline-card-width: clamp(145px, 14vw, 245px);
  --timeline-gap: clamp(8px, 0.9vw, 18px);
  padding: var(--section-space) 0 var(--section-space-loose);
  background: #f5f5f5;
}

.timeline-grid {
  display: grid;
  column-gap: var(--timeline-gap);
  row-gap: clamp(14px, 1.6vw, 22px);
  justify-content: center;
  padding: 0;
}

.timeline-grid--top {
  width: calc(var(--timeline-card-width) * 5 + var(--timeline-gap) * 4);
  grid-template-columns: repeat(5, minmax(0, var(--timeline-card-width)));
  margin: 0 auto;
}

.timeline-grid--bottom {
  width: calc(var(--timeline-card-width) * 6 + var(--timeline-gap) * 5);
  grid-template-columns: repeat(6, minmax(0, var(--timeline-card-width)));
  margin: 0 auto;
  margin-top: 14px;

}

.timeline-card {
  width: 100%;
  max-width: var(--timeline-card-width);
  justify-self: center;
  /* min-height: 308px; */
  padding: var(--card-padding);
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  text-align: center;
}

.timeline-card h3 {
  min-height: clamp(32px, 3vw, 44px);
  margin: 0 0 clamp(8px, 1vw, 12px);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.45;
  font-weight: 500;
  color: #4a4f58;
}

.timeline-card img {
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.timeline-card p {
  /* margin: 8px 0 0; */
  margin: 0;
  font-size: clamp(12px, 0.95vw, 15px);
  color: #9297a1;
  text-align: right;
  margin-top: -20px;
}

.timeline-line {
  position: absolute;
  display: grid;
  left: 50%;
  color: #636872;
  font-size: clamp(12px, 1vw, 16px);
  pointer-events: none;
  transform: translateX(-50%);
}

.timeline-line span {
  position: relative;
  justify-self: center;
  white-space: nowrap;
}

.timeline-line span::before {
  content: "";
  position: absolute;
  left: 50%;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  border-radius: 50%;
  background: #c6cad1;
}

.timeline-line--top {
  top: 8px;
  width: calc(var(--timeline-card-width) * 5 + var(--timeline-gap) * 4);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--timeline-gap);
}

.timeline-line--top span {
  padding-top: 26px;
}

.timeline-line--top span::before {
  top: -7px;
}

.timeline-line--bottom {
  bottom: 2px;
  width: calc(var(--timeline-card-width) * 6 + var(--timeline-gap) * 5);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: var(--timeline-gap);
}

.timeline-line--bottom span {
  padding-bottom: 28px;
}

.timeline-line--bottom span::before {
  bottom: -7px;
}

.timeline-title {
  position: relative;
  margin-top: 8px;
  text-align: center;
}

.timeline-title img {
  width: 100%;
  height: auto;
  opacity: 0.38;
}

.timeline-title > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 300;
  color: #d6d6d8;
  white-space: nowrap;
}

.global-section {
  padding: var(--section-space-tight) 0 12px;
  background: #ffffff;
}

.global-section h2,
.ecosystem-section h2 {
  margin: 0 0 18px;
  text-align: center;
  font-size: var(--section-title-size);
  line-height: 1.1;
  font-weight: 600;
  margin-bottom: var(--section-title-gap);
}

.global-map {
  position: relative;
  width: min(1560px, 100%);
  margin: 0 auto;
  aspect-ratio: 1920 / 708;
  min-height: 0;
}

.global-map__base {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.map-card {
  position: absolute;
  width: clamp(172px, 13.2vw, 260px);
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(33, 57, 100, 0.14);
}

.map-card img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
}

.map-card div {
  padding: clamp(8px, 1vw, 12px) clamp(10px, 1.1vw, 14px) clamp(10px, 1.2vw, 14px);
  text-align: center;
}

.map-card strong {
  display: block;
  font-size: clamp(12px, 0.95vw, 18px);
}

.map-card span {
  display: block;
  margin-top: 4px;
  font-size: clamp(11px, 0.74vw, 14px);
  color: var(--text-soft);
}

.map-card--europe {
  top: 10.8%;
  left: 46.8%;
  transform: translateX(-50%);
  width: clamp(200px, 16.3vw, 280px);
}

.map-card--headquarters {
  top: 4.6%;
  left: 83.9%;
  transform: translateX(-50%);
  width: clamp(176px, 14.4vw, 228px);
}

.map-pin,
.map-city {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transform: translateY(-50%);
  font-family: "MiSans", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: clamp(10px, 0.82vw, 16px);
  line-height: 1.1;
  font-weight: 500;
  color: #2f384a;
}

.map-pin::before,
.map-city::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  box-sizing: border-box;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: #ffffff;
  flex: 0 0 auto;
}

.map-pin::after,
.map-city::after {
  content: "";
  position: absolute;
  left: 4px;
  top: calc(50% + 3px);
  width: 4px;
  height: 6px;
  background: currentColor;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.map-pin--blue {
  color: #52a8ff;
}

.map-pin--green {
  color: #25c486;
}

.map-pin--munich {
  top: 25.847%;
  left: 47.188%;
}

.map-pin--east-europe {
  top: 21.186%;
  left: 56.250%;
}

.map-pin--middle-east {
  top: 42.938%;
  left: 54.531%;
}

.map-pin--malaysia {
  top: 50.424%;
  left: 67.031%;
}

.map-city::before,
.map-city::after {
  left: 0;
}

.map-city::before {
  width: 6px;
  height: 6px;
  border-width: 0;
  background: #58a8ff;
  margin-left: 2px;
}

.map-city::after {
  display: none;
}

.map-city--beijing {
  top: 34.605%;
  left: 67.188%;
}

.map-city--wuhan {
  top: 38.983%;
  left: 66.615%;
}

.map-city--guangzhou {
  top: 45.480%;
  left: 68.958%;
}

.map-city--shanghai {
  top: 39.548%;
  left: 70.625%;
}

.map-city--suzhou {
  top: 37.853%;
  left: 70.000%;
  font-weight: 600;
}

.innovation-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-space-tight) 0 0;
  background: #28509d;
  padding-bottom: clamp(88px, 9vw, 132px);
}

.innovation-section__radar {
  position: absolute;
  right: -12px;
  top: 2px;
  width: min(38vw, 640px);
  opacity: 0.72;
}

.innovation-section__top {
  position: relative;
  z-index: 1;
  min-height: clamp(180px, 18vw, 260px);
}

.innovation-copy {
  /* width: min(420px, 100%); */
  padding: 8px 0 clamp(14px, 1.6vw, 22px);
  color: #ffffff;
}

.innovation-copy h2 {
  margin: 0;
  font-size: var(--section-title-size);
  line-height: 1.25;
  font-weight: 600;
  margin-bottom: clamp(12px, 1.4vw, 22px);
}

.innovation-copy > p {
  margin: 0 0 clamp(12px, 1.4vw, 18px);
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.innovation-feature {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.4vw, 22px);
  width: min(460px, 100%);
  max-width: 100%;
  min-height: clamp(86px, 8vw, 112px);
  margin-bottom: clamp(10px, 1vw, 14px);
  padding: clamp(16px, 2vw, 26px) clamp(18px, 2.2vw, 30px);
  background: #042464;
  border-radius: 8px 8px 8px 8px;
  border: 1px solid #FFFFFF;
}

.innovation-feature img {
  width: clamp(44px, 4vw, 62px);
  flex: 0 0 auto;
}

.innovation-feature strong {
  display: block;
  margin-bottom: 2px;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.3;
  font-weight: 600;
}

.innovation-feature span {
  display: block;
  font-size: clamp(13px, 1vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.innovation-more {
  display: inline-flex;
  margin-top: 2px;
  font-size: var(--body-text-size-sm);
  color: rgba(255, 255, 255, 0.9);
}

.highlights-panel {
  position: absolute;
  min-height: 0;
  margin-top: 0;
  bottom: 0;
}

.highlights-panel__bg {
  width: 100%;
}

.highlights-panel__card {
  /* position: absolute; */
  left: 24px;
  right: 24px;
  bottom: 54px;
  display: flex;
  /* display: grid; */
  /* grid-template-columns: 300px minmax(0, 1fr); */
  gap: var(--card-gap);
  padding: var(--panel-padding-y) var(--panel-padding-x);
  border-radius: var(--card-radius);
  background: rgba(242, 247, 255, 0.62);
  box-shadow: 0 12px 30px rgba(18, 34, 78, 0.08);
  backdrop-filter: blur(5px);
  margin-top: clamp(56px, 5.5vw, 92px);
  font-family: "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
}

.highlights-panel__brand img {
  width: 100%;
  max-width: 180px;
  /* margin: 54px auto 0; */
}
.highlights-panel__brand{
  display: flex;
  align-items: center;
  justify-content: center;
  flex:1;
}
.highlights-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex:1;
}

.highlights-panel__list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: clamp(8px, 0.9vw, 10px);
  align-items: start;
  margin-bottom: clamp(18px, 3vw, 50px);
  font-size: clamp(16px, 1.8vw, 30px);
  line-height: 1.35;
  color: #333333;
  font-weight: 500;
}

.highlights-panel__list li span {
  display: block;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

.highlights-panel__list li:last-child {
  margin-bottom: 0;
}

.highlights-panel__list em {
  font-style: normal;
  font-size: clamp(14px, 1.2vw, 20px);
  line-height: 1.2;
  color: #2574ff;
}

.ecosystem-section {
  position: relative;
  overflow: hidden;
  padding: var(--section-space-loose) 0 var(--section-space-loose);
  background: #ffffff;
}

.ecosystem-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(220px, 28vw, 420px);
  background: url("../../../../Images/home/phpcms/en-us/2026_v3/index/ecosystem-bg@2x.png") center bottom/cover no-repeat;
  opacity: 0.9;
  pointer-events: none;
}

.ecosystem-section .shell {
  position: relative;
  z-index: 1;
}

.partner-grid {
  --partner-gap: 12px;
  display: flex;
  flex-direction: column;
  gap: var(--partner-gap);
}

.partner-marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  gap: var(--partner-gap);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.partner-row {
  display: flex;
  flex: 0 0 auto;
  gap: var(--partner-gap);
  min-width: max-content;
  animation: partner-marquee-left 34s linear infinite;
}

.partner-marquee--right .partner-row {
  animation-name: partner-marquee-right;
}

.partner-logo {
  flex: 0 0 clamp(124px, 9vw, 172px);
}

.partner-logo img {
  width: 100%;
  height: auto;
}

.partner-marquee:hover .partner-row {
  animation-play-state: paused;
}

.partner-marquee--slow .partner-row {
  animation-duration: 40s;
}

@keyframes partner-marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - var(--partner-gap)));
  }
}

@keyframes partner-marquee-right {
  from {
    transform: translateX(calc(-100% - var(--partner-gap)));
  }

  to {
    transform: translateX(0);
  }
}

.site-footer {
  background: #3a3a3a;
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 300px 1fr 220px;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  padding: var(--section-space) 0 var(--section-space-tight);
}

.site-footer__brand img {
  width: clamp(148px, 12vw, 210px);
  filter: brightness(0) invert(1);
}

.site-footer__contact h3 {
  margin: 0 0 clamp(14px, 1.8vw, 26px);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 500;
}

.site-footer__contact p {
  margin: 0 0 clamp(8px, 1vw, 14px);
  font-size: var(--body-text-size);
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__qr {
  text-align: center;
}

.site-footer__qr img {
  width: clamp(76px, 6vw, 104px);
  margin: 0 auto clamp(8px, 1vw, 14px);
}

.site-footer__qr span {
  font-size: var(--body-text-size-sm);
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2.8vw, 40px);
  padding: clamp(20px, 2vw, 28px) 0 clamp(26px, 3vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.site-footer__bottom p {
  margin: 0;
  font-size: var(--body-text-size-sm);
  color: rgba(255, 255, 255, 0.6);
}

.site-footer__links {
  display: flex;
  gap: clamp(14px, 1.5vw, 22px);
  font-size: var(--body-text-size-sm);
}

@media (max-width: 1440px) {
  .shell {
    width: min(1760px, calc(100% - 72px));
  }

  .site-nav {
    gap: 28px;
    font-size: 15px;
  }

  .company-section__copy h2,
  .global-section h2,
  .ecosystem-section h2,
  .innovation-copy h2 {
    font-size:48px;
  }

  .company-section__copy p,
  .innovation-copy > p {
    font-size: 22px;
  }

  .timeline-title > span {
    font-size: 44px;
  }

  .timeline-line {
    font-size: 14px;
  }

  .timeline-card {
    padding: 16px 14px;
  }

  .timeline-card h3 {
    min-height: 38px;
    font-size: 14px;
  }

  .timeline-card p {
    font-size: 13px;
    margin-top: -12px;
  }

  .highlights-panel__card {
    grid-template-columns: 380px 1fr;
    gap: var(--card-gap);
  }

  .highlights-panel__list li {
    font-size: clamp(16px, 1.6vw, 22px);
  }
}

@media (max-width: 1280px) {
  .timeline-title > span {
    font-size: clamp(28px, 3vw, 36px);
  }

  .timeline-line {
    font-size: clamp(11px, 1vw, 12px);
  }

  .timeline-line span::before {
    width: 10px;
    height: 10px;
    margin-left: -5px;
  }

  .timeline-line--top span {
    padding-top: 18px;
  }

  .timeline-line--top span::before {
    top: -5px;
  }

  .timeline-line--bottom span {
    padding-bottom: 20px;
  }

  .timeline-line--bottom span::before {
    bottom: -5px;
  }

  .timeline-card {
    padding: 14px 12px;
  }

  .timeline-card h3 {
    min-height: 34px;
    margin-bottom: 10px;
    font-size: clamp(12px, 1vw, 13px);
  }

  .timeline-card p {
    font-size: clamp(11px, 0.95vw, 12px);
    margin-top: -8px;
  }
}

@media (max-width: 1180px) {
  .timeline-title > span {
    font-size: clamp(26px, 2.8vw, 32px);
  }

  .timeline-line {
    font-size: clamp(10px, 0.95vw, 11px);
  }

  .timeline-line span::before {
    width: 9px;
    height: 9px;
    margin-left: -4.5px;
  }

  .timeline-line--top span {
    padding-top: 17px;
  }

  .timeline-line--bottom span {
    padding-bottom: 18px;
  }

  .timeline-card {
    padding: 12px 10px;
  }

  .timeline-card h3 {
    min-height: 30px;
    margin-bottom: 8px;
    font-size: clamp(11px, 0.95vw, 12px);
  }

  .timeline-card p {
    font-size: clamp(10px, 0.9vw, 11px);
    margin-top: -6px;
  }

  .global-map {
    width: 100%;
    aspect-ratio: 1920 / 708;
  }

  .map-card {
    width: clamp(144px, 15vw, 200px);
  }

  .map-card--europe {
    width: clamp(162px, 17vw, 220px);
  }

  .map-card--headquarters {
    width: clamp(146px, 15vw, 186px);
  }

  .map-pin,
  .map-city {
    font-size: 10px;
  }

  .innovation-copy {
    width: min(360px, 100%);
  }

  .innovation-feature {
    width: min(320px, 100%);
    min-height: 96px;
    padding: clamp(16px, 1.8vw, 22px) clamp(18px, 2vw, 24px);
  }

  .innovation-feature strong {
    font-size: clamp(16px, 1.35vw, 18px);
  }

  .innovation-feature span {
    font-size: clamp(12px, 0.9vw, 14px);
  }

  .innovation-more {
    font-size: var(--body-text-size-sm);
  }
}

@media (max-width: 960px) {
  .partner-grid {
    --partner-gap: 10px;
  }

  .homepage-v3 {
    padding-top: 72px;
  }

  .shell {
    width: calc(100% - 40px);
  }

  .site-header__inner {
    min-height: 72px;
    flex-wrap: wrap;
    gap: 18px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 14px 0 8px;
    gap: 16px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .lang-switch {
    margin-left: auto;
    order: 3;
  }

  .slogan-strip__inner {
    justify-content: flex-start;
  }

  .company-section__inner {
    min-height: 0;
  }

  .company-section__copy {
    width: 100%;
    padding: var(--section-space-loose) 0;
  }

  .company-section__copy h2 {
    font-size: clamp(34px, 4.2vw, 42px);
  }

  .company-section__cards {
    flex-wrap: wrap;
  }

  .company-section__plus {
    display: none;
  }

  .company-section__copy p {
    font-size: var(--body-text-size);
    line-height: 1.9;
  }

  .timeline-grid--top,
  .timeline-grid--bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .timeline-line {
    left: 48px;
    right: 48px;
    width: auto;
    font-size: 14px;
    transform: none;
  }

  .timeline-title {
    margin-top: 12px;
  }

  .timeline-title > span,
  .global-section h2,
  .ecosystem-section h2,
  .innovation-copy h2 {
    font-size: clamp(30px, 4.6vw, 40px);
  }

  .global-map {
    width: 100%;
    aspect-ratio: 1920 / 760;
  }

  .map-card {
    width: 132px;
  }

  .map-card--europe {
    width: 152px;
  }

  .map-card--headquarters {
    width: 142px;
  }

  .map-pin,
  .map-city {
    gap: 6px;
    font-size: 9px;
  }

  .innovation-section {
    padding-top: var(--section-space);
    padding-bottom: clamp(120px, 14vw, 180px);
  }

  .innovation-section__radar {
    width: 60vw;
    opacity: 0.45;
  }

  .innovation-copy {
    width: 100%;
    padding-bottom: var(--section-space);
  }

  .innovation-feature {
    min-height: 0;
    padding: clamp(16px, 2vw, 22px) clamp(18px, 2.2vw, 24px);
  }

  .innovation-feature strong {
    font-size: clamp(18px, 2.5vw, 24px);
  }

  .innovation-feature span,
  .innovation-copy > p,
  .innovation-more {
    font-size: clamp(14px, 1.8vw, 18px);
  }

  .highlights-panel {
    min-height: 0;
  }

  .highlights-panel__bg {
    min-height: 420px;
    object-fit: cover;
  }

  .highlights-panel__card {
    position: static;
    display: block;
    padding: var(--panel-padding-y) var(--panel-padding-x);
    margin: -56px 0 0;
    transform: none;
  }


  .highlights-panel__brand img {
    max-width: 260px;
    margin-bottom: clamp(16px, 2vw, 24px);
  }

  .highlights-panel__list li {
    grid-template-columns: 56px 1fr;
    font-size: clamp(14px, 1.8vw, 18px);
  }

  .partner-row {
    gap: var(--partner-gap);
  }

  .partner-logo {
    flex-basis: clamp(118px, 22vw, 152px);
  }

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 32px);
    text-align: center;
  }

  .site-footer__brand img {
    margin: 0 auto;
  }

  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .partner-grid {
    --partner-gap: 8px;
  }

  .shell {
    width: calc(100% - 24px);
  }

  .site-header__brand img {
    width: clamp(132px, 30vw, 156px);
  }

  .lang-switch {
    gap: 10px;
    font-size: 13px;
  }

  .slogan-strip {
    padding: 18px 0;
  }

  .slogan-strip__icon {
    width: 72px;
  }

  .slogan-strip__copy strong {
    font-size: clamp(14px, 4vw, 16px);
  }

  .slogan-strip__copy span {
    font-size: clamp(11px, 3vw, 12px);
  }

  .company-section__copy h2,
  .timeline-title > span,
  .global-section h2,
  .ecosystem-section h2,
  .innovation-copy h2 {
    font-size: clamp(26px, 7vw, 32px);
  }

  .mini-card {
    width: calc(50% - 12px);
  }

  .timeline-grid--top,
  .timeline-grid--bottom {
    grid-template-columns: 1fr;
  }

  .partner-row {
    gap: var(--partner-gap);
  }

  .partner-marquee {
    gap: var(--partner-gap);
  }

  .partner-logo {
    flex-basis: clamp(104px, 36vw, 138px);
  }

  .timeline-card {
    min-height: 0;
  }

  .timeline-card h3 {
    min-height: 0;
    font-size: clamp(15px, 4vw, 18px);
  }

  .timeline-line {
    left: 20px;
    right: 20px;
    font-size: 10px;
    row-gap: 0;
  }

  .timeline-title {
    margin-top: 10px;
  }

  .timeline-line span::before {
    width: 8px;
    height: 8px;
    margin-left: -4px;
  }

  .timeline-line--top span {
    padding-top: 16px;
  }

  .timeline-line--top span::before {
    top: -4px;
  }

  .timeline-line--bottom span {
    padding-bottom: 16px;
  }

  .timeline-line--bottom span::before {
    bottom: -4px;
  }

  .global-map {
    width: 100%;
    aspect-ratio: 1920 / 820;
  }

  .map-card {
    width: 108px;
    border-radius: 12px;
  }

  .map-card--europe {
    width: 122px;
  }

  .map-card--headquarters {
    width: 116px;
  }

  .map-card div {
    padding: 6px 8px 8px;
  }

  .map-card strong,
  .map-card span {
    font-size: 10px;
  }

  .map-pin,
  .map-city {
    font-size: 8px;
    gap: 4px;
  }

  .map-pin::before {
    left: -14px;
    width: 10px;
    height: 10px;
    border-width: 3px;
  }

  .map-pin::after {
    left: -11px;
    top: 10px;
    width: 4px;
    height: 6px;
  }

  .map-city::before {
    left: -7px;
  }

  .innovation-feature {
    gap: 18px;
  }

  .innovation-feature img {
    width: clamp(54px, 18vw, 92px);
  }

  .innovation-feature strong {
    font-size: clamp(16px, 4.5vw, 20px);
  }

  .innovation-feature span,
  .innovation-copy > p,
  .innovation-more,
  .highlights-panel__list li {
    font-size: clamp(13px, 3.8vw, 16px);
  }

  .highlights-panel__list em {
    font-size: 24px;
  }

  .partner-grid {
    gap: 6px;
  }
}
