:root {
  --bg: #f3f5f7;
  --surface: #ffffff;
  --surface-soft: #eef1f4;
  --line: #d9dee3;
  --text: #16212b;
  --muted: #66727d;
  --brand: #227fab;
  --brand-deep: #124863;
  --accent: #8cc66d;
  --signal: #227fab;
  --signal-deep: #124863;
  --shadow: 0 28px 60px rgba(16, 33, 43, 0.08);
  --max: 1240px;
}

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

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

.home-faq-grid article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(10, 37, 64, .1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(10, 37, 64, .07);
}

.home-faq-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #0a87b5, #0a2540);
}

.home-faq-grid small {
  color: #0a87b5;
  font-weight: 800;
  letter-spacing: .12em;
}

.home-faq-grid h3 {
  margin: 12px 0 10px;
  color: #0a2540;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.45;
}

.home-faq-grid p {
  margin: 0;
  color: #536679;
  line-height: 1.8;
}

@media (max-width: 820px) {
  .home-faq-grid {
    grid-template-columns: 1fr;
  }

  .home-faq-grid article {
    padding: 24px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Helvetica Neue", "PingFang TC", "Noto Sans TC", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(34, 127, 171, 0.08), transparent 24%),
    linear-gradient(180deg, #f6f7f8 0%, #ffffff 24%, #f3f5f7 100%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 222, 227, 0.9);
}

.site-header__inner,
.container {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

.site-header__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  flex-wrap: wrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 150px;
  height: 75px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex: 0 0 auto;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  padding: 4px;
  border: 1px solid rgba(217, 222, 227, 0.88);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 999px;
  cursor: pointer;
  flex: 0 0 auto;
}

.lang-switch button.is-active {
  background: var(--brand-deep);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(217, 222, 227, 0.88);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--brand-deep);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 18px;
  flex: 1 1 520px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--brand-deep);
}

.nav a.is-current:not(.nav-cta) {
  color: var(--brand-deep);
  text-decoration-line: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

.nav-group.is-current > .nav-submenu-toggle {
  background: rgba(34, 127, 171, 0.1);
  color: var(--brand-deep);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(34, 127, 171, 0.22);
}

.nav-cta.is-current {
  background: var(--brand-deep);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(140, 198, 109, 0.46), 0 16px 28px rgba(18, 72, 99, 0.28);
}

.nav-group {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-parent {
  white-space: nowrap;
}

.nav-submenu-toggle {
  display: inline-grid;
  width: 28px;
  height: 28px;
  margin-left: 2px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-submenu-toggle span {
  display: block;
  transform: translateY(-1px);
  transition: transform 160ms ease;
}

.nav-group.is-submenu-open .nav-submenu-toggle span {
  transform: translateY(1px) rotate(180deg);
}

.nav-submenu-toggle:hover,
.nav-submenu-toggle:focus-visible {
  background: rgba(34, 127, 171, 0.1);
  color: var(--brand-deep);
  outline: none;
}

.nav-group--cta .nav-submenu-toggle {
  color: var(--brand);
}

.nav-submenu {
  display: none;
  position: absolute;
  z-index: 30;
  top: calc(100% + 12px);
  left: 50%;
  width: max-content;
  min-width: 210px;
  padding: 8px;
  transform: translateX(-50%);
  border: 1px solid rgba(34, 127, 171, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 46px rgba(16, 25, 33, 0.16);
}

.nav-submenu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 14px;
}

.nav-submenu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text);
  line-height: 1.4;
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  background: rgba(34, 127, 171, 0.09);
  color: var(--brand-deep);
}

.nav-submenu a.is-current {
  background: rgba(34, 127, 171, 0.11);
  color: var(--brand-deep);
  text-decoration: none;
  box-shadow: inset 3px 0 0 var(--accent);
}

@media (min-width: 720px) {
  .nav-group:hover .nav-submenu,
  .nav-group:focus-within .nav-submenu,
  .nav-group.is-submenu-open .nav-submenu {
    display: grid;
    gap: 2px;
  }
}

.hero {
  position: relative;
  min-height: calc(92vh - 74px);
  background: #101921;
  overflow: clip;
}

.hero__media,
.page-hero__media {
  position: absolute;
  inset: 0;
}

.hero__media img,
.hero__media video,
.page-hero__media img,
.page-hero__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-banner-gallery {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #071d2d;
}

.hero__media .page-banner-gallery > .page-banner-image,
.page-hero__media .page-banner-gallery > .page-banner-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 1s ease, transform 6s ease;
  will-change: opacity, transform;
}

.hero__media .page-banner-gallery > .page-banner-image.is-active,
.page-hero__media .page-banner-gallery > .page-banner-image.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .hero__media .page-banner-gallery > .page-banner-image,
  .page-hero__media .page-banner-gallery > .page-banner-image {
    transition: none;
    transform: none;
  }
}

.hero__overlay,
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 25, 33, 0.82) 0%, rgba(16, 25, 33, 0.24) 48%, rgba(16, 25, 33, 0.62) 100%),
    linear-gradient(180deg, rgba(16, 25, 33, 0.04) 0%, rgba(16, 25, 33, 0.34) 54%, rgba(16, 25, 33, 0.88) 100%);
}

.hero__overlay::after,
.page-hero__overlay::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(72px, 10vw, 140px);
  background:
    linear-gradient(180deg, rgba(16, 25, 33, 0), rgba(16, 25, 33, 0.88)),
    linear-gradient(90deg, var(--signal), rgba(34, 127, 171, 0.3));
  clip-path: ellipse(86% 100% at 50% 100%);
}

.hero__inner,
.page-hero__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), 1240px);
  margin: 0 auto;
}

.hero__copy {
  min-height: calc(92vh - 74px);
  display: flex;
  align-items: flex-end;
  padding: 68px 0 64px;
  color: #fff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(255, 255, 255, 0.4));
}

.eyebrow--dark {
  color: var(--brand-deep);
}

.eyebrow--dark::before {
  background: linear-gradient(90deg, var(--brand), rgba(34, 127, 171, 0.18));
}

.hero h1,
.page-hero h1 {
  margin: 16px 0 16px;
  max-width: 11ch;
  font-size: clamp(3.3rem, 8vw, 7.2rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero p,
.page-hero p {
  margin: 0;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.85;
}

.hero__actions,
.page-hero__actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero__notes span {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof {
  position: relative;
  margin-top: -32px;
  z-index: 2;
}

.hero-proof__grid {
  display: grid;
  gap: 18px;
}

.hero-proof__card {
  padding: 24px 22px;
  border-radius: 24px;
  background: #227fab;
  border: 2px solid #227fab;
  box-shadow: var(--shadow);
}

.hero-proof__card small {
  display: inline-block;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-proof__card h3 {
  margin: 10px 0 8px;
  font-size: 1.2rem;
  color: #fff;
}

.hero-proof__card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.75;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  padding: 14px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.button {
  background: #227fab;
  color: #fff;
  box-shadow: 0 18px 34px rgba(34, 127, 171, 0.24);
}

.button--ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.button-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
}

.button--search {
  min-width: 132px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-links {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 32px), 1240px);
  margin: -34px auto 0;
  display: grid;
  gap: 16px;
}

.home-links a {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
  padding: 24px 24px 24px 28px;
  border: 1px solid rgba(217, 222, 227, 0.88);
  border-radius: 26px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.home-links a::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--signal), var(--brand));
}

.home-links strong {
  display: block;
  font-size: 16px;
  color: var(--brand-deep);
}

.home-links span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.home-links a:hover strong,
.home-links a:focus-visible strong {
  color: var(--brand);
}

.page-main {
  padding: 64px 0 108px;
}

.section {
  padding: 72px 0;
}

.section--soft {
  background: linear-gradient(180deg, rgba(237, 245, 250, 0.86), rgba(255, 255, 255, 0.9));
}

.section--home-services,
.section--home-insights {
  position: relative;
  overflow: clip;
}

.section--home-services::before,
.section--home-insights::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 16, 24, 0.76), rgba(10, 16, 24, 0.9)),
    url("assets/05.jpg") center / cover no-repeat;
}

.section--home-services::after,
.section--home-insights::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  top: -58px;
  height: 116px;
  border-top: 8px solid var(--signal);
  border-radius: 0 0 50% 50%;
  pointer-events: none;
}

.section--home-services .container,
.section--home-insights .container {
  position: relative;
  z-index: 1;
}

.section--home-services .section-heading small,
.section--home-services .section-heading h2,
.section--home-services .section-heading p,
.section--home-services .section-heading__link,
.section--home-insights .section-heading small,
.section--home-insights .section-heading h2,
.section--home-insights .section-heading p,
.section--home-insights .news-band small,
.section--home-insights .news-band strong,
.section--home-insights .news-band p {
  color: #fff;
}

.section--home-services .section-heading p,
.section--home-insights .section-heading p,
.section--home-insights .news-band p {
  color: rgba(255, 255, 255, 0.76);
}

.section--home-services .section-heading small,
.section--home-insights .section-heading small {
  color: rgba(255, 255, 255, 0.7);
}

.section--home-services .section-heading__link {
  color: #fff;
}

.section--home-products,
.section--home-news {
  position: relative;
}

.section--home-products::before,
.section--home-news::before {
  content: "";
  position: absolute;
  left: min(50%, calc((100vw - var(--max)) / 2 + 16px));
  top: 52px;
  width: 84px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--signal), rgba(34, 127, 171, 0.18));
}

