/* GE HealthCare China Homepage Clone - Design Tokens */
:root {
  --color-primary: #6022a6;
  --color-primary-hover: #4d1b85;
  --color-text: #202020;
  --color-heading: #222222;
  --color-muted: #5b5b67;
  --color-white: #ffffff;
  --color-gray-100: #f5f5f7;
  --color-gray-200: #e8e8ed;
  --color-border: #d1d1d6;
  --font-family: "Source Sans 3", "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
  --section-padding-y: 80px;
  --section-padding-x: 64px;
  --hero-height: 640px;
  --transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 24px;
  color: var(--color-text);
  background: var(--color-white);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: calc(var(--max-width) + var(--section-padding-x) * 2);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-white);
  border-bottom: 1px solid transparent;
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: calc(var(--max-width) + var(--section-padding-x) * 2);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
}

.logo img {
  height: 32px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-list {
  display: flex;
  align-items: center;
}

.nav-item button {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-heading);
  padding: 10px 16px 32px;
  margin-top: 22px;
  position: relative;
  transition: color var(--transition);
}

.nav-item button:hover,
.nav-item button:focus-visible {
  color: var(--color-primary);
}

.nav-item button::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 20px;
  height: 2px;
  background: var(--color-primary);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.nav-item button:hover::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.platform-entry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  margin-right: 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-primary);
  background: transparent;
  border: 1.5px solid var(--color-primary);
  border-radius: 4px;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}

.platform-entry-label--short {
  display: none;
}

.platform-entry-btn:hover {
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
}

.search-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background var(--transition);
}

.search-btn:hover {
  background: var(--color-gray-100);
}

.search-btn svg path {
  fill: var(--color-heading);
}

/* Header language switcher */
.lang-switch {
  position: relative;
}

.lang-switch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 44px;
  padding: 0 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  transition: background var(--transition);
}

.lang-switch-btn:hover,
.lang-switch-btn[aria-expanded="true"] {
  background: var(--color-gray-100);
}

.lang-switch-icon {
  flex-shrink: 0;
  color: var(--color-primary);
}

.lang-switch-chevron {
  flex-shrink: 0;
  color: var(--color-primary);
  transition: transform var(--transition);
}

.lang-switch-btn[aria-expanded="true"] .lang-switch-chevron {
  transform: rotate(180deg);
}

.lang-switch-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 220px;
  max-height: 400px;
  overflow-y: auto;
  margin: 0;
  padding: 8px 0;
  list-style: none;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 300;
}

.lang-switch-menu.open {
  display: block;
}

.lang-switch-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 10px 16px;
  font-size: 15px;
  line-height: 22px;
  color: var(--color-heading);
  text-align: left;
  transition: background var(--transition);
}

.lang-switch-option:hover {
  background: var(--color-gray-100);
}

.lang-switch-option.is-active {
  color: var(--color-primary);
  font-weight: 600;
}

.lang-switch-check {
  color: var(--color-primary);
  font-size: 14px;
}

.lang-switch--mobile {
  display: none;
}

.mobile-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}

