:root {
  --navy: #071a33;
  --blue: #0876d8;
  --sky: #30b8ff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #dbe6f3;
  --soft: #f4f8fc;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(7, 26, 51, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

body.modal-open {
  overflow: hidden;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 8px 30px rgba(7, 26, 51, 0.1);
}

.top-strip {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 8px clamp(18px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  background: linear-gradient(90deg, #06152a, #075ca8);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(18px, 5vw, 70px);
  color: var(--ink);
  background: var(--white);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-logo {
  width: 78px;
  height: 78px;
  padding: 0;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 4px 10px rgba(7, 26, 51, 0.18));
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  opacity: 0.92;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
}

.has-dropdown .nav-link::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.18s ease;
}

.has-dropdown:hover .nav-link::after,
.has-dropdown:focus-within .nav-link::after {
  transform: translateY(1px) rotate(225deg);
}

.product-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 210px;
  padding: 8px;
  border: 1px solid rgba(8, 118, 216, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(7, 26, 51, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.product-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.has-dropdown:hover .product-dropdown,
.has-dropdown:focus-within .product-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.product-dropdown a {
  padding: 11px 12px;
  border-radius: 6px;
  color: var(--ink);
  white-space: nowrap;
}

.product-dropdown a:hover {
  color: var(--blue);
  background: #eef7ff;
}

.product-dropdown-grouped {
  min-width: 340px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 10px;
}

.product-menu-group {
  display: grid;
  align-content: start;
  gap: 2px;
  min-width: 0;
}

.product-menu-title {
  padding: 7px 10px 5px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-menu-soon {
  padding: 10px;
  color: var(--muted);
  font-size: 13px;
  white-space: nowrap;
}

.nav-cta {
  padding: 10px 18px;
  border: 1px solid rgba(8, 118, 216, 0.28);
  border-radius: 4px;
  color: var(--white);
  background: linear-gradient(90deg, #0876d8, #12b7f5);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(8, 118, 216, 0.22);
  border-radius: 6px;
  background: #eef7ff;
}

.language-switcher button {
  min-width: 38px;
  min-height: 32px;
  padding: 0 9px;
  border: 0;
  border-radius: 4px;
  color: #0f4f8f;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  background: transparent;
  cursor: pointer;
}

.language-switcher button:hover,
.language-switcher button.is-active {
  color: var(--white);
  background: var(--blue);
}

@media (max-width: 1180px) {
  .navbar {
    padding-left: 24px;
    padding-right: 24px;
  }

  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .nav-cta {
    padding: 9px 13px;
  }

  .product-dropdown-grouped {
    min-width: 310px;
  }

  .language-switcher button {
    padding: 0 7px;
  }

  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 38px;
  padding: 8px;
  border: 1px solid rgba(8, 118, 216, 0.32);
  border-radius: 4px;
  background: transparent;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--blue);
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(110deg, #06152a 0%, #063c80 48%, #0876d8 100%);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/hero-aheqi.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(4, 16, 35, 0.92) 0%, rgba(6, 47, 94, 0.82) 48%, rgba(7, 72, 137, 0.18) 70%, rgba(7, 26, 51, 0.02) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 74px clamp(18px, 5vw, 70px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #8bdcff;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.22;
  letter-spacing: 0.03em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 20px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-content p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border: 0;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(90deg, #0876d8, #12b7f5);
  box-shadow: 0 12px 28px rgba(8, 118, 216, 0.28);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.section,
.capabilities,
.customer-cases,
.certificates,
.inquiry {
  padding: 92px clamp(18px, 5vw, 70px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.about-section {
  background: var(--white);
}

.about-content {
  display: grid;
}

.about-heading {
  max-width: none;
  margin-bottom: 34px;
}

.about-body {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(260px, 0.56fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}

.about-text-block {
  display: grid;
  gap: 22px;
}

.about-text-block p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.92;
}

.about-text-block strong {
  color: var(--muted);
  font-weight: 800;
}

.about-image {
  position: relative;
  width: min(100%, 320px);
  min-height: 520px;
  margin: 0 0 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #eaf4fb;
  filter: drop-shadow(0 24px 34px rgba(7, 26, 51, 0.18));
  animation: aboutFloat 5.5s ease-in-out infinite;
}

.about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.04) translateX(0);
  transition: filter 0.28s ease;
}

.about-slide-one {
  object-position: center;
  animation: aboutSlideOne 10s ease-in-out infinite;
}

.about-slide-two {
  object-position: center bottom;
  animation: aboutSlideTwo 10s ease-in-out infinite;
}

.about-image:hover .about-slide {
  filter: saturate(1.06) contrast(1.02);
}

@keyframes aboutSlideOne {
  0%,
  46% {
    opacity: 1;
    transform: scale(1.02) translateX(0);
  }

  54%,
  96% {
    opacity: 0;
    transform: scale(1.06) translateX(-22px);
  }

  100% {
    opacity: 1;
    transform: scale(1.02) translateX(0);
  }
}

@keyframes aboutSlideTwo {
  0%,
  46% {
    opacity: 0;
    transform: scale(1.06) translateX(22px);
  }

  54%,
  96% {
    opacity: 1;
    transform: scale(1.02) translateX(0);
  }

  100% {
    opacity: 0;
    transform: scale(1.06) translateX(22px);
  }
}

@keyframes aboutFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-image,
  .about-slide {
    animation: none;
  }

  .about-slide-one {
    opacity: 1;
    transform: none;
  }
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.metric-chip {
  position: relative;
  min-height: 128px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(8, 118, 216, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(231, 247, 255, 0.95)),
    #ffffff;
  box-shadow: 0 14px 34px rgba(8, 118, 216, 0.12);
  animation: metricFloat 5s ease-in-out infinite;
}

.metric-chip:nth-child(2) {
  animation-delay: -0.8s;
}

.metric-chip:nth-child(3) {
  animation-delay: -1.6s;
}

.metric-chip:nth-child(4) {
  animation-delay: -2.4s;
}

.metric-chip::after {
  content: "";
  position: absolute;
  inset: auto -30px -42px auto;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(48, 184, 255, 0.16);
}

.metric-chip strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--blue);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
}

.metric-chip span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 12px;
  color: #38546f;
  font-weight: 800;
  line-height: 1.35;
}

.metric-chip:hover {
  animation-play-state: paused;
  border-color: rgba(8, 118, 216, 0.34);
  box-shadow: 0 22px 48px rgba(8, 118, 216, 0.2);
  transform: translateY(-4px);
}

@keyframes metricFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.product-showcase {
  position: relative;
  margin-top: 28px;
}

.product-controls {
  position: absolute;
  top: 50%;
  left: -24px;
  right: -24px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.product-scroll {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 50%;
  color: var(--white);
  font-size: 38px;
  line-height: 1;
  background: linear-gradient(135deg, rgba(8, 118, 216, 0.96), rgba(48, 184, 255, 0.96));
  box-shadow: 0 18px 38px rgba(8, 118, 216, 0.26);
  cursor: pointer;
  pointer-events: auto;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  backdrop-filter: blur(10px);
}

.product-scroll:hover {
  background: linear-gradient(135deg, #005fb8, #08a8ef);
  box-shadow: 0 22px 44px rgba(8, 118, 216, 0.34);
  transform: scale(1.08);
}

.product-grid {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 4px 28px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--blue) #dbeafe;
  scrollbar-width: thin;
}

.product-card {
  flex: 0 0 clamp(295px, 32vw, 410px);
  scroll-snap-align: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 26, 51, 0.08);
}

.product-card img {
  height: 235px;
  object-fit: cover;
}

.product-card div {
  padding: 24px;
}

.product-card p {
  color: var(--muted);
}

.product-card a {
  color: var(--blue);
  font-weight: 800;
}

.capabilities {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 18%, rgba(139, 220, 255, 0.28), transparent 24%),
    radial-gradient(circle at 86% 82%, rgba(8, 118, 216, 0.16), transparent 24%),
    linear-gradient(135deg, #f8fbff 0%, #eef7ff 52%, #ffffff 100%);
}

.capabilities::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(6, 25, 52, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 25, 52, 0.026) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: radial-gradient(circle at center, transparent 0 28%, #000 65%);
  opacity: 0.42;
}

.capabilities::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(16, 30, 48, 0.11) 0.6px, transparent 0.7px);
  background-size: 4px 4px;
  mix-blend-mode: multiply;
  opacity: 0.16;
}

.capabilities .eyebrow,
.inquiry .eyebrow {
  color: var(--blue);
}

.capability-copy p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
}

.capability-copy h2 {
  max-width: 760px;
}

.capability-copy {
  position: relative;
  z-index: 3;
  max-width: 1240px;
  margin: 0 auto 42px;
}

.capability-panels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.visit-moodboard {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  aspect-ratio: 16 / 9;
  min-height: 0;
  margin: 0 auto;
  border-radius: 8px;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.98) 0 33%, rgba(255, 255, 255, 0.74) 48%, transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(232, 245, 255, 0.26));
}