.section--home-story {
  position: relative;
  background:
    linear-gradient(135deg, rgba(34, 127, 171, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(242, 246, 249, 0.96), rgba(255, 255, 255, 0.96));
}

.section--slash-top {
  margin-top: 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.section-heading small {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-heading p {
  margin: 0;
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.8;
}

.section-heading--center,
.section-heading--center > div {
  justify-items: center;
  text-align: center;
}

.section-heading--center p {
  margin-inline: auto;
}

.split {
  display: grid;
  gap: 22px;
}

.split__panel,
.list-block,
.cta-panel {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 222, 227, 0.88);
  box-shadow: var(--shadow);
}

.split__image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.split__image--square img {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.split__panel {
  padding: 28px 24px;
}

.split--hero-follow .split__panel {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: 32px 28px;
}

.split__panel--plain {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.split__panel h3,
.split__panel h2,
.list-block h3,
.cta-panel h3 {
  margin: 0 0 14px;
  font-size: 1.5rem;
  line-height: 1.15;
}

.split__panel p,
.list-block p,
.cta-panel p,
.bullet-list li,
.plain-list li,
.news-list li {
  color: var(--muted);
  line-height: 1.8;
}

.bullet-list,
.plain-list,
.news-list {
  margin: 0;
  padding-left: 18px;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-deep);
  font-size: 14px;
  font-weight: 800;
}

.text-link::after {
  content: "→";
}

.feature-grid,
.page-grid,
.stat-strip,
.card-grid {
  display: grid;
  gap: 18px;
}

.home-focus-grid,
.news-summary-strip {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.home-focus-grid article,
.news-summary-strip article {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(34, 127, 171, 0.12);
  box-shadow: var(--shadow);
}

.home-focus-grid small,
.news-summary-strip small {
  display: inline-block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-focus-grid h3 {
  margin: 10px 0 8px;
  font-size: 1.16rem;
}

.home-focus-grid p,
.news-summary-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-intro-grid,
.contact-layout,
.contact-side-stack {
  display: grid;
  gap: 18px;
}

.contact-intro-grid {
  margin-bottom: 28px;
}

.contact-intro-grid article,
.contact-detail-card {
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(34, 127, 171, 0.12);
  box-shadow: var(--shadow);
}

.contact-intro-grid small,
.contact-detail-card small {
  display: inline-block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-intro-grid h3,
.contact-detail-card h3 {
  margin: 10px 0 8px;
  font-size: 1.16rem;
}

.contact-intro-grid p,
.contact-detail-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.company-info-grid {
  display: grid;
  gap: 18px;
}

.company-info-showcase {
  display: grid;
  gap: 22px;
}

.company-info-heading {
  display: grid;
  gap: 10px;
}

.company-info-heading small {
  color: var(--brand);
  font-size: 24px !important;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.company-info-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.company-info-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.company-info-card {
  display: grid;
  gap: 0;
  padding: 0;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(240, 247, 251, 0.98), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(34, 127, 171, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.company-info-card__media {
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(34, 127, 171, 0.12), rgba(34, 127, 171, 0.03)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 245, 250, 0.98));
}

.company-info-card__media img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 16px;
  background: #fff;
}

.company-info-card__body {
  display: grid;
  gap: 12px;
  padding: 0 22px 22px;
}

.company-info-card--featured {
  grid-column: 1 / -1;
}

.company-info-card--featured .company-info-card__body {
  padding: 0 24px 24px;
}

.company-info-card--featured .company-info-card__media img {
  height: 360px;
}

.company-info-card--compact {
  grid-template-columns: minmax(190px, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
}

.company-info-card--compact .company-info-card__media {
  padding: 14px;
}

.company-info-card--compact .company-info-card__media img {
  height: 100%;
  min-height: 180px;
}

.company-info-card--compact .company-info-card__body {
  align-content: center;
  padding: 22px 22px 22px 10px;
}

.company-info-card h3 {
  margin: 0;
  font-size: 1.14rem;
  color: var(--brand-deep);
}

.company-info-list {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.company-info-list a {
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px solid rgba(34, 127, 171, 0.22);
}

.company-info-list a:hover,
.company-info-list a:focus-visible {
  color: var(--brand-deep);
  border-color: rgba(34, 127, 171, 0.44);
}

@media (max-width: 719px) {
  .company-info-card--compact {
    grid-template-columns: 1fr;
  }

  .company-info-card__media {
    padding: 14px;
  }

  .company-info-card__media img {
    height: 220px;
  }

  .company-info-card--featured .company-info-card__media img {
    height: 260px;
  }

  .company-info-card__body,
  .company-info-card--featured .company-info-card__body,
  .company-info-card--compact .company-info-card__body {
    padding: 0 18px 18px;
  }
}

/* 2026-07-31 interaction and visual refinements */
.home-page .section-heading > div {
  display: grid;
  row-gap: 14px;
}

.home-page .section-heading > div > small,
.home-page .section-heading > small {
  display: block;
  margin-bottom: clamp(8px, 1.2vw, 14px);
}

.company-story-chapter__brand-title {
  position: relative;
  display: grid;
  width: max-content;
  max-width: 100%;
  gap: .02em;
  padding: 4px 0 22px;
  isolation: isolate;
}

.company-story-chapter__brand-title span {
  display: block;
}

.company-story-chapter__brand-title span:last-child {
  color: #a8e7d0;
  background: linear-gradient(90deg, #fff 0%, #83d4e5 36%, #a7dc8a 74%, #fff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: company-brand-shine 5.5s ease-in-out infinite;
  text-shadow: none;
}

.company-story-chapter__brand-title::before,
.company-story-chapter__brand-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  height: 3px;
  border-radius: 999px;
}

.company-story-chapter__brand-title::before {
  width: 100%;
  background: rgba(255, 255, 255, .2);
}

.company-story-chapter__brand-title::after {
  width: 34%;
  background: linear-gradient(90deg, #83d4e5, #a7dc8a);
  box-shadow: 0 0 24px rgba(131, 212, 229, .78);
  animation: company-brand-line 3.8s ease-in-out infinite alternate;
}

.company-story-chapter__milestone-title span {
  display: block;
}

@media (min-width: 761px) {
  .company-story-chapter--history-focus .company-story-chapter__copy {
    top: clamp(198px, 24vh, 248px);
    right: clamp(28px, 4vw, 72px);
    width: min(45vw, 640px);
    min-height: calc(100vh - clamp(265px, 32vh, 338px));
    transform: none;
  }

  .company-story-chapter--history-focus .company-story-chapter__copy > span,
  .company-story-chapter--history-focus .company-story-chapter__copy > p,
  .company-story-chapter--history-focus .company-story-chapter__milestone-title {
    align-self: flex-start;
    text-align: left;
  }

  .company-story-chapter--history-focus .company-story-chapter__milestone-title {
    width: min(100%, 720px);
    margin-top: 10px;
    font-size: clamp(2.05rem, 3.35vw, 3.9rem);
    line-height: 1.08;
  }

  .company-story-chapter--history-focus .company-story-chapter__copy > p {
    max-width: 40rem;
  }

  .company-story-chapter--history-focus .company-story-chapter__timeline {
    width: min(100%, 650px);
    margin-right: auto;
    margin-left: 0;
  }

  .company-story-chapter--history-focus .company-story-chapter__media::after {
    background:
      linear-gradient(180deg, rgba(4, 24, 38, .72) 0%, rgba(4, 24, 38, .08) 38%, rgba(4, 24, 38, .18) 100%),
      linear-gradient(90deg, rgba(4, 24, 38, 0) 24%, rgba(4, 24, 38, .16) 52%, rgba(4, 24, 38, .84) 100%);
  }
}

/* Homepage solution finder */
.page-main--home-discovery {
  padding-top: 0;
}

.home-discovery {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding: clamp(76px, 9vw, 124px) 0 clamp(82px, 10vw, 136px);
  background:
    radial-gradient(circle at 50% 26%, rgba(34, 127, 171, .24), transparent 31%),
    radial-gradient(circle at 14% 78%, rgba(140, 198, 109, .1), transparent 29%),
    linear-gradient(180deg, #020d17 0%, #061b2a 52%, #082438 100%);
}

.home-discovery::before,
.home-discovery::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
}

.home-discovery::before {
  top: -230px;
  left: calc(50% - 410px);
  width: 820px;
  height: 430px;
  background: rgba(34, 127, 171, .14);
  filter: blur(92px);
}

.home-discovery::after {
  right: -180px;
  bottom: -240px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(119, 184, 214, .06);
  box-shadow: 0 0 0 72px rgba(34, 127, 171, .025), 0 0 0 144px rgba(140, 198, 109, .018);
}

.home-discovery__grid {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(117, 175, 204, .1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 175, 204, .1) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 48%, #000 10%, rgba(0, 0, 0, .72) 62%, transparent 100%);
  mask-image: radial-gradient(ellipse at 50% 48%, #000 10%, rgba(0, 0, 0, .72) 62%, transparent 100%);
  opacity: .9;
  transition: opacity 220ms ease;
}

.home-discovery__grid.is-interactive {
  background-image: none;
}

.home-discovery__grid-svg {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.home-discovery__grid-line {
  fill: none;
  stroke: rgba(118, 186, 211, .17);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.home-discovery__grid-dot {
  fill: rgba(183, 226, 244, .42);
}

.home-discovery__grid-spotlight {
  pointer-events: none;
  mix-blend-mode: screen;
}

.home-discovery__grid::before,
.home-discovery__grid::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-discovery__grid::before {
  background-image: radial-gradient(circle, rgba(183, 226, 244, .46) 0 1.6px, transparent 2px);
  background-position: 0 0;
  background-size: 80px 80px;
  opacity: .5;
  animation: home-discovery-dot-pulse 4.8s ease-in-out infinite alternate;
}

.home-discovery__grid::after {
  inset: -22%;
  background:
    radial-gradient(circle at 30% 42%, rgba(34, 127, 171, .3), transparent 14%),
    radial-gradient(circle at 68% 34%, rgba(79, 167, 194, .18), transparent 12%),
    radial-gradient(circle at 58% 72%, rgba(140, 198, 109, .1), transparent 13%);
  opacity: .62;
  animation: home-discovery-grid-drift 13s ease-in-out infinite alternate;
}

.home-discovery__grid.is-interactive::before,
.home-discovery__grid.is-interactive::after {
  opacity: 0;
  animation: none;
}

.home-discovery__inner {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
}

.home-discovery:focus-within .home-discovery__grid {
  opacity: 1;
}

.home-discovery__intro {
  width: min(760px, 100%);
  text-align: center;
}

.home-discovery__intro h2 {
  margin: 0 auto 18px;
  color: #f4fbff;
  font-size: clamp(2rem, 4.6vw, 4.45rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  white-space: pre-line;
  text-wrap: balance;
}

.home-discovery__intro p {
  width: min(680px, 100%);
  margin: 0 auto;
  color: rgba(213, 233, 242, .78);
  font-size: clamp(.98rem, 1.5vw, 1.08rem);
  line-height: 1.85;
  white-space: pre-line;
  text-wrap: balance;
}

.home-search {
  position: relative;
  width: min(760px, 100%);
  margin: clamp(34px, 5vw, 54px) auto 0;
  border-radius: 25px;
}

.home-search__halo {
  position: absolute;
  z-index: -2;
  inset: -30px -26px;
  overflow: hidden;
  border-radius: 52px;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(34, 127, 171, .42) 0%,
    rgba(34, 127, 171, .18) 44%,
    transparent 74%);
  filter: blur(24px);
  opacity: .38;
  transform-origin: center;
  pointer-events: none;
}

.home-search::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -2px;
  border-radius: 25px;
  background: conic-gradient(from 112deg,
    rgba(140, 198, 109, .95),
    rgba(34, 127, 171, .92) 28%,
    rgba(107, 210, 225, .78) 52%,
    rgba(18, 72, 99, .9) 76%,
    rgba(140, 198, 109, .95));
  box-shadow:
    0 18px 48px rgba(18, 72, 99, .18),
    0 0 24px rgba(34, 127, 171, .22);
  pointer-events: none;
}

.home-search__frame {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 23px;
  background:
    radial-gradient(circle at 78% 18%, rgba(68, 170, 205, .25), transparent 34%),
    linear-gradient(110deg, #0a263a 0%, #0d344d 55%, #10415d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .09),
    inset 0 -18px 36px rgba(0, 0, 0, .14);
}

.home-search__icon {
  position: absolute;
  left: 22px;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: #cdeef9;
  stroke-width: 1.8;
  stroke-linecap: round;
  pointer-events: none;
}

.home-search input {
  width: 100%;
  min-width: 0;
  height: 62px;
  padding: 0 78px 0 60px;
  border: 0;
  outline: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 650;
  letter-spacing: .01em;
  appearance: none;
}

.home-search input::placeholder {
  color: rgba(227, 243, 249, .76);
  font-weight: 550;
}

.home-search input::-webkit-search-cancel-button {
  appearance: none;
}

.home-search button {
  position: absolute;
  right: 8px;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 16px;
  background: linear-gradient(145deg, #227fab 0%, #1f769f 58%, #124863 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(34, 127, 171, .34);
  transform: translateY(-50%);
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.home-search button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-search:focus-within::before {
  box-shadow:
    0 0 0 3px rgba(34, 127, 171, .2),
    0 20px 54px rgba(18, 72, 99, .24),
    0 0 34px rgba(140, 198, 109, .3);
}

.home-search:focus-within .home-search__halo {
  opacity: .68;
}

.home-search button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: -5px;
}

.home-search__status {
  min-height: 24px;
  width: min(760px, 100%);
  margin: 18px auto 0;
  color: rgba(209, 232, 241, .75);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.65;
  text-align: center;
}

.home-search__results[hidden],
.home-search__contact[hidden] {
  display: none;
}

.home-search__results {
  width: min(960px, 100%);
  margin: clamp(34px, 5vw, 58px) auto 0;
}

.home-search__results-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(174, 217, 235, .18);
}

.home-search__results-heading h3 {
  margin: 0;
  color: #f2f9fc;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
}

.home-search__results-heading span {
  color: rgba(206, 231, 241, .72);
  font-size: 13px;
  font-weight: 750;
}

.home-search__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.home-search__list li {
  min-width: 0;
}

.home-search__result {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(118, 186, 211, .2);
  border-radius: 22px;
  background: rgba(7, 29, 45, .9);
  box-shadow: 0 16px 42px rgba(0, 8, 14, .2);
  backdrop-filter: blur(14px);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-search__result::after {
  content: "";
  position: absolute;
  inset: auto -38px -58px auto;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34, 127, 171, .11), transparent 68%);
  pointer-events: none;
}

.home-search__result-meta {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 25px;
}

.home-search__badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(67, 157, 194, .16);
  color: #8dd3ea;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  line-height: 1;
  text-transform: uppercase;
}

.home-search__badge--service {
  background: rgba(140, 198, 109, .14);
  color: #b9e2a2;
}

.home-search__badge--category {
  background: rgba(118, 186, 211, .14);
  color: #bce4f2;
}

.home-search__category {
  overflow: hidden;
  color: rgba(199, 226, 237, .66);
  font-size: 11px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-search__result strong {
  margin-top: 15px;
  color: #f4fbff;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.4;
}

.home-search__result p {
  display: -webkit-box;
  margin: 9px 0 18px;
  overflow: hidden;
  color: rgba(213, 233, 242, .76);
  font-size: 13px;
  line-height: 1.7;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.home-search__result-action {
  margin-top: auto;
  color: #76bad3;
  font-size: 12px;
  font-weight: 850;
}

.home-search__contact {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.home-search__contact .button {
  min-width: min(310px, 100%);
}

@media (hover: hover) and (pointer: fine) {
  .home-search button:hover {
    filter: brightness(1.08) saturate(1.08);
    box-shadow: 0 14px 30px rgba(34, 127, 171, .44);
    transform: translateY(-50%) translateY(-2px);
  }

  .home-search__result:hover {
    transform: translateY(-4px);
    border-color: rgba(34, 127, 171, .36);
    box-shadow: 0 22px 48px rgba(16, 45, 63, .12);
  }
}

@keyframes home-discovery-dot-pulse {
  0% { opacity: .34; }
  48% { opacity: .5; }
  100% { opacity: .4; }
}

@keyframes home-discovery-grid-drift {
  0% { transform: translate3d(-2%, -1%, 0) scale(.98); }
  55% { transform: translate3d(3%, 1.5%, 0) scale(1.04); }
  100% { transform: translate3d(-1%, 3%, 0) scale(1.01); }
}

@media (max-width: 719px) {
  .home-discovery {
    padding: 68px 0 82px;
  }

  .home-discovery__grid {
    background-size: 64px 64px;
    opacity: .72;
  }

  .home-discovery__grid::before {
    background-size: 64px 64px;
  }

  .home-discovery__intro h2 {
    margin-top: 0;
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .home-discovery__intro p {
    font-size: .96rem;
    line-height: 1.72;
  }

  .home-search {
    margin-top: 34px;
    border-radius: 22px;
  }

  .home-search__halo {
    inset: -19px -13px;
    filter: blur(18px);
    opacity: .38;
  }

  .home-search::before,
  .home-search__frame {
    border-radius: 20px;
  }

  .home-search__frame {
    min-height: 58px;
  }

  .home-search__icon {
    left: 17px;
    width: 21px;
    height: 21px;
  }

  .home-search input {
    height: 56px;
    padding-right: 67px;
    padding-left: 49px;
    font-size: 16px;
  }

  .home-search button {
    right: 6px;
    width: 46px;
    height: 46px;
    border-radius: 15px;
  }

  .home-search__status {
    margin-top: 15px;
    font-size: 12px;
  }

  .home-search__results {
    margin-top: 38px;
  }

  .home-search__results-heading {
    display: block;
  }

  .home-search__results-heading span {
    display: block;
    margin-top: 5px;
  }

  .home-search__list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 16px;
  }

  .home-search__result {
    padding: 19px;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-search__halo {
    animation: none;
    transform: none;
  }

  .home-discovery__grid::before,
  .home-discovery__grid::after {
    animation: none;
    transform: none;
  }

  .home-search button,
  .home-search__result {
    transition: none;
  }
}

@keyframes company-brand-shine {
  0%, 18% { background-position: 100% 50%; }
  56%, 100% { background-position: 0 50%; }
}

@keyframes company-brand-line {
  from { width: 28%; }
  to { width: 100%; }
}

.press-related .detail-link-grid {
  grid-template-columns: 1fr;
}

.press-related .detail-link-grid a {
  grid-template-columns: clamp(128px, 18vw, 190px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  gap: 5px 22px;
  min-height: 142px;
  padding: 0 24px 0 0;
  align-items: center;
  border-radius: 22px;
}

.press-related .detail-link-grid a > small,
.press-related .detail-link-grid a > h3 {
  grid-column: 2;
}

.press-related .detail-link-grid a > small {
  align-self: end;
  margin: 0;
}

.press-related .detail-link-grid a > h3 {
  align-self: start;
  margin: 0;
  line-height: 1.42;
}

.related-news-thumb {
  grid-column: 1;
  grid-row: 1 / -1;
  align-self: stretch;
  min-height: 142px;
  overflow: hidden;
  background: #dbe9ef;
}

.related-news-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms cubic-bezier(.22, .61, .36, 1), filter 320ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .press-related .detail-link-grid a:hover .related-news-thumb img {
    transform: scale(1.055);
    filter: saturate(1.08);
  }
}

.contact-form__honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-form__actions .button:disabled {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.contact-form__status {
  margin: 0;
  color: var(--brand-deep);
  font-weight: 700;
  line-height: 1.6;
}

.contact-form__status:empty {
  display: none;
}

.contact-form__status.is-error {
  color: #a23838;
}

body.has-inquiry-feedback {
  overflow: hidden;
}

.inquiry-feedback[hidden] {
  display: none;
}

.inquiry-feedback {
  position: fixed;
  z-index: 1200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  opacity: 0;
  transition: opacity 220ms ease;
}

.inquiry-feedback.is-visible {
  opacity: 1;
}

.inquiry-feedback__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(3, 18, 29, .74);
  backdrop-filter: blur(12px);
  cursor: default;
}

.inquiry-feedback__card {
  position: relative;
  width: min(100%, 470px);
  padding: clamp(30px, 6vw, 52px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(140, 198, 109, .23), transparent 34%),
    linear-gradient(145deg, #fff, #f0f7f9);
  box-shadow: 0 34px 90px rgba(0, 19, 31, .34);
  text-align: center;
  transform: translateY(22px) scale(.96);
  transition: transform 300ms cubic-bezier(.22, .61, .36, 1);
}

.inquiry-feedback.is-visible .inquiry-feedback__card {
  transform: none;
}

.inquiry-feedback__card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
}

.inquiry-feedback__mark {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--brand), #46a7bf);
  box-shadow: 0 16px 32px rgba(34, 127, 171, .25), 0 0 0 10px rgba(34, 127, 171, .08);
}

.inquiry-feedback__mark i {
  width: 27px;
  height: 14px;
  border-bottom: 4px solid #fff;
  border-left: 4px solid #fff;
  transform: translateY(-3px) rotate(-45deg);
}

.inquiry-feedback__card > small {
  color: var(--brand);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.inquiry-feedback__card h2 {
  margin: 12px 0 14px;
  color: #0a2b3e;
  font-size: clamp(2rem, 7vw, 2.8rem);
  letter-spacing: -.045em;
}

.inquiry-feedback__card p {
  margin: 0 auto 26px;
  color: var(--muted);
  line-height: 1.8;
}

.inquiry-feedback__card .button {
  min-width: 150px;
}

body .site-footer {
  position: relative;
  padding: clamp(44px, 6vw, 72px) 0 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 8%, rgba(53, 164, 184, .23), transparent 26%),
    radial-gradient(circle at 12% 82%, rgba(140, 198, 109, .14), transparent 30%),
    #041826;
  color: rgba(238, 248, 251, .74);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .75), transparent 80%);
  pointer-events: none;
}

.site-footer__halo {
  position: absolute;
  top: -140px;
  right: -110px;
  width: 380px;
  height: 380px;
  border: 1px solid rgba(131, 212, 229, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(131, 212, 229, .035), 0 0 0 104px rgba(131, 212, 229, .025);
  pointer-events: none;
}

.site-footer .site-footer__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), 1240px);
  margin: 0 auto;
  display: grid;
  gap: 0;
}

.site-footer__signal {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.site-footer__signal span {
  color: #fff;
  font-size: clamp(4.2rem, 12vw, 10rem);
  font-weight: 900;
  line-height: .72;
  letter-spacing: -.075em;
}

.site-footer__signal em {
  color: #83d4e5;
  font-size: clamp(.68rem, 1.1vw, .84rem);
  font-style: normal;
  font-weight: 900;
  letter-spacing: .2em;
  white-space: nowrap;
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(210px, .75fr) minmax(340px, 1.45fr) minmax(200px, .7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  padding: clamp(38px, 6vw, 72px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
  text-decoration: none;
}

.site-footer__brand img {
  width: 82px;
  height: auto;
  filter: brightness(0) invert(1);
}

.site-footer__brand > span {
  display: grid;
  gap: 5px;
}

.site-footer__brand b {
  color: #fff;
  font-size: 1rem;
}

.site-footer__brand small {
  color: rgba(238, 248, 251, .52);
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: .06em;
}

.site-footer__pitch > small,
.site-footer__cta small {
  color: #83d4e5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
}

.site-footer__pitch h2 {
  max-width: 19ch;
  margin: 14px 0 16px;
  color: #fff;
  font-size: clamp(1.85rem, 3.2vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.site-footer__pitch p {
  max-width: 54ch;
  margin: 0;
  color: rgba(238, 248, 251, .64);
  line-height: 1.8;
}

.site-footer__cta {
  position: relative;
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(34, 127, 171, .92), rgba(13, 78, 105, .82));
  box-shadow: 0 22px 48px rgba(0, 0, 0, .22);
  color: #fff;
  text-decoration: none;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-footer__cta::before {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -58px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(140, 198, 109, .22);
}

.site-footer__cta strong {
  position: relative;
  z-index: 1;
  max-width: 7em;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.2;
}

.site-footer__cta > i {
  position: absolute;
  right: 22px;
  bottom: 20px;
  color: #fff;
  font-size: 1.55rem;
  font-style: normal;
}

.site-footer__social-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 64px);
  padding: 0 0 clamp(34px, 5vw, 54px);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.site-footer__social-copy {
  display: grid;
  gap: 8px;
}

.site-footer__social-copy small {
  color: #83d4e5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
}

.site-footer__social-copy strong {
  color: #fff;
  font-size: clamp(1.35rem, 2.4vw, 2.25rem);
  line-height: 1.15;
  letter-spacing: -.025em;
}

.site-footer__social-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer__social-link {
  min-width: 158px;
  min-height: 58px;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.site-footer__social-link svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.site-footer__social-link span {
  font-size: .9rem;
  font-weight: 800;
}

.site-footer__social-link i {
  color: rgba(255, 255, 255, .56);
  font-style: normal;
}

.site-footer__social-link:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .48);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
}

.site-footer__social-link--facebook:hover {
  background: #1877f2;
}

.site-footer__social-link--youtube:hover {
  background: #ff0033;
}

.site-footer__nav-grid {
  display: grid;
  grid-template-columns: .8fr 1.15fr 1.1fr 1.35fr;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(38px, 5vw, 62px) 0;
}

.site-footer__nav-grid h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: .82rem;
  letter-spacing: .1em;
}

.site-footer__nav-grid nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.site-footer__nav-grid nav a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(238, 248, 251, .64);
  text-decoration: none;
  line-height: 1.45;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer__nav-grid nav a i {
  color: rgba(131, 212, 229, .55);
  font-style: normal;
  opacity: 0;
  transform: translate(-5px, 5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-footer__contact address {
  display: grid;
  gap: 10px;
  font-style: normal;
  line-height: 1.55;
}

.site-footer__contact address b {
  color: rgba(238, 248, 251, .92);
}

.site-footer__contact address a {
  color: rgba(238, 248, 251, .64);
  text-decoration: none;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: rgba(238, 248, 251, .5);
  font-size: 12px;
}

.site-footer__bottom button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border: 0;
  background: transparent;
  color: rgba(238, 248, 251, .76);
  font: inherit;
  cursor: pointer;
}

.site-footer__bottom button i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  color: #fff;
  font-style: normal;
}

@media (hover: hover) and (pointer: fine) {
  .site-footer__cta:hover {
    transform: translateY(-5px);
    border-color: rgba(167, 220, 138, .58);
    box-shadow: 0 30px 58px rgba(0, 0, 0, .28);
  }

  .site-footer__nav-grid nav a:hover,
  .site-footer__contact address a:hover {
    color: #fff;
  }

  .site-footer__nav-grid nav a:hover {
    transform: translateX(3px);
  }

  .site-footer__nav-grid nav a:hover i {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .site-footer__top {
    grid-template-columns: 1fr minmax(190px, .55fr);
  }

  .site-footer__pitch {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .site-footer__cta {
    grid-column: 2;
    grid-row: 1;
  }

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

@media (max-width: 640px) {
  .home-page .section-heading > div {
    row-gap: 12px;
  }

  .home-page .section-heading > div > small,
  .home-page .section-heading > small {
    margin-bottom: 7px;
  }

  .company-story-chapter__brand-title {
    width: 100%;
    font-size: clamp(2.25rem, 11vw, 3.15rem) !important;
  }

  .company-story-chapter__milestone-title {
    font-size: clamp(1.95rem, 9.2vw, 2.8rem) !important;
    line-height: 1.12 !important;
  }

  .press-related .detail-link-grid a {
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 4px 14px;
    min-height: 112px;
    padding-right: 14px;
    border-radius: 17px;
  }

  .related-news-thumb {
    min-height: 112px;
  }

  .press-related .detail-link-grid a > h3 {
    font-size: .96rem;
    line-height: 1.42;
  }

  .inquiry-feedback {
    padding: 16px;
  }

  .inquiry-feedback__card {
    border-radius: 24px;
  }

  .site-footer {
    padding-top: 58px;
  }

  .site-footer .site-footer__inner {
    width: min(calc(100% - 32px), 1240px);
  }

  .site-footer__social-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .site-footer__social-actions {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__social-link {
    min-width: 0;
    min-height: 56px;
    grid-template-columns: 25px 1fr;
    padding: 10px 13px;
  }

  .site-footer__social-link i {
    display: none;
  }

  .site-footer__signal {
    display: grid;
    gap: 16px;
  }

  .site-footer__signal span {
    font-size: clamp(4rem, 24vw, 7rem);
  }

  .site-footer__signal em {
    justify-self: end;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__brand,
  .site-footer__pitch,
  .site-footer__cta {
    grid-column: 1;
    grid-row: auto;
  }

  .site-footer__pitch h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .site-footer__cta {
    min-height: 148px;
  }

  .site-footer__nav-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .company-story-chapter__brand-title span:last-child,
  .company-story-chapter__brand-title::after {
    animation: none;
  }

  .related-news-thumb img,
  .inquiry-feedback,
  .inquiry-feedback__card,
  .site-footer__cta,
  .site-footer__nav-grid nav a,
  .site-footer__nav-grid nav a i {
    transition: none;
  }
}

/* Shared visual rhythm for public pages: consistent accents without competing with photography. */
.page-main .section-heading {
  position: relative;
}

.page-main .section-heading > small:not(:empty),
.page-main .section-heading > div > small:not(:empty) {
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border: 1px solid rgba(34, 127, 171, .16);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(34, 127, 171, .11), rgba(140, 198, 109, .08));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .62);
}

.page-main .section-heading > small:not(:empty)::before,
.page-main .section-heading > div > small:not(:empty)::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(140, 198, 109, .14);
}

.page-main .section-heading h2 {
  text-wrap: balance;
}

.page-main .section-heading--center:not(:has(small:not(:empty)))::before {
  content: "";
  width: 52px;
  height: 5px;
  margin-bottom: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
}

.page-main > .section.section--soft:not(.section--home-services):not(.section--home-insights) {
  position: relative;
  background:
    radial-gradient(circle at 6% 12%, rgba(140, 198, 109, .12), transparent 24%),
    radial-gradient(circle at 94% 82%, rgba(34, 127, 171, .11), transparent 28%),
    linear-gradient(180deg, rgba(239, 246, 250, .94), rgba(248, 251, 252, .98));
}

.page-main > .section.section--soft:not(.section--home-services):not(.section--home-insights)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: clamp(86px, 10vw, 148px);
  height: 5px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
  transform: translateX(-50%);
}

.page-grid:not(.service-support-grid),
.feature-grid {
  counter-reset: visual-card;
}

.page-grid:not(.service-support-grid) > article:not(:has(img)),
.feature-grid > article:not(:has(img)) {
  --visual-card-color: #227fab;
  --visual-card-tint: rgba(34, 127, 171, .08);
  position: relative;
  overflow: hidden;
  counter-increment: visual-card;
  padding-top: 32px;
  border-color: rgba(34, 127, 171, .16);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .98) 0 78%, var(--visual-card-tint) 100%);
  box-shadow: 0 16px 34px rgba(16, 45, 63, .07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.page-grid:not(.service-support-grid) > article:not(:has(img)):nth-child(2),
.feature-grid > article:not(:has(img)):nth-child(2) {
  --visual-card-color: #4f966e;
  --visual-card-tint: rgba(79, 150, 110, .09);
}

.page-grid:not(.service-support-grid) > article:not(:has(img)):nth-child(3),
.feature-grid > article:not(:has(img)):nth-child(3) {
  --visual-card-color: #c9822f;
  --visual-card-tint: rgba(201, 130, 47, .09);
}

.page-grid:not(.service-support-grid) > article:not(:has(img)):nth-child(4),
.feature-grid > article:not(:has(img)):nth-child(4) {
  --visual-card-color: #177d8d;
  --visual-card-tint: rgba(23, 125, 141, .09);
}

.page-grid:not(.service-support-grid) > article:not(:has(img))::before,
.feature-grid > article:not(:has(img))::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--visual-card-color), transparent 78%);
}

.page-grid:not(.service-support-grid) > article:not(:has(img))::after,
.feature-grid > article:not(:has(img))::after {
  content: counter(visual-card, decimal-leading-zero);
  position: absolute;
  top: 13px;
  right: 17px;
  color: var(--visual-card-color);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  opacity: .72;
}

.stat-strip article,
.detail-kpis article,
.contact-detail-card,
.press-summary-grid article {
  position: relative;
  overflow: hidden;
}

.stat-strip article::before,
.detail-kpis article::before,
.contact-detail-card::before,
.press-summary-grid article::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), var(--brand));
}

.press-release {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(34, 127, 171, .14);
  border-left: 5px solid var(--brand);
  border-radius: 28px;
  background:
    radial-gradient(circle at 96% 4%, rgba(140, 198, 109, .13), transparent 24%),
    rgba(255, 255, 255, .97);
  box-shadow: 0 24px 50px rgba(16, 45, 63, .08);
}

.press-layout:has(> :only-child) {
  grid-template-columns: minmax(0, 1fr);
}

.press-layout > :only-child {
  width: min(100%, 920px);
  margin-inline: auto;
}

.press-release h2,
.press-related > h2,
.detail-section > h2 {
  display: flex;
  align-items: center;
  gap: 12px;
}

.press-release h2::before,
.press-related > h2::before,
.detail-section > h2::before {
  content: "";
  width: 7px;
  height: 1.1em;
  flex: 0 0 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--brand));
}

.press-release li::marker,
.bullet-list li::marker,
.company-info-list li::marker,
.catalog-module li::marker,
.spec-card li::marker {
  color: var(--brand);
  font-weight: 900;
}

.detail-link-grid a,
.catalog-module,
.spec-card,
.process-card {
  position: relative;
  overflow: hidden;
}

.detail-link-grid a::before,
.catalog-module::before,
.spec-card::before,
.process-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
}

.spec-table tbody tr:nth-child(even) {
  background: rgba(34, 127, 171, .035);
}

.spec-table tbody tr {
  transition: background-color 160ms ease;
}

.spec-table tbody th:first-child,
.spec-table tbody td:first-child {
  box-shadow: inset 4px 0 0 rgba(34, 127, 171, .34);
  color: var(--brand-deep);
  font-weight: 800;
}

.contact-form {
  position: relative;
  overflow: hidden;
  border-color: rgba(34, 127, 171, .18);
  background:
    radial-gradient(circle at 100% 0, rgba(140, 198, 109, .11), transparent 25%),
    rgba(255, 255, 255, .97);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(34, 127, 171, .11);
  outline: 0;
}

:is(.news-hub-card, .product-category-card, .service-target-card, .service-capability-card, .service-gallery-card, .company-site-row, .company-site-feature) img {
  transition: transform 260ms ease, filter 260ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .page-grid:not(.service-support-grid) > article:not(:has(img)):hover,
  .feature-grid > article:not(:has(img)):hover {
    transform: translateY(-4px);
    border-color: var(--visual-card-color);
    box-shadow: 0 22px 42px rgba(16, 45, 63, .12);
  }

  .spec-table tbody tr:hover {
    background: rgba(34, 127, 171, .075);
  }

  :is(.news-hub-card, .product-category-card, .service-target-card, .service-capability-card, .service-gallery-card, .company-site-row, .company-site-feature):hover img {
    transform: scale(1.025);
    filter: saturate(1.04);
  }
}

@media (max-width: 719px) {
  .page-main .section-heading > small:not(:empty),
  .page-main .section-heading > div > small:not(:empty) {
    min-height: 28px;
    padding: 5px 10px;
  }

  .page-grid:not(.service-support-grid) > article:not(:has(img)),
  .feature-grid > article:not(:has(img)) {
    padding-top: 28px;
    border-radius: 18px;
  }

  .press-release {
    padding: 22px 18px;
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-grid:not(.service-support-grid) > article:not(:has(img)),
  .feature-grid > article:not(:has(img)),
  .spec-table tbody tr,
  :is(.news-hub-card, .product-category-card, .service-target-card, .service-capability-card, .service-gallery-card, .company-site-row, .company-site-feature) img {
    transition: none;
  }

  .page-grid:not(.service-support-grid) > article:not(:has(img)):hover,
  .feature-grid > article:not(:has(img)):hover,
  :is(.news-hub-card, .product-category-card, .service-target-card, .service-capability-card, .service-gallery-card, .company-site-row, .company-site-feature):hover img {
    transform: none;
  }
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: 26px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(34, 127, 171, 0.12);
  box-shadow: var(--shadow);
}

.contact-form__grid {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label span {
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(34, 127, 171, 0.16);
  background: #fff;
  color: var(--text);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 144px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(34, 127, 171, 0.2);
  border-color: rgba(34, 127, 171, 0.4);
}

.contact-form__actions {
  display: grid;
  gap: 10px;
}

.contact-form__actions p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.feature-grid article,
.page-grid article,
.stat-strip article,
.card-grid a,
.list-block,
.panel-link,
.cta-panel {
  padding: 24px 22px;
}

.feature-grid article,
.page-grid article,
.stat-strip article,
.card-grid a,
.panel-link {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(217, 222, 227, 0.88);
}

.feature-grid h3,
.page-grid h3,
.stat-strip h3,
.card-grid h3,
.panel-link h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.feature-grid p,
.page-grid p,
.stat-strip p,
.card-grid p,
.panel-link p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.card-grid a {
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.section--home-services .card-grid a {
  background: rgba(255, 255, 255, 0.94);
}

.section--home-products .card-grid a {
  border-top: 4px solid rgba(34, 127, 171, 0.9);
}

.card-grid a:hover,
.card-grid a:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(16, 45, 63, 0.12);
  border-color: rgba(34, 127, 171, 0.36);
}

.card-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
}

.card-grid small {
  display: inline-block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-grid strong {
  display: inline-block;
  margin-top: 8px;
  color: var(--brand-deep);
  font-size: 14px;
  font-weight: 800;
}

.feature-grid--links {
  margin-top: 10px;
}

.panel-link {
  display: grid;
  gap: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.panel-link:hover,
.panel-link:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(16, 45, 63, 0.12);
  border-color: rgba(34, 127, 171, 0.36);
}

.panel-link small {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-strip {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.seo-strip div {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(216, 229, 237, 0.88);
  clip-path: polygon(0 0, 100% 0, calc(100% - 16px) 100%, 0 100%);
}

.seo-strip h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.seo-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.stat-strip strong {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-deep);
  font-size: 2rem;
  line-height: 1;
}

.page-hero {
  position: relative;
  min-height: calc(92vh - 74px);
  background: #101921;
  overflow: clip;
}

.page-hero__copy {
  min-height: calc(92vh - 74px);
  display: flex;
  align-items: flex-end;
  padding: 64px 0 54px;
  color: #fff;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 700;
}

.back-link:hover,
.back-link:focus-visible {
  color: #fff;
}

.news-list li + li,
.plain-list li + li,
.bullet-list li + li {
  margin-top: 10px;
}

.contact-bar,
.back-to-top-bar {
  position: fixed;
  right: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(22, 93, 128, 0.30);
}

#inquiry-section {
  scroll-margin-top: 112px;
}

.contact-bar {
  bottom: 18px;
}

.back-to-top-bar {
  bottom: 162px;
  width: 68px;
  height: 68px;
  justify-content: center;
  padding: 0;
  border: 2px solid rgba(34, 127, 171, 0.28);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  box-shadow:
    0 18px 34px rgba(16, 25, 33, 0.22),
    0 0 0 6px rgba(255, 255, 255, 0.18);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, bottom 180ms ease;
}

.back-to-top-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top-bar__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #ffffff;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 10px 18px rgba(34, 127, 171, 0.28);
}

.contact-bar__icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 15px;
  line-height: 1;
}

.site-footer {
  padding: 30px 0 46px;
  background: #227fab;
  color: rgba(255, 255, 255, 0.72);
}

.section-heading--inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading__link {
  color: var(--brand-deep);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.section-heading__link::after {
  content: " →";
}

.story-grid {
  display: grid;
  gap: 20px;
}

.story-grid article {
  padding: 30px 26px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 222, 227, 0.88);
  box-shadow: var(--shadow);
}

.story-grid h3 {
  margin: 0 0 10px;
  font-size: 1.5rem;
}

.story-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.story-grid small,
.panel-link small {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-band {
  display: grid;
  gap: 18px;
}

.news-cards,
.product-photo-grid {
  display: grid;
  gap: 18px;
}

.news-card,
.product-photo-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 222, 227, 0.88);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.section--home-news .news-card {
  border-top: 4px solid rgba(34, 127, 171, 0.92);
  border-radius: 24px;
}

.section--home-insights .news-band a {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  box-shadow: none;
}

.news-card:hover,
.news-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(16, 45, 63, 0.12);
  border-color: rgba(34, 127, 171, 0.36);
}

.square-thumb {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ffffff;
}

.square-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card small,
.product-photo-card small {
  display: inline-block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-card h3,
.product-photo-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  line-height: 1.25;
}

.news-card h3 {
  min-height: 3.1em;
}

.news-card p,
.product-photo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.news-card__body {
  display: grid;
  gap: 10px;
  align-content: start;
}

.news-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.news-card__meta span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.news-card__more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 800;
}

.news-card__more::after {
  content: "→";
}

.product-action-grid {
  display: grid;
  gap: 18px;
  margin-top: 20px;
}

.product-action-card {
  display: grid;
  gap: 8px;
  padding: 22px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(34, 127, 171, 0.12);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-action-card:hover,
.product-action-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(16, 45, 63, 0.12);
  border-color: rgba(34, 127, 171, 0.28);
}

.product-action-card small {
  display: inline-block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-action-card h3 {
  margin: 0;
  font-size: 1.08rem;
}

.product-action-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.product-photo-card {
  align-content: start;
}

.product-photo-card p {
  font-size: 14px;
}

.section--home-news .section-heading,
.section--home-insights .section-heading {
  margin-bottom: 24px;
}

.product-photo-grid {
  margin-top: 22px;
}

.product-photo-grid--spaced {
  margin-top: 28px;
}

.product-photo-card--link,
.news-card {
  text-decoration: none;
  color: inherit;
}

.product-photo-card--link:hover,
.product-photo-card--link:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(16, 45, 63, 0.12);
  border-color: rgba(34, 127, 171, 0.36);
}

.page-hero--product-hub .page-hero__media img,
.page-hero--category .page-hero__media img {
  object-position: center;
}

.product-category-grid,
.product-list-grid {
  display: grid;
  gap: 22px;
}

.product-category-card,
.product-list-card {
  display: grid;
  gap: 0;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(217, 222, 227, 0.88);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-category-card[hidden],
.product-list-card[hidden],
.news-hub-card[hidden],
.detail-list-card[hidden] {
  display: none !important;
}

.product-category-card:hover,
.product-category-card:focus-visible,
.product-list-card:hover,
.product-list-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(16, 45, 63, 0.12);
  border-color: rgba(34, 127, 171, 0.36);
}

.product-category-card__image,
.product-list-card .square-thumb {
  background: #ffffff;
}

.product-category-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 18px;
}

