:root {
  --ink: #182126;
  --ink-soft: #38464d;
  --paper: #f7f8f6;
  --white: #ffffff;
  --line: #dfe5e1;
  --teal: #0d7c78;
  --teal-dark: #075b59;
  --amber: #c9862e;
  --clay: #9b6f58;
  --mist: #e8f1ee;
  --shadow: 0 18px 50px rgba(24, 33, 38, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Microsoft YaHei",
    "PingFang SC",
    "Noto Sans SC",
    Arial,
    sans-serif;
  line-height: 1.65;
  letter-spacing: 0;
}

body.lightbox-open,
body.news-modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(247, 248, 246, 0.88);
  border-bottom: 1px solid rgba(223, 229, 225, 0.7);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 40px), var(--max));
  min-height: 72px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand > span {
  min-width: 0;
}

.brand strong {
  font-size: 16px;
  line-height: 1.15;
  white-space: nowrap;
}

.brand small {
  color: var(--ink-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--ink-soft);
  font-size: 15px;
}

.main-nav a {
  position: relative;
  padding: 24px 0;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 18px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.language-switch a {
  min-width: 42px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}

.language-switch a::after {
  display: none;
}

.language-switch a.active,
.language-switch a:hover,
.language-switch a:focus-visible {
  background: var(--teal);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

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

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

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

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  background: var(--ink);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(14, 22, 25, 0.82) 0%, rgba(14, 22, 25, 0.62) 38%, rgba(14, 22, 25, 0.2) 72%, rgba(14, 22, 25, 0.42) 100%),
    linear-gradient(180deg, rgba(14, 22, 25, 0.35), rgba(14, 22, 25, 0.62));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 40px), var(--max));
  min-height: 92vh;
  margin: 0 auto;
  padding: 118px 0 70px;
  color: var(--white);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  min-height: calc(92vh - 260px);
}

.hero-content {
  min-width: 0;
}

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

.hero .eyebrow,
.section-ink .eyebrow {
  color: #83ddd3;
}

.hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 20px);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.2;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--teal);
  color: var(--white);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--teal-dark);
}

.btn.ghost {
  border-color: var(--teal);
  background: transparent;
  color: var(--teal-dark);
}

.btn.ghost:hover,
.btn.ghost:focus-visible {
  border-color: var(--teal-dark);
  background: var(--mist);
}

.btn.secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.btn.full {
  width: 100%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(720px, 100%);
  margin: 44px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero-panel {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.panel-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.panel-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
}

.panel-brand span {
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
}

.panel-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel-list li {
  display: grid;
  gap: 3px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.panel-list strong,
.panel-list span,
.panel-note strong,
.panel-note span {
  display: block;
}

.panel-list strong {
  color: var(--white);
  font-size: 16px;
}

.panel-list span,
.panel-note span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.panel-note {
  padding: 20px 22px;
  background: rgba(13, 124, 120, 0.28);
}

.panel-note strong {
  color: #83ddd3;
  font-size: 16px;
}

.hero-proof div {
  padding: 20px;
}

.hero-proof div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-proof dt {
  margin: 0;
  color: var(--white);
  font-size: 24px;
  font-weight: 800;
}

.hero-proof dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.section {
  padding: clamp(64px, 9vw, 108px) 0;
  scroll-margin-top: 116px;
}

.section-tint {
  background: var(--mist);
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head h2,
.intro-grid h2,
.service-layout h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  letter-spacing: 0;
}

.section-head p:not(.eyebrow),
.intro-grid p,
.service-layout p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.intro-band {
  padding: 42px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: clamp(24px, 6vw, 84px);
}

.intro-grid p:not(.eyebrow) {
  margin: 0;
}

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

.feature-card {
  min-height: 255px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(24, 33, 38, 0.06);
}

.feature-index {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  background: #f1eee8;
  color: var(--clay);
  font-size: 14px;
  font-weight: 800;
}

.feature-card h3,
.solution-item h3,
.product-card h3,
.application-panel h3,
.resource-strip h3 {
  margin: 28px 0 10px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

.feature-card p,
.solution-item p,
.product-card p,
.application-panel p,
.resource-strip p {
  margin: 0;
  color: var(--ink-soft);
}

.solution-list {
  display: grid;
  gap: 14px;
}

.solution-item {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 132px;
  padding: 26px;
  border: 1px solid rgba(13, 124, 120, 0.18);
  border-radius: 8px;
  background: var(--white);
}

.solution-item h3 {
  margin-top: 0;
}

.solution-number {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  background: var(--teal);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
}

.solution-item a {
  display: inline-grid;
  width: 58px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--teal-dark);
  font-weight: 800;
}

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

.product-card {
  overflow: hidden;
  border: 1px solid rgba(13, 124, 120, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(24, 33, 38, 0.08);
}

.product-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  align-items: stretch;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e8eef2;
}

.product-card.featured img {
  height: 100%;
  min-height: 320px;
  aspect-ratio: auto;
}

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

.product-card span {
  display: inline-grid;
  width: 38px;
  height: 30px;
  place-items: center;
  border-radius: 6px;
  background: rgba(13, 124, 120, 0.1);
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
}

.product-card h3 {
  margin: 18px 0 4px;
}

.product-card small {
  display: block;
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.product-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--teal-dark);
  font-weight: 800;
}

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

.application-panel {
  overflow: hidden;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(24, 33, 38, 0.06);
}

.application-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e8eef2;
}

