:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --text: #111827;
  --muted: #4b5563;
  --blue: #1464d2;
  --deep: #0b2f5b;
  --orange: #ff7a00;
  --border: #e5e7eb;
  --shadow: 0 18px 45px rgba(11, 47, 91, 0.09);
  --shadow-strong: 0 26px 70px rgba(11, 47, 91, 0.16);
  --glass: rgba(255, 255, 255, 0.72);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}
body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 4%, rgba(20, 100, 210, 0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 38%, #ffffff 100%);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
#app { max-width: 100%; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
img { max-width: 100%; display: block; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 100;
  background: var(--deep);
  color: #fff;
  padding: 8px 12px;
}
.skip-link:focus { left: 8px; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo img {
  width: 170px;
  height: auto;
  filter: drop-shadow(0 8px 12px rgba(15, 23, 42, 0.08));
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.nav-link { position: relative; padding: 31px 0; }
.nav-link.active::after,
.dropdown:hover > .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--orange);
}
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -22px;
  width: 278px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
  display: none;
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { display: grid; }
.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
  text-transform: none;
  font-weight: 700;
}
.dropdown-menu a:hover { background: #eef5ff; color: var(--blue); }
.nav-actions { display: flex; align-items: center; gap: 14px; }
.language-switcher {
  position: relative;
  z-index: 65;
}
.language-trigger {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(20, 100, 210, 0.28);
  border-radius: 999px;
  background: #fff;
  color: var(--deep);
  padding: 0 10px 0 14px;
  box-shadow: 0 12px 26px rgba(11, 47, 91, 0.1);
  cursor: pointer;
}
.language-trigger::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.14);
}
.language-trigger-text {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.language-current {
  min-width: 36px;
  min-height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.language-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 330px;
  max-height: min(720px, calc(100vh - 110px));
  display: grid;
  gap: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  overflow: auto;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.language-switcher.language-open .language-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.language-option {
  width: 100%;
  min-height: 54px;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  color: var(--text);
  padding: 8px 10px;
  text-align: left;
  cursor: pointer;
}
.language-option:hover:not(:disabled) {
  border-color: rgba(255, 122, 0, 0.42);
  background: #fff8f1;
}
.language-option:disabled {
  cursor: default;
  opacity: 0.62;
  background: #f8fafc;
}
.language-option.is-active {
  border-color: rgba(255, 122, 0, 0.5);
  background: #fff8f1;
}
.language-code {
  width: 36px;
  min-height: 32px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #eef5ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}
.language-option.is-active .language-code {
  background: var(--orange);
  color: #fff;
}
.language-name strong {
  display: block;
  min-width: 0;
  font-size: 13px;
  line-height: 1.2;
}
.language-name em {
  display: block;
  min-width: 0;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  line-height: 1.2;
}

html[data-text-direction="rtl"] body {
  direction: ltr;
}
html[data-text-direction="rtl"],
html[data-text-direction="rtl"] body,
html[data-text-direction="rtl"] #app {
  overflow-x: hidden;
}
html[data-text-direction="rtl"] .site-header {
  max-width: 100vw;
  overflow: visible;
}
html[data-text-direction="rtl"] main,
html[data-text-direction="rtl"] footer {
  max-width: 100vw;
  overflow-x: hidden;
}
html[data-text-direction="rtl"] .hero-copy,
html[data-text-direction="rtl"] .page-hero-copy,
html[data-text-direction="rtl"] .section-head,
html[data-text-direction="rtl"] .language-market-copy,
html[data-text-direction="rtl"] .product-card,
html[data-text-direction="rtl"] .gallery-card,
html[data-text-direction="rtl"] .gallery-section-card,
html[data-text-direction="rtl"] .info-card,
html[data-text-direction="rtl"] .solution-card,
html[data-text-direction="rtl"] .solution-step,
html[data-text-direction="rtl"] .support-steps article,
html[data-text-direction="rtl"] .legal-container,
html[data-text-direction="rtl"] .footer-col {
  direction: rtl;
  text-align: right;
}
html[data-text-direction="rtl"] .hero-actions,
html[data-text-direction="rtl"] .feature,
html[data-text-direction="rtl"] .gallery-section-head,
html[data-text-direction="rtl"] .cta-band {
  direction: rtl;
}
html[data-text-direction="rtl"] .language-panel {
  right: auto;
  left: 0;
  direction: rtl;
}
html[data-text-direction="rtl"] .language-option {
  grid-template-columns: 42px minmax(0, 1fr);
  text-align: right;
}
html[data-text-direction="rtl"] .dropdown-menu {
  left: auto;
  right: 0;
}
html[data-text-direction="rtl"] .table-scroll,
html[data-text-direction="rtl"] .table-scroll table,
html[data-text-direction="rtl"] .spec-list,
html[data-text-direction="rtl"] .map-box {
  direction: ltr;
}
html[data-text-direction="rtl"] .gallery-item-list span.has-icon,
html[data-text-direction="rtl"] .spare-icon-gallery .gallery-item-list span.has-icon {
  direction: rtl;
}
html[data-text-direction="rtl"] .video-row,
html[data-text-direction="rtl"] .video-track {
  direction: ltr;
}
.quote-btn, .primary-btn, .secondary-btn, .small-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: 6px;
  border: 1px solid transparent;
  padding: 0 18px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}
.quote-btn, .primary-btn, .small-btn {
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.94), rgba(255, 138, 32, 0.86));
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 122, 0, 0.22);
}
.secondary-btn {
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-color: rgba(17, 24, 39, 0.72);
  backdrop-filter: blur(10px);
}
.small-btn { min-height: 34px; padding: 0 12px; font-size: 12px; }
.primary-btn:hover, .quote-btn:hover, .small-btn:hover, .secondary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(255, 122, 0, 0.24);
}
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  border: 1px solid rgba(20, 100, 210, 0.22);
  background: linear-gradient(135deg, var(--deep), #1464d2);
  color: #fff;
  border-radius: 999px;
  padding: 0 15px;
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(11, 47, 91, 0.18);
  cursor: pointer;
}
.menu-toggle::before {
  content: "";
  width: 16px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: linear-gradient(currentColor, currentColor) center / 16px 2px no-repeat;
}