/* ========== Hero Carousel ========== */
@keyframes hero-image-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes hero-title-slide-in {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: var(--hero-height);
  overflow: hidden;
  background: linear-gradient(135deg, #7b2cbf, #9d4edd 50%, #c77dff);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.hero-bg.image-loaded {
  animation: hero-image-fade-in 0.5s ease-in forwards;
  transition: none;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  min-height: var(--hero-height);
  margin: 0 auto;
  padding: 0 var(--section-padding-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  pointer-events: none;
}

.hero-overlay * {
  pointer-events: auto;
}

.hero-captions-wrap {
  position: relative;
  z-index: 3;
  width: min(520px, 100%);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero-captions-wrap.title-visible {
  animation: hero-title-slide-in 0.6s ease-out forwards;
  transition: none;
  opacity: 1;
  transform: translateY(0);
}

.hero-title-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-paddles-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slide-count {
  font-size: 18px;
  line-height: 28px;
  color: var(--color-muted);
  white-space: nowrap;
}

.slide-sep {
  color: var(--color-muted);
}

.hero-paddle-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f4f1f8;
  border: 0.8px solid #c7c8cf;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.hero-btn:hover {
  background: #ffffff;
  border-color: var(--color-primary);
  transform: scale(1.05);
}

.hero-play-pause .icon-play[hidden] {
  display: none;
}

.progress-wrap {
  position: relative;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.progress-ring {
  width: 48px;
  height: 48px;
  transform: rotate(-90deg);
  position: absolute;
  inset: 0;
}

.progress-ring__track {
  fill: none;
  stroke: #e8e8ed;
  stroke-width: 2.5;
}

.progress-ring__fill {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 135.2;
  stroke-dashoffset: 135.2;
}

.hero-btn-next {
  position: absolute;
  inset: 4px;
  margin: auto;
  width: 40px;
  height: 40px;
  background: #f4f1f8;
  border: 0.8px solid #c7c8cf;
}

.hero-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
  color: #333333;
  margin-bottom: 0;
  word-break: break-word;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 28px;
  color: var(--color-muted);
}

.hero-mobile-content {
  display: none;
  background: #f4f1f8;
  padding: 32px var(--section-padding-x) 48px;
}

.hero-mobile-content .hero-title {
  font-size: 28px;
  line-height: 36px;
}

@media (max-width: 1139px) {
  .hero-overlay {
    display: none;
  }

  .hero-mobile-content {
    display: block;
  }
}

@media (max-width: 767px) {
  .hero-carousel {
    height: auto;
    min-height: 0;
  }

  .hero-bg {
    position: relative;
    height: 280px;
  }

  .hero-overlay {
    display: none;
  }

  .hero-mobile-content {
    display: block;
    padding: 24px 20px 32px;
  }

  .hero-mobile-content .hero-title {
    font-size: 24px;
    line-height: 32px;
  }

  .hero-mobile-content .hero-subtitle {
    font-size: 16px;
    line-height: 24px;
  }
}

/* ========== Key Stats ========== */
.key-stats {
  background: var(--color-gray-100);
  padding: 64px 0;
}

.key-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  position: relative;
  padding-right: 24px;
}

.stat-value {
  font-size: 88px;
  font-weight: 300;
  font-family: "Source Sans 3", sans-serif;
  line-height: 104px;
  letter-spacing: -1.25px;
  color: var(--color-heading);
  white-space: nowrap;
}

.stat-label {
  font-size: 18px;
  line-height: 28px;
  color: var(--color-muted);
  margin-top: 8px;
}

.stat-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--color-primary);
  margin-top: 24px;
}

.stat-card:nth-child(1) .stat-line { background: #6022a6; }
.stat-card:nth-child(2) .stat-line { background: #7250d2; }
.stat-card:nth-child(3) .stat-line { background: #e87722; }
.stat-card:nth-child(4) .stat-line { background: #5b5b67; }

/* ========== Product Family ========== */
.product-section {
  padding: var(--section-padding-y) 0;
  overflow: hidden;
}

.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.section-title {
  font-size: 48px;
  font-weight: 400;
  line-height: 56px;
  letter-spacing: -1.25px;
  color: var(--color-heading);
}

.carousel-paddles {
  display: flex;
  gap: 12px;
}

.paddle-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  transition: border-color var(--transition), background var(--transition);
}

.paddle-btn:hover:not(:disabled) {
  border-color: var(--color-primary);
}

.paddle-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.paddle-btn svg path {
  fill: var(--color-primary);
}

.product-track-wrap {
  overflow: hidden;
  margin: 0 calc(var(--section-padding-x) * -1);
  padding: 0 var(--section-padding-x);
}

.product-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease-in-out;
}

.product-card {
  flex: 0 0 calc((100% - 48px) / 3);
  min-width: 280px;
  text-align: center;
}

.product-card a {
  display: block;
}

.product-card-image-wrap {
  background: #f5f5f7;
  border-radius: 12px;
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card p {
  font-size: 18px;
  line-height: 28px;
  color: var(--color-heading);
  margin-top: 16px;
  font-weight: 400;
}

/* ========== News ========== */
.news-section {
  background: var(--color-white);
  padding: var(--section-padding-y) 0;
}

.news-header {
  margin-bottom: 40px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  cursor: pointer;
}

.news-card-image {
  overflow: hidden;
  border-radius: 4px;
}

.news-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover img {
  transform: scale(1.08);
}

.news-card h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: var(--color-heading);
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  color: var(--color-muted);
}

.news-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  transition: gap var(--transition);
}

.news-all-link:hover {
  gap: 12px;
}

/* ========== Contact CTA ========== */
.contact-section {
  background: var(--color-gray-100);
  padding: var(--section-padding-y) 0;
}

.contact-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  text-align: left;
}

