:root {
  --ink: #111111;
  --muted: #626262;
  --paper: #ffffff;
  --surface: #ffffff;
  --soft: #f6f6f6;
  --line: #e4e4e4;
  --brand: #111111;
  --brand-dark: #000000;
  --accent: #555555;
  --coral: #333333;
  --blue: #222222;
  --shadow: 0 18px 46px rgba(0, 0, 0, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: #fff; color: var(--ink); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
img { display: block; max-width: 100%; }
input, textarea, select { min-height: 44px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 75;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(48, 48, 48, 0.98);
  backdrop-filter: blur(16px);
}

.header-bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  width: min(1240px, calc(100% - 40px));
  min-height: 84px;
  margin: 0 auto;
}

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

.brand-mark {
  display: grid;
  width: 76px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-logo-img {
  width: 76px;
  max-height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.22));
}

.brand-copy { display: grid; gap: 2px; line-height: 1.05; }
.brand-copy strong { color: #fff; font-size: 17px; letter-spacing: 0.02em; }
.brand-copy span { color: rgba(255, 255, 255, 0.72); font-size: 12px; white-space: nowrap; }

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 0;
}

.nav-item { position: relative; }
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 13px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-link:hover, .nav-link:focus-visible, .nav-link.is-active, .nav-item.is-open > .nav-link {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  outline: none;
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.mega-panel, .compact-panel, .language-panel {
  position: absolute;
  top: calc(100% + 16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 260ms cubic-bezier(.2, .72, .22, 1), visibility 220ms ease;
}

.nav-item.is-open .mega-panel, .nav-item.is-open .compact-panel, .language-menu.is-open .language-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

@media (hover: hover) and (min-width: 1121px) {
  .nav-item.has-panel:hover > .mega-panel,
  .nav-item.has-panel:hover > .compact-panel,
  .nav-item.has-panel:focus-within > .mega-panel,
  .nav-item.has-panel:focus-within > .compact-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-item.has-panel:hover > .product-panel,
  .nav-item.has-panel:focus-within > .product-panel {
    transform: translate(-50%, 0);
  }
  .nav-item.has-panel:hover > .nav-link,
  .nav-item.has-panel:focus-within > .nav-link {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }
}

.product-panel {
  position: fixed;
  top: 84px;
  left: 50%;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  width: min(1260px, calc(100vw - 40px));
  max-height: calc(100vh - 84px);
  padding: 34px 40px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(18, 18, 18, 0.14);
  transform: translate(-50%, -22px);
  will-change: opacity, transform;
}

.nav-item.is-open .product-panel { transform: translate(-50%, 0); }
.mega-promo {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 420px;
  border-radius: 2px;
  background: #eee;
}
.mega-promo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.mega-promo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.08) 55%, rgba(0,0,0,0.04));
  content: "";
}
.mega-promo span,
.mega-promo strong {
  position: absolute;
  left: 32px;
  z-index: 1;
  color: #3b3b3b;
}
.mega-promo span {
  top: 44px;
  font-size: 14px;
  font-weight: 600;
}
.mega-promo strong {
  top: 76px;
  max-width: 220px;
  font-size: 34px;
  font-weight: 800;
  line-height: 0.96;
  text-transform: uppercase;
}

.mega-copy span, .section-heading span, .dialog-kicker, .drawer-header span, .eyebrow, .advisor-card span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.text-link { color: var(--brand-dark); font-size: 14px; font-weight: 900; }
.mega-grid { display: grid; grid-template-columns: 1fr 1fr 0.9fr; gap: clamp(24px, 4vw, 70px); }
.mega-grid section { display: grid; align-content: start; gap: 6px; }
.mega-grid h2 {
  margin: 0 0 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #d8d8d8;
  color: #303030;
  font-size: 16px;
  font-weight: 700;
}
.mega-grid a, .compact-panel a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 34px;
  padding: 7px 0;
  border-radius: 8px;
  color: #505050;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}
.mega-icon {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #747474;
  font-size: 18px;
  line-height: 1;
}

.mega-grid a:hover, .mega-grid a:focus-visible, .compact-panel a:hover, .compact-panel a:focus-visible {
  background: transparent;
  color: var(--ink);
  outline: none;
}
.mega-grid a:hover .mega-icon,
.mega-grid a:focus-visible .mega-icon {
  color: #111;
}

.compact-panel {
  left: 0;
  display: grid;
  width: 174px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.icon-button, .menu-toggle, .close-button {
  position: relative;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}

.icon-button:hover, .icon-button:focus-visible, .menu-toggle:hover, .menu-toggle:focus-visible, .language-button:hover, .language-button:focus-visible {
  border-color: var(--brand);
  outline: none;
}

.icon-search {
  position: relative;
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 50%;
}
.icon-search::after {
  position: absolute;
  right: -6px;
  bottom: -4px;
  width: 8px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: rotate(45deg);
}

.language-menu { position: relative; }
.language-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.language-panel {
  right: 0;
  display: grid;
  width: 136px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.language-panel button {
  min-height: 36px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  text-align: left;
}
.language-panel button:hover, .language-panel button:focus-visible { background: #f6f6f6; color: var(--ink); outline: none; }

.inquire-button {
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}
.inquire-count {
  display: inline;
  min-width: 0;
  height: auto;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 12px;
}
.menu-toggle { display: none; }
.menu-toggle span { width: 18px; height: 2px; border-radius: 999px; background: currentColor; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 54px;
  width: min(1240px, calc(100% - 40px));
  min-height: calc(100vh - 84px);
  margin: 0 auto;
  padding: 58px 0 70px;
}
.hero-content { display: grid; gap: 22px; }
.hero h1, .page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 6.6vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}
.hero p, .page-hero p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
}
.button.primary { border-color: var(--brand); background: var(--brand); color: #fff; }
.button.ghost { background: #fff; color: var(--ink); }
.button.full { width: 100%; }
.metric-row { display: flex; flex-wrap: wrap; gap: 14px; padding-top: 4px; }
.metric-row span {
  display: grid;
  min-width: 122px;
  gap: 2px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,0.74);
}
.metric-row strong { font-size: 28px; line-height: 1; }
.metric-row small { color: var(--muted); font-weight: 800; }
.hero-media {
  margin: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-media img { width: 100%; height: min(58vw, 540px); object-fit: cover; }

.section, .page-hero, .catalog-layout, .site-footer {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}
.section { padding: 76px 0; }
.section.tinted {
  width: 100%;
  padding-right: max(20px, calc((100vw - 1240px) / 2));
  padding-left: max(20px, calc((100vw - 1240px) / 2));
  background: #fff;
}
.section-heading { display: grid; gap: 8px; margin-bottom: 24px; }
.section-heading.compact { margin-bottom: 16px; }
.section-heading.centered {
  justify-items: center;
  text-align: center;
}
.section-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
}
.section-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.product-card-grid, .feature-grid, .case-grid, .news-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.product-card, .feature-grid article, .case-grid article, .news-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.product-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.product-card div, .case-grid article, .news-grid article { padding: 18px; }
.product-card span { color: var(--brand); font-size: 12px; font-weight: 900; text-transform: uppercase; }

.home-product-showcase {
  width: min(1480px, calc(100% - 40px));
  padding-top: 84px;
  padding-bottom: 78px;
}
.home-product-showcase .section-heading {
  margin-bottom: 34px;
}
.home-product-showcase .section-heading h2 {
  color: #333;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 500;
}
.home-product-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 24px;
  margin: 0 auto 48px;
}
.home-product-tabs button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #424242;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}
.home-product-tabs button.is-active,
.home-product-tabs button:hover,
.home-product-tabs button:focus-visible {
  background: #e9e9e9;
  outline: none;
}
.home-product-tabs .mega-icon {
  font-size: 23px;
}
.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.home-product-card {
  display: grid;
  gap: 20px;
  position: relative;
  color: #3f3f3f;
  cursor: pointer;
  outline: none;
}
.home-product-card figure {
  display: grid;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid #ededed;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  transition: border-color 220ms ease, box-shadow 260ms ease, transform 260ms ease;
}
.home-product-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(18px, 3vw, 38px);
  transition: transform 320ms cubic-bezier(.2, .72, .22, 1);
}
.home-product-card:hover figure,
.home-product-card:focus-visible figure {
  border-color: #d7d7d7;
  box-shadow: 0 22px 50px rgba(24, 24, 24, 0.08);
  transform: translateY(-3px);
}
.home-product-card:hover img,
.home-product-card:focus-visible img {
  transform: scale(1.035);
}
.home-product-image-link,
.catalog-image-link {
  display: block;
  color: inherit;
}
.home-product-card div {
  display: grid;
  gap: 8px;
  padding: 0 28px 0 28px;
  text-align: center;
}
.home-product-card h3 {
  display: -webkit-box;
  min-height: 44px;
  margin: 0;
  overflow: hidden;
  color: #393939;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.home-product-card h3 a {
  color: inherit;
  text-decoration: none;
}
.home-product-card p {
  display: -webkit-box;
  min-height: 44px;
  margin: 0;
  overflow: hidden;
  color: #555;
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.home-product-empty {
  grid-column: 1 / -1;
  display: grid;
  min-height: 180px;
  place-items: center;
  border: 1px solid #ededed;
  background: #fff;
  color: #666;
  font-size: 15px;
}
.product-card h3, .case-grid h3, .news-grid h3 { margin: 8px 0 8px; font-size: 20px; line-height: 1.22; }
.product-card p, .feature-grid p, .case-grid p { margin: 0 0 14px; color: var(--muted); line-height: 1.6; }
.product-card a, .news-grid a { color: var(--brand-dark); font-weight: 900; }

.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid article { min-height: 160px; padding: 22px; }
.feature-grid strong { font-size: 20px; }
.feature-grid p { margin-top: 10px; }

.process-section {
  width: 100%;
  max-width: none;
  padding: 92px 0 86px;
  background: #fff;
  text-align: center;
}
.process-section .section-heading {
  justify-items: center;
  gap: 12px;
  width: min(100% - 40px, 980px);
  margin: 0 auto 58px;
}
.process-section .section-heading h2 {
  margin: 0;
  color: #3b3b3b;
  font-size: clamp(34px, 3.5vw, 48px);
  font-weight: 500;
  line-height: 1.18;
}
.process-section .section-heading p {
  margin: 0;
  color: #4f4f4f;
  font-size: 16px;
  line-height: 1.7;
}
.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(92px, 1fr));
  gap: 0;
  width: min(1420px, calc(100% - 72px));
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.process-list::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 4.5%;
  right: 4.5%;
  height: 30px;
  opacity: 0.95;
  background:
    linear-gradient(63deg, transparent 0 30%, #ededed 31% 62%, transparent 63%) 0 0 / 34px 30px repeat-x,
    linear-gradient(117deg, transparent 0 30%, #ededed 31% 62%, transparent 63%) 17px 0 / 34px 30px repeat-x;
}
.process-list li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 168px;
  padding: 0 8px;
  color: #333;
}
.process-index {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #303030;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 0 0 5px #fff;
}
.process-icon {
  display: grid;
  min-height: 82px;
  margin-top: 38px;
  place-items: center;
  color: #070707;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 900;
  line-height: 1;
}
.process-list strong {
  display: block;
  max-width: 132px;
  color: #373737;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}

.factory-section {
  width: min(1420px, calc(100% - 40px));
  padding-top: 70px;
  padding-bottom: 72px;
}

.factory-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.9fr);
  gap: clamp(42px, 5.2vw, 88px);
  align-items: center;
}