.product-category-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-list-card .square-thumb {
  aspect-ratio: 4 / 3;
  padding: 18px;
}

.product-list-card .square-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-category-card__body,
.product-list-card__body {
  display: grid;
  gap: 10px;
  padding: 24px 22px 26px;
}

.product-category-card__body {
  border-top: 6px solid #227fab;
}

.product-list-card__body {
  border-top: 1px solid rgba(217, 222, 227, 0.88);
}

.product-category-card small,
.product-list-card small,
.product-breadcrumb,
.product-feature-box h3 {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-category-card h3,
.product-list-card h3 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.15;
}

.product-category-card p,
.product-list-card p,
.product-detail-lead,
.product-feature-box li {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.product-category-card strong,
.product-list-card strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 800;
}

.product-category-card strong::after,
.product-list-card strong::after {
  content: "→";
}

.page-main--compact {
  padding-top: 32px;
}

.section--detail-hero {
  background: #227fab;
}

.product-detail-layout {
  display: grid;
  gap: 34px;
  align-items: start;
  padding: 28px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.product-detail-layout > .product-breadcrumb {
  grid-column: 1 / -1;
  margin-bottom: -6px;
}

.product-detail-copy {
  display: grid;
  gap: 22px;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  letter-spacing: 0.04em;
  color: #fff;
}

.product-breadcrumb a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 160ms ease, color 160ms ease;
}

