:root {
  --ink: #123355;
  --ink-strong: #06346a;
  --muted: #64748b;
  --line: #dbe7ef;
  --paper: #ffffff;
  --mist: #f4f9fb;
  --blue: #0062ad;
  --cyan: #13a9c9;
  --green: #55c51b;
  --green-deep: #218b3b;
  --amber: #d6a33f;
  --shadow: 0 24px 70px rgba(7, 54, 96, 0.12);
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui,
    -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  isolation: isolate;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  height: 82px;
  padding: 0 clamp(20px, 4vw, 64px);
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(244, 251, 255, 0.98) 0%, rgba(231, 247, 252, 0.96) 48%, rgba(239, 251, 241, 0.98) 100%),
    rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(219, 231, 239, 0.84);
  box-shadow: 0 10px 34px rgba(11, 54, 92, 0.07);
  backdrop-filter: blur(18px);
  transition:
    height 0.2s ease,
    box-shadow 0.2s ease;
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(115deg, transparent 0%, rgba(0, 98, 173, 0.13) 24%, rgba(19, 169, 201, 0.16) 42%, rgba(85, 197, 27, 0.13) 60%, transparent 78%),
    radial-gradient(circle at 12% 0%, rgba(19, 169, 201, 0.18), transparent 32%),
    radial-gradient(circle at 86% 0%, rgba(85, 197, 27, 0.15), transparent 34%);
  opacity: 0.9;
  transform: translateX(-18%);
  animation: navLightSweep 9s ease-in-out infinite alternate;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(19, 169, 201, 0.75), rgba(85, 197, 27, 0.75), transparent);
  opacity: 0.65;
}

.site-header > * {
  position: relative;
  z-index: 1;
}

.site-header.is-scrolled {
  height: 70px;
  box-shadow: 0 14px 40px rgba(14, 49, 82, 0.1);
}

.brand {
  display: block;
  position: relative;
  width: clamp(176px, 15vw, 204px);
  height: 72px;
  overflow: hidden;
  flex-shrink: 0;
  background: transparent;
}

.brand img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.site-header.is-scrolled .brand {
  height: 62px;
}

.site-nav {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  justify-self: center;
  padding: 6px;
  overflow: hidden;
  color: #ffffff;
  font-size: 15px;
  font-weight: 650;
  background:
    linear-gradient(135deg, rgba(4, 76, 130, 0.94), rgba(0, 129, 153, 0.9) 52%, rgba(40, 142, 64, 0.92)),
    rgba(8, 66, 106, 0.92);
  border: 1px solid rgba(167, 231, 232, 0.44);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(2, 35, 61, 0.25),
    0 14px 32px rgba(0, 98, 173, 0.18);
}

.site-nav::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.18) 34%, transparent 56%);
  transform: translateX(-120%);
  animation: navPillSweep 5.6s ease-in-out infinite;
}

.site-nav > a {
  z-index: 1;
}

.site-nav a {
  position: relative;
  padding: 9px clamp(12px, 1.6vw, 18px);
  border-radius: 999px;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.site-nav a::after {
  position: absolute;
  right: 16px;
  bottom: 5px;
  left: 16px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, #ffffff, rgba(151, 255, 151, 0.92));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 8px 18px rgba(0, 66, 115, 0.2);
  transform: translateY(-1px);
}

@keyframes navLightSweep {
  from {
    transform: translateX(-20%);
  }

  to {
    transform: translateX(18%);
  }
}

@keyframes navPillSweep {
  0%,
  28% {
    transform: translateX(-120%);
  }

  62%,
  100% {
    transform: translateX(120%);
  }
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #ffffff;
  font-weight: 750;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--blue), var(--green-deep));
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0, 98, 173, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.header-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(0, 98, 173, 0.24);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px auto;
  background: var(--ink-strong);
  border-radius: 999px;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100svh - 40px);
  padding-top: 82px;
  overflow: hidden;
  color: #ffffff;
  background: #073b68;
}

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

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  animation-duration: 12s;
  animation-iteration-count: infinite;
}