.visit-photo {
  position: absolute;
  z-index: 1;
  width: var(--w, 150px);
  height: var(--h, 104px);
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 4px;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 18px 34px rgba(22, 47, 75, 0.16);
  filter: saturate(0.98) contrast(1.01);
  transform: rotate(var(--r, 0deg));
  transition: transform 0.32s ease, box-shadow 0.32s ease, filter 0.32s ease;
}

.visit-photo:hover {
  z-index: 5;
  transform: rotate(var(--r, 0deg)) scale(1.055);
  box-shadow: 0 28px 56px rgba(22, 47, 75, 0.24);
  filter: saturate(1.06) contrast(1.04);
}

.visit-photo:nth-of-type(1) { left: 0.5%; top: 4%; --w: 174px; --h: 112px; --r: -3deg; }
.visit-photo:nth-of-type(2) { left: 11%; top: 1%; --w: 136px; --h: 100px; --r: 2deg; z-index: 6; }
.visit-photo:nth-of-type(3) { left: 20%; top: 5%; --w: 166px; --h: 102px; --r: -2deg; }
.visit-photo:nth-of-type(4) { left: 31%; top: 1%; --w: 144px; --h: 98px; --r: 2deg; }
.visit-photo:nth-of-type(5) { left: 42%; top: 4%; --w: 126px; --h: 104px; --r: -2deg; }
.visit-photo:nth-of-type(6) { right: 41%; top: 2%; --w: 150px; --h: 98px; --r: 3deg; }
.visit-photo:nth-of-type(7) { right: 29%; top: 5%; --w: 154px; --h: 100px; --r: -3deg; }
.visit-photo:nth-of-type(8) { right: 18%; top: 1%; --w: 142px; --h: 104px; --r: 2deg; }
.visit-photo:nth-of-type(9) { right: 8%; top: 5%; --w: 148px; --h: 96px; --r: -2deg; }
.visit-photo:nth-of-type(10) { right: 0.5%; top: 2%; --w: 124px; --h: 132px; --r: 3deg; }
.visit-photo:nth-of-type(11) { left: 0%; top: 24%; --w: 150px; --h: 96px; --r: -2deg; }
.visit-photo:nth-of-type(12) { left: 10.5%; top: 26%; --w: 126px; --h: 142px; --r: 3deg; }
.visit-photo:nth-of-type(13) { left: 0.5%; top: 43%; --w: 158px; --h: 100px; --r: 3deg; }
.visit-photo:nth-of-type(14) { left: 12%; top: 50%; --w: 128px; --h: 136px; --r: -3deg; }
.visit-photo:nth-of-type(15) { left: 1.5%; bottom: 22%; --w: 164px; --h: 102px; --r: -2deg; }
.visit-photo:nth-of-type(16) { left: 13.5%; bottom: 23%; --w: 128px; --h: 94px; --r: 3deg; }
.visit-photo:nth-of-type(17) { right: 13.5%; top: 24%; --w: 164px; --h: 100px; --r: 2deg; }
.visit-photo:nth-of-type(18) { right: 1%; top: 27%; --w: 126px; --h: 142px; --r: -2deg; }
.visit-photo:nth-of-type(19) { right: 12%; top: 45%; --w: 150px; --h: 96px; --r: -3deg; }
.visit-photo:nth-of-type(20) { right: 0.5%; top: 48%; --w: 162px; --h: 102px; --r: 3deg; }
.visit-photo:nth-of-type(21) { right: 14%; bottom: 23%; --w: 132px; --h: 96px; --r: -2deg; }
.visit-photo:nth-of-type(22) { right: 1%; bottom: 22%; --w: 132px; --h: 142px; --r: 2deg; }
.visit-photo:nth-of-type(23) { left: 0.5%; bottom: 3%; --w: 150px; --h: 100px; --r: -2deg; }
.visit-photo:nth-of-type(24) { left: 10.5%; bottom: 1%; --w: 160px; --h: 96px; --r: 3deg; }
.visit-photo:nth-of-type(25) { left: 22%; bottom: 4%; --w: 132px; --h: 92px; --r: -2deg; }
.visit-photo:nth-of-type(26) { left: 33%; bottom: 1%; --w: 126px; --h: 102px; --r: 2deg; }
.visit-photo:nth-of-type(27) { left: 44%; bottom: 4%; --w: 118px; --h: 106px; --r: -2deg; z-index: 4; }
.visit-photo:nth-of-type(28) { right: 40%; bottom: 1%; --w: 148px; --h: 96px; --r: 3deg; }
.visit-photo:nth-of-type(29) { right: 29%; bottom: 4%; --w: 122px; --h: 112px; --r: -3deg; }
.visit-photo:nth-of-type(30) { right: 19%; bottom: 1%; --w: 120px; --h: 112px; --r: 2deg; }
.visit-photo:nth-of-type(31) { right: 8%; bottom: 4%; --w: 166px; --h: 96px; --r: -2deg; }
.visit-photo:nth-of-type(32) { right: 0.5%; bottom: 1%; --w: 142px; --h: 104px; --r: 3deg; }