.factory-media {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: #f5f5f5;
}

.factory-media img {
  display: block;
  width: 100%;
  aspect-ratio: 550 / 502;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.factory-copy {
  display: grid;
  gap: 22px;
  align-content: center;
  color: #343434;
}

.factory-copy h2 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 520;
  line-height: 1.28;
  letter-spacing: 0;
}

.factory-copy p {
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  color: #515151;
}

.factory-lead {
  color: #555;
}

.factory-note {
  margin: 6px 0 4px;
  padding: clamp(22px, 3vw, 36px) clamp(24px, 3.5vw, 46px);
  background: #f1f1f1;
}

.factory-note p {
  color: #4b4b4b;
}

.factory-strong {
  font-weight: 700;
  color: #222 !important;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.factory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 14px;
}

.factory-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 42px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 560;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.factory-button-light {
  background: #d8d8d8;
  color: #3b3b3b;
}

.factory-button-dark {
  background: #2f2f2f;
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .factory-media:hover img {
    transform: scale(1.025);
    filter: brightness(1.02);
  }

  .factory-button:hover,
  .factory-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(17, 24, 39, 0.14);
    outline: none;
  }

  .factory-button-light:hover,
  .factory-button-light:focus-visible {
    background: #fff;
    color: #222;
  }

  .factory-button-dark:hover,
  .factory-button-dark:focus-visible {
    background: #111;
  }
}

.factory-button:active {
  transform: translateY(0) scale(0.98);
}
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
.badge-row span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}

.case-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.home-case-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 86px 0 84px;
  background: #f3f3f3;
}
.home-case-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.45fr) minmax(420px, 1.55fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: start;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}
.home-case-intro {
  display: grid;
  gap: 24px;
  align-content: start;
}
.home-case-intro h2 {
  margin: 0;
  color: #3b3b3b;
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 500;
  line-height: 1.25;
}
.home-case-intro p,
.home-case-main p,
.home-case-side p {
  margin: 0;
  color: #4f4f4f;
  font-size: 14px;
  line-height: 1.7;
}
.home-case-button,
.home-case-side a:last-child {
  justify-self: start;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  background: #d9d9d9;
  color: #333;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}
.home-case-main {
  display: grid;
  gap: 22px;
  align-content: start;
  padding-top: 128px;
}
.home-case-main img {
  width: 100%;
  aspect-ratio: 4 / 2.7;
  object-fit: cover;
}
.home-case-side {
  display: grid;
  gap: 28px;
}
.home-case-side article {
  display: grid;
  grid-template-columns: minmax(190px, 0.95fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.home-case-side img {
  width: 100%;
  aspect-ratio: 4 / 2.65;
  object-fit: cover;
}
.home-case-side div {
  display: grid;
  gap: 18px;
  align-content: start;
}
.home-case-side h3 {
  margin: 0;
  color: #333;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
}
.home-news-section,
.news-page-hero {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 78px 0 72px;
  background: #f1f1f1;
}
.home-news-section .section-heading,
.news-page-hero {
  justify-items: center;
  margin: 0 auto 42px;
  text-align: center;
}
.home-news-section .section-heading h2,
.news-page-hero h1 {
  color: #383838;
  font-size: clamp(24px, 2.6vw, 36px);
  font-weight: 500;
  line-height: 1.25;
}
.home-news-section .section-heading p,
.news-page-hero p {
  max-width: 620px;
  color: #555;
  font-size: 14px;
}
.news-grid,
.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0;
}
.news-card,
.article-card.news-card {
  display: grid;
  overflow: hidden;
  border: 0;
  border-radius: 7px;
  background: #fff;
  color: #3d3d3d;
  cursor: pointer;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.04);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.news-card:hover,
.news-card:focus-visible {
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.08);
}
.news-card-image {
  display: block;
  overflow: hidden;
  background: #e8e8e8;
}
.news-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 320ms ease;
}
.news-card:hover img,
.news-card:focus-visible img {
  transform: scale(1.035);
}
.news-card div {
  display: grid;
  gap: 18px;
  padding: 24px 24px 26px;
}
.news-card h2,
.news-card h3 {
  min-height: 42px;
  margin: 0;
  color: #3b3b3b;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
}
.news-card h2 a,
.news-card h3 a {
  color: inherit;
}
.news-card p {
  display: -webkit-box;
  min-height: 64px;
  margin: 0;
  overflow: hidden;
  color: #555;
  font-size: 13px;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.news-card time,
.news-grid time {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #e5e5e5;
  color: #555;
  font-size: 12px;
  font-weight: 500;
}
.faq-section {
  width: 100%;
  margin-top: 82px;
  padding: 72px 0 76px;
  background: #fff;
}
.home-faq-layout {
  display: grid;
  grid-template-columns: minmax(190px, 280px) minmax(0, 760px);
  gap: clamp(42px, 7vw, 110px);
  align-items: start;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}
.home-faq-copy {
  display: grid;
  gap: 22px;
  padding-top: 4px;
}
.home-faq-copy h2 {
  max-width: 220px;
  margin: 0;
  color: #303030;
  font-size: clamp(30px, 3.2vw, 44px);
  font-weight: 500;
  line-height: 1.18;
}
.home-faq-copy p {
  max-width: 220px;
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}
.home-faq-button {
  justify-self: start;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border-radius: 999px;
  background: #d9d9d9;
  color: #333;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}
.home-faq-button:hover,
.home-faq-button:focus-visible {
  background: #cfcfcf;
  outline: none;
  transform: translateY(-1px);
}
.faq-list { display: grid; gap: 0; width: 100%; max-width: none; border-top: 1px solid var(--line); }
.faq-list details {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  padding: 0;
}
.faq-list summary {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  min-height: 58px;
  align-items: center;
  padding: 18px 52px 18px 0;
  color: #333;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.faq-question-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #dedede;
  color: #555;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: translateY(-62%) rotate(45deg);
}
.faq-list details[open] summary::after {
  transform: translateY(-28%) rotate(225deg);
}
.faq-list p { margin: 0; padding: 0 52px 22px 40px; color: var(--muted); font-size: 14px; line-height: 1.7; }

.site-footer {
  width: 100%;
  margin-top: 70px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #2f2f2f;
  color: #f4f4f4;
}
.footer-shell {
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(190px, 0.72fr) minmax(360px, 1.45fr);
  width: min(1440px, 100%);
  margin: 0 auto;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand-panel,
.footer-link-panel,
.footer-inquiry-panel {
  min-height: 430px;
  padding: clamp(44px, 5vw, 72px) clamp(24px, 4vw, 56px);
}
.footer-brand-panel,
.footer-link-panel {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-brand-panel {
  display: grid;
  align-content: center;
  gap: 28px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.footer-logo-mark {
  display: inline-grid;
  width: 112px;
  height: 72px;
  place-items: center;
  border: 0;
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.footer-logo-img {
  width: 112px;
  max-height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.28));
}

.footer-logo strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}
.footer-logo small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}
.footer-contact-list {
  display: grid;
  gap: 11px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
}
.footer-contact-list p { margin: 0; }
.footer-contact-list p:last-child {
  max-width: 360px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 13px;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.footer-social a {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 6px;
  background: #f5f5f5;
  color: #2f2f2f;
  font-size: 13px;
  font-weight: 900;
}
.footer-link-panel {
  display: grid;
  align-content: center;
  gap: 42px;
}
.footer-link-panel h2,
.footer-form-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 2.1vw, 28px);
  font-weight: 500;
  letter-spacing: 0;
}
.footer-link-panel h2 {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 15px;
  font-weight: 700;
}
.footer-link-panel a {
  display: block;
  width: fit-content;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.4;
}
.footer-link-panel a:hover,
.footer-link-panel a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
  outline: none;
}
.footer-inquiry-panel {
  display: grid;
  align-content: center;
  gap: 26px;
}
.footer-form-heading {
  display: grid;
  gap: 8px;
}
.footer-form-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}
.footer-form {
  display: grid;
  gap: 12px;
}
.footer-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.footer-form input,
.footer-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  padding: 13px 18px;
  outline: none;
}
.footer-form textarea {
  min-height: 108px;
  border-radius: 24px;
  resize: vertical;
}
.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}
.footer-form input:focus,
.footer-form textarea:focus {
  border-color: #fff;
}
.footer-form .form-note {
  min-height: 20px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}
.footer-submit {
  justify-self: start;
  min-height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #2f2f2f;
  font-weight: 800;
}
.footer-submit:hover,
.footer-submit:focus-visible {
  background: #f0f0f0;
  outline: none;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1440px, 100%);
  min-height: 92px;
  margin: 0 auto;
  padding: 20px clamp(24px, 6vw, 72px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left-width: 1px;
  border-right-width: 1px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 13px;
}
.footer-bottom p { margin: 0; }
.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.footer-bottom a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
}