.application-panel h3 {
  margin: 0;
  padding: 24px 24px 10px;
}

.application-panel p {
  padding: 0 24px 24px;
  color: var(--ink-soft);
}

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

.service-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.section-ink p {
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.timeline li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  counter-increment: step;
}

.timeline li::before {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 8px;
  background: rgba(131, 221, 211, 0.14);
  color: #83ddd3;
  font-weight: 800;
  content: counter(step, decimal-leading-zero);
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  font-size: 20px;
}

.timeline span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.68);
}

.resource-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.resource-strip article {
  padding: 30px;
  background: var(--white);
}

.resource-strip span {
  display: inline-block;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
}

.resource-strip h3 {
  margin-top: 12px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 440px);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.contact-direct-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(520px, 1.24fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

.contact-copy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.contact-directory {
  border-top: 4px solid var(--teal-dark);
  border-bottom: 1px solid var(--line);
}

.contact-hotline {
  display: grid;
  gap: 2px;
  padding: 22px 0 26px;
  border-bottom: 1px solid var(--line);
}

.contact-hotline span,
.contact-address span {
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 900;
}

.contact-hotline strong {
  margin-top: 4px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 50px);
  line-height: 1.1;
}

.contact-hotline small,
.contact-address small {
  margin-top: 6px;
  color: #65747c;
  font-size: 13px;
}

.contact-people {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.contact-people a {
  display: grid;
  gap: 3px;
  padding: 18px 0;
}

.contact-people a:nth-child(odd) {
  padding-right: 24px;
  border-right: 1px solid var(--line);
}

.contact-people a:nth-child(even) {
  padding-left: 24px;
}

.contact-people a:nth-child(-n + 2) {
  border-bottom: 1px solid var(--line);
}

.contact-people span {
  color: var(--ink-soft);
  font-size: 13px;
}

.contact-people strong {
  color: var(--ink);
  font-size: 18px;
}

.contact-directory a:hover strong,
.contact-directory a:focus-visible strong {
  color: var(--teal-dark);
}

.contact-address {
  display: grid;
  gap: 2px;
  padding: 22px 0 0;
}

.contact-address strong {
  margin-top: 4px;
  font-size: 17px;
}

.contact-lines {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  color: var(--ink-soft);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: 0;
}

.contact-form input {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
  padding: 12px 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 124, 120, 0.12);
}

