:root {
  --navy-950: #111743;
  --navy-900: #181d64;
  --navy-800: #252a86;
  --cyan-700: #00696e;
  --cyan-100: #ddf7f7;
  --steel-700: #46464f;
  --steel-500: #738094;
  --steel-200: #d8e0e8;
  --steel-100: #eef3f6;
  --shell: min(1280px, 100vw);
  color-scheme: light;
  font-family: "IBM Plex Sans", "Inter", "Noto Sans SC", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { background: #fcf8fd; color: #162033; }
body { margin: 0; background: #fcf8fd; min-width: 320px; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; object-fit: cover; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1 { color: var(--navy-900); font-size: 32px; line-height: 1.2; letter-spacing: 0; }
h2 { color: var(--navy-900); font-size: 24px; line-height: 1.3; letter-spacing: 0; }
h3 { color: var(--navy-900); font-size: 18px; line-height: 1.4; letter-spacing: 0; }
p { color: var(--steel-500); line-height: 1.6; }

.shell { width: var(--shell); margin: 0 auto; padding: 0 24px; }
.white-page, .white-page body { background: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 81px;
  background: #fcf8fd;
  border-bottom: 1px solid var(--steel-200);
}
.header-inner { height: 80px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { color: var(--navy-900); font-weight: 800; font-size: 16px; line-height: 1.4; display: inline-flex; align-items: center; gap: 10px; min-width: 168px; }
.brand img { width: 116px; height: auto; max-height: 42px; object-fit: contain; }
.brand span { white-space: nowrap; }
.primary-nav { display: flex; align-items: center; gap: 24px; }
.nav-link, .language-link, .eyebrow, .button, .breadcrumb, .pagination, dt, legend, label, .category-row {
  font-family: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  letter-spacing: .65px;
}
.nav-link { color: var(--steel-500); font-size: 13px; padding: 8px 0; }
.nav-link.is-active { color: var(--navy-900); border-bottom: 2px solid var(--navy-900); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.language-link { color: var(--steel-500); font-size: 13px; }
.menu-toggle { display: none; width: 40px; height: 40px; border: 1px solid var(--steel-200); background: #fff; }
.menu-toggle span { display: block; width: 18px; height: 2px; margin: 4px auto; background: var(--navy-900); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 32px;
  border-radius: 2px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
}
.button-small { min-height: 32px; padding: 0 16px; }
.button-dark { color: #fff; background: var(--navy-950); }
.button-outline { color: var(--navy-900); background: transparent; border-color: var(--steel-200); }
.button-cyan { color: #fff; background: var(--cyan-700); }
.button.full { width: 100%; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.home-hero {
  min-height: calc(100vh - 81px);
  max-height: 927px;
  background: linear-gradient(90deg, rgba(252,248,253,.96) 0%, rgba(252,248,253,.82) 42%, rgba(252,248,253,.22) 70%), var(--hero-image) center / cover no-repeat;
  display: flex;
  align-items: center;
}
.hero-content { padding-top: 96px; padding-bottom: 96px; }
.hero-content h1 { max-width: 620px; font-size: clamp(42px, 7vw, 86px); line-height: .95; }
.hero-content p { max-width: 610px; font-size: 18px; color: var(--steel-700); }

.page-home-v2 .site-footer { margin-top: 0; }
.footer-logo { width: 180px; height: auto; max-height: 64px; object-fit: contain; margin-bottom: 16px; }
.site-footer {
  margin-top: 24px;
  background: var(--navy-950);
  color: #e4e1e6;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  padding-top: 56px;
  padding-bottom: 56px;
}
.footer-brand p { color: #bec3f9; max-width: 640px; }
.footer-brand .copyright { color: #8fa0da; margin-top: 18px; }
.footer-nav-block h3 { color: #fff; margin-bottom: 18px; }
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
}
.footer-nav a {
  color: #e4e1e6;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-nav a:hover { color: #13bfc8; border-bottom-color: rgba(19,191,200,.5); }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  padding-top: 18px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #8fa0da;
  font-size: 13px;
}
.footer-legal a { color: inherit; }
.footer-legal a:hover { color: #13bfc8; }
.repair-tags { margin-top: 24px; }
.repair-tags span { background: #fff; }
.home-v2-hero {
  position: relative;
  min-height: 819px;
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--steel-200);
  background:
    linear-gradient(90deg, #fcf8fd 0%, rgba(252,248,253,.8) 50%, rgba(252,248,253,0) 100%),
    linear-gradient(0deg, rgba(0,0,0,.4), rgba(0,0,0,.4)),
    var(--hero-image) center / cover no-repeat;
  transition: background-image .45s ease;
}
.home-v2-hero-inner { position: relative; z-index: 1; }
.home-v2-copy { max-width: 672px; transition: opacity .2s ease, transform .2s ease; }
.home-v2-copy.is-changing { opacity: .08; transform: translateY(8px); }
.home-v2-copy h1 {
  max-width: 672px;
  color: var(--navy-950);
  font-size: 32px;
  line-height: 1.2;
}
.home-v2-copy p { max-width: 576px; color: #162033; font-size: 16px; }
.home-v2-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 16px 0 0;
}
.home-v2-metrics div { border-left: 2px solid #13bfc8; padding-left: 14px; }
.home-v2-metrics dt { color: var(--navy-900); font-family: "IBM Plex Sans", sans-serif; font-weight: 800; }
.home-v2-metrics dd { color: var(--steel-500); font-size: 12px; letter-spacing: .6px; text-transform: uppercase; }
.hero-dots { position: absolute; left: 50%; bottom: 32px; transform: translateX(-50%); display: flex; gap: 12px; z-index: 2; }
.hero-dots button { width: 12px; height: 12px; padding: 0; border-radius: 999px; border: 0; background: var(--navy-900); opacity: .25; cursor: pointer; }
.hero-dots button.is-active { width: 36px; opacity: 1; background: #13bfc8; }
.button img, .home-v2-link img { width: 12px; height: 12px; margin-left: 8px; object-fit: contain; }

.home-v2-band {
  padding: 80px 0 81px;
  background: var(--steel-100);
  border-bottom: 1px solid var(--steel-200);
}
.home-v2-products, .home-v2-bottom { padding: 80px 0; }
.home-v2-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
.home-v2-section-head h2 { color: var(--navy-950); font-size: 32px; margin-bottom: 8px; }
.home-v2-section-head p { margin-bottom: 0; }
.home-v2-link {
  display: inline-flex;
  align-items: center;
  color: #13bfc8;
  font-family: "JetBrains Mono", monospace;
  font-size: 16px;
  letter-spacing: .8px;
  text-transform: uppercase;
  white-space: nowrap;
}
.home-v2-capabilities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.home-v2-capabilities article {
  min-height: 196px;
  background: #fff;
  border: 1px solid var(--steel-200);
  border-radius: 2px;
  padding: 25px;
}
.home-v2-capabilities img { width: 30px; height: 30px; object-fit: contain; margin-bottom: 16px; }
.home-v2-capabilities h3 { color: var(--navy-950); margin-bottom: 8px; }
.home-v2-capabilities p { color: #162033; font-size: 14px; opacity: .8; }

.home-v2-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.home-v2-product-grid article {
  background: #fff;
  border: 1px solid var(--steel-200);
  border-radius: 2px;
  overflow: hidden;
}
.home-v2-product-grid > article > img { width: 100%; height: 256px; }
.home-v2-product-grid article div { padding: 25px; }
.home-v2-product-grid h3 { color: var(--navy-950); margin-bottom: 8px; }
.home-v2-product-grid p { min-height: 42px; color: var(--steel-500); font-size: 14px; }
.home-v2-product-grid a {
  display: inline-flex;
  align-items: center;
  color: #13bfc8;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  letter-spacing: .65px;
  text-transform: uppercase;
}
.home-v2-product-grid a img { width: 6px; height: 9px; margin-left: 4px; object-fit: contain; }

.home-v2-service {
  padding: 80px 0 81px;
  background: var(--navy-950);
  color: #fff;
}
.home-v2-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.home-v2-service h2 { color: #fff; font-size: 32px; }
.home-v2-service h3 { color: #13bfc8; font-size: 24px; }
.home-v2-service p { color: #e4e1e6; }
.home-v2-service ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 16px; color: #e4e1e6; }
.home-v2-service li { display: flex; align-items: center; gap: 12px; }
.home-v2-service li img { width: 20px; height: 20px; object-fit: contain; }
.home-v2-service-grid > img { width: 100%; height: 500px; border-radius: 2px; box-shadow: 0 20px 40px rgba(0,0,0,.22); }
.button.inverse { border-color: #13bfc8; color: #13bfc8; margin-top: 32px; }

.home-v2-bottom { background: #fcf8fd; }
.bottom-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.home-v2-section-head.compact { margin-bottom: 32px; }
.home-v2-section-head.compact h2 { font-size: 24px; margin-bottom: 0; }
.teaser-list, .insight-teasers { display: grid; gap: 24px; }
.home-insight-grid { grid-template-columns: repeat(3, 1fr); }
.teaser-list article {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 16px;
  padding: 17px;
  border: 1px solid var(--steel-200);
  border-radius: 2px;
  background: #fcf8fd;
}
.teaser-list img { width: 128px; height: 96px; border-radius: 2px; }
.teaser-list h3, .insight-teasers h3 { color: var(--navy-950); margin-bottom: 4px; }
.teaser-list p, .insight-teasers p { color: var(--steel-500); font-size: 14px; margin-bottom: 0; }
.insight-teasers a {
  display: block;
  padding: 16px 16px 16px 20px;
  background: var(--steel-100);
  border-left: 4px solid #13bfc8;
}
.insight-teasers time { color: var(--steel-500); font-family: "JetBrains Mono", monospace; font-size: 12px; }

.page-section { padding: 80px 0 96px; }
.band-section, .split-hero, .contact-hero { background: var(--steel-100); border-bottom: 1px solid var(--steel-200); }
.split-hero { padding: 96px 0 97px; }
.split-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 32px; align-items: center; }
.split-grid img { width: 100%; height: 384px; border: 1px solid var(--steel-200); border-radius: 2px; }
.eyebrow { color: var(--cyan-700); font-size: 13px; font-weight: 700; text-transform: uppercase; }

.toolbar-row { display: flex; justify-content: space-between; gap: 24px; align-items: center; margin-bottom: 32px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; color: var(--steel-500); font-size: 13px; }
.breadcrumb b { color: var(--navy-900); }
.search-input { display: grid; gap: 6px; color: var(--steel-500); font-size: 13px; }
.search-input input, input, select, textarea {
  width: 100%;
  border: 1px solid var(--steel-200);
  border-radius: 2px;
  background: #fff;
  color: #162033;
  padding: 11px 14px;
}
textarea { min-height: 120px; resize: vertical; }

.catalog-layout, .content-sidebar, .article-layout, .contact-grid, .two-columns { display: grid; grid-template-columns: 290px 1fr; gap: 24px; align-items: start; }
.filter-panel, .contact-card, .contact-action-panel, .summary-box, .support-widget, .wide-card, .dark-card, .list-card, .quality-list, .cta-panel {
  border: 1px solid var(--steel-200);
  border-radius: 2px;
  padding: 25px;
}
.filter-panel { background: var(--steel-100); display: grid; gap: 16px; }
.filter-panel h2 { font-size: 18px; margin-bottom: 0; }
.filter-panel fieldset { border: 0; padding: 0; margin: 0; display: grid; gap: 10px; }
.filter-panel label { color: var(--steel-700); font-size: 13px; line-height: 1.5; }
.filter-panel input[type="checkbox"] { width: auto; accent-color: var(--navy-900); }
.catalog-content { min-width: 0; }
.result-bar { display: flex; justify-content: space-between; align-items: center; padding: 16px; background: var(--steel-100); border: 1px solid var(--steel-200); margin-bottom: 24px; color: var(--steel-500); }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card, .article-card { background: #fff; border: 1px solid var(--steel-200); border-radius: 2px; overflow: hidden; }
[data-click-href] { cursor: pointer; }
[data-click-href]:focus-visible { outline: 3px solid var(--cyan-100); outline-offset: 4px; }
.product-card[data-click-href], .article-card[data-click-href], .case-card[data-click-href], .list-card[data-click-href], .process-grid article[data-click-href], .home-v2-product-grid > article[data-click-href] { transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease; }
.product-card[data-click-href]:hover, .article-card[data-click-href]:hover, .case-card[data-click-href]:hover, .list-card[data-click-href]:hover, .process-grid article[data-click-href]:hover, .home-v2-product-grid > article[data-click-href]:hover { border-color: var(--cyan-700); box-shadow: 0 18px 42px rgba(17, 23, 67, .12); transform: translateY(-2px); }
.home-v2-hero[data-click-href] .home-v2-copy, .home-v2-service[data-click-href] .home-v2-service-grid { transition: transform .18s ease; }
.home-v2-hero[data-click-href]:hover .home-v2-copy, .home-v2-service[data-click-href]:hover .home-v2-service-grid { transform: translateY(-2px); }
.product-card img { width: 100%; height: 220px; }
.product-card-body { padding: 24px; }
.product-card dl, .stats, .quality-list, .contact-card dl { display: grid; gap: 12px; }
.product-card dl div, .stats div, .quality-list div, .contact-card dl div { display: flex; justify-content: space-between; gap: 16px; border-top: 1px solid var(--steel-200); padding-top: 12px; }
dt { color: var(--steel-500); font-size: 13px; }
dd { margin: 0; color: #162033; }
.text-link { color: var(--navy-900); font-weight: 700; font-family: "JetBrains Mono", monospace; font-size: 13px; }
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; padding-top: 32px; }
.pagination a, .pagination button { width: 40px; height: 40px; border: 1px solid var(--steel-200); background: #fff; display: grid; place-items: center; color: var(--navy-900); }
.pagination .is-active { background: var(--navy-900); color: #fff; }

.detail-hero { display: grid; grid-template-columns: 5fr 7fr; gap: 48px; align-items: start; margin-top: 32px; }
.detail-hero h2 { color: var(--steel-500); font-size: 20px; }
.gallery-main { width: 100%; height: 460px; border: 1px solid var(--steel-200); }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 12px; }
.gallery-thumbs button { padding: 0; border: 1px solid var(--steel-200); background: #fff; color: var(--steel-500); font-size: 12px; }
.gallery-thumbs img { width: 100%; height: 82px; }
.gallery-thumbs span { display: block; padding: 8px; }
.spec-section, .process-grid { margin-top: 72px; }
.product-detail-block { padding: 56px 0 0; }
.product-detail-block .two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.product-evidence { margin-top: 72px; padding: 56px 0; }
.product-evidence .two-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.table-wrap { overflow-x: auto; border: 1px solid var(--steel-200); border-radius: 2px; }
table { width: 100%; border-collapse: collapse; min-width: 720px; background: #fff; }
th { background: var(--navy-900); color: #fff; text-align: left; font-family: "JetBrains Mono", monospace; font-size: 13px; letter-spacing: .65px; }
td, th { border: 1px solid var(--steel-200); padding: 16px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.process-grid h2 { grid-column: 1 / -1; }
.process-grid article { background: #fff; border: 1px solid var(--steel-200); padding: 24px; }

.bento-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; }
.wide-card { background: #fcf8fd; }
.dark-card { background: var(--navy-900); color: #fff; }
.dark-card h2, .dark-card h3 { color: #fff; }
.dark-card p, .dark-card li { color: #bec3f9; }
.band-section { padding: 81px 0; }
.honor-section { background: #fff; }
.honor-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(360px, 7fr); gap: 48px; align-items: start; }
.honor-grid > div { position: sticky; top: 112px; }
.honor-figure { margin: 0; max-height: 720px; overflow: auto; border: 1px solid var(--steel-200); background: var(--steel-100); }
.honor-figure img { display: block; width: 100%; height: auto; }
.honor-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.honor-card { background: #fcf8fd; border: 1px solid var(--steel-200); border-radius: 2px; overflow: hidden; }
.honor-card img { width: 100%; aspect-ratio: 3 / 4; object-fit: contain; background: #fff; border-bottom: 1px solid var(--steel-200); }
.honor-card div { padding: 14px; }
.honor-card span { display: block; color: var(--cyan-700); font-family: "JetBrains Mono", monospace; font-size: 12px; letter-spacing: .4px; margin-bottom: 6px; }
.honor-card h3 { font-size: 15px; margin-bottom: 0; }
.two-columns { grid-template-columns: 1fr 1fr; gap: 48px; }
.list-card { background: #fcf8fd; margin-top: 16px; }
.image-quote { margin: 24px 0; position: relative; border: 1px solid var(--steel-200); }
.image-quote img { width: 100%; height: 264px; }
.image-quote figcaption { position: absolute; inset: auto 0 0; padding: 24px; color: #fff; background: linear-gradient(0deg, rgba(24,29,100,.8), transparent); font-size: 18px; font-weight: 700; }

.narrow-title { max-width: 816px; text-align: center; padding-bottom: 48px; }
.narrow-title.left { text-align: left; margin: 0; }
.fact-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; background: var(--steel-100); border: 1px solid var(--steel-200); padding: 25px; margin-bottom: 64px; }
.fact-row span { color: var(--navy-900); font-family: "JetBrains Mono", monospace; font-size: 13px; display: block; }
.fact-row b { color: var(--navy-900); font-size: 24px; }
.tech-note, .tag-row span { background: #fcf8fd; border: 1px solid var(--steel-200); padding: 12px; font-family: "JetBrains Mono", monospace; font-size: 13px; }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }

.case-list { display: grid; gap: 32px; }
.case-card { display: grid; grid-template-columns: 1fr 2fr; background: #fff; border: 1px solid var(--steel-200); border-radius: 4px; overflow: hidden; }
.case-image { position: relative; min-height: 320px; }
.case-image img { width: 100%; height: 100%; }
.case-image span { position: absolute; top: 16px; left: 16px; background: var(--navy-900); color: #fff; padding: 4px 8px; font-family: "JetBrains Mono", monospace; font-size: 13px; }
.case-body { padding: 24px; display: grid; gap: 24px; }
.case-heading, .case-columns { display: flex; justify-content: space-between; gap: 24px; }
.case-heading small, .case-columns h3, .result-box h3 { color: var(--steel-500); font-family: "JetBrains Mono", monospace; font-size: 13px; letter-spacing: .65px; }
.result-box { background: var(--cyan-100); color: var(--cyan-700); padding: 16px; }
.result-box p, .result-box h3 { color: var(--cyan-700); }

.content-sidebar { grid-template-columns: 1fr 290px; }
.insight-main { display: grid; gap: 48px; min-width: 0; }
.featured-article { position: relative; display: block; min-height: 402px; border: 1px solid var(--steel-200); overflow: hidden; color: #fff; }
.featured-article img { position: absolute; inset: 0; width: 100%; height: 100%; }
.featured-article::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.65), transparent); }
.featured-article span, .featured-article h1, .featured-article p { position: relative; z-index: 1; margin-left: 32px; margin-right: 32px; }
.featured-article span { display: inline-block; margin-top: 220px; padding: 5px 13px; background: var(--cyan-100); border: 1px solid var(--navy-900); color: var(--navy-900); font-family: "JetBrains Mono", monospace; font-size: 13px; }
.featured-article h1 { color: #fff; }
.featured-article p { max-width: 760px; color: #e4e1e6; }
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card img { width: 100%; height: 192px; }
.article-card div { padding: 24px; }
.article-card p:first-child { display: flex; justify-content: space-between; gap: 12px; font-family: "JetBrains Mono", monospace; font-size: 13px; }
.article-card span { color: var(--navy-900); background: var(--steel-100); padding: 4px 8px; }
.category-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--steel-500); }
.category-row b { background: var(--steel-100); padding: 2px 8px; }

.article-layout { grid-template-columns: 2fr 1fr; }
.article-content { display: grid; gap: 28px; min-width: 0; }
.article-head p { display: flex; flex-wrap: wrap; gap: 16px; font-family: "JetBrains Mono", monospace; font-size: 13px; }
.summary-box { background: var(--steel-100); }
.article-content figure { margin: 0; }
.article-content figure img { width: 100%; border: 1px solid var(--steel-200); }
.article-content figcaption { color: var(--steel-500); font-family: "JetBrains Mono", monospace; font-size: 13px; text-align: center; padding-top: 12px; }
.article-side { display: grid; gap: 32px; }
.support-widget { background: var(--navy-900); color: #fff; }
.support-widget h2 { color: #fff; }
.support-widget p, .support-widget label { color: #bbc7dd; }

.faq-layout { display: grid; grid-template-columns: 284px 1fr; gap: 32px; }
.faq-list { display: grid; gap: 48px; }
details { border-top: 1px solid var(--steel-200); }
summary { cursor: pointer; list-style: none; padding: 16px; color: var(--navy-900); font-size: 18px; font-weight: 700; }
summary::after { content: "⌄"; float: right; color: var(--steel-500); }
details[open] summary::after { content: "⌃"; }
details p { padding: 0 16px 20px; }
.cta-panel { background: var(--steel-100); text-align: center; max-width: 896px; margin-top: 80px; }

.contact-hero { padding: 80px 0 32px; }
.contact-grid { grid-template-columns: 1fr 1.5fr; gap: 32px; }
.contact-card, .contact-action-panel { background: #fff; }
.contact-card img { width: 100%; height: 260px; margin-top: 24px; border: 1px solid var(--steel-200); object-fit: cover; object-position: center; display: block; }
.contact-action-panel { display: grid; gap: 18px; align-content: start; }
.contact-action-panel p { max-width: 680px; }
.contact-options { display: grid; gap: 12px; margin: 24px 0; }
.contact-options.inline { grid-template-columns: repeat(2, minmax(0, 1fr)); margin: 8px 0 12px; }
.contact-options a {
  display: grid;
  gap: 6px;
  padding: 18px;
  border: 1px solid var(--steel-200);
  border-left: 4px solid #13bfc8;
  background: var(--steel-100);
}
.contact-options span { color: var(--steel-500); font-family: "JetBrains Mono", monospace; font-size: 13px; }
.contact-options strong { color: var(--navy-900); font-size: 20px; overflow-wrap: anywhere; }
.has-modal { overflow: hidden; }
.contact-modal[hidden] { display: none; }
.contact-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 24px; }
.contact-modal-backdrop { position: absolute; inset: 0; background: rgba(17, 23, 67, .58); }
.contact-modal-panel {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  background: #fff;
  border: 1px solid var(--steel-200);
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 24px 64px rgba(17, 23, 67, .28);
  outline: 0;
}
.contact-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--steel-200);
  background: var(--steel-100);
  color: var(--navy-900);
  font-size: 24px;
  line-height: 1;
}
.contact-modal-note { margin-bottom: 0; font-size: 14px; }
.seo-index { padding: 48px 0 64px; background: #fff; border-top: 1px solid var(--steel-200); }
.seo-index h2 { font-size: 20px; margin-bottom: 18px; }
.seo-index-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.seo-index-grid a { display: grid; gap: 6px; min-height: 112px; padding: 14px; border: 1px solid var(--steel-200); background: var(--steel-100); }
.seo-index-grid strong { color: var(--navy-900); font-size: 15px; line-height: 1.35; }
.seo-index-grid span { color: var(--steel-500); font-size: 13px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
@media (max-width: 920px) {
  .menu-toggle { display: block; }
  .primary-nav { display: none; position: absolute; top: 81px; left: 0; right: 0; flex-direction: column; align-items: stretch; padding: 16px 24px; background: #fcf8fd; border-bottom: 1px solid var(--steel-200); }
  .primary-nav.is-open { display: flex; }
  .header-actions { margin-left: auto; }
  .split-grid, .detail-hero, .catalog-layout, .content-sidebar, .article-layout, .contact-grid, .two-columns, .faq-layout, .bento-grid, .case-card { grid-template-columns: 1fr; }
  .honor-grid { grid-template-columns: 1fr; }
  .honor-grid > div { position: static; }
  .product-detail-block .two-columns, .product-evidence .two-columns { grid-template-columns: 1fr; }
  .product-grid, .article-grid, .process-grid, .fact-row, .seo-index-grid { grid-template-columns: 1fr; }
  .honor-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-v2-section-head, .bottom-grid, .home-v2-service-grid, .home-insight-grid { grid-template-columns: 1fr; display: grid; }
  .home-v2-capabilities, .home-v2-product-grid { grid-template-columns: 1fr 1fr; }
  .home-v2-service-grid > img { height: 360px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-legal { padding-top: 16px; }
}

@media (max-width: 600px) {
  .shell { padding: 0 16px; }
  .site-header { height: auto; min-height: 81px; }
  .header-inner { gap: 12px; }
  .brand { min-width: 0; }
  .brand img { width: 102px; }
  .brand span { display: none; }
  .header-actions .button { display: none; }
  .home-hero { min-height: 720px; }
  .home-v2-hero { min-height: 760px; background-position: 58% center; }
  .home-v2-metrics, .home-v2-capabilities, .home-v2-product-grid { grid-template-columns: 1fr; }
  .honor-card-grid { grid-template-columns: 1fr; }
  .home-v2-section-head { align-items: start; margin-bottom: 32px; }
  .home-v2-section-head h2 { font-size: 28px; }
  .home-v2-products, .home-v2-bottom, .home-v2-band, .home-v2-service { padding: 56px 0; }
  .home-v2-product-grid > article > img { min-height: 220px; height: 220px; }
  .teaser-list article { grid-template-columns: 96px 1fr; }
  .teaser-list img { width: 96px; height: 82px; }
  .hero-content h1 { font-size: 48px; }
  .page-section, .split-hero { padding: 56px 0; }
  .toolbar-row, .case-heading, .case-columns { flex-direction: column; align-items: flex-start; }
  .gallery-thumbs { grid-template-columns: repeat(2, 1fr); }
  .contact-options.inline { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
}
