﻿:root {
  --ink: #0f1722;
  --muted: #51606b;
  --line: #d6dde3;
  --paper: #f4f8f7;
  --white: #ffffff;

  --jata-green: #2c8b4f;
  --jata-deep: #175c33;
  --jata-light: #e7f4eb;

  --huadian-blue: #0b4d8b;
  --huadian-deep: #09355f;
  --huadian-light: #e7eff7;

  --bridge-teal: #17797b;
  --bridge-gold: #d0b46b;

  --shadow: 0 22px 60px rgba(15, 23, 34, 0.14);
}

@font-face {
  font-family: 'Cormorant Garamond';
  src: url('./assets/fonts/cormorant-garamond-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* Preloader 鈥?curtain reveal */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
}
.preloader-curtain {
  position: absolute;
  top: 0; bottom: 0;
  width: 50vw;
  background: var(--ink);
  transition: transform 0.9s cubic-bezier(0.83, 0, 0.17, 1);
}
.curtain-left  { left: 0;  }
.curtain-right { right: 0; }
.preloader-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.preloader-logo { width: 160px; }
.preloader-spinner {
  width: 28px; height: 28px;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: var(--jata-green);
  border-radius: 50%;
  animation: preloaderSpin 0.8s linear infinite;
}

#preloader.is-open .curtain-left  { transform: translateX(-100%); }
#preloader.is-open .curtain-right { transform: translateX(100%);  }
#preloader.is-open .preloader-center { opacity: 0; transition: opacity 0.3s ease; }
#preloader.is-done { opacity: 0; transition: opacity 0.3s ease; visibility: hidden; }

@keyframes preloaderSpin {
  to { transform: rotate(360deg); }
}

/* --------------------------------*/
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 4px clamp(22px, 5vw, 76px);
  background: rgba(244, 248, 247, 0.9);
  border-bottom: 1px solid rgba(214, 221, 227, 0.55);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}
.site-header.has-shadow {
  box-shadow: 0 8px 24px rgba(15, 23, 34, 0.08);
  border-bottom-color: rgba(214, 221, 227, 0.95);
}
.brand-group {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}
.jata-logo { height: 44px; }
.huadian-logo { height: 84px; }
.site-nav { display: flex; align-items: center; gap: 30px; color: #28404e; font-size: 15px; }
.site-nav a { padding: 10px 0; border-bottom: 2px solid transparent; font-weight: 700; color: inherit; }
.site-nav a:visited { color: inherit; }
.site-nav a:hover { border-color: var(--jata-green); color: var(--jata-green); }
.site-nav a.is-active { border-color: #8cc99c; color: var(--jata-green); }
.qa-nav {
  position: relative;
}
.qa-nav .qa-short {
  display: inline-block;
}
.qa-nav .qa-full {
  position: absolute;
  left: 50%;
  top: calc(100% + 8px);
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 6px;
  background: rgba(15, 23, 34, 0.95);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
  transform-origin: center top;
  z-index: 5;
}
.qa-nav .qa-full::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -4px;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(15, 23, 34, 0.95);
}
.qa-nav:hover .qa-full,
.qa-nav:focus-visible .qa-full {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); background: var(--white); border-radius: 6px; cursor: pointer; }
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--ink); }