.form-note {
  min-height: 22px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.site-footer {
  padding: 28px 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner strong,
.footer-inner span {
  display: block;
}

.footer-inner strong {
  color: var(--white);
  font-size: 18px;
}

.footer-inner a {
  color: #83ddd3;
  font-weight: 700;
}

.footer-inner .icp-link {
  display: inline-flex;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-inner .icp-link:hover {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .menu-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 13px 14px;
    border-radius: 6px;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: var(--mist);
  }

  .language-switch {
    justify-content: space-between;
    margin-top: 8px;
    background: var(--paper);
  }

  .language-switch a {
    flex: 1;
  }

  .menu-toggle {
    display: block;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    min-height: 0;
  }

  .hero-panel {
    max-width: 560px;
  }

  .intro-grid,
  .service-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .strength-grid,
  .product-range,
  .application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card.featured {
    grid-column: span 2;
  }

  .resource-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container,
  .header-inner,
  .hero-inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .brand strong {
    max-width: 210px;
    white-space: normal;
    font-size: 14px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-inner {
    min-height: 760px;
    padding-top: 110px;
  }

  .hero-panel {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(14, 22, 25, 0.9), rgba(14, 22, 25, 0.54)),
      linear-gradient(180deg, rgba(14, 22, 25, 0.42), rgba(14, 22, 25, 0.76));
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .hero-proof,
  .strength-grid,
  .product-range,
  .application-grid {
    grid-template-columns: 1fr;
  }

  .product-card.featured {
    grid-column: auto;
    display: block;
  }

  .product-card.featured img {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .hero-proof div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .solution-item {
    grid-template-columns: 48px 1fr;
    align-items: start;
    gap: 16px;
    padding: 20px;
  }

  .solution-number {
    width: 48px;
    height: 48px;
  }

  .solution-item a {
    grid-column: 2;
    width: 100%;
  }

  .timeline li {
    grid-template-columns: 46px 1fr;
    padding: 18px;
  }

  .timeline li::before {
    width: 46px;
    height: 46px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

/* Chinese flagship layout */
.cn-site {
  background: #f4f7f6;
}

.cn-site .site-header {
  position: sticky;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.cn-topbar {
  background: var(--white);
  border-bottom: 1px solid rgba(223, 229, 225, 0.76);
}

.cn-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  gap: 18px;
  color: var(--ink-soft);
  font-size: 15px;
}

.cn-topbar-inner span {
  position: relative;
  padding-left: 16px;
  color: var(--teal-dark);
  font-size: 16px;
  font-weight: 800;
}

.cn-topbar-inner span::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 4px;
  height: 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1f7ed8, #00a34f);
  content: "";
  transform: translateY(-50%);
}

.cn-topbar-inner strong {
  color: var(--teal-dark);
  font-size: 16px;
  font-weight: 800;
}

.cn-topbar-inner a {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.cn-nav {
  background: linear-gradient(90deg, #1f7ed8 0%, #009442 52%, #2482c2 100%);
  color: var(--white);
}

.cn-nav-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  gap: 18px;
}

.cn-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 190px;
}

.cn-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  border: 5px solid var(--white);
  border-radius: 0 0 18px 18px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
}

.cn-brand strong,
.cn-brand small {
  display: block;
}

.cn-brand strong {
  color: var(--white);
  font-size: 22px;
  line-height: 1.1;
}

.cn-brand small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cn-main-nav {
  gap: 0;
  color: var(--white);
  font-size: 14px;
}

.cn-main-nav > a {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.95);
}

.cn-main-nav > a::after {
  display: none;
}

.cn-main-nav > a:hover,
.cn-main-nav > a:focus-visible {
  background: rgba(0, 54, 130, 0.35);
}

.cn-main-nav .language-switch {
  margin-left: 10px;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
}

.cn-main-nav .language-switch a {
  color: rgba(255, 255, 255, 0.85);
}

.cn-main-nav .language-switch a.active,
.cn-main-nav .language-switch a:hover {
  background: var(--white);
  color: var(--teal-dark);
}

html[lang="en"] .cn-main-nav > a,
html[lang="es"] .cn-main-nav > a,
html[lang="fr"] .cn-main-nav > a {
  padding-right: 9px;
  padding-left: 9px;
  font-size: 13px;
}

html[lang="en"] .cn-main-nav .language-switch,
html[lang="es"] .cn-main-nav .language-switch,
html[lang="fr"] .cn-main-nav .language-switch {
  margin-left: 6px;
}

.cn-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(640px, calc(100vh - 176px), 780px);
  background: #057a59;
}

.cn-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 82, 65, 0.94) 0%, rgba(0, 132, 76, 0.88) 42%, rgba(0, 99, 86, 0.36) 68%, rgba(0, 74, 80, 0.08) 100%);
  content: "";
}