.page-hero {
  display: grid;
  gap: 16px;
  padding: 70px 0 34px;
}
.catalog-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 26px;
  padding-bottom: 80px;
}
.filter-panel {
  position: sticky;
  top: 104px;
  align-self: start;
  display: grid;
  gap: 16px;
}
.filter-group {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.filter-group h2 { margin: 0 0 4px; font-size: 16px; }
.filter-group button {
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  text-align: left;
}
.filter-group button:hover, .filter-group button:focus-visible, .filter-group button.is-selected {
  background: #f6f6f6;
  color: var(--ink);
  outline: none;
}
.catalog-main { display: grid; gap: 22px; min-width: 0; }
.advisor-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 24px;
  border-radius: 8px;
  background: var(--soft);
}
.advisor-card h2 { margin: 5px 0 8px; font-size: 26px; }
.advisor-card p { margin: 0; color: var(--muted); line-height: 1.6; }
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.catalog-toolbar p { margin: 0; color: var(--muted); }
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.catalog-card {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 260ms ease, transform 260ms ease;
}
.catalog-card:hover,
.catalog-card:focus-visible {
  border-color: #d7d7d7;
  box-shadow: 0 18px 44px rgba(24, 24, 24, 0.08);
  transform: translateY(-2px);
}
.catalog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 320ms cubic-bezier(.2, .72, .22, 1);
}
.catalog-card:hover img,
.catalog-card:focus-visible img {
  transform: scale(1.035);
}
.catalog-card-body { display: grid; gap: 9px; padding: 18px; }
.catalog-card h2 { margin: 0; font-size: 20px; line-height: 1.22; }
.catalog-card p { margin: 0; color: var(--muted); line-height: 1.55; }
.catalog-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.catalog-tags span {
  padding: 6px 8px;
  border-radius: 999px;
  background: #f6f6f6;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.pagination button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
}
.pagination button.is-active { border-color: var(--brand); background: var(--brand); color: #fff; }
.recommended { display: grid; gap: 4px; padding-top: 16px; }
.recommended-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.recommended-row article { border: 1px solid var(--line); border-radius: 8px; background: #fff; overflow: hidden; }
.recommended-row img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.recommended-row strong { display: block; padding: 14px; }

.detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: 34px;
  align-items: start;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 48px;
}
.gallery {
  display: grid;
  gap: 14px;
}
.gallery-main {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  border-radius: 8px;
  background: #fff;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.thumb-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.thumb-row button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.thumb-row button.is-active {
  border-color: var(--brand);
}
.thumb-row img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.detail-summary {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}
.detail-summary h1 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 56px);
  line-height: 1.02;
  letter-spacing: 0;
}
.detail-summary p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.detail-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.button.whatsapp {
  border-color: #111111;
  background: #111111;
  color: #fff;
}
.parameter-table,
.info-table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.parameter-table th,
.parameter-table td,
.info-table th,
.info-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  line-height: 1.45;
}
.parameter-table th,
.info-table th {
  width: 38%;
  background: #f7f7f7;
  font-size: 13px;
  font-weight: 900;
}
.parameter-table td,
.info-table td {
  color: var(--muted);
}
.detail-content {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 18px 0 70px;
}
.detail-tabs {
  position: sticky;
  top: 84px;
  z-index: 10;
  display: flex;
  gap: 8px;
  padding: 10px 0;
  overflow-x: auto;
  background: var(--paper);
}
.detail-tabs a {
  flex: 0 0 auto;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.detail-section-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 18px;
}
.detail-section-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.detail-section-grid h2 {
  margin: 0 0 12px;
  font-size: 22px;
}
.detail-section-grid p,
.detail-section-grid blockquote {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.custom-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 84px;
}
.custom-hero-copy {
  display: grid;
  gap: 20px;
}
.custom-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1;
  letter-spacing: 0;
}
.custom-hero p {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.custom-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
}
.custom-hero-actions span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}
.custom-hero-media {
  position: relative;
}
.custom-hero-media img {
  width: 100%;
  aspect-ratio: 0.92 / 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 28px 80px rgba(23, 33, 27, 0.16);
}
.custom-hero-card {
  position: absolute;
  right: clamp(12px, 3vw, 28px);
  bottom: clamp(12px, 3vw, 28px);
  display: grid;
  gap: 4px;
  width: min(220px, calc(100% - 24px));
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.48);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 48px rgba(23, 33, 27, 0.16);
  backdrop-filter: blur(16px);
}
.custom-hero-card strong {
  color: var(--brand);
  font-size: 42px;
  line-height: 1;
}
.custom-hero-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.45;
}
.custom-section-title {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin-bottom: 28px;
}
.custom-section-title span {
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.custom-section-title h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
}
.custom-section-title.inverse span,
.custom-section-title.inverse h2 {
  color: #fff;
}
.custom-capability .section-heading h2 {
  max-width: 980px;
  color: var(--muted);
  font-size: clamp(24px, 3.2vw, 38px);
  line-height: 1.2;
}
.custom-capability-grid,
.craft-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.custom-capability-grid article,
.craft-grid article,
.custom-adv-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(23, 33, 27, 0.06);
}
.custom-capability-grid span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 32px;
  place-items: center;
  border-radius: 50%;
  background: #f4f4f4;
  color: var(--brand);
  font-weight: 900;
}
.custom-capability-grid h3,
.custom-adv-grid strong,
.craft-grid h3 {
  display: block;
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.2;
}
.custom-capability-grid p,
.custom-adv-grid p,
.craft-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.custom-dark-band {
  margin: 34px 0;
  padding: clamp(54px, 7vw, 86px) 0;
  background: #111111;
}
.custom-dark-inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}
.custom-dark-band .custom-adv-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.custom-dark-band .custom-adv-grid article {
  min-height: 210px;
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  box-shadow: none;
}
.custom-dark-band .custom-adv-grid strong {
  color: #fff;
}
.custom-dark-band .custom-adv-grid p {
  color: rgba(255,255,255,0.68);
}
.custom-craft-showcase {
  padding-top: 70px;
}
.craft-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
}
.craft-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 310px;
  background: #fff;
}
.option-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
}
.option-cloud span {
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f7f7;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.custom-eco-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.7fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid #dfe7de;
  border-radius: 8px;
  background: linear-gradient(135deg, #f7f7f7 0%, #fff 62%);
}
.custom-eco-panel h2 {
  max-width: 620px;
  margin: 10px 0 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.12;
}
.custom-eco-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.custom-process-section {
  width: min(100% - 40px, 1320px);
  margin-top: 34px;
  padding: 56px 0 64px;
  background: #f1f1f1;
}
.custom-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.custom-process li {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 16px;
  min-height: 320px;
  padding: 70px 32px 28px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: #fff;
  text-align: center;
  box-shadow: none;
}
.custom-process .process-number {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: start;
  padding: 15px 0 0 14px;
  border-radius: 0 0 32px 0;
  background: #d9d9d9;
  color: #666;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
}
.process-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  color: #050505;
}
.process-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-icon svg circle {
  fill: none;
}
.custom-process li strong {
  max-width: 230px;
  color: #333;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
}
.custom-process li p {
  max-width: 240px;
  margin: 0;
  color: #3f3f3f;
  font-size: 15px;
  line-height: 1.72;
}
.custom-form-section {
  padding-top: 64px;
  padding-bottom: 94px;
}
.custom-form-shell {
  display: grid;
  grid-template-columns: minmax(270px, 0.58fr) minmax(0, 0.92fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: start;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #fff 58%);
}
.custom-form-intro {
  position: sticky;
  top: 108px;
  display: grid;
  gap: 18px;
  padding-top: 6px;
}
.custom-form-intro h2 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(28px, 3.8vw, 44px);
  line-height: 1.08;
}
.custom-form-intro p {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72;
}
.custom-form-points {
  display: grid;
  gap: 10px;
  padding-top: 8px;
}
.custom-form-points span {
  position: relative;
  display: block;
  padding-left: 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}
.custom-form-points span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}
.custom-request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}
.custom-request-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}
.custom-request-form input,
.custom-request-form select,
.custom-request-form textarea {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 0 14px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(23, 33, 27, 0.02);
}
.custom-request-form textarea {
  min-height: 132px;
  padding: 12px;
  resize: vertical;
}
.custom-request-form input:focus,
.custom-request-form select:focus,
.custom-request-form textarea:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(31, 122, 82, 0.11);
}
.full-field {
  grid-column: 1 / -1;
}
.custom-success-panel {
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(100%, 760px);
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 24px 70px rgba(23, 33, 27, 0.1);
}
.custom-success-panel[hidden] {
  display: none;
}
.success-mark {
  display: grid;
  width: clamp(48px, 7vw, 58px);
  height: clamp(48px, 7vw, 58px);
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-size: clamp(22px, 4vw, 26px);
  font-weight: 900;
}
.custom-success-panel h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(24px, 3.6vw, 40px);
  line-height: 1.15;
  overflow-wrap: anywhere;
}
.custom-success-panel p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 17px);
  line-height: 1.7;
  overflow-wrap: anywhere;
}
.success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding-top: 10px;
}
.success-actions .button {
  width: auto;
  min-width: 150px;
  max-width: 100%;
  white-space: normal;
  text-align: center;
}
.urgent-status {
  width: min(100%, 560px);
  padding: 12px 14px;
  border: 1px solid rgba(214, 54, 56, 0.18);
  border-radius: 8px;
  background: #fff5f5;
  color: #b4232a !important;
  font-weight: 800;
}
.urgent-status[hidden] {
  display: none;
}