.hero {
  padding: 0 0 clamp(36px, 4vw, 58px);
  color: var(--white);
}
.hero-stage {
  position: relative;
  height: clamp(650px, calc(100vh - 118px), 820px);
  min-height: 650px;
  overflow: hidden;
  background: var(--huadian-deep);
  border-radius: 0;
  box-shadow: 0 24px 60px rgba(15, 23, 34, 0.16);
  margin-top: -1px;
}
.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 27, 44, 0.9), rgba(9, 53, 95, 0.58) 43%, rgba(9, 53, 95, 0.04) 76%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent 28%, transparent 68%, rgba(0, 0, 0, 0.66));
}
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.12) 46%, transparent 58%);
  opacity: 0;
  transform: translateX(-26%);
  transition: opacity 280ms ease, transform 900ms ease;
  pointer-events: none;
}
.hero-stage:hover::after {
  opacity: 1;
  transform: translateX(22%);
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: var(--huadian-deep);
  background-position: center top;
  background-size: cover;
  transition: opacity 260ms ease, transform 900ms ease, filter 900ms ease;
  will-change: transform;
  background-image: url('./assets/slide-1.jpg');
}
.hero-stage:hover .hero-image {
  filter: saturate(1.06) contrast(1.04);
  transform: scale(1.04);
}
.hero-image.is-changing {
  opacity: 0.32;
  transform: scale(1.02);
}
.hero-content {
  position: absolute;
  left: clamp(40px, 5vw, 96px);
  top: clamp(72px, 10vh, 112px);
  z-index: 2;
  width: min(820px, calc(100% - 80px));
  display: grid;
  gap: 0;
}
.hero-manufacturer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 7px 16px 7px 7px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
}
.hero-manufacturer .mfr-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 10px;
  font-weight: 900;
  color: #fff;
}
.hero-manufacturer .jata { background: linear-gradient(135deg, var(--jata-green), #47a96a); }
.hero-manufacturer .huadian { background: linear-gradient(135deg, var(--huadian-blue), #1674c3); }
.eyebrow {
  margin: 0 0 18px;
  color: var(--jata-green);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero .eyebrow { color: #d8eec9; }
.hero-title-main {
  margin-bottom: 8px;
  max-width: 820px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-weight: 800;
  font-size: clamp(38px, 4.6vw, 54px);
  line-height: 1;
  letter-spacing: 0;
  color: #fff;
}
.hero-title-sub {
  display: block;
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: clamp(15px, 1.5vw, 20px);
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.hero-subtitle-cn {
  margin: 0 0 14px;
  max-width: 820px;
  color: rgba(255,255,255,0.88);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 600;
  line-height: 1.35;
}
h2 {
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(28px, 3.8vw, 50px);
  line-height: 1.1;
  letter-spacing: 0;
}
h3 {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}
/* Fixed 3x2 blocks 鈥?position never shifts. Same shape as original metric cards. */
.hero-blocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 820px;
}
.hero-block {
  min-height: 104px;
  padding: 18px 18px 16px;
  background: rgba(4, 17, 27, 0.36);
  border-left: 1px solid rgba(255,255,255,0.18);
  border-radius: 0;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 180ms ease;
}
.hero-block:hover {
  transform: translateY(-4px);
}
.hero-block-label {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.hero-block-text {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}
.hero-block-metric strong {
  display: block;
  margin-bottom: 8px;
  color: #f4faf1;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}
.hero-block-metric span {
  display: block;
  color: rgba(255,255,255,0.74);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.hero-body-text {
  max-width: 780px;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 10px;
}
.hero-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin: 14px 0;
}
.hero-feature {
  padding: 14px 16px;
  background: rgba(4, 17, 27, 0.36);
  border-left: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 72px;
}
.hero-feature-label {
  display: block;
  color: rgba(255,255,255,0.65);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.hero-feature-text {
  display: block;
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}
.hero-cta {
  margin-top: 16px;
}

/* 鈹€鈹€ Slide 2 (Why Choose Us) split layout 鈹€鈹€ */
.hero-subtitle-why {
  margin: 18px 0 24px;
  max-width: 820px;
  color: rgba(255,255,255,0.95);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
}
.hero-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 820px;
  margin-top: 20px;
}
.hero-why-card {
  padding: 18px 16px;
  background: rgba(4, 17, 27, 0.42);
  border-left: 2px solid rgba(44,139,79,0.5);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100px;
  transition: transform 180ms ease;
}
.hero-why-card:hover {
  transform: translateY(-4px);
}
.hero-why-label {
  display: block;
  color: #a3d9b1;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}
.hero-why-text {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}
.hero-cta-why {
  margin-top: 24px;
  margin-bottom: 24px;
}
/* 鈹€鈹€ Slide 3 (Data Center) overrides 鈹€鈹€ */
.hero-content[data-hero-index="3"] .hero-title-main {
  white-space: nowrap;
  font-size: 56px;
  font-weight: 700;
}
.hero-subtitle-dc {
  margin: 0 0 20px;
  color: rgba(255,255,255,0.95);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}
.hero-dc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 600px;
  margin-bottom: 20px;
}
.hero-dc-card {
  min-height: 110px;
  padding: 20px 18px;
  background: rgba(20,35,55,0.65);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: transform 180ms ease;
}
.hero-dc-card:hover {
  transform: translateY(-4px);
}
.hero-dc-label {
  display: block;
  color: #a3d9b1;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.hero-dc-text {
  display: block;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.hero-cta-dc {
  margin-top: 22px;
}
/* 鈹€鈹€ Slide 4 (Multi-Industry) overrides 鈹€鈹€ */
.hero-subtitle-app {
  margin: 24px 0 24px;
  max-width: 780px;
  color: rgba(255,255,255,0.95);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
}
.hero-content[data-hero-index="4"] .hero-body-text {
  font-size: 16px;
  line-height: 1.7;
  max-width: 780px;
  color: rgba(255,255,255,0.78);
  margin: 24px 0;
}
.hero-tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 780px;
  margin-bottom: 18px;
}
.hero-tag {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(20,35,55,0.55);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 24px;
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  font-weight: 600;
  transition: all 180ms ease;
}
.hero-tag:hover {
  background: rgba(100,160,220,0.25);
  border-color: rgba(100,160,220,0.5);
  color: #b8d4f0;
  transform: translateY(-2px);
}
.hero-emphasis {
  max-width: 780px;
  color: #ffffff;
  font-size: 16px;
  font-style: italic;
  margin: 0 0 20px;
  line-height: 1.7;
}
.hero-cta-app {
  margin-top: 4px;
}
/* 鈹€鈹€ Slide 1 (Technology Heritage) overrides 鈹€鈹€ */
.hero-content[data-hero-index="1"] {
  line-height: 1.5;
}
.hero-content[data-hero-index="1"] .hero-title-sub {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 12px;
}
/* Dark overlay for slide 1 background */
.hero-stage.slide-overlay::before {
  z-index: 1;
}
.hero-stage.slide-overlay .hero-image {
  filter: brightness(0.8);
}
.hero-stage.slide-overlay .hero-content {
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.hero-subtitle-tech {
  margin: 12px 0 16px;
  max-width: 900px;
  color: rgba(255,255,255,0.90);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.6;
  white-space: nowrap;
}
.hero-tech-badge {
  display: inline-block;
  margin: 4px 0 14px;
  padding: 6px 14px;
  border: 1px solid rgba(44,139,79,0.6);
  border-radius: 4px;
  color: #a3d9b1;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero-content[data-hero-index="1"] .hero-body-text {
  font-size: 18px;
  line-height: 1.8;
  max-width: 860px;
  color: #ffffff;
  margin: 0 0 12px;
  white-space: nowrap;
}
.hero-features-tech {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 720px;
  margin: 16px 0;
}
.hero-feature-tech {
  padding: 22px 20px;
  background: rgba(4, 17, 27, 0.40);
  border-left: 2px solid rgba(44,139,79,0.5);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100px;
  transition: transform 180ms ease;
}
.hero-feature-tech:hover {
  transform: translateY(-4px);
}
.hero-feature-tech .hero-feature-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #a3d9b1;
  margin-bottom: 8px;
}
.hero-feature-tech .hero-feature-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.85);
}
.hero-cta-tech {
  margin-top: 32px;
}
.hero-partner-line {
  margin: 8px 0 12px;
  max-width: 820px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
}
.btn.primary { background: linear-gradient(135deg, var(--jata-green), #4aa468); color: var(--white); }
.btn.primary:hover { background: linear-gradient(135deg, #258047, #3d965e); }
.btn.secondary { border-color: rgba(255,255,255,0.62); color: var(--white); }
.btn.secondary:hover { background: rgba(255,255,255,0.07); }

.hero-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  background: transparent;
  border: 0;
}
.hero-tabs-overlay {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  bottom: 0;
  z-index: 3;
  overflow: hidden;
  background: rgba(4, 17, 27, 0.34);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
}
.hero-tab {
  position: relative;
  min-height: 76px;
  padding: 14px clamp(14px, 1.4vw, 22px) 12px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,0.16);
  background: transparent;
  color: var(--white);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}
.hero-tab:last-child { border-right: 0; }
.hero-tab::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: transparent;
}
.hero-tab span {
  display: block;
  margin-top: 6px;
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: 0;
}
.hero-tab strong {
  display: block;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  line-height: 1.18;
  font-weight: 800;
}
.hero-tab:hover,
.hero-tab.is-active {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.035));
}
.hero-tab.is-active::before { background: #d8dde3; }
.hero-tab.is-active strong { color: #dff7d4; }
.hero-tab.is-active span { color: rgba(255,255,255,0.76); }

.section { padding: 0; }
.module-shell {
  padding: clamp(64px, 7.5vw, 104px) clamp(20px, 5vw, 72px);
}
.module-shell--light {
  background: #eef3f6;
  color: var(--ink);
}
.module-shell--dark {
  background: linear-gradient(135deg, #10324d 0%, #0d4e7f 55%, #0b5f95 100%);
  color: var(--white);
}
.module-shell .section-heading h2 {
  font-size: clamp(32px, 3.2vw, 44px);
  line-height: 1.08;
  max-width: 14ch;
}
.module-shell .eyebrow {
  margin-bottom: 14px;
}
.module-shell--light .section-heading h2,
.module-shell--light p,
.module-shell--light li,
.module-shell--light span {
  color: var(--ink);
}
.module-shell--light .section-note,
.module-shell--light .tech-lead,
.module-shell--light .qa-lead,
.module-shell--light .contact-section p,
.module-shell--light .video-caption-text,
.module-shell--light .application-card p,
.module-shell--light .application-card li,
.module-shell--light .lineage-band p,
.module-shell--light .lineage-points span {
  color: var(--muted);
}
.module-shell--light .eyebrow {
  color: var(--jata-green);
}
.qa-section--alt,
.qa-section.qa-section--alt {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #10324d 0%, #0d4e7f 55%, #0b5f95 100%) !important;
  color: var(--white) !important;
}
.qa-section--alt .qa-copy,
.qa-section--alt .qa-visual,
.qa-section.qa-section--alt .qa-copy,
.qa-section.qa-section--alt .qa-visual {
  background: transparent !important;
  border: 0 !important;
}
.qa-section--alt .section-heading h2,
.qa-section.qa-section--alt .section-heading h2 {
  color: var(--white) !important;
}
.qa-section--alt .qa-lead,
.qa-section--alt .qa-body,
.qa-section--alt .qa-lines,
.qa-section--alt .qa-line-body,
.qa-section.qa-section--alt .qa-lead,
.qa-section.qa-section--alt .qa-body,
.qa-section.qa-section--alt .qa-lines,
.qa-section.qa-section--alt .qa-line-body {
  color: rgba(255,255,255,0.84) !important;
}
.qa-section--alt .qa-line,
.qa-section.qa-section--alt .qa-line {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.12) !important;
  color: rgba(255,255,255,0.92) !important;
}
.qa-section--alt .qa-line:nth-child(odd),
.qa-section--alt .qa-line:nth-child(even),
.qa-section.qa-section--alt .qa-line:nth-child(odd),
.qa-section.qa-section--alt .qa-line:nth-child(even) {
  background: rgba(255,255,255,0.08) !important;
}
.qa-section--alt .qa-line-title,
.qa-section.qa-section--alt .qa-line-title {
  color: rgba(255,255,255,0.96) !important;
}
.qa-section--alt .qa-summary,
.qa-section.qa-section--alt .qa-summary {
  background: rgba(255,255,255,0.08) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  color: rgba(255,255,255,0.92) !important;
}
.qa-section--alt .qa-visual,
.qa-section.qa-section--alt .qa-visual {
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
}
.qa-section--alt .qa-visual img,
.qa-section.qa-section--alt .qa-visual img {
  object-fit: contain !important;
}
.qa-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
  flex: 1;
}
.qa-detail-left {
  display: flex;
  flex-direction: column;
}
.qa-detail-row .qa-visual {
  height: 100%;
}
.qa-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 8px;
}
.qa-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 9px;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(16,50,77,0.08);
}
.qa-item span {
  color: var(--jata-green);
  font-weight: 800;
  font-size: 10px;
  line-height: 1;
  margin-top: 2px;
}
.qa-item p {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
}
.module-shell--dark .eyebrow {
  color: #d7f0ea;
}
.module-shell--dark .section-heading h2,
.module-shell--dark .section-heading p,
.module-shell--dark .section-heading span {
  color: var(--white);
}
.split { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: clamp(30px, 6vw, 88px); align-items: start; }
.section-heading { max-width: 1100px; }
.section-heading.row { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
.section-note {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.split-media {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.split-media-copy {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.text-link { color: var(--jata-green); font-weight: 800; border-bottom: 2px solid currentColor; }
#services.split-media {
  display: block;
}
.services-section .services-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}
.service-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: start;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-self: stretch;
}
#services .services-heading {
  margin-bottom: 28px;
}
#services .services-heading h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(28px, 2vw, 40px);
  line-height: 1.02;
  letter-spacing: 0;
}
.service-card {
  min-height: 258px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(15, 23, 34, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 34, 0.12);
}
.service-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  box-shadow: 0 18px 40px rgba(15, 23, 34, 0.12);
  transition: transform 180ms ease, filter 180ms ease;
  cursor: pointer;
  border-bottom: 1px solid rgba(214, 221, 227, 0.65);
}
.service-card-media {
  cursor: zoom-in;
}
.service-card-media img:focus-visible {
  outline: 3px solid rgba(11, 77, 139, 0.45);
  outline-offset: -3px;
}
.service-card img:hover {
  transform: translateY(-4px);
  filter: saturate(1.03) contrast(1.02);
}
.service-card-body {
  padding: 22px 24px 24px;
  display: grid;
  gap: 10px;
  height: 100%;
  align-content: start;
}
.service-card-body span {
  color: var(--bridge-teal);
  font-weight: 900;
  font-size: 22px;
}
.service-card-body h3 {
  margin-bottom: 0;
}
.service-card-body p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}
.service-card-media .service-card-body {
  padding: 18px 18px 20px;
}
.service-card-media .service-card-body h3 {
  font-size: 14px;
  line-height: 1.35;
  text-align: center;
}

.proof-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.proof-list li {
  color: rgba(255,255,255,0.82);
  font-size: 18px;
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.proof-list li::before {
  content: '鈥?;
  position: absolute;
  left: 0;
  color: var(--bridge-teal);
  font-weight: 700;
}
.factory-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
}
.factory-gallery .gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.factory-gallery .gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform 180ms ease;
  cursor: pointer;
}
.factory-gallery .gallery-item img:hover {
  transform: scale(1.03);
}
.factory-gallery .gallery-item span {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
.factory-gallery .gallery-cert {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.factory-gallery .gallery-cert img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: rgba(255,255,255,0.05);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.12);
}
.factory-gallery .gallery-cert span {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.cert-row, .cert-row img { display: none; }
.audience-band {
  background: linear-gradient(180deg, rgba(11,77,139,0.04), rgba(44,139,79,0.04));
}
.application-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  margin-top: 28px;
}
.application-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 12px 32px rgba(15, 23, 34, 0.05);
}
.application-featured {
  border-color: rgba(44,139,79,0.24);
  box-shadow: 0 18px 40px rgba(15, 23, 34, 0.08);
}
.application-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  background: var(--jata-light);
  color: var(--jata-deep);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.application-card p,