.cn-hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
}

.cn-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 900ms ease, transform 5200ms ease;
}

.cn-hero-media img.active {
  opacity: 1;
  transform: scale(1);
}

.cn-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 720px);
  align-items: center;
  justify-content: start;
  min-height: clamp(640px, calc(100vh - 176px), 780px);
  padding: 72px 0;
  color: var(--white);
}

.cn-hero-copy {
  max-width: 700px;
}

.cn-hero .eyebrow {
  color: #d7fff4;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.24);
}

.cn-hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(40px, 4.8vw, 66px);
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.28);
}

.cn-hero h1 span {
  display: block;
}

.cn-hero-lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.22);
}

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

.notice-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.notice-inner {
  display: flex;
  align-items: center;
  min-height: 70px;
  gap: 16px;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.notice-inner strong {
  color: var(--ink);
}

.notice-inner span {
  flex: 1;
}

.notice-inner em {
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 800;
}

.notice-inner:hover,
.notice-inner:focus-visible {
  color: var(--teal-dark);
}

.process-section {
  scroll-margin-top: 116px;
  padding: 58px 0 72px;
  background: #f3f5f4;
}

.center-head {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.center-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
}

.center-head p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}

.order-flow {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-flow li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--ink);
  text-align: center;
}

.order-flow li + li::before {
  position: absolute;
  top: 38px;
  right: calc(100% + 4px);
  width: 16px;
  height: 16px;
  border-top: 3px solid var(--ink);
  border-right: 3px solid var(--ink);
  content: "";
  transform: rotate(45deg);
}

.order-flow span {
  display: grid;
  width: 94px;
  height: 94px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--teal-dark);
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(24, 33, 38, 0.08);
}

.order-flow svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.order-flow strong {
  font-size: 15px;
}

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

.about-section .container {
  width: min(calc(100% - 48px), 1360px);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(380px, 0.72fr);
  gap: clamp(38px, 5vw, 72px);
  align-items: center;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-carousel {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.media-carousel img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #e8eef2;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.015);
  transition: opacity 620ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.media-carousel img.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.media-carousel-actions {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.media-carousel-actions button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  background: rgba(9, 31, 49, 0.72);
  color: var(--white);
  cursor: pointer;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  transition: background 0.2s ease, transform 0.2s ease;
}

.media-carousel-actions button:hover,
.media-carousel-actions button:focus-visible {
  background: rgba(0, 148, 66, 0.9);
  transform: translateY(-1px);
}

.media-carousel-actions svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.about-photo .media-carousel img {
  border-radius: 0;
  box-shadow: none;
}

.about-copy h2,
.honor-layout h2 {
  margin: 0;
  font-size: clamp(32px, 4.2vw, 50px);
  line-height: 1.18;
}

.about-copy p:not(.eyebrow),
.honor-layout p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.85;
}

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

.about-stats div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.about-stats strong,
.about-stats span {
  display: block;
}

.about-stats strong {
  color: var(--teal-dark);
  font-size: 28px;
  line-height: 1;
}

.about-stats span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 14px;
}

.product-center {
  padding: clamp(64px, 8vw, 96px) 0;
  background: #142a27;
  color: var(--white);
}