.hero-slide-one {
  animation-name: heroFadeOne;
}

.hero-slide-two {
  animation-name: heroFadeTwo;
}

@keyframes heroFadeOne {
  0%,
  42% {
    opacity: 1;
  }

  50%,
  92% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes heroFadeTwo {
  0%,
  42% {
    opacity: 0;
  }

  50%,
  92% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header::before {
    animation: none;
  }

  .site-nav::before {
    animation: none;
  }

  .hero-slide {
    animation: none;
  }

  .hero-slide-one {
    opacity: 1;
  }

  .hero-slide-two {
    opacity: 0;
  }
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 35, 62, 0.9) 0%, rgba(3, 39, 69, 0.78) 36%, rgba(3, 43, 71, 0.26) 72%),
    linear-gradient(0deg, rgba(1, 28, 48, 0.22), rgba(1, 28, 48, 0));
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: calc(100svh - 122px);
  padding: 64px 0 44px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(40px, 5.1vw, 70px);
  line-height: 1.1;
  font-weight: 850;
}

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

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

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

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), var(--green-deep));
  box-shadow: 0 16px 32px rgba(0, 98, 173, 0.2);
}

.btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.1);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(760px, 100%);
  margin: 56px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.hero-facts div {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.1);
}

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

.hero-facts dt {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.hero-facts dd {
  margin: 0;
  font-size: 16px;
  font-weight: 780;
}

.section {
  padding: clamp(72px, 9vw, 112px) 0;
}

.section-band {
  padding: 54px 0;
  background: linear-gradient(90deg, #f5fbfd, #ffffff 58%, #f4faf3);
  border-bottom: 1px solid var(--line);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.intro h2,
.section-heading h2,
.contact-panel h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
}

.intro p:last-child,
.section-heading p,
.contact-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 24px 70px;
  align-items: end;
  margin-bottom: 34px;
}

.section-heading .section-kicker,
.section-heading h2 {
  grid-column: 1;
}

.section-heading p {
  grid-column: 2;
  grid-row: 1 / span 2;
  max-width: 560px;
  align-self: end;
}

.section-heading.compact,
.section-heading.align-left {
  display: block;
}

.section-heading.compact {
  margin-bottom: 28px;
}

.section-heading.align-left p {
  max-width: 520px;
  margin-top: 18px;
}

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

.product-card {
  position: relative;
  min-height: 276px;
  padding: 30px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 46px rgba(18, 51, 85, 0.06);
}

.product-card .card-accent {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--cyan), var(--green));
}

.product-card span {
  color: var(--cyan);
  font-weight: 850;
}

.product-card h3 {
  margin: 18px 0 12px;
  color: var(--ink-strong);
  font-size: 22px;
  line-height: 1.25;
}

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

.product-card small {
  display: block;
  margin-top: 18px;
  color: #285272;
  font-size: 14px;
  font-weight: 700;
}

.applications {
  background:
    linear-gradient(135deg, rgba(0, 98, 173, 0.92), rgba(15, 129, 116, 0.86)),
    #063b68;
  color: #ffffff;
}

.applications .section-kicker,
.applications h2 {
  color: #ffffff;
}

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