.product-breadcrumb a:hover,
.product-breadcrumb a:focus-visible {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.72);
}

.product-breadcrumb a[aria-current="page"] {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
}

.product-breadcrumb span {
  color: #fff;
}

.product-detail-copy,
.product-detail-copy h1,
.product-detail-copy .product-detail-lead,
.product-detail-copy .product-breadcrumb {
  color: #fff;
}

.product-detail-copy .product-breadcrumb {
  color: #fff;
}

.product-detail-copy .product-breadcrumb span {
  color: #fff;
}

.product-detail-copy h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.product-detail-lead {
  max-width: 34rem;
  font-size: 1.02rem;
}

.product-detail-media {
  border: 1px solid rgba(217, 222, 227, 0.88);
  background: #fff;
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 36px);
  border-radius: 28px;
}

.product-detail-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.media-gallery {
  display: grid;
  gap: 14px;
}

.media-gallery__main {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
}

.media-gallery__main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.media-gallery--cover .media-gallery__main img {
  object-fit: cover;
}

.media-gallery__controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
}

.media-gallery__nav {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

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

.media-gallery__thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
}

.media-gallery__thumb.is-active {
  border-color: #fff;
}

.media-gallery__thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.product-feature-box {
  padding: 28px 26px;
  background: rgba(244, 246, 248, 0.96);
  border: 1px solid rgba(217, 222, 227, 0.88);
  border-radius: 24px;
}

.product-feature-box h3 {
  margin: 0 0 16px;
  font-size: 0.98rem;
}

.product-feature-box ul {
  margin: 0;
  padding-left: 20px;
}

.section--detail-hero .hero__actions .button {
  background: #fff;
  color: #227fab;
  border: 1px solid #fff;
  box-shadow: none;
}

.section--detail-hero .hero__actions .button-secondary,
.section--detail-hero .hero__actions .product-button-secondary {
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
}

.section--detail-hero .product-detail-media .media-gallery__nav {
  border-color: rgba(34, 127, 171, 0.22);
  background: rgba(34, 127, 171, 0.10);
  color: #227fab;
}

.section--detail-hero .product-detail-media .media-gallery__thumb {
  background: rgba(34, 127, 171, 0.10);
  border-color: transparent;
}

.section--detail-hero .product-detail-media .media-gallery__thumb.is-active {
  border-color: #227fab;
}

.product-button-secondary {
  color: var(--brand-deep);
  border-color: rgba(34, 127, 171, 0.22);
}

.product-browser-toolbar {
  display: grid;
  gap: 16px;
  margin: 0 0 28px;
}

.product-browser-toolbar--hub {
  max-width: 880px;
  margin: 0 auto 28px;
}

.product-search {
  position: relative;
  display: grid;
  gap: 8px;
}

.product-search span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-search input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(34, 127, 171, 0.16);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font: inherit;
  box-shadow: var(--shadow);
}

.product-search select {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(34, 127, 171, 0.16);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  box-shadow: var(--shadow);
}

.product-search select option {
  font-size: 16px;
}

.product-search input:focus,
.product-search select:focus {
  outline: 2px solid rgba(34, 127, 171, 0.18);
  border-color: rgba(34, 127, 171, 0.36);
}