.product-center-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: end;
  margin-bottom: 30px;
}

.product-center-head h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 4.5vw, 52px);
  line-height: 1.16;
}

.product-center-head > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.product-layout {
  display: block;
}

.product-sidebar {
  margin-bottom: 18px;
}

.product-series {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
}

.product-series button {
  display: flex;
  min-width: 0;
  min-height: 102px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.product-series button:hover,
.product-series button:focus-visible {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-2px);
}

.product-series button.active {
  border-color: #f2bb28;
  background: var(--white);
  color: var(--ink);
}

.product-series strong {
  font-size: 15px;
  line-height: 1.35;
}

.product-series span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
}

.product-series button.active span {
  color: var(--teal-dark);
}

.product-subfilters {
  margin-top: 10px;
}

.product-subnav[hidden] {
  display: none;
}

.product-subnav button {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: transparent;
  color: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.product-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-subnav button:hover,
.product-subnav button:focus-visible,
.product-subnav button.active {
  border-color: #f2bb28;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.product-explorer {
  overflow: hidden;
  border-radius: 4px;
}

.product-toolbar {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  background: var(--white);
  color: var(--ink);
}

.product-toolbar > div {
  display: grid;
  gap: 2px;
}

.product-toolbar strong {
  font-size: 21px;
}

.product-toolbar > div span {
  color: var(--ink-soft);
  font-size: 13px;
}

.product-search {
  display: grid;
  grid-template-columns: auto minmax(220px, 310px);
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
}

.product-search input {
  width: 100%;
  height: 44px;
  padding: 0 13px;
  border: 1px solid #cfd9d5;
  border-radius: 4px;
  outline: 0;
}

.product-search input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13, 124, 120, 0.12);
}

.product-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: #dce4e1;
  align-items: start;
}

.catalog-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

.catalog-card:hover .product-image {
  transform: translateY(-2px);
}

.catalog-card[hidden] {
  display: none;
}

.catalog-card img {
  width: 100%;
  aspect-ratio: 720 / 520;
  object-fit: contain;
  background: var(--white);
}

.catalog-card .product-image {
  display: block;
  flex: 1;
  padding: 16px;
  cursor: zoom-in;
  transition: transform 0.22s ease;
}

.product-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 42px 24px;
  border: 1px dashed #b9c8c2;
  border-radius: 0;
  background: var(--white);
  color: var(--ink-soft);
  text-align: center;
  font-weight: 700;
}

.product-empty[hidden] {
  display: none;
}

.product-pagination {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.product-pagination[hidden] {
  display: none;
}

.product-pagination > div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-pagination > div > span {
  width: 18px;
  color: #708078;
  text-align: center;
}

.product-pagination button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  padding: 0;
  border: 1px solid #cfd9d5;
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}

.product-pagination button:hover,
.product-pagination button:focus-visible,
.product-pagination button.active {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  color: var(--white);
}

.product-pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.38;
}

.product-pagination svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.product-visual-slot {
  display: grid;
  min-height: 230px;
  place-items: center;
  border-bottom: 1px solid #eef1ee;
  background:
    linear-gradient(135deg, rgba(0, 163, 79, 0.08), rgba(31, 126, 216, 0.08)),
    repeating-linear-gradient(45deg, rgba(24, 33, 38, 0.035) 0 1px, transparent 1px 12px),
    var(--white);
  color: #6c7a80;
  font-weight: 800;
}

.catalog-card .product-info {
  margin: 0;
  display: grid;
  gap: 5px;
  min-height: 118px;
  grid-template-rows: auto minmax(42px, auto) minmax(38px, auto);
  padding: 12px 14px 14px;
  border-top: 1px solid #dce4e5;
  background: #edf1ef;
  text-align: center;
}

.product-info span {
  color: #048148;
  font-size: 12px;
  font-weight: 800;
}