.hero {
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(105deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.96) 42%, rgba(255,255,255,0) 42.2%),
    linear-gradient(120deg, #fff 0%, #edf4fb 46%, #dbeaf7 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 100, 210, 0.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 100, 210, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.22), transparent 56%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  align-items: center;
  min-height: 600px;
  gap: 24px;
}
.hero-copy {
  position: relative;
  z-index: 2;
  animation: heroCopy 700ms ease both;
}
.eyebrow {
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 14px;
}
.hero h1, .page-hero h1 {
  margin: 10px 0 16px;
  font-size: clamp(40px, 5.2vw, 66px);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
  font-weight: 950;
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero p, .page-hero p {
  max-width: 530px;
  color: var(--muted);
  font-size: 18px;
}
html[lang="de"] .hero h1 {
  font-size: clamp(36px, 3.9vw, 50px);
  line-height: 1.08;
  overflow-wrap: normal;
  hyphens: none;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 28px 0 24px; }
.feature-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
  max-width: 640px;
}
.feature {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 12px;
  transition: transform 180ms ease;
}
.feature:hover { transform: translateY(-2px); }
.feature-icon {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(20, 100, 210, 0.48);
  color: var(--blue);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 8px 20px rgba(20, 100, 210, 0.08);
}
.feature strong { display: block; font-size: 13px; color: var(--text); line-height: 1.25; overflow-wrap: anywhere; }
.feature span { color: var(--muted); }
.hero-visual {
  position: relative;
  min-height: 470px;
  align-self: stretch;
  border-radius: 0 0 0 34px;
  overflow: hidden;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
  box-shadow: var(--shadow-strong);
}
.hero-visual-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: var(--hero-position, center);
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 800ms ease, transform 1600ms ease;
}
.hero-visual-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.26), transparent 44%),
    linear-gradient(180deg, transparent 48%, rgba(11,47,91,0.38));
}
.hero-visual-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.hero-caption {
  position: absolute;
  left: 76px;
  right: 28px;
  bottom: 32px;
  z-index: 3;
  width: min(380px, calc(100% - 110px));
  padding: 16px 18px;
  color: #fff;
  background: rgba(11, 47, 91, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}
.hero-caption span {
  display: block;
  color: #9bc9ff;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
}
.hero-caption strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.2;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,0.52);
  border-radius: 50%;
  background: rgba(255,255,255,0.34);
  color: #fff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transform: translateY(-50%);
}
.hero-prev { left: 42px; }
.hero-next { right: 18px; }
.hero-dots {
  position: absolute;
  z-index: 4;
  bottom: 22px;
  right: 28px;
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,0.72);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease;
}
.hero-dots button.is-active {
  width: 26px;
  background: var(--orange);
}