.visit-photo:nth-of-type(4n + 1) {
  z-index: 2;
}

.support-system {
  position: relative;
  z-index: 3;
  width: min(100%, 1240px);
  margin: 0 auto clamp(66px, 7vw, 96px);
  padding: clamp(54px, 7vw, 92px) 0 clamp(50px, 6vw, 78px);
}

.support-system::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -92px;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    radial-gradient(circle at 86% 10%, rgba(48, 184, 255, 0.11), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
  box-shadow:
    inset 0 -1px 0 rgba(8, 118, 216, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.support-heading {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-bottom: 22px;
}

.support-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.18;
}

.support-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.support-card {
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(8, 118, 216, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(7, 26, 51, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.support-card:hover {
  border-color: rgba(8, 118, 216, 0.28);
  transform: translateY(-5px);
  box-shadow: 0 24px 54px rgba(7, 26, 51, 0.16);
}

.support-card img {
  display: block;
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.32s ease;
}

.support-card:hover img {
  transform: scale(1.045);
}

.support-card figcaption {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 164px;
  padding: 18px;
  line-height: 1.42;
}

.support-card figcaption strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.support-card figcaption span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.support-more-link {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.support-more-link::after {
  content: ">";
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: rgba(8, 118, 216, 0.1);
  color: var(--primary);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.support-card:hover .support-more-link::after {
  background: var(--primary);
  color: #fff;
  transform: translateX(3px);
}

.support-detail-main {
  background:
    radial-gradient(circle at 10% 5%, rgba(8, 118, 216, 0.1), transparent 28%),
    linear-gradient(180deg, #f5fbff 0%, #fff 34%, #f7fbff 100%);
}

.support-detail-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 150px 0 58px;
}

.support-detail-hero h1 {
  max-width: 820px;
  margin: 12px 0 20px;
  color: var(--ink);
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
}

.support-detail-hero p:last-child {
  max-width: 960px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.95;
}

.support-detail-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 100px;
}

.support-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(8, 118, 216, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 46px rgba(7, 26, 51, 0.08);
}

.support-detail-card.is-reversed {
  grid-template-columns: minmax(360px, 0.92fr) minmax(0, 1.08fr);
}

.support-detail-card.is-reversed .support-detail-copy {
  order: 2;
}

.support-detail-card.is-reversed .support-detail-media {
  order: 1;
}

.support-detail-copy {
  padding: 8px 4px;
}

.support-detail-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 32px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(8, 118, 216, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
}

.support-detail-copy h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.25;
}

.support-detail-copy p,
.support-detail-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.92;
}

.support-detail-copy p + p {
  margin-top: 14px;
}

.support-detail-media {
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e9f3fa;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.support-detail-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.support-detail-summary {
  margin-top: 32px;
  padding: 26px 30px;
  border-left: 5px solid var(--primary);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(231, 244, 252, 0.88), rgba(255, 255, 255, 0.96));
  box-shadow: 0 16px 38px rgba(7, 26, 51, 0.08);
}

.moodboard-map {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: min(53%, 690px);
  height: 68%;
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(109, 196, 255, 0.28);
  border-radius: 8px;
  transform: translate(-50%, -50%);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(231, 244, 252, 0.68));
  box-shadow: 0 22px 58px rgba(7, 26, 51, 0.16);
  backdrop-filter: blur(10px);
  transition:
    transform 280ms ease,
    box-shadow 280ms ease,
    border-color 280ms ease;
  transform-origin: center;
}

.moodboard-map:hover {
  z-index: 8;
  border-color: rgba(8, 118, 216, 0.32);
  transform: translate(-50%, -50%) scale(1.045);
  box-shadow: 0 30px 72px rgba(7, 26, 51, 0.22);
}

.moodboard-map::before {
  display: none;
}

.moodboard-map .map-copy {
  position: relative;
  z-index: 2;
}

.moodboard-map .map-visual {
  height: calc(100% - 76px);
  min-height: 0;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(247, 252, 255, 0.72), rgba(220, 236, 246, 0.3));
}

.moodboard-map .map-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: 8px;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 1px rgba(8, 118, 216, 0.16),
    inset 0 0 18px rgba(7, 26, 51, 0.06);
}