.application-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.application-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}
.lineage-band {
  gap: clamp(24px, 4vw, 48px);
  align-items: stretch;
  padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, #0e1f31, #123d5f 52%, #0d5b99);
  color: var(--white);
}
.lineage-band p { color: rgba(255,255,255,0.82); font-size: 18px; line-height: 1.7; }
.lineage-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.lineage-points div,
.lineage-metric {
  padding: 18px 18px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.035));
  border-radius: 8px;
}
.lineage-points strong,
.lineage-metric strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}
.lineage-points span,
.lineage-metric span {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.6;
}
.lineage-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}
.company-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(231, 244, 235, 0.85), rgba(231, 239, 247, 0.9));
}
.company-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 48px);
}
.company-bar-item:first-child { border-right: 1px solid var(--line); }
.company-bar-dot {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
}
.company-bar-dot.jata { background: linear-gradient(135deg, var(--jata-light), #d4ecd9); color: var(--jata-deep); }
.company-bar-dot.huadian { background: linear-gradient(135deg, var(--huadian-light), #d8e6f3); color: var(--huadian-deep); }
.company-bar-item strong { display: block; font-size: 15px; margin-bottom: 2px; }
.company-bar-item span { font-size: 12px; color: var(--muted); }

.feature-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.6fr) minmax(500px, 1.4fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(58px, 8vw, 104px) clamp(24px, 6vw, 96px);
  background: linear-gradient(135deg, var(--huadian-deep), #0d5b99 54%, #11496f);
  color: var(--white);
}
.feature-band .eyebrow { color: #d8eec9; }
.feature-band p { color: rgba(255,255,255,0.82); font-size: 20px; max-width: 480px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0; }
.stats div { padding: 24px; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.035)); }
.stats dt { font-size: clamp(34px, 4vw, 54px); font-weight: 900; color: #d8eec9; }
.stats dd { margin: 0; color: rgba(255,255,255,0.8); }

/* 鈹€鈹€ Company & Capability 鈥?Video + Caption 鈹€鈹€ */
.video-row {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 12px;
}
.video-caption {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: 0 12px 34px rgba(15, 23, 34, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.video-hero {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  min-height: 320px;
}
.video-hero video { display: block; width: 100%; height: 100%; object-fit: cover; }
.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: opacity 200ms ease;
}
.video-play-btn::before {
  content: '\25B6';
  font-size: 64px;
  color: rgba(255,255,255,0.9);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.video-hero.playing .video-play-btn,
.company-video-wrap.playing .video-play-btn { opacity: 0; pointer-events: none; }
.video-caption h3 { font-size: 20px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.video-caption-text { font-size: 15px; color: var(--muted); line-height: 1.6; }

.news-band { padding: clamp(58px, 8vw, 92px) clamp(20px, 5vw, 72px); background: var(--white); border-block: 1px solid var(--line); }
.news-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.news-list a { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 24px 0; border-bottom: 1px solid var(--line); font-size: clamp(18px, 2vw, 24px); font-weight: 800; }
.news-list time { color: var(--jata-green); }

.contact-section { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 72px); padding: clamp(58px, 8vw, 104px) clamp(20px, 5vw, 72px); align-items: start; }
.contact-section p { color: var(--muted); }
.contact-lead { font-size: 16px; line-height: 1.6; margin-bottom: 20px; }
.contact-process { margin: 20px 0; padding: 20px; background: var(--jata-light); border-radius: 6px; border-left: 3px solid var(--jata-green); }
.contact-process h4 { margin: 0 0 8px; font-size: 14px; font-weight: 700; color: var(--ink); }
.contact-process p { font-size: 13px; color: var(--muted); margin: 0 0 8px; }
.contact-process ul { margin: 8px 0; padding-left: 18px; font-size: 13px; color: var(--muted); line-height: 1.7; }
.contact-trust { font-size: 12px; color: var(--muted); font-style: italic; margin: 16px 0; }
.contact-addresses { display: grid; gap: 12px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.contact-addresses strong { display: block; font-size: 13px; color: var(--ink); margin-bottom: 4px; }
.contact-addresses span { font-size: 12px; color: var(--muted); line-height: 1.5; }
.contact-form { display: grid; gap: 14px; padding: 28px; background: var(--white); border: 1px solid var(--line); border-radius: 8px; box-shadow: var(--shadow); }
.form-title { margin: 0 0 4px; font-size: 18px; font-weight: 700; color: var(--ink); }
label { display: flex; flex-direction: column; gap: 6px; color: #314139; font-weight: 700; font-size: 13px; }
label > span { white-space: nowrap; }
.req { color: #c0392b; display: inline; }
input, textarea, select { width: 100%; border: 1px solid var(--line); border-radius: 6px; padding: 11px 13px; font: inherit; font-size: 14px; color: var(--ink); background: #fbfcfa; box-sizing: border-box; }
textarea { resize: vertical; }
select { appearance: auto; }
.form-fieldset { border: 1px solid var(--line); border-radius: 6px; padding: 14px; margin: 0; display: grid; gap: 12px; }
.form-fieldset legend { font-size: 12px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; padding: 0 6px; }
.contact-form .btn { width: 100%; border: 0; margin-top: 4px; }
.form-micro-text { font-size: 10px; color: var(--muted); text-align: center; margin: 0; }
.footer-logos { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.footer-logos .jata-logo { height: 36px; }
.footer-logos .huadian-logo { height: 60px; }

.site-footer {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, var(--huadian-deep), #0a2a4f);
  color: var(--white);
}
.site-footer p { margin: 8px 0 0; color: rgba(255,255,255,0.68); font-size: 14px; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.footer-links { display: flex; gap: 20px; color: rgba(255,255,255,0.8); font-size: 14px; }

@media (max-width: 920px) {
  .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 14px; }
  .nav-toggle { display: block; }
  .hero-stage {
    height: auto;
    min-height: 740px;
  }
  .hero-content {
    position: relative;
    left: auto;
    top: auto;
    width: auto;
    padding: clamp(86px, 12vw, 120px) 34px 188px;
  }
  .hero-title-sub {
    white-space: normal;
    letter-spacing: 0.06em;
  }
  .hero-tabs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: hidden;
    scrollbar-width: none;
  }
  .hero-tabs::-webkit-scrollbar {
    display: none;
  }
  .hero-tabs-overlay {
    left: 0;
    right: 0;
    width: 100%;
    bottom: 0;
  }
  .hero-tab {
    min-width: 0;
    min-height: 96px;
    border-right: 1px solid rgba(255,255,255,0.14);
    border-bottom: 0;
  }
  .split, .feature-band, .contact-section, .audience-band, .lineage-band, .split-media { grid-template-columns: 1fr; }
  .company-bar { grid-template-columns: 1fr; }
  .company-bar-item:first-child { border-right: 0; border-bottom: 1px solid var(--line); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .application-grid, .lineage-points, .services-section .services-layout, .service-grid, .service-column { grid-template-columns: 1fr; }
  .service-card img { aspect-ratio: 16 / 10; }
  .insight-grid { grid-template-columns: 1fr; }
  .insight-card.featured { grid-row: auto; }
  .insight-card.featured img { height: 280px; }
}

@media (max-width: 620px) {
  .site-header { padding: 6px 18px; }
  .jata-logo { height: 34px; }
  .huadian-logo { height: 40px; }
  h1 { font-size: 40px; line-height: 1.02; }
  h2 { font-size: 32px; }
  .hero { padding: 0 0 36px; }
  .hero-stage {
    min-height: 780px;
  }
  .hero-content {
    padding: 86px 22px 174px;
  }
  .hero-copy { font-size: 15px; }
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-business-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .hero-blocks {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .hero-block {
    min-height: 0;
  }
  .hero-block-text {
    white-space: normal;
  }
  .metric-card {
    min-height: 88px;
    padding: 16px 16px 14px;
  }
  .metric-card strong {
    font-size: 22px;
  }
  .metric-card span {
    font-size: 10px;
  }
  .hero-tabs { margin: 0; }
  .hero-tabs-overlay {
    left: 0;
    right: 0;
    width: 100%;
    bottom: 0;
  }
  .hero-tab {
    min-height: 64px;
    padding: 10px 6px 9px;
  }
  .hero-tab strong {
    font-size: 10px;
  }
  .hero-tab span {
    margin-top: 4px;
    display: none;
  }
  .hero-actions .btn { width: 100%; }
  #services .services-heading h2,
  .product-app-section .section-heading h2 {
    white-space: normal;
  }
  .services-section .services-layout, .service-grid, .service-column { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .section-heading.row { display: block; }
  .section-note { max-width: none; margin-top: 12px; }
  .news-list a { grid-template-columns: 1fr; gap: 8px; }
  .contact-form { padding: 20px; }
  .site-footer { display: grid; }
  .footer-links { flex-wrap: wrap; }
  .application-card { padding: 20px; }
  .lineage-band { padding-left: 16px; padding-right: 16px; }
  .split-media { gap: 22px; }
}

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: rgba(15,23,34,0.92);
  color: rgba(255,255,255,0.78);
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
  z-index: 9999;
  opacity: 0;
  transition: all 300ms ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.toast.toast-error { background: #b5302a; }
.toast.toast-show { opacity: 1; transform: translateX(-50%) translateY(0); }

input::placeholder, textarea::placeholder { color: #c0c8d0; }
.tech-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(12px, 1.5vw, 18px);
  align-items: start;
  padding: clamp(58px, 7vw, 96px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, #10324d 0%, #0d4e7f 55%, #0b5f95 100%);
  color: var(--white);
}
.tech-copy {
  min-width: 0;
}
.tech-section .section-heading {
  margin-bottom: 12px;
}
.tech-section .section-heading h2 {
  max-width: none;
  color: #fff;
  font-size: clamp(30px, 3.0vw, 40px);
  line-height: 1.08;
}
.tech-lead {
  max-width: none;
  color: rgba(255,255,255,0.84);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 4px;
}
.tech-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(10px, 1.2vw, 14px);
  align-items: stretch;
  width: 100%;
  min-height: clamp(320px, 36vw, 460px);
}
.tech-feature-panel {
  max-width: none;
  padding: 12px 12px 12px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  height: 100%;
}
.tech-feature-head {
  margin-bottom: 10px;
}
.tech-feature-head span {
  display: block;
  color: #9ee0e8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tech-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  height: 100%;
}
.tech-feature-card {
  padding: 11px 12px 10px;
  border-radius: 8px;
  background: rgba(7, 34, 55, 0.28);
  border: 1px solid rgba(255,255,255,0.1);
  min-height: clamp(56px, 5.2vw, 72px);
}
.tech-feature-card span {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.tech-feature-card p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  line-height: 1.42;
}
.tech-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 6px;
  min-height: 0;
  height: auto;
  align-self: stretch;
  min-height: clamp(320px, 36vw, 460px);
}
.tech-visual {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 5px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  min-height: 0;
  overflow: hidden;
  height: auto;
}
.tech-visual img {
  width: 100%;
  height: clamp(118px, 9vw, 156px);
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
}
.tech-visual:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 22px 56px rgba(0,0,0,0.22);
}
.tech-visual-auth img {
  height: clamp(118px, 9vw, 156px);
  object-fit: contain;
  background: rgba(255,255,255,0.03);
}
.tech-visual-cell img {
  object-fit: cover;
  object-position: center top;
}
.tech-visual-chart img,
.tech-visual-sem img {
  object-fit: cover;
}
.tech-visual figcaption {
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}
@media (max-width: 980px) {
  .tech-section {
    grid-template-columns: 1fr;
  }
  .tech-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }
  .tech-visuals {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, minmax(160px, 1fr));
    min-height: 0;
    height: auto;
  }
  .tech-visual img {
    max-height: 180px;
  }
}

.qa-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(14px, 1.6vw, 20px);
  align-items: stretch;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
  color: var(--text);
}
.qa-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  justify-content: flex-start;
  padding-top: clamp(8px, 1vw, 18px);
  height: 100%;
}
.qa-section .section-heading {
  margin-bottom: 16px;
}
.qa-section .section-heading h2 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(30px, 3.1vw, 42px);
  line-height: 1.06;
  margin-bottom: 0;
}
.qa-lead {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.qa-body {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.qa-summary {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  padding: 10px 12px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(16,50,77,0.08);
  border-radius: 8px;
}
.qa-lines {
  display: grid;
  gap: 8px;
  flex: 1;
}
.qa-line {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 60px;
  border-radius: 8px;
  overflow: hidden;
}
.qa-line:nth-child(odd) {
  background: rgba(255,255,255,0.92);
}
.qa-line:nth-child(even) {
  background: #fff;
}
.qa-line-title,
.qa-line-body {
  display: flex;
  align-items: center;
  padding: 14px 18px;
}
.qa-line-title {
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
}
.qa-line-title span {
  color: var(--jata-green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  flex: 0 0 auto;
}
.qa-line-body {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}
.qa-visual {
  margin: 0;
  height: 100%;
  min-height: 0;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(15, 23, 34, 0.06);
  overflow: hidden;
  margin-top: 0;
}
.qa-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
}
@media (max-width: 980px) {
  .qa-section {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .qa-line {
    grid-template-columns: 1fr;
  }
  .qa-line-title,
  .qa-line-body {
    padding: 11px 14px;
  }
  .qa-line-body {
    padding-top: 0;
  }
  .qa-visual {
    min-height: 280px;
    margin-top: 0;
  }
}

.tech-section {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2.2vw, 24px);
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, #10324d 0%, #0d4e7f 55%, #0b5f95 100%);
  color: var(--white);
}
.tech-copy {
  width: 100%;
}
.tech-section .section-heading {
  margin-bottom: 12px;
  max-width: 100%;
}
.tech-section .section-heading h2 {
  max-width: none;
  color: #fff;
  font-size: clamp(30px, 3.0vw, 40px);
  line-height: 1.08;
}
.tech-lead {
  max-width: 100%;
  color: rgba(255,255,255,0.84);
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 4px;
}
.tech-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(12px, 1.5vw, 18px);
  align-items: stretch;
  width: 100%;
  min-height: clamp(340px, 38vw, 460px);
}
.tech-feature-panel {
  max-width: none;
  padding: 14px 14px 14px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tech-feature-head {
  margin-bottom: 10px;
}
.tech-feature-head span {
  display: block;
  color: #9ee0e8;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tech-feature-head strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 17px;
  font-weight: 800;
}
.tech-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  grid-template-rows: repeat(4, minmax(0, 1fr));
  flex: 1;
  min-height: 0;
}
.tech-feature-card {
  padding: 9px 11px 9px;
  border-radius: 8px;
  background: rgba(7, 34, 55, 0.28);
  border: 1px solid rgba(255,255,255,0.1);
  min-height: 0;
}
.tech-feature-card span {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.tech-feature-card p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  line-height: 1.36;
}
.proof-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
}
.proof-list li {
  color: rgba(255,255,255,0.88);
  font-size: 17px;
  line-height: 1.55;
  padding-left: 20px;
  position: relative;
}
.proof-list li::before {
  content: "鈥?;
  position: absolute;
  left: 0;
  color: #8fd9e6;
  font-weight: 700;
}
.tech-visuals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 5px;
  min-height: 100%;
  height: 100%;
  align-self: stretch;
}
.tech-visual {
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 4px;
  padding: 4px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.035));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(0,0,0,0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  min-height: 0;
  overflow: hidden;
  height: 100%;
}
.tech-visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
}
.tech-visual figcaption {
  flex-shrink: 0;
}
.tech-visual:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.07);
  box-shadow: 0 22px 56px rgba(0,0,0,0.22);
}
.tech-visual-auth img {
  height: 100%;
  object-fit: contain;
  background: rgba(255,255,255,0.03);
}
.tech-visual-cell img {
  object-fit: cover;
  object-position: center top;
}
.tech-visual-chart img,
.tech-visual-sem img {
  object-fit: cover;
}
.tech-visual figcaption {
  color: rgba(255,255,255,0.88);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}
@media (max-width: 980px) {
  .tech-body {
    grid-template-columns: 1fr;
    min-height: 0;
  }
.tech-visuals {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(2, minmax(180px, 1fr));
    min-height: 0;
    height: auto;
  }
  .tech-visual img {
    max-height: 180px;
  }
}

/* Final module overrides: normalize the post-hero rhythm */
.module-shell--light {
  background: #eef3f6 !important;
}
.module-shell--dark {
  background: linear-gradient(135deg, #10324d 0%, #0d4e7f 55%, #0b5f95 100%) !important;
}
.qa-section.qa-section--alt {
  background: linear-gradient(135deg, #10324d 0%, #0d4e7f 55%, #0b5f95 100%) !important;
}
.qa-section.qa-section--alt .qa-copy,
.qa-section.qa-section--alt .qa-visual {
  background: transparent;
}
.tech-section {
  gap: clamp(14px, 1.8vw, 20px) !important;
}
.tech-body {
  min-height: clamp(348px, 38vw, 472px) !important;
  gap: clamp(13px, 1.35vw, 17px) !important;
}
.tech-feature-panel {
  padding: 13px !important;
}
.tech-feature-grid {
  gap: 10px !important;
}
.tech-feature-card {
  min-height: 0 !important;
  padding: 13px 14px !important;
}
.tech-feature-card span {
  font-size: 14px !important;
  margin-bottom: 6px !important;
}
.tech-feature-card p {
  font-size: 13px !important;
  line-height: 1.48 !important;
}
.tech-visuals {
  min-height: 100% !important;
  gap: 8px !important;
}
.tech-visual {
  padding: 7px !important;
}
.tech-visual img {
  height: clamp(126px, 9.3vw, 160px) !important;
}
.tech-visual-auth img {
  height: clamp(126px, 9.3vw, 160px) !important;
}
.tech-visual figcaption {
  font-size: 13px !important;
}
.tech-section .section-heading h2,
.qa-section .section-heading h2 {
  max-width: 100% !important;
}

.product-app-section {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.3vw, 16px);
  padding: clamp(34px, 4.2vw, 56px) clamp(16px, 3.5vw, 44px);
}
.product-app-section .section-heading h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(24px, 1.7vw, 30px);
}
.product-app-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.36fr) minmax(0, 1fr);
  gap: clamp(12px, 1.3vw, 16px);
  align-items: stretch;
  height: clamp(500px, 56vw, 590px);
  min-height: 0;
}
.product-app-nav {
  display: grid;
  gap: 7px;
  height: 100%;
  grid-template-rows: repeat(8, minmax(0, 1fr));
}
.product-app-item {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 4px 14px 16px;
  border: 0;
  border-bottom: 1px solid rgba(16,50,77,0.08);
  border-radius: 0;
  background: transparent;
  color: #51606b;
  text-align: left;
  cursor: pointer;
  min-height: 0;
  height: 100%;
  transition: color 150ms ease, padding-left 200ms ease;
}
.product-app-item:last-child {
  border-bottom: 0;
}
.product-app-item span {
  display: none;
}
.product-app-item strong {
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
  color: inherit;
}
.product-app-item:hover {
  background: transparent;
  color: #0f1722;
}
.product-app-item.is-active {
  background: transparent;
  color: #0f1722;
  font-weight: 700;
  padding-left: 12px;
  border-left: 3px solid #2c8b4f;
  box-shadow: none;
}
.product-learn-link {
  display: block;
  text-align: right;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #2c8b4f;
  text-decoration: none;
  margin-bottom: 4px;
}
.product-learn-link:hover { text-decoration: underline; }
.product-app-stage {
  min-width: 0;
  height: 100%;
  overflow: hidden;
}
.product-app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(224px, 1fr) minmax(158px, 0.82fr);
  gap: 10px;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}