.contact-wrap .section-title {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 0;
  flex: 1 1 280px;
  max-width: 720px;
}

.contact-wrap .btn-primary {
  margin-top: 0;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  padding: 8px 24px;
  height: 44px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-primary);
  border: 0.8px solid var(--color-primary);
  border-radius: 8px;
  transition: background var(--transition), border-color var(--transition);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
}

/* ========== Footer ========== */
.site-footer {
  background: var(--color-white);
  padding: 64px 0 32px;
  border-top: 1px solid var(--color-gray-200);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--color-gray-200);
}

.footer-logo img {
  height: 28px;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-heading);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-adr {
  max-width: 400px;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-muted);
}

.footer-adr a {
  color: var(--color-primary);
  font-weight: 600;
}

.region-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 14px;
  margin-top: 24px;
  transition: border-color var(--transition);
}

.region-btn:hover {
  border-color: var(--color-primary);
}

/* Region / locale selector */
.region-overlay {
  position: fixed;
  inset: 0;
  z-index: 350;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 24px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.region-overlay.open {
  opacity: 1;
  visibility: visible;
}

.region-panel {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 480px;
  max-height: min(70vh, 560px);
  display: flex;
  flex-direction: column;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.region-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 16px;
  border-bottom: 1px solid #e8e8ed;
}

.region-panel-title {
  font-size: 18px;
  line-height: 26px;
  font-weight: 600;
  color: var(--color-heading);
  margin: 0;
}

.region-close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: none;
  background: #f4f4f7;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  color: var(--color-heading);
}

.region-search {
  margin: 16px 24px 8px;
  padding: 12px 16px;
  border: 1px solid #e8e8ed;
  border-radius: 8px;
  font-size: 16px;
  width: calc(100% - 48px);
}

.region-search:focus {
  outline: none;
  border-color: var(--color-primary);
}

.region-not-found {
  padding: 8px 24px;
  font-size: 14px;
  color: var(--color-muted);
  margin: 0;
}

.region-not-found.hidden {
  display: none;
}

.region-list {
  list-style: none;
  margin: 0;
  padding: 8px 0 16px;
  overflow-y: auto;
  flex: 1;
}

.region-item.hidden {
  display: none;
}

.region-item a,
.region-pick-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-heading);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.region-item a:hover,
.region-pick-btn:hover {
  background: #fbf9fd;
  color: var(--color-primary);
}

.region-item.is-current a,
.region-item.is-current .region-pick-btn {
  color: var(--color-primary);
  font-weight: 600;
}

.region-step.hidden {
  display: none;
}

.region-back {
  border: none;
  background: transparent;
  font-size: 20px;
  color: var(--color-heading);
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
}

.region-confirm-label {
  padding: 8px 24px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
}

.region-confirm-note {
  padding: 12px 24px 20px;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-muted);
}

.region-confirm-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  padding: 0 24px 24px;
}

.region-current-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-primary);
  background: #f3ecfa;
  padding: 2px 8px;
  border-radius: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-top: 32px;
  font-size: 12px;
  line-height: 18px;
  color: var(--color-muted);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.footer-legal a {
  color: var(--color-muted);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--color-primary);
}

.cookie-pref {
  cursor: pointer;
  text-decoration: underline;
}