.coverage-map {
  min-height: 458px;
  padding: 26px;
  border: 1px solid rgba(139, 220, 255, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.coverage-map.moodboard-map {
  min-height: 0;
  padding: 18px;
  border: 1px solid rgba(109, 196, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(231, 244, 252, 0.68));
  box-shadow: 0 22px 58px rgba(7, 26, 51, 0.16);
  backdrop-filter: blur(10px);
}

.map-copy h3 {
  max-width: 520px;
  margin-bottom: 0;
  color: #06152a;
}

.map-eyebrow {
  color: var(--blue);
}

.coverage-stats-title {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 8px 14px;
  font-size: clamp(15px, 1.45vw, 21px);
  line-height: 1.25;
  white-space: nowrap;
}

html[lang="en"] .coverage-stats-title,
html[lang="ru"] .coverage-stats-title {
  gap: 8px 12px;
  font-size: clamp(13px, 1.28vw, 18px);
}

.coverage-stats-title span {
  color: #06152a;
  white-space: nowrap;
}

.coverage-stats-title strong {
  color: #0876d8;
  font-size: 1.42em;
  font-weight: 900;
  letter-spacing: 0;
}

.map-visual {
  position: relative;
  min-height: 352px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(139, 220, 255, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 75% 50%, rgba(139, 220, 255, 0.2), transparent 30%),
    radial-gradient(circle at 50% 44%, rgba(8, 118, 216, 0.16), transparent 36%),
    linear-gradient(135deg, rgba(6, 25, 52, 0.6), rgba(8, 118, 216, 0.18));
}

.real-world-map {
  position: absolute;
  left: -62%;
  top: -12%;
  width: 184%;
  height: 124%;
  object-fit: contain;
  opacity: 0.62;
  filter: invert(43%) sepia(22%) saturate(1020%) hue-rotate(170deg) brightness(92%) contrast(88%);
  mix-blend-mode: multiply;
}

.map-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle, rgba(8, 118, 216, 0.22) 1px, transparent 1.6px),
    linear-gradient(90deg, rgba(8, 118, 216, 0.08) 50%, transparent 50%);
  background-size: 10px 10px, 20px 1px;
  opacity: 0.18;
  mix-blend-mode: screen;
}

.route-map {
  position: absolute;
  left: -62%;
  top: -12%;
  width: 184%;
  height: 124%;
  z-index: 2;
}

.route {
  fill: none;
  stroke: rgba(6, 113, 208, 0.92);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 12 12;
  filter: none;
  animation: routeFlow 2.6s linear infinite;
}

.route-2,
.route-5,
.route-8 {
  animation-delay: -0.9s;
}

.route-3,
.route-6,
.route-9 {
  animation-delay: -1.7s;
}

@keyframes routeFlow {
  to {
    stroke-dashoffset: -44;
  }
}

.map-origin {
  position: absolute;
  left: 76%;
  top: 49%;
  z-index: 9;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 4px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  background: linear-gradient(90deg, #0876d8, #12b7f5);
  box-shadow: 0 10px 22px rgba(8, 118, 216, 0.25);
  transform: translate(-50%, -50%);
}

.map-origin::before {
  display: none;
}

.map-origin::after {
  display: none;
}

.map-pin {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 6px;
  border: 1px solid rgba(8, 118, 216, 0.22);
  border-radius: 999px;
  color: #06497f;
  font-size: 9px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 18px rgba(8, 118, 216, 0.12);
  white-space: nowrap;
}

.map-pin.pin-overseas {
  border-color: rgba(18, 127, 99, 0.24);
  color: #075d50;
}

.map-pin.pin-overseas::before {
  background: #12a37f;
}

.map-pin::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0876d8;
  box-shadow: none;
}

.pin-chuxiong { left: 61%; top: 72%; }
.pin-chaoyang { left: 79%; top: 34%; }
.pin-guangzhou { left: 73%; top: 72%; }
.pin-luoyang { left: 71%; top: 48%; }
.pin-ordos { left: 66%; top: 36%; }
.pin-kunming { left: 66%; top: 68%; }
.pin-dali { left: 58%; top: 75%; }
.pin-weixian { left: 75%; top: 45%; }
.pin-chengdu { left: 61%; top: 61%; }
.pin-urumqi { left: 51%; top: 34%; }
.pin-lanzhou { left: 59%; top: 48%; }
.pin-yinchuan { left: 63%; top: 42%; }
.pin-xian { left: 68%; top: 53%; }
.pin-langfang { left: 76%; top: 39%; }
.pin-india { left: 45%; top: 76%; }
.pin-ethiopia { left: 46%; top: 86%; }
.pin-ukraine { left: 31%; top: 42%; }
.pin-laos { left: 72%; top: 81%; }
.pin-russia { left: 47%; top: 12%; }

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.capability-list div {
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.capability-list span {
  display: block;
  margin-bottom: 28px;
  color: #8bdcff;
  font-weight: 900;
}

.capability-list p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: auto;
  margin-bottom: 0;
}