.section { padding: 72px 0; }
section[id] { scroll-margin-top: 96px; }
.section-tight { padding: 42px 0; }
.section-head { margin-bottom: 26px; }
.section-head h2 {
  margin: 2px 0 8px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
  text-transform: uppercase;
  font-weight: 950;
}
.section-head::after, .orange-line {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  background: var(--orange);
  margin-top: 10px;
}
.muted { color: var(--muted); }
.grid { display: grid; gap: 18px; }
.product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-card, .info-card, .gallery-card, .video-card, .contact-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.product-card:hover, .gallery-card:hover, .video-card:hover, .info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: rgba(20, 100, 210, 0.16);
}
.product-card-img {
  height: 170px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 500ms ease;
}
.product-card:hover .product-card-img { transform: scale(1.035); }
.product-card-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,47,91,0.05), rgba(11,47,91,0.28));
}
.product-card-body { padding: 18px; }
.product-card h3, .gallery-card h3 { margin: 0 0 8px; font-size: 16px; text-transform: uppercase; }
.product-card p, .gallery-card p { margin: 0 0 14px; color: var(--muted); font-size: 14px; }
.text-link { color: var(--blue); font-weight: 900; font-size: 13px; }

.centered { text-align: center; }
.centered::after { margin-left: auto; margin-right: auto; }

.brand-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.brand-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(229,231,235,0.9);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 16px 42px rgba(11, 47, 91, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}
.brand-card img {
  width: 100%;
  height: 74px;
  object-fit: contain;
  border-radius: 8px;
}
.brand-card p {
  margin: 12px 2px 0;
  color: var(--muted);
  font-size: 13px;
}

.stats-band {
  background:
    linear-gradient(110deg, #fff 0%, #f4f8fd 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: center;
}
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stat { padding: 28px 16px; text-align: center; }
.stat strong { display: block; color: var(--text); font-size: 34px; line-height: 1; margin-bottom: 7px; }
.stat span { color: var(--muted); font-size: 13px; }
.video-row {
  overflow: hidden;
  position: relative;
  max-width: 100%;
  padding: 2px 0 10px;
}
#video-section,
#video-section .container {
  overflow-x: hidden;
}
.video-row::before,
.video-row::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 48px;
  z-index: 2;
  pointer-events: none;
}
.video-row::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.96), rgba(255,255,255,0));
}
.video-row::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255,255,255,0.96), rgba(255,255,255,0));
}
.video-track {
  display: flex;
  gap: 16px;
  width: max-content;
  max-width: none;
  animation: videoMarquee 56s linear infinite;
}
.video-row:hover .video-track {
  animation-play-state: paused;
}
.video-card {
  flex: 0 0 clamp(240px, 24vw, 340px);
  overflow: hidden;
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #071b33;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-card-body {
  padding: 14px;
}
.video-card h3 { margin: 0 0 10px; font-size: 14px; line-height: 1.25; }
.video-card a {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

@keyframes videoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 8px)); }
}

.featured-video-section {
  background:
    linear-gradient(115deg, rgba(11,47,91,0.96), rgba(20,100,210,0.86)),
    url("/assets/images/hero-home.jpg") center / cover;
  color: #fff;
}
.featured-video-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 32px;
}
.featured-video-section .muted { color: rgba(255,255,255,0.78); }
.featured-video-section .section-head h2 { color: #fff; }
.featured-video-section .eyebrow { color: #9bc9ff; }
.featured-video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: 0 30px 80px rgba(0,0,0,0.32);
  background: #071b33;
}
.featured-video-card iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.glass-btn {
  background: rgba(255,122,0,0.82);
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}

.solution-overview {
  background:
    linear-gradient(180deg, #fff 0%, #f4f8fd 100%);
  border-bottom: 1px solid var(--border);
}
.solution-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 24px;
  align-items: stretch;
  padding: 30px;
  border: 1px solid rgba(20, 100, 210, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(20, 100, 210, 0.08), rgba(255, 122, 0, 0.08)),
    #fff;
  box-shadow: var(--shadow);
}
.solution-hero-panel h2 {
  max-width: 660px;
  margin: 10px 0 12px;
  color: var(--deep);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}
.solution-hero-panel p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}
.solution-proof {
  display: grid;
  gap: 12px;
}
.solution-proof .stat {
  padding: 20px 14px;
}
.solution-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.solution-step {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 28px rgba(11, 47, 91, 0.06);
}
.solution-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--deep);
  color: #fff;
  font-weight: 900;
}
.solution-step h3 {
  margin: 16px 0 8px;
  color: var(--deep);
}
.solution-step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.solution-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.solution-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.95), #fff);
  box-shadow: 0 14px 34px rgba(11, 47, 91, 0.07);
}
.solution-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.solution-card h3 {
  margin: 16px 0 10px;
  color: var(--deep);
}
.solution-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}
.solution-card .text-link {
  margin-top: auto;
}