.product-app-card {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(16,50,77,0.08);
  border-radius: 8px;
  padding: 11px;
  box-shadow: 0 10px 26px rgba(16,50,77,0.06);
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.product-app-image {
  grid-row: span 1;
}
.product-app-tags,
.product-app-features {
  min-height: 0;
}
.product-app-params {
  position: relative;
}
.card-zoom-btn {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(16,50,77,0.18);
  border-radius: 999px;
  background: rgba(16,50,77,0.06);
  color: #10324d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: 0 0 auto;
  position: relative;
}
.card-zoom-icon {
  width: 15px;
  height: 15px;
  display: block;
}
.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.card-head h3 {
  margin: 0;
}
.product-app-card h3 {
  margin: 0 0 8px;
  color: #10324d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  flex: 0 0 auto;
}
.product-app-tags h3,
.product-app-features h3,
.product-app-params h3 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0f1722;
  font-size: 14px;
  font-weight: 800;
}
.product-app-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  cursor: pointer;
  flex: 1 1 auto;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1 1 auto;
  align-content: flex-start;
  overflow: hidden;
  max-height: 100%;
}
.tag-cloud--inline {
  gap: 10px;
}
.tag-cloud .tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(44,139,79,0.08);
  color: #10324d;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  transition: transform 150ms ease, background 150ms ease;
  cursor: default;
}
.tag-cloud .tag:hover {
  transform: scale(1.08);
  background: rgba(44,139,79,0.16);
}
.param-table-wrap {
  overflow: auto;
  flex: 1 1 auto;
  max-height: 100%;
}
.param-notes {
  display: grid;
  gap: 8px;
  flex: 1 1 auto;
  min-height: 0;
}
.param-note-box {
  padding: 12px 14px;
  border-radius: 8px;
  background: #f6f9fc;
  border: 1px solid rgba(16,50,77,0.08);
  border-left: 3px solid #2c8b4f;
  color: #10324d;
}
.param-note-box strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 700;
  color: #10324d;
}
.param-note-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #51606b;
}
.param-table {
  width: 100%;
  border-collapse: collapse;
  color: #10324d;
  table-layout: fixed;
}
.param-table th,
.param-table td {
  padding: 6px 6px;
  border-bottom: 1px solid rgba(16,50,77,0.1);
  font-size: 9px;
  text-align: center;
  white-space: nowrap;
}
.param-table thead th {
  color: #2c8b4f;
  font-weight: 800;
  font-size: 8px;
  letter-spacing: 0.04em;
}
.dc-showcase {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(20px, 2.5vw, 36px);
  align-items: center;
  min-height: 0;
}
.dc-showcase-hero {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #0b2436;
}
.dc-showcase-hero img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  opacity: 0.92;
}
.dc-showcase-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: flex-start;
  padding-top: 0;
}
.dc-showcase-eyebrow {
  margin: 0;
  color: #2c8b4f;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dc-showcase-headline {
  margin: 0 0 2px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 600;
  line-height: 1.1;
  color: #0f1722;
}
.dc-showcase-sub {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #51606b;
  line-height: 1.35;
}
.dc-showcase-desc {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.55;
  color: #51606b;
}
.dc-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dc-feature-card {
  padding: 12px 14px;
  border-radius: 6px;
  background: #f6f9fc;
  border: 1px solid rgba(16,50,77,0.06);
  border-left: 3px solid #2c8b4f;
}
.dc-feature-card strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #10324d;
  letter-spacing: 0.03em;
  margin-bottom: 4px;
}
.dc-feature-card span {
  display: block;
  font-size: 12px;
  line-height: 1.4;
  color: #51606b;
}
@media (max-width: 900px) {
  .dc-showcase {
    grid-template-columns: 1fr;
  }
  .dc-showcase-hero img { min-height: 260px; }
}