.history-section {
  overflow: visible;
  background:
    linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.history-showcase {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  max-width: 1180px;
  margin: 28px auto 0;
  align-items: start;
}

.history-years {
  position: sticky;
  top: 132px;
  display: grid;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(8, 118, 216, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 42px rgba(7, 26, 51, 0.08);
  backdrop-filter: blur(14px);
}

.history-years a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 900;
  background: transparent;
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.history-years a::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(8, 118, 216, 0.28);
}

.history-years a:hover,
.history-years a.is-active {
  color: var(--white);
  background: linear-gradient(135deg, #0876d8, #30b8ff);
  transform: translateX(4px);
}

.history-years a:hover::after,
.history-years a.is-active::after {
  background: var(--white);
}

.history-detail-list {
  display: grid;
  gap: 26px;
}

.history-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  min-height: 350px;
  padding: 28px;
  border: 1px solid rgba(8, 118, 216, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(7, 26, 51, 0.1);
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 560ms ease,
    transform 560ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
  scroll-margin-top: 132px;
}

.history-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.history-card:hover {
  border-color: rgba(8, 118, 216, 0.3);
  box-shadow: 0 26px 60px rgba(7, 26, 51, 0.15);
}

.history-card:nth-child(2) {
  transition-delay: 120ms;
}

.history-card:nth-child(3) {
  transition-delay: 240ms;
}

.history-card:nth-child(4) {
  transition-delay: 360ms;
}

.history-card:nth-child(5) {
  transition-delay: 480ms;
}

.history-card:nth-child(6) {
  transition-delay: 600ms;
}

.history-card time {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 34px;
  font-weight: 900;
}

.history-card h3,
.history-card p {
  grid-column: 2;
}

.history-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.timeline-media {
  display: block;
  width: 100%;
  height: 280px;
  margin: 0;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 30px rgba(7, 26, 51, 0.14);
  grid-row: 1 / span 3;
}

.timeline-media.contain {
  object-fit: contain;
  background: #f6fbff;
}

.customer-cases {
  background:
    radial-gradient(circle at 14% 16%, rgba(51, 164, 255, 0.13), transparent 30%),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 72%);
}

.case-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.case-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(13, 96, 174, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(7, 39, 75, 0.1);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.case-card:hover {
  border-color: rgba(28, 135, 230, 0.38);
  box-shadow: 0 24px 52px rgba(7, 39, 75, 0.16);
  transform: translateY(-6px);
}

.case-card img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.case-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 11px;
  padding: 20px 22px 22px;
}

.case-tag {
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(30, 144, 255, 0.1);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-card h3 {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.35;
  min-height: 52px;
}

.case-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  min-height: 76px;
}

.case-more {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
}

.case-more-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  font-size: 13px;
  transition: transform 0.28s ease;
}

.case-more:hover .case-more-icon {
  transform: translate(3px, -3px);
}

.cases-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  padding: 160px clamp(24px, 6vw, 94px) 92px;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(5, 22, 48, 0.94), rgba(8, 118, 216, 0.82)),
    url("assets/cases/domestic/luzhou-xinglong-01.jpg") center / cover;
}

.cases-page-hero h1 {
  max-width: 920px;
  margin-bottom: 22px;
  font-size: clamp(44px, 5.4vw, 78px);
}

.cases-page-hero p:not(.eyebrow) {
  max-width: 830px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.case-quick-links {
  display: grid;
  gap: 12px;
  min-width: 230px;
}

.case-quick-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.case-quick-links a::after {
  content: ">";
  color: #8bdcff;
}

.case-tab-list {
  align-items: stretch;
}

.case-tab {
  gap: 14px;
  transition: transform 0.24s ease, border-color 0.24s ease, background 0.24s ease, box-shadow 0.24s ease;
}

.case-tab.is-active {
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.24);
  box-shadow: 0 18px 38px rgba(3, 27, 54, 0.18);
  transform: translateX(-6px);
}

.case-detail-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px clamp(24px, 6vw, 94px) 108px;
}

.case-detail-panel {
  display: none;
  animation: fadeUp 0.42s ease both;
}

.case-detail-panel.is-active {
  display: block;
}

.case-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
}

.case-report-layout {
  display: block;
  max-width: 1060px;
}

.case-report-layout .case-detail-copy h2 {
  max-width: 1040px;
}

.case-report-layout .case-lead {
  display: none;
}

.case-report-layout .case-facts {
  max-width: 780px;
}

.case-detail-copy h2 {
  margin: 12px 0 18px;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
}

.case-lead {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.case-facts span {
  min-height: 62px;
  padding: 12px 14px;
  border: 1px solid rgba(8, 118, 216, 0.12);
  border-radius: 8px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  background: #eef8ff;
}

.case-detail-hero {
  margin: 0;
}

.case-detail-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 24px 54px rgba(12, 42, 72, 0.18);
}

.case-detail-hero figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.case-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.case-story-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid #d9eaf7;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(20, 72, 114, 0.08);
}

.case-story-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 18px;
}

.case-story-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.case-full-article {
  margin-top: 34px;
  padding: 34px;
  border: 1px solid rgba(8, 118, 216, 0.12);
  border-radius: 10px;
  color: var(--muted);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 251, 255, 0.96));
  box-shadow: 0 18px 45px rgba(20, 72, 114, 0.08);
}