/* ========== Cookie Banner ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-white);
  border-top: 1px solid var(--color-gray-200);
  padding: 24px 32px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.hidden {
  transform: translateY(100%);
  pointer-events: none;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.cookie-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-heading);
  width: 100%;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  font-size: 14px;
  line-height: 22px;
  color: var(--color-muted);
}

.cookie-text a {
  color: var(--color-primary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-outline {
  padding: 8px 20px;
  height: 44px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-heading);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  transition: border-color var(--transition);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-accept {
  padding: 8px 20px;
  height: 44px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-white);
  background: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 8px;
  transition: background var(--transition);
}

.btn-accept:hover {
  background: var(--color-primary-hover);
}

/* ========== Responsive ========== */
@media (max-width: 1139px) {
  :root {
    --section-padding-x: 24px;
    --section-padding-y: 64px;
  }

  .key-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .stat-value {
    font-size: 64px;
    line-height: 72px;
  }

  .section-title {
    font-size: 36px;
    line-height: 44px;
  }
}

@media (max-width: 767px) {
  .header-inner {
    gap: 6px;
    padding: 0 12px;
  }

  .logo {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 118px;
  }

  .logo img {
    height: 24px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: left center;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 0;
    margin-left: auto;
  }

  .platform-entry-btn {
    display: inline-flex;
    height: 30px;
    padding: 0 8px;
    margin-right: 2px;
    font-size: 11px;
    font-weight: 600;
    border-width: 1px;
    border-radius: 4px;
  }

  .platform-entry-label--full {
    display: inline;
  }

  .platform-entry-label--short {
    display: none;
  }

  /* 移动端：语言切换移入侧栏 */
  .lang-switch--header {
    display: none;
  }

  .search-btn {
    width: 36px;
    height: 36px;
  }

  .mobile-menu-btn {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 380px) {
  .logo {
    max-width: 92px;
  }

  .platform-entry-btn {
    padding: 0 6px;
    font-size: 11px;
  }

  .platform-entry-label--full {
    display: none;
  }

  .platform-entry-label--short {
    display: inline;
  }
}

@media (max-width: 991px) and (min-width: 768px) {
  .platform-entry-btn {
    height: 32px;
    padding: 0 10px;
    margin-right: 0;
    font-size: 12px;
  }

  .lang-switch-btn {
    padding: 0 8px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  :root {
    --section-padding-x: 20px;
    --section-padding-y: 48px;
    --header-height: 64px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .lang-switch-menu {
    min-width: 200px;
    right: -8px;
  }

  .key-stats {
    background: #ffffff;
    padding: 40px 0 48px;
  }

  .key-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 16px;
  }

  .stat-card {
    padding-right: 0;
  }

  .stat-line {
    position: static;
    width: 100%;
    height: 3px;
    margin-top: 12px;
  }

  .stat-value {
    font-size: 40px;
    line-height: 48px;
    white-space: normal;
  }

  .stat-label {
    font-size: 14px;
    line-height: 20px;
    margin-top: 4px;
  }

  .section-title {
    font-size: 28px;
    line-height: 36px;
  }

  .product-section {
    padding: 40px 0 48px;
  }

  .product-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 16px;
  }

  .carousel-paddles {
    display: none;
  }

  .product-track-wrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-padding-left: var(--section-padding-x);
    scrollbar-width: none;
    margin: 0 calc(var(--section-padding-x) * -1);
    padding: 0 var(--section-padding-x);
  }

  .product-track-wrap::-webkit-scrollbar {
    display: none;
  }

  .product-track {
    transform: none !important;
    gap: 16px;
  }

  .product-card {
    flex: 0 0 72%;
    min-width: 0;
    scroll-snap-align: start;
  }

  .product-card-image-wrap {
    border-radius: 12px;
  }

  .product-card p {
    font-size: 16px;
    margin-top: 12px;
    text-align: left;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
  }

  .contact-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-wrap .section-title {
    font-size: 28px;
    line-height: 36px;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions button {
    width: 100%;
  }

  .region-overlay {
    padding: 64px 16px 16px;
  }

  .region-panel {
    max-height: calc(100vh - 80px);
  }
}