.market-section {
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}
.language-market {
  display: grid;
  grid-template-columns: minmax(280px, 0.44fr) minmax(0, 1fr);
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: var(--shadow);
}
.language-market-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 44px;
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255,142,30,0.16), rgba(255,142,30,0) 42%),
    linear-gradient(135deg, #071e3c 0%, #0b2f5b 54%, #123f78 100%);
}
.map-origin {
  width: fit-content;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  padding: 8px 12px;
  color: #ffe6cf;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.language-market-copy h3 {
  margin: 0;
  max-width: 380px;
  font-size: 34px;
  line-height: 1.08;
  color: #fff;
}
.language-market-copy p {
  margin: 0;
  max-width: 420px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}
.language-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.language-pills span {
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 8px 10px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  font-weight: 800;
}
.language-map-wrap {
  min-height: 470px;
  background:
    radial-gradient(circle at 64% 48%, rgba(255,142,30,0.14), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #eef5fc 100%);
}
.language-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 470px;
}
.map-panel {
  fill: transparent;
}
.map-grid line {
  stroke: rgba(12, 68, 125, 0.17);
  stroke-width: 1.2;
}
.map-land path {
  fill: rgba(80, 112, 148, 0.45);
}
.route-base {
  fill: none;
  stroke: rgba(22, 105, 189, 0.24);
  stroke-width: 2;
  stroke-linecap: round;
}
.route-line {
  fill: none;
  stroke: url(#routeGradient);
  stroke-width: 4.5;
  stroke-linecap: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  opacity: 0;
  animation: routeTravel 7.2s ease-in-out infinite;
  animation-delay: var(--delay);
}
.route-point {
  animation: pointWake 7.2s ease-in-out infinite;
  animation-delay: var(--delay);
}
.route-point circle:first-child {
  fill: #1769bd;
  stroke: #fff;
  stroke-width: 4;
}
.route-point-ring {
  fill: transparent;
  stroke: #ff8e1e;
  stroke-width: 2.5;
  opacity: 0.42;
  transform-origin: center;
  animation: pointPulse 2.8s ease-in-out infinite;
  animation-delay: var(--delay);
}
.route-point text,
.hub-point text {
  fill: #102a4c;
  font-size: 19px;
  font-weight: 900;
  paint-order: stroke;
  stroke: rgba(255,255,255,0.9);
  stroke-width: 6px;
  stroke-linejoin: round;
  letter-spacing: 0;
}
.region-point text {
  font-size: 16px;
}
.country-point circle {
  fill: #ff8e1e;
  stroke: #fff;
  stroke-width: 3;
  filter: drop-shadow(0 3px 7px rgba(10, 46, 91, 0.18));
}
.country-point text {
  fill: #12345c;
  font-size: 12px;
  font-weight: 800;
  paint-order: stroke;
  stroke: rgba(255,255,255,0.94);
  stroke-width: 4px;
  stroke-linejoin: round;
  letter-spacing: 0;
}
.hub-pulse {
  fill: rgba(255,142,30,0.18);
  stroke: rgba(255,142,30,0.28);
  stroke-width: 2;
  animation: hubPulse 2.8s ease-in-out infinite;
}
.hub-core {
  fill: #ff8e1e;
  stroke: #fff;
  stroke-width: 6;
}
.hub-sub {
  fill: #47647f !important;
  font-size: 14px !important;
  font-weight: 800 !important;
}

@keyframes routeTravel {
  0% { stroke-dashoffset: 1; opacity: 0; }
  12% { opacity: 0.88; }
  48% { stroke-dashoffset: 0; opacity: 0.96; }
  70% { stroke-dashoffset: 0; opacity: 0.58; }
  100% { stroke-dashoffset: -1; opacity: 0; }
}
@keyframes pointWake {
  0%, 20% { opacity: 0.25; }
  45%, 72% { opacity: 1; }
  100% { opacity: 0.35; }
}
@keyframes pointPulse {
  0% { opacity: 0.18; transform: scale(0.82); }
  55% { opacity: 0.62; transform: scale(1.12); }
  100% { opacity: 0.18; transform: scale(0.82); }
}
@keyframes hubPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.88); transform-origin: center; }
  50% { opacity: 1; transform: scale(1.08); transform-origin: center; }
}
@media (prefers-reduced-motion: reduce) {
  .route-line,
  .route-point,
  .route-point-ring,
  .hub-pulse {
    animation: none;
  }
  .route-line {
    stroke-dashoffset: 0;
    opacity: 0.82;
  }
}