.catalog-card h3 {
  display: grid;
  align-items: center;
  margin: 0;
  color: #354248;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}

.catalog-card p,
.catalog-card .product-size {
  margin: 0;
  padding: 0;
  color: #617078;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.catalog-card .product-size {
  display: grid;
  align-content: center;
  gap: 2px;
}

.catalog-card .product-size span {
  display: block;
  overflow-wrap: anywhere;
}

.catalog-card dl {
  display: none;
  gap: 8px;
  margin: 10px 18px 18px;
}

.catalog-card dl div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 6px;
  background: #f3f6f5;
  color: var(--ink-soft);
  font-size: 14px;
}

.catalog-card dt,
.catalog-card dd {
  margin: 0;
}

.catalog-card dt {
  color: var(--teal-dark);
  font-weight: 800;
}

.product-lightbox {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  padding: 72px 24px 36px;
  background: rgba(9, 16, 20, 0.82);
  place-items: center;
}

.product-lightbox[hidden] {
  display: none;
}

.product-lightbox figure {
  width: min(94vw, 1040px);
  max-height: calc(100vh - 120px);
  margin: 0;
  display: grid;
  gap: 14px;
}

.product-lightbox img {
  width: 100%;
  max-height: calc(100vh - 180px);
  object-fit: contain;
  border: 10px solid var(--white);
  background: var(--white);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.product-lightbox figcaption {
  color: var(--white);
  text-align: center;
  font-size: 18px;
  font-weight: 800;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

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

.workshop-section .container {
  width: min(calc(100% - 48px), 1360px);
}

.workshop-section .center-head {
  max-width: 900px;
}

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

.workshop-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(24, 33, 38, 0.08);
}

.workshop-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.workshop-grid .media-carousel {
  aspect-ratio: 16 / 9;
  border-radius: 8px 8px 0 0;
  box-shadow: none;
}

.workshop-grid .media-carousel img {
  aspect-ratio: 16 / 9;
}

.workshop-grid .media-carousel-actions {
  opacity: 0;
  transition: opacity 180ms ease;
}

.workshop-grid .media-carousel:hover .media-carousel-actions,
.workshop-grid .media-carousel:focus-within .media-carousel-actions {
  opacity: 1;
}

.workshop-grid h3 {
  margin: 0;
  padding: 24px 26px 8px;
  font-size: 23px;
}

.workshop-grid p {
  margin: 0;
  padding: 0 26px 26px;
  color: var(--ink-soft);
  font-size: 16px;
}

.workshop-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.workshop-flow article {
  position: relative;
  min-height: 176px;
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(0, 163, 79, 0.07), rgba(31, 126, 216, 0.05)),
    var(--white);
}

.workshop-flow article + article::before {
  position: absolute;
  top: 46px;
  left: -13px;
  width: 12px;
  height: 12px;
  border-top: 2px solid rgba(0, 128, 78, 0.42);
  border-right: 2px solid rgba(0, 128, 78, 0.42);
  content: "";
  transform: rotate(45deg);
}

.workshop-flow span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  background: var(--teal-dark);
  color: var(--white);
  font-weight: 900;
}

.workshop-flow strong {
  display: block;
  margin-top: 16px;
  color: var(--ink);
  font-size: 18px;
}

.workshop-flow p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.honor-section {
  background: #edf3f0;
}

.honor-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.standards-intro .standards-note {
  margin-top: 26px;
  padding: 16px 18px;
  border-left: 3px solid var(--amber);
  background: rgba(255, 255, 255, 0.66);
  color: #56656b;
  font-size: 14px;
  line-height: 1.7;
}

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

.standards-grid article {
  display: flex;
  min-height: 256px;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid #cedbd5;
  border-radius: 8px;
  background: var(--white);
}

.standards-grid small {
  color: var(--teal-dark);
  font-size: 12px;
  font-weight: 900;
}

.standards-grid strong {
  margin-top: 12px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 900;
}

.standards-grid h3 {
  margin: 8px 0 0;
  font-size: 19px;
  line-height: 1.42;
}