.case-report-article {
  margin-top: 30px;
  padding: clamp(28px, 4vw, 54px);
  overflow: hidden;
}

.case-report-article::after {
  display: block;
  clear: both;
  content: "";
}

.case-report-article h3 {
  display: none;
}

.case-full-article h3 {
  max-width: 920px;
  margin: 0 0 20px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.35;
}

.case-full-article h4 {
  margin: 32px 0 12px;
  color: var(--blue);
  font-size: 20px;
  line-height: 1.45;
}

.case-report-article h4 {
  margin-top: 44px;
  margin-bottom: 16px;
}

.case-full-article p {
  margin: 0 0 16px;
  font-size: 15.5px;
  line-height: 1.95;
}

.case-report-article p {
  margin-bottom: 22px;
  line-height: 2.05;
}

.case-full-article ul {
  margin: 0 0 18px;
  padding-left: 20px;
}

.case-full-article li {
  margin-bottom: 10px;
  font-size: 15.5px;
  line-height: 1.85;
}

.article-image {
  margin: 28px 0 34px;
}

.article-image img {
  display: block;
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 24px 54px rgba(12, 42, 72, 0.16);
}

.article-image figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.article-image-wide img {
  aspect-ratio: 16 / 8.3;
}

.article-image-left,
.article-image-right {
  width: min(42%, 430px);
  margin-top: 6px;
  margin-bottom: 22px;
}

.article-image-left {
  float: left;
  margin-right: 30px;
}

.article-image-right {
  float: right;
  margin-left: 30px;
}

.article-image-left img,
.article-image-right img {
  aspect-ratio: 4 / 3;
}

.case-advantage-strip {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid #d9eaf7;
  border-radius: 12px;
  background:
    radial-gradient(circle at 94% 18%, rgba(48, 184, 255, 0.14), transparent 30%),
    linear-gradient(135deg, #eef8ff 0%, #ffffff 100%);
}

.case-advantage-strip h3 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: 24px;
}

.case-advantage-strip ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-advantage-strip li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.case-advantage-strip li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.case-detail-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.case-detail-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(20, 72, 114, 0.1);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.case-detail-gallery img:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(20, 72, 114, 0.16);
}

.case-section {
  padding: 96px clamp(24px, 6vw, 94px);
  background: var(--white);
}

.case-section-alt {
  background: linear-gradient(180deg, #f6fbff 0%, #ffffff 100%);
}

.case-feature {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: stretch;
  margin-bottom: 34px;
}

.case-feature.reverse {
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
}

.case-feature.reverse img {
  order: 2;
}

.case-feature img,
.case-gallery img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 54px rgba(7, 26, 51, 0.14);
}

.case-feature img {
  height: 430px;
}

.case-feature div {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(26px, 4vw, 52px);
  border: 1px solid rgba(8, 118, 216, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.case-feature span {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  color: #0768c2;
  font-size: 13px;
  font-weight: 900;
  background: rgba(48, 184, 255, 0.13);
}

.case-feature h3 {
  margin: 0;
  font-size: clamp(30px, 3.2vw, 46px);
}

.case-feature p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

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

.case-gallery.large {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.case-gallery img {
  height: 250px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.case-gallery.large img {
  height: 210px;
}

.case-gallery img:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 64px rgba(7, 26, 51, 0.2);
}

.certificates {
  background:
    radial-gradient(circle at 86% 10%, rgba(48, 184, 255, 0.11), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
}

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

.certificate-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
  min-width: 0;
  padding: 12px 12px 18px;
  border: 1px solid rgba(13, 96, 174, 0.14);
  border-radius: 8px;
  color: inherit;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(7, 39, 75, 0.1);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.certificate-card:hover,
.certificate-card:focus-visible {
  border-color: rgba(8, 118, 216, 0.36);
  box-shadow: 0 24px 52px rgba(7, 39, 75, 0.16);
  transform: translateY(-5px);
  outline: none;
}

.certificate-media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: #eef7fc;
  aspect-ratio: 4 / 3;
}

.certificate-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.32s ease, filter 0.32s ease;
}

.certificate-card-crop .certificate-media img {
  object-fit: cover;
}

.certificate-card-type-test .certificate-media img {
  object-position: center;
}

.certificate-card-trademark .certificate-media img {
  object-position: center;
}

.certificate-overlay {
  position: absolute;
  inset: auto 14px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(5, 34, 71, 0.82);
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.certificate-card:hover img,
.certificate-card:focus-visible img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.045);
}

.certificate-card:hover .certificate-overlay,
.certificate-card:focus-visible .certificate-overlay {
  opacity: 1;
  transform: translateY(0);
}

.certificate-title {
  display: grid;
  min-height: 44px;
  place-items: center;
  color: var(--muted);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.certificate-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(4, 18, 38, 0.78);
  backdrop-filter: blur(10px);
}

.certificate-modal.is-open {
  display: flex;
}

.certificate-modal-content {
  display: grid;
  gap: 14px;
  width: min(1120px, 100%);
  margin: 0;
}

.certificate-modal-content img {
  display: block;
  width: 100%;
  max-height: 82vh;
  border-radius: 8px;
  object-fit: contain;
  background: #ffffff;
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.34);
}