.cta-band {
  background: linear-gradient(100deg, var(--blue), var(--deep));
  color: #fff;
  border-radius: 12px;
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  inset: -40% -20% auto auto;
  width: 260px;
  height: 260px;
  background: rgba(255,255,255,0.12);
  transform: rotate(24deg);
}
.cta-band h2 { margin: 0; font-size: 22px; text-transform: uppercase; }
.cta-band p { margin: 4px 0 0; color: rgba(255,255,255,0.84); }

.page-hero {
  background:
    linear-gradient(110deg, #fff 0%, #f8fbff 52%, #eef5fc 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 100, 210, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 100, 210, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.2), transparent 48%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  min-height: 460px;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(460px, 1.14fr);
  gap: 42px;
  align-items: stretch;
}
.page-hero-copy {
  align-self: center;
  padding: 70px 0;
}
.page-hero h1 {
  max-width: 620px;
  font-size: clamp(40px, 4.4vw, 58px);
}
.page-hero p {
  max-width: 560px;
}
.page-hero-media {
  min-height: 460px;
  width: calc(100% + max(16px, (100vw - 1180px) / 2));
  margin-right: calc(-1 * max(16px, (100vw - 1180px) / 2));
  background: var(--hero-image, url("/assets/reference/01-marine-engine.png")) center / cover no-repeat;
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
  position: relative;
  box-shadow: -28px 0 60px rgba(11, 47, 91, 0.08);
}
.page-hero-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 18%;
  background: linear-gradient(105deg, rgba(255,255,255,0.88), rgba(255,255,255,0));
  pointer-events: none;
}
.breadcrumbs {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 18px;
}
.intro-panel {
  text-align: center;
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.intro-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(20,100,210,0.06), transparent 38%);
  pointer-events: none;
}
.intro-panel .container { position: relative; }
.intro-panel p { max-width: 780px; margin: 0 auto; color: var(--muted); }