/* Marine product showcase */
.marine-showcase {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(20px, 2.5vw, 36px);
  align-items: start;
  min-height: 0;
}
.marine-certs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.marine-cert-single {
  margin: 0;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(16,50,77,0.1);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.marine-cert-single:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,50,77,0.1);
}
.marine-cert-single img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  margin: 0 auto;
}
.marine-cert-single figcaption {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #51606b;
  line-height: 1.4;
}
.marine-badge {
  padding: 14px 16px;
  background: linear-gradient(135deg, #10324d, #0d4e7f);
  border-radius: 8px;
  text-align: center;
  color: #fff;
}
.marine-badge strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.marine-badge span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.82);
}
.marine-badge-sub {
  margin: 0;
  text-align: center;
  font-size: 12px;
  color: #51606b;
  font-weight: 600;
}
.marine-supplier-card {
  margin: 0;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(16,50,77,0.1);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.marine-supplier-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,50,77,0.1);
}
.marine-supplier-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  margin: 0 auto;
}
.marine-supplier-card figcaption {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 600;
  color: #51606b;
  line-height: 1.4;
}
.marine-hero-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}
.marine-hero-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #0b2436;
  margin-top: auto;
}
.marine-hero-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: cover;
}
.marine-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.marine-body-compact {
  gap: 4px;
}
.marine-body-compact .dc-showcase-headline { font-size: clamp(22px, 2.2vw, 28px); }
.marine-body-compact .dc-showcase-sub { font-size: 13px; }
.marine-body-compact .dc-showcase-desc { font-size: 12px; line-height: 1.4; }
.dc-feature-grid-compact { gap: 6px; }
.dc-feature-card-compact { padding: 8px 10px; }
.dc-feature-card-compact strong { font-size: 11px; margin-bottom: 2px; }
.dc-feature-card-compact span { font-size: 11px; line-height: 1.3; }
@media (max-width: 900px) {
  .marine-showcase {
    grid-template-columns: 1fr;
  }
  .marine-hero-img img { min-height: 220px; }
}