.product-browser-toolbar--stacked {
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.product-browser-toolbar__top {
  display: grid;
  gap: 14px;
}

.product-browser-toolbar__actions {
  display: grid;
  gap: 12px;
}

.product-search--subgroup {
  max-width: 720px;
}

.product-search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 12;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(34, 127, 171, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 36px rgba(16, 45, 63, 0.12);
}

.product-search-suggestions[hidden] {
  display: none !important;
}

.product-search-suggestion {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 12px 14px;
  border: 0;
  border-radius: 14px;
  background: rgba(34, 127, 171, 0.06);
  color: var(--brand-deep);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.product-search-suggestion:hover,
.product-search-suggestion:focus-visible,
.product-search-suggestion.is-active {
  background: rgba(34, 127, 171, 0.14);
  transform: translateY(-1px);
  outline: none;
}

.product-search-suggestion strong {
  font-size: 15px;
}

.product-search-suggestion span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.product-view-switch {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-view-switch button {
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(34, 127, 171, 0.16);
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-deep);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--shadow);
}

.product-view-switch button.is-active {
  background: #227fab;
  border-color: #227fab;
  color: #fff;
}

.browser-empty-state {
  margin: 22px 0 0;
  padding: 18px 20px;
  border: 1px dashed rgba(34, 127, 171, 0.26);
  border-radius: 20px;
  background: rgba(34, 127, 171, 0.06);
  color: var(--brand-deep);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

.product-search-hint {
  margin: -12px auto 20px;
  max-width: 880px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.product-search-hint.is-match {
  color: #227fab;
  font-weight: 700;
}

.product-search-hint.is-error {
  color: #b14f3a;
  font-weight: 700;
}

.product-list-grid[data-view="list"] {
  gap: 14px;
}

.product-list-grid[data-view="list"] .product-list-card {
  border-radius: 18px;
}

.product-list-grid[data-view="list"] .square-thumb,
.product-list-grid[data-view="list"] .product-list-card__body p,
.product-list-grid[data-view="list"] .product-list-card__body small,
.product-list-grid[data-view="list"] .product-list-card__body strong {
  display: none;
}

.product-list-grid[data-view="list"] .product-list-card__body {
  padding: 18px 18px 20px;
  border-top: 0;
}

.product-list-grid[data-view="list"] .product-list-card__body h3 {
  font-size: 1.06rem;
}

.detail-hero {
  position: relative;
  padding: 44px 0 28px;
  background: #227fab;
}

.detail-hero__inner {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 28px 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.detail-hero__copy {
  display: grid;
  gap: 18px;
}

.detail-hero__copy,
.press-headline,
.press-headline p,
.press-subtitle,
.detail-hero__copy small,
.detail-hero__copy h1,
.detail-hero__copy .back-link {
  color: #fff;
}

.detail-hero__copy .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.detail-hero__copy .eyebrow::before {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.42));
}

.detail-hero__copy .back-link {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.10);
}

.detail-hero__copy h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.02;
}

.detail-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.9;
  max-width: 60ch;
}

.detail-tags,
.detail-kpis,
.detail-link-grid,
.detail-gallery,
.press-facts {
  display: grid;
  gap: 14px;
}

.detail-tags {
  grid-template-columns: repeat(auto-fit, minmax(160px, max-content));
}

.detail-tags span,
.detail-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34, 127, 171, 0.1);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.detail-hero__media,
.detail-media-card,
.press-cover {
  overflow: hidden;
  background: #227fab;
  box-shadow: var(--shadow);
  border-radius: 28px;
}

.detail-hero__media img,
.detail-media-card img,
.press-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-shell {
  display: grid;
  gap: 24px;
}

.detail-kpis {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.detail-kpis article,
.detail-panel,
.detail-list-card,
.detail-link-grid a,
.press-fact-card,
.press-contact,
.press-note {
  padding: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 222, 227, 0.88);
  box-shadow: var(--shadow);
}