.table-shell {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
  backdrop-filter: blur(12px);
}
.table-shell.reveal {
  opacity: 1;
  transform: none;
}
.product-data-section.reveal {
  opacity: 1;
  transform: none;
}
.toolbar {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(150px, 0.45fr)) auto;
  gap: 12px;
  margin-bottom: 16px;
}
.toolbar input, .toolbar select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 6px;
  min-height: 42px;
  padding: 0 12px;
  background: #fff;
  color: var(--text);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.toolbar input:focus, .toolbar select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,122,0,0.12);
}
.table-scroll { overflow-x: visible; }
table { width: 100%; border-collapse: collapse; table-layout: fixed; font-size: 13px; }
th, td {
  padding: 10px 9px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
  word-break: normal;
}
th {
  position: sticky;
  top: 0;
  background: linear-gradient(135deg, var(--deep), #123f78);
  color: #fff;
  z-index: 2;
  cursor: pointer;
  white-space: normal;
}
tbody tr:nth-child(even) { background: #f9fbfe; }
tbody tr:hover { background: #eef5ff; }
.pagination {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}
.pager-actions { display: flex; align-items: center; gap: 8px; }
.pager-actions button {
  min-width: 36px;
  height: 34px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 6px;
  cursor: pointer;
}
.mobile-cards { display: none; gap: 12px; }
#product-content { scroll-margin-top: 112px; }
.mobile-card { padding: 16px; }
.mobile-card h3 { margin: 0 0 4px; }
.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
  margin: 14px 0;
}
.spec-list div { border-top: 1px solid var(--border); padding-top: 8px; }
.spec-list span { display: block; color: var(--muted); font-size: 12px; }
.spec-list strong { font-size: 13px; }

.gallery-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.gallery-img {
  height: 190px;
  background-size: cover;
  background-position: top center;
  background-color: #eef5ff;
}
.gallery-card .product-card-body { min-height: 152px; display: flex; flex-direction: column; }
.gallery-card .text-link { margin-top: auto; }
.gallery-sections {
  display: grid;
  gap: 22px;
}
.gallery-section-card {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(11, 47, 91, 0.07);
}
.gallery-section-card.is-featured {
  border-color: rgba(255, 122, 0, 0.46);
  background:
    linear-gradient(135deg, rgba(255, 122, 0, 0.08), rgba(20, 100, 210, 0.04)),
    #fff;
  box-shadow: 0 22px 46px rgba(255, 122, 0, 0.12);
}
.gallery-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}
.gallery-section-head h3 {
  margin: 0;
  color: var(--deep);
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gallery-section-icon {
  width: 76px;
  height: 50px;
  flex: 0 0 76px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(20, 100, 210, 0.12);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(11, 47, 91, 0.06);
}
.gallery-section-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.gallery-feature-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-top: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 122, 0, 0.13);
  color: #b45309;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.gallery-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 12px;
}
.gallery-photo {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #f8fafc;
}
.gallery-photo.is-zoomable {
  cursor: zoom-in;
}
.gallery-zoom {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}
.gallery-zoom::after {
  content: "View";
  position: absolute;
  right: 10px;
  bottom: 10px;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(11, 47, 91, 0.86);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 160ms ease, transform 160ms ease;
}
.gallery-zoom:hover::after,
.gallery-zoom:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.gallery-item-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(20, 100, 210, 0.15);
  border-radius: 999px;
  background: #f8fbff;
  color: var(--deep);
  font-size: 13px;
  font-weight: 800;
}
.gallery-item-list span.has-icon {
  min-height: 56px;
  gap: 10px;
  padding: 7px 13px 7px 7px;
  border-radius: 10px;
  background: #fff;
}
.gallery-item-list span em {
  font-style: normal;
}
.gallery-item-icon {
  width: 54px;
  height: 38px;
  flex: 0 0 54px;
  object-fit: contain;
  border-radius: 7px;
  background: #fff;
}
.gallery-section-card.is-featured .gallery-item-list span {
  border-color: rgba(255, 122, 0, 0.28);
  background: #fff7ed;
}
.gallery-section-card.is-featured .gallery-item-list span.has-icon {
  border-color: rgba(255, 122, 0, 0.36);
  background: #fff;
  box-shadow: 0 12px 26px rgba(255, 122, 0, 0.1);
}
.spare-icon-gallery .gallery-section-card {
  padding: 24px;
}
.spare-icon-gallery .gallery-section-head {
  align-items: center;
}
.spare-icon-gallery .gallery-section-head h3 {
  font-size: 22px;
}
.spare-icon-gallery .gallery-section-icon {
  width: 112px;
  height: 92px;
  flex-basis: 112px;
  border-color: rgba(255, 122, 0, 0.22);
  background:
    linear-gradient(180deg, #fff 0%, #fff8f1 100%);
}
.spare-icon-gallery .gallery-section-icon img {
  width: 78px;
  height: 78px;
}
.spare-icon-gallery .gallery-item-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.spare-icon-gallery .gallery-item-list span.has-icon {
  min-width: 0;
  min-height: 86px;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
}
.spare-icon-gallery .gallery-item-list span.has-icon em {
  min-width: 0;
  overflow-wrap: anywhere;
  line-height: 1.25;
}
.spare-icon-gallery .gallery-item-icon {
  width: 52px;
  height: 52px;
}
.lightbox-open {
  overflow: hidden;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}
.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.gallery-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 18, 32, 0.74);
  backdrop-filter: blur(8px);
}
.gallery-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}
.gallery-lightbox-dialog img {
  width: 100%;
  max-height: calc(100vh - 150px);
  object-fit: contain;
  border-radius: 6px;
  background: #f8fafc;
}
.gallery-lightbox-caption {
  margin: 0;
  color: var(--deep);
  font-weight: 900;
}
.gallery-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(255,255,255,0.55);
  border-radius: 999px;
  background: rgba(11, 47, 91, 0.9);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.about-story {
  background: linear-gradient(180deg, #fff 0%, #f6f9fd 100%);
}
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 30px;
  align-items: start;
}
.about-copy-panel {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.about-copy-panel p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.75;
}
.about-copy-panel p:last-child {
  margin-bottom: 0;
}
.about-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.about-capability-grid article {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 34px rgba(11, 47, 91, 0.07);
}
.about-capability-grid span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.about-capability-grid h3 {
  margin: 16px 0 8px;
  color: var(--deep);
}
.about-capability-grid p {
  margin: 0;
  color: var(--muted);
}
.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.support-path-section {
  background:
    linear-gradient(135deg, rgba(11, 47, 91, 0.96), rgba(20, 100, 210, 0.86)),
    url("/assets/images/page-heroes/support-hero-20260503.jpg?v=20260503-static-page-heroes") center / cover;
  color: #fff;
}
.support-path-section .section-head h2 {
  color: #fff;
}
.support-path-section .section-head .muted {
  color: rgba(255, 255, 255, 0.78);
}
.support-path-section .eyebrow {
  color: #9bc9ff;
}
.support-path {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.26fr);
  gap: 30px;
  align-items: start;
}
.support-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.support-steps article {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}
.support-steps span {
  color: #ffcf9c;
  font-weight: 900;
}
.support-steps h3 {
  margin: 10px 0 8px;
  color: #fff;
}
.support-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}
.support-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.support-card-grid .info-card {
  padding: 22px;
}
.support-video-section {
  background: #fff;
}
.support-video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.support-video-grid .video-card {
  flex: auto;
}