.trust-section {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
}
.trust-section .section-heading {
  max-width: 100%;
}
.trust-section .section-heading h2 {
  max-width: 100%;
  margin-bottom: 8px;
}
.trust-sub {
  max-width: 100%;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.trust-stat-card {
  padding: 24px 20px;
  background: #fff;
  border: 1px solid rgba(16,50,77,0.06);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(16,50,77,0.04);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.trust-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(16,50,77,0.08);
}
.trust-stat-card strong {
  display: block;
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 800;
  color: #10324d;
  line-height: 1;
  margin-bottom: 8px;
}
.trust-stat-card span {
  display: block;
  font-size: 14px;
  color: #51606b;
  line-height: 1.35;
}
.trust-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: clamp(24px, 3vw, 36px);
}
.trust-card {
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  transition: transform 250ms ease;
  display: flex;
  flex-direction: column;
}
.trust-card:hover {
  transform: none;
}
.trust-card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  border-radius: 4px;
  transition: transform 250ms ease;
}
.trust-card figcaption {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
  color: #10324d;
  text-align: center;
  line-height: 1.3;
}
.trust-card-large img {
  max-height: 240px;
}
.trust-gallery .trust-card:nth-child(-n+4) {
  justify-content: flex-end;
}
.trust-gallery .trust-card:nth-child(-n+4) img {
  height: 460px;
  object-fit: contain;
  filter: brightness(1.12);
  transition: transform 250ms ease;
}
.trust-gallery .trust-card:nth-child(-n+4):hover img {
  transform: scale(1.06);
}
.trust-gallery .trust-card:nth-child(2) img {
  height: 280px;
}
.trust-gallery .trust-card:nth-child(3) img {
  height: 380px;
  object-fit: contain;
}
.trust-gallery .trust-card:nth-child(-n+4) figcaption {
  margin-top: 10px;
}
.trust-gallery .trust-card:nth-child(n+5) {
  justify-content: flex-end;
}
.trust-gallery .trust-card:nth-child(n+5) img {
  flex: 1;
  object-fit: contain;
  min-height: 0;
  max-height: none;
  transition: transform 250ms ease;
}
.trust-gallery .trust-card:nth-child(6) img {
  flex: 0.85 1 auto;
}
.trust-gallery .trust-card:nth-child(n+5):hover img {
  transform: scale(1.06);
}
.trust-card-large figcaption {
  font-size: 13px;
  font-weight: 700;
  color: #10324d;
}
@media (max-width: 900px) {
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .trust-stats { grid-template-columns: 1fr; }
  .trust-gallery { grid-template-columns: 1fr; }
  .trust-card-featured { grid-column: span 1; }
}