.standards-grid p {
  margin: 14px 0 18px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.72;
}

.standards-grid a {
  margin-top: auto;
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-section {
  background: var(--paper);
}

.news-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.news-toolbar button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink-soft);
  cursor: pointer;
  font-weight: 800;
}

.news-toolbar button:hover,
.news-toolbar button:focus-visible,
.news-toolbar button.active {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  color: var(--white);
}

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

.news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(16, 34, 46, 0.06);
}

.news-card[hidden] {
  display: none;
}

.news-card-media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #e7ecef;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.news-card:hover .news-card-media img {
  transform: scale(1.025);
}

.news-card-body {
  display: flex;
  min-height: 250px;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px;
}

.news-card-meta {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #65747c;
  font-size: 13px;
}

.news-card-meta span {
  color: var(--teal-dark);
  font-weight: 900;
}

.news-card h3 {
  margin: 15px 0 10px;
  font-size: 20px;
  line-height: 1.42;
}

.news-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.news-read {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding: 18px 0 0;
  border: 0;
  background: transparent;
  color: var(--teal-dark);
  cursor: pointer;
  font-weight: 900;
}

.news-read span {
  transition: transform 160ms ease;
}

.news-read:hover span,
.news-read:focus-visible span {
  transform: translateX(4px);
}

.news-card-featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.news-card-featured .news-card-media {
  height: 100%;
  min-height: 100%;
  aspect-ratio: auto;
}

.news-card-featured .news-card-body {
  min-height: 330px;
  justify-content: center;
  padding: 32px;
}

.news-card-featured h3 {
  font-size: 28px;
  line-height: 1.32;
}