.content-band { background: rgba(255,255,255,0.94); }
.article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.info-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.info-card { padding: 24px; }
.info-card h3 { margin-top: 0; }
.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}
.contact-email-btn {
  margin-top: 8px;
}
.map-box {
  height: 310px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #eaf1f8;
}
.map-box iframe { width: 100%; height: 100%; border: 0; }

.legal-page {
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}
.legal-container {
  max-width: 860px;
}
.legal-page h1 {
  margin: 14px 0 8px;
  color: var(--deep);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
}
.legal-updated {
  margin: 0 0 28px;
  color: var(--muted);
}
.legal-block {
  padding: 22px 0;
  border-top: 1px solid var(--border);
}
.legal-block h2 {
  margin: 0 0 10px;
  color: var(--deep);
  font-size: 20px;
}
.legal-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.site-footer {
  background:
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
  border-top: 1px solid var(--border);
  padding: 42px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.2fr 1.3fr;
  gap: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.footer-logo { width: 130px; }
.footer-col h3 { margin: 0 0 12px; font-size: 13px; text-transform: uppercase; color: var(--deep); }
.footer-col a, .footer-col p { display: block; color: var(--muted); font-size: 13px; margin: 0 0 8px; }
.footer-contact-link strong {
  display: block;
  color: var(--deep);
  font-size: 12px;
  line-height: 1.25;
  text-transform: uppercase;
}
.footer-contact-link span {
  display: block;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 24px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
}
.footer-bottom a {
  color: var(--muted);
}
.footer-bottom a:hover {
  color: var(--blue);
}
.float-actions {
  position: fixed;
  right: 18px;
  bottom: 86px;
  z-index: 40;
  display: grid;
  gap: 8px;
}
.float-actions a {
  width: 54px;
  min-height: 54px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  color: var(--deep);
  font-size: 11px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.float-actions a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroCopy {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1024px) {
  .container { width: min(100% - 32px, 920px); }
  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 12px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }
  body.nav-open .nav-menu { display: flex; }
  .nav-link { padding: 12px; }
  .nav-link.active::after, .dropdown:hover > .nav-link::after { display: none; }
  .dropdown-menu { position: static; display: grid; width: auto; box-shadow: none; border: 0; padding: 0 0 0 12px; }
  .menu-toggle { display: inline-flex; }
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 44px 0 0; }
  .hero-visual { min-height: 360px; clip-path: none; margin: 0 -16px; border-radius: 0; }
  .page-hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 0;
  }
  .page-hero-copy {
    padding: 54px 0 30px;
  }
  .page-hero-media {
    min-height: 300px;
    width: calc(100% + 32px);
    margin: 0 -16px;
    clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  }
  .language-market { grid-template-columns: 1fr; }
  .language-market-copy { padding: 34px; }
  .language-market-copy h3 { max-width: 720px; }
  .language-market-copy p { max-width: 740px; }
  .language-map-wrap, .language-map { min-height: 390px; }
  .product-grid, .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .market-list, .market-grid, .stats-grid, .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .solution-hero-panel, .about-story-grid, .support-path { grid-template-columns: 1fr; }
  .solution-process, .solution-card-grid, .about-capability-grid, .about-metrics, .support-card-grid, .support-video-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .article-grid, .contact-layout { grid-template-columns: 1fr; }
  .featured-video-grid { grid-template-columns: 1fr; }
  .toolbar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .container { width: min(100% - 24px, 620px); }
  .logo img { width: 126px; }
  .nav-wrap { gap: 12px; }
  .nav-actions { gap: 8px; }
  .nav-actions .quote-btn { display: none; }
  .language-trigger {
    min-height: 38px;
    gap: 6px;
    padding: 0 7px 0 10px;
  }
  .language-trigger-text { font-size: 11px; }
  .language-current {
    min-width: 34px;
    min-height: 26px;
  }
  .menu-toggle {
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }
  .menu-toggle::before {
    width: 14px;
    height: 10px;
    background-size: 14px 2px;
  }
  .language-panel {
    position: fixed;
    top: 92px;
    left: 12px;
    right: 12px;
    width: auto;
    max-height: calc(100dvh - 110px);
    overflow: auto;
    z-index: 100;
  }
  html[data-text-direction="rtl"] .language-panel {
    left: 12px;
    right: 12px;
  }
  .language-option {
    grid-template-columns: 38px 1fr;
    min-height: 52px;
  }
  html[data-text-direction="rtl"] .language-option {
    grid-template-columns: 38px minmax(0, 1fr);
  }
  .hero h1, .page-hero h1 { font-size: 36px; }
  html[lang="de"] .hero h1,
  html[lang="de"] .page-hero h1,
  html[lang="ru"] .hero h1,
  html[lang="ru"] .page-hero h1,
  html[lang="pt"] .hero h1,
  html[lang="pt"] .page-hero h1,
  html[lang="fr"] .hero h1,
  html[lang="fr"] .page-hero h1,
  html[lang="id"] .hero h1,
  html[lang="id"] .page-hero h1,
  html[lang="ms"] .hero h1,
  html[lang="ms"] .page-hero h1 {
    font-size: 32px;
    line-height: 1.08;
  }
  .feature-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid, .gallery-grid, .info-grid, .market-list, .market-grid, .stats-grid, .brand-grid { grid-template-columns: 1fr; }
  .market-visual { min-height: 250px; }
  .hero-actions, .cta-band, .footer-bottom { align-items: stretch; flex-direction: column; }
  .cta-band .primary-btn { width: 100%; }
  .page-hero-copy { padding: 42px 0 24px; }
  .page-hero-media {
    min-height: 230px;
    width: 100%;
    margin: 0;
  }
  .language-market-copy { padding: 26px 20px; }
  .language-market-copy h3 { font-size: 26px; }
  .language-map-wrap, .language-map { min-height: 300px; }
  .route-point text, .country-point text { display: none; }
  .hub-point text { font-size: 24px; }
  .hub-sub { display: none; }
  .solution-hero-panel { padding: 22px; }
  .solution-process, .solution-card-grid, .about-capability-grid, .about-metrics, .support-steps, .support-card-grid, .support-video-grid { grid-template-columns: 1fr; }
  .hero-caption { left: 16px; right: 16px; bottom: 50px; width: auto; }
  .hero-prev { left: 14px; }
  .hero-next { right: 14px; }
  .toolbar { grid-template-columns: 1fr; }
  .table-scroll { display: none; }
  .mobile-cards { display: grid; }
  .gallery-section-card { padding: 16px; }
  .gallery-section-head {
    align-items: stretch;
    flex-direction: column;
  }
  .gallery-section-head h3 { align-items: flex-start; }
  .gallery-section-icon {
    width: 68px;
    height: 46px;
    flex-basis: 68px;
  }
  .spare-icon-gallery .gallery-section-icon {
    width: 82px;
    height: 74px;
    flex-basis: 82px;
  }
  .spare-icon-gallery .gallery-section-icon img {
    width: 58px;
    height: 58px;
  }
  .spare-icon-gallery .gallery-item-list {
    grid-template-columns: 1fr;
  }
  .spare-icon-gallery .gallery-item-list span.has-icon {
    min-height: 76px;
    grid-template-columns: 52px minmax(0, 1fr);
  }
  .spare-icon-gallery .gallery-item-icon {
    width: 48px;
    height: 48px;
  }
  .gallery-photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .gallery-item-list span { width: 100%; justify-content: center; }
  .gallery-item-list span.has-icon { justify-content: flex-start; }
  .gallery-lightbox { padding: 14px; }
  .gallery-lightbox-dialog { max-height: calc(100vh - 28px); }
  .gallery-lightbox-dialog img { max-height: calc(100vh - 132px); }
  .footer-grid { grid-template-columns: 1fr; }
  .float-actions { display: none; }
}

@media (max-width: 380px) {
  .logo img { width: 112px; }
  .language-trigger-text { display: none; }
}