.certificate-modal-content figcaption {
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

.certificate-modal-close {
  position: absolute;
  top: 20px;
  right: 22px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.certificate-modal-close:hover,
.certificate-modal-close:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  outline: none;
}

.inquiry {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 5vw, 70px);
  color: var(--white);
  background: linear-gradient(120deg, #06152a 0%, #063c80 55%, #0876d8 100%);
}

.inquiry-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.inquiry-copy ul {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.inquiry-copy li {
  padding-left: 28px;
  background: linear-gradient(#8bdcff, #8bdcff) 0 12px / 12px 2px no-repeat;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  background: var(--white);
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 0;
  color: #a8ecff;
  font-weight: 800;
}

.footer {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1fr);
  column-gap: clamp(46px, 10vw, 140px);
  row-gap: 30px;
  align-items: start;
  padding: 62px clamp(24px, 6vw, 94px) 34px;
  color: #333333;
  border-top: 1px solid rgba(8, 118, 216, 0.08);
  background: var(--white);
}

.footer-brand-block {
  display: grid;
  gap: 34px;
  align-content: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  color: #111111;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  line-height: 1;
}

.footer-brand .brand-logo {
  width: clamp(78px, 8vw, 116px);
  height: clamp(78px, 8vw, 116px);
  object-fit: contain;
  filter: drop-shadow(0 4px 10px rgba(7, 26, 51, 0.1));
}

.footer-brand-block p {
  max-width: 650px;
  margin: 0;
  color: #6d6d6d;
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.75;
}

.footer-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-contact h2 {
  position: relative;
  width: fit-content;
  margin: 0 0 24px;
  color: #333333;
  font-size: clamp(24px, 2.1vw, 32px);
  line-height: 1.1;
}

.footer-contact h2::after {
  content: "";
  display: block;
  width: 66px;
  height: 5px;
  margin-top: 18px;
  background: #1b4d8f;
}

.contact-item {
  position: relative;
  min-width: 0;
  margin: 0;
  padding-left: 46px;
  color: #6d6d6d;
  font-size: clamp(15px, 1.2vw, 19px);
  line-height: 1.7;
}

.contact-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 28px;
  height: 28px;
  background: #8a8a8a;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.contact-address::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M12%202C8.13%202%205%205.13%205%209c0%205.25%207%2013%207%2013s7-7.75%207-13c0-3.87-3.13-7-7-7Zm0%209.5A2.5%202.5%200%201%201%2012%206a2.5%202.5%200%200%201%200%205.5Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M12%202C8.13%202%205%205.13%205%209c0%205.25%207%2013%207%2013s7-7.75%207-13c0-3.87-3.13-7-7-7Zm0%209.5A2.5%202.5%200%201%201%2012%206a2.5%202.5%200%200%201%200%205.5Z'/%3E%3C/svg%3E");
}

.contact-phone::before,
.contact-fax::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M6.62%2010.79a15.05%2015.05%200%200%200%206.59%206.59l2.2-2.2a1%201%200%200%201%201.01-.24c1.12.37%202.33.57%203.58.57a1%201%200%200%201%201%201V20a1%201%200%200%201-1%201C10.61%2021%203%2013.39%203%204a1%201%200%200%201%201-1h3.5a1%201%200%200%201%201%201c0%201.25.2%202.46.57%203.58a1%201%200%200%201-.25%201.01l-2.2%202.2Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M6.62%2010.79a15.05%2015.05%200%200%200%206.59%206.59l2.2-2.2a1%201%200%200%201%201.01-.24c1.12.37%202.33.57%203.58.57a1%201%200%200%201%201%201V20a1%201%200%200%201-1%201C10.61%2021%203%2013.39%203%204a1%201%200%200%201%201-1h3.5a1%201%200%200%201%201%201c0%201.25.2%202.46.57%203.58a1%201%200%200%201-.25%201.01l-2.2%202.2Z'/%3E%3C/svg%3E");
}

.contact-email::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M3%205h18a1%201%200%200%201%201%201v12a1%201%200%200%201-1%201H3a1%201%200%200%201-1-1V6a1%201%200%200%201%201-1Zm9%207.2L4.4%207H4v10h16V7h-.4L12%2012.2ZM6.15%207%2012%2011l5.85-4H6.15Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M3%205h18a1%201%200%200%201%201%201v12a1%201%200%200%201-1%201H3a1%201%200%200%201-1-1V6a1%201%200%200%201%201-1Zm9%207.2L4.4%207H4v10h16V7h-.4L12%2012.2ZM6.15%207%2012%2011l5.85-4H6.15Z'/%3E%3C/svg%3E");
}

.contact-postcode::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1Zm2%204v2h12V7H6Zm0%204v2h12v-2H6Zm0%204v2h8v-2H6Z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20viewBox='0%200%2024%2024'%20xmlns='http://www.w3.org/2000/svg'%3E%3Cpath%20d='M4%203h16a1%201%200%200%201%201%201v16a1%201%200%200%201-1%201H4a1%201%200%200%201-1-1V4a1%201%200%200%201%201-1Zm2%204v2h12V7H6Zm0%204v2h12v-2H6Zm0%204v2h8v-2H6Z'/%3E%3C/svg%3E");
}

.footer-contact a,
.footer-contact span {
  color: #6d6d6d;
  font-weight: 500;
}