.news-dialog {
  width: min(calc(100% - 36px), 900px);
  max-height: min(90vh, 900px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 30px 80px rgba(5, 18, 28, 0.3);
  color: var(--ink);
}

.news-dialog[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  animation: news-dialog-in 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.news-dialog::backdrop {
  background: rgba(5, 18, 28, 0.72);
  backdrop-filter: blur(3px);
  animation: news-backdrop-in 220ms ease-out;
}

.news-dialog-media {
  height: clamp(210px, 28vw, 290px);
  overflow: hidden;
  background: #dce5e1;
}

.news-dialog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-dialog-inner {
  min-height: 0;
  padding: 38px 58px 48px;
  overflow-y: auto;
}

.news-dialog-close {
  position: absolute;
  z-index: 1;
  top: 16px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(5, 18, 28, 0.18);
}

.news-dialog-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 2;
}

.news-dialog-meta {
  color: var(--teal-dark);
  font-size: 14px;
  font-weight: 900;
}

.news-dialog h3 {
  max-width: 720px;
  margin: 12px 0 26px;
  font-size: 34px;
  line-height: 1.32;
}

.news-dialog-content {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.9;
}

.news-dialog-content h4 {
  margin: 28px 0 8px;
  color: var(--ink);
  font-size: 19px;
}

.news-dialog-content p {
  margin: 0 0 16px;
}

.news-dialog-content strong {
  color: var(--ink);
}

.news-dialog-content .news-source {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

.news-dialog-content a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

@keyframes news-dialog-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes news-backdrop-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.recruit-section {
  background:
    linear-gradient(135deg, rgba(0, 130, 74, 0.08), rgba(31, 126, 216, 0.1)),
    var(--paper);
}

.recruit-layout,
.download-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.recruit-layout h2,
.download-panel h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18;
}

.recruit-layout p,
.download-panel p {
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
}

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

.recruit-panel article {
  min-height: 140px;
  padding: 24px;
  border: 1px dashed rgba(13, 124, 120, 0.38);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
}

.recruit-panel strong,
.recruit-panel span {
  display: block;
}

.recruit-panel strong {
  color: var(--ink);
  font-size: 18px;
}

.recruit-panel span {
  margin-top: 18px;
  color: var(--teal-dark);
  font-size: 24px;
  font-weight: 900;
}

.download-panel {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(13, 124, 120, 0.18);
  border-radius: 8px;
  background: var(--white);
}

.download-panel .btn {
  justify-self: end;
}

.floating-contact {
  position: fixed;
  z-index: 30;
  right: 0;
  top: 42%;
  display: grid;
  overflow: hidden;
  border-radius: 8px 0 0 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.floating-contact a {
  display: grid;
  gap: 4px;
  min-width: 78px;
  min-height: 72px;
  place-items: center;
  padding: 8px;
  background: #009c54;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.floating-contact a:nth-child(2) {
  background: #087e8c;
}

.floating-contact svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

@media (max-width: 1180px) {
  .cn-main-nav > a {
    padding: 0 9px;
    font-size: 13px;
  }

  .cn-brand {
    min-width: 160px;
  }

  .cn-brand strong {
    font-size: 18px;
  }
}

@media (max-width: 960px) {
  .cn-topbar-inner {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .cn-site .main-nav {
    top: 112px;
  }

  .cn-main-nav > a {
    min-height: auto;
    color: var(--ink-soft);
  }

  .cn-main-nav .language-switch a {
    color: var(--ink-soft);
  }

  .about-layout,
  .product-layout,
  .honor-layout,
  .news-layout,
  .recruit-layout,
  .download-panel,
  .product-center-head,
  .contact-direct-layout {
    grid-template-columns: 1fr;
  }

  .cn-hero-media {
    width: 100%;
    border-radius: 0;
  }

  .order-flow,
  .workshop-grid,
  .workshop-flow,
  .recruit-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .order-flow li + li::before,
  .workshop-flow article + article::before {
    display: none;
  }

  .download-panel .btn {
    justify-self: start;
  }

  .product-sidebar {
    position: static;
  }

  .product-series {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

  .news-card-featured {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .cn-topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .cn-nav-inner {
    min-height: 66px;
  }

  .cn-brand img {
    width: 46px;
    height: 46px;
  }

  .cn-hero,
  .cn-hero-inner {
    min-height: 720px;
  }

  .cn-hero h1 {
    font-size: 38px;
  }

  .order-flow,
  .about-stats,
  .workshop-grid,
  .workshop-flow,
  .honor-grid,
  .standards-grid,
  .recruit-panel {
    grid-template-columns: 1fr;
  }

  .about-section .container,
  .workshop-section .container {
    width: min(calc(100% - 32px), 1360px);
  }

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

  .product-series button {
    min-height: 88px;
  }

  .product-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .product-search {
    grid-template-columns: 1fr;
    gap: 6px;
  }

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

  .catalog-card {
    min-height: 290px;
  }

  .contact-people {
    grid-template-columns: 1fr;
  }

  .contact-people a:nth-child(n) {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .contact-people a:last-child {
    border-bottom: 0;
  }

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

  .news-card-featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .news-card-featured .news-card-media {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .news-card-featured .news-card-body,
  .news-card-body {
    min-height: 0;
    padding: 22px;
  }

  .news-card-featured h3 {
    font-size: 24px;
  }

  .news-read {
    margin-top: 20px;
  }

  .news-dialog-inner {
    padding: 42px 24px 32px;
  }

  .news-dialog-media {
    height: 180px;
  }

  .news-dialog h3 {
    font-size: 25px;
  }

  .news-dialog-actions .btn {
    width: 100%;
  }

  .workshop-grid .media-carousel-actions {
    opacity: 1;
  }

  .download-panel {
    padding: 22px;
  }

  .notice-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .floating-contact {
    display: none;
  }
}

@media (max-width: 480px) {
  .product-board {
    grid-template-columns: 1fr;
  }

  .product-pagination {
    padding-inline: 10px;
  }

  .product-pagination button {
    width: 34px;
    height: 34px;
  }

  .contact-copy-actions .btn {
    width: 100%;
  }
}