.application-list span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-weight: 780;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.service {
  background: var(--mist);
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.84fr) minmax(360px, 1.16fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

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

.steps li {
  position: relative;
  padding: 22px 24px 22px 74px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(16, 56, 84, 0.06);
}

.steps li::before {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #ffffff;
  font-weight: 850;
  content: counter(steps);
  counter-increment: steps;
  background: linear-gradient(135deg, var(--blue), var(--green-deep));
  border-radius: 50%;
}

.steps strong {
  display: block;
  color: var(--ink-strong);
  font-size: 18px;
}

.steps span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.contact {
  background:
    radial-gradient(circle at 18% 18%, rgba(19, 169, 201, 0.12), transparent 28%),
    linear-gradient(180deg, #ffffff, #f7fbfa);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 1.14fr);
  gap: 24px;
  align-items: stretch;
}

.contact-panel,
.inquiry-form {
  padding: clamp(26px, 4vw, 42px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel p {
  margin-top: 18px;
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.contact-methods a,
.contact-methods button,
.contact-methods .contact-method {
  display: block;
  width: 100%;
  padding: 16px 18px;
  text-align: left;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.contact-methods span {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 13px;
}

.contact-methods strong {
  display: block;
  color: var(--ink-strong);
  overflow-wrap: anywhere;
}

.inquiry-form {
  display: grid;
  gap: 16px;
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--ink-strong);
  font-weight: 760;
}

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

.field-required {
  margin-left: 2px;
  color: #bd2c2c;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fafdff;
  border: 1px solid #cfe0ea;
  border-radius: 8px;
  outline: 0;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 4px rgba(19, 169, 201, 0.14);
}

.inquiry-form textarea {
  resize: vertical;
}

.form-submit {
  width: fit-content;
  min-width: 168px;
  border: 0;
  cursor: pointer;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

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

.form-note.is-success {
  color: #15763a;
  font-weight: 700;
}

.form-note.is-error {
  color: #b42318;
  font-weight: 700;
}

.site-footer {
  padding: 34px 0;
  color: #c9d7e4;
  background: #082f53;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(300px, 1.3fr);
  gap: 28px;
  align-items: center;
}

.site-footer img {
  width: 220px;
  height: 70px;
  object-fit: cover;
  object-position: center 48.5%;
  background: #ffffff;
  border-radius: 8px;
}

.site-footer p {
  margin: 12px 0 0;
}

.site-footer .footer-grid > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-copy {
  width: min(1160px, calc(100% - 40px));
  margin: 24px auto 0;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.featured-product {
  background:
    radial-gradient(circle at 90% 18%, rgba(85, 197, 27, 0.12), transparent 26%),
    linear-gradient(135deg, #f5fbfd, #ffffff 54%, #f6fbf4);
  border-bottom: 1px solid var(--line);
}

.featured-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: clamp(36px, 7vw, 92px);
  align-items: center;
}

.featured-product h2,
.subpage-hero h1,
.article-hero h1,
.product-content h2,
.product-inquiry-card h2,
.inline-cta h2 {
  margin: 0;
  color: var(--ink-strong);
  line-height: 1.16;
}

.featured-product h2 {
  font-size: clamp(42px, 6vw, 68px);
}

.featured-lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.featured-actions,
.section-more {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 30px;
}

.text-link,
.rss-link,
.card-link {
  color: var(--blue);
  font-weight: 800;
}

.text-link:hover,
.rss-link:hover,
.card-link:hover {
  color: var(--green-deep);
}

.product-facts,
.product-summary,
.article-facts {
  display: grid;
  margin: 0;
}

.product-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.product-facts div {
  min-height: 138px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
}

.product-facts div:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.product-facts div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.product-facts dt,
.product-summary dt,
.article-facts dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.product-facts dd,
.product-summary dd,
.article-facts dd {
  margin: 0;
  color: var(--ink-strong);
  font-weight: 800;
}

.product-card-featured {
  background: linear-gradient(150deg, #ffffff, #f3fbf4);
  border-color: rgba(85, 197, 27, 0.42);
  box-shadow: 0 18px 52px rgba(33, 139, 59, 0.12);
}

.product-card h3 a:hover,
.insight-card h3 a:hover {
  color: var(--blue);
}

.product-card .card-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
}

.insights-section,
.related-product-reading {
  background: var(--mist);
}

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

.insight-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 16px 44px rgba(18, 51, 85, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 54px rgba(18, 51, 85, 0.1);
}

.insight-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
}

.insight-meta span {
  padding: 4px 10px;
  color: var(--green-deep);
  font-weight: 800;
  background: rgba(85, 197, 27, 0.1);
  border-radius: 999px;
}

.insight-card h3 {
  margin: 20px 0 12px;
  color: var(--ink-strong);
  font-size: 21px;
  line-height: 1.4;
}

.insight-card p {
  margin: 0 0 22px;
  color: var(--muted);
}

.insight-card .card-link {
  margin-top: auto;
}

.btn-outline {
  color: var(--ink-strong);
  background: #ffffff;
  border-color: #bcd1de;
}

.btn-outline:hover {
  border-color: var(--cyan);
  box-shadow: 0 12px 26px rgba(0, 98, 173, 0.1);
}

.footer-content {
  display: grid;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  color: #ffffff;
  font-weight: 750;
}

.footer-links a:hover {
  color: #9ce678;
}

.footer-content > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.subpage {
  background: #ffffff;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: center;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a:hover {
  color: var(--blue);
}

.breadcrumbs.light {
  color: rgba(255, 255, 255, 0.72);
}

.breadcrumbs.light a:hover {
  color: #ffffff;
}

.product-hero,
.subpage-hero {
  padding: 142px 0 86px;
  color: #ffffff;
  background:
    radial-gradient(circle at 83% 20%, rgba(85, 197, 27, 0.22), transparent 25%),
    radial-gradient(circle at 68% 80%, rgba(19, 169, 201, 0.22), transparent 28%),
    linear-gradient(135deg, #06345f, #055a7d 58%, #176a46);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: end;
}

.product-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(52px, 8vw, 88px);
  line-height: 1.05;
}

.product-hero-lead {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 2vw, 22px);
}

.product-summary {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  backdrop-filter: blur(14px);
}

.product-summary div {
  min-height: 112px;
  padding: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.product-summary div:nth-child(even) {
  border-right: 0;
}

.product-summary div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.product-summary dt {
  color: rgba(255, 255, 255, 0.62);
}

.product-summary dd {
  color: #ffffff;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(36px, 6vw, 74px);
  align-items: start;
}

.product-content,
.article-body {
  color: #324f68;
  font-size: 17px;
  line-height: 1.85;
}

.product-content > section + section,
.article-body > section {
  margin-top: 58px;
}

.product-content h2,
.article-body h2,
.related-content h2 {
  margin: 0 0 20px;
  color: var(--ink-strong);
  font-size: clamp(27px, 3.2vw, 38px);
}

.product-content h3 {
  margin: 0 0 8px;
  color: var(--ink-strong);
  font-size: 19px;
}

.product-content p,
.article-body p {
  margin: 0 0 18px;
}

.table-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  font-size: 15px;
}

th,
td {
  padding: 15px 18px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

thead th,
tbody th {
  color: var(--ink-strong);
  font-weight: 800;
  background: #f4f9fb;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

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

.feature-list > div {
  padding: 22px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.check-list,
.article-body ul {
  display: grid;
  gap: 10px;
  padding-left: 24px;
}

.check-list li::marker,
.article-body li::marker {
  color: var(--green-deep);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.faq-list summary {
  padding: 18px 30px 18px 0;
  color: var(--ink-strong);
  font-weight: 800;
  cursor: pointer;
}

.faq-list details p {
  margin: 0;
  padding: 0 0 20px;
  color: var(--muted);
}

.content-notice {
  margin-top: 48px;
  padding: 20px 22px;
  color: #34576e;
  background: #f4f9fb;
  border-left: 4px solid var(--cyan);
  border-radius: 0 8px 8px 0;
}

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

.content-notice p {
  margin: 6px 0 0;
  font-size: 14px;
  line-height: 1.7;
}

.product-inquiry-card {
  position: sticky;
  top: 98px;
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.product-inquiry-card h2 {
  font-size: 28px;
}

.product-inquiry-card > p:not(.section-kicker) {
  margin: 12px 0 22px;
  color: var(--muted);
}

.compact-form {
  padding: 0;
  border: 0;
  box-shadow: none;
}

.direct-contact {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.direct-contact a {
  display: grid;
}

.direct-contact span {
  color: var(--muted);
  font-size: 12px;
}

.direct-contact strong {
  color: var(--ink-strong);
  overflow-wrap: anywhere;
}

.listing-page .subpage-hero h1,
.subpage-hero h1 {
  max-width: 880px;
  color: #ffffff;
  font-size: clamp(38px, 6vw, 66px);
}

.subpage-hero > .section-inner > p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.content-update-note {
  margin-top: 30px;
  padding: 22px 24px;
  background: #f5fbf4;
  border: 1px solid rgba(85, 197, 27, 0.28);
  border-radius: 9px;
}

.content-update-note strong {
  color: var(--green-deep);
}

.content-update-note p {
  margin: 5px 0 0;
  color: var(--muted);
}

.article-page {
  padding: 122px 0 90px;
}

.article-shell {
  width: min(900px, calc(100% - 40px));
}

.article-hero {
  padding: 18px 0 46px;
  border-bottom: 1px solid var(--line);
}

.article-hero h1 {
  max-width: 820px;
  font-size: clamp(36px, 6vw, 62px);
}

.article-description {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 24px;
  color: #7890a3;
  font-size: 13px;
}

.article-body {
  padding-top: 46px;
}

.article-intro {
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
}

.article-facts {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 34px 0 58px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.article-facts div {
  padding: 20px;
  background: var(--mist);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.article-facts div:nth-child(even) {
  border-right: 0;
}

.article-facts div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.related-content {
  margin-top: 80px;
  padding-top: 62px;
  border-top: 1px solid var(--line);
}

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

.inline-cta {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  padding: 32px;
  background: linear-gradient(135deg, #eef8fc, #f3faef);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.inline-cta h2 {
  font-size: 28px;
}

.inline-cta p:not(.section-kicker) {
  max-width: 580px;
  margin: 8px 0 0;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    height: 74px;
  }

  .brand {
    width: 170px;
    height: 66px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 74px;
    right: 16px;
    left: 16px;
    display: grid;
    width: auto;
    justify-self: auto;
    gap: 0;
    padding: 10px;
    overflow: hidden;
    visibility: hidden;
    color: #24445f;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s ease;
  }

  .site-nav::before {
    display: none;
  }

  .nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 15px 14px;
    border-radius: 8px;
  }

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

  .site-nav a:hover {
    background: var(--mist);
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 36px);
    padding-top: 74px;
  }

  .hero-inner {
    min-height: calc(100svh - 110px);
    padding: 56px 0 44px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 35, 62, 0.92) 0%, rgba(3, 39, 69, 0.76) 58%, rgba(3, 43, 71, 0.42) 100%),
      linear-gradient(0deg, rgba(1, 28, 48, 0.22), rgba(1, 28, 48, 0));
  }

  .intro-grid,
  .section-heading,
  .service-grid,
  .contact-grid,
  .footer-grid,
  .featured-product-grid,
  .product-hero-grid,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .section-heading .section-kicker,
  .section-heading h2,
  .section-heading p {
    grid-column: auto;
    grid-row: auto;
  }

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

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

  .product-inquiry-card {
    position: static;
  }

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

@media (max-width: 620px) {
  .section-inner {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 0 14px;
  }

  .brand {
    width: 150px;
    height: 58px;
  }

  .hero-inner {
    padding-top: 48px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-facts {
    display: none;
  }

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

  .product-grid,
  .application-list,
  .insight-grid,
  .related-content .insight-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .product-facts,
  .product-summary,
  .article-facts {
    grid-template-columns: 1fr;
  }

  .product-facts div,
  .product-facts div:nth-child(odd),
  .product-facts div:nth-last-child(-n + 2),
  .product-summary div,
  .product-summary div:nth-last-child(-n + 2),
  .article-facts div,
  .article-facts div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-facts div:last-child,
  .article-facts div:last-child {
    border-bottom: 0;
  }

  .product-summary div:last-child {
    border-bottom: 0;
  }

  .product-hero,
  .subpage-hero {
    padding-top: 116px;
  }

  .article-shell {
    width: min(100% - 28px, 900px);
  }

  .inline-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 25px;
  }

  .inline-cta .btn {
    width: 100%;
  }

  .product-card {
    min-height: auto;
    padding: 26px;
  }

  .steps li {
    padding-right: 20px;
    padding-left: 68px;
  }

  .contact-panel,
  .inquiry-form {
    padding: 24px;
  }

  .form-submit {
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