.content-hero {
  display: grid;
  gap: 14px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 34px;
}
.content-hero h1 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}
.content-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}
.content-grid,
.article-grid,
.case-list,
.download-list,
.video-list,
.faq-page-grid,
.search-results {
  display: grid;
  gap: 18px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 80px;
}
.content-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.article-grid,
.case-list,
.download-list,
.video-list,
.search-results {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.info-card,
.download-card,
.video-card,
.article-card,
.case-card,
.search-result-card,
.backend-note,
.contact-form-card,
.faq-aside {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.info-card,
.backend-note,
.contact-form-card,
.faq-aside {
  padding: 22px;
}
.info-card strong,
.download-card h2,
.video-card h2,
.article-card h2,
.case-card h2,
.search-result-card h2 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.25;
}
.info-card p,
.download-card p,
.video-card p,
.article-card p,
.case-card p,
.search-result-card p,
.backend-note p,
.faq-aside p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}
.download-card img,
.video-card img,
.article-card img,
.case-card img,
.search-result-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.download-card div,
.video-card div,
.article-card div,
.case-card div,
.search-result-card div {
  display: grid;
  gap: 10px;
  padding: 18px;
}
.meta-row,
.search-result-card span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.contact-layout,
.faq-layout,
.case-detail-layout,
.article-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 26px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 80px;
}
.contact-hero {
  display: grid;
  gap: 14px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 36px;
}
.contact-hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 1.04;
}
.contact-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.contact-solutions {
  padding-top: 82px;
  padding-bottom: 62px;
}
.contact-solutions .section-heading {
  align-items: start;
  margin-bottom: 42px;
  text-align: left;
}
.contact-solutions .section-heading h2 {
  color: #3b3b3b;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 500;
  line-height: 1.25;
}
.contact-solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 74px);
}
.contact-solution-grid article {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 15px;
  min-height: 292px;
  padding: 38px 26px 32px;
  border: 0;
  border-radius: 8px;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.05);
}
.contact-card-icon {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  color: #111;
}
.contact-card-icon svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-solution-grid strong {
  color: var(--ink);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.25;
}
.contact-solution-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.contact-card-button {
  display: inline-grid;
  min-width: 124px;
  min-height: 34px;
  margin-top: 20px;
  place-items: center;
  padding: 0 22px;
  border-radius: 999px;
  background: #303030 !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease;
}
.contact-card-button:hover,
.contact-card-button:focus-visible {
  background: #111 !important;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.16);
  transform: translateY(-1px);
  outline: none;
}
.contact-support-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 0.92fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
}
.contact-support-media {
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: #f4f4f4;
}
.contact-support-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}
.contact-support-copy {
  display: grid;
  gap: 20px;
}
.contact-support-copy h2 {
  max-width: 760px;
  margin: 0;
  color: #050505;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.15;
}
.contact-support-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.contact-support-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 70px);
  padding-top: 22px;
}
.contact-support-columns h3 {
  margin: 0 0 16px;
  color: #111;
  font-size: 15px;
  font-weight: 500;
}
.contact-support-columns p {
  margin: 12px 0 0;
  color: #3f3f3f;
  font-size: 14px;
  line-height: 1.45;
}
.contact-main-layout {
  display: block;
  max-width: 760px;
  padding-top: 26px;
  padding-bottom: 70px;
}
.contact-info-panel {
  display: grid;
  gap: 18px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.contact-form-card h2,
.contact-info-panel h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.14;
}
.contact-info-panel h3 {
  margin: 8px 0 0;
  font-size: 17px;
}
.contact-method-list {
  display: grid;
  gap: 10px;
}
.contact-method-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}
.contact-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.contact-map-section {
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.88fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: stretch;
  padding-top: 46px;
  padding-bottom: 56px;
}
.contact-map-copy {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.contact-map-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.14;
}
.contact-map-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}
.contact-map-frame {
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f7f7;
}
.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}
.contact-faq-section {
  padding-top: 68px;
  padding-bottom: 96px;
}
.contact-faq-section .faq-items {
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.contact-faq-section .section-heading {
  justify-items: center;
  margin-bottom: 46px;
  text-align: center;
}
.contact-faq-section .section-heading h2 {
  color: #3b3b3b;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
}
.contact-faq-section .section-heading p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.contact-faq-accordion details {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0;
  background: transparent;
}
.contact-faq-accordion summary {
  position: relative;
  display: grid;
  min-height: 60px;
  align-items: center;
  padding: 20px 54px 20px 24px;
  color: #3a3a3a;
  font-size: 18px;
  font-weight: 500;
  list-style: none;
}
.contact-faq-accordion summary::-webkit-details-marker {
  display: none;
}
.contact-faq-accordion summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  color: #666;
  transform: translateY(-62%) rotate(45deg);
}
.contact-faq-accordion details[open] summary::after {
  transform: translateY(-28%) rotate(225deg);
}
.contact-faq-accordion p {
  max-width: 960px;
  margin: 0;
  padding: 0 54px 26px 24px;
  color: #494949;
  font-size: 14px;
  line-height: 1.7;
}
.about-page {
  background: #fff;
}
.about-intro {
  display: grid;
  gap: 62px;
  padding-top: 72px;
  padding-bottom: 72px;
}
.about-intro-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  text-align: center;
}
.about-intro-heading h1 {
  margin: 0;
  color: #3a3a3a;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.18;
}
.about-intro-heading p {
  max-width: 760px;
  margin: 0;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 6vw, 92px);
  align-items: start;
}
.about-stats article {
  display: grid;
  grid-template-columns: auto auto;
  gap: 4px 12px;
  justify-content: center;
  align-items: center;
  color: #4b4b4b;
}
.about-stats span {
  grid-row: span 2;
  color: #626262;
  font-size: 20px;
  line-height: 1;
}
.about-stats strong {
  color: #383838;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}
.about-stats small {
  color: #3f3f3f;
  font-size: 14px;
  line-height: 1.2;
}
.about-company-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 86px);
  align-items: center;
}
.about-company-copy {
  display: grid;
  gap: 18px;
}
.about-company-copy h2 {
  margin: 0;
  color: #333;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.18;
}
.about-company-copy p {
  max-width: 720px;
  margin: 0;
  color: #4d4d4d;
  font-size: 18px;
  line-height: 1.68;
}
.about-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 218px;
  min-height: 56px;
  margin-top: 20px;
  border: 1px solid #333;
  border-radius: 999px;
  color: #2f2f2f;
  font-size: 18px;
  font-weight: 500;
}
.about-detail-button::after {
  content: "";
  width: 26px;
  height: 12px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skewX(-26deg);
}
.about-video-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 306px;
  border-radius: 8px;
  background: #111;
}
.about-video-card img {
  width: 100%;
  height: 100%;
  min-height: 306px;
  object-fit: cover;
}
.about-video-shade {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px 28px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.12) 48%, rgba(0, 0, 0, 0.32));
  color: #fff;
}
.about-video-shade strong {
  max-width: 720px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.18;
}
.about-video-shade span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 500;
}
.about-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 78px;
  height: 56px;
  place-items: center;
  border-radius: 14px;
  background: #f00000;
  transform: translate(-50%, -50%);
}
.about-play-button::before {
  content: "";
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid #fff;
}
.about-credit {
  padding-top: 28px;
  padding-bottom: 72px;
}
.about-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-bottom: 46px;
}
.about-tab {
  position: relative;
  border: 0;
  background: transparent;
  color: #6a6a6a;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
}
.about-tab.is-active {
  color: #111;
}
.about-tab.is-active::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -16px;
  left: 0;
  height: 2px;
  background: #111;
}
.about-panel {
  display: none;
}
.about-panel.is-active {
  display: block;
}
.about-work-image {
  width: 100%;
  aspect-ratio: 16 / 4.25;
  border-radius: 8px;
  object-fit: cover;
}
.about-cert-image {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}
.about-work-labels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 4vw, 44px);
  margin-top: 18px;
  color: #3f3f3f;
  font-size: 17px;
  font-weight: 500;
}
.about-cert-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.about-value-grid article,
.about-case-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.about-value-grid p,
.about-case-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.about-good {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
  padding-top: 70px;
  padding-bottom: 80px;
}
.about-good h2 {
  max-width: 620px;
  margin: 0;
  color: #111;
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 500;
  line-height: 1.18;
}
.about-value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.about-value-grid article {
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 24px;
}
.about-value-grid span {
  color: #999;
  font-size: 13px;
  font-weight: 700;
}
.about-value-grid strong {
  color: #111;
  font-size: 18px;
  font-weight: 500;
}
.about-cases {
  padding-top: 70px;
  padding-bottom: 76px;
}
.about-cases .section-heading,
.about-product-cta .section-heading {
  justify-items: center;
  text-align: center;
}
.about-cases .section-heading h2,
.about-product-cta .section-heading h2 {
  color: #3b3b3b;
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 500;
}
.about-cases .section-heading p,
.about-product-cta .section-heading p {
  max-width: 720px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.about-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.about-case-grid article {
  display: grid;
  gap: 12px;
  min-height: 210px;
  padding: 28px;
}
.about-case-grid span {
  color: #777;
  font-size: 13px;
  font-weight: 700;
}
.about-case-grid h3 {
  margin: 0;
  color: #111;
  font-size: 20px;
  font-weight: 500;
}
.about-product-cta {
  padding-top: 64px;
  padding-bottom: 96px;
}
.about-cta-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  max-width: 1120px;
  min-height: 320px;
  margin: 0 auto;
  border-radius: 8px;
  background: #505050;
}
.about-cta-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(38px, 6vw, 76px);
  color: #fff;
}
.about-cta-copy span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}
.about-cta-copy h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.16;
}
.about-cta-copy p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
}
.about-cta-button {
  display: inline-grid;
  width: 168px;
  min-height: 48px;
  place-items: center;
  margin-top: 18px;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 15px;
  font-weight: 600;
}
.about-cta-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.contact-form,
.simple-form {
  display: grid;
  gap: 12px;
}
.contact-form input,
.contact-form textarea,
.simple-form input,
.simple-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  outline: none;
}
.contact-form textarea,
.simple-form textarea {
  min-height: 140px;
  resize: vertical;
}
.social-links,
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.social-links a,
.quick-links a {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}
.faq-items {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq-items details {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  padding: 0;
}
.faq-items summary {
  position: relative;
  display: grid;
  min-height: 58px;
  align-items: center;
  padding: 18px 52px 18px 20px;
  color: #333;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
}
.faq-items summary::-webkit-details-marker { display: none; }
.faq-items summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: translateY(-62%) rotate(45deg);
}
.faq-items details[open] summary::after {
  transform: translateY(-28%) rotate(225deg);
}
.faq-items p {
  margin: 0;
  padding: 0 52px 22px 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(23, 33, 27, 0.68);
}
.video-modal[hidden] {
  display: none;
}
.video-frame-wrap {
  position: relative;
  width: min(920px, 100%);
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #000;
}
.video-frame-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 8px;
}
.video-frame-wrap .close-button {
  top: -54px;
  right: 0;
}
.article-body,
.case-body {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 28px;
}
.article-body h2,
.case-body h2 {
  margin: 24px 0 10px;
}
.article-body p,
.case-body p {
  color: var(--muted);
  line-height: 1.75;
}
.floating-tools {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 76;
  display: grid;
  gap: 9px;
}
.floating-tool {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 14px 0 0 14px;
  color: #fff;
  font-size: 27px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  transition: transform 0.22s ease, filter 0.22s ease;
}
.floating-tool svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.floating-tool.is-whatsapp svg {
  width: 38px;
  height: 38px;
}
.floating-tool:hover {
  transform: translateX(-4px);
  filter: brightness(1.04);
}
.floating-tool.is-whatsapp {
  background: linear-gradient(145deg, #54f06a, #05b922);
}
.floating-tool.is-phone {
  background: linear-gradient(145deg, #8fc7ff, #4f74ff);
}
.floating-tool.is-mail {
  background: linear-gradient(145deg, #1edcff, #0068f4);
}
.floating-tool.is-top {
  background: #fff;
  color: #20242a;
}
.cw-chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 77;
  font-family: inherit;
}
.cw-chat-launcher {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  height: 64px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #111827;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.cw-chat-launcher:hover {
  filter: brightness(1.06);
}
.cw-chat-launcher span {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 17px;
  background: #fff;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.2);
}
.cw-chat-launcher i {
  position: relative;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #2f2be5;
  box-shadow: 0 14px 35px rgba(47, 43, 229, 0.34);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.cw-chat-launcher:hover i {
  transform: scale(1.1);
  filter: brightness(1.08);
  box-shadow: 0 18px 42px rgba(47, 43, 229, 0.42);
}
.cw-chat-launcher:active i {
  transform: scale(1.04);
}
.cw-chat-launcher i::before {
  content: "";
  width: 28px;
  height: 20px;
  display: block;
  border-radius: 5px 5px 5px 1px;
  background: #fff;
  box-shadow: 10px 0 0 -4px #fff;
}
.cw-chat-launcher i::after {
  content: none;
}
.cw-chat-launcher.is-open span {
  display: none;
}
.cw-chat-launcher.is-open i {
  background: linear-gradient(145deg, #4039ff 0%, #2923df 100%);
  box-shadow: 0 18px 42px rgba(47, 43, 229, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.cw-chat-launcher.is-open i::before,
.cw-chat-launcher.is-open i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 31px;
  height: 5px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translate(-50%, -50%) rotate(45deg);
  transform-origin: center;
}
.cw-chat-launcher.is-open i::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.cw-chat-panel {
  position: absolute;
  right: 0;
  bottom: 86px;
  width: min(386px, calc(100vw - 28px));
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  animation: cwChatOpen 0.28s cubic-bezier(.2,.85,.25,1.15);
  transform-origin: right bottom;
}
@keyframes cwChatOpen {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.cw-chat-head {
  position: relative;
  min-height: 270px;
  padding: 26px 26px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #3129df;
  color: #fff;
}
.cw-chat-logo {
  position: absolute;
  top: 26px;
  left: 26px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #111827;
  font-size: 14px;
  font-weight: 900;
}
.cw-chat-menu {
  position: absolute;
  top: 28px;
  right: 28px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 30px;
  line-height: 1;
}
.cw-chat-head h2 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.1;
  color: #fff;
}
.cw-chat-head p {
  margin: 0;
  max-width: 300px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 19px;
  line-height: 1.35;
}
.cw-chat-body {
  position: relative;
  min-height: 310px;
  padding: 18px 20px 18px;
  background: #fff;
}
.cw-chat-thread {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 128px;
  max-height: 178px;
  overflow-y: auto;
  padding: 2px 2px 12px;
  scrollbar-width: thin;
}
.cw-chat-message {
  position: relative;
  width: fit-content;
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 16px 16px 16px 4px;
  background: #f1f5fb;
  color: #172033;
  font-size: 13px;
  line-height: 1.45;
  box-shadow: 0 8px 18px rgba(19, 33, 53, 0.08);
  animation: cwMessageIn 0.28s ease both;
}
.cw-chat-message::before {
  content: "CW";
  position: absolute;
  left: 0;
  top: -23px;
  color: #7b879c;
  font-size: 10px;
  font-weight: 800;
}
@keyframes cwMessageIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.cw-chat-card {
  width: 100%;
  min-height: 88px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  align-items: center;
  margin-top: 0;
  padding: 20px 22px;
  border: 1px solid #d7e2f3;
  border-radius: 18px;
  background: #eaf3ff;
  color: #152033;
  text-align: left;
  box-shadow: 0 10px 25px rgba(28, 72, 135, 0.12);
  cursor: pointer;
  animation: cwMessageIn 0.28s ease both;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.cw-chat-card[hidden] {
  display: none;
}
.cw-chat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(28, 72, 135, 0.18);
}
.cw-chat-card strong {
  display: block;
  font-size: 17px;
}
.cw-chat-card span {
  grid-column: 1 / 2;
  color: #526076;
  font-size: 15px;
  line-height: 1.4;
}
.cw-chat-card b {
  grid-row: 1 / 3;
  grid-column: 2;
  color: #0664ff;
  font-size: 29px;
}
.cw-chat-form {
  display: grid;
  gap: 10px;
  padding: 16px 0 4px;
  animation: cwMessageIn 0.24s ease both;
}
.cw-chat-form[hidden] {
  display: none;
}
.cw-chat-form input,
.cw-chat-form textarea {
  width: 100%;
  border: 1px solid #dbe3ef;
  border-radius: 13px;
  padding: 12px 14px;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.cw-chat-form input:focus,
.cw-chat-form textarea:focus {
  border-color: #4e46ff;
  box-shadow: 0 0 0 4px rgba(78, 70, 255, 0.12);
  outline: none;
}
.cw-chat-form textarea {
  min-height: 82px;
  resize: vertical;
}
.cw-chat-form p {
  min-height: 18px;
  margin: 0;
  color: #236145;
  font-size: 13px;
}
.cw-chat-form p[data-state="warning"] {
  color: #8a5a00;
}
.cw-chat-form p[data-state="error"] {
  color: #b42318;
}
.cw-chat-form button {
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #3129df;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
}
.cw-chat-form button:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.cw-chat-form button:disabled {
  cursor: not-allowed;
  opacity: 0.64;
  transform: none;
}
.cw-chat-toast {
  position: fixed;
  right: 108px;
  bottom: 98px;
  z-index: 90;
  width: min(330px, calc(100vw - 34px));
  padding: 16px 18px 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: #172033;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.24);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.22s ease, transform 0.22s ease;
  backdrop-filter: blur(12px);
}
.cw-chat-toast.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.cw-chat-toast::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 17px;
  width: 5px;
  height: calc(100% - 34px);
  border-radius: 999px;
  background: #22c55e;
}
.cw-chat-toast.is-warning::before {
  background: #f59e0b;
}
.cw-chat-toast.is-error::before {
  background: #ef4444;
}
.cw-chat-toast strong,
.cw-chat-toast span {
  display: block;
  padding-left: 14px;
}
.cw-chat-toast strong {
  margin-bottom: 4px;
  font-size: 15px;
  color: #111827;
}
.cw-chat-toast span {
  font-size: 13px;
  line-height: 1.45;
  color: #526076;
}
.cw-chat-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-top: 16px;
}
.cw-chat-tabs button {
  display: grid;
  place-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: #6c7890;
  font-weight: 800;
}
.cw-chat-tabs button span {
  font-size: 27px;
}
.cw-chat-tabs button em {
  font-style: normal;
}
.cw-chat-tabs button.is-active,
.cw-chat-tabs button:hover {
  color: #0664ff;
}
.cw-chat-powered {
  border-top: 1px solid #e5e7eb;
  padding: 14px 20px 18px;
  color: #65728a;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.empty-message {
  grid-column: 1 / -1;
  color: var(--muted);
}

.search-overlay, .scrim { position: fixed; inset: 0; z-index: 50; }
.search-overlay {
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(23, 33, 27, 0.48);
}
.search-overlay[hidden], .scrim[hidden] { display: none; }
.overlay-card {
  position: relative;
  display: grid;
  gap: 16px;
  width: min(680px, 100%);
  padding: 34px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.overlay-card h2 { margin: 0; font-size: clamp(28px, 5vw, 46px); line-height: 1.08; letter-spacing: 0; }
.search-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 10px; }
.search-form input {
  min-width: 0;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  outline: none;
}
.search-form input:focus { border-color: var(--brand); }
.form-note { margin: 0; color: var(--muted); }
.close-button { position: absolute; top: 14px; right: 14px; }
.close-button::before, .close-button::after {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}
.close-button::before { transform: rotate(45deg); }
.close-button::after { transform: rotate(-45deg); }
.scrim { z-index: 35; background: rgba(23, 33, 27, 0.42); }
.inquiry-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 22px;
  width: min(430px, 100vw);
  height: 100dvh;
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 220ms ease;
}
.inquiry-drawer.is-open { transform: translateX(0); }
.drawer-header { position: relative; display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; padding-right: 50px; }
.drawer-header h2 { margin: 5px 0 0; font-size: 30px; letter-spacing: 0; }
.inquiry-body {
  display: grid;
  grid-template-rows: auto auto auto;
  gap: 14px;
  min-height: 0;
  overflow: auto;
}
.inquiry-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 4px;
}
.inquiry-controls label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}
.inquiry-controls button,
.inquiry-item button {
  border: 0;
  border-radius: 8px;
  background: #f6f6f6;
  color: var(--ink);
  font-weight: 900;
}
.inquiry-controls button {
  min-height: 34px;
  padding: 0 12px;
}
.inquiry-list {
  display: grid;
  gap: 10px;
}
.inquiry-item {
  display: grid;
  grid-template-columns: auto 64px minmax(0, 1fr) 34px;
  gap: 10px;
  align-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.inquiry-item img {
  width: 64px;
  height: 54px;
  border-radius: 6px;
  object-fit: cover;
}
.inquiry-item strong {
  display: block;
  font-size: 14px;
  line-height: 1.25;
}
.inquiry-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}
.inquiry-item button {
  width: 34px;
  height: 34px;
  font-size: 18px;
}
.empty-state {
  display: grid;
  place-content: center;
  gap: 10px;
  min-height: 220px;
  padding: 26px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: #f7f7f7;
  text-align: center;
}
.empty-state p { margin: 0; color: var(--muted); line-height: 1.55; }
.empty-state[hidden],
.inquiry-form[hidden] {
  display: none;
}
.inquiry-form {
  display: grid;
  gap: 10px;
}
.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 11px 12px;
  outline: none;
}
.inquiry-form textarea {
  min-height: 84px;
  resize: vertical;
}
.inquiry-form [data-selected-products] {
  min-height: 96px;
  background: #f7f7f7;
  color: var(--muted);
  font-size: 13px;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus {
  border-color: var(--brand);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1120px) {
  .home-case-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .home-case-main {
    padding-top: 0;
  }
  .home-case-side {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .home-case-side article {
    grid-template-columns: 1fr;
  }
  .home-faq-layout {
    grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
    gap: 46px;
  }
  .process-section {
    padding: 76px 0 72px;
  }
  .process-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 34px;
    width: min(900px, calc(100% - 42px));
  }
  .process-list::before {
    display: none;
  }
  .process-list li {
    min-height: 150px;
  }
  .process-icon {
    min-height: 66px;
    margin-top: 20px;
  }
  .header-bar { grid-template-columns: auto auto; }
  .primary-nav {
    position: fixed;
    top: 84px;
    right: 0;
    bottom: 0;
    z-index: 45;
    display: block;
    width: min(430px, 100vw);
    padding: 18px;
    overflow: auto;
    border-left: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }
  body.nav-open .primary-nav { transform: translateX(0); }
  .nav-link {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
    padding: 0 12px;
    color: #222;
  }
  .nav-link:hover,
  .nav-link:focus-visible,
  .nav-link.is-active,
  .nav-item.is-open > .nav-link {
    background: #f4f4f4;
    color: #111;
  }
  .mega-panel, .compact-panel {
    position: static;
    display: none;
    width: 100%;
    margin: 6px 0 12px;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
  .nav-item.is-open .mega-panel, .nav-item.is-open .compact-panel { display: grid; }
  .product-panel { grid-template-columns: 1fr; gap: 18px; padding: 14px; border-radius: 8px; transform: none; }
  .nav-item.is-open .product-panel { transform: none; }
  .mega-promo,
  .mega-promo img {
    min-height: 230px;
  }
  .mega-promo span { top: 24px; left: 22px; }
  .mega-promo strong { top: 52px; left: 22px; font-size: 28px; }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-grid h2 { margin-top: 12px; }
  .menu-toggle { display: inline-grid; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .detail-hero { grid-template-columns: 1fr; }
  .custom-hero { grid-template-columns: 1fr; }
  .detail-summary { position: static; }
  .product-card-grid, .feature-grid, .content-grid, .article-grid, .case-list, .download-list, .video-list, .search-results { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-product-tabs { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; margin-bottom: 34px; }
  .home-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-product-card div { padding-inline: 14px; }
  .custom-capability-grid, .custom-adv-grid, .craft-grid, .custom-dark-band .custom-adv-grid, .custom-process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-solution-grid, .contact-faq-section .faq-items { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-main-layout, .contact-map-section, .contact-support-section { grid-template-columns: 1fr; }
  .contact-faq-section .faq-items { grid-template-columns: 1fr; }
  .about-good,
  .about-cta-card,
  .about-company-intro { grid-template-columns: 1fr; }
  .about-cert-grid,
  .about-work-labels,
  .about-case-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-work-image { aspect-ratio: 16 / 7; }
  .custom-eco-panel { grid-template-columns: 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filter-panel { position: static; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-shell { grid-template-columns: 1fr 1fr; }
  .footer-inquiry-panel { grid-column: 1 / -1; border-top: 1px solid rgba(255, 255, 255, 0.12); }
  .footer-link-panel { border-right: 0; }
}

@media (max-width: 760px) {
  .home-case-section {
    padding: 54px 0 58px;
  }
  .home-case-layout {
    width: min(100% - 28px, 560px);
  }
  .home-case-intro {
    gap: 16px;
    justify-items: start;
  }
  .home-case-intro h2 {
    font-size: 24px;
  }
  .home-case-side {
    grid-template-columns: 1fr;
  }
  .home-case-side article {
    gap: 16px;
  }
  .home-case-side h3 {
    font-size: 15px;
  }
  .process-section {
    padding: 58px 0 56px;
  }
  .process-section .section-heading {
    width: min(100% - 28px, 560px);
    margin-bottom: 34px;
  }
  .process-section .section-heading h2 {
    font-size: 31px;
  }
  .process-section .section-heading p {
    max-width: 310px;
    font-size: 14px;
  }
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 12px;
    width: min(100% - 28px, 560px);
  }
  .process-list li {
    min-height: 132px;
    padding: 0 6px;
  }
  .process-index {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
  .process-icon {
    min-height: 52px;
    margin-top: 14px;
    font-size: 34px;
  }
  .process-list strong {
    max-width: 130px;
    font-size: 14px;
  }
  .faq-section {
    margin-top: 54px;
    padding: 54px 0 58px;
  }
  .home-faq-layout {
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(100% - 28px, 680px);
    text-align: center;
  }
  .home-faq-copy {
    justify-items: center;
    gap: 16px;
  }
  .home-faq-copy h2,
  .home-faq-copy p {
    max-width: 320px;
  }
  .home-faq-copy h2 {
    font-size: 30px;
  }
  .faq-list summary {
    min-height: 56px;
    padding: 16px 44px 16px 0;
    text-align: left;
    font-size: 15px;
  }
  .faq-question-icon {
    width: 24px;
    height: 24px;
    font-size: 15px;
  }
  .faq-list p {
    padding: 0 42px 20px 36px;
    text-align: left;
  }
  .header-bar { width: min(100% - 24px, 1240px); min-height: 74px; gap: 12px; }
  .brand-mark { width: 64px; height: 42px; }
  .brand-logo-img { width: 64px; max-height: 42px; }
  .brand-copy span { display: none; }
  .primary-nav { top: 74px; }
  .header-actions { gap: 6px; }
  .language-menu { display: block; }
  .language-button {
    min-width: 42px;
    max-width: 54px;
    padding: 0 8px;
    overflow: hidden;
    justify-content: center;
  }
  .language-button [data-language-label] {
    display: block;
    max-width: 34px;
    overflow: hidden;
    text-overflow: clip;
    white-space: nowrap;
  }
  .language-button .chevron { display: none; }
  .language-panel {
    right: 0;
    left: auto;
  }
  .inquire-button { width: 42px; padding: 0; justify-content: center; }
  .inquire-button > span:first-child { display: none; }
  .section, .page-hero, .catalog-layout, .hero, .detail-hero, .detail-content, .custom-hero, .content-hero, .contact-hero, .content-grid, .article-grid, .case-list, .download-list, .video-list, .faq-page-grid, .search-results, .contact-layout, .faq-layout, .case-detail-layout, .article-detail-layout { width: min(100% - 24px, 1240px); }
  .site-footer { width: 100%; margin-top: 48px; }
  .footer-shell {
    grid-template-columns: 1fr;
    border-right: 0;
    border-left: 0;
  }
  .footer-brand-panel,
  .footer-link-panel,
  .footer-inquiry-panel {
    min-height: auto;
    padding: 34px 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .footer-brand-panel { align-content: start; gap: 22px; }
  .footer-link-panel { gap: 28px; }
  .footer-form-row { grid-template-columns: 1fr; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    min-height: auto;
    padding: 24px 22px;
    border-right: 0;
    border-left: 0;
  }
  .footer-bottom div { justify-content: flex-start; }
  .hero { gap: 30px; padding: 42px 0 54px; }
  .custom-hero { gap: 28px; padding: 42px 0 54px; }
  .custom-form-shell { grid-template-columns: 1fr; }
  .custom-form-intro { position: static; padding-top: 0; }
  .custom-success-panel {
    width: 100%;
    padding: 24px 16px;
    gap: 12px;
  }
  .custom-success-panel h3 {
    font-size: 24px;
  }
  .custom-success-panel p {
    font-size: 15px;
  }
  .success-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .success-actions .button {
    width: 100%;
    min-width: 0;
    min-height: 46px;
    padding-right: 12px;
    padding-left: 12px;
  }
  .urgent-status {
    width: 100%;
    font-size: 14px;
    line-height: 1.55;
  }
  .hero h1, .page-hero h1, .custom-hero h1 { font-size: clamp(36px, 14vw, 58px); }
  .hero p, .page-hero p, .custom-hero p { font-size: 16px; }
  .hero-media img { height: 320px; }
  .button { width: 100%; }
  .detail-actions { grid-template-columns: 1fr; }
  .detail-tabs { top: 74px; }
  .detail-section-grid { grid-template-columns: 1fr; }
  .parameter-table th,
  .parameter-table td,
  .info-table th,
  .info-table td {
    display: block;
    width: 100%;
  }
  .metric-row span { flex: 1 1 120px; }
  .product-card-grid, .feature-grid, .case-grid, .news-grid, .catalog-grid, .recommended-row, .footer-grid, .filter-panel, .custom-capability-grid, .custom-adv-grid, .custom-dark-band .custom-adv-grid, .craft-grid, .custom-process, .custom-request-form, .contact-solution-grid, .contact-faq-section .faq-items, .content-grid, .article-grid, .case-list, .download-list, .video-list, .search-results, .contact-layout, .faq-layout, .case-detail-layout, .article-detail-layout {
    grid-template-columns: 1fr;
  }
  .home-product-showcase {
    width: min(100% - 24px, 1240px);
    padding-top: 54px;
    padding-bottom: 54px;
  }
  .home-product-tabs {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 6px;
  }
  .home-product-tabs button {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 0 14px;
    font-size: 14px;
  }
  .home-product-grid { grid-template-columns: 1fr; gap: 22px; }
  .home-product-card div { padding-inline: 8px; }
  .about-intro {
    padding-top: 44px;
    padding-bottom: 32px;
    gap: 34px;
  }
  .about-intro-heading h1 {
    font-size: clamp(28px, 8vw, 36px);
  }
  .about-stats {
    gap: 22px 12px;
  }
  .about-stats strong {
    font-size: 24px;
  }
  .about-company-copy h2 {
    font-size: 26px;
  }
  .about-company-copy p {
    font-size: 15px;
  }
  .about-detail-button {
    width: 178px;
    min-height: 48px;
    font-size: 16px;
  }
  .about-video-card,
  .about-video-card img {
    min-height: 220px;
  }
  .about-video-shade {
    padding: 18px;
  }
  .about-video-shade strong {
    font-size: 16px;
  }
  .about-play-button {
    width: 62px;
    height: 44px;
    border-radius: 10px;
  }
  .about-tabs {
    gap: 26px;
    margin-bottom: 34px;
  }
  .about-tab {
    font-size: 20px;
  }
  .about-work-image {
    aspect-ratio: 1 / 1;
  }
  .about-work-labels,
  .about-cert-grid,
  .about-value-grid,
  .about-case-grid {
    grid-template-columns: 1fr;
  }
  .about-work-labels {
    gap: 8px;
    font-size: 15px;
  }
  .about-credit,
  .about-good,
  .about-cases,
  .about-product-cta {
    padding-top: 42px;
    padding-bottom: 50px;
  }
  .about-good h2,
  .about-cases .section-heading h2,
  .about-product-cta .section-heading h2 {
    font-size: 28px;
  }
  .about-value-grid article,
  .about-case-grid article {
    padding: 22px;
  }
  .about-cert-image {
    min-width: 760px;
  }
  .about-panel[data-about-panel="cert"] {
    overflow-x: auto;
  }
  .about-cta-copy {
    padding: 32px 22px;
  }
  .about-cta-card img {
    min-height: 240px;
  }
  .contact-hero {
    padding: 44px 0 24px;
  }
  .contact-hero h1 {
    font-size: clamp(34px, 11vw, 54px);
  }
  .contact-hero p {
    font-size: 16px;
  }
  .contact-solution-grid article {
    min-height: auto;
    padding: 24px 20px;
  }
  .contact-solutions .section-heading h2 {
    font-size: 24px;
  }
  .contact-card-icon,
  .contact-card-icon svg {
    width: 62px;
    height: 62px;
  }
  .contact-solution-grid strong {
    font-size: 18px;
  }
  .contact-solution-grid p {
    font-size: 14px;
  }
  .contact-support-section {
    padding-top: 52px;
    padding-bottom: 42px;
  }
  .contact-support-media,
  .contact-support-media img {
    min-height: 260px;
  }
  .contact-support-copy h2 {
    font-size: clamp(26px, 7.5vw, 34px);
  }
  .contact-support-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .contact-main-layout {
    padding-top: 24px;
    padding-bottom: 46px;
  }
  .contact-info-panel,
  .contact-form-card {
    padding: 20px;
  }
  .contact-quick-actions {
    grid-template-columns: 1fr;
  }
  .contact-map-section {
    padding-top: 24px;
    padding-bottom: 28px;
  }
  .contact-map-frame,
  .contact-map-frame iframe {
    min-height: 300px;
  }
  .contact-faq-section .section-heading h2 {
    font-size: 28px;
  }
  .contact-faq-accordion summary {
    min-height: 56px;
    padding: 16px 42px 16px 0;
    font-size: 16px;
  }
  .contact-faq-accordion summary::after {
    right: 4px;
    font-size: 24px;
  }
  .contact-faq-accordion p {
    padding: 0 28px 20px 0;
    font-size: 14px;
  }
  .floating-tools {
    right: 0;
    top: 46%;
    bottom: auto;
  }
  .floating-tool {
    width: 48px;
    height: 48px;
    border-radius: 12px 0 0 12px;
    font-size: 22px;
  }
  .cw-chat-widget {
    right: 14px;
    bottom: 14px;
  }
  .cw-chat-launcher span {
    min-height: 48px;
    padding: 0 18px;
    font-size: 15px;
  }
  .cw-chat-launcher i {
    width: 58px;
    height: 58px;
  }
  .cw-chat-panel {
    right: -2px;
    bottom: 76px;
    width: min(360px, calc(100vw - 24px));
    border-radius: 18px;
  }
  .cw-chat-toast {
    right: 12px;
    bottom: 88px;
    width: calc(100vw - 24px);
    border-radius: 16px;
  }
  .cw-chat-head {
    min-height: 250px;
    padding: 24px 22px 30px;
  }
  .cw-chat-head h2 {
    font-size: 27px;
  }
  .cw-chat-head p {
    font-size: 17px;
  }
.custom-request-form { padding: 18px; }

.custom-form-section {
  scroll-margin-top: 96px;
}

@media (max-width: 760px) {
  .custom-form-section {
    scroll-margin-top: 82px;
  }
}
  .factory-section {
    width: min(100% - 28px, 680px);
    padding-top: 48px;
    padding-bottom: 52px;
  }
  .factory-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .factory-copy {
    gap: 16px;
  }
  .factory-copy h2 {
    font-size: clamp(22px, 7vw, 30px);
  }
  .factory-note {
    padding: 20px 18px;
  }
  .factory-actions {
    gap: 12px;
  }
  .factory-button {
    min-width: 118px;
    min-height: 40px;
    padding-inline: 22px;
  }
  .advisor-card { grid-template-columns: 1fr; }
  .catalog-toolbar { align-items: stretch; flex-direction: column; }
  .search-form { grid-template-columns: 1fr; }
  .overlay-card { padding: 28px 18px 22px; }
  .inquiry-drawer { width: min(100vw, 430px); }
  .inquiry-form input,
  .inquiry-form textarea,
  .contact-form input,
  .contact-form textarea,
  .custom-request-form input,
  .custom-request-form select,
  .custom-request-form textarea {
    font-size: 16px;
  }
}

/* Title scale pass: make all frontend headings visibly smaller and more refined. */
.hero h1,
.page-hero h1,
.custom-hero h1,
.about-intro h1,
.content-hero h1,
.article-detail-layout h1,
.case-detail-layout h1,
.detail-title {
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.16;
  font-weight: 500;
}

.section-heading h2,
.home-product-showcase .section-heading h2,
.process-section .section-heading h2,
.home-faq-copy h2,
.contact-faq-section .section-heading h2,
.custom-section-heading h2,
.about-cta-card h2,
.contact-support-title,
.custom-success-panel h3,
.overlay-card h2,
.drawer-header h2 {
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.24;
  font-weight: 500;
}

.detail-summary h2,
.custom-request-form h2,
.contact-form-card h2,
.faq-aside h2,
.recommended h2,
.advisor-card h2,
.footer-form-heading h2 {
  font-size: 17px;
  line-height: 1.35;
}

.home-product-card h3,
.catalog-card h2,
.product-card h3,
.case-grid h3,
.news-grid h3,
.article-card h2,
.case-card h2,
.download-card h2,
.video-card h2,
.custom-process li strong,
.custom-adv-grid strong,
.custom-capability-grid strong,
.craft-card strong,
.contact-solution-grid strong {
  font-size: 14px;
  line-height: 1.38;
}

.mega-promo strong {
  font-size: 22px;
}
.metric-row strong,
.about-stats strong,
.contact-stat strong {
  font-size: 22px;
}
.feature-grid strong,
.process-list strong,
.footer-link-panel h2,
.mega-grid h2,
.filter-group h2 {
  font-size: 13px;
}

@media (max-width: 760px) {
  .hero h1,
  .page-hero h1,
  .custom-hero h1,
  .about-intro h1,
  .content-hero h1,
  .article-detail-layout h1,
  .case-detail-layout h1,
  .detail-title {
    font-size: clamp(24px, 7.4vw, 32px);
  }

  .section-heading h2,
  .home-product-showcase .section-heading h2,
  .process-section .section-heading h2,
  .home-faq-copy h2,
  .contact-faq-section .section-heading h2,
  .custom-section-heading h2,
  .about-cta-card h2,
  .contact-support-title,
  .custom-success-panel h3,
  .overlay-card h2,
  .drawer-header h2 {
    font-size: clamp(19px, 5.8vw, 26px);
  }

  .home-product-card h3,
  .catalog-card h2,
  .product-card h3,
  .case-grid h3,
  .news-grid h3,
  .article-card h2,
  .case-card h2,
  .download-card h2,
  .video-card h2 {
    font-size: 13px;
  }
}

/* Global frontend typography tuning: keep the B2B UI lighter and more compact. */
body {
  font-size: 14px;
}

.brand-copy strong { font-size: 16px; }
.brand-copy span { font-size: 11px; }
.nav-link,
.language-button,
.inquire-button,
.button,
.footer-submit,
.home-faq-button,
.contact-card-button {
  font-size: 13px;
}

.hero h1,
.page-hero h1,
.custom-hero h1 {
  font-size: clamp(38px, 5.4vw, 68px);
}
.hero p,
.page-hero p,
.custom-hero p,
.content-hero p,
.custom-form-intro p,
.article-card p,
.case-card p,
.download-card p,
.product-card p,
.feature-grid p,
.case-grid p,
.factory-list p,
.advisor-card p,
.catalog-card p,
.detail-lead,
.contact-support-copy p,
.about-company-text p,
.about-good p,
.about-case-card p {
  font-size: 14px;
}

.section-heading h2,
.home-product-showcase .section-heading h2,
.process-section .section-heading h2,
.home-faq-copy h2,
.contact-faq-section .section-heading h2,
.custom-section-heading h2,
.content-hero h1,
.article-detail-layout h1,
.case-detail-layout h1 {
  font-size: clamp(26px, 2.8vw, 38px);
}
.section-heading p,
.process-section .section-heading p,
.home-faq-copy p,
.contact-faq-section .section-heading p,
.home-product-showcase .section-heading p,
.custom-section-heading p {
  font-size: 14px;
}

.mega-promo strong { font-size: 30px; }
.mega-grid h2,
.filter-group h2,
.footer-link-panel h2,
.footer-form-heading h2 {
  font-size: 15px;
}
.mega-grid a,
.compact-panel a,
.footer-link-panel a,
.footer-contact-list p,
.footer-form-heading p,
.footer-bottom,
.footer-bottom a {
  font-size: 13px;
}

.home-product-tabs button { font-size: 14px; }
.home-product-tabs .mega-icon { font-size: 20px; }
.home-product-card h3,
.catalog-card h2,
.product-card h3,
.case-grid h3,
.news-grid h3,
.article-card h2,
.case-card h2,
.download-card h2,
.video-card h2 {
  font-size: 16px;
}
.home-product-card p,
.catalog-tags span,
.news-grid time,
.meta-row,
.badge-row span {
  font-size: 12px;
}

.process-index { font-size: 12px; }
.process-icon { font-size: clamp(30px, 3.4vw, 46px); }
.process-list strong {
  font-size: 15px;
}

.faq-list summary,
.faq-items summary,
.contact-faq-accordion summary {
  font-size: 15px;
}
.faq-question-icon {
  font-size: 15px;
}
.faq-list p,
.faq-items p,
.contact-faq-accordion p {
  font-size: 13px;
}

.detail-title,
.custom-success-panel h3,
.contact-support-title,
.about-intro h1,
.about-cta-card h2,
.custom-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
}
.detail-summary h2,
.custom-request-form h2,
.contact-form-card h2,
.faq-aside h2,
.recommended h2 {
  font-size: 20px;
}
.parameter-table,
.info-table,
.detail-tabs a,
.detail-actions a,
.detail-actions button,
.form-note,
.custom-request-form input,
.custom-request-form textarea,
.custom-request-form select,
.footer-form input,
.footer-form textarea,
.inquiry-form input,
.inquiry-form textarea,
.contact-form input,
.contact-form textarea {
  font-size: 13px;
}

@media (max-width: 760px) {
  body {
    font-size: 13px;
  }
  .nav-link,
  .button,
  .footer-submit,
  .home-faq-button,
  .contact-card-button {
    font-size: 12px;
  }
  .hero h1,
  .page-hero h1,
  .custom-hero h1 {
    font-size: clamp(32px, 12vw, 48px);
  }
  .hero p,
  .page-hero p,
  .custom-hero p {
    font-size: 14px;
  }
  .section-heading h2,
  .home-product-showcase .section-heading h2,
  .process-section .section-heading h2,
  .home-faq-copy h2,
  .contact-faq-section .section-heading h2,
  .content-hero h1 {
    font-size: clamp(24px, 7vw, 32px);
  }
  .section-heading p,
  .process-section .section-heading p,
  .home-faq-copy p,
  .contact-faq-section .section-heading p {
    font-size: 13px;
  }
  .home-product-card h3,
  .catalog-card h2,
  .product-card h3,
  .case-grid h3,
  .news-grid h3,
  .article-card h2,
  .case-card h2 {
    font-size: 15px;
  }
  .process-icon {
    font-size: 30px;
  }
  .process-list strong,
  .faq-list summary,
  .faq-items summary,
  .contact-faq-accordion summary {
    font-size: 14px;
  }
  .inquiry-form input,
  .inquiry-form textarea,
  .contact-form input,
  .contact-form textarea,
  .custom-request-form input,
  .custom-request-form select,
  .custom-request-form textarea {
    font-size: 14px;
  }
}

/* Final heading scale override: smaller, balanced titles across Chinese and English. */
.hero h1,
.page-hero h1,
.custom-hero h1,
.about-intro h1,
.content-hero h1,
.article-detail-layout h1,
.case-detail-layout h1,
.detail-title {
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.18;
  font-weight: 500;
}

.section-heading h2,
.home-product-showcase .section-heading h2,
.process-section .section-heading h2,
.home-faq-copy h2,
.contact-faq-section .section-heading h2,
.custom-section-heading h2,
.about-cta-card h2,
.contact-support-title,
.custom-success-panel h3,
.overlay-card h2,
.drawer-header h2 {
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.25;
  font-weight: 500;
}

.detail-summary h2,
.custom-request-form h2,
.contact-form-card h2,
.faq-aside h2,
.recommended h2,
.advisor-card h2,
.footer-form-heading h2 {
  font-size: 16px;
  line-height: 1.35;
}

.home-product-card h3,
.catalog-card h2,
.product-card h3,
.case-grid h3,
.news-grid h3,
.article-card h2,
.case-card h2,
.download-card h2,
.video-card h2,
.custom-process li strong,
.custom-adv-grid strong,
.custom-capability-grid strong,
.craft-card strong,
.contact-solution-grid strong,
.feature-grid strong,
.process-list strong {
  font-size: 13px;
  line-height: 1.38;
}

.mega-promo strong {
  font-size: 20px;
}
.metric-row strong,
.about-stats strong,
.contact-stat strong {
  font-size: 20px;
}
.footer-link-panel h2,
.mega-grid h2,
.filter-group h2 {
  font-size: 12px;
}

@media (max-width: 760px) {
  .hero h1,
  .page-hero h1,
  .custom-hero h1,
  .about-intro h1,
  .content-hero h1,
  .article-detail-layout h1,
  .case-detail-layout h1,
  .detail-title {
    font-size: clamp(23px, 7vw, 30px);
  }

  .section-heading h2,
  .home-product-showcase .section-heading h2,
  .process-section .section-heading h2,
  .home-faq-copy h2,
  .contact-faq-section .section-heading h2,
  .custom-section-heading h2,
  .about-cta-card h2,
  .contact-support-title,
  .custom-success-panel h3,
  .overlay-card h2,
  .drawer-header h2 {
    font-size: clamp(18px, 5.4vw, 24px);
  }

  .home-product-card h3,
  .catalog-card h2,
  .product-card h3,
  .case-grid h3,
  .news-grid h3,
  .article-card h2,
  .case-card h2,
  .download-card h2,
  .video-card h2 {
    font-size: 12px;
  }
}

/* Final news card layout override for home and news pages. */
.home-news-section .news-grid,
.article-grid.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 76px;
}
.home-news-section .news-grid {
  padding-bottom: 0;
}
.article-grid.news-card-grid {
  background: #f1f1f1;
}
.article-card.news-card,
.home-news-section .news-card {
  border: 0;
  border-radius: 7px;
  background: #fff;
  overflow: hidden;
}
.article-card.news-card img,
.home-news-section .news-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.article-card.news-card > div,
.home-news-section .news-card > div {
  padding: 24px 24px 26px;
}
.article-card.news-card h2,
.home-news-section .news-card h3 {
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
}
.article-card.news-card p,
.home-news-section .news-card p {
  font-size: 13px;
}
@media (max-width: 1120px) {
  .home-news-section .news-grid,
  .article-grid.news-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(920px, calc(100% - 36px));
  }
}
@media (max-width: 760px) {
  .home-news-section,
  .news-page-hero {
    padding-top: 54px;
    padding-bottom: 52px;
  }
  .home-news-section .news-grid,
  .article-grid.news-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    width: min(100% - 28px, 520px);
    padding-bottom: 54px;
  }
  .home-news-section .news-grid {
    padding-bottom: 0;
  }
  .article-card.news-card > div,
  .home-news-section .news-card > div {
    padding: 20px 18px 22px;
  }
}
.news-page {
  background: #f1f1f1;
}
.news-page .site-footer {
  margin-top: 0;
}

/* Targeted hover polish: only small card images and rounded info buttons. */
.home-product-card figure,
.catalog-image-link,
.news-card-image,
.article-card.news-card .news-card-image,
.video-card img,
.case-card img,
.search-result-card img,
.home-case-side article > a {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  will-change: transform;
}

.home-product-card img,
.catalog-card img,
.news-card img,
.article-card.news-card img,
.video-card img,
.case-card img,
.search-result-card img,
.home-case-side img {
  transition: transform 0.2s ease, filter 0.2s ease;
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  .home-product-card:hover figure,
  .catalog-card:hover .catalog-image-link,
  .news-card:hover .news-card-image,
  .article-card.news-card:hover .news-card-image,
  .video-card:hover img,
  .case-card:hover img,
  .search-result-card:hover img,
  .home-case-side article:hover > a {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(17, 24, 39, 0.12);
  }

  .home-product-card:hover img,
  .catalog-card:hover img,
  .news-card:hover img,
  .article-card.news-card:hover img,
  .video-card:hover img,
  .case-card:hover img,
  .search-result-card:hover img,
  .home-case-side article:hover img {
    transform: scale(1.025);
    filter: brightness(1.02);
  }
}

.home-faq-button,
.home-case-button,
.home-case-side a:last-child,
.case-card a,
.search-result-card a,
.news-card div > a,
.article-card.news-card div > a,
.about-detail-button,
.about-cta-button,
.home-product-tabs button {
  background-color: #e5e5e5;
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.home-faq-button:hover,
.home-faq-button:focus-visible,
.home-case-button:hover,
.home-case-button:focus-visible,
.home-case-side a:last-child:hover,
.home-case-side a:last-child:focus-visible,
.case-card a:hover,
.case-card a:focus-visible,
.search-result-card a:hover,
.search-result-card a:focus-visible,
.news-card div > a:hover,
.news-card div > a:focus-visible,
.article-card.news-card div > a:hover,
.article-card.news-card div > a:focus-visible,
.about-detail-button:hover,
.about-detail-button:focus-visible,
.about-cta-button:hover,
.about-cta-button:focus-visible,
.home-product-tabs button:hover,
.home-product-tabs button:focus-visible {
  background-color: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.1);
  transform: translateY(-1px);
  outline: none;
}

/* Home product showcase refinement: compact, clean B2B card spacing. */
.home-product-showcase {
  width: min(1240px, calc(100% - 40px));
  padding-top: 64px;
  padding-bottom: 68px;
}

.home-product-showcase .section-heading {
  margin-bottom: 26px;
}

.home-product-showcase .section-heading h2 {
  font-size: clamp(23px, 2.2vw, 32px);
  font-weight: 500;
  line-height: 1.28;
}

.home-product-showcase .section-heading p {
  margin-top: 8px;
  font-size: 13px;
  color: #666;
}

.home-product-tabs {
  grid-template-columns: repeat(auto-fit, minmax(118px, max-content));
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.home-product-tabs button {
  min-height: 40px;
  padding: 0 17px;
  font-size: 13px;
  font-weight: 650;
}

.home-product-tabs .mega-icon {
  font-size: 16px;
}

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

.home-product-card {
  gap: 13px;
}

.home-product-card figure {
  border-radius: 6px;
  background: #fff;
}

.home-product-card img {
  padding: clamp(10px, 1.8vw, 22px);
}

.home-product-card div {
  gap: 6px;
  padding: 0 8px;
  text-align: left;
}

.home-product-card h3 {
  min-height: 39px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.38;
  letter-spacing: 0;
}

.home-product-card p {
  min-height: 38px;
  font-size: 12px;
  line-height: 1.55;
  color: #666;
  -webkit-line-clamp: 2;
}

@media (max-width: 1120px) {
  .home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .home-product-showcase {
    width: min(100% - 28px, 520px);
    padding-top: 48px;
    padding-bottom: 52px;
  }
  .home-product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home-product-card div {
    padding: 0 2px;
  }
}

/* Product detail title refinement: compact B2B title scale. */
.detail-summary h1,
h1[data-detail-title] {
  font-size: clamp(18px, 1.65vw, 26px);
  line-height: 1.34;
  font-weight: 600;
  letter-spacing: 0;
  color: #2f2f2f;
}

.detail-summary {
  gap: 14px;
}

@media (max-width: 760px) {
  .detail-summary h1,
  h1[data-detail-title] {
    font-size: clamp(18px, 5.3vw, 23px);
    line-height: 1.36;
  }
}

/* Privacy and terms pages */
.policy-hero {
  text-align: center;
  padding-bottom: 34px;
}

.policy-hero h1 {
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 560;
  letter-spacing: 0;
}

.policy-hero p {
  max-width: 780px;
  margin-inline: auto;
}

.policy-layout {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto 88px;
}

.policy-content {
  padding: clamp(24px, 4vw, 46px);
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(17, 24, 39, 0.06);
}

.policy-content h2 {
  margin: 28px 0 10px;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.45;
  font-weight: 620;
  color: #2f2f2f;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.9;
  color: #565656;
}

@media (max-width: 760px) {
  .policy-layout {
    width: min(100% - 28px, 620px);
    margin-bottom: 58px;
  }
  .policy-content {
    padding: 22px 18px;
  }
}