.company-section {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
}
.company-section .eyebrow { color: rgba(255,255,255,0.7); }
.company-headline {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  margin: 0 0 12px;
  max-width: 100%;
}
.company-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}
.company-sub {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: clamp(24px, 3vw, 36px);
  max-width: 620px;
}
.company-block {
  margin-bottom: 24px;
}
.company-block-title {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 8px;
}
.company-block-sub {
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 16px;
}
.company-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.company-stat {
  padding: 18px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
}
.company-stat strong {
  display: block;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.company-stat span {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.35;
}
.company-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.company-highlight {
  padding: 10px 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  border-left: 3px solid #2c8b4f;
  color: rgba(255,255,255,0.88);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}
.company-media {
  position: relative;
}
.company-video-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.company-video-wrap video {
  display: block;
  width: 100%;
  border-radius: 10px;
}
.company-badge {
  position: absolute;
  padding: 8px 14px;
  background: rgba(15,23,34,0.92);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px;
  backdrop-filter: blur(12px);
}
.company-badge strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #2c8b4f;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.company-badge span {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.82);
}
.company-badge-fortune {
  top: 12px;
  right: 12px;
}
.company-badge-employees {
  bottom: 12px;
  left: 12px;
}
@media (max-width: 900px) {
  .company-layout { grid-template-columns: 1fr; }
  .company-stats { grid-template-columns: 1fr 1fr; }
}

.alibaba-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 600;
}
.alibaba-link img { height: 20px; }
.alibaba-link:hover { color: #ff6600; }

.why-section {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
}
.why-sub {
  max-width: 640px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.why-card {
  padding: 24px 20px;
  background: #fff;
  border: 1px solid rgba(16,50,77,0.06);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(16,50,77,0.04);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(16,50,77,0.08);
}
.why-card strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: #10324d;
  margin-bottom: 8px;
  line-height: 1.25;
}
.why-card p {
  margin: 0;
  font-size: 14px;
  color: #51606b;
  line-height: 1.5;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .product-app-layout {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
  }
  .product-app-nav {
    height: auto;
    grid-template-rows: none;
  }
  .product-app-stage {
    height: auto;
  }
  .product-app-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: 0;
    height: auto;
  }
}

@media (max-width: 620px) {
  #services .services-heading h2,
  .product-app-section .section-heading h2 {
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
}