.detail-kpis small,
.detail-list-card small,
.press-fact-card small,
.press-contact small,
.press-note small {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-kpis h3,
.detail-list-card h3,
.press-fact-card h3,
.press-contact h3,
.press-note h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.detail-kpis p,
.detail-panel p,
.detail-list-card p,
.detail-link-grid p,
.press-release p,
.press-contact p,
.press-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.detail-columns {
  display: grid;
  gap: 22px;
}

.detail-panel h2,
.detail-section h2,
.press-release h2,
.press-related h2 {
  margin: 0 0 14px;
  font-size: 1.7rem;
}

.detail-panel ul,
.detail-list-card ul,
.press-release ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.detail-media-card figcaption {
  padding: 14px 16px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  background: rgba(255, 255, 255, 0.96);
}

.detail-section {
  display: grid;
  gap: 20px;
}

.detail-link-grid a {
  display: grid;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.detail-link-grid a:hover,
.detail-link-grid a:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(16, 45, 63, 0.12);
  border-color: rgba(34, 127, 171, 0.36);
}

.detail-link-grid a.is-cta {
  background: #227fab;
  border-color: #227fab;
  color: #fff;
}

.detail-link-grid a.is-cta small,
.detail-link-grid a.is-cta h3,
.detail-link-grid a.is-cta p {
  color: #fff;
}

.press-layout {
  display: grid;
  gap: 24px;
}

.press-headline {
  display: grid;
  gap: 10px;
}

.press-headline p,
.press-subtitle {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.detail-hero .press-subtitle {
  color: #fff;
}

.press-release {
  display: grid;
  gap: 16px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.press-release p + p {
  margin-top: -4px;
}

.news-article--editorial .press-release {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}
.news-article--editorial [data-news-body] { font-size: clamp(16px, 1.25vw, 18px); line-height: 1.95; }
.news-article--editorial [data-news-body] p { margin: 0 0 1.5em; line-height: inherit; color: #364650; }
.news-article--editorial [data-news-body] h3 { margin: 2.2em 0 .8em; font-size: clamp(21px, 1.8vw, 26px); line-height: 1.6; color: #182f3d; }
.news-article--editorial [data-news-body] strong { font-weight: 750; color: #182f3d; }
.news-article--editorial [data-news-body] .news-body-list { margin: 1.2em 0 2em; padding-left: 1.5em; display: block; }
.news-article--editorial .news-body-list li { padding-left: .25em; margin-bottom: 1em; line-height: 1.95; color: #364650; }

/* Allow long English component names to wrap inside the responsive grid. */
.product-detail-copy, .product-detail-media, .product-breadcrumb { min-width: 0; max-width: 100%; }
.product-detail-copy h1, .product-breadcrumb a { overflow-wrap: anywhere; }

.press-facts {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.press-related {
  display: grid;
  gap: 16px;
}

.press-related a {
  text-decoration: none;
  color: inherit;
}

.cta-slab {
  display: grid;
  gap: 14px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(10, 35, 64, 0.96), rgba(18, 82, 116, 0.92));
  color: #fff;
  box-shadow: var(--shadow);
}

.detail-pager {
  display: grid;
  gap: 18px;
}

.detail-pager__item {
  display: grid;
  gap: 10px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 222, 227, 0.88);
  box-shadow: var(--shadow);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.detail-pager__item:hover,
.detail-pager__item:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(16, 45, 63, 0.12);
  border-color: rgba(34, 127, 171, 0.36);
}

.detail-pager__item--center {
  background: linear-gradient(135deg, rgba(10, 35, 64, 0.96), rgba(18, 82, 116, 0.92));
  color: #fff;
}

.detail-pager__item small,
.catalog-module small,
.spec-card small,
.process-card small {
  display: inline-block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-pager__item--center small,
.detail-pager__item--center p,
.detail-pager__item--center h3 {
  color: #fff;
}

.detail-pager__item h3,
.catalog-module h3,
.spec-card h3,
.process-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.detail-pager__item p,
.catalog-module p,
.spec-card p,
.process-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.detail-pager__item--center h3,
.detail-pager__item--center p,
.detail-pager__item--center small {
  color: #fff;
}

.news-hub-grid {
  display: grid;
  gap: 22px;
}

.news-hub-card {
  display: grid;
  gap: 0;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(217, 222, 227, 0.88);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.news-hub-card:hover,
.news-hub-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 44px rgba(16, 45, 63, 0.12);
  border-color: rgba(34, 127, 171, 0.36);
}

.news-hub-card .square-thumb {
  background: linear-gradient(180deg, rgba(34, 127, 171, 0.10), rgba(255, 255, 255, 0.94));
}

.news-hub-card__body {
  display: grid;
  gap: 10px;
  padding: 24px 22px 26px;
}

.news-hub-grid[data-view="list"] {
  gap: 14px;
}

.news-hub-grid[data-view="list"] .square-thumb,
.news-hub-grid[data-view="list"] .news-hub-card__body p,
.news-hub-grid[data-view="list"] .news-hub-card__body .news-card__more,
.news-hub-grid[data-view="list"] .news-hub-card__body .news-card__meta small {
  display: none;
}

.news-hub-grid[data-view="list"] .news-hub-card__body {
  padding: 18px 18px 20px;
}

.catalog-modules,
.spec-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.catalog-module,
.spec-card,
.process-card {
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 222, 227, 0.88);
  box-shadow: var(--shadow);
}

.catalog-module {
  border-top: 4px solid rgba(34, 127, 171, 0.88);
  border-radius: 22px;
}

.catalog-module ul,
.spec-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.spec-table-wrap {
  margin-top: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(34, 127, 171, 0.12);
  box-shadow: var(--shadow);
}

.section--product-video {
  background: #fff;
}

.product-video-shell {
  width: min(100%, 1080px);
}

.product-video-heading {
  margin-bottom: 24px;
}

.product-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid rgba(34, 127, 171, 0.16);
  border-radius: clamp(16px, 2.5vw, 28px);
  background: #000;
  box-shadow: 0 24px 56px rgba(16, 25, 33, 0.16);
}

.product-video-frame iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.product-video-external {
  display: block;
  width: fit-content;
  margin: 14px auto 0;
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.spec-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
}

.spec-table thead th {
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(34, 127, 171, 0.12), rgba(34, 127, 171, 0.04));
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
}

.spec-table tbody th,
.spec-table tbody td {
  padding: 18px;
  border-top: 1px solid rgba(34, 127, 171, 0.1);
  vertical-align: top;
  text-align: left;
}

.spec-table tbody th {
  width: 220px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-table tbody td {
  color: var(--text);
  font-size: 15px;
  line-height: 1.8;
}

.spec-table tbody tr:nth-child(even) {
  background: rgba(140, 198, 109, 0.05);
}

.catalog-module ul li + li,
.spec-card ul li + li {
  margin-top: 8px;
}

.process-card {
  background: linear-gradient(180deg, rgba(239, 246, 250, 0.96), rgba(255, 255, 255, 0.96));
}

.cta-slab p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
}

.cta-slab .hero__actions {
  margin-top: 4px;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 92px;
  z-index: 60;
  display: grid;
  justify-items: end;
  gap: 10px;
}

.floating-contact__actions {
  display: grid;
  gap: 10px;
  justify-items: end;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transform-origin: right bottom;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-contact.is-open .floating-contact__actions {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-contact__toggle,
.floating-contact__action {
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(22, 93, 128, 0.22);
}

.floating-contact__toggle {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
}

.floating-contact__toggle span {
  transition: transform 180ms ease;
}

.floating-contact.is-open .floating-contact__toggle span {
  transform: rotate(45deg);
}

.floating-contact__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  padding: 0;
  background: rgba(255, 255, 255, 0.98);
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 800;
}

.floating-contact__action svg {
  width: 32px;
  height: 32px;
  display: block;
}

.floating-contact__action-mark {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.floating-contact__action--messenger {
  color: #0866ff;
}

.floating-contact__action--line {
  color: #06c755;
}

body.has-floating-contact .contact-bar {
  right: 18px;
  bottom: 18px;
}

body.has-floating-contact .back-to-top-bar {
  right: 18px;
  bottom: 160px;
  width: 58px;
  height: 58px;
  z-index: 70;
}

body.has-floating-contact .floating-contact.is-open ~ .back-to-top-bar {
  bottom: 364px;
}

.news-band a {
  display: grid;
  gap: 10px;
  padding: 24px 24px 22px;
  background: rgba(255, 255, 255, 0.98);
}

.news-band strong {
  font-size: 1.15rem;
}

.news-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.anchor-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.anchor-strip a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(217, 222, 227, 0.88);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 800;
}

.hierarchy-grid,
.family-grid {
  display: grid;
  gap: 18px;
}

.hierarchy-card,
.family-card {
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 222, 227, 0.88);
  box-shadow: var(--shadow);
}

.hierarchy-card small,
.family-card small,
.category-block small {
  display: inline-block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hierarchy-card h3,
.family-card h3,
.category-block h3 {
  margin: 10px 0 8px;
  font-size: 1.25rem;
}

.hierarchy-card p,
.family-card p,
.category-block p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.category-stack {
  display: grid;
  gap: 28px;
}

.category-block {
  display: grid;
  gap: 18px;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(217, 222, 227, 0.88);
  box-shadow: var(--shadow);
}

.mini-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.mini-list li + li {
  margin-top: 8px;
}

.site-footer__inner {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.site-footer strong {
  color: #fff;
}

/* 2026-06-14 refresh: simplify homepage and align colors to brand blue + green */
:root {
  --brand: #227fab;
  --brand-deep: #124863;
  --accent: #8cc66d;
  --signal: #227fab;
  --signal-deep: #124863;
}

body {
  background:
    radial-gradient(circle at top right, rgba(140, 198, 109, 0.10), transparent 24%),
    linear-gradient(180deg, #f7fafb 0%, #ffffff 24%, #f1f6f8 100%);
}

.hero__overlay::after,
.page-hero__overlay::after {
  height: 108px;
  background: linear-gradient(180deg, rgba(16, 25, 33, 0), rgba(16, 25, 33, 0.92));
  clip-path: inset(0);
}

.home-links,
.stat-strip,
.story-grid {
  display: none;
}

.section--home-services::before,
.section--home-insights::before {
  background: none;
}

.section--home-services::after,
.section--home-insights::after,
.section--home-products::before,
.section--home-news::before {
  display: none;
}

.section--home-services,
.section--home-products,
.section--home-news,
.section--home-insights {
  background: transparent;
}

.section--home-services .section-heading small,
.section--home-services .section-heading h2,
.section--home-services .section-heading p,
.section--home-services .section-heading__link,
.section--home-insights .section-heading small,
.section--home-insights .section-heading h2,
.section--home-insights .section-heading p {
  color: inherit;
}

.section--home-services .section-heading p,
.section--home-insights .section-heading p {
  color: var(--muted);
}

.split--hero-follow .split__panel {
  border-left: 0;
  border-radius: 0;
}

.card-grid a,
.panel-link,
.detail-pager__item,
.company-teaser,
.company-panel,
.spec-card,
.catalog-module,
.detail-kpis article,
.detail-panel,
.detail-list-card,
.press-fact-card,
.press-contact,
.press-note {
  border-radius: 24px;
}

.card-grid a {
  gap: 18px;
  border: 1px solid rgba(34, 127, 171, 0.12);
}

.card-grid img {
  clip-path: none;
  border-radius: 18px;
}

.section--home-services .card-grid a,
.section--home-products .card-grid a {
  border-top: 0;
}

.section--home-services .card-grid a::before,
.section--home-products .card-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  border: 1px solid rgba(34, 127, 171, 0.08);
}

.section--home-products .card-grid a {
  background: linear-gradient(180deg, rgba(34, 127, 171, 0.06), rgba(255, 255, 255, 0.96));
}

.news-cards {
  grid-template-columns: 1fr;
}

.news-card {
  border-top: 0;
  border-radius: 28px;
  overflow: hidden;
}

.news-card .square-thumb {
  aspect-ratio: 16 / 9;
  border-radius: 18px;
}

.news-card--featured {
  padding: 24px;
  background: linear-gradient(180deg, rgba(34, 127, 171, 0.16), rgba(255, 255, 255, 0.96));
}

.news-card--featured h3 {
  min-height: 0;
  font-size: 1.7rem;
}

.section--home-services .section-heading,
.section--home-products .section-heading,
.section--home-news .section-heading,
.section--home-insights .section-heading {
  justify-items: center;
  text-align: center;
}

.section--home-services .section-heading.section-heading--inline,
.section--home-products .section-heading.section-heading--inline,
.section--home-news .section-heading.section-heading--inline {
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.section--home-services .section-heading small,
.section--home-products .section-heading small,
.section--home-news .section-heading small,
.section--home-insights .section-heading small {
  color: #227fab;
  font-size: 13px;
}

.section--home-services .section-heading h2,
.section--home-products .section-heading h2,
.section--home-news .section-heading h2,
.section--home-insights .section-heading h2 {
  color: #227fab;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
}

.section--home-services .section-heading p,
.section--home-products .section-heading p,
.section--home-news .section-heading p,
.section--home-insights .section-heading p {
  margin-inline: auto;
}

.news-card--compact {
  grid-template-columns: 150px 1fr;
  align-items: center;
}

.news-card--compact .square-thumb {
  aspect-ratio: 1 / 1;
}

.cta-slab--home,
.cta-slab--quote {
  border-radius: 28px;
}

.cta-slab--home {
  background: #227fab;
}

.cta-slab--home .button,
.cta-slab--quote .button {
  background: #fff;
  color: var(--brand-deep);
}

.cta-slab--home .button-secondary,
.cta-slab--quote .button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
}

.company-teaser-grid {
  display: grid;
  gap: 24px;
}

.company-entry-heading {
  margin-bottom: 28px;
}

.company-teaser {
  display: grid;
  gap: 0;
  padding: 0;
  border: 1px solid rgba(34, 127, 171, 0.1);
  border-bottom-width: 4px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  box-shadow: 0 18px 38px rgba(18, 72, 99, 0.08);
  text-align: left;
  cursor: pointer;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.company-teaser img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  transition: transform 220ms ease;
}

.company-teaser--logo img {
  object-fit: contain;
  background: #fff;
  padding: 16px;
}

.company-teaser--map img {
  object-fit: contain;
  background: #fff;
  padding: 12px;
}

.company-teaser span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 8px;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.company-teaser p {
  margin: 0;
  padding: 0 18px 20px;
  color: var(--muted);
  line-height: 1.75;
}

.company-teaser span::after {
  content: "→";
  color: var(--brand);
}

.company-teaser:hover,
.company-teaser:focus-visible,
.company-teaser.is-active span {
  color: var(--brand);
}

.company-teaser:hover,
.company-teaser:focus-visible,
.company-teaser.is-active {
  transform: translateY(-4px);
  box-shadow: 0 26px 48px rgba(18, 72, 99, 0.12);
  border-color: rgba(34, 127, 171, 0.24);
}

.company-teaser:hover img,
.company-teaser:focus-visible img,
.company-teaser.is-active img {
  transform: scale(1.03);
}

.company-panels {
  display: grid;
  gap: 24px;
}

.company-info-showcase--stream {
  display: grid;
  gap: 30px;
}

.company-site-feature {
  display: grid;
  gap: 24px;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(34, 127, 171, 0.16);
}

.company-site-feature__media,
.company-site-row__media {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(34, 127, 171, 0.14), rgba(34, 127, 171, 0.05));
}

.company-site-feature__media img,
.company-site-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-site-feature__media img {
  aspect-ratio: 1.28 / 1;
}

.company-site-feature__media--logo {
  background: #fff;
  padding: 24px;
}

.company-site-feature__media--logo img {
  object-fit: contain;
  background: #fff;
}

.company-site-feature__media--full {
  background: #fff;
  padding: 12px;
}

.company-site-feature__media--full img {
  object-fit: contain;
  background: #fff;
}

.company-site-feature__media.company-site-feature__media--tier-map {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.company-site-feature__media--tier-map img {
  display: block;
  object-fit: contain;
  object-position: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.company-site-feature__body,
.company-site-row__body {
  display: grid;
}

.company-site-feature__body {
  gap: 12px;
}

.company-site-feature__body small,
.company-site-row__body small {
  display: inline-block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.company-site-feature__body h3,
.company-site-row__body h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2.35rem);
  line-height: 1.08;
  color: var(--brand-deep);
}

.company-site-feature--company-overview .company-site-feature__body h3 {
  font-size: clamp(2.15rem, 2.8vw, 3.15rem);
  color: #111;
}

.company-site-feature__body p,
.company-site-row__body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.company-site-stream {
  display: grid;
  gap: 24px;
}

.company-site-row {
  display: grid;
  gap: 18px;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(217, 222, 227, 0.88);
}

.company-site-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.company-site-row__media img {
  aspect-ratio: 1.18 / 1;
}

.company-site-row__body {
  gap: 10px;
}

.company-info-list {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.company-info-list--primary {
  color: #111;
  font-size: 1.12rem;
  line-height: 1.7;
}

.company-info-list--primary .company-info-label {
  color: #111;
  font-weight: 800;
}

.company-info-list a {
  color: var(--brand-deep);
  text-decoration: underline;
  text-decoration-color: rgba(18, 72, 99, 0.28);
  text-underline-offset: 3px;
}

.company-info-list a:hover,
.company-info-list a:focus-visible {
  color: var(--brand);
  text-decoration-color: rgba(34, 127, 171, 0.44);
}

.company-panel {
  padding: 0;
  background: transparent;
}

.company-panel small {
  display: inline-block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.company-panel .split__panel {
  border-left: 6px solid var(--brand);
  border-radius: 28px;
}

.company-site-feature--company-overview .company-site-feature__media img,
.company-summary-split__image img {
  object-fit: cover;
}

.company-stat-strip {
  margin-top: 6px;
}

.company-summary-grid {
  margin-top: 8px;
}

.company-qualification-summary {
  display: grid;
  gap: 12px;
  padding: 28px 28px 30px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(241, 247, 250, 0.98), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(34, 127, 171, 0.12);
  box-shadow: var(--shadow);
}

.company-qualification-summary h3 {
  margin: 0;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.15;
  color: var(--brand-deep);
}

.company-qualification-summary p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.company-milestone-list {
  display: grid;
  gap: 16px;
}

.company-milestone-item {
  display: grid;
  grid-template-columns: 94px 92px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(34, 127, 171, 0.12);
  box-shadow: var(--shadow);
}

.company-milestone-item strong {
  color: var(--brand);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.company-milestone-item img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  align-self: center;
}

.company-milestone-item h3 {
  margin: 0 0 8px;
  color: #111;
  font-size: 1.2rem;
  line-height: 1.35;
}

.company-milestone-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

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

.company-history-gallery__item {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(34, 127, 171, 0.12);
  box-shadow: var(--shadow);
}

.company-history-gallery__item img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 1.32 / 1;
  object-fit: cover;
}

.company-history-gallery__item p {
  margin: 0;
  color: #111;
  font-weight: 700;
  line-height: 1.5;
}

.company-positioning-grid {
  display: grid;
  gap: 18px;
}

.company-positioning-card {
  display: grid;
  gap: 16px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(34, 127, 171, 0.12);
  box-shadow: var(--shadow);
}

.company-positioning-card img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.company-positioning-card div {
  display: grid;
  gap: 10px;
}

.company-positioning-card small {
  margin-bottom: 0;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.company-positioning-card h3 {
  margin: 0;
  color: #111;
  font-size: 1.22rem;
  line-height: 1.35;
}

.company-positioning-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.company-case-grid {
  display: grid;
  gap: 18px;
}

.company-case-card {
  display: grid;
  gap: 16px;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(34, 127, 171, 0.12);
  box-shadow: var(--shadow);
}

.company-case-card img {
  width: 100%;
  border-radius: 18px;
  aspect-ratio: 1.2 / 1;
  object-fit: contain;
  background: #fff;
  padding: 10px;
}

.company-case-card div {
  display: grid;
  gap: 10px;
}

.company-case-card small {
  margin-bottom: 0;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.company-case-card h3 {
  margin: 0;
  color: #111;
  font-size: 1.22rem;
  line-height: 1.35;
}

.company-case-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.company-certifications {
  display: grid;
  gap: 18px;
  padding: 26px 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(34, 127, 171, 0.12);
  box-shadow: var(--shadow);
}

.company-info-heading--compact {
  gap: 6px;
}

.company-info-heading--compact h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  color: var(--brand-deep);
}

.company-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.company-logo-grid--factory {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.company-logo-grid--service {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.company-logo-card {
  display: grid;
  justify-items: center;
  align-content: stretch;
  gap: 10px;
  min-height: 156px;
  padding: 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(240, 247, 251, 0.98), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(34, 127, 171, 0.1);
}

.company-logo-card__media {
  width: 100%;
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 16px 14px;
  border-radius: 18px;
  background: #fff;
}

.company-logo-card img {
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
}

.company-logo-card span {
  color: var(--brand-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.company-logo-card--captioned span {
  min-height: 40px;
  display: grid;
  place-items: center;
}

.company-logo-card--logo-only {
  min-height: 132px;
  padding: 12px;
}

.company-logo-card--logo-only .company-logo-card__media {
  min-height: 108px;
}

.company-panel[hidden] {
  display: none;
}

.press-quote {
  padding: 24px 24px 24px 28px;
  border-left: 5px solid var(--accent);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(34, 127, 171, 0.08), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow);
}

.press-quote p {
  margin: 0;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.9;
}

.press-quote strong {
  display: inline-block;
  margin-top: 12px;
  color: var(--brand);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.press-summary-grid {
  display: grid;
  gap: 18px;
}

.press-summary-grid article {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(34, 127, 171, 0.12);
  box-shadow: var(--shadow);
}

.press-summary-grid small {
  display: inline-block;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.press-summary-grid h3 {
  margin: 10px 0 8px;
  font-size: 1.08rem;
}

.press-summary-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.hero__copy > div,
.page-hero__copy > div,
.split__panel,
.detail-panel,
.detail-list-card,
.detail-kpis article,
.catalog-module,
.spec-card,
.cta-slab,
.press-fact-card,
.press-contact,
.press-note,
.press-quote,
.press-summary-grid article,
.home-focus-grid article,
.news-summary-strip article,
.contact-intro-grid article,
.contact-detail-card,
.detail-link-grid a,
.news-card,
.company-teaser {
  will-change: transform, opacity;
}

.spec-grid {
  display: grid;
  gap: 18px;
}

.spec-card {
  border-top: 4px solid var(--accent);
  background: linear-gradient(180deg, rgba(140, 198, 109, 0.08), rgba(255, 255, 255, 0.96));
}

.spec-card ul {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.spec-card ul li + li {
  margin-top: 8px;
}

.page-hero--company {
  min-height: calc(92vh - 74px);
}

.page-hero--company .page-hero__copy {
  min-height: calc(92vh - 74px);
}

@media (min-width: 720px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
  }

  .brand {
    min-width: 0;
  }

  .header-actions {
    margin-left: 0;
    justify-self: end;
    flex: 0 0 auto;
  }

  .nav {
    min-width: 0;
    flex: 0 1 auto;
    justify-content: center;
    justify-self: stretch;
    flex-wrap: nowrap;
    gap: 10px 14px;
  }

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

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

  .stat-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .seo-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .home-focus-grid,
  .news-summary-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-proof__grid,
  .product-action-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-intro-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .company-logo-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .company-logo-grid--factory {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .company-logo-grid--service {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .company-site-feature {
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  }

  .company-site-stream {
    gap: 28px;
  }

  .company-site-row {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
  }

  .company-positioning-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .company-case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .news-band {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .news-cards {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .news-card--featured {
    grid-row: span 2;
  }

  .company-teaser-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .detail-pager,
  .catalog-modules,
  .spec-grid,
  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-browser-toolbar {
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: end;
  }

  .product-browser-toolbar--stacked {
    grid-template-columns: minmax(0, 1fr);
    align-items: stretch;
  }

  .product-browser-toolbar--stacked .product-browser-toolbar__top {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 16px;
  }

  .product-browser-toolbar__actions {
    grid-template-columns: auto auto;
    align-items: end;
  }

  .product-browser-toolbar--stacked .product-search--subgroup {
    max-width: min(720px, 100%);
  }

  .news-hub-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .detail-hero__inner,
  .detail-columns,
  .press-layout,
  .product-detail-layout {
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  }

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

  .product-category-grid,
  .product-list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .product-photo-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-photo-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 960px) {
  .split {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: stretch;
  }

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

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

  .press-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  }

  .split--reverse {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .split--reverse .split__image {
    order: 2;
  }

  .split--reverse .split__panel {
    order: 1;
  }
}

@media (max-width: 959px) {
  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    row-gap: 8px;
  }

  .brand {
    grid-column: 1;
    justify-self: start;
  }

  .header-actions {
    grid-column: 2;
    justify-self: end;
    margin-left: 0;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: center;
    justify-self: stretch;
    flex: 0 1 auto;
    width: 100%;
    padding-top: 2px;
  }

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

  .company-logo-grid--service {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  .site-header__inner {
    display: flex;
    justify-content: space-between;
  }

  .hero {
    min-height: calc(84vh - 74px);
  }

  .hero__copy {
    min-height: calc(84vh - 74px);
    padding-bottom: 52px;
  }

  .page-hero {
    min-height: calc(84vh - 74px);
  }

  .page-hero__copy,
  .page-hero--company .page-hero__copy {
    min-height: calc(84vh - 74px);
    padding-bottom: 52px;
  }

  .section {
    padding: 58px 0;
  }

  .product-category-card__body,
  .product-list-card__body,
  .product-feature-box {
    padding: 22px 20px;
  }

  .product-detail-copy h1 {
    font-size: clamp(2.1rem, 11vw, 3.1rem);
  }

  .product-detail-layout {
    gap: 22px;
  }

  .product-detail-layout > .product-breadcrumb {
    order: -2;
    margin-bottom: 0;
  }

  .product-detail-media {
    order: -1;
    padding: 16px;
    border-radius: 22px;
  }

  .media-gallery {
    gap: 12px;
  }

  .media-gallery__controls {
    grid-template-columns: 1fr;
  }

  .media-gallery__nav {
    display: none;
  }

  .media-gallery__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .spec-table {
    min-width: 0;
  }

  .spec-table thead {
    display: none;
  }

  .spec-table,
  .spec-table tbody,
  .spec-table tr,
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table tbody tr {
    padding: 18px 18px 16px;
  }

  .spec-table tbody tr + tr {
    border-top: 1px solid rgba(34, 127, 171, 0.1);
  }

  .spec-table tbody th,
  .spec-table tbody td {
    padding: 0;
    border-top: 0;
  }

  .spec-table tbody th {
    margin-bottom: 8px;
    width: auto;
  }

  .spec-table tbody td {
    line-height: 1.7;
  }

  .section-heading--inline {
    align-items: start;
    flex-direction: column;
  }

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

  .company-teaser-grid {
    gap: 20px;
  }

  .brand {
    order: 1;
  }

  .header-actions {
    order: 2;
  }

  .nav {
    order: 3;
  }

  .brand img {
    width: 150px;
    height: 75px;
  }

  .header-actions {
    gap: 8px;
    flex-shrink: 0;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    gap: 10px;
    font-size: 12px;
    width: 100%;
    padding: 12px 0 4px;
    flex-direction: column;
    align-items: stretch;
    border-top: 1px solid rgba(217, 222, 227, 0.88);
  }

  .nav-cta {
    padding: 10px 14px;
    font-size: 12px;
    background: #227fab;
    color: #fff;
    border: 1px solid #227fab;
    box-shadow: 0 14px 24px rgba(34, 127, 171, 0.24);
  }

  .site-header.is-open .nav {
    display: flex;
  }

  .nav a {
    padding: 10px 12px;
    background: #227fab;
    color: #fff;
    border: 1px solid rgba(18, 72, 99, 0.26);
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(34, 127, 171, 0.18);
  }

  .nav-cta {
    justify-content: center;
  }

  .nav-group {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    width: 100%;
    gap: 6px;
  }

  .nav-group .nav-parent {
    min-width: 0;
  }

  .nav-submenu-toggle {
    width: 44px;
    height: 100%;
    min-height: 42px;
    margin: 0;
    border: 1px solid rgba(18, 72, 99, 0.26);
    border-radius: 14px;
    background: #227fab;
    color: #fff;
    box-shadow: 0 10px 20px rgba(34, 127, 171, 0.18);
  }

  .nav-submenu-toggle:hover,
  .nav-submenu-toggle:focus-visible,
  .nav-group--cta .nav-submenu-toggle {
    background: #227fab;
    color: #fff;
  }

  .nav-submenu {
    position: static;
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    padding: 6px;
    transform: none;
    border-radius: 14px;
    box-shadow: none;
  }

  .nav-group.is-submenu-open .nav-submenu {
    display: grid;
    gap: 4px;
  }

  .nav .nav-submenu a {
    padding: 10px 12px;
    border-color: rgba(34, 127, 171, 0.12);
    background: #fff;
    color: var(--brand-deep);
    box-shadow: none;
  }

  .nav a.is-current:not(.nav-cta),
  .nav .nav-submenu a.is-current,
  .nav-cta.is-current {
    border-color: var(--accent);
    background: var(--brand-deep);
    color: #fff;
    text-decoration: none;
    box-shadow: inset 0 -3px 0 var(--accent), 0 10px 20px rgba(18, 72, 99, 0.22);
  }

  .nav-group.is-current > .nav-submenu-toggle {
    border-color: var(--accent);
    background: var(--brand-deep);
    color: #fff;
    box-shadow: inset 0 -3px 0 var(--accent), 0 10px 20px rgba(18, 72, 99, 0.22);
  }

  .nav-submenu::before {
    display: none;
  }

  .company-site-feature {
    gap: 18px;
    padding-bottom: 24px;
  }

  .company-site-feature__media,
  .company-site-row__media {
    border-radius: 22px;
  }

  .company-site-feature__body h3,
  .company-site-row__body h3 {
    font-size: 1.45rem;
  }

  .company-site-stream {
    gap: 20px;
  }

  .company-site-row {
    gap: 14px;
    padding-bottom: 20px;
  }

  .company-milestone-item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .company-milestone-item img {
    width: 78px;
    height: 78px;
  }

  .company-history-gallery {
    grid-template-columns: 1fr;
  }

  .company-positioning-card {
    gap: 14px;
    padding: 14px;
  }

  .company-case-card {
    gap: 14px;
    padding: 14px;
  }

  .product-list-grid[data-view="list"] {
    gap: 14px;
  }

  .product-list-grid[data-view="list"] .product-list-card {
    border-radius: 18px;
  }

  .product-list-grid[data-view="list"] .square-thumb,
  .product-list-grid[data-view="list"] .product-list-card__body p,
  .product-list-grid[data-view="list"] .product-list-card__body small,
  .product-list-grid[data-view="list"] .product-list-card__body strong {
    display: none;
  }

  .product-list-grid[data-view="list"] .product-list-card__body {
    padding: 18px 18px 20px;
    border-top: 0;
  }

  .product-list-grid[data-view="list"] .product-list-card__body h3 {
    font-size: 1.06rem;
  }

  .floating-contact {
    right: 14px;
    bottom: 88px;
  }

body.has-floating-contact .contact-bar {
  right: 14px;
  bottom: 14px;
}

  body.has-floating-contact .back-to-top-bar {
    right: 14px;
    bottom: 156px;
  }

  body.has-floating-contact .floating-contact.is-open ~ .back-to-top-bar {
    bottom: 360px;
  }

  .contact-bar {
    font-size: 13px;
    padding: 12px 16px;
  }

  .back-to-top-bar {
    width: 58px;
    height: 58px;
    padding: 0;
  }

  .back-to-top-bar__icon {
    width: 38px;
    height: 38px;
    font-size: 25px;
  }
}



/* ── 產品規格書下載按鈕 ── */
.button--pdf {
  background: transparent;
  color: #227fab !important;
  border: 1.5px solid #227fab;
  box-shadow: none;
  text-decoration: none;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  gap: 0;
  padding: 0.7em 1.4em;
  font-weight: 600;
  font-size: inherit;
  line-height: 1;
}
.button--pdf:hover {
  background: #227fab;
  color: #fff !important;
}

@media (max-width: 479px) {
  .company-qualification-summary {
    padding: 24px 20px;
  }

  .company-logo-grid--factory,
  .company-logo-grid--service {
    grid-template-columns: 1fr;
  }
}
/* Company page: lightweight scroll storytelling */
.page-hero--company .page-hero__media img { animation: company-hero-drift 16s ease-in-out infinite alternate; transform-origin: center; }
.company-teaser-grid { position: relative; top: auto; z-index: auto; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; margin-bottom: 36px; padding: 0; background: transparent; border: 0; border-radius: 0; backdrop-filter: none; }
.company-teaser { min-height: 96px; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.company-teaser:hover, .company-teaser:focus-visible { transform: translateY(-3px); border-color: var(--accent, #e63f3f); box-shadow: 0 12px 24px rgba(10, 37, 64, .12); }
.company-panel { scroll-margin-top: 128px; content-visibility: auto; contain-intrinsic-size: 720px; }
.company-panel + .company-panel { margin-top: 8rem; }
@keyframes company-hero-drift { from { transform: scale(1.02); } to { transform: scale(1.07); } }
@media (max-width: 760px) { .company-teaser-grid { top: auto; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; padding: 0; } .company-teaser { min-height: 74px; } .company-teaser p { display: none; } .company-panel + .company-panel { margin-top: 4.5rem; } }
@media (prefers-reduced-motion: reduce) { .page-hero--company .page-hero__media img { animation: none; } .company-teaser { transition: none; } }

/* Company overview: one calm, scroll-driven brand story rather than a collage. */
.company-scroll-story[data-company-story] { height: 460vh; position: relative; background: #071d2d; overflow: clip; }
.company-story-frame { position: sticky; top: 0; height: 100vh; min-height: 620px; overflow: hidden; }
.company-story-frame::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 15%, rgba(49, 170, 198, .25), transparent 34%), linear-gradient(135deg, #071d2d, #0b3047); }
.company-story-progress { position: absolute; z-index: 8; top: 50%; left: 28px; display: grid; gap: 14px; transform: translateY(-50%); color: rgba(255,255,255,.48); font: 700 11px/1 system-ui, sans-serif; letter-spacing: .12em; }
.company-story-progress::before { content: ""; position: absolute; top: 4px; bottom: 4px; left: 3px; width: 1px; background: rgba(255,255,255,.24); }
.company-story-progress i { position: absolute; top: 4px; left: 3px; width: 2px; height: var(--story-rail-progress, 0%); background: #7bd1e3; transform: translateX(-.5px); }
.company-story-progress span { position: relative; padding-left: 15px; }
.company-story-chapter { --chapter-opacity: 0; --chapter-y: 32px; --chapter-scale: .96; position: absolute; inset: 0; z-index: 1; display: block; padding: 0; opacity: var(--chapter-opacity); transform: translate3d(0, var(--chapter-y), 0) scale(var(--chapter-scale)); transform-origin: center; pointer-events: none; will-change: transform, opacity; }
.company-story-chapter:first-of-type { --chapter-opacity: 1; --chapter-y: 0px; --chapter-scale: 1; --chapter-image-scale: 1; --chapter-copy-opacity: 1; --chapter-copy-y: 0px; --chapter-copy-blur: 0px; }
.company-story-chapter__media { position: absolute; z-index: 0; inset: 0; width: auto; min-height: 0; aspect-ratio: auto; overflow: hidden; border-radius: 0; box-shadow: none; isolation: isolate; }
.company-story-chapter__media::after { content: ""; position: absolute; z-index: 1; inset: 0; background: linear-gradient(90deg, rgba(4,24,38,0) 24%, rgba(4,24,38,.18) 48%, rgba(4,24,38,.88) 100%); pointer-events: none; }
.company-story-chapter__media > img:first-child,
.company-story-chapter__media > video:first-child { position: absolute; z-index: 0; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transform: scale(var(--chapter-image-scale, 1)); transition: transform .4s ease; }
.company-story-chapter__copy { position: absolute; z-index: 1; top: 50%; right: clamp(48px, 10vw, 170px); width: min(40vw, 560px); max-width: calc(100% - 120px); color: #f5fbfd; opacity: var(--chapter-copy-opacity, 0); transform: translate3d(0, calc(-50% + var(--chapter-copy-y, 0px)), 0); filter: blur(var(--chapter-copy-blur, 0px)); text-shadow: 0 2px 16px rgba(0,0,0,.9), 0 0 3px rgba(0,0,0,.8); will-change: opacity, transform, filter; }
.company-story-chapter__copy > span { color: #83d4e5; font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.company-story-chapter__copy h2 { margin: 14px 0 18px; color: inherit; font-size: clamp(2.1rem, 4vw, 4.6rem); line-height: 1.06; letter-spacing: -.045em; }
.company-story-chapter__copy p { margin: 0; color: rgba(245,251,253,.78); font-size: clamp(1rem, 1.35vw, 1.18rem); line-height: 1.8; }
.company-story-chapter__copy dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 34px 0 0; }
.company-story-chapter__copy dl div { padding-top: 14px; border-top: 1px solid rgba(167,222,232,.38); }
.company-story-chapter__copy dt { font-weight: 800; font-size: clamp(1.05rem, 1.5vw, 1.45rem); }
.company-story-chapter__copy dd { margin: 5px 0 0; color: rgba(245,251,253,.65); font-size: .85rem; }
.company-story-chapter__brand-logo { display: block; width: min(100%, 255px); height: auto; margin: 18px 0 20px; filter: brightness(0) invert(1); }
.company-story-chapter__quote { margin-top: 30px !important; padding-left: 16px; border-left: 2px solid #83d4e5; color: #fff !important; font-weight: 700; }
.company-story-chapter__route { display: flex; align-items: center; gap: 10px; margin-top: 34px; font-size: .85rem; color: #fff; }
.company-story-chapter__route b { white-space: nowrap; }
.company-story-chapter__route i { flex: 1; height: 1px; background: linear-gradient(90deg, #83d4e5, transparent); }
.company-story-chapter__timeline { display: grid; gap: 13px; margin: 30px 0 0; padding: 0; list-style: none; }
.company-story-chapter__timeline li { display: grid; grid-template-columns: 80px 1fr; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid rgba(167,222,232,.24); color: rgba(245,251,253,.78); }
.company-story-chapter__timeline b { color: #83d4e5; }
.company-story-chapter--history .company-story-chapter__copy { display: flex; flex-direction: column; min-height: clamp(470px, 64vh, 680px); }
.company-story-chapter--history .company-story-chapter__timeline { margin-top: auto; }
@media (max-width: 760px) {
  .company-scroll-story[data-company-story] { height: auto; overflow: visible; background: #041826; }
  .company-story-frame { position: relative; height: auto; min-height: 0; overflow: visible; }
  .company-story-progress { display: none; }
  .company-story-chapter { position: relative !important; inset: auto; display: block; min-height: 0; padding: 0; overflow: hidden; background: #041826; opacity: 1 !important; transform: none !important; pointer-events: auto; }
  .company-story-chapter:nth-of-type(even) { background: #041826; }
  .company-story-chapter__media { position: relative; inset: auto; width: 100%; min-height: 0; height: auto; aspect-ratio: auto; border-radius: 0; }
  .company-story-chapter__media::after { top: auto; height: 42%; background: linear-gradient(0deg, rgba(4,24,38,1) 0%, rgba(4,24,38,.45) 46%, rgba(4,24,38,0) 100%); }
  .company-story-chapter__media > img:first-child,
  .company-story-chapter__media > video:first-child { position: relative; inset: auto; width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; object-position: center; }
  .company-story-chapter__copy { position: relative; top: auto; right: auto; bottom: auto; left: auto; z-index: 1; display: block; width: auto; max-width: none; min-height: 0; padding: 24px 24px 52px; background: #041826; opacity: 1; transform: none; filter: none; }
  .company-scroll-story.is-motion-ready .company-story-chapter__copy { opacity: 0; transform: translate3d(0, 24px, 0); filter: blur(4px); transition: opacity .58s ease, transform .72s cubic-bezier(.22,.61,.36,1), filter .58s ease; }
  .company-scroll-story.is-motion-ready .company-story-chapter.is-copy-in-view .company-story-chapter__copy { opacity: 1; transform: none; filter: none; }
  .company-story-chapter__copy h2 { font-size: clamp(2rem, 10vw, 3.1rem); }
  .company-story-chapter__copy dl { gap: 9px; margin-top: 20px; }
  .company-story-chapter__copy dd { font-size: .72rem; }
  .company-story-chapter__route { margin-top: 22px; font-size: .78rem; }
  .company-story-chapter__timeline { margin-top: 20px; }
  .company-story-chapter--history .company-story-chapter__copy { display: block; min-height: 0; }
  .company-story-chapter--history .company-story-chapter__timeline { margin-top: 20px; }
}
@media (prefers-reduced-motion: reduce) { .company-scroll-story[data-company-story] { height: auto; } .company-story-frame { position: relative; height: auto; min-height: 0; overflow: visible; } .company-story-frame::before, .company-story-progress { display: none; } .company-story-chapter { position: relative; min-height: max(700px, 100svh); display: block; overflow: hidden; opacity: 1; transform: none; padding: 0; pointer-events: auto; } .company-story-chapter__copy { opacity: 1; transform: translateY(-50%); filter: none; } .company-story-chapter__media > img:first-child, .company-story-chapter__media > video:first-child, .company-story-chapter__brand-logo { transform: none; } }
@media (max-width: 760px) and (prefers-reduced-motion: reduce) { .company-story-chapter { min-height: 0; } .company-story-chapter__copy, .company-scroll-story.is-motion-ready .company-story-chapter__copy { opacity: 1; transform: none; filter: none; transition: none; } }

/* Scroll-driven full-screen scenes sourced from the 2026 YAJIN corporate deck. */
.company-scroll-story { background: #071a28; }
.company-story-scene { --scene-progress: 0; height: 180vh; position: relative; }
.company-story-scene__sticky { position: sticky; top: 0; height: 100vh; overflow: hidden; display: grid; place-items: center; background: #071a28; }
.company-story-scene__visual { position: absolute; inset: 0; transform: translate3d(0, var(--scene-image-y, 26px), 0) scale(var(--scene-image-scale, .76)); transform-origin: center; filter: saturate(var(--scene-image-saturation, .65)) brightness(var(--scene-image-brightness, .72)); will-change: transform, filter; }
.story-element { position: absolute; object-fit: cover; box-shadow: 0 26px 70px rgba(0, 0, 0, .25); border: 1px solid rgba(255, 255, 255, .25); transition: transform .25s ease, opacity .25s ease; }
.story-element--hero { inset: 12vh 9vw 11vh; width: calc(100% - 18vw); height: 77vh; }
.story-element--service-center { top: 16vh; right: 12vw; width: min(28vw, 390px); transform: translate3d(var(--story-card-x-right, 80px), 0, 0) rotate(3deg); }
.story-element--lab { bottom: 12vh; left: 10vw; width: min(24vw, 340px); transform: translate3d(var(--story-card-x-left, -72px), 0, 0) rotate(-3deg); }
.story-element--equipment { right: 8vw; bottom: 10vh; width: min(22vw, 310px); transform: translate3d(0, var(--story-card-y, 55px), 0); }
.company-story-scene__visual--brand { background: radial-gradient(circle at 70% 38%, #e9f8fa 0 18%, transparent 45%), #f8fafb; }
.story-element--brand-logo { width: min(40vw, 570px); left: 50%; top: 34%; transform: translate(-50%, -50%) scale(var(--story-brand-scale, .7)); box-shadow: none; border: 0; }
.story-element--heartbeat { width: min(38vw, 500px); left: 50%; top: 54%; transform: translateX(-50%); opacity: var(--scene-progress); box-shadow: none; border: 0; }
.story-element--brand-lab { width: min(22vw, 310px); right: 10vw; bottom: 12vh; transform: rotate(4deg) translate3d(0, var(--story-brand-y, 40px), 0); }
.story-element--components { width: min(47vw, 680px); right: 8vw; top: 16vh; transform: translate3d(var(--story-position-x, 70px), 0, 0) rotate(2deg); }
.story-element--position-team { width: min(25vw, 360px); left: 12vw; bottom: 15vh; transform: translate3d(var(--story-position-left-x, -55px), 0, 0) rotate(-3deg); }
.story-element--position-factory { width: min(30vw, 420px); right: 12vw; bottom: 9vh; transform: translate3d(0, var(--story-award-down, 50px), 0); }
.story-element--history-team { inset: 13vh 10vw 10vh; width: calc(100% - 20vw); height: 76vh; filter: brightness(.72); }
.story-element--award-a, .story-element--award-b, .story-element--award-c, .story-element--award-d, .story-element--award-e { width: min(13vw, 180px); background: #fff; padding: 10px; }
.story-element--award-a { left: 13vw; top: 16vh; transform: rotate(-5deg) translate3d(0, var(--story-award-up, -55px), 0); }
.story-element--award-b { left: 27vw; top: 24vh; transform: rotate(4deg) translate3d(0, var(--story-award-down, 50px), 0); }
.story-element--award-c { right: 28vw; top: 15vh; transform: rotate(-3deg) translate3d(0, var(--story-award-up, -55px), 0); }
.story-element--award-d { right: 13vw; top: 26vh; transform: rotate(5deg) translate3d(0, var(--story-award-down, 50px), 0); }
.story-element--award-e { right: 18vw; bottom: 12vh; width: min(20vw, 280px); transform: rotate(-2deg); }
.company-story-scene__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2, 14, 23, .78), rgba(2, 14, 23, .05) 72%); opacity: var(--scene-shade-opacity, .22); pointer-events: none; }
.company-story-scene__copy { position: absolute; left: clamp(22px, 8vw, 150px); bottom: clamp(34px, 10vh, 110px); max-width: min(560px, 82vw); color: #fff; opacity: var(--scene-copy-opacity, .18); transform: translate3d(0, var(--scene-copy-y, 28px), 0); }
.company-story-scene__copy span { font-size: .76rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #9ed5e8; }
.company-story-scene__copy h2 { margin: 12px 0; color: inherit; font-size: clamp(2rem, 4vw, 4.4rem); line-height: 1.08; }
.company-story-scene__copy p { margin: 0; color: inherit; font-size: clamp(1rem, 1.35vw, 1.2rem); line-height: 1.75; }
.company-story-scene--light .company-story-scene__sticky { background: #f8fafb; }
.company-story-scene--light .company-story-scene__visual { filter: none; }
.company-story-scene--light .company-story-scene__copy { color: #0a2540; }
.company-story-scene--light .company-story-scene__copy span { color: #227fab; }
@media (max-width: 760px) { .company-story-scene { height: 145vh; } .story-element--hero, .story-element--history-team { inset: 11vh 0 0; width: 100%; height: 64vh; } .story-element--service-center, .story-element--lab, .story-element--equipment, .story-element--brand-lab, .story-element--position-team, .story-element--position-factory { width: 42vw; } .story-element--components { width: 72vw; top: 18vh; right: 0; } .story-element--brand-logo { width: 70vw; top: 34%; } .story-element--heartbeat { width: 72vw; } .story-element--award-a, .story-element--award-b, .story-element--award-c, .story-element--award-d, .story-element--award-e { width: 25vw; padding: 5px; } .company-story-scene__copy { left: 20px; bottom: 42px; } .company-story-scene__shade { background: linear-gradient(180deg, rgba(2, 14, 23, .08), rgba(2, 14, 23, .83)); } }
@media (prefers-reduced-motion: reduce) { .company-story-scene { height: auto; } .company-story-scene__sticky { position: relative; min-height: 620px; } .company-story-scene__visual, .company-story-scene__copy { transform: none; opacity: 1; } }

@media (max-width: 760px) {
  .company-story-chapter__brand-logo { width: min(72vw, 250px); margin: 18px 0 20px; }
}

/* Homepage video hero: poster-first loading with a Porsche-inspired full-bleed composition. */
.hero--video .hero__media {
  background: #000;
}

.hero--video .hero__video,
.page-hero--video .page-hero__video {
  object-position: center;
}

.page-hero--video .page-hero__media {
  background: #000;
}

.hero--video .hero__overlay,
.page-hero--video .page-hero__overlay {
  background: transparent;
  pointer-events: none;
}

.hero--video .hero__overlay::after,
.page-hero--video .page-hero__overlay::after {
  display: none;
}

.hero--video + .hero-proof {
  margin-top: clamp(20px, 3vw, 36px);
}

.hero--video .hero__copy {
  justify-content: center;
  padding-bottom: clamp(88px, 10vh, 124px);
}

.hero--video .hero__actions {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(142px, auto));
  width: max-content;
  max-width: 100%;
  gap: clamp(8px, 1.2vw, 12px);
}

.hero--video .hero__actions .button--ghost,
.hero--video .hero__actions .button-secondary {
  min-width: 0;
  background: transparent;
  border-color: rgba(255, 255, 255, .72);
  box-shadow: none;
  backdrop-filter: none;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .hero--video .hero__actions .button--ghost:hover,
  .hero--video .hero__actions .button-secondary:hover {
    background: rgba(255, 255, 255, .14);
    border-color: #fff;
  }
}

@media (max-width: 719px) {
  .hero--video {
    min-height: 0;
    height: 56.25vw;
  }

  .page-hero--video {
    min-height: 0;
    height: 56.25vw;
  }

  .hero--video .hero__inner {
    height: 100%;
  }

  .hero--video .hero__video,
  .page-hero--video .page-hero__video {
    object-fit: contain;
    object-position: center;
  }

  .hero--video .hero__copy {
    min-height: 0;
    height: 100%;
    padding: 0 0 clamp(12px, 4vw, 24px);
  }

  .hero--video .hero__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 360px);
  }

  .hero--video .hero__actions a {
    min-width: 0;
    padding: 10px clamp(8px, 3vw, 14px);
    font-size: clamp(11px, 3.3vw, 13px);
  }
}

/* Service overview and PPT-derived service detail pages. */
.service-target-card {
  overflow: hidden;
  padding: 0 !important;
  border-radius: 24px;
}

.service-target-card > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-target-card > div {
  padding: 22px;
}

.service-capability-grid,
.service-gallery-grid,
.service-rescue-grid,
.service-equipment-grid,
.service-segment-grid {
  display: grid;
  gap: 18px;
}

.service-capability-card,
.service-gallery-card,
.service-wide-visual,
.service-feature-split__media {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(34, 127, 171, .14);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.service-capability-card img,
.service-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.service-capability-card > div {
  padding: 22px;
}

.service-capability-card small,
.service-feature-split__copy > small {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-capability-card h3,
.service-feature-split__copy h2 {
  margin: 0 0 10px;
  color: var(--brand-deep);
}

.service-capability-card h3 {
  font-size: 1.25rem;
}

.service-capability-card p,
.service-feature-split__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.service-feature-split {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.service-feature-split__media img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  background: #fff;
}

.service-feature-split--after-sales .service-feature-split__media img {
  aspect-ratio: auto;
}

.service-feature-split__copy h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.12;
}

.service-segment-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.service-segment-grid > span {
  display: grid;
  align-content: center;
  min-height: 84px;
  padding: 14px 16px;
  border-left: 4px solid var(--brand);
  background: rgba(255, 255, 255, .96);
  color: var(--brand-deep);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(16, 45, 63, .08);
}

.service-segment-grid > span small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.service-gallery-card figcaption {
  display: grid;
  gap: 5px;
  padding: 16px 18px 18px;
  color: var(--brand-deep);
  font-weight: 800;
  line-height: 1.5;
}

.service-gallery-card figcaption small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.service-support-grid {
  margin-top: 24px;
}

.service-support-grid article {
  --support-color: #227fab;
  --support-tint: rgba(34, 127, 171, .12);
  --support-glow: rgba(34, 127, 171, .08);
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 5px;
  align-items: start;
  overflow: hidden;
  border-color: rgba(34, 127, 171, .18);
  border-radius: 22px;
  box-shadow: 0 16px 34px rgba(16, 45, 63, .07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-support-grid article:nth-child(2) {
  --support-color: #4a966c;
  --support-tint: rgba(74, 150, 108, .13);
  --support-glow: rgba(74, 150, 108, .09);
}

.service-support-grid article:nth-child(3) {
  --support-color: #cf8124;
  --support-tint: rgba(207, 129, 36, .13);
  --support-glow: rgba(207, 129, 36, .09);
}

.service-support-grid article:nth-child(4) {
  --support-color: #177d8d;
  --support-tint: rgba(23, 125, 141, .13);
  --support-glow: rgba(23, 125, 141, .09);
}

.service-support-grid article::after {
  content: "";
  position: absolute;
  top: -58px;
  right: -46px;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: var(--support-glow);
  pointer-events: none;
}

.service-support-card__icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: var(--support-tint);
  color: var(--support-color);
}

.service-support-card__icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-support-grid h3,
.service-support-grid p {
  position: relative;
  z-index: 1;
  grid-column: 2;
}

.service-support-grid h3 {
  margin: 1px 0 0;
}

@media (hover: hover) and (pointer: fine) {
  .service-support-grid article:hover {
    transform: translateY(-4px);
    border-color: var(--support-color);
    box-shadow: 0 22px 42px rgba(16, 45, 63, .12);
  }
}

.service-wide-visual {
  margin-bottom: 22px;
}

.service-wide-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.service-cta h3 {
  max-width: 20ch;
}

@media (min-width: 720px) {
  .service-capability-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-gallery-grid,
  .service-rescue-grid,
  .service-equipment-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-feature-split:not(.service-feature-split--after-sales) {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  }

  .service-segment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-segment-grid--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

@media (min-width: 1040px) {
  .service-equipment-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  .service-support-grid article {
    grid-template-columns: 50px minmax(0, 1fr);
    column-gap: 14px;
    padding: 20px 18px;
    border-radius: 18px;
  }

  .service-support-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 15px;
  }

  .service-support-card__icon svg {
    width: 27px;
    height: 27px;
  }

  .service-target-card > div,
  .service-capability-card > div {
    padding: 18px;
  }

  .service-segment-grid,
  .service-segment-grid--five {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-segment-grid > span {
    min-height: 68px;
  }

  .service-gallery-card,
  .service-capability-card,
  .service-wide-visual,
  .service-feature-split__media {
    border-radius: 18px;
  }
}

/* Keep the company headline safety zones above the legacy story rules in the final cascade. */
.company-story-chapter__copy .company-story-chapter__brand-title {
  width: max-content;
  max-width: 100%;
  margin: 14px 0 18px;
}

@media (min-width: 761px) {
  .company-story-chapter--history-focus .company-story-chapter__copy {
    top: clamp(198px, 24vh, 248px);
    right: clamp(28px, 4vw, 72px);
    width: min(45vw, 640px);
    min-height: calc(100vh - clamp(265px, 32vh, 338px));
    transform: none;
  }

  .company-story-chapter--history-focus .company-story-chapter__copy > span,
  .company-story-chapter--history-focus .company-story-chapter__copy > p,
  .company-story-chapter--history-focus .company-story-chapter__copy .company-story-chapter__milestone-title {
    align-self: flex-start;
    text-align: left;
  }

  .company-story-chapter--history-focus .company-story-chapter__timeline {
    margin-right: auto;
    margin-left: 0;
  }

  .company-story-chapter--history-focus .company-story-chapter__copy .company-story-chapter__milestone-title {
    width: min(100%, 720px);
    margin-top: 10px;
    font-size: clamp(2.05rem, 3.35vw, 3.9rem);
    line-height: 1.08;
  }
}

/* 防止導覽語言閃現/抖動:i18n 套用完成前先隱藏 .nav(僅在有 JS 時啟用) */
html.i18n-pending .site-header .nav { visibility: hidden; }