.copyright {
  grid-column: 1 / -1;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 980px) {
  .about-metrics,
  .certificate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-body,
  .capabilities,
  .capability-panels,
  .inquiry,
  .cases-page-hero,
  .case-feature,
  .case-feature.reverse,
  .footer {
    grid-template-columns: 1fr;
  }

  .case-feature.reverse img {
    order: 0;
  }

  .capability-copy h2 {
    max-width: 680px;
  }

  .visit-moodboard {
    aspect-ratio: 16 / 9;
  }

  .moodboard-map {
    width: min(55%, 600px);
    height: 68%;
  }

  .visit-photo {
    width: calc(var(--w, 150px) * 0.86);
    height: calc(var(--h, 104px) * 0.86);
  }

  .case-card-grid,
  .case-gallery,
  .case-gallery.large {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-detail-layout,
  .case-story-grid,
  .case-advantage-strip {
    grid-template-columns: 1fr;
  }

  .case-facts,
  .case-advantage-strip ul {
    grid-template-columns: 1fr;
  }

  .case-detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-image-left,
  .article-image-right {
    float: none;
    width: 100%;
    margin: 26px 0 30px;
  }

  .support-card img {
    height: 220px;
  }
}

@media (max-width: 760px) {
  .top-strip {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 102px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    color: var(--ink);
    background: var(--white);
    box-shadow: 0 18px 40px rgba(7, 26, 51, 0.14);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    width: 100%;
    min-height: auto;
  }

  .product-dropdown {
    position: static;
    min-width: 0;
    padding: 0 0 8px 16px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .product-dropdown::before {
    display: none;
  }

  .product-dropdown a {
    padding: 10px 0;
    color: var(--muted);
    white-space: normal;
  }

  .product-dropdown a:hover {
    background: transparent;
  }

  .product-dropdown-grouped {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-menu-title {
    padding: 10px 0 4px;
  }

  .product-menu-soon {
    padding: 8px 0 10px;
    white-space: normal;
  }

  .nav-cta {
    margin-top: 10px;
    text-align: center;
  }

  .language-switcher {
    align-self: flex-start;
    margin-top: 12px;
  }

  .hero {
    min-height: 580px;
  }

  .hero-media {
    background-size: cover;
    background-position: center;
    opacity: 0.72;
  }

  .hero-overlay {
    background: linear-gradient(90deg, rgba(4, 16, 35, 0.9), rgba(7, 72, 137, 0.58));
  }

  .hero-content {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .cases-page-hero {
    padding-top: 128px;
    padding-bottom: 68px;
  }

  .case-quick-links {
    width: 100%;
  }

  .about-image {
    width: min(100%, 460px);
    min-height: 0;
    aspect-ratio: 4 / 5;
    margin: 0 auto;
  }

  .about-slide {
    height: 100%;
  }

  .about-metrics,
  .certificate-grid,
  .capability-list,
  .inquiry-form,
  .footer {
    grid-template-columns: 1fr;
  }

  .visit-moodboard {
    aspect-ratio: 16 / 9;
    margin-top: 16px;
  }

  .moodboard-map {
    width: min(72%, 410px);
    height: 68%;
    min-height: 0;
    padding: 12px;
  }

  .visit-photo {
    width: calc(var(--w, 150px) * 0.66);
    height: calc(var(--h, 104px) * 0.66);
  }

  .footer {
    padding-top: 46px;
  }

  .footer-brand {
    font-size: 28px;
  }

  .footer-brand .brand-logo {
    width: 78px;
    height: 78px;
  }

  .footer-contact h2 {
    font-size: 24px;
  }

  .contact-item {
    padding-left: 38px;
    font-size: 15px;
  }

  .contact-item::before {
    width: 24px;
    height: 24px;
  }

  .history-showcase {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .history-years {
    position: static;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 8px;
    scrollbar-width: none;
  }

  .history-years::-webkit-scrollbar {
    display: none;
  }

  .history-years a {
    flex: 0 0 auto;
    min-height: 40px;
  }

  .history-years a:hover,
  .history-years a.is-active {
    transform: none;
  }

  .history-card {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 20px;
  }

  .history-card h3,
  .history-card p {
    grid-column: auto;
  }

  .timeline-media {
    height: 220px;
    grid-row: auto;
  }

  .coverage-map {
    min-height: auto;
  }

  .map-visual {
    min-height: 285px;
  }

  .map-pin {
    font-size: 9px;
    padding: 3px 5px;
  }

  .product-card img {
    height: 220px;
  }

  .support-system {
    margin-top: 0;
    padding-top: 58px;
    padding-bottom: 46px;
  }

  .support-system::before {
    top: -68px;
  }

  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-card img {
    height: 230px;
  }

  .support-detail-hero {
    width: min(100% - 32px, 760px);
    padding-top: 120px;
    padding-bottom: 36px;
  }

  .support-detail-section {
    width: min(100% - 32px, 760px);
    padding-bottom: 72px;
  }

  .support-detail-card,
  .support-detail-card.is-reversed {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px;
  }

  .support-detail-card.is-reversed .support-detail-copy,
  .support-detail-card.is-reversed .support-detail-media {
    order: initial;
  }

  .support-detail-media,
  .support-detail-media img {
    min-height: 280px;
  }

  .product-showcase {
    margin-top: 22px;
  }

  .product-grid {
    padding-right: 8px;
    padding-left: 8px;
  }

  .case-card-grid {
    grid-template-columns: 1fr;
  }

  .case-card img {
    height: 235px;
  }

  .case-tab.is-active {
    transform: none;
  }

  .case-detail-shell {
    padding-top: 46px;
    padding-bottom: 72px;
  }

  .case-detail-copy h2 {
    font-size: 32px;
  }

  .case-detail-gallery {
    grid-template-columns: 1fr;
  }

  .case-gallery,
  .case-gallery.large {
    grid-template-columns: 1fr;
  }

  .case-feature img,
  .case-gallery img,
  .case-gallery.large img {
    height: 260px;
  }

  .product-controls {
    left: 8px;
    right: 8px;
  }

  .product-scroll {
    width: 44px;
    height: 44px;
    font-size: 30px;
    box-shadow: 0 14px 28px rgba(8, 118, 216, 0.22);
  }

  .capability-list div {
    min-height: auto;
  }

}

@media (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section,
  .capabilities,
  .customer-cases,
  .certificates,
  .case-section,
  .inquiry {
    padding-top: 68px;
    padding-bottom: 68px;
  }
}
